tiny connectionok fix
[radsecproxy.git] / radsecproxy.c
1 /*
2  * Copyright (C) 2006, 2007 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 /* For UDP there is one server instance consisting of udpserverrd and udpserverth
10  *              rd is responsible for init and launching wr
11  * For TLS there is a server instance that launches tlsserverrd for each TLS peer
12  *          each tlsserverrd launches tlsserverwr
13  * For each UDP/TLS peer there is clientrd and clientwr, clientwr is responsible
14  *          for init and launching rd
15  *
16  * serverrd will receive a request, processes it and puts it in the requestq of
17  *          the appropriate clientwr
18  * clientwr monitors its requestq and sends requests
19  * clientrd looks for responses, processes them and puts them in the replyq of
20  *          the peer the request came from
21  * serverwr monitors its reply and sends replies
22  *
23  * In addition to the main thread, we have:
24  * If UDP peers are configured, there will be 2 + 2 * #peers UDP threads
25  * If TLS peers are configured, there will initially be 2 * #peers TLS threads
26  * For each TLS peer connecting to us there will be 2 more TLS threads
27  *       This is only for connected peers
28  * Example: With 3 UDP peer and 30 TLS peers, there will be a max of
29  *          1 + (2 + 2 * 3) + (2 * 30) + (2 * 30) = 129 threads
30 */
31
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <netdb.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <sys/time.h>
38 #include <sys/types.h>
39 #include <arpa/inet.h>
40 #include <regex.h>
41 #include <libgen.h>
42 #include <pthread.h>
43 #include <openssl/ssl.h>
44 #include <openssl/rand.h>
45 #include <openssl/err.h>
46 #include <openssl/md5.h>
47 #include <openssl/hmac.h>
48 #include <openssl/x509v3.h>
49 #include "debug.h"
50 #include "list.h"
51 #include "radsecproxy.h"
52
53 static struct options options;
54 struct list *clconfs, *srvconfs, *realms, *tlsconfs;
55
56 static int client_udp_count = 0;
57 static int client_tls_count = 0;
58 static int server_udp_count = 0;
59 static int server_tls_count = 0;
60
61 static struct clsrvconf *tcp_server_listen;
62 static struct clsrvconf *udp_server_listen;
63 static struct clsrvconf *udp_accserver_listen;
64 static struct replyq *udp_server_replyq = NULL;
65 static int udp_server_sock = -1;
66 static int udp_accserver_sock = -1;
67 static pthread_mutex_t *ssl_locks;
68 static long *ssl_lock_count;
69 extern int optind;
70 extern char *optarg;
71
72 /* callbacks for making OpenSSL thread safe */
73 unsigned long ssl_thread_id() {
74         return (unsigned long)pthread_self();
75 }
76
77 void ssl_locking_callback(int mode, int type, const char *file, int line) {
78     if (mode & CRYPTO_LOCK) {
79         pthread_mutex_lock(&ssl_locks[type]);
80         ssl_lock_count[type]++;
81     } else
82         pthread_mutex_unlock(&ssl_locks[type]);
83 }
84
85 static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) {
86     int pwdlen = strlen(userdata);
87     if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */
88         return 0;
89     memcpy(buf, userdata, pwdlen);
90     return pwdlen;
91 }
92
93 static int verify_cb(int ok, X509_STORE_CTX *ctx) {
94   char buf[256];
95   X509 *err_cert;
96   int err, depth;
97
98   err_cert = X509_STORE_CTX_get_current_cert(ctx);
99   err = X509_STORE_CTX_get_error(ctx);
100   depth = X509_STORE_CTX_get_error_depth(ctx);
101
102   if (depth > MAX_CERT_DEPTH) {
103       ok = 0;
104       err = X509_V_ERR_CERT_CHAIN_TOO_LONG;
105       X509_STORE_CTX_set_error(ctx, err);
106   }
107
108   if (!ok) {
109       X509_NAME_oneline(X509_get_subject_name(err_cert), buf, 256);
110       debug(DBG_WARN, "verify error: num=%d:%s:depth=%d:%s", err, X509_verify_cert_error_string(err), depth, buf);
111
112       switch (err) {
113       case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
114           X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf, 256);
115           debug(DBG_WARN, "\tIssuer=%s", buf);
116           break;
117       case X509_V_ERR_CERT_NOT_YET_VALID:
118       case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
119           debug(DBG_WARN, "\tCertificate not yet valid");
120           break;
121       case X509_V_ERR_CERT_HAS_EXPIRED:
122           debug(DBG_WARN, "Certificate has expired");
123           break;
124       case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
125           debug(DBG_WARN, "Certificate no longer valid (after notAfter)");
126           break;
127       }
128   }
129 #ifdef DEBUG  
130   printf("certificate verify returns %d\n", ok);
131 #endif  
132   return ok;
133 }
134
135 int resolvepeer(struct clsrvconf *conf, int ai_flags) {
136     struct addrinfo hints, *addrinfo;
137     char *slash, *s;
138     int plen;
139
140     slash = conf->host ? strchr(conf->host, '/') : NULL;
141     if (slash) {
142         s = slash + 1;
143         if (!*s) {
144             debug(DBG_WARN, "resolvepeer: prefix length must be specified after the / in %s", conf->host);
145             return 0;
146         }
147         for (; *s; s++)
148             if (*s < '0' || *s > '9') {
149                 debug(DBG_WARN, "resolvepeer: %s in %s is not a valid prefix length", slash + 1, conf->host);
150                 return 0;
151             }
152         plen = atoi(slash + 1);
153         if (plen < 0 || plen > 128) {
154             debug(DBG_WARN, "resolvepeer: %s in %s is not a valid prefix length", slash + 1, conf->host);
155             return 0;
156         }
157         *slash = '\0';
158     }
159     memset(&hints, 0, sizeof(hints));
160     hints.ai_socktype = (conf->type == 'T' ? SOCK_STREAM : SOCK_DGRAM);
161     hints.ai_family = AF_UNSPEC;
162     hints.ai_flags = ai_flags;
163     if (slash)
164         hints.ai_flags |= AI_NUMERICHOST;
165     if (getaddrinfo(conf->host, conf->port, &hints, &addrinfo)) {
166         debug(DBG_WARN, "resolvepeer: can't resolve %s port %s", conf->host, conf->port);
167         return 0;
168     }
169
170     if (slash) {
171         *slash = '/';
172         switch (addrinfo->ai_family) {
173         case AF_INET:
174             if (plen > 32) {
175                 debug(DBG_WARN, "resolvepeer: prefix length must be <= 32 in %s", conf->host);
176                 freeaddrinfo(addrinfo);
177                 return 0;
178             }
179             break;
180         case AF_INET6:
181             break;
182         default:
183             debug(DBG_WARN, "resolvepeer: prefix must be IPv4 or IPv6 in %s", conf->host);
184             freeaddrinfo(addrinfo);
185             return 0;
186         }
187         conf->prefixlen = plen;
188     } else
189         conf->prefixlen = 255;
190
191     if (conf->addrinfo)
192         freeaddrinfo(conf->addrinfo);
193     conf->addrinfo = addrinfo;
194     return 1;
195 }         
196
197 int connecttoserver(struct addrinfo *addrinfo) {
198     int s;
199     struct addrinfo *res;
200
201     s = -1;
202     for (res = addrinfo; res; res = res->ai_next) {
203         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
204         if (s < 0) {
205             debug(DBG_WARN, "connecttoserver: socket failed");
206             continue;
207         }
208         if (connect(s, res->ai_addr, res->ai_addrlen) == 0)
209             break;
210         debug(DBG_WARN, "connecttoserver: connect failed");
211         close(s);
212         s = -1;
213     }
214     return s;
215 }         
216
217 int bindtoaddr(struct addrinfo *addrinfo) {
218     int s, on = 1;
219     struct addrinfo *res;
220     
221     for (res = addrinfo; res; res = res->ai_next) {
222         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
223         if (s < 0) {
224             debug(DBG_WARN, "bindtoaddr: socket failed");
225             continue;
226         }
227         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
228         if (!bind(s, res->ai_addr, res->ai_addrlen))
229             return s;
230         debug(DBG_WARN, "bindtoaddr: bind failed");
231         close(s);
232     }
233     return -1;
234 }         
235
236 /* returns 1 if the len first bits are equal, else 0 */
237 int prefixmatch(void *a1, void *a2, uint8_t len) {
238     static uint8_t mask[] = { 0, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe };
239     int r, l = len / 8;
240     if (l && memcmp(a1, a2, l))
241         return 0;
242     r = len % 8;
243     if (!r)
244         return 1;
245     return (((uint8_t *)a1)[l] & mask[r]) == (((uint8_t *)a2)[l] & mask[r]);
246 }
247
248 /* returns the config with matching address, or NULL */
249 /* if conf argument is not NULL, we only check that one */
250 struct clsrvconf *find_conf(char type, struct sockaddr *addr, struct list *confs, struct clsrvconf *conf) {
251     struct sockaddr_in6 *sa6 = NULL;
252     struct in_addr *a4 = NULL;
253     struct addrinfo *res;
254     struct list_node *entry;
255     
256     if (addr->sa_family == AF_INET6) {
257         sa6 = (struct sockaddr_in6 *)addr;
258         if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
259             a4 = (struct in_addr *)&sa6->sin6_addr.s6_addr[12];
260             sa6 = NULL;
261         }
262     } else
263         a4 = &((struct sockaddr_in *)addr)->sin_addr;
264
265     if (conf) {
266         if (conf->type == type) {
267             if (conf->prefixlen == 255) {
268                 for (res = conf->addrinfo; res; res = res->ai_next)
269                     if ((a4 && res->ai_family == AF_INET &&
270                          !memcmp(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, 4)) ||
271                         (sa6 && res->ai_family == AF_INET6 &&
272                          !memcmp(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, 16)))
273                         return conf;
274             } else {
275                 res = conf->addrinfo;
276                 if (res &&
277                     ((a4 && res->ai_family == AF_INET &&
278                       prefixmatch(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, conf->prefixlen)) ||
279                      (sa6 && res->ai_family == AF_INET6 &&
280                       prefixmatch(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, conf->prefixlen))))
281                     return conf;
282             }
283         }
284         return NULL;
285     }
286
287     for (entry = list_first(confs); entry; entry = list_next(entry)) {  
288         conf = (struct clsrvconf *)entry->data;
289         if (conf->type == type) {
290             if (conf->prefixlen == 255) {
291                 for (res = conf->addrinfo; res; res = res->ai_next)
292                     if ((a4 && res->ai_family == AF_INET &&
293                          !memcmp(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, 4)) ||
294                         (sa6 && res->ai_family == AF_INET6 &&
295                          !memcmp(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, 16)))
296                         return conf;
297             } else {
298                 res = conf->addrinfo;
299                 if (res &&
300                     ((a4 && res->ai_family == AF_INET &&
301                       prefixmatch(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, conf->prefixlen)) ||
302                      (sa6 && res->ai_family == AF_INET6 &&
303                       prefixmatch(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, conf->prefixlen))))
304                     return conf;
305             }
306         }
307     }    
308     return NULL;
309 }
310
311 struct replyq *newreplyq() {
312     struct replyq *replyq;
313     
314     replyq = malloc(sizeof(struct replyq));
315     if (!replyq)
316         debugx(1, DBG_ERR, "malloc failed");
317     replyq->replies = list_create();
318     if (!replyq->replies)
319         debugx(1, DBG_ERR, "malloc failed");
320     pthread_mutex_init(&replyq->mutex, NULL);
321     pthread_cond_init(&replyq->cond, NULL);
322     return replyq;
323 }
324
325 struct client *addclient(struct clsrvconf *conf) {
326     struct client *new = malloc(sizeof(struct client));
327     
328     if (!new) {
329         debug(DBG_ERR, "malloc failed");
330         return NULL;
331     }
332     if (!conf->clients) {
333         conf->clients = list_create();
334         if (!conf->clients) {
335             debug(DBG_ERR, "malloc failed");
336             return NULL;
337         }
338     }
339     
340     memset(new, 0, sizeof(struct client));
341     new->conf = conf;
342     new->replyq = conf->type == 'T' ? newreplyq() : udp_server_replyq;
343
344     list_push(conf->clients, new);
345     return new;
346 }
347
348 void removeclient(struct client *client) {
349     if (!client || !client->conf->clients)
350         return;
351
352     list_removedata(client->conf->clients, client);
353     free(client);
354 }
355
356 void addserver(struct clsrvconf *conf) {
357     if (conf->servers)
358         debugx(1, DBG_ERR, "currently works with just one server per conf");
359     
360     conf->servers = malloc(sizeof(struct server));
361     if (!conf->servers)
362         debugx(1, DBG_ERR, "malloc failed");
363     memset(conf->servers, 0, sizeof(struct server));
364     conf->servers->conf = conf;
365
366     conf->servers->sock = -1;
367     pthread_mutex_init(&conf->servers->lock, NULL);
368     conf->servers->requests = calloc(MAX_REQUESTS, sizeof(struct request));
369     if (!conf->servers->requests)
370         debugx(1, DBG_ERR, "malloc failed");
371     conf->servers->newrq = 0;
372     pthread_mutex_init(&conf->servers->newrq_mutex, NULL);
373     pthread_cond_init(&conf->servers->newrq_cond, NULL);
374 }
375
376 /* exactly one of client and server must be non-NULL */
377 /* should probably take peer list (client(s) or server(s)) as argument instead */
378 /* if *peer == NULL we return who we received from, else require it to be from peer */
379 /* return from in sa if not NULL */
380 unsigned char *radudpget(int s, struct client **client, struct server **server, struct sockaddr_storage *sa) {
381     int cnt, len;
382     unsigned char buf[65536], *rad;
383     struct sockaddr_storage from;
384     socklen_t fromlen = sizeof(from);
385     struct clsrvconf *p;
386     struct list_node *node;
387     
388     for (;;) {
389         cnt = recvfrom(s, buf, sizeof(buf), 0, (struct sockaddr *)&from, &fromlen);
390         if (cnt == -1) {
391             debug(DBG_WARN, "radudpget: recv failed");
392             continue;
393         }
394         debug(DBG_DBG, "radudpget: got %d bytes from %s", cnt, addr2string((struct sockaddr *)&from, fromlen));
395
396         if (cnt < 20) {
397             debug(DBG_WARN, "radudpget: packet too small");
398             continue;
399         }
400     
401         len = RADLEN(buf);
402         if (len < 20) {
403             debug(DBG_WARN, "radudpget: length too small");
404             continue;
405         }
406
407         if (cnt < len) {
408             debug(DBG_WARN, "radudpget: packet smaller than length field in radius header");
409             continue;
410         }
411         if (cnt > len)
412             debug(DBG_DBG, "radudpget: packet was padded with %d bytes", cnt - len);
413
414         if (client)
415             if (*client)
416                 p = find_conf('U', (struct sockaddr *)&from, NULL, (*client)->conf);
417             else
418                 p = find_conf('U', (struct sockaddr *)&from, clconfs, NULL);
419         else
420             if (*server)
421                 p = find_conf('U', (struct sockaddr *)&from, NULL, (*server)->conf);
422             else
423                 p = find_conf('U', (struct sockaddr *)&from, srvconfs, NULL);
424
425         if (!p) {
426             debug(DBG_WARN, "radudpget: got packet from wrong or unknown UDP peer, ignoring");
427             continue;
428         }
429         
430         rad = malloc(len);
431         if (!rad) {
432             debug(DBG_ERR, "radudpget: malloc failed");
433             continue;
434         }
435         
436         if (client && !*client) {
437             node = list_first(p->clients);
438             *client = node ? (struct client *)node->data : addclient(p);
439             if (!*client) {
440                 free(rad);
441                 continue;
442             }
443         } else if (server && !*server)
444             *server = p->servers;
445         
446         break;
447     }
448     memcpy(rad, buf, len);
449     if (sa)
450         *sa = from;
451     return rad;
452 }
453
454 int subjectaltnameaddr(X509 *cert, int family, struct in6_addr *addr) {
455     int loc, i, l, n, r = 0;
456     char *v;
457     X509_EXTENSION *ex;
458     STACK_OF(GENERAL_NAME) *alt;
459     GENERAL_NAME *gn;
460     
461     debug(DBG_DBG, "subjectaltnameaddr");
462     
463     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
464     if (loc < 0)
465         return r;
466     
467     ex = X509_get_ext(cert, loc);
468     alt = X509V3_EXT_d2i(ex);
469     if (!alt)
470         return r;
471     
472     n = sk_GENERAL_NAME_num(alt);
473     for (i = 0; i < n; i++) {
474         gn = sk_GENERAL_NAME_value(alt, i);
475         if (gn->type != GEN_IPADD)
476             continue;
477         r = -1;
478         v = (char *)ASN1_STRING_data(gn->d.ia5);
479         l = ASN1_STRING_length(gn->d.ia5);
480         if (((family == AF_INET && l == sizeof(struct in_addr)) || (family == AF_INET6 && l == sizeof(struct in6_addr)))
481             && !memcmp(v, &addr, l)) {
482             r = 1;
483             break;
484         }
485     }
486     GENERAL_NAMES_free(alt);
487     return r;
488 }
489
490 int subjectaltnameregexp(X509 *cert, int type, char *exact,  regex_t *regex) {
491     int loc, i, l, n, r = 0;
492     char *s, *v;
493     X509_EXTENSION *ex;
494     STACK_OF(GENERAL_NAME) *alt;
495     GENERAL_NAME *gn;
496     
497     debug(DBG_DBG, "subjectaltnameregexp");
498     
499     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
500     if (loc < 0)
501         return r;
502     
503     ex = X509_get_ext(cert, loc);
504     alt = X509V3_EXT_d2i(ex);
505     if (!alt)
506         return r;
507     
508     n = sk_GENERAL_NAME_num(alt);
509     for (i = 0; i < n; i++) {
510         gn = sk_GENERAL_NAME_value(alt, i);
511         if (gn->type != type)
512             continue;
513         r = -1;
514         v = (char *)ASN1_STRING_data(gn->d.ia5);
515         l = ASN1_STRING_length(gn->d.ia5);
516         if (l <= 0)
517             continue;
518 #ifdef DEBUG
519         printfchars(NULL, gn->type == GEN_DNS ? "dns" : "uri", NULL, v, l);
520 #endif  
521         if (exact) {
522             if (memcmp(v, exact, l))
523                 continue;
524         } else {
525             s = stringcopy((char *)v, l);
526             if (!s) {
527                 debug(DBG_ERR, "malloc failed");
528                 continue;
529             }
530             if (regexec(regex, s, 0, NULL, 0)) {
531                 free(s);
532                 continue;
533             }
534             free(s);
535         }
536         r = 1;
537         break;
538     }
539     GENERAL_NAMES_free(alt);
540     return r;
541 }
542
543 int tlsverifycert(SSL *ssl, struct clsrvconf *conf) {
544     int l, loc, r;
545     X509 *cert;
546     X509_NAME *nm;
547     X509_NAME_ENTRY *e;
548     ASN1_STRING *s;
549     char *v;
550     uint8_t type = 0; /* 0 for DNS, AF_INET for IPv4, AF_INET6 for IPv6 */
551     unsigned long error;
552     struct in6_addr addr;
553     
554     if (SSL_get_verify_result(ssl) != X509_V_OK) {
555         debug(DBG_ERR, "tlsverifycert: basic validation failed");
556         while ((error = ERR_get_error()))
557             debug(DBG_ERR, "tlsverifycert: TLS: %s", ERR_error_string(error, NULL));
558         return 0;
559     }
560
561     cert = SSL_get_peer_certificate(ssl);
562     if (!cert) {
563         debug(DBG_ERR, "tlsverifycert: failed to obtain certificate");
564         return 0;
565     }
566     
567     if (inet_pton(AF_INET, conf->host, &addr))
568         type = AF_INET;
569     else if (inet_pton(AF_INET6, conf->host, &addr))
570         type = AF_INET6;
571
572     r = type ? subjectaltnameaddr(cert, type, &addr) : subjectaltnameregexp(cert, GEN_DNS, conf->host, NULL);
573     if (r) {
574         if (r < 0) {
575             X509_free(cert);
576             debug(DBG_DBG, "tlsverifycert: No subjectaltname matching %s %s", type ? "address" : "host", conf->host);
577             return 0;
578         }
579         debug(DBG_DBG, "tlsverifycert: Found subjectaltname matching %s %s", type ? "address" : "host", conf->host);
580     } else {
581         nm = X509_get_subject_name(cert);
582         loc = -1;
583         for (;;) {
584             loc = X509_NAME_get_index_by_NID(nm, NID_commonName, loc);
585             if (loc == -1)
586                 break;
587             e = X509_NAME_get_entry(nm, loc);
588             s = X509_NAME_ENTRY_get_data(e);
589             v = (char *) ASN1_STRING_data(s);
590             l = ASN1_STRING_length(s);
591             if (l < 0)
592                 continue;
593 #ifdef DEBUG
594             printfchars(NULL, "cn", NULL, v, l);
595 #endif      
596             if (l == strlen(conf->host) && !strncasecmp(conf->host, v, l)) {
597                 r = 1;
598                 debug(DBG_DBG, "tlsverifycert: Found cn matching host %s", conf->host);
599                 break;
600             }
601         }
602         if (!r) {
603             X509_free(cert);
604             debug(DBG_ERR, "tlsverifycert: cn not matching host %s", conf->host);
605             return 0;
606         }
607     }
608     if (conf->certuriregex) {
609         r = subjectaltnameregexp(cert, GEN_URI, NULL, conf->certuriregex);
610         if (r < 1) {
611             debug(DBG_DBG, "tlsverifycert: subjectaltname URI not matching regex");
612             X509_free(cert);
613             return 0;
614         }
615         debug(DBG_DBG, "tlsverifycert: subjectaltname URI matching regex");
616     }
617     X509_free(cert);
618     return 1;
619 }
620
621 void tlsconnect(struct server *server, struct timeval *when, char *text) {
622     struct timeval now;
623     time_t elapsed;
624
625     debug(DBG_DBG, "tlsconnect called from %s", text);
626     pthread_mutex_lock(&server->lock);
627     if (when && memcmp(&server->lastconnecttry, when, sizeof(struct timeval))) {
628         /* already reconnected, nothing to do */
629         debug(DBG_DBG, "tlsconnect(%s): seems already reconnected", text);
630         pthread_mutex_unlock(&server->lock);
631         return;
632     }
633
634     debug(DBG_DBG, "tlsconnect %s", text);
635
636     for (;;) {
637         gettimeofday(&now, NULL);
638         elapsed = now.tv_sec - server->lastconnecttry.tv_sec;
639         if (server->connectionok) {
640             server->connectionok = 0;
641             sleep(10);
642         } else if (elapsed < 5)
643             sleep(10);
644         else if (elapsed < 300) {
645             debug(DBG_INFO, "tlsconnect: sleeping %lds", elapsed);
646             sleep(elapsed);
647         } else if (elapsed < 100000) {
648             debug(DBG_INFO, "tlsconnect: sleeping %ds", 600);
649             sleep(600);
650         } else
651             server->lastconnecttry.tv_sec = now.tv_sec;  /* no sleep at startup */
652         debug(DBG_WARN, "tlsconnect: trying to open TLS connection to %s port %s", server->conf->host, server->conf->port);
653         if (server->sock >= 0)
654             close(server->sock);
655         if ((server->sock = connecttoserver(server->conf->addrinfo)) < 0) {
656             debug(DBG_ERR, "tlsconnect: connecttoserver failed");
657             continue;
658         }
659         
660         SSL_free(server->ssl);
661         server->ssl = SSL_new(server->conf->ssl_ctx);
662         SSL_set_fd(server->ssl, server->sock);
663         if (SSL_connect(server->ssl) > 0 && tlsverifycert(server->ssl, server->conf))
664             break;
665     }
666     debug(DBG_WARN, "tlsconnect: TLS connection to %s port %s up", server->conf->host, server->conf->port);
667     gettimeofday(&server->lastconnecttry, NULL);
668     pthread_mutex_unlock(&server->lock);
669 }
670
671 unsigned char *radtlsget(SSL *ssl) {
672     int cnt, total, len;
673     unsigned char buf[4], *rad;
674
675     for (;;) {
676         for (total = 0; total < 4; total += cnt) {
677             cnt = SSL_read(ssl, buf + total, 4 - total);
678             if (cnt <= 0) {
679                 debug(DBG_ERR, "radtlsget: connection lost");
680                 if (SSL_get_error(ssl, cnt) == SSL_ERROR_ZERO_RETURN) {
681                     /* remote end sent close_notify, send one back */
682                     SSL_shutdown(ssl);
683                 }
684                 return NULL;
685             }
686         }
687
688         len = RADLEN(buf);
689         rad = malloc(len);
690         if (!rad) {
691             debug(DBG_ERR, "radtlsget: malloc failed");
692             continue;
693         }
694         memcpy(rad, buf, 4);
695
696         for (; total < len; total += cnt) {
697             cnt = SSL_read(ssl, rad + total, len - total);
698             if (cnt <= 0) {
699                 debug(DBG_ERR, "radtlsget: connection lost");
700                 if (SSL_get_error(ssl, cnt) == SSL_ERROR_ZERO_RETURN) {
701                     /* remote end sent close_notify, send one back */
702                     SSL_shutdown(ssl);
703                 }
704                 free(rad);
705                 return NULL;
706             }
707         }
708     
709         if (total >= 20)
710             break;
711         
712         free(rad);
713         debug(DBG_WARN, "radtlsget: packet smaller than minimum radius size");
714     }
715     
716     debug(DBG_DBG, "radtlsget: got %d bytes", total);
717     return rad;
718 }
719
720 int clientradput(struct server *server, unsigned char *rad) {
721     int cnt;
722     size_t len;
723     unsigned long error;
724     struct timeval lastconnecttry;
725     
726     len = RADLEN(rad);
727     if (server->conf->type == 'U') {
728         if (send(server->sock, rad, len, 0) >= 0) {
729             debug(DBG_DBG, "clienradput: sent UDP of length %d to %s port %s", len, server->conf->host, server->conf->port);
730             return 1;
731         }
732         debug(DBG_WARN, "clientradput: send failed");
733         return 0;
734     }
735
736     lastconnecttry = server->lastconnecttry;
737     while ((cnt = SSL_write(server->ssl, rad, len)) <= 0) {
738         while ((error = ERR_get_error()))
739             debug(DBG_ERR, "clientradput: TLS: %s", ERR_error_string(error, NULL));
740         tlsconnect(server, &lastconnecttry, "clientradput");
741         lastconnecttry = server->lastconnecttry;
742     }
743
744     server->connectionok = 1;
745     debug(DBG_DBG, "clientradput: Sent %d bytes, Radius packet of length %d to TLS peer %s",
746            cnt, len, server->conf->host);
747     return 1;
748 }
749
750 int radsign(unsigned char *rad, unsigned char *sec) {
751     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
752     static unsigned char first = 1;
753     static EVP_MD_CTX mdctx;
754     unsigned int md_len;
755     int result;
756     
757     pthread_mutex_lock(&lock);
758     if (first) {
759         EVP_MD_CTX_init(&mdctx);
760         first = 0;
761     }
762
763     result = (EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) &&
764         EVP_DigestUpdate(&mdctx, rad, RADLEN(rad)) &&
765         EVP_DigestUpdate(&mdctx, sec, strlen((char *)sec)) &&
766         EVP_DigestFinal_ex(&mdctx, rad + 4, &md_len) &&
767         md_len == 16);
768     pthread_mutex_unlock(&lock);
769     return result;
770 }
771
772 int validauth(unsigned char *rad, unsigned char *reqauth, unsigned char *sec) {
773     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
774     static unsigned char first = 1;
775     static EVP_MD_CTX mdctx;
776     unsigned char hash[EVP_MAX_MD_SIZE];
777     unsigned int len;
778     int result;
779     
780     pthread_mutex_lock(&lock);
781     if (first) {
782         EVP_MD_CTX_init(&mdctx);
783         first = 0;
784     }
785
786     len = RADLEN(rad);
787     
788     result = (EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) &&
789               EVP_DigestUpdate(&mdctx, rad, 4) &&
790               EVP_DigestUpdate(&mdctx, reqauth, 16) &&
791               (len <= 20 || EVP_DigestUpdate(&mdctx, rad + 20, len - 20)) &&
792               EVP_DigestUpdate(&mdctx, sec, strlen((char *)sec)) &&
793               EVP_DigestFinal_ex(&mdctx, hash, &len) &&
794               len == 16 &&
795               !memcmp(hash, rad + 4, 16));
796     pthread_mutex_unlock(&lock);
797     return result;
798 }
799               
800 int checkmessageauth(unsigned char *rad, uint8_t *authattr, char *secret) {
801     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
802     static unsigned char first = 1;
803     static HMAC_CTX hmacctx;
804     unsigned int md_len;
805     uint8_t auth[16], hash[EVP_MAX_MD_SIZE];
806     
807     pthread_mutex_lock(&lock);
808     if (first) {
809         HMAC_CTX_init(&hmacctx);
810         first = 0;
811     }
812
813     memcpy(auth, authattr, 16);
814     memset(authattr, 0, 16);
815     md_len = 0;
816     HMAC_Init_ex(&hmacctx, secret, strlen(secret), EVP_md5(), NULL);
817     HMAC_Update(&hmacctx, rad, RADLEN(rad));
818     HMAC_Final(&hmacctx, hash, &md_len);
819     memcpy(authattr, auth, 16);
820     if (md_len != 16) {
821         debug(DBG_WARN, "message auth computation failed");
822         pthread_mutex_unlock(&lock);
823         return 0;
824     }
825
826     if (memcmp(auth, hash, 16)) {
827         debug(DBG_WARN, "message authenticator, wrong value");
828         pthread_mutex_unlock(&lock);
829         return 0;
830     }   
831         
832     pthread_mutex_unlock(&lock);
833     return 1;
834 }
835
836 int createmessageauth(unsigned char *rad, unsigned char *authattrval, char *secret) {
837     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
838     static unsigned char first = 1;
839     static HMAC_CTX hmacctx;
840     unsigned int md_len;
841
842     if (!authattrval)
843         return 1;
844     
845     pthread_mutex_lock(&lock);
846     if (first) {
847         HMAC_CTX_init(&hmacctx);
848         first = 0;
849     }
850
851     memset(authattrval, 0, 16);
852     md_len = 0;
853     HMAC_Init_ex(&hmacctx, secret, strlen(secret), EVP_md5(), NULL);
854     HMAC_Update(&hmacctx, rad, RADLEN(rad));
855     HMAC_Final(&hmacctx, authattrval, &md_len);
856     if (md_len != 16) {
857         debug(DBG_WARN, "message auth computation failed");
858         pthread_mutex_unlock(&lock);
859         return 0;
860     }
861
862     pthread_mutex_unlock(&lock);
863     return 1;
864 }
865
866 unsigned char *attrget(unsigned char *attrs, int length, uint8_t type) {
867     while (length > 1) {
868         if (ATTRTYPE(attrs) == type)
869             return attrs;
870         length -= ATTRLEN(attrs);
871         attrs += ATTRLEN(attrs);
872     }
873     return NULL;
874 }
875
876 void sendrq(struct server *to, struct request *rq) {
877     int i;
878     uint8_t *attr;
879
880     pthread_mutex_lock(&to->newrq_mutex);
881     /* might simplify if only try nextid, might be ok */
882     for (i = to->nextid; i < MAX_REQUESTS; i++)
883         if (!to->requests[i].buf)
884             break;
885     if (i == MAX_REQUESTS) {
886         for (i = 0; i < to->nextid; i++)
887             if (!to->requests[i].buf)
888                 break;
889         if (i == to->nextid) {
890             debug(DBG_WARN, "No room in queue, dropping request");
891             free(rq->buf);
892             pthread_mutex_unlock(&to->newrq_mutex);
893             return;
894         }
895     }
896     
897     rq->buf[1] = (char)i;
898
899     attr = attrget(rq->buf + 20, RADLEN(rq->buf) - 20, RAD_Attr_Message_Authenticator);
900     if (attr && !createmessageauth(rq->buf, ATTRVAL(attr), to->conf->secret)) {
901         free(rq->buf);
902         pthread_mutex_unlock(&to->newrq_mutex);
903         return;
904     }
905
906     debug(DBG_DBG, "sendrq: inserting packet with id %d in queue for %s", i, to->conf->host);
907     to->requests[i] = *rq;
908     to->nextid = i + 1;
909
910     if (!to->newrq) {
911         to->newrq = 1;
912         debug(DBG_DBG, "signalling client writer");
913         pthread_cond_signal(&to->newrq_cond);
914     }
915     pthread_mutex_unlock(&to->newrq_mutex);
916 }
917
918 void sendreply(struct client *to, unsigned char *buf, struct sockaddr_storage *tosa) {
919     struct reply *reply;
920     uint8_t first;
921     
922     if (!radsign(buf, (unsigned char *)to->conf->secret)) {
923         free(buf);
924         debug(DBG_WARN, "sendreply: failed to sign message");
925         return;
926     }
927
928     reply = malloc(sizeof(struct reply));
929     if (!reply) {
930         free(buf);
931         debug(DBG_ERR, "sendreply: malloc failed");
932         return;
933     }
934     memset(reply, 0, sizeof(struct reply));
935     reply->buf = buf;
936     if (tosa)
937         reply->tosa = *tosa;
938     
939     pthread_mutex_lock(&to->replyq->mutex);
940
941     first = list_first(to->replyq->replies) == NULL;
942     
943     if (!list_push(to->replyq->replies, reply)) {
944         pthread_mutex_unlock(&to->replyq->mutex);
945         free(reply);
946         free(buf);
947         debug(DBG_ERR, "sendreply: malloc failed");
948         return;
949     }
950     
951     if (first) {
952         debug(DBG_DBG, "signalling server writer");
953         pthread_cond_signal(&to->replyq->cond);
954     }
955     pthread_mutex_unlock(&to->replyq->mutex);
956 }
957
958 int pwdencrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
959     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
960     static unsigned char first = 1;
961     static EVP_MD_CTX mdctx;
962     unsigned char hash[EVP_MAX_MD_SIZE], *input;
963     unsigned int md_len;
964     uint8_t i, offset = 0, out[128];
965     
966     pthread_mutex_lock(&lock);
967     if (first) {
968         EVP_MD_CTX_init(&mdctx);
969         first = 0;
970     }
971
972     input = auth;
973     for (;;) {
974         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
975             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
976             !EVP_DigestUpdate(&mdctx, input, 16) ||
977             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
978             md_len != 16) {
979             pthread_mutex_unlock(&lock);
980             return 0;
981         }
982         for (i = 0; i < 16; i++)
983             out[offset + i] = hash[i] ^ in[offset + i];
984         input = out + offset - 16;
985         offset += 16;
986         if (offset == len)
987             break;
988     }
989     memcpy(in, out, len);
990     pthread_mutex_unlock(&lock);
991     return 1;
992 }
993
994 int pwddecrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
995     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
996     static unsigned char first = 1;
997     static EVP_MD_CTX mdctx;
998     unsigned char hash[EVP_MAX_MD_SIZE], *input;
999     unsigned int md_len;
1000     uint8_t i, offset = 0, out[128];
1001     
1002     pthread_mutex_lock(&lock);
1003     if (first) {
1004         EVP_MD_CTX_init(&mdctx);
1005         first = 0;
1006     }
1007
1008     input = auth;
1009     for (;;) {
1010         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1011             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
1012             !EVP_DigestUpdate(&mdctx, input, 16) ||
1013             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1014             md_len != 16) {
1015             pthread_mutex_unlock(&lock);
1016             return 0;
1017         }
1018         for (i = 0; i < 16; i++)
1019             out[offset + i] = hash[i] ^ in[offset + i];
1020         input = in + offset;
1021         offset += 16;
1022         if (offset == len)
1023             break;
1024     }
1025     memcpy(in, out, len);
1026     pthread_mutex_unlock(&lock);
1027     return 1;
1028 }
1029
1030 int msmppencrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
1031     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1032     static unsigned char first = 1;
1033     static EVP_MD_CTX mdctx;
1034     unsigned char hash[EVP_MAX_MD_SIZE];
1035     unsigned int md_len;
1036     uint8_t i, offset;
1037     
1038     pthread_mutex_lock(&lock);
1039     if (first) {
1040         EVP_MD_CTX_init(&mdctx);
1041         first = 0;
1042     }
1043
1044 #if 0
1045     printfchars(NULL, "msppencrypt auth in", "%02x ", auth, 16);
1046     printfchars(NULL, "msppencrypt salt in", "%02x ", salt, 2);
1047     printfchars(NULL, "msppencrypt in", "%02x ", text, len);
1048 #endif
1049     
1050     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1051         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1052         !EVP_DigestUpdate(&mdctx, auth, 16) ||
1053         !EVP_DigestUpdate(&mdctx, salt, 2) ||
1054         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
1055         pthread_mutex_unlock(&lock);
1056         return 0;
1057     }
1058
1059 #if 0    
1060     printfchars(NULL, "msppencrypt hash", "%02x ", hash, 16);
1061 #endif
1062     
1063     for (i = 0; i < 16; i++)
1064         text[i] ^= hash[i];
1065     
1066     for (offset = 16; offset < len; offset += 16) {
1067 #if 0   
1068         printf("text + offset - 16 c(%d): ", offset / 16);
1069         printfchars(NULL, NULL, "%02x ", text + offset - 16, 16);
1070 #endif
1071         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1072             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1073             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
1074             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1075             md_len != 16) {
1076             pthread_mutex_unlock(&lock);
1077             return 0;
1078         }
1079 #if 0
1080         printfchars(NULL, "msppencrypt hash", "%02x ", hash, 16);
1081 #endif    
1082         
1083         for (i = 0; i < 16; i++)
1084             text[offset + i] ^= hash[i];
1085     }
1086     
1087 #if 0
1088     printfchars(NULL, "msppencrypt out", "%02x ", text, len);
1089 #endif
1090
1091     pthread_mutex_unlock(&lock);
1092     return 1;
1093 }
1094
1095 int msmppdecrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
1096     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1097     static unsigned char first = 1;
1098     static EVP_MD_CTX mdctx;
1099     unsigned char hash[EVP_MAX_MD_SIZE];
1100     unsigned int md_len;
1101     uint8_t i, offset;
1102     char plain[255];
1103     
1104     pthread_mutex_lock(&lock);
1105     if (first) {
1106         EVP_MD_CTX_init(&mdctx);
1107         first = 0;
1108     }
1109
1110 #if 0
1111     printfchars(NULL, "msppdecrypt auth in", "%02x ", auth, 16);
1112     printfchars(NULL, "msppdecrypt salt in", "%02x ", salt, 2);
1113     printfchars(NULL, "msppdecrypt in", "%02x ", text, len);
1114 #endif
1115     
1116     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1117         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1118         !EVP_DigestUpdate(&mdctx, auth, 16) ||
1119         !EVP_DigestUpdate(&mdctx, salt, 2) ||
1120         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
1121         pthread_mutex_unlock(&lock);
1122         return 0;
1123     }
1124
1125 #if 0    
1126     printfchars(NULL, "msppdecrypt hash", "%02x ", hash, 16);
1127 #endif
1128     
1129     for (i = 0; i < 16; i++)
1130         plain[i] = text[i] ^ hash[i];
1131     
1132     for (offset = 16; offset < len; offset += 16) {
1133 #if 0   
1134         printf("text + offset - 16 c(%d): ", offset / 16);
1135         printfchars(NULL, NULL, "%02x ", text + offset - 16, 16);
1136 #endif
1137         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1138             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1139             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
1140             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1141             md_len != 16) {
1142             pthread_mutex_unlock(&lock);
1143             return 0;
1144         }
1145 #if 0
1146         printfchars(NULL, "msppdecrypt hash", "%02x ", hash, 16);
1147 #endif    
1148
1149         for (i = 0; i < 16; i++)
1150             plain[offset + i] = text[offset + i] ^ hash[i];
1151     }
1152
1153     memcpy(text, plain, len);
1154 #if 0
1155     printfchars(NULL, "msppdecrypt out", "%02x ", text, len);
1156 #endif
1157
1158     pthread_mutex_unlock(&lock);
1159     return 1;
1160 }
1161
1162 struct realm *id2realm(char *id, uint8_t len) {
1163     struct list_node *entry;
1164     struct realm *realm;
1165     
1166     for (entry = list_first(realms); entry; entry = list_next(entry)) {
1167         realm = (struct realm *)entry->data;
1168         if (!regexec(&realm->regex, id, 0, NULL, 0)) {
1169             debug(DBG_DBG, "found matching realm: %s", realm->name);
1170             return realm;
1171         }
1172     }
1173     return NULL;
1174 }
1175
1176 int rqinqueue(struct server *to, struct client *from, uint8_t id) {
1177     int i;
1178     
1179     pthread_mutex_lock(&to->newrq_mutex);
1180     for (i = 0; i < MAX_REQUESTS; i++)
1181         if (to->requests[i].buf && to->requests[i].origid == id && to->requests[i].from == from)
1182             break;
1183     pthread_mutex_unlock(&to->newrq_mutex);
1184     
1185     return i < MAX_REQUESTS;
1186 }
1187
1188 int attrvalidate(unsigned char *attrs, int length) {
1189     while (length > 1) {
1190         if (ATTRLEN(attrs) < 2) {
1191             debug(DBG_WARN, "attrvalidate: invalid attribute length %d", ATTRLEN(attrs));
1192             return 0;
1193         }
1194         length -= ATTRLEN(attrs);
1195         if (length < 0) {
1196             debug(DBG_WARN, "attrvalidate: attribute length %d exceeds packet length", ATTRLEN(attrs));
1197             return 0;
1198         }
1199         attrs += ATTRLEN(attrs);
1200     }
1201     if (length)
1202         debug(DBG_WARN, "attrvalidate: malformed packet? remaining byte after last attribute");
1203     return 1;
1204 }
1205
1206 int pwdrecrypt(uint8_t *pwd, uint8_t len, char *oldsecret, char *newsecret, uint8_t *oldauth, uint8_t *newauth) {
1207     if (len < 16 || len > 128 || len % 16) {
1208         debug(DBG_WARN, "pwdrecrypt: invalid password length");
1209         return 0;
1210     }
1211         
1212     if (!pwddecrypt(pwd, len, oldsecret, strlen(oldsecret), oldauth)) {
1213         debug(DBG_WARN, "pwdrecrypt: cannot decrypt password");
1214         return 0;
1215     }
1216 #ifdef DEBUG
1217     printfchars(NULL, "pwdrecrypt: password", "%02x ", pwd, len);
1218 #endif  
1219     if (!pwdencrypt(pwd, len, newsecret, strlen(newsecret), newauth)) {
1220         debug(DBG_WARN, "pwdrecrypt: cannot encrypt password");
1221         return 0;
1222     }
1223     return 1;
1224 }
1225
1226 int msmpprecrypt(uint8_t *msmpp, uint8_t len, char *oldsecret, char *newsecret, unsigned char *oldauth, char *newauth) {
1227     if (len < 18)
1228         return 0;
1229     if (!msmppdecrypt(msmpp + 2, len - 2, (unsigned char *)oldsecret, strlen(oldsecret), oldauth, msmpp)) {
1230         debug(DBG_WARN, "msmpprecrypt: failed to decrypt msppe key");
1231         return 0;
1232     }
1233     if (!msmppencrypt(msmpp + 2, len - 2, (unsigned char *)newsecret, strlen(newsecret), (unsigned char *)newauth, msmpp)) {
1234         debug(DBG_WARN, "msmpprecrypt: failed to encrypt msppe key");
1235         return 0;
1236     }
1237     return 1;
1238 }
1239
1240 int msmppe(unsigned char *attrs, int length, uint8_t type, char *attrtxt, struct request *rq,
1241            char *oldsecret, char *newsecret) {
1242     unsigned char *attr;
1243     
1244     for (attr = attrs; (attr = attrget(attr, length - (attr - attrs), type)); attr += ATTRLEN(attr)) {
1245         debug(DBG_DBG, "msmppe: Got %s", attrtxt);
1246         if (!msmpprecrypt(ATTRVAL(attr), ATTRVALLEN(attr), oldsecret, newsecret, rq->buf + 4, rq->origauth))
1247             return 0;
1248     }
1249     return 1;
1250 }
1251
1252 void acclog(unsigned char *attrs, int length, char *host) {
1253     unsigned char *attr;
1254     char username[256];
1255     
1256     attr = attrget(attrs, length, RAD_Attr_User_Name);
1257     if (!attr) {
1258         debug(DBG_INFO, "acclog: accounting-request from %s without username attribute", host);
1259         return;
1260     }
1261     memcpy(username, ATTRVAL(attr), ATTRVALLEN(attr));
1262     username[ATTRVALLEN(attr)] = '\0';
1263     debug(DBG_INFO, "acclog: accounting-request from %s with username: %s", host, username);
1264 }
1265         
1266 void respondaccounting(struct request *rq) {
1267     unsigned char *resp;
1268
1269     resp = malloc(20);
1270     if (!resp) {
1271         debug(DBG_ERR, "respondstatusserver: malloc failed");
1272         return;
1273     }
1274     memcpy(resp, rq->buf, 20);
1275     resp[0] = RAD_Accounting_Response;
1276     resp[2] = 0;
1277     resp[3] = 20;
1278     debug(DBG_DBG, "respondaccounting: responding to %s", rq->from->conf->host);
1279     sendreply(rq->from, resp, rq->from->conf->type == 'U' ? &rq->fromsa : NULL);
1280 }
1281
1282 void respondstatusserver(struct request *rq) {
1283     unsigned char *resp;
1284
1285     resp = malloc(20);
1286     if (!resp) {
1287         debug(DBG_ERR, "respondstatusserver: malloc failed");
1288         return;
1289     }
1290     memcpy(resp, rq->buf, 20);
1291     resp[0] = RAD_Access_Accept;
1292     resp[2] = 0;
1293     resp[3] = 20;
1294     debug(DBG_DBG, "respondstatusserver: responding to %s", rq->from->conf->host);
1295     sendreply(rq->from, resp, rq->from->conf->type == 'U' ? &rq->fromsa : NULL);
1296 }
1297
1298 void respondreject(struct request *rq, char *message) {
1299     unsigned char *resp;
1300     int len = 20;
1301
1302     if (message)
1303         len += 2 + strlen(message);
1304     
1305     resp = malloc(len);
1306     if (!resp) {
1307         debug(DBG_ERR, "respondreject: malloc failed");
1308         return;
1309     }
1310     memcpy(resp, rq->buf, 20);
1311     resp[0] = RAD_Access_Reject;
1312     *(uint16_t *)(resp + 2) = htons(len);
1313     if (message) {
1314         resp[20] = RAD_Attr_Reply_Message;
1315         resp[21] = len - 20;
1316         memcpy(resp + 22, message, len - 22);
1317     }
1318     sendreply(rq->from, resp, rq->from->conf->type == 'U' ? &rq->fromsa : NULL);
1319 }
1320
1321 struct server *realm2server(struct realm *realm) {
1322     struct list_node *entry;
1323     struct server *server, *best = NULL;
1324     
1325     for (entry = list_first(realm->srvconfs); entry; entry = list_next(entry)) {
1326         server = ((struct clsrvconf *)entry->data)->servers;
1327         if (!server->connectionok)
1328             continue;
1329         if (!server->loststatsrv)
1330             return server;
1331         if (!best) {
1332             best = server;
1333             continue;
1334         }
1335         if (server->loststatsrv < best->loststatsrv)
1336             best = server;
1337     }
1338     return best;
1339 }
1340
1341 void radsrv(struct request *rq) {
1342     uint8_t code, id, *auth, *attrs, *attr;
1343     uint16_t len;
1344     struct server *to = NULL;
1345     char username[256];
1346     unsigned char *buf, newauth[16];
1347     struct realm *realm = NULL;
1348     
1349     buf = rq->buf;
1350     code = *(uint8_t *)buf;
1351     id = *(uint8_t *)(buf + 1);
1352     len = RADLEN(buf);
1353     auth = (uint8_t *)(buf + 4);
1354
1355     debug(DBG_DBG, "radsrv: code %d, id %d, length %d", code, id, len);
1356     
1357     if (code != RAD_Access_Request && code != RAD_Status_Server && code != RAD_Accounting_Request) {
1358         debug(DBG_INFO, "radsrv: server currently accepts only access-requests, accounting-requests and status-server, ignoring");
1359         free(buf);
1360         return;
1361     }
1362
1363     len -= 20;
1364     attrs = buf + 20;
1365
1366     if (!attrvalidate(attrs, len)) {
1367         debug(DBG_WARN, "radsrv: attribute validation failed, ignoring packet");
1368         free(buf);
1369         return;
1370     }
1371
1372     if (code == RAD_Access_Request) {
1373         attr = attrget(attrs, len, RAD_Attr_User_Name);
1374         if (!attr) {
1375             debug(DBG_WARN, "radsrv: ignoring request, no username attribute");
1376             free(buf);
1377             return;
1378         }
1379         memcpy(username, ATTRVAL(attr), ATTRVALLEN(attr));
1380         username[ATTRVALLEN(attr)] = '\0';
1381         debug(DBG_DBG, "Access Request with username: %s", username);
1382
1383         realm = id2realm(username, strlen(username));
1384         if (!realm) {
1385             debug(DBG_INFO, "radsrv: ignoring request, don't know where to send it");
1386             free(buf);
1387             return;
1388         }
1389         
1390         to = realm2server(realm);
1391         if (to && rqinqueue(to, rq->from, id)) {
1392             debug(DBG_INFO, "radsrv: already got request from host %s with id %d, ignoring", rq->from->conf->host, id);
1393             free(buf);
1394             return;
1395         }
1396     }
1397     
1398     attr = attrget(attrs, len, RAD_Attr_Message_Authenticator);
1399     if (attr && (ATTRVALLEN(attr) != 16 || !checkmessageauth(buf, ATTRVAL(attr), rq->from->conf->secret))) {
1400         debug(DBG_WARN, "radsrv: message authentication failed");
1401         free(buf);
1402         return;
1403     }
1404     
1405     if (code == RAD_Accounting_Request) {
1406         acclog(attrs, len, rq->from->conf->host);
1407         respondaccounting(rq);
1408         free(buf);
1409         return;
1410     }
1411
1412     if (code == RAD_Status_Server) {
1413         respondstatusserver(rq);
1414         free(buf);
1415         return;
1416     }
1417
1418     if (!to) {
1419         debug(DBG_INFO, "radsrv: sending reject to %s for %s", rq->from->conf->host, username);
1420         respondreject(rq, realm->message);
1421         free(buf);
1422         return;
1423     }
1424     
1425     if (!RAND_bytes(newauth, 16)) {
1426         debug(DBG_WARN, "radsrv: failed to generate random auth");
1427         free(buf);
1428         return;
1429     }
1430
1431 #ifdef DEBUG
1432     printfchars(NULL, "auth", "%02x ", auth, 16);
1433 #endif
1434
1435     attr = attrget(attrs, len, RAD_Attr_User_Password);
1436     if (attr) {
1437         debug(DBG_DBG, "radsrv: found userpwdattr with value length %d", ATTRVALLEN(attr));
1438         if (!pwdrecrypt(ATTRVAL(attr), ATTRVALLEN(attr), rq->from->conf->secret, to->conf->secret, auth, newauth)) {
1439             free(buf);
1440             return;
1441         }
1442     }
1443     
1444     attr = attrget(attrs, len, RAD_Attr_Tunnel_Password);
1445     if (attr) {
1446         debug(DBG_DBG, "radsrv: found tunnelpwdattr with value length %d", ATTRVALLEN(attr));
1447         if (!pwdrecrypt(ATTRVAL(attr), ATTRVALLEN(attr), rq->from->conf->secret, to->conf->secret, auth, newauth)) {
1448             free(buf);
1449             return;
1450         }
1451     }
1452
1453     rq->origid = id;
1454     memcpy(rq->origauth, auth, 16);
1455     memcpy(auth, newauth, 16);
1456     sendrq(to, rq);
1457 }
1458
1459 void *clientrd(void *arg) {
1460     struct server *server = (struct server *)arg;
1461     struct client *from;
1462     int i, len, sublen;
1463     unsigned char *buf, *messageauth, *subattrs, *attrs, *attr;
1464     struct sockaddr_storage fromsa;
1465     struct timeval lastconnecttry;
1466     char tmp[256];
1467     
1468     for (;;) {
1469         lastconnecttry = server->lastconnecttry;
1470         buf = (server->conf->type == 'U' ? radudpget(server->sock, NULL, &server, NULL) : radtlsget(server->ssl));
1471         if (!buf && server->conf->type == 'T') {
1472             tlsconnect(server, &lastconnecttry, "clientrd");
1473             continue;
1474         }
1475     
1476         server->connectionok = 1;
1477         server->loststatsrv = 0;
1478         
1479         i = buf[1]; /* i is the id */
1480
1481         switch (*buf) {
1482         case RAD_Access_Accept:
1483             debug(DBG_DBG, "got Access Accept with id %d", i);
1484             break;
1485         case RAD_Access_Reject:
1486             debug(DBG_DBG, "got Access Reject with id %d", i);
1487             break;
1488         case RAD_Access_Challenge:
1489             debug(DBG_DBG, "got Access Challenge with id %d", i);
1490             break;
1491         default:
1492             free(buf);
1493             debug(DBG_INFO, "clientrd: discarding, only accept access accept, access reject and access challenge messages");
1494             continue;
1495         }
1496         
1497         pthread_mutex_lock(&server->newrq_mutex);
1498         if (!server->requests[i].buf || !server->requests[i].tries) {
1499             pthread_mutex_unlock(&server->newrq_mutex);
1500             free(buf);
1501             debug(DBG_INFO, "clientrd: no matching request sent with this id, ignoring");
1502             continue;
1503         }
1504
1505         if (server->requests[i].received) {
1506             pthread_mutex_unlock(&server->newrq_mutex);
1507             free(buf);
1508             debug(DBG_INFO, "clientrd: already received, ignoring");
1509             continue;
1510         }
1511         
1512         if (!validauth(buf, server->requests[i].buf + 4, (unsigned char *)server->conf->secret)) {
1513             pthread_mutex_unlock(&server->newrq_mutex);
1514             free(buf);
1515             debug(DBG_WARN, "clientrd: invalid auth, ignoring");
1516             continue;
1517         }
1518         
1519         from = server->requests[i].from;
1520         len = RADLEN(buf) - 20;
1521         attrs = buf + 20;
1522
1523         if (!attrvalidate(attrs, len)) {
1524             pthread_mutex_unlock(&server->newrq_mutex);
1525             free(buf);
1526             debug(DBG_WARN, "clientrd: attribute validation failed, ignoring packet");
1527             continue;
1528         }
1529         
1530         /* Message Authenticator */
1531         messageauth = attrget(attrs, len, RAD_Attr_Message_Authenticator);
1532         if (messageauth) {
1533             if (ATTRVALLEN(messageauth) != 16) {
1534                 pthread_mutex_unlock(&server->newrq_mutex);
1535                 free(buf);
1536                 debug(DBG_WARN, "clientrd: illegal message auth attribute length, ignoring packet");
1537                 continue;
1538             }
1539             memcpy(tmp, buf + 4, 16);
1540             memcpy(buf + 4, server->requests[i].buf + 4, 16);
1541             if (!checkmessageauth(buf, ATTRVAL(messageauth), server->conf->secret)) {
1542                 pthread_mutex_unlock(&server->newrq_mutex);
1543                 free(buf);
1544                 debug(DBG_WARN, "clientrd: message authentication failed");
1545                 continue;
1546             }
1547             memcpy(buf + 4, tmp, 16);
1548             debug(DBG_DBG, "clientrd: message auth ok");
1549         }
1550         
1551         if (*server->requests[i].buf == RAD_Status_Server) {
1552             server->requests[i].received = 1;
1553             pthread_mutex_unlock(&server->newrq_mutex);
1554             free(buf);
1555             debug(DBG_INFO, "clientrd: got status server response from %s", server->conf->host);
1556             continue;
1557         }
1558
1559         /* MS MPPE */
1560         for (attr = attrs; (attr = attrget(attr, len - (attr - attrs), RAD_Attr_Vendor_Specific)); attr += ATTRLEN(attr)) {
1561             if (ATTRVALLEN(attr) <= 4)
1562                 break;
1563             
1564             if (attr[2] != 0 || attr[3] != 0 || attr[4] != 1 || attr[5] != 55)  /* 311 == MS */
1565                 continue;
1566             
1567             sublen = ATTRVALLEN(attr) - 4;
1568             subattrs = ATTRVAL(attr) + 4;  
1569             if (!attrvalidate(subattrs, sublen) ||
1570                 !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Send_Key, "MS MPPE Send Key",
1571                         server->requests + i, server->conf->secret, from->conf->secret) ||
1572                 !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Recv_Key, "MS MPPE Recv Key",
1573                         server->requests + i, server->conf->secret, from->conf->secret))
1574                 break;
1575         }
1576         if (attr) {
1577             pthread_mutex_unlock(&server->newrq_mutex);
1578             free(buf);
1579             debug(DBG_WARN, "clientrd: MS attribute handling failed, ignoring packet");
1580             continue;
1581         }
1582         
1583         if (*buf == RAD_Access_Accept || *buf == RAD_Access_Reject) {
1584             attr = attrget(server->requests[i].buf + 20, RADLEN(server->requests[i].buf) - 20, RAD_Attr_User_Name);
1585             /* we know the attribute exists */
1586             memcpy(tmp, ATTRVAL(attr), ATTRVALLEN(attr));
1587             tmp[ATTRVALLEN(attr)] = '\0';
1588             switch (*buf) {
1589             case RAD_Access_Accept:
1590                 debug(DBG_INFO, "Access Accept for %s from %s", tmp, server->conf->host);
1591                 break;
1592             case RAD_Access_Reject:
1593                 debug(DBG_INFO, "Access Reject for %s from %s", tmp, server->conf->host);
1594                 break;
1595             }
1596         }
1597         
1598         /* once we set received = 1, requests[i] may be reused */
1599         buf[1] = (char)server->requests[i].origid;
1600         memcpy(buf + 4, server->requests[i].origauth, 16);
1601 #ifdef DEBUG    
1602         printfchars(NULL, "origauth/buf+4", "%02x ", buf + 4, 16);
1603 #endif
1604         
1605         if (messageauth) {
1606             if (!createmessageauth(buf, ATTRVAL(messageauth), from->conf->secret)) {
1607                 pthread_mutex_unlock(&server->newrq_mutex);
1608                 free(buf);
1609                 continue;
1610             }
1611             debug(DBG_DBG, "clientrd: computed messageauthattr");
1612         }
1613
1614         if (from->conf->type == 'U')
1615             fromsa = server->requests[i].fromsa;
1616         server->requests[i].received = 1;
1617         pthread_mutex_unlock(&server->newrq_mutex);
1618
1619         debug(DBG_DBG, "clientrd: giving packet back to where it came from");
1620         sendreply(from, buf, from->conf->type == 'U' ? &fromsa : NULL);
1621     }
1622 }
1623
1624 void *clientwr(void *arg) {
1625     struct server *server = (struct server *)arg;
1626     struct request *rq;
1627     pthread_t clientrdth;
1628     int i;
1629     uint8_t rnd;
1630     struct timeval now, lastsend;
1631     struct timespec timeout;
1632     struct request statsrvrq;
1633     unsigned char statsrvbuf[38];
1634
1635     memset(&timeout, 0, sizeof(struct timespec));
1636     
1637     if (server->conf->statusserver) {
1638         memset(&statsrvrq, 0, sizeof(struct request));
1639         memset(statsrvbuf, 0, sizeof(statsrvbuf));
1640         statsrvbuf[0] = RAD_Status_Server;
1641         statsrvbuf[3] = 38;
1642         statsrvbuf[20] = RAD_Attr_Message_Authenticator;
1643         statsrvbuf[21] = 18;
1644         gettimeofday(&lastsend, NULL);
1645     }
1646     
1647     if (server->conf->type == 'U') {
1648         if ((server->sock = connecttoserver(server->conf->addrinfo)) < 0)
1649             debugx(1, DBG_ERR, "clientwr: connecttoserver failed");
1650     } else
1651         tlsconnect(server, NULL, "new client");
1652     
1653     server->connectionok = 1;
1654     
1655     if (pthread_create(&clientrdth, NULL, clientrd, (void *)server))
1656         debugx(1, DBG_ERR, "clientwr: pthread_create failed");
1657
1658     for (;;) {
1659         pthread_mutex_lock(&server->newrq_mutex);
1660         if (!server->newrq) {
1661             gettimeofday(&now, NULL);
1662             if (server->conf->statusserver) {
1663                 /* random 0-7 seconds */
1664                 RAND_bytes(&rnd, 1);
1665                 rnd /= 32;
1666                 if (!timeout.tv_sec || timeout.tv_sec - now.tv_sec > lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd)
1667                     timeout.tv_sec = lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd;
1668             }   
1669             if (timeout.tv_sec) {
1670                 debug(DBG_DBG, "clientwr: waiting up to %ld secs for new request", timeout.tv_sec - now.tv_sec);
1671                 pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
1672                 timeout.tv_sec = 0;
1673             } else {
1674                 debug(DBG_DBG, "clientwr: waiting for new request");
1675                 pthread_cond_wait(&server->newrq_cond, &server->newrq_mutex);
1676             }
1677         }
1678         if (server->newrq) {
1679             debug(DBG_DBG, "clientwr: got new request");
1680             server->newrq = 0;
1681         } else
1682             debug(DBG_DBG, "clientwr: request timer expired, processing request queue");
1683         pthread_mutex_unlock(&server->newrq_mutex);
1684
1685         for (i = 0; i < MAX_REQUESTS; i++) {
1686             pthread_mutex_lock(&server->newrq_mutex);
1687             while (i < MAX_REQUESTS && !server->requests[i].buf)
1688                 i++;
1689             if (i == MAX_REQUESTS) {
1690                 pthread_mutex_unlock(&server->newrq_mutex);
1691                 break;
1692             }
1693             rq = server->requests + i;
1694
1695             if (rq->received) {
1696                 debug(DBG_DBG, "clientwr: packet %d in queue is marked as received", i);
1697                 if (rq->buf) {
1698                     debug(DBG_DBG, "clientwr: freeing received packet %d from queue", i);
1699                     free(rq->buf);
1700                     /* setting this to NULL means that it can be reused */
1701                     rq->buf = NULL;
1702                 }
1703                 pthread_mutex_unlock(&server->newrq_mutex);
1704                 continue;
1705             }
1706             
1707             gettimeofday(&now, NULL);
1708             if (now.tv_sec < rq->expiry.tv_sec) {
1709                 if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1710                     timeout.tv_sec = rq->expiry.tv_sec;
1711                 pthread_mutex_unlock(&server->newrq_mutex);
1712                 continue;
1713             }
1714
1715             if (rq->tries == (*rq->buf == RAD_Status_Server || server->conf->type == 'T'
1716                               ? 1 : REQUEST_RETRIES)) {
1717                 debug(DBG_DBG, "clientwr: removing expired packet from queue");
1718                 if (*rq->buf == RAD_Status_Server) {
1719                     debug(DBG_WARN, "clientwr: no status server response, %s dead?", server->conf->host);
1720                     if (server->loststatsrv < 255)
1721                         server->loststatsrv++;
1722                 }
1723                 free(rq->buf);
1724                 /* setting this to NULL means that it can be reused */
1725                 rq->buf = NULL;
1726                 pthread_mutex_unlock(&server->newrq_mutex);
1727                 continue;
1728             }
1729             pthread_mutex_unlock(&server->newrq_mutex);
1730
1731             rq->expiry.tv_sec = now.tv_sec +
1732                 (*rq->buf == RAD_Status_Server || server->conf->type == 'T'
1733                  ? REQUEST_EXPIRY : REQUEST_EXPIRY / REQUEST_RETRIES);
1734             if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1735                 timeout.tv_sec = rq->expiry.tv_sec;
1736             rq->tries++;
1737             clientradput(server, server->requests[i].buf);
1738             gettimeofday(&lastsend, NULL);
1739         }
1740         if (server->conf->statusserver) {
1741             gettimeofday(&now, NULL);
1742             if (now.tv_sec - lastsend.tv_sec >= STATUS_SERVER_PERIOD) {
1743                 if (!RAND_bytes(statsrvbuf + 4, 16)) {
1744                     debug(DBG_WARN, "clientwr: failed to generate random auth");
1745                     continue;
1746                 }
1747                 statsrvrq.buf = malloc(sizeof(statsrvbuf));
1748                 if (!statsrvrq.buf) {
1749                     debug(DBG_ERR, "clientwr: malloc failed");
1750                     continue;
1751                 }
1752                 memcpy(statsrvrq.buf, statsrvbuf, sizeof(statsrvbuf));
1753                 debug(DBG_DBG, "clientwr: sending status server to %s", server->conf->host);
1754                 lastsend.tv_sec = now.tv_sec;
1755                 sendrq(server, &statsrvrq);
1756             }
1757         }
1758     }
1759 }
1760
1761 void *udpserverwr(void *arg) {
1762     struct replyq *replyq = udp_server_replyq;
1763     struct reply *reply;
1764     
1765     for (;;) {
1766         pthread_mutex_lock(&replyq->mutex);
1767         while (!(reply = (struct reply *)list_shift(replyq->replies))) {
1768             debug(DBG_DBG, "udp server writer, waiting for signal");
1769             pthread_cond_wait(&replyq->cond, &replyq->mutex);
1770             debug(DBG_DBG, "udp server writer, got signal");
1771         }
1772         pthread_mutex_unlock(&replyq->mutex);
1773
1774         if (sendto(udp_server_sock, reply->buf, RADLEN(reply->buf), 0,
1775                    (struct sockaddr *)&reply->tosa, SOCKADDR_SIZE(reply->tosa)) < 0)
1776             debug(DBG_WARN, "sendudp: send failed");
1777         free(reply->buf);
1778         free(reply);
1779     }
1780 }
1781
1782 void *udpserverrd(void *arg) {
1783     struct request rq;
1784     pthread_t udpserverwrth;
1785
1786     if ((udp_server_sock = bindtoaddr(udp_server_listen->addrinfo)) < 0)
1787         debugx(1, DBG_ERR, "udpserverrd: socket/bind failed");
1788
1789     debug(DBG_WARN, "udpserverrd: listening for UDP on %s:%s",
1790           udp_server_listen->host ? udp_server_listen->host : "*", udp_server_listen->port);
1791
1792     if (pthread_create(&udpserverwrth, NULL, udpserverwr, NULL))
1793         debugx(1, DBG_ERR, "pthread_create failed");
1794     
1795     for (;;) {
1796         memset(&rq, 0, sizeof(struct request));
1797         rq.buf = radudpget(udp_server_sock, &rq.from, NULL, &rq.fromsa);
1798         radsrv(&rq);
1799     }
1800 }
1801
1802 void *udpaccserverrd(void *arg) {
1803     struct request rq;
1804
1805     if ((udp_accserver_sock = bindtoaddr(udp_accserver_listen->addrinfo)) < 0)
1806         debugx(1, DBG_ERR, "udpserverrd: socket/bind failed");
1807
1808     debug(DBG_WARN, "udpaccserverrd: listening for UDP on %s:%s",
1809           udp_accserver_listen->host ? udp_accserver_listen->host : "*", udp_accserver_listen->port);
1810
1811     for (;;) {
1812         memset(&rq, 0, sizeof(struct request));
1813         rq.buf = radudpget(udp_accserver_sock, &rq.from, NULL, &rq.fromsa);
1814         if (*(uint8_t *)rq.buf == RAD_Accounting_Request) {
1815             radsrv(&rq);
1816             continue;
1817         }
1818         debug(DBG_INFO, "udpaccserverrd: got something other than accounting-request, ignoring");
1819         free(rq.buf);
1820     }
1821 }
1822
1823 void *tlsserverwr(void *arg) {
1824     int cnt;
1825     unsigned long error;
1826     struct client *client = (struct client *)arg;
1827     struct replyq *replyq;
1828     struct reply *reply;
1829     
1830     debug(DBG_DBG, "tlsserverwr starting for %s", client->conf->host);
1831     replyq = client->replyq;
1832     for (;;) {
1833         pthread_mutex_lock(&replyq->mutex);
1834         while (!list_first(replyq->replies)) {
1835             if (client->ssl) {      
1836                 debug(DBG_DBG, "tls server writer, waiting for signal");
1837                 pthread_cond_wait(&replyq->cond, &replyq->mutex);
1838                 debug(DBG_DBG, "tls server writer, got signal");
1839             }
1840             if (!client->ssl) {
1841                 /* ssl might have changed while waiting */
1842                 pthread_mutex_unlock(&replyq->mutex);
1843                 debug(DBG_DBG, "tlsserverwr: exiting as requested");
1844                 pthread_exit(NULL);
1845             }
1846         }
1847         reply = (struct reply *)list_shift(replyq->replies);
1848         pthread_mutex_unlock(&replyq->mutex);
1849         cnt = SSL_write(client->ssl, reply->buf, RADLEN(reply->buf));
1850         if (cnt > 0)
1851             debug(DBG_DBG, "tlsserverwr: Sent %d bytes, Radius packet of length %d",
1852                   cnt, RADLEN(reply->buf));
1853         else
1854             while ((error = ERR_get_error()))
1855                 debug(DBG_ERR, "tlsserverwr: SSL: %s", ERR_error_string(error, NULL));
1856         free(reply->buf);
1857         free(reply);
1858     }
1859 }
1860
1861 void *tlsserverrd(void *arg) {
1862     struct request rq;
1863     unsigned long error;
1864     int s;
1865     struct client *client = (struct client *)arg;
1866     pthread_t tlsserverwrth;
1867     SSL *ssl;
1868     
1869     debug(DBG_DBG, "tlsserverrd starting for %s", client->conf->host);
1870     ssl = client->ssl;
1871
1872     if (SSL_accept(ssl) <= 0) {
1873         while ((error = ERR_get_error()))
1874             debug(DBG_ERR, "tlsserverrd: SSL: %s", ERR_error_string(error, NULL));
1875         debug(DBG_ERR, "SSL_accept failed");
1876         goto errexit;
1877     }
1878     if (tlsverifycert(client->ssl, client->conf)) {
1879         if (pthread_create(&tlsserverwrth, NULL, tlsserverwr, (void *)client)) {
1880             debug(DBG_ERR, "tlsserverrd: pthread_create failed");
1881             goto errexit;
1882         }
1883         for (;;) {
1884             memset(&rq, 0, sizeof(struct request));
1885             rq.buf = radtlsget(client->ssl);
1886             if (!rq.buf)
1887                 break;
1888             debug(DBG_DBG, "tlsserverrd: got Radius message from %s", client->conf->host);
1889             rq.from = client;
1890             radsrv(&rq);
1891         }
1892         debug(DBG_ERR, "tlsserverrd: connection lost");
1893         /* stop writer by setting ssl to NULL and give signal in case waiting for data */
1894         client->ssl = NULL;
1895         pthread_mutex_lock(&client->replyq->mutex);
1896         pthread_cond_signal(&client->replyq->cond);
1897         pthread_mutex_unlock(&client->replyq->mutex);
1898         debug(DBG_DBG, "tlsserverrd: waiting for writer to end");
1899         pthread_join(tlsserverwrth, NULL);
1900     }
1901     
1902  errexit:
1903     s = SSL_get_fd(ssl);
1904     SSL_free(ssl);
1905     shutdown(s, SHUT_RDWR);
1906     close(s);
1907     debug(DBG_DBG, "tlsserverrd thread for %s exiting", client->conf->host);
1908     removeclient(client);
1909     pthread_exit(NULL);
1910 }
1911
1912 int tlslistener() {
1913     pthread_t tlsserverth;
1914     int s, snew;
1915     struct sockaddr_storage from;
1916     size_t fromlen = sizeof(from);
1917     struct clsrvconf *conf;
1918     struct client *client;
1919     
1920     if ((s = bindtoaddr(tcp_server_listen->addrinfo)) < 0)
1921         debugx(1, DBG_ERR, "tlslistener: socket/bind failed");
1922     
1923     listen(s, 0);
1924     debug(DBG_WARN, "listening for incoming TCP on %s:%s",
1925           tcp_server_listen->host ? tcp_server_listen->host : "*", tcp_server_listen->port);
1926
1927     for (;;) {
1928         snew = accept(s, (struct sockaddr *)&from, &fromlen);
1929         if (snew < 0) {
1930             debug(DBG_WARN, "accept failed");
1931             continue;
1932         }
1933         debug(DBG_WARN, "incoming TLS connection from %s", addr2string((struct sockaddr *)&from, fromlen));
1934
1935         conf = find_conf('T', (struct sockaddr *)&from, clconfs, NULL);
1936         if (!conf) {
1937             debug(DBG_WARN, "ignoring request, not a known TLS client");
1938             shutdown(snew, SHUT_RDWR);
1939             close(snew);
1940             continue;
1941         }
1942
1943         client = addclient(conf);
1944
1945         if (!client) {
1946             debug(DBG_WARN, "Failed to create new client instance");
1947             shutdown(snew, SHUT_RDWR);
1948             close(snew);
1949             continue;
1950         }
1951         client->ssl = SSL_new(client->conf->ssl_ctx);
1952         SSL_set_fd(client->ssl, snew);
1953         if (pthread_create(&tlsserverth, NULL, tlsserverrd, (void *)client)) {
1954             debug(DBG_ERR, "tlslistener: pthread_create failed");
1955             SSL_free(client->ssl);
1956             removeclient(client);
1957             shutdown(snew, SHUT_RDWR);
1958             close(snew);
1959             continue;
1960         }
1961         pthread_detach(tlsserverth);
1962     }
1963     return 0;
1964 }
1965
1966 void tlsadd(char *value, char *cacertfile, char *cacertpath, char *certfile, char *certkeyfile, char *certkeypwd) {
1967     struct tls *new;
1968     SSL_CTX *ctx;
1969     int i;
1970     unsigned long error;
1971     
1972     if (!certfile || !certkeyfile)
1973         debugx(1, DBG_ERR, "TLSCertificateFile and TLSCertificateKeyFile must be specified in TLS context %s", value);
1974
1975     if (!cacertfile && !cacertpath)
1976         debugx(1, DBG_ERR, "CA Certificate file or path need to be specified in TLS context %s", value);
1977
1978     if (!ssl_locks) {
1979         ssl_locks = malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t));
1980         ssl_lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
1981         for (i = 0; i < CRYPTO_num_locks(); i++) {
1982             ssl_lock_count[i] = 0;
1983             pthread_mutex_init(&ssl_locks[i], NULL);
1984         }
1985         CRYPTO_set_id_callback(ssl_thread_id);
1986         CRYPTO_set_locking_callback(ssl_locking_callback);
1987
1988         SSL_load_error_strings();
1989         SSL_library_init();
1990
1991         while (!RAND_status()) {
1992             time_t t = time(NULL);
1993             pid_t pid = getpid();
1994             RAND_seed((unsigned char *)&t, sizeof(time_t));
1995             RAND_seed((unsigned char *)&pid, sizeof(pid));
1996         }
1997     }
1998     ctx = SSL_CTX_new(TLSv1_method());
1999     if (certkeypwd) {
2000         SSL_CTX_set_default_passwd_cb_userdata(ctx, certkeypwd);
2001         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
2002     }
2003     if (!SSL_CTX_use_certificate_chain_file(ctx, certfile) ||
2004         !SSL_CTX_use_PrivateKey_file(ctx, certkeyfile, SSL_FILETYPE_PEM) ||
2005         !SSL_CTX_check_private_key(ctx) ||
2006         !SSL_CTX_load_verify_locations(ctx, cacertfile, cacertpath)) {
2007         while ((error = ERR_get_error()))
2008             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2009         debugx(1, DBG_ERR, "Error initialising SSL/TLS in TLS context %s", value);
2010     }
2011     
2012     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
2013     SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
2014
2015     new = malloc(sizeof(struct tls));
2016     if (!new || !list_push(tlsconfs, new))
2017         debugx(1, DBG_ERR, "malloc failed");
2018
2019     memset(new, 0, sizeof(struct tls));
2020     new->name = stringcopy(value, 0);
2021     if (!new->name)
2022         debugx(1, DBG_ERR, "malloc failed");
2023     new->ctx = ctx;
2024     new->count = 0;
2025     debug(DBG_DBG, "tlsadd: added TLS context %s", value);
2026 }
2027
2028 void tlsfree() {
2029     struct list_node *entry;
2030     struct tls *t;
2031     
2032     for (entry = list_first(tlsconfs); entry; entry = list_next(entry)) {
2033         t = (struct tls *)entry->data;
2034         if (t->name)
2035             free(t->name);
2036         if (!t->count)
2037             SSL_CTX_free(t->ctx);
2038     }
2039     list_destroy(tlsconfs);
2040     tlsconfs = NULL;
2041 }
2042
2043 SSL_CTX *tlsgetctx(char *alt1, char *alt2) {
2044     struct list_node *entry;
2045     struct tls *t, *t1 = NULL, *t2 = NULL;
2046     
2047     for (entry = list_first(tlsconfs); entry; entry = list_next(entry)) {
2048         t = (struct tls *)entry->data;
2049         if (!strcasecmp(t->name, alt1)) {
2050             t1 = t;
2051             break;
2052         }
2053         if (!t2 && alt2 && !strcasecmp(t->name, alt2))
2054             t2 = t;
2055     }
2056
2057     t = (t1 ? t1 : t2);
2058     if (!t)
2059         return NULL;
2060     t->count++;
2061     return t->ctx;
2062 }
2063
2064 void addrealm(char *value, char **servers, char *message) {
2065     int n;
2066     struct realm *realm;
2067     char *s, *regex = NULL;
2068     struct list_node *entry;
2069     struct clsrvconf *conf;
2070     
2071     if (*value == '/') {
2072         /* regexp, remove optional trailing / if present */
2073         if (value[strlen(value) - 1] == '/')
2074             value[strlen(value) - 1] = '\0';
2075     } else {
2076         /* not a regexp, let us make it one */
2077         if (*value == '*' && !value[1])
2078             regex = stringcopy(".*", 0);
2079         else {
2080             for (n = 0, s = value; *s;)
2081                 if (*s++ == '.')
2082                     n++;
2083             regex = malloc(strlen(value) + n + 3);
2084             if (regex) {
2085                 regex[0] = '@';
2086                 for (n = 1, s = value; *s; s++) {
2087                     if (*s == '.')
2088                         regex[n++] = '\\';
2089                     regex[n++] = *s;
2090                 }
2091                 regex[n++] = '$';
2092                 regex[n] = '\0';
2093             }
2094         }
2095         if (!regex)
2096             debugx(1, DBG_ERR, "malloc failed");
2097         debug(DBG_DBG, "addrealm: constructed regexp %s from %s", regex, value);
2098     }
2099
2100     realm = malloc(sizeof(struct realm));
2101     if (!realm)
2102         debugx(1, DBG_ERR, "malloc failed");
2103     
2104     memset(realm, 0, sizeof(struct realm));
2105     realm->name = stringcopy(value, 0);
2106     if (!realm->name)
2107         debugx(1, DBG_ERR, "malloc failed");
2108     if (message && strlen(message) > 253)
2109         debugx(1, DBG_ERR, "ReplyMessage can be at most 253 bytes");
2110     realm->message = message;
2111     
2112     if (regcomp(&realm->regex, regex ? regex : value + 1, REG_ICASE | REG_NOSUB))
2113         debugx(1, DBG_ERR, "addrealm: failed to compile regular expression %s", regex ? regex : value + 1);
2114     if (regex)
2115         free(regex);
2116     
2117     if (servers && *servers) {
2118         realm->srvconfs = list_create();
2119         if (!realm->srvconfs)
2120             debugx(1, DBG_ERR, "malloc failed");
2121         for (n = 0; servers[n]; n++) {
2122             for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2123                 conf = (struct clsrvconf *)entry->data;
2124                 if (!strcasecmp(servers[n], conf->name))
2125                     break;
2126             }
2127             if (!entry)
2128                 debugx(1, DBG_ERR, "addrealm failed, no server %s", servers[n]);
2129             if (!list_push(realm->srvconfs, conf))
2130                 debugx(1, DBG_ERR, "malloc failed");
2131             debug(DBG_DBG, "addrealm: added server %s for realm %s", conf->name, value);
2132         }
2133     } else
2134         realm->srvconfs = NULL;
2135     
2136     if (!list_push(realms, realm))
2137         debugx(1, DBG_ERR, "malloc failed");
2138     debug(DBG_DBG, "addrealm: added realm %s", value);
2139 }
2140
2141 char *parsehostport(char *s, struct clsrvconf *conf) {
2142     char *p, *field;
2143     int ipv6 = 0;
2144
2145     p = s;
2146     /* allow literal addresses and port, e.g. [2001:db8::1]:1812 */
2147     if (*p == '[') {
2148         p++;
2149         field = p;
2150         for (; *p && *p != ']' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2151         if (*p != ']')
2152             debugx(1, DBG_ERR, "no ] matching initial [");
2153         ipv6 = 1;
2154     } else {
2155         field = p;
2156         for (; *p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2157     }
2158     if (field == p)
2159         debugx(1, DBG_ERR, "missing host/address");
2160
2161     conf->host = stringcopy(field, p - field);
2162     if (ipv6) {
2163         p++;
2164         if (*p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n')
2165             debugx(1, DBG_ERR, "unexpected character after ]");
2166     }
2167     if (*p == ':') {
2168             /* port number or service name is specified */;
2169             field = ++p;
2170             for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2171             if (field == p)
2172                 debugx(1, DBG_ERR, "syntax error, : but no following port");
2173             conf->port = stringcopy(field, p - field);
2174     } else
2175         conf->port = stringcopy(conf->type == 'U' ? DEFAULT_UDP_PORT : DEFAULT_TLS_PORT, 0);
2176     return p;
2177 }
2178
2179 FILE *openconfigfile(const char *filename) {
2180     FILE *f;
2181     char pathname[100], *base = NULL;
2182     
2183     f = fopen(filename, "r");
2184     if (f) {
2185         debug(DBG_DBG, "reading config file %s", filename);
2186         return f;
2187     }
2188
2189     if (strlen(filename) + 1 <= sizeof(pathname)) {
2190         /* basename() might modify the string */
2191         strcpy(pathname, filename);
2192         base = basename(pathname);
2193         f = fopen(base, "r");
2194     }
2195
2196     if (!f)
2197         debugx(1, DBG_ERR, "could not read config file %s nor %s\n%s", filename, base, strerror(errno));
2198     
2199     debug(DBG_DBG, "reading config file %s", base);
2200     return f;
2201 }
2202
2203 struct clsrvconf *server_create(char type, char *lconf) {
2204     struct clsrvconf *conf;
2205
2206     conf = malloc(sizeof(struct clsrvconf));
2207     if (!conf)
2208         debugx(1, DBG_ERR, "malloc failed");
2209     memset(conf, 0, sizeof(struct clsrvconf));
2210     conf->type = type;
2211     if (lconf) {
2212         parsehostport(lconf, conf);
2213         if (!strcmp(conf->host, "*")) {
2214             free(conf->host);
2215             conf->host = NULL;
2216         }
2217     } else
2218         conf->port = stringcopy(type == 'T' ? DEFAULT_TLS_PORT : DEFAULT_UDP_PORT, 0);
2219     if (!resolvepeer(conf, AI_PASSIVE))
2220         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2221     return conf;
2222 }
2223
2224 /* returns NULL on error, where to continue parsing if token and ok. E.g. "" will return token with empty string */
2225 char *strtokenquote(char *s, char **token, char *del, char *quote, char *comment) {
2226     char *t = s, *q, *r;
2227
2228     if (!t || !token || !del)
2229         return NULL;
2230     while (*t && strchr(del, *t))
2231         t++;
2232     if (!*t || (comment && strchr(comment, *t))) {
2233         *token = NULL;
2234         return t + 1; /* needs to be non-NULL, but value doesn't matter */
2235     }
2236     if (quote && (q = strchr(quote, *t))) {
2237         t++;
2238         r = t;
2239         while (*t && *t != *q)
2240             t++;
2241         if (!*t || (t[1] && !strchr(del, t[1])))
2242             return NULL;
2243         *t = '\0';
2244         *token = r;
2245         return t + 1;
2246     }
2247     *token = t;
2248     t++;
2249     while (*t && !strchr(del, *t))
2250         t++;
2251     *t = '\0';
2252     return t + 1;
2253 }
2254
2255 /* Parses config with following syntax:
2256  * One of these:
2257  * option-name value
2258  * option-name = value
2259  * Or:
2260  * option-name value {
2261  *     option-name [=] value
2262  *     ...
2263  * }
2264  */
2265 void getgeneralconfig(FILE *f, char *block, ...) {
2266     va_list ap;
2267     char line[1024];
2268     /* initialise lots of stuff to avoid stupid compiler warnings */
2269     char *tokens[3], *s, *opt = NULL, *val = NULL, *word, *optval, **str = NULL, ***mstr = NULL;
2270     int type = 0, tcount, conftype = 0, n;
2271     void (*cbk)(FILE *, char *, char *, char *) = NULL;
2272         
2273     while (fgets(line, 1024, f)) {
2274         s = line;
2275         for (tcount = 0; tcount < 3; tcount++) {
2276             s = strtokenquote(s, &tokens[tcount], " \t\n", "\"'", tcount ? NULL : "#");
2277             if (!s)
2278                 debugx(1, DBG_ERR, "Syntax error in line starting with: %s", line);
2279             if (!tokens[tcount])
2280                 break;
2281         }
2282         if (!tcount || **tokens == '#')
2283             continue;
2284
2285         if (**tokens == '}') {
2286             if (block)
2287                 return;
2288             debugx(1, DBG_ERR, "configuration error, found } with no matching {");
2289         }
2290             
2291         switch (tcount) {
2292         case 2:
2293             opt = tokens[0];
2294             val = tokens[1];
2295             conftype = CONF_STR;
2296             break;
2297         case 3:
2298             if (tokens[1][0] == '=' && tokens[1][1] == '\0') {
2299                 opt = tokens[0];
2300                 val = tokens[2];
2301                 conftype = CONF_STR;
2302                 break;
2303             }
2304             if (tokens[2][0] == '{' && tokens[2][1] == '\0') {
2305                 opt = tokens[0];
2306                 val = tokens[1];
2307                 conftype = CONF_CBK;
2308                 break;
2309             }
2310             /* fall through */
2311         default:
2312             if (block)
2313                 debugx(1, DBG_ERR, "configuration error in block %s, line starting with %s", block, tokens[0]);
2314             debugx(1, DBG_ERR, "configuration error, syntax error in line starting with %s", tokens[0]);
2315         }
2316
2317         if (!*val)
2318             debugx(1, DBG_ERR, "configuration error, option %s needs a non-empty value", opt);
2319         
2320         va_start(ap, block);
2321         while ((word = va_arg(ap, char *))) {
2322             type = va_arg(ap, int);
2323             switch (type) {
2324             case CONF_STR:
2325                 str = va_arg(ap, char **);
2326                 if (!str)
2327                     debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2328                 break;
2329             case CONF_MSTR:
2330                 mstr = va_arg(ap, char ***);
2331                 if (!mstr)
2332                     debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2333                 break;
2334             case CONF_CBK:
2335                 cbk = va_arg(ap, void (*)(FILE *, char *, char *, char *));
2336                 break;
2337             default:
2338                 debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2339             }
2340             if (!strcasecmp(opt, word))
2341                 break;
2342         }
2343         va_end(ap);
2344         
2345         if (!word) {
2346             if (block)
2347                 debugx(1, DBG_ERR, "configuration error in block %s, unknown option %s", block, opt);
2348             debugx(1, DBG_ERR, "configuration error, unknown option %s", opt);
2349         }
2350
2351         if (((type == CONF_STR || type == CONF_MSTR) && conftype != CONF_STR) ||
2352             (type == CONF_CBK && conftype != CONF_CBK)) {
2353             if (block)
2354                 debugx(1, DBG_ERR, "configuration error in block %s, wrong syntax for option %s", block, opt);
2355             debugx(1, DBG_ERR, "configuration error, wrong syntax for option %s", opt);
2356         }
2357         
2358         switch (type) {
2359         case CONF_STR:
2360             if (block)
2361                 debug(DBG_DBG, "getgeneralconfig: block %s: %s = %s", block, opt, val);
2362             else 
2363                 debug(DBG_DBG, "getgeneralconfig: %s = %s", opt, val);
2364             *str = stringcopy(val, 0);
2365             if (!*str)
2366                 debugx(1, DBG_ERR, "malloc failed");
2367             break;
2368         case CONF_MSTR:
2369             if (block)
2370                 debug(DBG_DBG, "getgeneralconfig: block %s: %s = %s", block, opt, val);
2371             else 
2372                 debug(DBG_DBG, "getgeneralconfig: %s = %s", opt, val);
2373             if (*mstr)
2374                 for (n = 0; (*mstr)[n]; n++);
2375             else
2376                 n = 0;
2377             *mstr = realloc(*mstr, sizeof(char *) * (n + 2));
2378             if (!*mstr)
2379                 debugx(1, DBG_ERR, "malloc failed");
2380             (*mstr)[n] = stringcopy(val, 0);
2381             (*mstr)[n + 1] = NULL;
2382             break;
2383         case CONF_CBK:
2384             optval = malloc(strlen(opt) + strlen(val) + 2);
2385             if (!optval)
2386                 debugx(1, DBG_ERR, "malloc failed");
2387             sprintf(optval, "%s %s", opt, val);
2388             cbk(f, optval, opt, val);
2389             free(optval);
2390             break;
2391         default:
2392             debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2393         }
2394     }
2395 }
2396
2397 int addmatchcertattr(struct clsrvconf *conf, char *matchcertattr) {
2398     char *v;
2399     
2400     v = matchcertattr + 20;
2401     if (strncasecmp(matchcertattr, "SubjectAltName:URI:/", 20) || !*v)
2402         return 0;
2403     /* regexp, remove optional trailing / if present */
2404     if (v[strlen(v) - 1] == '/')
2405         v[strlen(v) - 1] = '\0';
2406     if (!*v)
2407         return 0;
2408
2409     conf->certuriregex = malloc(sizeof(regex_t));
2410     if (!conf->certuriregex) {
2411         debug(DBG_ERR, "malloc failed");
2412         return 0;
2413     }
2414     if (regcomp(conf->certuriregex, v, REG_ICASE | REG_NOSUB)) {
2415         regfree(conf->certuriregex);
2416         conf->certuriregex = NULL;
2417         debug(DBG_ERR, "failed to compile regular expression %s", v);
2418         return 0;
2419     }
2420     return 1;
2421 }
2422
2423 void confclient_cb(FILE *f, char *block, char *opt, char *val) {
2424     char *type = NULL, *tls = NULL, *matchcertattr = NULL;
2425     struct clsrvconf *conf;
2426     
2427     debug(DBG_DBG, "confclient_cb called for %s", block);
2428
2429     conf = malloc(sizeof(struct clsrvconf));
2430     if (!conf || !list_push(clconfs, conf))
2431         debugx(1, DBG_ERR, "malloc failed");
2432     memset(conf, 0, sizeof(struct clsrvconf));
2433     
2434     getgeneralconfig(f, block,
2435                      "type", CONF_STR, &type,
2436                      "host", CONF_STR, &conf->host,
2437                      "secret", CONF_STR, &conf->secret,
2438                      "tls", CONF_STR, &tls,
2439                      "matchcertificateattribute", CONF_STR, &matchcertattr,
2440                      NULL
2441                      );
2442
2443     /* leave conf->name to be NULL for clients */
2444     if (!conf->host)
2445         conf->host = stringcopy(val, 0);
2446     
2447     if (type && !strcasecmp(type, "udp")) {
2448         conf->type = 'U';
2449         client_udp_count++;
2450     } else if (type && !strcasecmp(type, "tls")) {
2451         conf->ssl_ctx = tls ? tlsgetctx(tls, NULL) : tlsgetctx("defaultclient", "default");
2452         if (!conf->ssl_ctx)
2453             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
2454         if (matchcertattr && !addmatchcertattr(conf, matchcertattr))
2455             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
2456         conf->type = 'T';
2457         client_tls_count++;
2458     } else
2459         debugx(1, DBG_ERR, "error in block %s, type must be set to UDP or TLS", block);
2460     free(type);
2461     if (tls)
2462         free(tls);
2463     if (matchcertattr)
2464         free(matchcertattr);
2465
2466     if (!resolvepeer(conf, 0))
2467         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2468     
2469     if (!conf->secret) {
2470         if (conf->type == 'U')
2471             debugx(1, DBG_ERR, "error in block %s, secret must be specified for UDP", block);
2472         conf->secret = stringcopy(DEFAULT_TLS_SECRET, 0);
2473     }
2474 }
2475
2476 void confserver_cb(FILE *f, char *block, char *opt, char *val) {
2477     char *type = NULL, *tls = NULL, *matchcertattr = NULL, *statusserver = NULL;
2478     struct clsrvconf *conf;
2479     
2480     debug(DBG_DBG, "confserver_cb called for %s", block);
2481
2482     conf = malloc(sizeof(struct clsrvconf));
2483     if (!conf || !list_push(srvconfs, conf))
2484         debugx(1, DBG_ERR, "malloc failed");
2485     memset(conf, 0, sizeof(struct clsrvconf));
2486     
2487     getgeneralconfig(f, block,
2488                      "type", CONF_STR, &type,
2489                      "host", CONF_STR, &conf->host,
2490                      "port", CONF_STR, &conf->port,
2491                      "secret", CONF_STR, &conf->secret,
2492                      "tls", CONF_STR, &tls,
2493                      "matchcertificateattribute", CONF_STR, &matchcertattr,
2494                      "StatusServer", CONF_STR, &statusserver,
2495                      NULL
2496                      );
2497
2498     conf->name = stringcopy(val, 0);
2499     if (!conf->host)
2500         conf->host = stringcopy(val, 0);
2501     
2502     if (type && !strcasecmp(type, "udp")) {
2503         conf->type = 'U';
2504         server_udp_count++;
2505         if (!conf->port)
2506             conf->port = stringcopy(DEFAULT_UDP_PORT, 0);
2507     } else if (type && !strcasecmp(type, "tls")) {
2508         conf->ssl_ctx = tls ? tlsgetctx(tls, NULL) : tlsgetctx("defaultserver", "default");
2509         if (!conf->ssl_ctx)
2510             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
2511         if (matchcertattr && !addmatchcertattr(conf, matchcertattr))
2512             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
2513         if (!conf->port)
2514             conf->port = stringcopy(DEFAULT_TLS_PORT, 0);
2515         conf->type = 'T';
2516         server_tls_count++;
2517     } else
2518         debugx(1, DBG_ERR, "error in block %s, type must be set to UDP or TLS", block);
2519     free(type);
2520     if (tls)
2521         free(tls);
2522     if (matchcertattr)
2523         free(matchcertattr);
2524     
2525     if (!resolvepeer(conf, 0))
2526         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2527     
2528     if (!conf->secret) {
2529         if (conf->type == 'U')
2530             debugx(1, DBG_ERR, "error in block %s, secret must be specified for UDP", block);
2531         conf->secret = stringcopy(DEFAULT_TLS_SECRET, 0);
2532     }
2533     
2534     if (statusserver) {
2535         if (!strcasecmp(statusserver, "on"))
2536             conf->statusserver = 1;
2537         else if (strcasecmp(statusserver, "off"))
2538             debugx(1, DBG_ERR, "error in block %s, StatusServer is %s, must be on or off", block, statusserver);
2539         free(statusserver);
2540     }
2541 }
2542
2543 void confrealm_cb(FILE *f, char *block, char *opt, char *val) {
2544     char **servers = NULL, *msg = NULL;
2545     
2546     debug(DBG_DBG, "confrealm_cb called for %s", block);
2547     
2548     getgeneralconfig(f, block,
2549                      "server", CONF_MSTR, &servers,
2550                      "ReplyMessage", CONF_STR, &msg,
2551                      NULL
2552                      );
2553
2554     addrealm(val, servers, msg);
2555     free(servers);
2556 }
2557
2558 void conftls_cb(FILE *f, char *block, char *opt, char *val) {
2559     char *cacertfile = NULL, *cacertpath = NULL, *certfile = NULL, *certkeyfile = NULL, *certkeypwd = NULL;
2560     
2561     debug(DBG_DBG, "conftls_cb called for %s", block);
2562     
2563     getgeneralconfig(f, block,
2564                      "CACertificateFile", CONF_STR, &cacertfile,
2565                      "CACertificatePath", CONF_STR, &cacertpath,
2566                      "CertificateFile", CONF_STR, &certfile,
2567                      "CertificateKeyFile", CONF_STR, &certkeyfile,
2568                      "CertificateKeyPassword", CONF_STR, &certkeypwd,
2569                      NULL
2570                      );
2571     
2572     tlsadd(val, cacertfile, cacertpath, certfile, certkeyfile, certkeypwd);
2573     free(cacertfile);
2574     free(cacertpath);
2575     free(certfile);
2576     free(certkeyfile);
2577     free(certkeypwd);
2578 }
2579
2580 void getmainconfig(const char *configfile) {
2581     FILE *f;
2582     char *loglevel = NULL;
2583
2584     f = openconfigfile(configfile);
2585     memset(&options, 0, sizeof(options));
2586     
2587     clconfs = list_create();
2588     if (!clconfs)
2589         debugx(1, DBG_ERR, "malloc failed");
2590     
2591     srvconfs = list_create();
2592     if (!srvconfs)
2593         debugx(1, DBG_ERR, "malloc failed");
2594     
2595     realms = list_create();
2596     if (!realms)
2597         debugx(1, DBG_ERR, "malloc failed");    
2598  
2599     tlsconfs = list_create();
2600     if (!tlsconfs)
2601         debugx(1, DBG_ERR, "malloc failed");    
2602  
2603     getgeneralconfig(f, NULL,
2604                      "ListenUDP", CONF_STR, &options.listenudp,
2605                      "ListenTCP", CONF_STR, &options.listentcp,
2606                      "ListenAccountingUDP", CONF_STR, &options.listenaccudp,
2607                      "LogLevel", CONF_STR, &loglevel,
2608                      "LogDestination", CONF_STR, &options.logdestination,
2609                      "Client", CONF_CBK, confclient_cb,
2610                      "Server", CONF_CBK, confserver_cb,
2611                      "Realm", CONF_CBK, confrealm_cb,
2612                      "TLS", CONF_CBK, conftls_cb,
2613                      NULL
2614                      );
2615     fclose(f);
2616     tlsfree();
2617     
2618     if (loglevel) {
2619         if (strlen(loglevel) != 1 || *loglevel < '1' || *loglevel > '4')
2620             debugx(1, DBG_ERR, "error in %s, value of option LogLevel is %s, must be 1, 2, 3 or 4", configfile, loglevel);
2621         options.loglevel = *loglevel - '0';
2622         free(loglevel);
2623     }
2624 }
2625
2626 void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *loglevel, char **configfile) {
2627     int c;
2628
2629     while ((c = getopt(argc, argv, "c:d:fv")) != -1) {
2630         switch (c) {
2631         case 'c':
2632             *configfile = optarg;
2633             break;
2634         case 'd':
2635             if (strlen(optarg) != 1 || *optarg < '1' || *optarg > '4')
2636                 debugx(1, DBG_ERR, "Debug level must be 1, 2, 3 or 4, not %s", optarg);
2637             *loglevel = *optarg - '0';
2638             break;
2639         case 'f':
2640             *foreground = 1;
2641             break;
2642         case 'v':
2643                 debugx(0, DBG_ERR, "radsecproxy revision $Rev$");
2644         default:
2645             goto usage;
2646         }
2647     }
2648     if (!(argc - optind))
2649         return;
2650
2651  usage:
2652     debug(DBG_ERR, "Usage:\n%s [ -c configfile ] [ -d debuglevel ] [ -f ] [ -v ]", argv[0]);
2653     exit(1);
2654 }
2655
2656 int main(int argc, char **argv) {
2657     pthread_t udpserverth, udpaccserverth;
2658     struct list_node *entry;
2659     uint8_t foreground = 0, loglevel = 0;
2660     char *configfile = NULL;
2661     
2662     debug_init("radsecproxy");
2663     debug_set_level(DEBUG_LEVEL);
2664     getargs(argc, argv, &foreground, &loglevel, &configfile);
2665     if (loglevel)
2666         debug_set_level(loglevel);
2667     getmainconfig(configfile ? configfile : CONFIG_MAIN);
2668     if (loglevel)
2669         options.loglevel = loglevel;
2670     else if (options.loglevel)
2671         debug_set_level(options.loglevel);
2672     if (foreground)
2673         options.logdestination = NULL;
2674     else {
2675         if (!options.logdestination)
2676             options.logdestination = "x-syslog:///";
2677         debug_set_destination(options.logdestination);
2678     }
2679
2680     if (!list_first(clconfs))
2681         debugx(1, DBG_ERR, "No clients configured, nothing to do, exiting");
2682     if (!list_first(srvconfs))
2683         debugx(1, DBG_ERR, "No servers configured, nothing to do, exiting");
2684     if (!list_first(realms))
2685         debugx(1, DBG_ERR, "No realms configured, nothing to do, exiting");
2686
2687     if (!foreground && (daemon(0, 0) < 0))
2688         debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
2689     
2690     debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
2691
2692     if (client_udp_count) {
2693         udp_server_listen = server_create('U', options.listenudp);
2694         udp_server_replyq = newreplyq();
2695         if (pthread_create(&udpserverth, NULL, udpserverrd, NULL))
2696             debugx(1, DBG_ERR, "pthread_create failed");
2697         if (options.listenaccudp) {
2698             udp_accserver_listen = server_create('U', options.listenaccudp);
2699             if (pthread_create(&udpaccserverth, NULL, udpaccserverrd, NULL))
2700                 debugx(1, DBG_ERR, "pthread_create failed");
2701         }
2702     }
2703     
2704     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2705         addserver((struct clsrvconf *)entry->data);
2706         if (pthread_create(&((struct clsrvconf *)entry->data)->servers->clientth, NULL, clientwr,
2707                            (void *)((struct clsrvconf *)entry->data)->servers))
2708             debugx(1, DBG_ERR, "pthread_create failed");
2709     }
2710     
2711     if (client_tls_count) {
2712         tcp_server_listen = server_create('T', options.listentcp);
2713         return tlslistener();
2714     }
2715     
2716     /* just hang around doing nothing, anything to do here? */
2717     for (;;)
2718         sleep(1000);
2719 }