responding to accounting-requests, but no real accounting support
[libradsec.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         server->connectionok = 1;
1651     } else
1652         tlsconnect(server, NULL, "new client");
1653     
1654     if (pthread_create(&clientrdth, NULL, clientrd, (void *)server))
1655         debugx(1, DBG_ERR, "clientwr: pthread_create failed");
1656
1657     for (;;) {
1658         pthread_mutex_lock(&server->newrq_mutex);
1659         if (!server->newrq) {
1660             gettimeofday(&now, NULL);
1661             if (server->conf->statusserver) {
1662                 /* random 0-7 seconds */
1663                 RAND_bytes(&rnd, 1);
1664                 rnd /= 32;
1665                 if (!timeout.tv_sec || timeout.tv_sec - now.tv_sec > lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd)
1666                     timeout.tv_sec = lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd;
1667             }   
1668             if (timeout.tv_sec) {
1669                 debug(DBG_DBG, "clientwr: waiting up to %ld secs for new request", timeout.tv_sec - now.tv_sec);
1670                 pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
1671                 timeout.tv_sec = 0;
1672             } else {
1673                 debug(DBG_DBG, "clientwr: waiting for new request");
1674                 pthread_cond_wait(&server->newrq_cond, &server->newrq_mutex);
1675             }
1676         }
1677         if (server->newrq) {
1678             debug(DBG_DBG, "clientwr: got new request");
1679             server->newrq = 0;
1680         } else
1681             debug(DBG_DBG, "clientwr: request timer expired, processing request queue");
1682         pthread_mutex_unlock(&server->newrq_mutex);
1683
1684         for (i = 0; i < MAX_REQUESTS; i++) {
1685             pthread_mutex_lock(&server->newrq_mutex);
1686             while (i < MAX_REQUESTS && !server->requests[i].buf)
1687                 i++;
1688             if (i == MAX_REQUESTS) {
1689                 pthread_mutex_unlock(&server->newrq_mutex);
1690                 break;
1691             }
1692             rq = server->requests + i;
1693
1694             if (rq->received) {
1695                 debug(DBG_DBG, "clientwr: packet %d in queue is marked as received", i);
1696                 if (rq->buf) {
1697                     debug(DBG_DBG, "clientwr: freeing received packet %d from queue", i);
1698                     free(rq->buf);
1699                     /* setting this to NULL means that it can be reused */
1700                     rq->buf = NULL;
1701                 }
1702                 pthread_mutex_unlock(&server->newrq_mutex);
1703                 continue;
1704             }
1705             
1706             gettimeofday(&now, NULL);
1707             if (now.tv_sec < rq->expiry.tv_sec) {
1708                 if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1709                     timeout.tv_sec = rq->expiry.tv_sec;
1710                 pthread_mutex_unlock(&server->newrq_mutex);
1711                 continue;
1712             }
1713
1714             if (rq->tries == (*rq->buf == RAD_Status_Server || server->conf->type == 'T'
1715                               ? 1 : REQUEST_RETRIES)) {
1716                 debug(DBG_DBG, "clientwr: removing expired packet from queue");
1717                 if (*rq->buf == RAD_Status_Server) {
1718                     debug(DBG_WARN, "clientwr: no status server response, %s dead?", server->conf->host);
1719                     if (server->loststatsrv < 255)
1720                         server->loststatsrv++;
1721                 }
1722                 free(rq->buf);
1723                 /* setting this to NULL means that it can be reused */
1724                 rq->buf = NULL;
1725                 pthread_mutex_unlock(&server->newrq_mutex);
1726                 continue;
1727             }
1728             pthread_mutex_unlock(&server->newrq_mutex);
1729
1730             rq->expiry.tv_sec = now.tv_sec +
1731                 (*rq->buf == RAD_Status_Server || server->conf->type == 'T'
1732                  ? REQUEST_EXPIRY : REQUEST_EXPIRY / REQUEST_RETRIES);
1733             if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1734                 timeout.tv_sec = rq->expiry.tv_sec;
1735             rq->tries++;
1736             clientradput(server, server->requests[i].buf);
1737             gettimeofday(&lastsend, NULL);
1738         }
1739         if (server->conf->statusserver) {
1740             gettimeofday(&now, NULL);
1741             if (now.tv_sec - lastsend.tv_sec >= STATUS_SERVER_PERIOD) {
1742                 if (!RAND_bytes(statsrvbuf + 4, 16)) {
1743                     debug(DBG_WARN, "clientwr: failed to generate random auth");
1744                     continue;
1745                 }
1746                 statsrvrq.buf = malloc(sizeof(statsrvbuf));
1747                 if (!statsrvrq.buf) {
1748                     debug(DBG_ERR, "clientwr: malloc failed");
1749                     continue;
1750                 }
1751                 memcpy(statsrvrq.buf, statsrvbuf, sizeof(statsrvbuf));
1752                 debug(DBG_DBG, "clientwr: sending status server to %s", server->conf->host);
1753                 lastsend.tv_sec = now.tv_sec;
1754                 sendrq(server, &statsrvrq);
1755             }
1756         }
1757     }
1758 }
1759
1760 void *udpserverwr(void *arg) {
1761     struct replyq *replyq = udp_server_replyq;
1762     struct reply *reply;
1763     
1764     for (;;) {
1765         pthread_mutex_lock(&replyq->mutex);
1766         while (!(reply = (struct reply *)list_shift(replyq->replies))) {
1767             debug(DBG_DBG, "udp server writer, waiting for signal");
1768             pthread_cond_wait(&replyq->cond, &replyq->mutex);
1769             debug(DBG_DBG, "udp server writer, got signal");
1770         }
1771         pthread_mutex_unlock(&replyq->mutex);
1772
1773         if (sendto(udp_server_sock, reply->buf, RADLEN(reply->buf), 0,
1774                    (struct sockaddr *)&reply->tosa, SOCKADDR_SIZE(reply->tosa)) < 0)
1775             debug(DBG_WARN, "sendudp: send failed");
1776         free(reply->buf);
1777         free(reply);
1778     }
1779 }
1780
1781 void *udpserverrd(void *arg) {
1782     struct request rq;
1783     pthread_t udpserverwrth;
1784
1785     if ((udp_server_sock = bindtoaddr(udp_server_listen->addrinfo)) < 0)
1786         debugx(1, DBG_ERR, "udpserverrd: socket/bind failed");
1787
1788     debug(DBG_WARN, "udpserverrd: listening for UDP on %s:%s",
1789           udp_server_listen->host ? udp_server_listen->host : "*", udp_server_listen->port);
1790
1791     if (pthread_create(&udpserverwrth, NULL, udpserverwr, NULL))
1792         debugx(1, DBG_ERR, "pthread_create failed");
1793     
1794     for (;;) {
1795         memset(&rq, 0, sizeof(struct request));
1796         rq.buf = radudpget(udp_server_sock, &rq.from, NULL, &rq.fromsa);
1797         radsrv(&rq);
1798     }
1799 }
1800
1801 void *udpaccserverrd(void *arg) {
1802     struct request rq;
1803
1804     if ((udp_accserver_sock = bindtoaddr(udp_accserver_listen->addrinfo)) < 0)
1805         debugx(1, DBG_ERR, "udpserverrd: socket/bind failed");
1806
1807     debug(DBG_WARN, "udpaccserverrd: listening for UDP on %s:%s",
1808           udp_accserver_listen->host ? udp_accserver_listen->host : "*", udp_accserver_listen->port);
1809
1810     for (;;) {
1811         memset(&rq, 0, sizeof(struct request));
1812         rq.buf = radudpget(udp_accserver_sock, &rq.from, NULL, &rq.fromsa);
1813         if (*(uint8_t *)rq.buf == RAD_Accounting_Request) {
1814             radsrv(&rq);
1815             continue;
1816         }
1817         debug(DBG_INFO, "udpaccserverrd: got something other than accounting-request, ignoring");
1818         free(rq.buf);
1819     }
1820 }
1821
1822 void *tlsserverwr(void *arg) {
1823     int cnt;
1824     unsigned long error;
1825     struct client *client = (struct client *)arg;
1826     struct replyq *replyq;
1827     struct reply *reply;
1828     
1829     debug(DBG_DBG, "tlsserverwr starting for %s", client->conf->host);
1830     replyq = client->replyq;
1831     for (;;) {
1832         pthread_mutex_lock(&replyq->mutex);
1833         while (!list_first(replyq->replies)) {
1834             if (client->ssl) {      
1835                 debug(DBG_DBG, "tls server writer, waiting for signal");
1836                 pthread_cond_wait(&replyq->cond, &replyq->mutex);
1837                 debug(DBG_DBG, "tls server writer, got signal");
1838             }
1839             if (!client->ssl) {
1840                 /* ssl might have changed while waiting */
1841                 pthread_mutex_unlock(&replyq->mutex);
1842                 debug(DBG_DBG, "tlsserverwr: exiting as requested");
1843                 pthread_exit(NULL);
1844             }
1845         }
1846         reply = (struct reply *)list_shift(replyq->replies);
1847         pthread_mutex_unlock(&replyq->mutex);
1848         cnt = SSL_write(client->ssl, reply->buf, RADLEN(reply->buf));
1849         if (cnt > 0)
1850             debug(DBG_DBG, "tlsserverwr: Sent %d bytes, Radius packet of length %d",
1851                   cnt, RADLEN(reply->buf));
1852         else
1853             while ((error = ERR_get_error()))
1854                 debug(DBG_ERR, "tlsserverwr: SSL: %s", ERR_error_string(error, NULL));
1855         free(reply->buf);
1856         free(reply);
1857     }
1858 }
1859
1860 void *tlsserverrd(void *arg) {
1861     struct request rq;
1862     unsigned long error;
1863     int s;
1864     struct client *client = (struct client *)arg;
1865     pthread_t tlsserverwrth;
1866     SSL *ssl;
1867     
1868     debug(DBG_DBG, "tlsserverrd starting for %s", client->conf->host);
1869     ssl = client->ssl;
1870
1871     if (SSL_accept(ssl) <= 0) {
1872         while ((error = ERR_get_error()))
1873             debug(DBG_ERR, "tlsserverrd: SSL: %s", ERR_error_string(error, NULL));
1874         debug(DBG_ERR, "SSL_accept failed");
1875         goto errexit;
1876     }
1877     if (tlsverifycert(client->ssl, client->conf)) {
1878         if (pthread_create(&tlsserverwrth, NULL, tlsserverwr, (void *)client)) {
1879             debug(DBG_ERR, "tlsserverrd: pthread_create failed");
1880             goto errexit;
1881         }
1882         for (;;) {
1883             memset(&rq, 0, sizeof(struct request));
1884             rq.buf = radtlsget(client->ssl);
1885             if (!rq.buf)
1886                 break;
1887             debug(DBG_DBG, "tlsserverrd: got Radius message from %s", client->conf->host);
1888             rq.from = client;
1889             radsrv(&rq);
1890         }
1891         debug(DBG_ERR, "tlsserverrd: connection lost");
1892         /* stop writer by setting ssl to NULL and give signal in case waiting for data */
1893         client->ssl = NULL;
1894         pthread_mutex_lock(&client->replyq->mutex);
1895         pthread_cond_signal(&client->replyq->cond);
1896         pthread_mutex_unlock(&client->replyq->mutex);
1897         debug(DBG_DBG, "tlsserverrd: waiting for writer to end");
1898         pthread_join(tlsserverwrth, NULL);
1899     }
1900     
1901  errexit:
1902     s = SSL_get_fd(ssl);
1903     SSL_free(ssl);
1904     shutdown(s, SHUT_RDWR);
1905     close(s);
1906     debug(DBG_DBG, "tlsserverrd thread for %s exiting", client->conf->host);
1907     removeclient(client);
1908     pthread_exit(NULL);
1909 }
1910
1911 int tlslistener() {
1912     pthread_t tlsserverth;
1913     int s, snew;
1914     struct sockaddr_storage from;
1915     size_t fromlen = sizeof(from);
1916     struct clsrvconf *conf;
1917     struct client *client;
1918     
1919     if ((s = bindtoaddr(tcp_server_listen->addrinfo)) < 0)
1920         debugx(1, DBG_ERR, "tlslistener: socket/bind failed");
1921     
1922     listen(s, 0);
1923     debug(DBG_WARN, "listening for incoming TCP on %s:%s",
1924           tcp_server_listen->host ? tcp_server_listen->host : "*", tcp_server_listen->port);
1925
1926     for (;;) {
1927         snew = accept(s, (struct sockaddr *)&from, &fromlen);
1928         if (snew < 0) {
1929             debug(DBG_WARN, "accept failed");
1930             continue;
1931         }
1932         debug(DBG_WARN, "incoming TLS connection from %s", addr2string((struct sockaddr *)&from, fromlen));
1933
1934         conf = find_conf('T', (struct sockaddr *)&from, clconfs, NULL);
1935         if (!conf) {
1936             debug(DBG_WARN, "ignoring request, not a known TLS client");
1937             shutdown(snew, SHUT_RDWR);
1938             close(snew);
1939             continue;
1940         }
1941
1942         client = addclient(conf);
1943
1944         if (!client) {
1945             debug(DBG_WARN, "Failed to create new client instance");
1946             shutdown(snew, SHUT_RDWR);
1947             close(snew);
1948             continue;
1949         }
1950         client->ssl = SSL_new(client->conf->ssl_ctx);
1951         SSL_set_fd(client->ssl, snew);
1952         if (pthread_create(&tlsserverth, NULL, tlsserverrd, (void *)client)) {
1953             debug(DBG_ERR, "tlslistener: pthread_create failed");
1954             SSL_free(client->ssl);
1955             removeclient(client);
1956             shutdown(snew, SHUT_RDWR);
1957             close(snew);
1958             continue;
1959         }
1960         pthread_detach(tlsserverth);
1961     }
1962     return 0;
1963 }
1964
1965 void tlsadd(char *value, char *cacertfile, char *cacertpath, char *certfile, char *certkeyfile, char *certkeypwd) {
1966     struct tls *new;
1967     SSL_CTX *ctx;
1968     int i;
1969     unsigned long error;
1970     
1971     if (!certfile || !certkeyfile)
1972         debugx(1, DBG_ERR, "TLSCertificateFile and TLSCertificateKeyFile must be specified in TLS context %s", value);
1973
1974     if (!cacertfile && !cacertpath)
1975         debugx(1, DBG_ERR, "CA Certificate file or path need to be specified in TLS context %s", value);
1976
1977     if (!ssl_locks) {
1978         ssl_locks = malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t));
1979         ssl_lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
1980         for (i = 0; i < CRYPTO_num_locks(); i++) {
1981             ssl_lock_count[i] = 0;
1982             pthread_mutex_init(&ssl_locks[i], NULL);
1983         }
1984         CRYPTO_set_id_callback(ssl_thread_id);
1985         CRYPTO_set_locking_callback(ssl_locking_callback);
1986
1987         SSL_load_error_strings();
1988         SSL_library_init();
1989
1990         while (!RAND_status()) {
1991             time_t t = time(NULL);
1992             pid_t pid = getpid();
1993             RAND_seed((unsigned char *)&t, sizeof(time_t));
1994             RAND_seed((unsigned char *)&pid, sizeof(pid));
1995         }
1996     }
1997     ctx = SSL_CTX_new(TLSv1_method());
1998     if (certkeypwd) {
1999         SSL_CTX_set_default_passwd_cb_userdata(ctx, certkeypwd);
2000         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
2001     }
2002     if (!SSL_CTX_use_certificate_chain_file(ctx, certfile) ||
2003         !SSL_CTX_use_PrivateKey_file(ctx, certkeyfile, SSL_FILETYPE_PEM) ||
2004         !SSL_CTX_check_private_key(ctx) ||
2005         !SSL_CTX_load_verify_locations(ctx, cacertfile, cacertpath)) {
2006         while ((error = ERR_get_error()))
2007             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2008         debugx(1, DBG_ERR, "Error initialising SSL/TLS in TLS context %s", value);
2009     }
2010     
2011     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
2012     SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
2013
2014     new = malloc(sizeof(struct tls));
2015     if (!new || !list_push(tlsconfs, new))
2016         debugx(1, DBG_ERR, "malloc failed");
2017
2018     memset(new, 0, sizeof(struct tls));
2019     new->name = stringcopy(value, 0);
2020     if (!new->name)
2021         debugx(1, DBG_ERR, "malloc failed");
2022     new->ctx = ctx;
2023     new->count = 0;
2024     debug(DBG_DBG, "tlsadd: added TLS context %s", value);
2025 }
2026
2027 void tlsfree() {
2028     struct list_node *entry;
2029     struct tls *t;
2030     
2031     for (entry = list_first(tlsconfs); entry; entry = list_next(entry)) {
2032         t = (struct tls *)entry->data;
2033         if (t->name)
2034             free(t->name);
2035         if (!t->count)
2036             SSL_CTX_free(t->ctx);
2037     }
2038     list_destroy(tlsconfs);
2039     tlsconfs = NULL;
2040 }
2041
2042 SSL_CTX *tlsgetctx(char *alt1, char *alt2) {
2043     struct list_node *entry;
2044     struct tls *t, *t1 = NULL, *t2 = NULL;
2045     
2046     for (entry = list_first(tlsconfs); entry; entry = list_next(entry)) {
2047         t = (struct tls *)entry->data;
2048         if (!strcasecmp(t->name, alt1)) {
2049             t1 = t;
2050             break;
2051         }
2052         if (!t2 && alt2 && !strcasecmp(t->name, alt2))
2053             t2 = t;
2054     }
2055
2056     t = (t1 ? t1 : t2);
2057     if (!t)
2058         return NULL;
2059     t->count++;
2060     return t->ctx;
2061 }
2062
2063 void addrealm(char *value, char **servers, char *message) {
2064     int n;
2065     struct realm *realm;
2066     char *s, *regex = NULL;
2067     struct list_node *entry;
2068     struct clsrvconf *conf;
2069     
2070     if (*value == '/') {
2071         /* regexp, remove optional trailing / if present */
2072         if (value[strlen(value) - 1] == '/')
2073             value[strlen(value) - 1] = '\0';
2074     } else {
2075         /* not a regexp, let us make it one */
2076         if (*value == '*' && !value[1])
2077             regex = stringcopy(".*", 0);
2078         else {
2079             for (n = 0, s = value; *s;)
2080                 if (*s++ == '.')
2081                     n++;
2082             regex = malloc(strlen(value) + n + 3);
2083             if (regex) {
2084                 regex[0] = '@';
2085                 for (n = 1, s = value; *s; s++) {
2086                     if (*s == '.')
2087                         regex[n++] = '\\';
2088                     regex[n++] = *s;
2089                 }
2090                 regex[n++] = '$';
2091                 regex[n] = '\0';
2092             }
2093         }
2094         if (!regex)
2095             debugx(1, DBG_ERR, "malloc failed");
2096         debug(DBG_DBG, "addrealm: constructed regexp %s from %s", regex, value);
2097     }
2098
2099     realm = malloc(sizeof(struct realm));
2100     if (!realm)
2101         debugx(1, DBG_ERR, "malloc failed");
2102     
2103     memset(realm, 0, sizeof(struct realm));
2104     realm->name = stringcopy(value, 0);
2105     if (!realm->name)
2106         debugx(1, DBG_ERR, "malloc failed");
2107     if (message && strlen(message) > 253)
2108         debugx(1, DBG_ERR, "ReplyMessage can be at most 253 bytes");
2109     realm->message = message;
2110     
2111     if (regcomp(&realm->regex, regex ? regex : value + 1, REG_ICASE | REG_NOSUB))
2112         debugx(1, DBG_ERR, "addrealm: failed to compile regular expression %s", regex ? regex : value + 1);
2113     if (regex)
2114         free(regex);
2115     
2116     if (servers && *servers) {
2117         realm->srvconfs = list_create();
2118         if (!realm->srvconfs)
2119             debugx(1, DBG_ERR, "malloc failed");
2120         for (n = 0; servers[n]; n++) {
2121             for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2122                 conf = (struct clsrvconf *)entry->data;
2123                 if (!strcasecmp(servers[n], conf->name))
2124                     break;
2125             }
2126             if (!entry)
2127                 debugx(1, DBG_ERR, "addrealm failed, no server %s", servers[n]);
2128             if (!list_push(realm->srvconfs, conf))
2129                 debugx(1, DBG_ERR, "malloc failed");
2130             debug(DBG_DBG, "addrealm: added server %s for realm %s", conf->name, value);
2131         }
2132     } else
2133         realm->srvconfs = NULL;
2134     
2135     if (!list_push(realms, realm))
2136         debugx(1, DBG_ERR, "malloc failed");
2137     debug(DBG_DBG, "addrealm: added realm %s", value);
2138 }
2139
2140 char *parsehostport(char *s, struct clsrvconf *conf) {
2141     char *p, *field;
2142     int ipv6 = 0;
2143
2144     p = s;
2145     /* allow literal addresses and port, e.g. [2001:db8::1]:1812 */
2146     if (*p == '[') {
2147         p++;
2148         field = p;
2149         for (; *p && *p != ']' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2150         if (*p != ']')
2151             debugx(1, DBG_ERR, "no ] matching initial [");
2152         ipv6 = 1;
2153     } else {
2154         field = p;
2155         for (; *p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2156     }
2157     if (field == p)
2158         debugx(1, DBG_ERR, "missing host/address");
2159
2160     conf->host = stringcopy(field, p - field);
2161     if (ipv6) {
2162         p++;
2163         if (*p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n')
2164             debugx(1, DBG_ERR, "unexpected character after ]");
2165     }
2166     if (*p == ':') {
2167             /* port number or service name is specified */;
2168             field = ++p;
2169             for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
2170             if (field == p)
2171                 debugx(1, DBG_ERR, "syntax error, : but no following port");
2172             conf->port = stringcopy(field, p - field);
2173     } else
2174         conf->port = stringcopy(conf->type == 'U' ? DEFAULT_UDP_PORT : DEFAULT_TLS_PORT, 0);
2175     return p;
2176 }
2177
2178 FILE *openconfigfile(const char *filename) {
2179     FILE *f;
2180     char pathname[100], *base = NULL;
2181     
2182     f = fopen(filename, "r");
2183     if (f) {
2184         debug(DBG_DBG, "reading config file %s", filename);
2185         return f;
2186     }
2187
2188     if (strlen(filename) + 1 <= sizeof(pathname)) {
2189         /* basename() might modify the string */
2190         strcpy(pathname, filename);
2191         base = basename(pathname);
2192         f = fopen(base, "r");
2193     }
2194
2195     if (!f)
2196         debugx(1, DBG_ERR, "could not read config file %s nor %s\n%s", filename, base, strerror(errno));
2197     
2198     debug(DBG_DBG, "reading config file %s", base);
2199     return f;
2200 }
2201
2202 struct clsrvconf *server_create(char type, char *lconf) {
2203     struct clsrvconf *conf;
2204
2205     conf = malloc(sizeof(struct clsrvconf));
2206     if (!conf)
2207         debugx(1, DBG_ERR, "malloc failed");
2208     memset(conf, 0, sizeof(struct clsrvconf));
2209     conf->type = type;
2210     if (lconf) {
2211         parsehostport(lconf, conf);
2212         if (!strcmp(conf->host, "*")) {
2213             free(conf->host);
2214             conf->host = NULL;
2215         }
2216     } else
2217         conf->port = stringcopy(type == 'T' ? DEFAULT_TLS_PORT : DEFAULT_UDP_PORT, 0);
2218     if (!resolvepeer(conf, AI_PASSIVE))
2219         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2220     return conf;
2221 }
2222
2223 /* returns NULL on error, where to continue parsing if token and ok. E.g. "" will return token with empty string */
2224 char *strtokenquote(char *s, char **token, char *del, char *quote, char *comment) {
2225     char *t = s, *q, *r;
2226
2227     if (!t || !token || !del)
2228         return NULL;
2229     while (*t && strchr(del, *t))
2230         t++;
2231     if (!*t || (comment && strchr(comment, *t))) {
2232         *token = NULL;
2233         return t + 1; /* needs to be non-NULL, but value doesn't matter */
2234     }
2235     if (quote && (q = strchr(quote, *t))) {
2236         t++;
2237         r = t;
2238         while (*t && *t != *q)
2239             t++;
2240         if (!*t || (t[1] && !strchr(del, t[1])))
2241             return NULL;
2242         *t = '\0';
2243         *token = r;
2244         return t + 1;
2245     }
2246     *token = t;
2247     t++;
2248     while (*t && !strchr(del, *t))
2249         t++;
2250     *t = '\0';
2251     return t + 1;
2252 }
2253
2254 /* Parses config with following syntax:
2255  * One of these:
2256  * option-name value
2257  * option-name = value
2258  * Or:
2259  * option-name value {
2260  *     option-name [=] value
2261  *     ...
2262  * }
2263  */
2264 void getgeneralconfig(FILE *f, char *block, ...) {
2265     va_list ap;
2266     char line[1024];
2267     /* initialise lots of stuff to avoid stupid compiler warnings */
2268     char *tokens[3], *s, *opt = NULL, *val = NULL, *word, *optval, **str = NULL, ***mstr = NULL;
2269     int type = 0, tcount, conftype = 0, n;
2270     void (*cbk)(FILE *, char *, char *, char *) = NULL;
2271         
2272     while (fgets(line, 1024, f)) {
2273         s = line;
2274         for (tcount = 0; tcount < 3; tcount++) {
2275             s = strtokenquote(s, &tokens[tcount], " \t\n", "\"'", tcount ? NULL : "#");
2276             if (!s)
2277                 debugx(1, DBG_ERR, "Syntax error in line starting with: %s", line);
2278             if (!tokens[tcount])
2279                 break;
2280         }
2281         if (!tcount || **tokens == '#')
2282             continue;
2283
2284         if (**tokens == '}') {
2285             if (block)
2286                 return;
2287             debugx(1, DBG_ERR, "configuration error, found } with no matching {");
2288         }
2289             
2290         switch (tcount) {
2291         case 2:
2292             opt = tokens[0];
2293             val = tokens[1];
2294             conftype = CONF_STR;
2295             break;
2296         case 3:
2297             if (tokens[1][0] == '=' && tokens[1][1] == '\0') {
2298                 opt = tokens[0];
2299                 val = tokens[2];
2300                 conftype = CONF_STR;
2301                 break;
2302             }
2303             if (tokens[2][0] == '{' && tokens[2][1] == '\0') {
2304                 opt = tokens[0];
2305                 val = tokens[1];
2306                 conftype = CONF_CBK;
2307                 break;
2308             }
2309             /* fall through */
2310         default:
2311             if (block)
2312                 debugx(1, DBG_ERR, "configuration error in block %s, line starting with %s", block, tokens[0]);
2313             debugx(1, DBG_ERR, "configuration error, syntax error in line starting with %s", tokens[0]);
2314         }
2315
2316         if (!*val)
2317             debugx(1, DBG_ERR, "configuration error, option %s needs a non-empty value", opt);
2318         
2319         va_start(ap, block);
2320         while ((word = va_arg(ap, char *))) {
2321             type = va_arg(ap, int);
2322             switch (type) {
2323             case CONF_STR:
2324                 str = va_arg(ap, char **);
2325                 if (!str)
2326                     debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2327                 break;
2328             case CONF_MSTR:
2329                 mstr = va_arg(ap, char ***);
2330                 if (!mstr)
2331                     debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2332                 break;
2333             case CONF_CBK:
2334                 cbk = va_arg(ap, void (*)(FILE *, char *, char *, char *));
2335                 break;
2336             default:
2337                 debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2338             }
2339             if (!strcasecmp(opt, word))
2340                 break;
2341         }
2342         va_end(ap);
2343         
2344         if (!word) {
2345             if (block)
2346                 debugx(1, DBG_ERR, "configuration error in block %s, unknown option %s", block, opt);
2347             debugx(1, DBG_ERR, "configuration error, unknown option %s", opt);
2348         }
2349
2350         if (((type == CONF_STR || type == CONF_MSTR) && conftype != CONF_STR) ||
2351             (type == CONF_CBK && conftype != CONF_CBK)) {
2352             if (block)
2353                 debugx(1, DBG_ERR, "configuration error in block %s, wrong syntax for option %s", block, opt);
2354             debugx(1, DBG_ERR, "configuration error, wrong syntax for option %s", opt);
2355         }
2356         
2357         switch (type) {
2358         case CONF_STR:
2359             if (block)
2360                 debug(DBG_DBG, "getgeneralconfig: block %s: %s = %s", block, opt, val);
2361             else 
2362                 debug(DBG_DBG, "getgeneralconfig: %s = %s", opt, val);
2363             *str = stringcopy(val, 0);
2364             if (!*str)
2365                 debugx(1, DBG_ERR, "malloc failed");
2366             break;
2367         case CONF_MSTR:
2368             if (block)
2369                 debug(DBG_DBG, "getgeneralconfig: block %s: %s = %s", block, opt, val);
2370             else 
2371                 debug(DBG_DBG, "getgeneralconfig: %s = %s", opt, val);
2372             if (*mstr)
2373                 for (n = 0; (*mstr)[n]; n++);
2374             else
2375                 n = 0;
2376             *mstr = realloc(*mstr, sizeof(char *) * (n + 2));
2377             if (!*mstr)
2378                 debugx(1, DBG_ERR, "malloc failed");
2379             (*mstr)[n] = stringcopy(val, 0);
2380             (*mstr)[n + 1] = NULL;
2381             break;
2382         case CONF_CBK:
2383             optval = malloc(strlen(opt) + strlen(val) + 2);
2384             if (!optval)
2385                 debugx(1, DBG_ERR, "malloc failed");
2386             sprintf(optval, "%s %s", opt, val);
2387             cbk(f, optval, opt, val);
2388             free(optval);
2389             break;
2390         default:
2391             debugx(1, DBG_ERR, "getgeneralconfig: internal parameter error");
2392         }
2393     }
2394 }
2395
2396 int addmatchcertattr(struct clsrvconf *conf, char *matchcertattr) {
2397     char *v;
2398     
2399     v = matchcertattr + 20;
2400     if (strncasecmp(matchcertattr, "SubjectAltName:URI:/", 20) || !*v)
2401         return 0;
2402     /* regexp, remove optional trailing / if present */
2403     if (v[strlen(v) - 1] == '/')
2404         v[strlen(v) - 1] = '\0';
2405     if (!*v)
2406         return 0;
2407
2408     conf->certuriregex = malloc(sizeof(regex_t));
2409     if (!conf->certuriregex) {
2410         debug(DBG_ERR, "malloc failed");
2411         return 0;
2412     }
2413     if (regcomp(conf->certuriregex, v, REG_ICASE | REG_NOSUB)) {
2414         regfree(conf->certuriregex);
2415         conf->certuriregex = NULL;
2416         debug(DBG_ERR, "failed to compile regular expression %s", v);
2417         return 0;
2418     }
2419     return 1;
2420 }
2421
2422 void confclient_cb(FILE *f, char *block, char *opt, char *val) {
2423     char *type = NULL, *tls = NULL, *matchcertattr = NULL;
2424     struct clsrvconf *conf;
2425     
2426     debug(DBG_DBG, "confclient_cb called for %s", block);
2427
2428     conf = malloc(sizeof(struct clsrvconf));
2429     if (!conf || !list_push(clconfs, conf))
2430         debugx(1, DBG_ERR, "malloc failed");
2431     memset(conf, 0, sizeof(struct clsrvconf));
2432     
2433     getgeneralconfig(f, block,
2434                      "type", CONF_STR, &type,
2435                      "host", CONF_STR, &conf->host,
2436                      "secret", CONF_STR, &conf->secret,
2437                      "tls", CONF_STR, &tls,
2438                      "matchcertificateattribute", CONF_STR, &matchcertattr,
2439                      NULL
2440                      );
2441
2442     /* leave conf->name to be NULL for clients */
2443     if (!conf->host)
2444         conf->host = stringcopy(val, 0);
2445     
2446     if (type && !strcasecmp(type, "udp")) {
2447         conf->type = 'U';
2448         client_udp_count++;
2449     } else if (type && !strcasecmp(type, "tls")) {
2450         conf->ssl_ctx = tls ? tlsgetctx(tls, NULL) : tlsgetctx("defaultclient", "default");
2451         if (!conf->ssl_ctx)
2452             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
2453         if (matchcertattr && !addmatchcertattr(conf, matchcertattr))
2454             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
2455         conf->type = 'T';
2456         client_tls_count++;
2457     } else
2458         debugx(1, DBG_ERR, "error in block %s, type must be set to UDP or TLS", block);
2459     free(type);
2460     if (tls)
2461         free(tls);
2462     if (matchcertattr)
2463         free(matchcertattr);
2464
2465     if (!resolvepeer(conf, 0))
2466         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2467     
2468     if (!conf->secret) {
2469         if (conf->type == 'U')
2470             debugx(1, DBG_ERR, "error in block %s, secret must be specified for UDP", block);
2471         conf->secret = stringcopy(DEFAULT_TLS_SECRET, 0);
2472     }
2473 }
2474
2475 void confserver_cb(FILE *f, char *block, char *opt, char *val) {
2476     char *type = NULL, *tls = NULL, *matchcertattr = NULL, *statusserver = NULL;
2477     struct clsrvconf *conf;
2478     
2479     debug(DBG_DBG, "confserver_cb called for %s", block);
2480
2481     conf = malloc(sizeof(struct clsrvconf));
2482     if (!conf || !list_push(srvconfs, conf))
2483         debugx(1, DBG_ERR, "malloc failed");
2484     memset(conf, 0, sizeof(struct clsrvconf));
2485     
2486     getgeneralconfig(f, block,
2487                      "type", CONF_STR, &type,
2488                      "host", CONF_STR, &conf->host,
2489                      "port", CONF_STR, &conf->port,
2490                      "secret", CONF_STR, &conf->secret,
2491                      "tls", CONF_STR, &tls,
2492                      "matchcertificateattribute", CONF_STR, &matchcertattr,
2493                      "StatusServer", CONF_STR, &statusserver,
2494                      NULL
2495                      );
2496
2497     conf->name = stringcopy(val, 0);
2498     if (!conf->host)
2499         conf->host = stringcopy(val, 0);
2500     
2501     if (type && !strcasecmp(type, "udp")) {
2502         conf->type = 'U';
2503         server_udp_count++;
2504         if (!conf->port)
2505             conf->port = stringcopy(DEFAULT_UDP_PORT, 0);
2506     } else if (type && !strcasecmp(type, "tls")) {
2507         conf->ssl_ctx = tls ? tlsgetctx(tls, NULL) : tlsgetctx("defaultserver", "default");
2508         if (!conf->ssl_ctx)
2509             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
2510         if (matchcertattr && !addmatchcertattr(conf, matchcertattr))
2511             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
2512         if (!conf->port)
2513             conf->port = stringcopy(DEFAULT_TLS_PORT, 0);
2514         conf->type = 'T';
2515         server_tls_count++;
2516     } else
2517         debugx(1, DBG_ERR, "error in block %s, type must be set to UDP or TLS", block);
2518     free(type);
2519     if (tls)
2520         free(tls);
2521     if (matchcertattr)
2522         free(matchcertattr);
2523     
2524     if (!resolvepeer(conf, 0))
2525         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host, conf->port);
2526     
2527     if (!conf->secret) {
2528         if (conf->type == 'U')
2529             debugx(1, DBG_ERR, "error in block %s, secret must be specified for UDP", block);
2530         conf->secret = stringcopy(DEFAULT_TLS_SECRET, 0);
2531     }
2532     
2533     if (statusserver) {
2534         if (!strcasecmp(statusserver, "on"))
2535             conf->statusserver = 1;
2536         else if (strcasecmp(statusserver, "off"))
2537             debugx(1, DBG_ERR, "error in block %s, StatusServer is %s, must be on or off", block, statusserver);
2538         free(statusserver);
2539     }
2540 }
2541
2542 void confrealm_cb(FILE *f, char *block, char *opt, char *val) {
2543     char **servers = NULL, *msg = NULL;
2544     
2545     debug(DBG_DBG, "confrealm_cb called for %s", block);
2546     
2547     getgeneralconfig(f, block,
2548                      "server", CONF_MSTR, &servers,
2549                      "ReplyMessage", CONF_STR, &msg,
2550                      NULL
2551                      );
2552
2553     addrealm(val, servers, msg);
2554     free(servers);
2555 }
2556
2557 void conftls_cb(FILE *f, char *block, char *opt, char *val) {
2558     char *cacertfile = NULL, *cacertpath = NULL, *certfile = NULL, *certkeyfile = NULL, *certkeypwd = NULL;
2559     
2560     debug(DBG_DBG, "conftls_cb called for %s", block);
2561     
2562     getgeneralconfig(f, block,
2563                      "CACertificateFile", CONF_STR, &cacertfile,
2564                      "CACertificatePath", CONF_STR, &cacertpath,
2565                      "CertificateFile", CONF_STR, &certfile,
2566                      "CertificateKeyFile", CONF_STR, &certkeyfile,
2567                      "CertificateKeyPassword", CONF_STR, &certkeypwd,
2568                      NULL
2569                      );
2570     
2571     tlsadd(val, cacertfile, cacertpath, certfile, certkeyfile, certkeypwd);
2572     free(cacertfile);
2573     free(cacertpath);
2574     free(certfile);
2575     free(certkeyfile);
2576     free(certkeypwd);
2577 }
2578
2579 void getmainconfig(const char *configfile) {
2580     FILE *f;
2581     char *loglevel = NULL;
2582
2583     f = openconfigfile(configfile);
2584     memset(&options, 0, sizeof(options));
2585     
2586     clconfs = list_create();
2587     if (!clconfs)
2588         debugx(1, DBG_ERR, "malloc failed");
2589     
2590     srvconfs = list_create();
2591     if (!srvconfs)
2592         debugx(1, DBG_ERR, "malloc failed");
2593     
2594     realms = list_create();
2595     if (!realms)
2596         debugx(1, DBG_ERR, "malloc failed");    
2597  
2598     tlsconfs = list_create();
2599     if (!tlsconfs)
2600         debugx(1, DBG_ERR, "malloc failed");    
2601  
2602     getgeneralconfig(f, NULL,
2603                      "ListenUDP", CONF_STR, &options.listenudp,
2604                      "ListenTCP", CONF_STR, &options.listentcp,
2605                      "ListenAccountingUDP", CONF_STR, &options.listenaccudp,
2606                      "LogLevel", CONF_STR, &loglevel,
2607                      "LogDestination", CONF_STR, &options.logdestination,
2608                      "Client", CONF_CBK, confclient_cb,
2609                      "Server", CONF_CBK, confserver_cb,
2610                      "Realm", CONF_CBK, confrealm_cb,
2611                      "TLS", CONF_CBK, conftls_cb,
2612                      NULL
2613                      );
2614     fclose(f);
2615     tlsfree();
2616     
2617     if (loglevel) {
2618         if (strlen(loglevel) != 1 || *loglevel < '1' || *loglevel > '4')
2619             debugx(1, DBG_ERR, "error in %s, value of option LogLevel is %s, must be 1, 2, 3 or 4", configfile, loglevel);
2620         options.loglevel = *loglevel - '0';
2621         free(loglevel);
2622     }
2623 }
2624
2625 void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *loglevel, char **configfile) {
2626     int c;
2627
2628     while ((c = getopt(argc, argv, "c:d:fv")) != -1) {
2629         switch (c) {
2630         case 'c':
2631             *configfile = optarg;
2632             break;
2633         case 'd':
2634             if (strlen(optarg) != 1 || *optarg < '1' || *optarg > '4')
2635                 debugx(1, DBG_ERR, "Debug level must be 1, 2, 3 or 4, not %s", optarg);
2636             *loglevel = *optarg - '0';
2637             break;
2638         case 'f':
2639             *foreground = 1;
2640             break;
2641         case 'v':
2642                 debugx(0, DBG_ERR, "radsecproxy revision $Rev$");
2643         default:
2644             goto usage;
2645         }
2646     }
2647     if (!(argc - optind))
2648         return;
2649
2650  usage:
2651     debug(DBG_ERR, "Usage:\n%s [ -c configfile ] [ -d debuglevel ] [ -f ] [ -v ]", argv[0]);
2652     exit(1);
2653 }
2654
2655 int main(int argc, char **argv) {
2656     pthread_t udpserverth, udpaccserverth;
2657     struct list_node *entry;
2658     uint8_t foreground = 0, loglevel = 0;
2659     char *configfile = NULL;
2660     
2661     debug_init("radsecproxy");
2662     debug_set_level(DEBUG_LEVEL);
2663     getargs(argc, argv, &foreground, &loglevel, &configfile);
2664     if (loglevel)
2665         debug_set_level(loglevel);
2666     getmainconfig(configfile ? configfile : CONFIG_MAIN);
2667     if (loglevel)
2668         options.loglevel = loglevel;
2669     else if (options.loglevel)
2670         debug_set_level(options.loglevel);
2671     if (foreground)
2672         options.logdestination = NULL;
2673     else {
2674         if (!options.logdestination)
2675             options.logdestination = "x-syslog:///";
2676         debug_set_destination(options.logdestination);
2677     }
2678
2679     if (!list_first(clconfs))
2680         debugx(1, DBG_ERR, "No clients configured, nothing to do, exiting");
2681     if (!list_first(srvconfs))
2682         debugx(1, DBG_ERR, "No servers configured, nothing to do, exiting");
2683     if (!list_first(realms))
2684         debugx(1, DBG_ERR, "No realms configured, nothing to do, exiting");
2685
2686     if (!foreground && (daemon(0, 0) < 0))
2687         debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
2688     
2689     debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
2690
2691     if (client_udp_count) {
2692         udp_server_listen = server_create('U', options.listenudp);
2693         udp_server_replyq = newreplyq();
2694         if (pthread_create(&udpserverth, NULL, udpserverrd, NULL))
2695             debugx(1, DBG_ERR, "pthread_create failed");
2696         if (options.listenaccudp) {
2697             udp_accserver_listen = server_create('U', options.listenaccudp);
2698             if (pthread_create(&udpaccserverth, NULL, udpaccserverrd, NULL))
2699                 debugx(1, DBG_ERR, "pthread_create failed");
2700         }
2701     }
2702     
2703     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2704         addserver((struct clsrvconf *)entry->data);
2705         if (pthread_create(&((struct clsrvconf *)entry->data)->servers->clientth, NULL, clientwr,
2706                            (void *)((struct clsrvconf *)entry->data)->servers))
2707             debugx(1, DBG_ERR, "pthread_create failed");
2708     }
2709     
2710     if (client_tls_count) {
2711         tcp_server_listen = server_create('T', options.listentcp);
2712         return tlslistener();
2713     }
2714     
2715     /* just hang around doing nothing, anything to do here? */
2716     for (;;)
2717         sleep(1000);
2718 }