Don't disable ssl caching for 0.9.8p and later in the 0.9.x series of OpenSSL.
[libradsec.git] / tlscommon.c
1 /*
2  * Copyright (C) 2006-2009 Stig Venaas <venaas@uninett.no>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  */
8
9 #if defined(RADPROT_TLS) || defined(RADPROT_DTLS)
10 #include <signal.h>
11 #include <sys/socket.h>
12 #include <netinet/in.h>
13 #include <netdb.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <limits.h>
17 #ifdef SYS_SOLARIS9
18 #include <fcntl.h>
19 #endif
20 #include <sys/time.h>
21 #include <sys/types.h>
22 #include <sys/select.h>
23 #include <ctype.h>
24 #include <sys/wait.h>
25 #include <arpa/inet.h>
26 #include <regex.h>
27 #include <libgen.h>
28 #include <pthread.h>
29 #include <openssl/ssl.h>
30 #include <openssl/rand.h>
31 #include <openssl/err.h>
32 #include <openssl/md5.h>
33 #include <openssl/x509v3.h>
34 #include "debug.h"
35 #include "list.h"
36 #include "hash.h"
37 #include "util.h"
38 #include "hostport.h"
39 #include "radsecproxy.h"
40
41 static struct hash *tlsconfs = NULL;
42
43 static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) {
44     int pwdlen = strlen(userdata);
45     if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */
46         return 0;
47     memcpy(buf, userdata, pwdlen);
48     return pwdlen;
49 }
50
51 static int verify_cb(int ok, X509_STORE_CTX *ctx) {
52     char *buf = NULL;
53     X509 *err_cert;
54     int err, depth;
55
56     err_cert = X509_STORE_CTX_get_current_cert(ctx);
57     err = X509_STORE_CTX_get_error(ctx);
58     depth = X509_STORE_CTX_get_error_depth(ctx);
59
60     if (depth > MAX_CERT_DEPTH) {
61         ok = 0;
62         err = X509_V_ERR_CERT_CHAIN_TOO_LONG;
63         X509_STORE_CTX_set_error(ctx, err);
64     }
65
66     if (!ok) {
67         if (err_cert)
68             buf = X509_NAME_oneline(X509_get_subject_name(err_cert), NULL, 0);
69         debug(DBG_WARN, "verify error: num=%d:%s:depth=%d:%s", err, X509_verify_cert_error_string(err), depth, buf ? buf : "");
70         free(buf);
71         buf = NULL;
72
73         switch (err) {
74         case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
75             if (err_cert) {
76                 buf = X509_NAME_oneline(X509_get_issuer_name(err_cert), NULL, 0);
77                 if (buf) {
78                     debug(DBG_WARN, "\tIssuer=%s", buf);
79                     free(buf);
80                     buf = NULL;
81                 }
82             }
83             break;
84         case X509_V_ERR_CERT_NOT_YET_VALID:
85         case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
86             debug(DBG_WARN, "\tCertificate not yet valid");
87             break;
88         case X509_V_ERR_CERT_HAS_EXPIRED:
89             debug(DBG_WARN, "Certificate has expired");
90             break;
91         case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
92             debug(DBG_WARN, "Certificate no longer valid (after notAfter)");
93             break;
94         case X509_V_ERR_NO_EXPLICIT_POLICY:
95             debug(DBG_WARN, "No Explicit Certificate Policy");
96             break;
97         }
98     }
99 #ifdef DEBUG
100     printf("certificate verify returns %d\n", ok);
101 #endif
102     return ok;
103 }
104
105 #ifdef DEBUG
106 static void ssl_info_callback(const SSL *ssl, int where, int ret) {
107     const char *s;
108     int w;
109
110     w = where & ~SSL_ST_MASK;
111
112     if (w & SSL_ST_CONNECT)
113         s = "SSL_connect";
114     else if (w & SSL_ST_ACCEPT)
115         s = "SSL_accept";
116     else
117         s = "undefined";
118
119     if (where & SSL_CB_LOOP)
120         debug(DBG_DBG, "%s:%s\n", s, SSL_state_string_long(ssl));
121     else if (where & SSL_CB_ALERT) {
122         s = (where & SSL_CB_READ) ? "read" : "write";
123         debug(DBG_DBG, "SSL3 alert %s:%s:%s\n", s, SSL_alert_type_string_long(ret), SSL_alert_desc_string_long(ret));
124     }
125     else if (where & SSL_CB_EXIT) {
126         if (ret == 0)
127             debug(DBG_DBG, "%s:failed in %s\n", s, SSL_state_string_long(ssl));
128         else if (ret < 0)
129             debug(DBG_DBG, "%s:error in %s\n", s, SSL_state_string_long(ssl));
130     }
131 }
132 #endif
133
134 static X509_VERIFY_PARAM *createverifyparams(char **poids) {
135     X509_VERIFY_PARAM *pm;
136     ASN1_OBJECT *pobject;
137     int i;
138
139     pm = X509_VERIFY_PARAM_new();
140     if (!pm)
141         return NULL;
142
143     for (i = 0; poids[i]; i++) {
144         pobject = OBJ_txt2obj(poids[i], 0);
145         if (!pobject) {
146             X509_VERIFY_PARAM_free(pm);
147             return NULL;
148         }
149         X509_VERIFY_PARAM_add0_policy(pm, pobject);
150     }
151
152     X509_VERIFY_PARAM_set_flags(pm, X509_V_FLAG_POLICY_CHECK | X509_V_FLAG_EXPLICIT_POLICY);
153     return pm;
154 }
155
156 static int tlsaddcacrl(SSL_CTX *ctx, struct tls *conf) {
157     STACK_OF(X509_NAME) *calist;
158     X509_STORE *x509_s;
159     unsigned long error;
160
161     if (!SSL_CTX_load_verify_locations(ctx, conf->cacertfile, conf->cacertpath)) {
162         while ((error = ERR_get_error()))
163             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
164         debug(DBG_ERR, "tlsaddcacrl: Error updating TLS context %s", conf->name);
165         return 0;
166     }
167
168     calist = conf->cacertfile ? SSL_load_client_CA_file(conf->cacertfile) : NULL;
169     if (!conf->cacertfile || calist) {
170         if (conf->cacertpath) {
171             if (!calist)
172                 calist = sk_X509_NAME_new_null();
173             if (!SSL_add_dir_cert_subjects_to_stack(calist, conf->cacertpath)) {
174                 sk_X509_NAME_free(calist);
175                 calist = NULL;
176             }
177         }
178     }
179     if (!calist) {
180         while ((error = ERR_get_error()))
181             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
182         debug(DBG_ERR, "tlsaddcacrl: Error adding CA subjects in TLS context %s", conf->name);
183         return 0;
184     }
185     ERR_clear_error(); /* add_dir_cert_subj returns errors on success */
186     SSL_CTX_set_client_CA_list(ctx, calist);
187
188     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
189     SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
190
191     if (conf->crlcheck || conf->vpm) {
192         x509_s = SSL_CTX_get_cert_store(ctx);
193         if (conf->crlcheck)
194             X509_STORE_set_flags(x509_s, X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
195         if (conf->vpm)
196             X509_STORE_set1_param(x509_s, conf->vpm);
197     }
198
199     debug(DBG_DBG, "tlsaddcacrl: updated TLS context %s", conf->name);
200     return 1;
201 }
202
203 static SSL_CTX *tlscreatectx(uint8_t type, struct tls *conf) {
204     SSL_CTX *ctx = NULL;
205     unsigned long error;
206
207     switch (type) {
208 #ifdef RADPROT_TLS
209     case RAD_TLS:
210         ctx = SSL_CTX_new(TLSv1_method());
211 #ifdef DEBUG
212         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
213 #endif
214         break;
215 #endif
216 #ifdef RADPROT_DTLS
217     case RAD_DTLS:
218         ctx = SSL_CTX_new(DTLSv1_method());
219 #ifdef DEBUG
220         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
221 #endif
222         SSL_CTX_set_read_ahead(ctx, 1);
223         break;
224 #endif
225     }
226     if (!ctx) {
227         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
228         return NULL;
229     }
230 #if OPENSSL_VERSION_NUMBER < 0x0090810f \
231     || (OPENSSL_VERSION_NUMBER >= 0x1000000f \
232         && OPENSSL_VERSION_NUMBER < 0x1000002f)
233     debug(DBG_WARN, "%s: OpenSSL seems to be of a version with a  "
234           "certain security critical bug (fixed in OpenSSL 0.9.8p and "
235           "1.0.0b).  Disabling OpenSSL session caching for context %p.",
236           __func__, ctx);
237     SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
238 #endif
239
240     if (conf->certkeypwd) {
241         SSL_CTX_set_default_passwd_cb_userdata(ctx, conf->certkeypwd);
242         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
243     }
244     if (!SSL_CTX_use_certificate_chain_file(ctx, conf->certfile) ||
245         !SSL_CTX_use_PrivateKey_file(ctx, conf->certkeyfile, SSL_FILETYPE_PEM) ||
246         !SSL_CTX_check_private_key(ctx)) {
247         while ((error = ERR_get_error()))
248             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
249         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
250         SSL_CTX_free(ctx);
251         return NULL;
252     }
253
254     if (conf->policyoids) {
255         if (!conf->vpm) {
256             conf->vpm = createverifyparams(conf->policyoids);
257             if (!conf->vpm) {
258                 debug(DBG_ERR, "tlscreatectx: Failed to add policyOIDs in TLS context %s", conf->name);
259                 SSL_CTX_free(ctx);
260                 return NULL;
261             }
262         }
263     }
264
265     if (!tlsaddcacrl(ctx, conf)) {
266         if (conf->vpm) {
267             X509_VERIFY_PARAM_free(conf->vpm);
268             conf->vpm = NULL;
269         }
270         SSL_CTX_free(ctx);
271         return NULL;
272     }
273
274     debug(DBG_DBG, "tlscreatectx: created TLS context %s", conf->name);
275     return ctx;
276 }
277
278 struct tls *tlsgettls(char *alt1, char *alt2) {
279     struct tls *t;
280
281     t = hash_read(tlsconfs, alt1, strlen(alt1));
282     if (!t)
283         t = hash_read(tlsconfs, alt2, strlen(alt2));
284     return t;
285 }
286
287 SSL_CTX *tlsgetctx(uint8_t type, struct tls *t) {
288     struct timeval now;
289
290     if (!t)
291         return NULL;
292     gettimeofday(&now, NULL);
293
294     switch (type) {
295 #ifdef RADPROT_TLS
296     case RAD_TLS:
297         if (t->tlsexpiry && t->tlsctx) {
298             if (t->tlsexpiry < now.tv_sec) {
299                 t->tlsexpiry = now.tv_sec + t->cacheexpiry;
300                 tlsaddcacrl(t->tlsctx, t);
301             }
302         }
303         if (!t->tlsctx) {
304             t->tlsctx = tlscreatectx(RAD_TLS, t);
305             if (t->cacheexpiry)
306                 t->tlsexpiry = now.tv_sec + t->cacheexpiry;
307         }
308         return t->tlsctx;
309 #endif
310 #ifdef RADPROT_DTLS
311     case RAD_DTLS:
312         if (t->dtlsexpiry && t->dtlsctx) {
313             if (t->dtlsexpiry < now.tv_sec) {
314                 t->dtlsexpiry = now.tv_sec + t->cacheexpiry;
315                 tlsaddcacrl(t->dtlsctx, t);
316             }
317         }
318         if (!t->dtlsctx) {
319             t->dtlsctx = tlscreatectx(RAD_DTLS, t);
320             if (t->cacheexpiry)
321                 t->dtlsexpiry = now.tv_sec + t->cacheexpiry;
322         }
323         return t->dtlsctx;
324 #endif
325     }
326     return NULL;
327 }
328
329 X509 *verifytlscert(SSL *ssl) {
330     X509 *cert;
331     unsigned long error;
332
333     if (SSL_get_verify_result(ssl) != X509_V_OK) {
334         debug(DBG_ERR, "verifytlscert: basic validation failed");
335         while ((error = ERR_get_error()))
336             debug(DBG_ERR, "verifytlscert: TLS: %s", ERR_error_string(error, NULL));
337         return NULL;
338     }
339
340     cert = SSL_get_peer_certificate(ssl);
341     if (!cert)
342         debug(DBG_ERR, "verifytlscert: failed to obtain certificate");
343     return cert;
344 }
345
346 static int subjectaltnameaddr(X509 *cert, int family, struct in6_addr *addr) {
347     int loc, i, l, n, r = 0;
348     char *v;
349     X509_EXTENSION *ex;
350     STACK_OF(GENERAL_NAME) *alt;
351     GENERAL_NAME *gn;
352
353     debug(DBG_DBG, "subjectaltnameaddr");
354
355     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
356     if (loc < 0)
357         return r;
358
359     ex = X509_get_ext(cert, loc);
360     alt = X509V3_EXT_d2i(ex);
361     if (!alt)
362         return r;
363
364     n = sk_GENERAL_NAME_num(alt);
365     for (i = 0; i < n; i++) {
366         gn = sk_GENERAL_NAME_value(alt, i);
367         if (gn->type != GEN_IPADD)
368             continue;
369         r = -1;
370         v = (char *)ASN1_STRING_data(gn->d.ia5);
371         l = ASN1_STRING_length(gn->d.ia5);
372         if (((family == AF_INET && l == sizeof(struct in_addr)) || (family == AF_INET6 && l == sizeof(struct in6_addr)))
373             && !memcmp(v, &addr, l)) {
374             r = 1;
375             break;
376         }
377     }
378     GENERAL_NAMES_free(alt);
379     return r;
380 }
381
382 static int subjectaltnameregexp(X509 *cert, int type, char *exact,  regex_t *regex) {
383     int loc, i, l, n, r = 0;
384     char *s, *v;
385     X509_EXTENSION *ex;
386     STACK_OF(GENERAL_NAME) *alt;
387     GENERAL_NAME *gn;
388
389     debug(DBG_DBG, "subjectaltnameregexp");
390
391     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
392     if (loc < 0)
393         return r;
394
395     ex = X509_get_ext(cert, loc);
396     alt = X509V3_EXT_d2i(ex);
397     if (!alt)
398         return r;
399
400     n = sk_GENERAL_NAME_num(alt);
401     for (i = 0; i < n; i++) {
402         gn = sk_GENERAL_NAME_value(alt, i);
403         if (gn->type != type)
404             continue;
405         r = -1;
406         v = (char *)ASN1_STRING_data(gn->d.ia5);
407         l = ASN1_STRING_length(gn->d.ia5);
408         if (l <= 0)
409             continue;
410 #ifdef DEBUG
411         printfchars(NULL, gn->type == GEN_DNS ? "dns" : "uri", NULL, v, l);
412 #endif
413         if (exact) {
414             if (memcmp(v, exact, l))
415                 continue;
416         } else {
417             s = stringcopy((char *)v, l);
418             if (!s) {
419                 debug(DBG_ERR, "malloc failed");
420                 continue;
421             }
422             if (regexec(regex, s, 0, NULL, 0)) {
423                 free(s);
424                 continue;
425             }
426             free(s);
427         }
428         r = 1;
429         break;
430     }
431     GENERAL_NAMES_free(alt);
432     return r;
433 }
434
435 static int cnregexp(X509 *cert, char *exact, regex_t *regex) {
436     int loc, l;
437     char *v, *s;
438     X509_NAME *nm;
439     X509_NAME_ENTRY *e;
440     ASN1_STRING *t;
441
442     nm = X509_get_subject_name(cert);
443     loc = -1;
444     for (;;) {
445         loc = X509_NAME_get_index_by_NID(nm, NID_commonName, loc);
446         if (loc == -1)
447             break;
448         e = X509_NAME_get_entry(nm, loc);
449         t = X509_NAME_ENTRY_get_data(e);
450         v = (char *) ASN1_STRING_data(t);
451         l = ASN1_STRING_length(t);
452         if (l < 0)
453             continue;
454         if (exact) {
455             if (l == strlen(exact) && !strncasecmp(exact, v, l))
456                 return 1;
457         } else {
458             s = stringcopy((char *)v, l);
459             if (!s) {
460                 debug(DBG_ERR, "malloc failed");
461                 continue;
462             }
463             if (regexec(regex, s, 0, NULL, 0)) {
464                 free(s);
465                 continue;
466             }
467             free(s);
468             return 1;
469         }
470     }
471     return 0;
472 }
473
474 /* this is a bit sloppy, should not always accept match to any */
475 int certnamecheck(X509 *cert, struct list *hostports) {
476     struct list_node *entry;
477     struct hostportres *hp;
478     int r;
479     uint8_t type = 0; /* 0 for DNS, AF_INET for IPv4, AF_INET6 for IPv6 */
480     struct in6_addr addr;
481
482     for (entry = list_first(hostports); entry; entry = list_next(entry)) {
483         hp = (struct hostportres *)entry->data;
484         if (hp->prefixlen != 255) {
485             /* we disable the check for prefixes */
486             return 1;
487         }
488         if (inet_pton(AF_INET, hp->host, &addr))
489             type = AF_INET;
490         else if (inet_pton(AF_INET6, hp->host, &addr))
491             type = AF_INET6;
492         else
493             type = 0;
494
495         r = type ? subjectaltnameaddr(cert, type, &addr) : subjectaltnameregexp(cert, GEN_DNS, hp->host, NULL);
496         if (r) {
497             if (r > 0) {
498                 debug(DBG_DBG, "certnamecheck: Found subjectaltname matching %s %s", type ? "address" : "host", hp->host);
499                 return 1;
500             }
501             debug(DBG_WARN, "certnamecheck: No subjectaltname matching %s %s", type ? "address" : "host", hp->host);
502         } else {
503             if (cnregexp(cert, hp->host, NULL)) {
504                 debug(DBG_DBG, "certnamecheck: Found cn matching host %s", hp->host);
505                 return 1;
506             }
507             debug(DBG_WARN, "certnamecheck: cn not matching host %s", hp->host);
508         }
509     }
510     return 0;
511 }
512
513 int verifyconfcert(X509 *cert, struct clsrvconf *conf) {
514     if (conf->certnamecheck) {
515         if (!certnamecheck(cert, conf->hostports)) {
516             debug(DBG_WARN, "verifyconfcert: certificate name check failed");
517             return 0;
518         }
519         debug(DBG_WARN, "verifyconfcert: certificate name check ok");
520     }
521     if (conf->certcnregex) {
522         if (cnregexp(cert, NULL, conf->certcnregex) < 1) {
523             debug(DBG_WARN, "verifyconfcert: CN not matching regex");
524             return 0;
525         }
526         debug(DBG_DBG, "verifyconfcert: CN matching regex");
527     }
528     if (conf->certuriregex) {
529         if (subjectaltnameregexp(cert, GEN_URI, NULL, conf->certuriregex) < 1) {
530             debug(DBG_WARN, "verifyconfcert: subjectaltname URI not matching regex");
531             return 0;
532         }
533         debug(DBG_DBG, "verifyconfcert: subjectaltname URI matching regex");
534     }
535     return 1;
536 }
537
538 int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
539     struct tls *conf;
540     long int expiry = LONG_MIN;
541
542     debug(DBG_DBG, "conftls_cb called for %s", block);
543
544     conf = malloc(sizeof(struct tls));
545     if (!conf) {
546         debug(DBG_ERR, "conftls_cb: malloc failed");
547         return 0;
548     }
549     memset(conf, 0, sizeof(struct tls));
550
551     if (!getgenericconfig(cf, block,
552                           "CACertificateFile", CONF_STR, &conf->cacertfile,
553                           "CACertificatePath", CONF_STR, &conf->cacertpath,
554                           "CertificateFile", CONF_STR, &conf->certfile,
555                           "CertificateKeyFile", CONF_STR, &conf->certkeyfile,
556                           "CertificateKeyPassword", CONF_STR, &conf->certkeypwd,
557                           "CacheExpiry", CONF_LINT, &expiry,
558                           "CRLCheck", CONF_BLN, &conf->crlcheck,
559                           "PolicyOID", CONF_MSTR, &conf->policyoids,
560                           NULL
561             )) {
562         debug(DBG_ERR, "conftls_cb: configuration error in block %s", val);
563         goto errexit;
564     }
565     if (!conf->certfile || !conf->certkeyfile) {
566         debug(DBG_ERR, "conftls_cb: TLSCertificateFile and TLSCertificateKeyFile must be specified in block %s", val);
567         goto errexit;
568     }
569     if (!conf->cacertfile && !conf->cacertpath) {
570         debug(DBG_ERR, "conftls_cb: CA Certificate file or path need to be specified in block %s", val);
571         goto errexit;
572     }
573     if (expiry != LONG_MIN) {
574         if (expiry < 0) {
575             debug(DBG_ERR, "error in block %s, value of option CacheExpiry is %ld, may not be negative", val, expiry);
576             goto errexit;
577         }
578         conf->cacheexpiry = expiry;
579     }
580
581     conf->name = stringcopy(val, 0);
582     if (!conf->name) {
583         debug(DBG_ERR, "conftls_cb: malloc failed");
584         goto errexit;
585     }
586
587     if (!tlsconfs)
588         tlsconfs = hash_create();
589     if (!hash_insert(tlsconfs, val, strlen(val), conf)) {
590         debug(DBG_ERR, "conftls_cb: malloc failed");
591         goto errexit;
592     }
593     if (!tlsgetctx(RAD_TLS, conf))
594         debug(DBG_ERR, "conftls_cb: error creating ctx for TLS block %s", val);
595     debug(DBG_DBG, "conftls_cb: added TLS block %s", val);
596     return 1;
597
598 errexit:
599     free(conf->cacertfile);
600     free(conf->cacertpath);
601     free(conf->certfile);
602     free(conf->certkeyfile);
603     free(conf->certkeypwd);
604     freegconfmstr(conf->policyoids);
605     free(conf);
606     return 0;
607 }
608
609 int addmatchcertattr(struct clsrvconf *conf) {
610     char *v;
611     regex_t **r;
612
613     if (!strncasecmp(conf->matchcertattr, "CN:/", 4)) {
614         r = &conf->certcnregex;
615         v = conf->matchcertattr + 4;
616     } else if (!strncasecmp(conf->matchcertattr, "SubjectAltName:URI:/", 20)) {
617         r = &conf->certuriregex;
618         v = conf->matchcertattr + 20;
619     } else
620         return 0;
621     if (!*v)
622         return 0;
623     /* regexp, remove optional trailing / if present */
624     if (v[strlen(v) - 1] == '/')
625         v[strlen(v) - 1] = '\0';
626     if (!*v)
627         return 0;
628
629     *r = malloc(sizeof(regex_t));
630     if (!*r) {
631         debug(DBG_ERR, "malloc failed");
632         return 0;
633     }
634     if (regcomp(*r, v, REG_EXTENDED | REG_ICASE | REG_NOSUB)) {
635         free(*r);
636         *r = NULL;
637         debug(DBG_ERR, "failed to compile regular expression %s", v);
638         return 0;
639     }
640     return 1;
641 }
642 #else
643 /* Just to makes file non-empty, should rather avoid compiling this file when not needed */
644 static void tlsdummy() {
645 }
646 #endif
647
648 /* Local Variables: */
649 /* c-file-style: "stroustrup" */
650 /* End: */