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