fixed length of ttl attr
[radsecproxy.git] / radsecproxy.c
1 /*
2  * Copyright (C) 2006-2008 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 /* Code contributions from:
10  *
11  * Arne Schwabe <schwabe at uni-paderborn.de>
12  */
13
14 /* For UDP there is one server instance consisting of udpserverrd and udpserverth
15  *              rd is responsible for init and launching wr
16  * For TLS there is a server instance that launches tlsserverrd for each TLS peer
17  *          each tlsserverrd launches tlsserverwr
18  * For each UDP/TLS peer there is clientrd and clientwr, clientwr is responsible
19  *          for init and launching rd
20  *
21  * serverrd will receive a request, processes it and puts it in the requestq of
22  *          the appropriate clientwr
23  * clientwr monitors its requestq and sends requests
24  * clientrd looks for responses, processes them and puts them in the replyq of
25  *          the peer the request came from
26  * serverwr monitors its reply and sends replies
27  *
28  * In addition to the main thread, we have:
29  * If UDP peers are configured, there will be 2 + 2 * #peers UDP threads
30  * If TLS peers are configured, there will initially be 2 * #peers TLS threads
31  * For each TLS peer connecting to us there will be 2 more TLS threads
32  *       This is only for connected peers
33  * Example: With 3 UDP peer and 30 TLS peers, there will be a max of
34  *          1 + (2 + 2 * 3) + (2 * 30) + (2 * 30) = 129 threads
35 */
36
37 /* Bugs:
38  * May segfault when dtls connections go down? More testing needed
39  * Remove expired stuff from clients request list?
40  * Multiple outgoing connections if not enough IDs? (multiple servers per conf?)
41  * Useful for TCP accounting? Now we require separate server config for alt port
42  */
43
44 #include <signal.h>
45 #include <sys/socket.h>
46 #include <netinet/in.h>
47 #include <netdb.h>
48 #include <string.h>
49 #include <unistd.h>
50 #include <limits.h>
51 #ifdef SYS_SOLARIS9
52 #include <fcntl.h>
53 #endif
54 #include <sys/time.h>
55 #include <sys/types.h>
56 #include <sys/select.h>
57 #include <ctype.h>
58 #include <sys/wait.h>
59 #include <arpa/inet.h>
60 #include <regex.h>
61 #include <libgen.h>
62 #include <pthread.h>
63 #include <openssl/ssl.h>
64 #include <openssl/rand.h>
65 #include <openssl/err.h>
66 #include <openssl/md5.h>
67 #include <openssl/hmac.h>
68 #include <openssl/x509v3.h>
69 #include "debug.h"
70 #include "list.h"
71 #include "hash.h"
72 #include "util.h"
73 #include "gconfig.h"
74 #include "radsecproxy.h"
75 #include "udp.h"
76 #include "tcp.h"
77 #include "tls.h"
78 #include "dtls.h"
79
80 static struct options options;
81 static struct list *clconfs, *srvconfs;
82 struct list *realms;
83 struct hash *tlsconfs, *rewriteconfs;
84
85 static struct addrinfo *srcprotores[RAD_PROTOCOUNT];
86
87 static pthread_mutex_t *ssl_locks = NULL;
88 static long *ssl_lock_count;
89 extern int optind;
90 extern char *optarg;
91
92 /* minimum required declarations to avoid reordering code */
93 struct realm *adddynamicrealmserver(struct realm *realm, struct clsrvconf *conf, char *id);
94 int dynamicconfig(struct server *server);
95 int confserver_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val);
96 void freerealm(struct realm *realm);
97 void freeclsrvconf(struct clsrvconf *conf);
98 void freerq(struct request *rq);
99 void freerqoutdata(struct rqout *rqout);
100 void rmclientrq(struct request *rq, uint8_t id);
101
102 static const struct protodefs protodefs[] = {
103     {   "udp", /* UDP, assuming RAD_UDP defined as 0 */
104         NULL, /* secretdefault */
105         SOCK_DGRAM, /* socktype */
106         "1812", /* portdefault */
107         REQUEST_RETRY_COUNT, /* retrycountdefault */
108         10, /* retrycountmax */
109         REQUEST_RETRY_INTERVAL, /* retryintervaldefault */
110         60, /* retryintervalmax */
111         DUPLICATE_INTERVAL, /* duplicateintervaldefault */
112         udpserverrd, /* listener */
113         NULL, /* connecter */
114         NULL, /* clientconnreader */
115         clientradputudp, /* clientradput */
116         addclientudp, /* addclient */
117         addserverextraudp, /* addserverextra */
118         1, /* freesrcprotores */
119         initextraudp /* initextra */
120     },
121     {   "tls", /* TLS, assuming RAD_TLS defined as 1 */
122         "mysecret", /* secretdefault */
123         SOCK_STREAM, /* socktype */
124         "2083", /* portdefault */
125         0, /* retrycountdefault */
126         0, /* retrycountmax */
127         REQUEST_RETRY_INTERVAL * REQUEST_RETRY_COUNT, /* retryintervaldefault */
128         60, /* retryintervalmax */
129         DUPLICATE_INTERVAL, /* duplicateintervaldefault */
130         tlslistener, /* listener */
131         tlsconnect, /* connecter */
132         tlsclientrd, /* clientconnreader */
133         clientradputtls, /* clientradput */
134         NULL, /* addclient */
135         NULL, /* addserverextra */
136         0, /* freesrcprotores */
137         NULL /* initextra */
138     },
139     {   "tcp", /* TCP, assuming RAD_TCP defined as 2 */
140         NULL, /* secretdefault */
141         SOCK_STREAM, /* socktype */
142         "1812", /* portdefault */
143         0, /* retrycountdefault */
144         0, /* retrycountmax */
145         REQUEST_RETRY_INTERVAL * REQUEST_RETRY_COUNT, /* retryintervaldefault */
146         60, /* retryintervalmax */
147         DUPLICATE_INTERVAL, /* duplicateintervaldefault */
148         tcplistener, /* listener */
149         tcpconnect, /* connecter */
150         tcpclientrd, /* clientconnreader */
151         clientradputtcp, /* clientradput */
152         NULL, /* addclient */
153         NULL, /* addserverextra */
154         0, /* freesrcprotores */
155         NULL /* initextra */
156     },
157     {   "dtls", /* DTLS, assuming RAD_DTLS defined as 3 */
158         "mysecret", /* secretdefault */
159         SOCK_DGRAM, /* socktype */
160         "2083", /* portdefault */
161         REQUEST_RETRY_COUNT, /* retrycountdefault */
162         10, /* retrycountmax */
163         REQUEST_RETRY_INTERVAL, /* retryintervaldefault */
164         60, /* retryintervalmax */
165         DUPLICATE_INTERVAL, /* duplicateintervaldefault */
166         udpdtlsserverrd, /* listener */
167         dtlsconnect, /* connecter */
168         dtlsclientrd, /* clientconnreader */
169         clientradputdtls, /* clientradput */
170         NULL, /* addclient */
171         addserverextradtls, /* addserverextra */
172         1, /* freesrcprotores */
173         initextradtls /* initextra */
174     },
175     {   NULL
176     }
177 };
178
179 uint8_t protoname2int(const char *name) {
180     int i;
181
182     for (i = 0; protodefs[i].name && strcasecmp(protodefs[i].name, name); i++);
183     return i;
184 }
185     
186 /* callbacks for making OpenSSL thread safe */
187 unsigned long ssl_thread_id() {
188         return (unsigned long)pthread_self();
189 }
190
191 void ssl_locking_callback(int mode, int type, const char *file, int line) {
192     if (mode & CRYPTO_LOCK) {
193         pthread_mutex_lock(&ssl_locks[type]);
194         ssl_lock_count[type]++;
195     } else
196         pthread_mutex_unlock(&ssl_locks[type]);
197 }
198
199 static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) {
200     int pwdlen = strlen(userdata);
201     if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */
202         return 0;
203     memcpy(buf, userdata, pwdlen);
204     return pwdlen;
205 }
206
207 static int verify_cb(int ok, X509_STORE_CTX *ctx) {
208     char *buf = NULL;
209     X509 *err_cert;
210     int err, depth;
211
212     err_cert = X509_STORE_CTX_get_current_cert(ctx);
213     err = X509_STORE_CTX_get_error(ctx);
214     depth = X509_STORE_CTX_get_error_depth(ctx);
215
216     if (depth > MAX_CERT_DEPTH) {
217         ok = 0;
218         err = X509_V_ERR_CERT_CHAIN_TOO_LONG;
219         X509_STORE_CTX_set_error(ctx, err);
220     }
221
222     if (!ok) {
223         if (err_cert)
224             buf = X509_NAME_oneline(X509_get_subject_name(err_cert), NULL, 0);
225         debug(DBG_WARN, "verify error: num=%d:%s:depth=%d:%s", err, X509_verify_cert_error_string(err), depth, buf ? buf : "");
226         free(buf);
227         buf = NULL;
228         
229         switch (err) {
230         case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
231             if (err_cert) {
232                 buf = X509_NAME_oneline(X509_get_issuer_name(err_cert), NULL, 0);
233                 if (buf) {
234                     debug(DBG_WARN, "\tIssuer=%s", buf);
235                     free(buf);
236                     buf = NULL;
237                 }
238             }
239             break;
240         case X509_V_ERR_CERT_NOT_YET_VALID:
241         case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
242             debug(DBG_WARN, "\tCertificate not yet valid");
243             break;
244         case X509_V_ERR_CERT_HAS_EXPIRED:
245             debug(DBG_WARN, "Certificate has expired");
246             break;
247         case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
248             debug(DBG_WARN, "Certificate no longer valid (after notAfter)");
249             break;
250         case X509_V_ERR_NO_EXPLICIT_POLICY:
251             debug(DBG_WARN, "No Explicit Certificate Policy");
252             break;
253         }
254     }
255 #ifdef DEBUG  
256     printf("certificate verify returns %d\n", ok);
257 #endif  
258     return ok;
259 }
260
261 struct addrinfo *getsrcprotores(uint8_t type) {
262     return srcprotores[type];
263 }
264
265 int resolvepeer(struct clsrvconf *conf, int ai_flags) {
266     struct addrinfo hints, *addrinfo, *res;
267     char *slash, *s;
268     int plen = 0;
269
270     slash = conf->host ? strchr(conf->host, '/') : NULL;
271     if (slash) {
272         s = slash + 1;
273         if (!*s) {
274             debug(DBG_WARN, "resolvepeer: prefix length must be specified after the / in %s", conf->host);
275             return 0;
276         }
277         for (; *s; s++)
278             if (*s < '0' || *s > '9') {
279                 debug(DBG_WARN, "resolvepeer: %s in %s is not a valid prefix length", slash + 1, conf->host);
280                 return 0;
281             }
282         plen = atoi(slash + 1);
283         if (plen < 0 || plen > 128) {
284             debug(DBG_WARN, "resolvepeer: %s in %s is not a valid prefix length", slash + 1, conf->host);
285             return 0;
286         }
287         *slash = '\0';
288     }
289     memset(&hints, 0, sizeof(hints));
290     hints.ai_socktype = conf->pdef->socktype;
291     hints.ai_family = AF_UNSPEC;
292     hints.ai_flags = ai_flags;
293     if (!conf->host && !conf->port) {
294         /* getaddrinfo() doesn't like host and port to be NULL */
295         if (getaddrinfo(conf->host, conf->pdef->portdefault, &hints, &addrinfo)) {
296             debug(DBG_WARN, "resolvepeer: can't resolve (null) port (null)");
297             return 0;
298         }
299         for (res = addrinfo; res; res = res->ai_next)
300             port_set(res->ai_addr, 0);
301     } else {
302         if (slash)
303             hints.ai_flags |= AI_NUMERICHOST;
304         if (getaddrinfo(conf->host, conf->port, &hints, &addrinfo)) {
305             debug(DBG_WARN, "resolvepeer: can't resolve %s port %s", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
306             return 0;
307         }
308         if (slash) {
309             *slash = '/';
310             switch (addrinfo->ai_family) {
311             case AF_INET:
312                 if (plen > 32) {
313                     debug(DBG_WARN, "resolvepeer: prefix length must be <= 32 in %s", conf->host);
314                     freeaddrinfo(addrinfo);
315                     return 0;
316                 }
317                 break;
318             case AF_INET6:
319                 break;
320             default:
321                 debug(DBG_WARN, "resolvepeer: prefix must be IPv4 or IPv6 in %s", conf->host);
322                 freeaddrinfo(addrinfo);
323                 return 0;
324             }
325             conf->prefixlen = plen;
326         } else
327             conf->prefixlen = 255;
328     }
329     if (conf->addrinfo)
330         freeaddrinfo(conf->addrinfo);
331     conf->addrinfo = addrinfo;
332     return 1;
333 }         
334
335 char *parsehostport(char *s, struct clsrvconf *conf, char *default_port) {
336     char *p, *field;
337     int ipv6 = 0;
338
339     p = s;
340     /* allow literal addresses and port, e.g. [2001:db8::1]:1812 */
341     if (*p == '[') {
342         p++;
343         field = p;
344         for (; *p && *p != ']' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
345         if (*p != ']')
346             debugx(1, DBG_ERR, "no ] matching initial [");
347         ipv6 = 1;
348     } else {
349         field = p;
350         for (; *p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
351     }
352     if (field == p)
353         debugx(1, DBG_ERR, "missing host/address");
354
355     conf->host = stringcopy(field, p - field);
356     if (ipv6) {
357         p++;
358         if (*p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n')
359             debugx(1, DBG_ERR, "unexpected character after ]");
360     }
361     if (*p == ':') {
362             /* port number or service name is specified */;
363             field = ++p;
364             for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
365             if (field == p)
366                 debugx(1, DBG_ERR, "syntax error, : but no following port");
367             conf->port = stringcopy(field, p - field);
368     } else
369         conf->port = default_port ? stringcopy(default_port, 0) : NULL;
370     return p;
371 }
372
373 struct clsrvconf *resolve_hostport(uint8_t type, char *lconf, char *default_port) {
374     struct clsrvconf *conf;
375
376     conf = malloc(sizeof(struct clsrvconf));
377     if (!conf)
378         debugx(1, DBG_ERR, "malloc failed");
379     memset(conf, 0, sizeof(struct clsrvconf));
380     conf->type = type;
381     conf->pdef = &protodefs[conf->type];
382     if (lconf) {
383         parsehostport(lconf, conf, default_port);
384         if (!strcmp(conf->host, "*")) {
385             free(conf->host);
386             conf->host = NULL;
387         }
388     } else
389         conf->port = default_port ? stringcopy(default_port, 0) : NULL;
390     if (!resolvepeer(conf, AI_PASSIVE))
391         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
392     return conf;
393 }
394
395 void freeclsrvres(struct clsrvconf *res) {
396     free(res->host);
397     free(res->port);
398     if (res->addrinfo)
399         freeaddrinfo(res->addrinfo);
400     free(res);
401 }
402
403 /* returns 1 if the len first bits are equal, else 0 */
404 int prefixmatch(void *a1, void *a2, uint8_t len) {
405     static uint8_t mask[] = { 0, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe };
406     int r, l = len / 8;
407     if (l && memcmp(a1, a2, l))
408         return 0;
409     r = len % 8;
410     if (!r)
411         return 1;
412     return (((uint8_t *)a1)[l] & mask[r]) == (((uint8_t *)a2)[l] & mask[r]);
413 }
414
415 /* returns next config with matching address, or NULL */
416 struct clsrvconf *find_conf(uint8_t type, struct sockaddr *addr, struct list *confs, struct list_node **cur) {
417     struct sockaddr_in6 *sa6 = NULL;
418     struct in_addr *a4 = NULL;
419     struct addrinfo *res;
420     struct list_node *entry;
421     struct clsrvconf *conf;
422     
423     if (addr->sa_family == AF_INET6) {
424         sa6 = (struct sockaddr_in6 *)addr;
425         if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
426             a4 = (struct in_addr *)&sa6->sin6_addr.s6_addr[12];
427             sa6 = NULL;
428         }
429     } else
430         a4 = &((struct sockaddr_in *)addr)->sin_addr;
431
432     for (entry = (cur && *cur ? list_next(*cur) : list_first(confs)); entry; entry = list_next(entry)) {
433         conf = (struct clsrvconf *)entry->data;
434         if (conf->type == type) {
435             if (conf->prefixlen == 255) {
436                 for (res = conf->addrinfo; res; res = res->ai_next)
437                     if ((a4 && res->ai_family == AF_INET &&
438                          !memcmp(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, 4)) ||
439                         (sa6 && res->ai_family == AF_INET6 &&
440                          !memcmp(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, 16))) {
441                         if (cur)
442                             *cur = entry;
443                         return conf;
444                     }
445             } else {
446                 res = conf->addrinfo;
447                 if (res &&
448                     ((a4 && res->ai_family == AF_INET &&
449                       prefixmatch(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, conf->prefixlen)) ||
450                      (sa6 && res->ai_family == AF_INET6 &&
451                       prefixmatch(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, conf->prefixlen)))) {
452                     if (cur)
453                         *cur = entry;
454                     return conf;
455                 }
456             }
457         }
458     }    
459     return NULL;
460 }
461
462 struct clsrvconf *find_clconf(uint8_t type, struct sockaddr *addr, struct list_node **cur) {
463     return find_conf(type, addr, clconfs, cur);
464 }
465
466 struct clsrvconf *find_srvconf(uint8_t type, struct sockaddr *addr, struct list_node **cur) {
467     return find_conf(type, addr, srvconfs, cur);
468 }
469
470 /* returns next config of given type, or NULL */
471 struct clsrvconf *find_clconf_type(uint8_t type, struct list_node **cur) {
472     struct list_node *entry;
473     struct clsrvconf *conf;
474     
475     for (entry = (cur && *cur ? list_next(*cur) : list_first(clconfs)); entry; entry = list_next(entry)) {
476         conf = (struct clsrvconf *)entry->data;
477         if (conf->type == type) {
478             if (cur)
479                 *cur = entry;
480             return conf;
481         }
482     }    
483     return NULL;
484 }
485
486 struct queue *newqueue() {
487     struct queue *q;
488     
489     q = malloc(sizeof(struct queue));
490     if (!q)
491         debugx(1, DBG_ERR, "malloc failed");
492     q->entries = list_create();
493     if (!q->entries)
494         debugx(1, DBG_ERR, "malloc failed");
495     pthread_mutex_init(&q->mutex, NULL);
496     pthread_cond_init(&q->cond, NULL);
497     return q;
498 }
499
500 void removequeue(struct queue *q) {
501     struct list_node *entry;
502
503     if (!q)
504         return;
505     pthread_mutex_lock(&q->mutex);
506     for (entry = list_first(q->entries); entry; entry = list_next(entry))
507         freerq((struct request *)entry);
508     list_destroy(q->entries);
509     pthread_cond_destroy(&q->cond);
510     pthread_mutex_unlock(&q->mutex);
511     pthread_mutex_destroy(&q->mutex);
512     free(q);
513 }
514
515 void freebios(struct queue *q) {
516     BIO *bio;
517     
518     pthread_mutex_lock(&q->mutex);
519     while ((bio = (BIO *)list_shift(q->entries)))
520         BIO_free(bio);
521     pthread_mutex_unlock(&q->mutex);
522     removequeue(q);
523 }
524
525 struct client *addclient(struct clsrvconf *conf, uint8_t lock) {
526     struct client *new = malloc(sizeof(struct client));
527     
528     if (!new) {
529         debug(DBG_ERR, "malloc failed");
530         return NULL;
531     }
532
533     if (lock)
534         pthread_mutex_lock(conf->lock);
535     if (!conf->clients) {
536         conf->clients = list_create();
537         if (!conf->clients) {
538             if (lock)
539                 pthread_mutex_unlock(conf->lock);
540             debug(DBG_ERR, "malloc failed");
541             return NULL;
542         }
543     }
544     
545     memset(new, 0, sizeof(struct client));
546     new->conf = conf;
547     if (conf->pdef->addclient)
548         conf->pdef->addclient(new);
549     else
550         new->replyq = newqueue();
551     list_push(conf->clients, new);
552     if (lock)
553         pthread_mutex_unlock(conf->lock);
554     return new;
555 }
556
557 void removeclientrqs_sendrq_freeserver_lock(uint8_t wantlock) {
558     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
559
560     if (wantlock)
561         pthread_mutex_lock(&lock);
562     else
563         pthread_mutex_unlock(&lock);
564 }
565     
566 void removeclientrqs(struct client *client) {
567     struct request *rq;
568     struct rqout *rqout;
569     int i;
570
571     removeclientrqs_sendrq_freeserver_lock(1);
572     for (i = 0; i < MAX_REQUESTS; i++) {
573         rq = client->rqs[i];
574         if (!rq)
575             continue;
576         if (rq->to) {
577             rqout = rq->to->requests + rq->newid;
578             pthread_mutex_lock(rqout->lock);
579             if (rqout->rq == rq) /* still pointing to our request */
580                 freerqoutdata(rqout);
581             pthread_mutex_unlock(rqout->lock);
582         }
583         freerq(rq);
584     }
585     removeclientrqs_sendrq_freeserver_lock(0);
586 }
587
588 void removelockedclient(struct client *client) {
589     struct clsrvconf *conf;
590     
591     conf = client->conf;
592     if (conf->clients) {
593         removeclientrqs(client);
594         removequeue(client->replyq);
595         list_removedata(conf->clients, client);
596         free(client->addr);
597         free(client);
598     }
599 }
600
601 void removeclient(struct client *client) {
602     struct clsrvconf *conf;
603     
604     if (!client)
605         return;
606
607     conf = client->conf;
608     pthread_mutex_lock(conf->lock);
609     removelockedclient(client);
610     pthread_mutex_unlock(conf->lock);
611 }
612
613 void freeserver(struct server *server, uint8_t destroymutex) {
614     struct rqout *rqout, *end;
615
616     if (!server)
617         return;
618
619     removeclientrqs_sendrq_freeserver_lock(1);
620     if (server->requests) {
621         rqout = server->requests;
622         for (end = rqout + MAX_REQUESTS; rqout < end; rqout++) {
623             if (rqout->rq)
624                 rqout->rq->to = NULL;
625             freerqoutdata(rqout);
626             pthread_mutex_destroy(rqout->lock);
627             free(rqout->lock);
628         }
629         free(server->requests);
630     }
631     if (server->rbios)
632         freebios(server->rbios);
633     free(server->dynamiclookuparg);
634     if (server->ssl)
635         SSL_free(server->ssl);
636     if (destroymutex) {
637         pthread_mutex_destroy(&server->lock);
638         pthread_cond_destroy(&server->newrq_cond);
639         pthread_mutex_destroy(&server->newrq_mutex);
640     }
641     removeclientrqs_sendrq_freeserver_lock(0);
642     free(server);
643 }
644
645 int addserver(struct clsrvconf *conf) {
646     struct clsrvconf *res;
647     uint8_t type;
648     int i;
649     
650     if (conf->servers) {
651         debug(DBG_ERR, "addserver: currently works with just one server per conf");
652         return 0;
653     }
654     conf->servers = malloc(sizeof(struct server));
655     if (!conf->servers) {
656         debug(DBG_ERR, "malloc failed");
657         return 0;
658     }
659     memset(conf->servers, 0, sizeof(struct server));
660     conf->servers->conf = conf;
661
662     type = conf->type;
663     if (type == RAD_DTLS)
664         conf->servers->rbios = newqueue();
665     
666     if (!srcprotores[type]) {
667         res = resolve_hostport(type, options.sourcearg[type], NULL);
668         srcprotores[type] = res->addrinfo;
669         res->addrinfo = NULL;
670         freeclsrvres(res);
671     }
672
673     conf->servers->sock = -1;
674     if (conf->pdef->addserverextra)
675         conf->pdef->addserverextra(conf);
676     
677     conf->servers->requests = calloc(MAX_REQUESTS, sizeof(struct rqout));
678     if (!conf->servers->requests) {
679         debug(DBG_ERR, "malloc failed");
680         goto errexit;
681     }
682     for (i = 0; i < MAX_REQUESTS; i++) {
683         conf->servers->requests[i].lock = malloc(sizeof(pthread_mutex_t));
684         if (!conf->servers->requests[i].lock) {
685             debug(DBG_ERR, "malloc failed");
686             goto errexit;
687         }
688         if (pthread_mutex_init(conf->servers->requests[i].lock, NULL)) {
689             debug(DBG_ERR, "mutex init failed");
690             free(conf->servers->requests[i].lock);
691             conf->servers->requests[i].lock = NULL;
692             goto errexit;
693         }
694     }
695     if (pthread_mutex_init(&conf->servers->lock, NULL)) {
696         debug(DBG_ERR, "mutex init failed");
697         goto errexit;
698     }
699     conf->servers->newrq = 0;
700     if (pthread_mutex_init(&conf->servers->newrq_mutex, NULL)) {
701         debug(DBG_ERR, "mutex init failed");
702         pthread_mutex_destroy(&conf->servers->lock);
703         goto errexit;
704     }
705     if (pthread_cond_init(&conf->servers->newrq_cond, NULL)) {
706         debug(DBG_ERR, "mutex init failed");
707         pthread_mutex_destroy(&conf->servers->newrq_mutex);
708         pthread_mutex_destroy(&conf->servers->lock);
709         goto errexit;
710     }
711
712     return 1;
713     
714  errexit:
715     freeserver(conf->servers, 0);
716     conf->servers = NULL;
717     return 0;
718 }
719
720 int subjectaltnameaddr(X509 *cert, int family, struct in6_addr *addr) {
721     int loc, i, l, n, r = 0;
722     char *v;
723     X509_EXTENSION *ex;
724     STACK_OF(GENERAL_NAME) *alt;
725     GENERAL_NAME *gn;
726     
727     debug(DBG_DBG, "subjectaltnameaddr");
728     
729     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
730     if (loc < 0)
731         return r;
732     
733     ex = X509_get_ext(cert, loc);
734     alt = X509V3_EXT_d2i(ex);
735     if (!alt)
736         return r;
737     
738     n = sk_GENERAL_NAME_num(alt);
739     for (i = 0; i < n; i++) {
740         gn = sk_GENERAL_NAME_value(alt, i);
741         if (gn->type != GEN_IPADD)
742             continue;
743         r = -1;
744         v = (char *)ASN1_STRING_data(gn->d.ia5);
745         l = ASN1_STRING_length(gn->d.ia5);
746         if (((family == AF_INET && l == sizeof(struct in_addr)) || (family == AF_INET6 && l == sizeof(struct in6_addr)))
747             && !memcmp(v, &addr, l)) {
748             r = 1;
749             break;
750         }
751     }
752     GENERAL_NAMES_free(alt);
753     return r;
754 }
755
756 int cnregexp(X509 *cert, char *exact, regex_t *regex) {
757     int loc, l;
758     char *v, *s;
759     X509_NAME *nm;
760     X509_NAME_ENTRY *e;
761     ASN1_STRING *t;
762
763     nm = X509_get_subject_name(cert);
764     loc = -1;
765     for (;;) {
766         loc = X509_NAME_get_index_by_NID(nm, NID_commonName, loc);
767         if (loc == -1)
768             break;
769         e = X509_NAME_get_entry(nm, loc);
770         t = X509_NAME_ENTRY_get_data(e);
771         v = (char *) ASN1_STRING_data(t);
772         l = ASN1_STRING_length(t);
773         if (l < 0)
774             continue;
775         if (exact) {
776             if (l == strlen(exact) && !strncasecmp(exact, v, l))
777                 return 1;
778         } else {
779             s = stringcopy((char *)v, l);
780             if (!s) {
781                 debug(DBG_ERR, "malloc failed");
782                 continue;
783             }
784             if (regexec(regex, s, 0, NULL, 0)) {
785                 free(s);
786                 continue;
787             }
788             free(s);
789             return 1;
790         }
791     }
792     return 0;
793 }
794
795 int subjectaltnameregexp(X509 *cert, int type, char *exact,  regex_t *regex) {
796     int loc, i, l, n, r = 0;
797     char *s, *v;
798     X509_EXTENSION *ex;
799     STACK_OF(GENERAL_NAME) *alt;
800     GENERAL_NAME *gn;
801     
802     debug(DBG_DBG, "subjectaltnameregexp");
803     
804     loc = X509_get_ext_by_NID(cert, NID_subject_alt_name, -1);
805     if (loc < 0)
806         return r;
807     
808     ex = X509_get_ext(cert, loc);
809     alt = X509V3_EXT_d2i(ex);
810     if (!alt)
811         return r;
812     
813     n = sk_GENERAL_NAME_num(alt);
814     for (i = 0; i < n; i++) {
815         gn = sk_GENERAL_NAME_value(alt, i);
816         if (gn->type != type)
817             continue;
818         r = -1;
819         v = (char *)ASN1_STRING_data(gn->d.ia5);
820         l = ASN1_STRING_length(gn->d.ia5);
821         if (l <= 0)
822             continue;
823 #ifdef DEBUG
824         printfchars(NULL, gn->type == GEN_DNS ? "dns" : "uri", NULL, v, l);
825 #endif  
826         if (exact) {
827             if (memcmp(v, exact, l))
828                 continue;
829         } else {
830             s = stringcopy((char *)v, l);
831             if (!s) {
832                 debug(DBG_ERR, "malloc failed");
833                 continue;
834             }
835             if (regexec(regex, s, 0, NULL, 0)) {
836                 free(s);
837                 continue;
838             }
839             free(s);
840         }
841         r = 1;
842         break;
843     }
844     GENERAL_NAMES_free(alt);
845     return r;
846 }
847
848 X509 *verifytlscert(SSL *ssl) {
849     X509 *cert;
850     unsigned long error;
851     
852     if (SSL_get_verify_result(ssl) != X509_V_OK) {
853         debug(DBG_ERR, "verifytlscert: basic validation failed");
854         while ((error = ERR_get_error()))
855             debug(DBG_ERR, "verifytlscert: TLS: %s", ERR_error_string(error, NULL));
856         return NULL;
857     }
858
859     cert = SSL_get_peer_certificate(ssl);
860     if (!cert)
861         debug(DBG_ERR, "verifytlscert: failed to obtain certificate");
862     return cert;
863 }
864     
865 int verifyconfcert(X509 *cert, struct clsrvconf *conf) {
866     int r;
867     uint8_t type = 0; /* 0 for DNS, AF_INET for IPv4, AF_INET6 for IPv6 */
868     struct in6_addr addr;
869     
870     if (conf->certnamecheck && conf->prefixlen == 255) {
871         if (inet_pton(AF_INET, conf->host, &addr))
872             type = AF_INET;
873         else if (inet_pton(AF_INET6, conf->host, &addr))
874             type = AF_INET6;
875
876         r = type ? subjectaltnameaddr(cert, type, &addr) : subjectaltnameregexp(cert, GEN_DNS, conf->host, NULL);
877         if (r) {
878             if (r < 0) {
879                 debug(DBG_WARN, "verifyconfcert: No subjectaltname matching %s %s", type ? "address" : "host", conf->host);
880                 return 0;
881             }
882             debug(DBG_DBG, "verifyconfcert: Found subjectaltname matching %s %s", type ? "address" : "host", conf->host);
883         } else {
884             if (!cnregexp(cert, conf->host, NULL)) {
885                 debug(DBG_WARN, "verifyconfcert: cn not matching host %s", conf->host);
886                 return 0;
887             }           
888             debug(DBG_DBG, "verifyconfcert: Found cn matching host %s", conf->host);
889         }
890     }
891     if (conf->certcnregex) {
892         if (cnregexp(cert, NULL, conf->certcnregex) < 1) {
893             debug(DBG_WARN, "verifyconfcert: CN not matching regex");
894             return 0;
895         }
896         debug(DBG_DBG, "verifyconfcert: CN matching regex");
897     }
898     if (conf->certuriregex) {
899         if (subjectaltnameregexp(cert, GEN_URI, NULL, conf->certuriregex) < 1) {
900             debug(DBG_WARN, "verifyconfcert: subjectaltname URI not matching regex");
901             return 0;
902         }
903         debug(DBG_DBG, "verifyconfcert: subjectaltname URI matching regex");
904     }
905     return 1;
906 }
907
908 unsigned char *attrget(unsigned char *attrs, int length, uint8_t type) {
909     while (length > 1) {
910         if (ATTRTYPE(attrs) == type)
911             return attrs;
912         length -= ATTRLEN(attrs);
913         attrs += ATTRLEN(attrs);
914     }
915     return NULL;
916 }
917
918 struct request *newrqref(struct request *rq) {
919     if (rq)
920         rq->refcount++;
921     return rq;
922 }
923
924 void freerq(struct request *rq) {
925     if (!rq)
926         return;
927     debug(DBG_DBG, "freerq: called with refcount %d", rq->refcount);
928     if (--rq->refcount)
929         return;
930     if (rq->origusername)
931         free(rq->origusername);
932     if (rq->buf)
933         free(rq->buf);
934     if (rq->replybuf)
935         free(rq->replybuf);
936     if (rq->msg)
937         radmsg_free(rq->msg);
938     free(rq);
939 }
940
941 void freerqoutdata(struct rqout *rqout) {
942     if (!rqout)
943         return;
944     if (rqout->rq) {
945         freerq(rqout->rq);
946         rqout->rq = NULL;
947     }
948     rqout->tries = 0;
949     memset(&rqout->expiry, 0, sizeof(struct timeval));
950 }
951
952 void sendrq(struct request *rq) {
953     int i, start;
954     struct server *to;
955
956     removeclientrqs_sendrq_freeserver_lock(1);
957     to = rq->to;
958     if (!to)
959         goto errexit;
960     
961     start = to->conf->statusserver ? 1 : 0;
962     pthread_mutex_lock(&to->newrq_mutex);
963     if (start && rq->msg->code == RAD_Status_Server) {
964         pthread_mutex_lock(to->requests[0].lock);
965         if (to->requests[0].rq) {
966             pthread_mutex_unlock(to->requests[0].lock);
967             debug(DBG_WARN, "sendrq: status server already in queue, dropping request");
968             goto errexit;
969         }
970         i = 0;
971     } else {
972         if (!to->nextid)
973             to->nextid = start;
974         /* might simplify if only try nextid, might be ok */
975         for (i = to->nextid; i < MAX_REQUESTS; i++) {
976             if (!to->requests[i].rq) {
977                 pthread_mutex_lock(to->requests[i].lock);
978                 if (!to->requests[i].rq)
979                     break;
980                 pthread_mutex_unlock(to->requests[i].lock);
981             }
982         }
983         if (i == MAX_REQUESTS) {
984             for (i = start; i < to->nextid; i++) {
985                 if (!to->requests[i].rq) {
986                     pthread_mutex_lock(to->requests[i].lock);
987                     if (!to->requests[i].rq)
988                         break;
989                     pthread_mutex_unlock(to->requests[i].lock);
990                 }
991             }
992             if (i == to->nextid) {
993                 debug(DBG_WARN, "sendrq: no room in queue, dropping request");
994                 goto errexit;
995             }
996         }
997     }
998     rq->newid = (uint8_t)i;
999     rq->msg->id = (uint8_t)i;
1000     rq->buf = radmsg2buf(rq->msg, (uint8_t *)to->conf->secret);
1001     if (!rq->buf) {
1002         pthread_mutex_unlock(to->requests[i].lock);
1003         debug(DBG_ERR, "sendrq: radmsg2buf failed");
1004         goto errexit;
1005     }
1006     
1007     debug(DBG_DBG, "sendrq: inserting packet with id %d in queue for %s", i, to->conf->host);
1008     to->requests[i].rq = rq;
1009     pthread_mutex_unlock(to->requests[i].lock);
1010     if (i >= start) /* i is not reserved for statusserver */
1011         to->nextid = i + 1;
1012
1013     if (!to->newrq) {
1014         to->newrq = 1;
1015         debug(DBG_DBG, "sendrq: signalling client writer");
1016         pthread_cond_signal(&to->newrq_cond);
1017     }
1018
1019     pthread_mutex_unlock(&to->newrq_mutex);
1020     removeclientrqs_sendrq_freeserver_lock(0);
1021     return;
1022
1023  errexit:
1024     if (rq->from)
1025         rmclientrq(rq, rq->msg->id);
1026     freerq(rq);
1027     pthread_mutex_unlock(&to->newrq_mutex);
1028     removeclientrqs_sendrq_freeserver_lock(0);
1029 }
1030
1031 void sendreply(struct request *rq) {
1032     uint8_t first;
1033     struct client *to = rq->from;
1034     
1035     if (!rq->replybuf)
1036         rq->replybuf = radmsg2buf(rq->msg, (uint8_t *)to->conf->secret);
1037     radmsg_free(rq->msg);
1038     rq->msg = NULL;
1039     if (!rq->replybuf) {
1040         freerq(rq);
1041         debug(DBG_ERR, "sendreply: radmsg2buf failed");
1042         return;
1043     }
1044
1045     pthread_mutex_lock(&to->replyq->mutex);
1046     first = list_first(to->replyq->entries) == NULL;
1047     
1048     if (!list_push(to->replyq->entries, rq)) {
1049         pthread_mutex_unlock(&to->replyq->mutex);
1050         freerq(rq);
1051         debug(DBG_ERR, "sendreply: malloc failed");
1052         return;
1053     }
1054     
1055     if (first) {
1056         debug(DBG_DBG, "signalling server writer");
1057         pthread_cond_signal(&to->replyq->cond);
1058     }
1059     pthread_mutex_unlock(&to->replyq->mutex);
1060 }
1061
1062 int pwdencrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
1063     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1064     static unsigned char first = 1;
1065     static EVP_MD_CTX mdctx;
1066     unsigned char hash[EVP_MAX_MD_SIZE], *input;
1067     unsigned int md_len;
1068     uint8_t i, offset = 0, out[128];
1069     
1070     pthread_mutex_lock(&lock);
1071     if (first) {
1072         EVP_MD_CTX_init(&mdctx);
1073         first = 0;
1074     }
1075
1076     input = auth;
1077     for (;;) {
1078         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1079             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
1080             !EVP_DigestUpdate(&mdctx, input, 16) ||
1081             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1082             md_len != 16) {
1083             pthread_mutex_unlock(&lock);
1084             return 0;
1085         }
1086         for (i = 0; i < 16; i++)
1087             out[offset + i] = hash[i] ^ in[offset + i];
1088         input = out + offset - 16;
1089         offset += 16;
1090         if (offset == len)
1091             break;
1092     }
1093     memcpy(in, out, len);
1094     pthread_mutex_unlock(&lock);
1095     return 1;
1096 }
1097
1098 int pwddecrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
1099     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1100     static unsigned char first = 1;
1101     static EVP_MD_CTX mdctx;
1102     unsigned char hash[EVP_MAX_MD_SIZE], *input;
1103     unsigned int md_len;
1104     uint8_t i, offset = 0, out[128];
1105     
1106     pthread_mutex_lock(&lock);
1107     if (first) {
1108         EVP_MD_CTX_init(&mdctx);
1109         first = 0;
1110     }
1111
1112     input = auth;
1113     for (;;) {
1114         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1115             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
1116             !EVP_DigestUpdate(&mdctx, input, 16) ||
1117             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1118             md_len != 16) {
1119             pthread_mutex_unlock(&lock);
1120             return 0;
1121         }
1122         for (i = 0; i < 16; i++)
1123             out[offset + i] = hash[i] ^ in[offset + i];
1124         input = in + offset;
1125         offset += 16;
1126         if (offset == len)
1127             break;
1128     }
1129     memcpy(in, out, len);
1130     pthread_mutex_unlock(&lock);
1131     return 1;
1132 }
1133
1134 int msmppencrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
1135     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1136     static unsigned char first = 1;
1137     static EVP_MD_CTX mdctx;
1138     unsigned char hash[EVP_MAX_MD_SIZE];
1139     unsigned int md_len;
1140     uint8_t i, offset;
1141     
1142     pthread_mutex_lock(&lock);
1143     if (first) {
1144         EVP_MD_CTX_init(&mdctx);
1145         first = 0;
1146     }
1147
1148 #if 0
1149     printfchars(NULL, "msppencrypt auth in", "%02x ", auth, 16);
1150     printfchars(NULL, "msppencrypt salt in", "%02x ", salt, 2);
1151     printfchars(NULL, "msppencrypt in", "%02x ", text, len);
1152 #endif
1153     
1154     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1155         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1156         !EVP_DigestUpdate(&mdctx, auth, 16) ||
1157         !EVP_DigestUpdate(&mdctx, salt, 2) ||
1158         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
1159         pthread_mutex_unlock(&lock);
1160         return 0;
1161     }
1162
1163 #if 0    
1164     printfchars(NULL, "msppencrypt hash", "%02x ", hash, 16);
1165 #endif
1166     
1167     for (i = 0; i < 16; i++)
1168         text[i] ^= hash[i];
1169     
1170     for (offset = 16; offset < len; offset += 16) {
1171 #if 0   
1172         printf("text + offset - 16 c(%d): ", offset / 16);
1173         printfchars(NULL, NULL, "%02x ", text + offset - 16, 16);
1174 #endif
1175         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1176             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1177             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
1178             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1179             md_len != 16) {
1180             pthread_mutex_unlock(&lock);
1181             return 0;
1182         }
1183 #if 0
1184         printfchars(NULL, "msppencrypt hash", "%02x ", hash, 16);
1185 #endif    
1186         
1187         for (i = 0; i < 16; i++)
1188             text[offset + i] ^= hash[i];
1189     }
1190     
1191 #if 0
1192     printfchars(NULL, "msppencrypt out", "%02x ", text, len);
1193 #endif
1194
1195     pthread_mutex_unlock(&lock);
1196     return 1;
1197 }
1198
1199 int msmppdecrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
1200     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
1201     static unsigned char first = 1;
1202     static EVP_MD_CTX mdctx;
1203     unsigned char hash[EVP_MAX_MD_SIZE];
1204     unsigned int md_len;
1205     uint8_t i, offset;
1206     char plain[255];
1207     
1208     pthread_mutex_lock(&lock);
1209     if (first) {
1210         EVP_MD_CTX_init(&mdctx);
1211         first = 0;
1212     }
1213
1214 #if 0
1215     printfchars(NULL, "msppdecrypt auth in", "%02x ", auth, 16);
1216     printfchars(NULL, "msppdecrypt salt in", "%02x ", salt, 2);
1217     printfchars(NULL, "msppdecrypt in", "%02x ", text, len);
1218 #endif
1219     
1220     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1221         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1222         !EVP_DigestUpdate(&mdctx, auth, 16) ||
1223         !EVP_DigestUpdate(&mdctx, salt, 2) ||
1224         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
1225         pthread_mutex_unlock(&lock);
1226         return 0;
1227     }
1228
1229 #if 0    
1230     printfchars(NULL, "msppdecrypt hash", "%02x ", hash, 16);
1231 #endif
1232     
1233     for (i = 0; i < 16; i++)
1234         plain[i] = text[i] ^ hash[i];
1235     
1236     for (offset = 16; offset < len; offset += 16) {
1237 #if 0   
1238         printf("text + offset - 16 c(%d): ", offset / 16);
1239         printfchars(NULL, NULL, "%02x ", text + offset - 16, 16);
1240 #endif
1241         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
1242             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
1243             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
1244             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
1245             md_len != 16) {
1246             pthread_mutex_unlock(&lock);
1247             return 0;
1248         }
1249 #if 0
1250         printfchars(NULL, "msppdecrypt hash", "%02x ", hash, 16);
1251 #endif    
1252
1253         for (i = 0; i < 16; i++)
1254             plain[offset + i] = text[offset + i] ^ hash[i];
1255     }
1256
1257     memcpy(text, plain, len);
1258 #if 0
1259     printfchars(NULL, "msppdecrypt out", "%02x ", text, len);
1260 #endif
1261
1262     pthread_mutex_unlock(&lock);
1263     return 1;
1264 }
1265
1266 struct realm *newrealmref(struct realm *r) {
1267     if (r)
1268         r->refcount++;
1269     return r;
1270 }
1271
1272 /* returns with lock on realm */
1273 struct realm *id2realm(struct list *realmlist, char *id) {
1274     struct list_node *entry;
1275     struct realm *realm, *subrealm;
1276
1277     /* need to do locking for subrealms and check subrealm timers */
1278     for (entry = list_first(realmlist); entry; entry = list_next(entry)) {
1279         realm = (struct realm *)entry->data;
1280         if (!regexec(&realm->regex, id, 0, NULL, 0)) {
1281             pthread_mutex_lock(&realm->mutex);
1282             if (realm->subrealms) {
1283                 subrealm = id2realm(realm->subrealms, id);
1284                 if (subrealm) {
1285                     pthread_mutex_unlock(&realm->mutex);
1286                     return subrealm;
1287                 }
1288             }
1289             return newrealmref(realm);
1290         }
1291     }
1292     return NULL;
1293 }
1294
1295 /* helper function, only used by removeserversubrealms() */
1296 void _internal_removeserversubrealms(struct list *realmlist, struct clsrvconf *srv) {
1297     struct list_node *entry, *entry2;
1298     struct realm *realm;
1299
1300     for (entry = list_first(realmlist); entry;) {
1301         realm = newrealmref((struct realm *)entry->data);
1302         pthread_mutex_lock(&realm->mutex);
1303         entry = list_next(entry);
1304
1305         if (realm->srvconfs) {
1306             for (entry2 = list_first(realm->srvconfs); entry2; entry2 = list_next(entry2))
1307                 if (entry2->data == srv)
1308                     freerealm(realm);
1309             list_removedata(realm->srvconfs, srv);
1310             if (!list_first(realm->srvconfs)) {
1311                 list_destroy(realm->srvconfs);
1312                 realm->srvconfs = NULL;
1313             }
1314         }
1315         if (realm->accsrvconfs) {
1316             for (entry2 = list_first(realm->accsrvconfs); entry2; entry2 = list_next(entry2))
1317                 if (entry2->data == srv)
1318                     freerealm(realm);
1319             list_removedata(realm->accsrvconfs, srv);
1320             if (!list_first(realm->accsrvconfs)) {
1321                 list_destroy(realm->accsrvconfs);
1322                 realm->accsrvconfs = NULL;
1323             }
1324         }
1325
1326         /* remove subrealm if no servers */
1327         if (!realm->srvconfs && !realm->accsrvconfs)
1328             list_removedata(realmlist, realm);
1329
1330         pthread_mutex_unlock(&realm->mutex);
1331         freerealm(realm);
1332     }
1333 }
1334
1335 void removeserversubrealms(struct list *realmlist, struct clsrvconf *srv) {
1336     struct list_node *entry;
1337     struct realm *realm;
1338     
1339     for (entry = list_first(realmlist); entry; entry = list_next(entry)) {
1340         realm = (struct realm *)entry->data;
1341         pthread_mutex_lock(&realm->mutex);
1342         if (realm->subrealms) {
1343             _internal_removeserversubrealms(realm->subrealms, srv);
1344             if (!list_first(realm->subrealms)) {
1345                 list_destroy(realm->subrealms);
1346                 realm->subrealms = NULL;
1347             }
1348         }
1349         pthread_mutex_unlock(&realm->mutex);
1350     }
1351 }
1352                         
1353 int attrvalidate(unsigned char *attrs, int length) {
1354     while (length > 1) {
1355         if (ATTRLEN(attrs) < 2) {
1356             debug(DBG_WARN, "attrvalidate: invalid attribute length %d", ATTRLEN(attrs));
1357             return 0;
1358         }
1359         length -= ATTRLEN(attrs);
1360         if (length < 0) {
1361             debug(DBG_WARN, "attrvalidate: attribute length %d exceeds packet length", ATTRLEN(attrs));
1362             return 0;
1363         }
1364         attrs += ATTRLEN(attrs);
1365     }
1366     if (length)
1367         debug(DBG_WARN, "attrvalidate: malformed packet? remaining byte after last attribute");
1368     return 1;
1369 }
1370
1371 int pwdrecrypt(uint8_t *pwd, uint8_t len, char *oldsecret, char *newsecret, uint8_t *oldauth, uint8_t *newauth) {
1372     if (len < 16 || len > 128 || len % 16) {
1373         debug(DBG_WARN, "pwdrecrypt: invalid password length");
1374         return 0;
1375     }
1376         
1377     if (!pwddecrypt(pwd, len, oldsecret, strlen(oldsecret), oldauth)) {
1378         debug(DBG_WARN, "pwdrecrypt: cannot decrypt password");
1379         return 0;
1380     }
1381 #ifdef DEBUG
1382     printfchars(NULL, "pwdrecrypt: password", "%02x ", pwd, len);
1383 #endif  
1384     if (!pwdencrypt(pwd, len, newsecret, strlen(newsecret), newauth)) {
1385         debug(DBG_WARN, "pwdrecrypt: cannot encrypt password");
1386         return 0;
1387     }
1388     return 1;
1389 }
1390
1391 int msmpprecrypt(uint8_t *msmpp, uint8_t len, char *oldsecret, char *newsecret, uint8_t *oldauth, uint8_t *newauth) {
1392     if (len < 18)
1393         return 0;
1394     if (!msmppdecrypt(msmpp + 2, len - 2, (uint8_t *)oldsecret, strlen(oldsecret), oldauth, msmpp)) {
1395         debug(DBG_WARN, "msmpprecrypt: failed to decrypt msppe key");
1396         return 0;
1397     }
1398     if (!msmppencrypt(msmpp + 2, len - 2, (uint8_t *)newsecret, strlen(newsecret), newauth, msmpp)) {
1399         debug(DBG_WARN, "msmpprecrypt: failed to encrypt msppe key");
1400         return 0;
1401     }
1402     return 1;
1403 }
1404
1405 int msmppe(unsigned char *attrs, int length, uint8_t type, char *attrtxt, struct request *rq,
1406            char *oldsecret, char *newsecret) {
1407     unsigned char *attr;
1408     
1409     for (attr = attrs; (attr = attrget(attr, length - (attr - attrs), type)); attr += ATTRLEN(attr)) {
1410         debug(DBG_DBG, "msmppe: Got %s", attrtxt);
1411         if (!msmpprecrypt(ATTRVAL(attr), ATTRVALLEN(attr), oldsecret, newsecret, rq->buf + 4, rq->rqauth))
1412             return 0;
1413     }
1414     return 1;
1415 }
1416
1417 int findvendorsubattr(uint32_t *attrs, uint32_t vendor, uint8_t subattr) {
1418     if (!attrs)
1419         return 0;
1420     
1421     for (; attrs[0]; attrs += 2)
1422         if (attrs[0] == vendor && attrs[1] == subattr)
1423             return 1;
1424     return 0;
1425 }
1426
1427 /* returns 1 if entire element is to be removed, else 0 */
1428 int dovendorrewriterm(struct tlv *attr, uint32_t *removevendorattrs) {
1429     uint8_t alen, sublen;
1430     uint32_t vendor;
1431     uint8_t *subattrs;
1432     
1433     if (!removevendorattrs)
1434         return 0;
1435
1436     memcpy(&vendor, attr->v, 4);
1437     vendor = ntohl(vendor);
1438     while (*removevendorattrs && *removevendorattrs != vendor)
1439         removevendorattrs += 2;
1440     if (!*removevendorattrs)
1441         return 0;
1442     
1443     if (findvendorsubattr(removevendorattrs, vendor, -1))
1444         return 1; /* remove entire vendor attribute */
1445
1446     sublen = attr->l - 4;
1447     subattrs = attr->v + 4;
1448     
1449     if (!attrvalidate(subattrs, sublen)) {
1450         debug(DBG_WARN, "dovendorrewrite: vendor attribute validation failed, no rewrite");
1451         return 0;
1452     }
1453
1454     while (sublen > 1) {
1455         alen = ATTRLEN(subattrs);
1456         sublen -= alen;
1457         if (findvendorsubattr(removevendorattrs, vendor, ATTRTYPE(subattrs))) {
1458             memmove(subattrs, subattrs + alen, sublen);
1459             attr->l -= alen;
1460         } else
1461             subattrs += alen;
1462     }
1463     return 0;
1464 }
1465
1466 void dorewriterm(struct radmsg *msg, uint8_t *rmattrs, uint32_t *rmvattrs) {
1467     struct list_node *n, *p;
1468     struct tlv *attr;
1469
1470     p = NULL;
1471     n = list_first(msg->attrs);
1472     while (n) {
1473         attr = (struct tlv *)n->data;
1474         if ((rmattrs && strchr((char *)rmattrs, attr->t)) ||
1475             (rmvattrs && attr->t == RAD_Attr_Vendor_Specific && dovendorrewriterm(attr, rmvattrs))) {
1476             list_removedata(msg->attrs, attr);
1477             freetlv(attr);
1478             n = p ? list_next(p) : list_first(msg->attrs);
1479         } else
1480             p = n;
1481             n = list_next(n);
1482     }
1483 }
1484
1485 int dorewriteadd(struct radmsg *msg, struct list *addattrs) {
1486     struct list_node *n;
1487     struct tlv *a;
1488     
1489     for (n = list_first(addattrs); n; n = list_next(n)) {
1490         a = copytlv((struct tlv *)n->data);
1491         if (!a)
1492             return 0;
1493         if (!radmsg_add(msg, a)) {
1494             freetlv(a);
1495             return 0;
1496         }
1497     }
1498     return 1;
1499 }
1500
1501 int resizeattr(struct tlv *attr, uint8_t newlen) {
1502     uint8_t *newv;
1503     
1504     if (newlen != attr->l) {
1505         newv = realloc(attr->v, newlen);
1506         if (!newv)
1507             return 0;
1508         attr->v = newv;
1509         attr->l = newlen;
1510     }
1511     return 1;
1512 }
1513
1514 int dorewritemodattr(struct tlv *attr, struct modattr *modattr) {
1515     size_t nmatch = 10, reslen = 0, start = 0;
1516     regmatch_t pmatch[10], *pfield;
1517     int i;
1518     char *in, *out;
1519
1520     in = stringcopy((char *)attr->v, attr->l);
1521     if (!in)
1522         return 0;
1523     
1524     if (regexec(modattr->regex, in, nmatch, pmatch, 0)) {
1525         free(in);
1526         return 1;
1527     }
1528     
1529     out = modattr->replacement;
1530     
1531     for (i = start; out[i]; i++) {
1532         if (out[i] == '\\' && out[i + 1] >= '1' && out[i + 1] <= '9') {
1533             pfield = &pmatch[out[i + 1] - '0'];
1534             if (pfield->rm_so >= 0) {
1535                 reslen += i - start + pfield->rm_eo - pfield->rm_so;
1536                 start = i + 2;
1537             }
1538             i++;
1539         }
1540     }
1541     reslen += i - start;
1542     if (reslen > 253) {
1543         debug(DBG_WARN, "rewritten attribute length would be %d, max possible is 253, discarding message", reslen);
1544         free(in);
1545         return 0;
1546     }
1547
1548     if (!resizeattr(attr, reslen)) {
1549         free(in);
1550         return 0;
1551     }
1552
1553     start = 0;
1554     reslen = 0;
1555     for (i = start; out[i]; i++) {
1556         if (out[i] == '\\' && out[i + 1] >= '1' && out[i + 1] <= '9') {
1557             pfield = &pmatch[out[i + 1] - '0'];
1558             if (pfield->rm_so >= 0) {
1559                 memcpy(attr->v + reslen, out + start, i - start);
1560                 reslen += i - start;
1561                 memcpy(attr->v + reslen, in + pfield->rm_so, pfield->rm_eo - pfield->rm_so);
1562                 reslen += pfield->rm_eo - pfield->rm_so;
1563                 start = i + 2;
1564             }
1565             i++;
1566         }
1567     }
1568
1569     memcpy(attr->v + reslen, out + start, i - start);
1570     return 1;
1571 }
1572
1573 int dorewritemod(struct radmsg *msg, struct list *modattrs) {
1574     struct list_node *n, *m;
1575
1576     for (n = list_first(msg->attrs); n; n = list_next(n))
1577         for (m = list_first(modattrs); m; m = list_next(m))
1578             if (((struct tlv *)n->data)->t == ((struct modattr *)m->data)->t &&
1579                 !dorewritemodattr((struct tlv *)n->data, (struct modattr *)m->data))
1580                 return 0;
1581     return 1;
1582 }
1583
1584 int dorewrite(struct radmsg *msg, struct rewrite *rewrite) {
1585     if (!rewrite)
1586         return 1;
1587     if (rewrite->removeattrs || rewrite->removevendorattrs)
1588         dorewriterm(msg, rewrite->removeattrs, rewrite->removevendorattrs);
1589     if (rewrite->addattrs && !dorewriteadd(msg, rewrite->addattrs))
1590         return 0;
1591     if (rewrite->modattrs && !dorewritemod(msg, rewrite->modattrs))
1592         return 0;
1593     return 1;
1594 }
1595
1596 int rewriteusername(struct request *rq, struct tlv *attr) {
1597     char *orig = (char *)tlv2str(attr);
1598     if (!dorewritemodattr(attr, rq->from->conf->rewriteusername)) {
1599         free(orig);
1600         return 0;
1601     }
1602     if (strlen(orig) != attr->l || memcmp(orig, attr->v, attr->l))
1603         rq->origusername = (char *)orig;
1604     else
1605         free(orig);
1606     return 1;
1607 }
1608
1609 int addvendorattr(struct radmsg *msg, uint32_t vendor, struct tlv *attr) {
1610     struct tlv *vattr;
1611     uint8_t l, *v;
1612
1613     l = attr->l + 6;
1614     v = malloc(l);
1615     if (v) {
1616         vendor = htonl(vendor);
1617         memcpy(v, &vendor, 4);
1618         tlv2buf(v + 4, attr);
1619         v[5] += 2;
1620         vattr = maketlv(RAD_Attr_Vendor_Specific, l, v);
1621         if (vattr && radmsg_add(msg, vattr))
1622             return 1;
1623         freetlv(vattr);
1624     }
1625     return 0;
1626 }
1627
1628 void addttlattr(struct radmsg *msg, uint32_t *attrtype, uint8_t addttl) {
1629     uint8_t ttl[4];
1630     struct tlv *attr;
1631
1632     memset(ttl, 0, 4);
1633     ttl[3] = addttl;
1634     
1635     if (attrtype[1] == -1) { /* not vendor */
1636         attr = maketlv(attrtype[0], 4, ttl);
1637         if (attr && !radmsg_add(msg, attr))
1638             freetlv(attr);
1639     } else {
1640         attr = maketlv(attrtype[1], 4, ttl);
1641         if (attr) {
1642             addvendorattr(msg, attrtype[0], attr);
1643             freetlv(attr);
1644         }
1645     }
1646 }
1647
1648 int decttl(uint8_t l, uint8_t *v) {
1649     int i;
1650
1651     i = l - 1;
1652     if (v[i]) {
1653         if (--v[i--])
1654             return 1;
1655         while (i >= 0 && !v[i])
1656             i--;
1657         return i >= 0;
1658     }
1659     for (i--; i >= 0 && !v[i]; i--);
1660     if (i < 0)
1661         return 0;
1662     v[i]--;
1663     while (++i < l)
1664         v[i] = 255;
1665     return 1;
1666 }
1667
1668 int dottl(struct radmsg *msg, uint32_t *attrtype, uint8_t addttl) {
1669     uint8_t alen, *subattrs;
1670     struct tlv *attr;
1671     struct list_node *node;
1672     uint32_t vendor;
1673     int sublen;
1674     
1675     if (attrtype[1] == -1) { /* not vendor */
1676         attr = radmsg_gettype(msg, attrtype[0]);
1677         if (attr)
1678             return decttl(attr->l, attr->v);
1679     } else
1680         for (node = list_first(msg->attrs); node; node = list_next(node)) {
1681             attr = (struct tlv *)node->data;
1682             if (attr->t != RAD_Attr_Vendor_Specific || attr->l <= 4)
1683                 continue;
1684             memcpy(&vendor, attr->v, 4);
1685             if (ntohl(vendor) != attrtype[0])
1686                 continue;
1687             sublen = attr->l - 4;
1688             subattrs = attr->v + 4;  
1689             if (!attrvalidate(subattrs, sublen))
1690                 continue;
1691             while (sublen > 1) {
1692                 if (ATTRTYPE(subattrs) == attrtype[1])
1693                     return decttl(ATTRVALLEN(subattrs), ATTRVAL(subattrs));
1694                 alen = ATTRLEN(subattrs);
1695                 sublen -= alen;
1696                 subattrs += alen;
1697             }
1698         }
1699     if (addttl)
1700         addttlattr(msg, attrtype, addttl);
1701     return 1;
1702 }
1703           
1704 const char *radmsgtype2string(uint8_t code) {
1705     static const char *rad_msg_names[] = {
1706         "", "Access-Request", "Access-Accept", "Access-Reject",
1707         "Accounting-Request", "Accounting-Response", "", "",
1708         "", "", "", "Access-Challenge",
1709         "Status-Server", "Status-Client"
1710     };
1711     return code < 14 && *rad_msg_names[code] ? rad_msg_names[code] : "Unknown";
1712 }
1713
1714 void char2hex(char *h, unsigned char c) {
1715     static const char hexdigits[] = { '0', '1', '2', '3', '4', '5', '6', '7',
1716                                       '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
1717     h[0] = hexdigits[c / 16];
1718     h[1] = hexdigits[c % 16];
1719     return;
1720 }
1721
1722 uint8_t *radattr2ascii(struct tlv *attr) {
1723     int i, l;
1724     uint8_t *a, *d;
1725
1726     if (!attr)
1727         return NULL;
1728
1729     l = attr->l;
1730     for (i = 0; i < attr->l; i++)
1731         if (attr->v[i] < 32 || attr->v[i] > 126)
1732             l += 2;
1733     if (l == attr->l)
1734         return (uint8_t *)stringcopy((char *)attr->v, attr->l);
1735     
1736     a = malloc(l + 1);
1737     if (!a)
1738         return NULL;
1739
1740     d = a;
1741     for (i = 0; i < attr->l; i++)
1742         if (attr->v[i] < 32 || attr->v[i] > 126) {
1743             *d++ = '%';
1744             char2hex((char *)d, attr->v[i]);
1745             d += 2;
1746         } else
1747             *d++ = attr->v[i];
1748     *d = '\0';
1749     return a;
1750 }
1751
1752 void acclog(struct radmsg *msg, char *host) {
1753     struct tlv *attr;
1754     uint8_t *username;
1755     
1756     attr = radmsg_gettype(msg, RAD_Attr_User_Name);
1757     if (!attr) {
1758         debug(DBG_INFO, "acclog: accounting-request from %s without username attribute", host);
1759         return;
1760     }
1761     username = radattr2ascii(attr);
1762     if (username) {
1763         debug(DBG_INFO, "acclog: accounting-request from %s with username: %s", host, username);
1764         free(username);
1765     }
1766 }
1767
1768 void respond(struct request *rq, uint8_t code, char *message) {
1769     struct radmsg *msg;
1770     struct tlv *attr;
1771
1772     msg = radmsg_init(code, rq->msg->id, rq->msg->auth);
1773     if (!msg) {
1774         debug(DBG_ERR, "respond: malloc failed");
1775         return;
1776     }
1777     if (message && *message) {
1778         attr = maketlv(RAD_Attr_Reply_Message, strlen(message), message);
1779         if (!attr || !radmsg_add(msg, attr)) {
1780             freetlv(attr);
1781             radmsg_free(msg);
1782             debug(DBG_ERR, "respond: malloc failed");
1783             return;
1784         }
1785     }
1786
1787     radmsg_free(rq->msg);
1788     rq->msg = msg;
1789     debug(DBG_DBG, "respond: sending %s to %s", radmsgtype2string(msg->code), rq->from->conf->host);
1790     sendreply(newrqref(rq));
1791 }
1792
1793 struct clsrvconf *choosesrvconf(struct list *srvconfs) {
1794     struct list_node *entry;
1795     struct clsrvconf *server, *best = NULL, *first = NULL;
1796
1797     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
1798         server = (struct clsrvconf *)entry->data;
1799         if (!server->servers)
1800             return server;
1801         if (!first)
1802             first = server;
1803         if (!server->servers->connectionok)
1804             continue;
1805         if (!server->servers->lostrqs)
1806             return server;
1807         if (!best) {
1808             best = server;
1809             continue;
1810         }
1811         if (server->servers->lostrqs < best->servers->lostrqs)
1812             best = server;
1813     }
1814     return best ? best : first;
1815 }
1816
1817 /* returns with lock on realm, protects from server changes while in use by radsrv/sendrq */
1818 struct server *findserver(struct realm **realm, struct tlv *username, uint8_t acc) {
1819     struct clsrvconf *srvconf;
1820     struct realm *subrealm;
1821     struct server *server = NULL;
1822     char *id = (char *)tlv2str(username);
1823     
1824     if (!id)
1825         return NULL;
1826     /* returns with lock on realm */
1827     *realm = id2realm(realms, id);
1828     if (!*realm)
1829         goto exit;
1830     debug(DBG_DBG, "found matching realm: %s", (*realm)->name);
1831     srvconf = choosesrvconf(acc ? (*realm)->accsrvconfs : (*realm)->srvconfs);
1832     if (!srvconf)
1833         goto exit;
1834     server = srvconf->servers;
1835     if (!acc && !(*realm)->parent && !srvconf->servers) {
1836         subrealm = adddynamicrealmserver(*realm, srvconf, id);
1837         if (subrealm) {
1838             pthread_mutex_lock(&subrealm->mutex);
1839             pthread_mutex_unlock(&(*realm)->mutex);
1840             freerealm(*realm);
1841             *realm = subrealm;
1842             server = ((struct clsrvconf *)subrealm->srvconfs->first->data)->servers;
1843         }
1844     }
1845  exit:    
1846     free(id);
1847     return server;
1848 }
1849
1850
1851 struct request *newrequest() {
1852     struct request *rq;
1853
1854     rq = malloc(sizeof(struct request));
1855     if (!rq) {
1856         debug(DBG_ERR, "newrequest: malloc failed");
1857         return NULL;
1858     }
1859     memset(rq, 0, sizeof(struct request));
1860     rq->refcount = 1;
1861     gettimeofday(&rq->created, NULL);
1862     return rq;
1863 }
1864
1865 int addclientrq(struct request *rq) {
1866     struct request *r;
1867     struct timeval now;
1868     
1869     r = rq->from->rqs[rq->rqid];
1870     if (r) {
1871         if (rq->udpport == r->udpport && !memcmp(rq->rqauth, r->rqauth, 16)) {
1872             gettimeofday(&now, NULL);
1873             if (now.tv_sec - r->created.tv_sec < r->from->conf->dupinterval) {
1874                 if (r->replybuf) {
1875                     debug(DBG_INFO, "addclientrq: already sent reply to request with id %d from %s, resending", rq->rqid, addr2string(r->from->addr));
1876                     sendreply(newrqref(r));
1877                 } else
1878                     debug(DBG_INFO, "addclientrq: already got request with id %d from %s, ignoring", rq->rqid, addr2string(r->from->addr));
1879                 return 0;
1880             }
1881         }
1882         freerq(r);
1883     }
1884     rq->from->rqs[rq->rqid] = newrqref(rq);
1885     return 1;
1886 }
1887
1888 void rmclientrq(struct request *rq, uint8_t id) {
1889     struct request *r;
1890
1891     r = rq->from->rqs[id];
1892     if (r) {
1893         freerq(r);
1894         rq->from->rqs[id] = NULL;
1895     }
1896 }
1897
1898 /* returns 0 if validation/authentication fails, else 1 */
1899 int radsrv(struct request *rq) {
1900     struct radmsg *msg = NULL;
1901     struct tlv *attr;
1902     uint8_t *userascii = NULL;
1903     struct realm *realm = NULL;
1904     struct server *to = NULL;
1905     struct client *from = rq->from;
1906     
1907     msg = buf2radmsg(rq->buf, (uint8_t *)from->conf->secret, NULL);
1908     free(rq->buf);
1909     rq->buf = NULL;
1910
1911     if (!msg) {
1912         debug(DBG_WARN, "radsrv: message validation failed, ignoring packet");
1913         freerq(rq);
1914         return 0;
1915     }
1916     
1917     rq->msg = msg;
1918     rq->rqid = msg->id;
1919     memcpy(rq->rqauth, msg->auth, 16);
1920
1921     debug(DBG_DBG, "radsrv: code %d, id %d", msg->code, msg->id);
1922     if (msg->code != RAD_Access_Request && msg->code != RAD_Status_Server && msg->code != RAD_Accounting_Request) {
1923         debug(DBG_INFO, "radsrv: server currently accepts only access-requests, accounting-requests and status-server, ignoring");      
1924         goto exit;
1925     }
1926     
1927     if (!addclientrq(rq))
1928         goto exit;
1929
1930     if (msg->code == RAD_Status_Server) {
1931         respond(rq, RAD_Access_Accept, NULL);
1932         goto exit;
1933     }
1934
1935     /* below: code == RAD_Access_Request || code == RAD_Accounting_Request */
1936
1937     if (from->conf->rewritein && !dorewrite(msg, from->conf->rewritein))
1938         goto rmclrqexit;
1939
1940     if (!dottl(msg, options.ttlattrtype, options.addttl)) {
1941         debug(DBG_WARN, "radsrv: ignoring request from client %s (%s), ttl exceeded", from->conf->name, addr2string(from->addr));
1942         goto exit;
1943     }
1944         
1945     attr = radmsg_gettype(msg, RAD_Attr_User_Name);
1946     if (!attr) {
1947         if (msg->code == RAD_Accounting_Request) {
1948             acclog(msg, from->conf->host);
1949             respond(rq, RAD_Accounting_Response, NULL);
1950         } else
1951             debug(DBG_WARN, "radsrv: ignoring access request, no username attribute");
1952         goto exit;
1953     }
1954     
1955     if (from->conf->rewriteusername && !rewriteusername(rq, attr)) {
1956         debug(DBG_WARN, "radsrv: username malloc failed, ignoring request");
1957         goto rmclrqexit;
1958     }
1959     
1960     userascii = radattr2ascii(attr);
1961     if (!userascii)
1962         goto rmclrqexit;
1963     debug(DBG_DBG, "%s with username: %s", radmsgtype2string(msg->code), userascii);
1964
1965     /* will return with lock on the realm */
1966     to = findserver(&realm, attr, msg->code == RAD_Accounting_Request);
1967     if (!realm) {
1968         debug(DBG_INFO, "radsrv: ignoring request, don't know where to send it");
1969         goto exit;
1970     }
1971
1972     if (!to) {
1973         if (realm->message && msg->code == RAD_Access_Request) {
1974             debug(DBG_INFO, "radsrv: sending reject to %s for %s", from->conf->host, userascii);
1975             respond(rq, RAD_Access_Reject, realm->message);
1976         } else if (realm->accresp && msg->code == RAD_Accounting_Request) {
1977             acclog(msg, from->conf->host);
1978             respond(rq, RAD_Accounting_Response, NULL);
1979         }
1980         goto exit;
1981     }
1982     
1983     if (options.loopprevention && !strcmp(from->conf->name, to->conf->name)) {
1984         debug(DBG_INFO, "radsrv: Loop prevented, not forwarding request from client %s (%s) to server %s, discarding",
1985               from->conf->name, addr2string(from->addr), to->conf->name);
1986         goto exit;
1987     }
1988
1989     if (msg->code == RAD_Accounting_Request)
1990         memset(msg->auth, 0, 16);
1991     else if (!RAND_bytes(msg->auth, 16)) {
1992         debug(DBG_WARN, "radsrv: failed to generate random auth");
1993         goto rmclrqexit;
1994     }
1995     
1996 #ifdef DEBUG
1997     printfchars(NULL, "auth", "%02x ", auth, 16);
1998 #endif
1999
2000     attr = radmsg_gettype(msg, RAD_Attr_User_Password);
2001     if (attr) {
2002         debug(DBG_DBG, "radsrv: found userpwdattr with value length %d", attr->l);
2003         if (!pwdrecrypt(attr->v, attr->l, from->conf->secret, to->conf->secret, rq->rqauth, msg->auth))
2004             goto rmclrqexit;
2005     }
2006
2007     attr = radmsg_gettype(msg, RAD_Attr_Tunnel_Password);
2008     if (attr) {
2009         debug(DBG_DBG, "radsrv: found tunnelpwdattr with value length %d", attr->l);
2010         if (!pwdrecrypt(attr->v, attr->l, from->conf->secret, to->conf->secret, rq->rqauth, msg->auth))
2011             goto rmclrqexit;
2012     }
2013
2014     if (to->conf->rewriteout && !dorewrite(msg, to->conf->rewriteout))
2015         goto rmclrqexit;
2016     
2017     free(userascii);
2018     rq->to = to;
2019     sendrq(rq);
2020     pthread_mutex_unlock(&realm->mutex);
2021     freerealm(realm);
2022     return 1;
2023     
2024  rmclrqexit:
2025     rmclientrq(rq, msg->id);
2026  exit:
2027     freerq(rq);
2028     free(userascii);
2029     if (realm) {
2030         pthread_mutex_unlock(&realm->mutex);
2031         freerealm(realm);
2032     }
2033     return 1;
2034 }
2035
2036 void replyh(struct server *server, unsigned char *buf) {
2037     struct client *from;
2038     struct rqout *rqout;
2039     int sublen;
2040     unsigned char *subattrs;
2041     uint8_t *username, *stationid, *replymsg;
2042     struct radmsg *msg = NULL;
2043     struct tlv *attr;
2044     struct list_node *node;
2045     
2046     server->connectionok = 1;
2047     server->lostrqs = 0;
2048
2049     rqout = server->requests + buf[1];
2050     pthread_mutex_lock(rqout->lock);
2051     if (!rqout->tries) {
2052         free(buf);
2053         buf = NULL;
2054         debug(DBG_INFO, "replyh: no outstanding request with this id, ignoring reply");
2055         goto errunlock;
2056     }
2057         
2058     msg = buf2radmsg(buf, (uint8_t *)server->conf->secret, rqout->rq->msg->auth);
2059     free(buf);
2060     buf = NULL;
2061     if (!msg) {
2062         debug(DBG_WARN, "replyh: message validation failed, ignoring packet");
2063         goto errunlock;
2064     }
2065     if (msg->code != RAD_Access_Accept && msg->code != RAD_Access_Reject && msg->code != RAD_Access_Challenge
2066         && msg->code != RAD_Accounting_Response) {
2067         debug(DBG_INFO, "replyh: discarding message type %s, accepting only access accept, access reject, access challenge and accounting response messages", radmsgtype2string(msg->code));
2068         goto errunlock;
2069     }
2070     debug(DBG_DBG, "got %s message with id %d", radmsgtype2string(msg->code), msg->id);
2071
2072     gettimeofday(&server->lastrcv, NULL);
2073     
2074     if (rqout->rq->msg->code == RAD_Status_Server) {
2075         freerqoutdata(rqout);
2076         debug(DBG_DBG, "replyh: got status server response from %s", server->conf->host);
2077         goto errunlock;
2078     }
2079
2080     gettimeofday(&server->lastreply, NULL);
2081     from = rqout->rq->from;
2082         
2083     if (server->conf->rewritein && !dorewrite(msg, from->conf->rewritein)) {
2084         debug(DBG_WARN, "replyh: rewritein failed");
2085         goto errunlock;
2086     }
2087     
2088     if (!dottl(msg, options.ttlattrtype, options.addttl)) {
2089         debug(DBG_WARN, "replyh: ignoring reply from server %s, ttl exceeded", server->conf->host);
2090         goto errunlock;
2091     }
2092     
2093     /* MS MPPE */
2094     for (node = list_first(msg->attrs); node; node = list_next(node)) {
2095         attr = (struct tlv *)node->data;
2096         if (attr->t != RAD_Attr_Vendor_Specific)
2097             continue;
2098         if (attr->l <= 4)
2099             break;
2100         if (attr->v[0] != 0 || attr->v[1] != 0 || attr->v[2] != 1 || attr->v[3] != 55)  /* 311 == MS */
2101             continue;
2102             
2103         sublen = attr->l - 4;
2104         subattrs = attr->v + 4;  
2105         if (!attrvalidate(subattrs, sublen) ||
2106             !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Send_Key, "MS MPPE Send Key",
2107                     rqout->rq, server->conf->secret, from->conf->secret) ||
2108             !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Recv_Key, "MS MPPE Recv Key",
2109                     rqout->rq, server->conf->secret, from->conf->secret))
2110             break;
2111     }
2112     if (node) {
2113         debug(DBG_WARN, "replyh: MS attribute handling failed, ignoring reply");
2114         goto errunlock;
2115     }
2116
2117     if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject || msg->code == RAD_Accounting_Response) {
2118         username = radattr2ascii(radmsg_gettype(rqout->rq->msg, RAD_Attr_User_Name));
2119         if (username) {
2120             stationid = radattr2ascii(radmsg_gettype(rqout->rq->msg, RAD_Attr_Calling_Station_Id));
2121             replymsg = radattr2ascii(radmsg_gettype(msg, RAD_Attr_Reply_Message));
2122             if (stationid) {
2123                 if (replymsg) {
2124                     debug(DBG_INFO, "%s for user %s stationid %s from %s (%s)",
2125                           radmsgtype2string(msg->code), username, stationid, server->conf->host, replymsg);
2126                     free(replymsg);
2127                 } else
2128                     debug(DBG_INFO, "%s for user %s stationid %s from %s",
2129                           radmsgtype2string(msg->code), username, stationid, server->conf->host);
2130                 free(stationid);
2131             } else {
2132                 if (replymsg) {
2133                     debug(DBG_INFO, "%s for user %s from %s (%s)",
2134                           radmsgtype2string(msg->code), username, server->conf->host, replymsg);
2135                     free(replymsg);
2136                 } else
2137                     debug(DBG_INFO, "%s for user %s from %s",
2138                           radmsgtype2string(msg->code), username, server->conf->host);
2139             }
2140             free(username);
2141         }
2142     }
2143
2144     msg->id = (char)rqout->rq->rqid;
2145     memcpy(msg->auth, rqout->rq->rqauth, 16);
2146
2147 #ifdef DEBUG    
2148     printfchars(NULL, "origauth/buf+4", "%02x ", buf + 4, 16);
2149 #endif
2150
2151     if (rqout->rq->origusername && (attr = radmsg_gettype(msg, RAD_Attr_User_Name))) {
2152         if (!resizeattr(attr, strlen(rqout->rq->origusername))) {
2153             debug(DBG_WARN, "replyh: malloc failed, ignoring reply");
2154             goto errunlock;
2155         }
2156         memcpy(attr->v, rqout->rq->origusername, strlen(rqout->rq->origusername));
2157     }
2158
2159     if (from->conf->rewriteout && !dorewrite(msg, from->conf->rewriteout)) {
2160         debug(DBG_WARN, "replyh: rewriteout failed");
2161         goto errunlock;
2162     }
2163
2164     debug(DBG_INFO, "replyh: passing reply to client %s (%s)", from->conf->name, addr2string(from->addr));
2165     radmsg_free(rqout->rq->msg);
2166     rqout->rq->msg = msg;
2167     sendreply(newrqref(rqout->rq));
2168     freerqoutdata(rqout);
2169     pthread_mutex_unlock(rqout->lock);
2170     return;
2171
2172  errunlock:
2173     radmsg_free(msg);
2174     pthread_mutex_unlock(rqout->lock);
2175     return;
2176 }
2177
2178 struct request *createstatsrvrq() {
2179     struct request *rq;
2180     struct tlv *attr;
2181
2182     rq = newrequest();
2183     if (!rq)
2184         return NULL;
2185     rq->msg = radmsg_init(RAD_Status_Server, 0, NULL);
2186     if (!rq->msg)
2187         goto exit;
2188     attr = maketlv(RAD_Attr_Message_Authenticator, 16, NULL);
2189     if (!attr)
2190         goto exit;
2191     if (!radmsg_add(rq->msg, attr)) {
2192         freetlv(attr);
2193         goto exit;
2194     }
2195     return rq;
2196
2197  exit:
2198     freerq(rq);
2199     return NULL;
2200 }
2201
2202 /* code for removing state not finished */
2203 void *clientwr(void *arg) {
2204     struct server *server = (struct server *)arg;
2205     struct rqout *rqout = NULL;
2206     pthread_t clientrdth;
2207     int i, dynconffail = 0;
2208     time_t secs;
2209     uint8_t rnd;
2210     struct timeval now, laststatsrv;
2211     struct timespec timeout;
2212     struct request *statsrvrq;
2213     struct clsrvconf *conf;
2214     
2215     conf = server->conf;
2216     
2217     if (server->dynamiclookuparg && !dynamicconfig(server)) {
2218         dynconffail = 1;
2219         goto errexit;
2220     }
2221     
2222     if (!conf->addrinfo && !resolvepeer(conf, 0)) {
2223         debug(DBG_WARN, "failed to resolve host %s port %s", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
2224         goto errexit;
2225     }
2226
2227     memset(&timeout, 0, sizeof(struct timespec));
2228     
2229     if (conf->statusserver) {
2230         gettimeofday(&server->lastrcv, NULL);
2231         gettimeofday(&laststatsrv, NULL);
2232     }
2233
2234     if (conf->pdef->connecter) {
2235         if (!conf->pdef->connecter(server, NULL, server->dynamiclookuparg ? 6 : 0, "clientwr"))
2236             goto errexit;
2237         server->connectionok = 1;
2238         if (pthread_create(&clientrdth, NULL, conf->pdef->clientconnreader, (void *)server)) {
2239             debug(DBG_ERR, "clientwr: pthread_create failed");
2240             goto errexit;
2241         }
2242     } else
2243         server->connectionok = 1;
2244     
2245     for (;;) {
2246         pthread_mutex_lock(&server->newrq_mutex);
2247         if (!server->newrq) {
2248             gettimeofday(&now, NULL);
2249             /* random 0-7 seconds */
2250             RAND_bytes(&rnd, 1);
2251             rnd /= 32;
2252             if (conf->statusserver) {
2253                 secs = server->lastrcv.tv_sec > laststatsrv.tv_sec ? server->lastrcv.tv_sec : laststatsrv.tv_sec;
2254                 if (now.tv_sec - secs > STATUS_SERVER_PERIOD)
2255                     secs = now.tv_sec;
2256                 if (!timeout.tv_sec || timeout.tv_sec > secs + STATUS_SERVER_PERIOD + rnd)
2257                     timeout.tv_sec = secs + STATUS_SERVER_PERIOD + rnd;
2258             } else {
2259                 if (!timeout.tv_sec || timeout.tv_sec > now.tv_sec + STATUS_SERVER_PERIOD + rnd)
2260                     timeout.tv_sec = now.tv_sec + STATUS_SERVER_PERIOD + rnd;
2261             }
2262 #if 0
2263             if (timeout.tv_sec > now.tv_sec)
2264                 debug(DBG_DBG, "clientwr: waiting up to %ld secs for new request", timeout.tv_sec - now.tv_sec);
2265 #endif      
2266             pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
2267             timeout.tv_sec = 0;
2268         }
2269         if (server->newrq) {
2270             debug(DBG_DBG, "clientwr: got new request");
2271             server->newrq = 0;
2272         }
2273 #if 0   
2274         else
2275             debug(DBG_DBG, "clientwr: request timer expired, processing request queue");
2276 #endif  
2277         pthread_mutex_unlock(&server->newrq_mutex);
2278
2279         for (i = 0; i < MAX_REQUESTS; i++) {
2280             if (server->clientrdgone) {
2281                 pthread_join(clientrdth, NULL);
2282                 goto errexit;
2283             }
2284
2285             for (; i < MAX_REQUESTS; i++) {
2286                 rqout = server->requests + i;
2287                 if (rqout->rq) {
2288                     pthread_mutex_lock(rqout->lock);
2289                     if (rqout->rq)
2290                         break;
2291                     pthread_mutex_unlock(rqout->lock);
2292                 }
2293             }
2294                 
2295             if (i == MAX_REQUESTS)
2296                 break;
2297
2298             gettimeofday(&now, NULL);
2299             if (now.tv_sec < rqout->expiry.tv_sec) {
2300                 if (!timeout.tv_sec || rqout->expiry.tv_sec < timeout.tv_sec)
2301                     timeout.tv_sec = rqout->expiry.tv_sec;
2302                 pthread_mutex_unlock(rqout->lock);
2303                 continue;
2304             }
2305
2306             if (rqout->tries == (*rqout->rq->buf == RAD_Status_Server ? 1 : conf->retrycount + 1)) {
2307                 debug(DBG_DBG, "clientwr: removing expired packet from queue");
2308                 if (conf->statusserver) {
2309                     if (*rqout->rq->buf == RAD_Status_Server) {
2310                         debug(DBG_WARN, "clientwr: no status server response, %s dead?", conf->host);
2311                         if (server->lostrqs < 255)
2312                             server->lostrqs++;
2313                     }
2314                 } else {
2315                     debug(DBG_WARN, "clientwr: no server response, %s dead?", conf->host);
2316                     if (server->lostrqs < 255)
2317                         server->lostrqs++;
2318                 }
2319                 freerqoutdata(rqout);
2320                 pthread_mutex_unlock(rqout->lock);
2321                 continue;
2322             }
2323
2324             rqout->expiry.tv_sec = now.tv_sec + conf->retryinterval;
2325             if (!timeout.tv_sec || rqout->expiry.tv_sec < timeout.tv_sec)
2326                 timeout.tv_sec = rqout->expiry.tv_sec;
2327             rqout->tries++;
2328             conf->pdef->clientradput(server, rqout->rq->buf);
2329             pthread_mutex_unlock(rqout->lock);
2330         }
2331         if (conf->statusserver && server->connectionok) {
2332             secs = server->lastrcv.tv_sec > laststatsrv.tv_sec ? server->lastrcv.tv_sec : laststatsrv.tv_sec;
2333             gettimeofday(&now, NULL);
2334             if (now.tv_sec - secs > STATUS_SERVER_PERIOD) {
2335                 laststatsrv = now;
2336                 statsrvrq = createstatsrvrq();
2337                 if (statsrvrq) {
2338                     statsrvrq->to = server;
2339                     debug(DBG_DBG, "clientwr: sending status server to %s", conf->host);
2340                     sendrq(statsrvrq);
2341                 }
2342             }
2343         }
2344     }
2345  errexit:
2346     conf->servers = NULL;
2347     if (server->dynamiclookuparg) {
2348         removeserversubrealms(realms, conf);
2349         if (dynconffail)
2350             free(conf);
2351         else
2352             freeclsrvconf(conf);
2353     }
2354     freeserver(server, 1);
2355     ERR_remove_state(0);
2356     return NULL;
2357 }
2358
2359 void createlistener(uint8_t type, char *arg) {
2360     pthread_t th;
2361     struct clsrvconf *listenres;
2362     struct addrinfo *res;
2363     int s = -1, on = 1, *sp = NULL;
2364     
2365     listenres = resolve_hostport(type, arg, protodefs[type].portdefault);
2366     if (!listenres)
2367         debugx(1, DBG_ERR, "createlistener: failed to resolve %s", arg);
2368     
2369     for (res = listenres->addrinfo; res; res = res->ai_next) {
2370         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
2371         if (s < 0) {
2372             debug(DBG_WARN, "createlistener: socket failed");
2373             continue;
2374         }
2375         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
2376 #ifdef IPV6_V6ONLY
2377         if (res->ai_family == AF_INET6)
2378             setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on));
2379 #endif          
2380         if (bind(s, res->ai_addr, res->ai_addrlen)) {
2381             debug(DBG_WARN, "createlistener: bind failed");
2382             close(s);
2383             s = -1;
2384             continue;
2385         }
2386
2387         sp = malloc(sizeof(int));
2388         if (!sp)
2389             debugx(1, DBG_ERR, "malloc failed");
2390         *sp = s;
2391         if (pthread_create(&th, NULL, protodefs[type].listener, (void *)sp))
2392             debugx(1, DBG_ERR, "pthread_create failed");
2393         pthread_detach(th);
2394     }
2395     if (!sp)
2396         debugx(1, DBG_ERR, "createlistener: socket/bind failed");
2397     
2398     debug(DBG_WARN, "createlistener: listening for %s on %s:%s", protodefs[type].name,
2399           listenres->host ? listenres->host : "*", listenres->port);
2400     freeclsrvres(listenres);
2401 }
2402
2403 void createlisteners(uint8_t type, char **args) {
2404     int i;
2405
2406     if (args)
2407         for (i = 0; args[i]; i++)
2408             createlistener(type, args[i]);
2409     else
2410         createlistener(type, NULL);
2411 }
2412
2413 #ifdef DEBUG
2414 void ssl_info_callback(const SSL *ssl, int where, int ret) {
2415     const char *s;
2416     int w;
2417
2418     w = where & ~SSL_ST_MASK;
2419
2420     if (w & SSL_ST_CONNECT)
2421         s = "SSL_connect";
2422     else if (w & SSL_ST_ACCEPT)
2423         s = "SSL_accept";
2424     else
2425         s = "undefined";
2426
2427     if (where & SSL_CB_LOOP)
2428         debug(DBG_DBG, "%s:%s\n", s, SSL_state_string_long(ssl));
2429     else if (where & SSL_CB_ALERT) {
2430         s = (where & SSL_CB_READ) ? "read" : "write";
2431         debug(DBG_DBG, "SSL3 alert %s:%s:%s\n", s, SSL_alert_type_string_long(ret), SSL_alert_desc_string_long(ret));
2432     }
2433     else if (where & SSL_CB_EXIT) {
2434         if (ret == 0)
2435             debug(DBG_DBG, "%s:failed in %s\n", s, SSL_state_string_long(ssl));
2436         else if (ret < 0)
2437             debug(DBG_DBG, "%s:error in %s\n", s, SSL_state_string_long(ssl));
2438     }
2439 }
2440 #endif
2441
2442 void tlsinit() {
2443     int i;
2444     time_t t;
2445     pid_t pid;
2446     
2447     ssl_locks = calloc(CRYPTO_num_locks(), sizeof(pthread_mutex_t));
2448     ssl_lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
2449     for (i = 0; i < CRYPTO_num_locks(); i++) {
2450         ssl_lock_count[i] = 0;
2451         pthread_mutex_init(&ssl_locks[i], NULL);
2452     }
2453     CRYPTO_set_id_callback(ssl_thread_id);
2454     CRYPTO_set_locking_callback(ssl_locking_callback);
2455
2456     SSL_load_error_strings();
2457     SSL_library_init();
2458
2459     while (!RAND_status()) {
2460         t = time(NULL);
2461         pid = getpid();
2462         RAND_seed((unsigned char *)&t, sizeof(time_t));
2463         RAND_seed((unsigned char *)&pid, sizeof(pid));
2464     }
2465 }
2466
2467 X509_VERIFY_PARAM *createverifyparams(char **poids) {
2468     X509_VERIFY_PARAM *pm;
2469     ASN1_OBJECT *pobject;
2470     int i;
2471     
2472     pm = X509_VERIFY_PARAM_new();
2473     if (!pm)
2474         return NULL;
2475     
2476     for (i = 0; poids[i]; i++) {
2477         pobject = OBJ_txt2obj(poids[i], 0);
2478         if (!pobject) {
2479             X509_VERIFY_PARAM_free(pm);
2480             return NULL;
2481         }
2482         X509_VERIFY_PARAM_add0_policy(pm, pobject);
2483     }
2484
2485     X509_VERIFY_PARAM_set_flags(pm, X509_V_FLAG_POLICY_CHECK | X509_V_FLAG_EXPLICIT_POLICY);
2486     return pm;
2487 }
2488
2489 int tlsaddcacrl(SSL_CTX *ctx, struct tls *conf) {
2490     STACK_OF(X509_NAME) *calist;
2491     X509_STORE *x509_s;
2492     unsigned long error;
2493
2494     if (!SSL_CTX_load_verify_locations(ctx, conf->cacertfile, conf->cacertpath)) {
2495         while ((error = ERR_get_error()))
2496             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2497         debug(DBG_ERR, "tlsaddcacrl: Error updating TLS context %s", conf->name);
2498         return 0;
2499     }
2500
2501     calist = conf->cacertfile ? SSL_load_client_CA_file(conf->cacertfile) : NULL;
2502     if (!conf->cacertfile || calist) {
2503         if (conf->cacertpath) {
2504             if (!calist)
2505                 calist = sk_X509_NAME_new_null();
2506             if (!SSL_add_dir_cert_subjects_to_stack(calist, conf->cacertpath)) {
2507                 sk_X509_NAME_free(calist);
2508                 calist = NULL;
2509             }
2510         }
2511     }
2512     if (!calist) {
2513         while ((error = ERR_get_error()))
2514             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2515         debug(DBG_ERR, "tlsaddcacrl: Error adding CA subjects in TLS context %s", conf->name);
2516         return 0;
2517     }
2518     ERR_clear_error(); /* add_dir_cert_subj returns errors on success */
2519     SSL_CTX_set_client_CA_list(ctx, calist);
2520
2521     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
2522     SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
2523
2524     if (conf->crlcheck || conf->vpm) {
2525         x509_s = SSL_CTX_get_cert_store(ctx);
2526         if (conf->crlcheck)
2527             X509_STORE_set_flags(x509_s, X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
2528         if (conf->vpm)
2529             X509_STORE_set1_param(x509_s, conf->vpm);
2530     }
2531
2532     debug(DBG_DBG, "tlsaddcacrl: updated TLS context %s", conf->name);
2533     return 1;
2534 }
2535
2536 SSL_CTX *tlscreatectx(uint8_t type, struct tls *conf) {
2537     SSL_CTX *ctx = NULL;
2538     unsigned long error;
2539
2540     if (!ssl_locks)
2541         tlsinit();
2542
2543     switch (type) {
2544     case RAD_TLS:
2545         ctx = SSL_CTX_new(TLSv1_method());
2546 #ifdef DEBUG    
2547         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
2548 #endif  
2549         break;
2550     case RAD_DTLS:
2551         ctx = SSL_CTX_new(DTLSv1_method());
2552 #ifdef DEBUG    
2553         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
2554 #endif  
2555         SSL_CTX_set_read_ahead(ctx, 1);
2556         break;
2557     }
2558     if (!ctx) {
2559         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
2560         return NULL;
2561     }
2562     
2563     if (conf->certkeypwd) {
2564         SSL_CTX_set_default_passwd_cb_userdata(ctx, conf->certkeypwd);
2565         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
2566     }
2567     if (!SSL_CTX_use_certificate_chain_file(ctx, conf->certfile) ||
2568         !SSL_CTX_use_PrivateKey_file(ctx, conf->certkeyfile, SSL_FILETYPE_PEM) ||
2569         !SSL_CTX_check_private_key(ctx)) {
2570         while ((error = ERR_get_error()))
2571             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2572         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
2573         SSL_CTX_free(ctx);
2574         return NULL;
2575     }
2576
2577     if (conf->policyoids) {
2578         if (!conf->vpm) {
2579             conf->vpm = createverifyparams(conf->policyoids);
2580             if (!conf->vpm) {
2581                 debug(DBG_ERR, "tlsaddcacrl: Failed to add policyOIDs in TLS context %s", conf->name);
2582                 SSL_CTX_free(ctx);
2583                 return NULL;
2584             }
2585         }
2586     }
2587
2588     if (!tlsaddcacrl(ctx, conf)) {
2589         if (conf->vpm) {
2590             X509_VERIFY_PARAM_free(conf->vpm);
2591             conf->vpm = NULL;
2592         }
2593         SSL_CTX_free(ctx);
2594         return NULL;
2595     }
2596
2597     debug(DBG_DBG, "tlscreatectx: created TLS context %s", conf->name);
2598     return ctx;
2599 }
2600
2601 struct tls *tlsgettls(char *alt1, char *alt2) {
2602     struct tls *t;
2603
2604     t = hash_read(tlsconfs, alt1, strlen(alt1));
2605     if (!t)
2606         t = hash_read(tlsconfs, alt2, strlen(alt2));
2607     return t;
2608 }
2609
2610 SSL_CTX *tlsgetctx(uint8_t type, struct tls *t) {
2611     struct timeval now;
2612     
2613     if (!t)
2614         return NULL;
2615     gettimeofday(&now, NULL);
2616     
2617     switch (type) {
2618     case RAD_TLS:
2619         if (t->tlsexpiry && t->tlsctx) {
2620             if (t->tlsexpiry < now.tv_sec) {
2621                 t->tlsexpiry = now.tv_sec + t->cacheexpiry;
2622                 tlsaddcacrl(t->tlsctx, t);
2623             }
2624         }
2625         if (!t->tlsctx) {
2626             t->tlsctx = tlscreatectx(RAD_TLS, t);
2627             if (t->cacheexpiry)
2628                 t->tlsexpiry = now.tv_sec + t->cacheexpiry;
2629         }
2630         return t->tlsctx;
2631     case RAD_DTLS:
2632         if (t->dtlsexpiry && t->dtlsctx) {
2633             if (t->dtlsexpiry < now.tv_sec) {
2634                 t->dtlsexpiry = now.tv_sec + t->cacheexpiry;
2635                 tlsaddcacrl(t->dtlsctx, t);
2636             }
2637         }
2638         if (!t->dtlsctx) {
2639             t->dtlsctx = tlscreatectx(RAD_DTLS, t);
2640             if (t->cacheexpiry)
2641                 t->dtlsexpiry = now.tv_sec + t->cacheexpiry;
2642         }
2643         return t->dtlsctx;
2644     }
2645     return NULL;
2646 }
2647
2648 struct list *addsrvconfs(char *value, char **names) {
2649     struct list *conflist;
2650     int n;
2651     struct list_node *entry;
2652     struct clsrvconf *conf = NULL;
2653     
2654     if (!names || !*names)
2655         return NULL;
2656     
2657     conflist = list_create();
2658     if (!conflist) {
2659         debug(DBG_ERR, "malloc failed");
2660         return NULL;
2661     }
2662
2663     for (n = 0; names[n]; n++) {
2664         for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2665             conf = (struct clsrvconf *)entry->data;
2666             if (!strcasecmp(names[n], conf->name))
2667                 break;
2668         }
2669         if (!entry) {
2670             debug(DBG_ERR, "addsrvconfs failed for realm %s, no server named %s", value, names[n]);
2671             list_destroy(conflist);
2672             return NULL;
2673         }
2674         if (!list_push(conflist, conf)) {
2675             debug(DBG_ERR, "malloc failed");
2676             list_destroy(conflist);
2677             return NULL;
2678         }
2679         debug(DBG_DBG, "addsrvconfs: added server %s for realm %s", conf->name, value);
2680     }
2681     return conflist;
2682 }
2683
2684 void freerealm(struct realm *realm) {
2685     if (!realm)
2686         return;
2687     debug(DBG_DBG, "freerealm: called with refcount %d", realm->refcount);
2688     if (--realm->refcount)
2689         return;
2690
2691     free(realm->name);
2692     free(realm->message);
2693     regfree(&realm->regex);
2694     pthread_mutex_destroy(&realm->mutex);
2695     /* if refcount == 0, all subrealms gone */
2696     list_destroy(realm->subrealms);
2697     /* if refcount == 0, all srvconfs gone */
2698     list_destroy(realm->srvconfs);
2699     /* if refcount == 0, all accsrvconfs gone */
2700     list_destroy(realm->accsrvconfs);
2701     freerealm(realm->parent);
2702     free(realm);
2703 }
2704
2705 struct realm *addrealm(struct list *realmlist, char *value, char **servers, char **accservers, char *message, uint8_t accresp) {
2706     int n;
2707     struct realm *realm;
2708     char *s, *regex = NULL;
2709     
2710     if (*value == '/') {
2711         /* regexp, remove optional trailing / if present */
2712         if (value[strlen(value) - 1] == '/')
2713             value[strlen(value) - 1] = '\0';
2714     } else {
2715         /* not a regexp, let us make it one */
2716         if (*value == '*' && !value[1])
2717             regex = stringcopy(".*", 0);
2718         else {
2719             for (n = 0, s = value; *s;)
2720                 if (*s++ == '.')
2721                     n++;
2722             regex = malloc(strlen(value) + n + 3);
2723             if (regex) {
2724                 regex[0] = '@';
2725                 for (n = 1, s = value; *s; s++) {
2726                     if (*s == '.')
2727                         regex[n++] = '\\';
2728                     regex[n++] = *s;
2729                 }
2730                 regex[n++] = '$';
2731                 regex[n] = '\0';
2732             }
2733         }
2734         if (!regex) {
2735             debug(DBG_ERR, "malloc failed");
2736             realm = NULL;
2737             goto exit;
2738         }
2739         debug(DBG_DBG, "addrealm: constructed regexp %s from %s", regex, value);
2740     }
2741
2742     realm = malloc(sizeof(struct realm));
2743     if (!realm) {
2744         debug(DBG_ERR, "malloc failed");
2745         goto exit;
2746     }
2747     memset(realm, 0, sizeof(struct realm));
2748     
2749     if (pthread_mutex_init(&realm->mutex, NULL)) {
2750         debug(DBG_ERR, "mutex init failed");
2751         free(realm);
2752         realm = NULL;
2753         goto exit;
2754     }
2755
2756     realm->name = stringcopy(value, 0);
2757     if (!realm->name) {
2758         debug(DBG_ERR, "malloc failed");
2759         goto errexit;
2760     }
2761     if (message && strlen(message) > 253) {
2762         debug(DBG_ERR, "ReplyMessage can be at most 253 bytes");
2763         goto errexit;
2764     }
2765     realm->message = message;
2766     realm->accresp = accresp;
2767     
2768     if (regcomp(&realm->regex, regex ? regex : value + 1, REG_EXTENDED | REG_ICASE | REG_NOSUB)) {
2769         debug(DBG_ERR, "addrealm: failed to compile regular expression %s", regex ? regex : value + 1);
2770         goto errexit;
2771     }
2772     
2773     if (servers && *servers) {
2774         realm->srvconfs = addsrvconfs(value, servers);
2775         if (!realm->srvconfs)
2776             goto errexit;
2777     }
2778     
2779     if (accservers && *accservers) {
2780         realm->accsrvconfs = addsrvconfs(value, accservers);
2781         if (!realm->accsrvconfs)
2782             goto errexit;
2783     }
2784
2785     if (!list_push(realmlist, realm)) {
2786         debug(DBG_ERR, "malloc failed");
2787         pthread_mutex_destroy(&realm->mutex);
2788         goto errexit;
2789     }
2790     
2791     debug(DBG_DBG, "addrealm: added realm %s", value);
2792     goto exit;
2793
2794  errexit:
2795     while (list_shift(realm->srvconfs));
2796     while (list_shift(realm->accsrvconfs));
2797     freerealm(realm);
2798     realm = NULL;
2799  exit:
2800     free(regex);
2801     if (servers) {
2802         if (realm)
2803             for (n = 0; servers[n]; n++)
2804                 newrealmref(realm);
2805         freegconfmstr(servers);
2806     }
2807     if (accservers) {
2808         if (realm)
2809             for (n = 0; accservers[n]; n++)
2810                 newrealmref(realm);
2811         freegconfmstr(accservers);
2812     }
2813     return newrealmref(realm);
2814 }
2815
2816 struct realm *adddynamicrealmserver(struct realm *realm, struct clsrvconf *conf, char *id) {
2817     struct clsrvconf *srvconf;
2818     struct realm *newrealm = NULL;
2819     char *realmname, *s;
2820     pthread_t clientth;
2821     
2822     if (!conf->dynamiclookupcommand)
2823         return NULL;
2824
2825     /* create dynamic for the realm (string after last @, exit if nothing after @ */
2826     realmname = strrchr(id, '@');
2827     if (!realmname)
2828         return NULL;
2829     realmname++;
2830     if (!*realmname)
2831         return NULL;
2832     for (s = realmname; *s; s++)
2833         if (*s != '.' && *s != '-' && !isalnum((int)*s))
2834             return NULL;
2835     
2836     srvconf = malloc(sizeof(struct clsrvconf));
2837     if (!srvconf) {
2838         debug(DBG_ERR, "malloc failed");
2839         return NULL;
2840     }
2841     *srvconf = *conf;
2842     if (!addserver(srvconf))
2843         goto errexit;
2844
2845     if (!realm->subrealms)
2846         realm->subrealms = list_create();
2847     if (!realm->subrealms)
2848         goto errexit;
2849     newrealm = addrealm(realm->subrealms, realmname, NULL, NULL, NULL, 0);
2850     if (!newrealm)
2851         goto errexit;
2852     newrealm->parent = newrealmref(realm);
2853     
2854     /* add server and accserver to newrealm */
2855     newrealm->srvconfs = list_create();
2856     if (!newrealm->srvconfs || !list_push(newrealm->srvconfs, srvconf)) {
2857         debug(DBG_ERR, "malloc failed");
2858         goto errexit;
2859     }
2860     newrealmref(newrealm);
2861     newrealm->accsrvconfs = list_create();
2862     if (!newrealm->accsrvconfs || !list_push(newrealm->accsrvconfs, srvconf)) {
2863         debug(DBG_ERR, "malloc failed");
2864         list_shift(realm->srvconfs);
2865         freerealm(newrealm);
2866         goto errexit;
2867     }
2868     newrealmref(newrealm);
2869
2870     srvconf->servers->dynamiclookuparg = stringcopy(realmname, 0);
2871     if (pthread_create(&clientth, NULL, clientwr, (void *)(srvconf->servers))) {
2872         debug(DBG_ERR, "pthread_create failed");
2873         list_shift(realm->srvconfs);
2874         freerealm(newrealm);
2875         list_shift(realm->accsrvconfs);
2876         freerealm(newrealm);
2877         goto errexit;
2878     }
2879     pthread_detach(clientth);
2880     return newrealm;
2881     
2882  errexit:
2883     if (newrealm) {
2884         list_removedata(realm->subrealms, newrealm);
2885         freerealm(newrealm);
2886         if (!list_first(realm->subrealms)) {
2887             list_destroy(realm->subrealms);
2888             realm->subrealms = NULL;
2889         }
2890     }
2891     freeserver(srvconf->servers, 1);
2892     free(srvconf);
2893     debug(DBG_ERR, "failed to create dynamic server");
2894     return NULL;
2895 }
2896
2897 int dynamicconfig(struct server *server) {
2898     int ok, fd[2], status;
2899     pid_t pid;
2900     struct clsrvconf *conf = server->conf;
2901     struct gconffile *cf = NULL;
2902     
2903     /* for now we only learn hostname/address */
2904     debug(DBG_DBG, "dynamicconfig: need dynamic server config for %s", server->dynamiclookuparg);
2905
2906     if (pipe(fd) > 0) {
2907         debug(DBG_ERR, "dynamicconfig: pipe error");
2908         goto errexit;
2909     }
2910     pid = fork();
2911     if (pid < 0) {
2912         debug(DBG_ERR, "dynamicconfig: fork error");
2913         close(fd[0]);
2914         close(fd[1]);
2915         goto errexit;
2916     } else if (pid == 0) {
2917         /* child */
2918         close(fd[0]);
2919         if (fd[1] != STDOUT_FILENO) {
2920             if (dup2(fd[1], STDOUT_FILENO) != STDOUT_FILENO)
2921                 debugx(1, DBG_ERR, "dynamicconfig: dup2 error for command %s", conf->dynamiclookupcommand);
2922             close(fd[1]);
2923         }
2924         if (execlp(conf->dynamiclookupcommand, conf->dynamiclookupcommand, server->dynamiclookuparg, NULL) < 0)
2925             debugx(1, DBG_ERR, "dynamicconfig: exec error for command %s", conf->dynamiclookupcommand);
2926     }
2927
2928     close(fd[1]);
2929     pushgconffile(&cf, fdopen(fd[0], "r"), conf->dynamiclookupcommand);
2930     ok = getgenericconfig(&cf, NULL,
2931                           "Server", CONF_CBK, confserver_cb, (void *)conf,
2932                           NULL
2933                           );
2934     freegconf(&cf);
2935         
2936     if (waitpid(pid, &status, 0) < 0) {
2937         debug(DBG_ERR, "dynamicconfig: wait error");
2938         goto errexit;
2939     }
2940     
2941     if (status) {
2942         debug(DBG_INFO, "dynamicconfig: command exited with status %d", WEXITSTATUS(status));
2943         goto errexit;
2944     }
2945
2946     if (ok)
2947         return 1;
2948
2949  errexit:    
2950     debug(DBG_WARN, "dynamicconfig: failed to obtain dynamic server config");
2951     return 0;
2952 }
2953
2954 int addmatchcertattr(struct clsrvconf *conf) {
2955     char *v;
2956     regex_t **r;
2957     
2958     if (!strncasecmp(conf->matchcertattr, "CN:/", 4)) {
2959         r = &conf->certcnregex;
2960         v = conf->matchcertattr + 4;
2961     } else if (!strncasecmp(conf->matchcertattr, "SubjectAltName:URI:/", 20)) {
2962         r = &conf->certuriregex;
2963         v = conf->matchcertattr + 20;
2964     } else
2965         return 0;
2966     if (!*v)
2967         return 0;
2968     /* regexp, remove optional trailing / if present */
2969     if (v[strlen(v) - 1] == '/')
2970         v[strlen(v) - 1] = '\0';
2971     if (!*v)
2972         return 0;
2973
2974     *r = malloc(sizeof(regex_t));
2975     if (!*r) {
2976         debug(DBG_ERR, "malloc failed");
2977         return 0;
2978     }
2979     if (regcomp(*r, v, REG_EXTENDED | REG_ICASE | REG_NOSUB)) {
2980         free(*r);
2981         *r = NULL;
2982         debug(DBG_ERR, "failed to compile regular expression %s", v);
2983         return 0;
2984     }
2985     return 1;
2986 }
2987
2988 /* should accept both names and numeric values, only numeric right now */
2989 uint8_t attrname2val(char *attrname) {
2990     int val = 0;
2991     
2992     val = atoi(attrname);
2993     return val > 0 && val < 256 ? val : 0;
2994 }
2995
2996 /* should accept both names and numeric values, only numeric right now */
2997 int vattrname2val(char *attrname, uint32_t *vendor, uint32_t *type) {
2998     char *s;
2999     
3000     *vendor = atoi(attrname);
3001     s = strchr(attrname, ':');
3002     if (!s) {
3003         *type = -1;
3004         return 1;
3005     }
3006     *type = atoi(s + 1);
3007     return *type >= 0 && *type < 256;
3008 }
3009
3010 /* should accept both names and numeric values, only numeric right now */
3011 struct tlv *extractattr(char *nameval) {
3012     int len, name = 0;
3013     char *s;
3014     struct tlv *a;
3015     
3016     s = strchr(nameval, ':');
3017     name = atoi(nameval);
3018     if (!s || name < 1 || name > 255)
3019         return NULL;
3020     len = strlen(s + 1);
3021     if (len > 253)
3022         return NULL;
3023     a = malloc(sizeof(struct tlv));
3024     if (!a)
3025         return NULL;
3026     a->v = (uint8_t *)stringcopy(s + 1, 0);
3027     if (!a->v) {
3028         free(a);
3029         return NULL;
3030     }
3031     a->t = name;
3032     a->l = len;
3033     return a;
3034 }
3035
3036 /* should accept both names and numeric values, only numeric right now */
3037 struct modattr *extractmodattr(char *nameval) {
3038     int name = 0;
3039     char *s, *t;
3040     struct modattr *m;
3041
3042     if (!strncasecmp(nameval, "User-Name:/", 11)) {
3043         s = nameval + 11;
3044         name = 1;
3045     } else {
3046         s = strchr(nameval, ':');
3047         name = atoi(nameval);
3048         if (!s || name < 1 || name > 255 || s[1] != '/')
3049             return NULL;
3050         s += 2;
3051     }
3052     /* regexp, remove optional trailing / if present */
3053     if (s[strlen(s) - 1] == '/')
3054         s[strlen(s) - 1] = '\0';
3055
3056     t = strchr(s, '/');
3057     if (!t)
3058         return NULL;
3059     *t = '\0';
3060     t++;
3061
3062     m = malloc(sizeof(struct modattr));
3063     if (!m) {
3064         debug(DBG_ERR, "malloc failed");
3065         return NULL;
3066     }
3067     m->t = name;
3068
3069     m->replacement = stringcopy(t, 0);
3070     if (!m->replacement) {
3071         free(m);
3072         debug(DBG_ERR, "malloc failed");
3073         return NULL;
3074     }
3075         
3076     m->regex = malloc(sizeof(regex_t));
3077     if (!m->regex) {
3078         free(m->replacement);
3079         free(m);
3080         debug(DBG_ERR, "malloc failed");
3081         return NULL;
3082     }
3083     
3084     if (regcomp(m->regex, s, REG_ICASE | REG_EXTENDED)) {
3085         free(m->regex);
3086         free(m->replacement);
3087         free(m);
3088         debug(DBG_ERR, "failed to compile regular expression %s", s);
3089         return NULL;
3090     }
3091
3092     return m;
3093 }
3094
3095 struct rewrite *getrewrite(char *alt1, char *alt2) {
3096     struct rewrite *r;
3097
3098     if ((r = hash_read(rewriteconfs,  alt1, strlen(alt1))))
3099         return r;
3100     if ((r = hash_read(rewriteconfs,  alt2, strlen(alt2))))
3101         return r;
3102     return NULL;
3103 }
3104
3105 void addrewrite(char *value, char **rmattrs, char **rmvattrs, char **addattrs, char **modattrs) {
3106     struct rewrite *rewrite = NULL;
3107     int i, n;
3108     uint8_t *rma = NULL;
3109     uint32_t *p, *rmva = NULL;
3110     struct list *adda = NULL, *moda = NULL;
3111     struct tlv *a;
3112     struct modattr *m;
3113     
3114     if (rmattrs) {
3115         for (n = 0; rmattrs[n]; n++);
3116         rma = calloc(n + 1, sizeof(uint8_t));
3117         if (!rma)
3118             debugx(1, DBG_ERR, "malloc failed");
3119     
3120         for (i = 0; i < n; i++)
3121             if (!(rma[i] = attrname2val(rmattrs[i])))
3122                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", rmattrs[i]);
3123         freegconfmstr(rmattrs);
3124         rma[i] = 0;
3125     }
3126     
3127     if (rmvattrs) {
3128         for (n = 0; rmvattrs[n]; n++);
3129         rmva = calloc(2 * n + 1, sizeof(uint32_t));
3130         if (!rmva)
3131             debugx(1, DBG_ERR, "malloc failed");
3132     
3133         for (p = rmva, i = 0; i < n; i++, p += 2)
3134             if (!vattrname2val(rmvattrs[i], p, p + 1))
3135                 debugx(1, DBG_ERR, "addrewrite: invalid vendor attribute %s", rmvattrs[i]);
3136         freegconfmstr(rmvattrs);
3137         *p = 0;
3138     }
3139     
3140     if (addattrs) {
3141         adda = list_create();
3142         if (!adda)
3143             debugx(1, DBG_ERR, "malloc failed");
3144         for (i = 0; addattrs[i]; i++) {
3145             a = extractattr(addattrs[i]);
3146             if (!a)
3147                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", addattrs[i]);
3148             if (!list_push(adda, a))
3149                 debugx(1, DBG_ERR, "malloc failed");
3150         }
3151         freegconfmstr(addattrs);
3152     }
3153
3154     if (modattrs) {
3155         moda = list_create();
3156         if (!moda)
3157             debugx(1, DBG_ERR, "malloc failed");
3158         for (i = 0; modattrs[i]; i++) {
3159             m = extractmodattr(modattrs[i]);
3160             if (!m)
3161                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", modattrs[i]);
3162             if (!list_push(moda, m))
3163                 debugx(1, DBG_ERR, "malloc failed");
3164         }
3165         freegconfmstr(modattrs);
3166     }
3167         
3168     if (rma || rmva || adda || moda) {
3169         rewrite = malloc(sizeof(struct rewrite));
3170         if (!rewrite)
3171             debugx(1, DBG_ERR, "malloc failed");
3172         rewrite->removeattrs = rma;
3173         rewrite->removevendorattrs = rmva;
3174         rewrite->addattrs = adda;
3175         rewrite->modattrs = moda;
3176     }
3177     
3178     if (!hash_insert(rewriteconfs, value, strlen(value), rewrite))
3179         debugx(1, DBG_ERR, "malloc failed");
3180     debug(DBG_DBG, "addrewrite: added rewrite block %s", value);
3181 }
3182
3183 int setttlattr(struct options *opts, char *defaultattr) {
3184     char *ttlattr = opts->ttlattr ? opts->ttlattr : defaultattr;
3185      
3186     if (vattrname2val(ttlattr, opts->ttlattrtype, opts->ttlattrtype + 1) &&
3187         (opts->ttlattrtype[1] != -1 || opts->ttlattrtype[0] < 256))
3188         return 1;
3189     debug(DBG_ERR, "setttlattr: invalid TTLAttribute value %s", ttlattr);
3190     return 0;
3191 }
3192
3193 void freeclsrvconf(struct clsrvconf *conf) {
3194     free(conf->name);
3195     free(conf->host);
3196     free(conf->port);
3197     free(conf->secret);
3198     free(conf->tls);
3199     free(conf->matchcertattr);
3200     if (conf->certcnregex)
3201         regfree(conf->certcnregex);
3202     if (conf->certuriregex)
3203         regfree(conf->certuriregex);
3204     free(conf->confrewritein);
3205     free(conf->confrewriteout);
3206     if (conf->rewriteusername) {
3207         if (conf->rewriteusername->regex)
3208             regfree(conf->rewriteusername->regex);
3209         free(conf->rewriteusername->replacement);
3210         free(conf->rewriteusername);
3211     }
3212     free(conf->dynamiclookupcommand);
3213     free(conf->rewritein);
3214     free(conf->rewriteout);
3215     if (conf->addrinfo)
3216         freeaddrinfo(conf->addrinfo);
3217     if (conf->lock) {
3218         pthread_mutex_destroy(conf->lock);
3219         free(conf->lock);
3220     }
3221     /* not touching ssl_ctx, clients and servers */
3222     free(conf);
3223 }
3224
3225 int mergeconfstring(char **dst, char **src) {
3226     char *t;
3227     
3228     if (*src) {
3229         *dst = *src;
3230         *src = NULL;
3231         return 1;
3232     }
3233     if (*dst) {
3234         t = stringcopy(*dst, 0);
3235         if (!t) {
3236             debug(DBG_ERR, "malloc failed");
3237             return 0;
3238         }
3239         *dst = t;
3240     }
3241     return 1;
3242 }
3243
3244 /* assumes dst is a shallow copy */
3245 int mergesrvconf(struct clsrvconf *dst, struct clsrvconf *src) {
3246     if (!mergeconfstring(&dst->name, &src->name) ||
3247         !mergeconfstring(&dst->host, &src->host) ||
3248         !mergeconfstring(&dst->port, &src->port) ||
3249         !mergeconfstring(&dst->secret, &src->secret) ||
3250         !mergeconfstring(&dst->tls, &src->tls) ||
3251         !mergeconfstring(&dst->matchcertattr, &src->matchcertattr) ||
3252         !mergeconfstring(&dst->confrewritein, &src->confrewritein) ||
3253         !mergeconfstring(&dst->confrewriteout, &src->confrewriteout) ||
3254         !mergeconfstring(&dst->dynamiclookupcommand, &src->dynamiclookupcommand))
3255         return 0;
3256     if (src->pdef)
3257         dst->pdef = src->pdef;
3258     dst->statusserver = src->statusserver;
3259     dst->certnamecheck = src->certnamecheck;
3260     if (src->retryinterval != 255)
3261         dst->retryinterval = src->retryinterval;
3262     if (src->retrycount != 255)
3263         dst->retrycount = src->retrycount;
3264     return 1;
3265 }
3266
3267 int confclient_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3268     struct clsrvconf *conf;
3269     char *conftype = NULL, *rewriteinalias = NULL;
3270     long int dupinterval = LONG_MIN;
3271     
3272     debug(DBG_DBG, "confclient_cb called for %s", block);
3273
3274     conf = malloc(sizeof(struct clsrvconf));
3275     if (!conf)
3276         debugx(1, DBG_ERR, "malloc failed");
3277     memset(conf, 0, sizeof(struct clsrvconf));
3278     conf->certnamecheck = 1;
3279     
3280     if (!getgenericconfig(cf, block,
3281                      "type", CONF_STR, &conftype,
3282                      "host", CONF_STR, &conf->host,
3283                      "secret", CONF_STR, &conf->secret,
3284                      "tls", CONF_STR, &conf->tls,
3285                      "matchcertificateattribute", CONF_STR, &conf->matchcertattr,
3286                      "CertificateNameCheck", CONF_BLN, &conf->certnamecheck,
3287                      "DuplicateInterval", CONF_LINT, &dupinterval,
3288                      "rewrite", CONF_STR, &rewriteinalias,
3289                      "rewriteIn", CONF_STR, &conf->confrewritein,
3290                      "rewriteOut", CONF_STR, &conf->confrewriteout,
3291                      "rewriteattribute", CONF_STR, &conf->confrewriteusername,
3292                      NULL
3293                           ))
3294         debugx(1, DBG_ERR, "configuration error");
3295     
3296     conf->name = stringcopy(val, 0);
3297     if (!conf->host)
3298         conf->host = stringcopy(val, 0);
3299     if (!conf->name || !conf->host)
3300         debugx(1, DBG_ERR, "malloc failed");
3301         
3302     if (!conftype)
3303         debugx(1, DBG_ERR, "error in block %s, option type missing", block);
3304     conf->type = protoname2int(conftype);
3305     conf->pdef = &protodefs[conf->type];
3306     if (!conf->pdef->name)
3307         debugx(1, DBG_ERR, "error in block %s, unknown transport %s", block, conftype);
3308     free(conftype);
3309     
3310     if (conf->type == RAD_TLS || conf->type == RAD_DTLS) {
3311         conf->tlsconf = conf->tls ? tlsgettls(conf->tls, NULL) : tlsgettls("defaultclient", "default");
3312         if (!conf->tlsconf)
3313             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
3314         if (conf->matchcertattr && !addmatchcertattr(conf))
3315             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
3316     }
3317     
3318     if (dupinterval != LONG_MIN) {
3319         if (dupinterval < 0 || dupinterval > 255)
3320             debugx(1, DBG_ERR, "error in block %s, value of option DuplicateInterval is %d, must be 0-255", block, dupinterval);
3321         conf->dupinterval = (uint8_t)dupinterval;
3322     } else
3323         conf->dupinterval = conf->pdef->duplicateintervaldefault;
3324     
3325     if (!conf->confrewritein)
3326         conf->confrewritein = rewriteinalias;
3327     else
3328         free(rewriteinalias);
3329     conf->rewritein = conf->confrewritein ? getrewrite(conf->confrewritein, NULL) : getrewrite("defaultclient", "default");
3330     if (conf->confrewriteout)
3331         conf->rewriteout = getrewrite(conf->confrewriteout, NULL);
3332     
3333     if (conf->confrewriteusername) {
3334         conf->rewriteusername = extractmodattr(conf->confrewriteusername);
3335         if (!conf->rewriteusername)
3336             debugx(1, DBG_ERR, "error in block %s, invalid RewriteAttributeValue", block);
3337     }
3338     
3339     if (!resolvepeer(conf, 0))
3340         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
3341     
3342     if (!conf->secret) {
3343         if (!conf->pdef->secretdefault)
3344             debugx(1, DBG_ERR, "error in block %s, secret must be specified for transport type %s", block, conf->pdef->name);
3345         conf->secret = stringcopy(conf->pdef->secretdefault, 0);
3346         if (!conf->secret)
3347             debugx(1, DBG_ERR, "malloc failed");
3348     }
3349
3350     conf->lock = malloc(sizeof(pthread_mutex_t));
3351     if (!conf->lock)
3352         debugx(1, DBG_ERR, "malloc failed");
3353
3354     pthread_mutex_init(conf->lock, NULL);
3355     if (!list_push(clconfs, conf))
3356         debugx(1, DBG_ERR, "malloc failed");
3357     return 1;
3358 }
3359
3360 int compileserverconfig(struct clsrvconf *conf, const char *block) {
3361     if (conf->type == RAD_TLS || conf->type == RAD_DTLS) {
3362         conf->tlsconf = conf->tls ? tlsgettls(conf->tls, NULL) : tlsgettls("defaultserver", "default");
3363         if (!conf->tlsconf) {
3364             debug(DBG_ERR, "error in block %s, no tls context defined", block);
3365             return 0;
3366         }
3367         if (conf->matchcertattr && !addmatchcertattr(conf)) {
3368             debug(DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
3369             return 0;
3370         }
3371     }
3372
3373     if (!conf->port) {
3374         conf->port = stringcopy(conf->pdef->portdefault, 0);
3375         if (!conf->port) {
3376             debug(DBG_ERR, "malloc failed");
3377             return 0;
3378         }
3379     }
3380     
3381     if (conf->retryinterval == 255)
3382         conf->retryinterval = protodefs[conf->type].retryintervaldefault;
3383     if (conf->retrycount == 255)
3384         conf->retrycount = protodefs[conf->type].retrycountdefault;
3385     
3386     conf->rewritein = conf->confrewritein ? getrewrite(conf->confrewritein, NULL) : getrewrite("defaultserver", "default");
3387     if (conf->confrewriteout)
3388         conf->rewriteout = getrewrite(conf->confrewriteout, NULL);
3389
3390     if (!conf->secret) {
3391         if (!conf->pdef->secretdefault) {
3392             debug(DBG_ERR, "error in block %s, secret must be specified for transport type %s", block, conf->pdef->name);
3393             return 0;
3394         }
3395         conf->secret = stringcopy(conf->pdef->secretdefault, 0);
3396         if (!conf->secret) {
3397             debug(DBG_ERR, "malloc failed");
3398             return 0;
3399         }
3400     }
3401     
3402     if (!conf->dynamiclookupcommand && !resolvepeer(conf, 0)) {
3403         debug(DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
3404         return 0;
3405     }
3406     return 1;
3407 }
3408                         
3409 int confserver_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3410     struct clsrvconf *conf, *resconf;
3411     char *conftype = NULL, *rewriteinalias = NULL;
3412     long int retryinterval = LONG_MIN, retrycount = LONG_MIN;
3413     
3414     debug(DBG_DBG, "confserver_cb called for %s", block);
3415
3416     conf = malloc(sizeof(struct clsrvconf));
3417     if (!conf) {
3418         debug(DBG_ERR, "malloc failed");
3419         return 0;
3420     }
3421     memset(conf, 0, sizeof(struct clsrvconf));
3422     resconf = (struct clsrvconf *)arg;
3423     if (resconf) {
3424         conf->statusserver = resconf->statusserver;
3425         conf->certnamecheck = resconf->certnamecheck;
3426     } else
3427         conf->certnamecheck = 1;
3428
3429     if (!getgenericconfig(cf, block,
3430                           "type", CONF_STR, &conftype,
3431                           "host", CONF_STR, &conf->host,
3432                           "port", CONF_STR, &conf->port,
3433                           "secret", CONF_STR, &conf->secret,
3434                           "tls", CONF_STR, &conf->tls,
3435                           "MatchCertificateAttribute", CONF_STR, &conf->matchcertattr,
3436                           "rewrite", CONF_STR, &rewriteinalias,
3437                           "rewriteIn", CONF_STR, &conf->confrewritein,
3438                           "rewriteOut", CONF_STR, &conf->confrewriteout,
3439                           "StatusServer", CONF_BLN, &conf->statusserver,
3440                           "RetryInterval", CONF_LINT, &retryinterval,
3441                           "RetryCount", CONF_LINT, &retrycount,
3442                           "CertificateNameCheck", CONF_BLN, &conf->certnamecheck,
3443                           "DynamicLookupCommand", CONF_STR, &conf->dynamiclookupcommand,
3444                           NULL
3445                           )) {
3446         debug(DBG_ERR, "configuration error");
3447         goto errexit;
3448     }
3449     
3450     conf->name = stringcopy(val, 0);
3451     if (!conf->name) {
3452         debug(DBG_ERR, "malloc failed");
3453         goto errexit;
3454     }
3455     if (!conf->host) {
3456         conf->host = stringcopy(val, 0);
3457         if (!conf->host) {
3458             debug(DBG_ERR, "malloc failed");
3459             goto errexit;
3460         }
3461     }
3462
3463     if (!conftype)
3464         debugx(1, DBG_ERR, "error in block %s, option type missing", block);
3465     conf->type = protoname2int(conftype);
3466     conf->pdef = &protodefs[conf->type];
3467     if (!conf->pdef->name) {
3468         debug(DBG_ERR, "error in block %s, unknown transport %s", block, conftype);
3469         goto errexit;
3470     }
3471     free(conftype);
3472     conftype = NULL;
3473
3474     if (!conf->confrewritein)
3475         conf->confrewritein = rewriteinalias;
3476     else
3477         free(rewriteinalias);
3478     rewriteinalias = NULL;
3479
3480     if (retryinterval != LONG_MIN) {
3481         if (retryinterval < 1 || retryinterval > conf->pdef->retryintervalmax) {
3482             debug(DBG_ERR, "error in block %s, value of option RetryInterval is %d, must be 1-%d", block, retryinterval, conf->pdef->retryintervalmax);
3483             goto errexit;
3484         }
3485         conf->retryinterval = (uint8_t)retryinterval;
3486     } else
3487         conf->retryinterval = 255;
3488     
3489     if (retrycount != LONG_MIN) {
3490         if (retrycount < 0 || retrycount > conf->pdef->retrycountmax) {
3491             debug(DBG_ERR, "error in block %s, value of option RetryCount is %d, must be 0-%d", block, retrycount, conf->pdef->retrycountmax);
3492             goto errexit;
3493         }
3494         conf->retrycount = (uint8_t)retrycount;
3495     } else
3496         conf->retrycount = 255;
3497     
3498     if (resconf) {
3499         if (!mergesrvconf(resconf, conf))
3500             goto errexit;
3501         free(conf);
3502         conf = resconf;
3503         if (conf->dynamiclookupcommand) {
3504             free(conf->dynamiclookupcommand);
3505             conf->dynamiclookupcommand = NULL;
3506         }
3507     }
3508
3509     if (resconf || !conf->dynamiclookupcommand) {
3510         if (!compileserverconfig(conf, block))
3511             goto errexit;
3512     }
3513     
3514     if (resconf)
3515         return 1;
3516         
3517     if (!list_push(srvconfs, conf)) {
3518         debug(DBG_ERR, "malloc failed");
3519         goto errexit;
3520     }
3521     return 1;
3522
3523  errexit:
3524     free(conftype);
3525     free(rewriteinalias);
3526     freeclsrvconf(conf);
3527     return 0;
3528 }
3529
3530 int confrealm_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3531     char **servers = NULL, **accservers = NULL, *msg = NULL;
3532     uint8_t accresp = 0;
3533     
3534     debug(DBG_DBG, "confrealm_cb called for %s", block);
3535     
3536     if (!getgenericconfig(cf, block,
3537                      "server", CONF_MSTR, &servers,
3538                      "accountingServer", CONF_MSTR, &accservers,
3539                      "ReplyMessage", CONF_STR, &msg,
3540                      "AccountingResponse", CONF_BLN, &accresp,
3541                      NULL
3542                           ))
3543         debugx(1, DBG_ERR, "configuration error");
3544
3545     addrealm(realms, val, servers, accservers, msg, accresp);
3546     return 1;
3547 }
3548
3549 int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3550     struct tls *conf;
3551     long int expiry = LONG_MIN;
3552     
3553     debug(DBG_DBG, "conftls_cb called for %s", block);
3554     
3555     conf = malloc(sizeof(struct tls));
3556     if (!conf) {
3557         debug(DBG_ERR, "conftls_cb: malloc failed");
3558         return 0;
3559     }
3560     memset(conf, 0, sizeof(struct tls));
3561     
3562     if (!getgenericconfig(cf, block,
3563                      "CACertificateFile", CONF_STR, &conf->cacertfile,
3564                      "CACertificatePath", CONF_STR, &conf->cacertpath,
3565                      "CertificateFile", CONF_STR, &conf->certfile,
3566                      "CertificateKeyFile", CONF_STR, &conf->certkeyfile,
3567                      "CertificateKeyPassword", CONF_STR, &conf->certkeypwd,
3568                      "CacheExpiry", CONF_LINT, &expiry,
3569                      "CRLCheck", CONF_BLN, &conf->crlcheck,
3570                      "PolicyOID", CONF_MSTR, &conf->policyoids,
3571                      NULL
3572                           )) {
3573         debug(DBG_ERR, "conftls_cb: configuration error in block %s", val);
3574         goto errexit;
3575     }
3576     if (!conf->certfile || !conf->certkeyfile) {
3577         debug(DBG_ERR, "conftls_cb: TLSCertificateFile and TLSCertificateKeyFile must be specified in block %s", val);
3578         goto errexit;
3579     }
3580     if (!conf->cacertfile && !conf->cacertpath) {
3581         debug(DBG_ERR, "conftls_cb: CA Certificate file or path need to be specified in block %s", val);
3582         goto errexit;
3583     }
3584     if (expiry != LONG_MIN) {
3585         if (expiry < 0) {
3586             debug(DBG_ERR, "error in block %s, value of option CacheExpiry is %ld, may not be negative", val, expiry);
3587             goto errexit;
3588         }
3589         conf->cacheexpiry = expiry;
3590     }    
3591
3592     conf->name = stringcopy(val, 0);
3593     if (!conf->name) {
3594         debug(DBG_ERR, "conftls_cb: malloc failed");
3595         goto errexit;
3596     }
3597
3598     if (!hash_insert(tlsconfs, val, strlen(val), conf)) {
3599         debug(DBG_ERR, "conftls_cb: malloc failed");
3600         goto errexit;
3601     }
3602     if (!tlsgetctx(RAD_TLS, conf))
3603         debug(DBG_ERR, "conftls_cb: error creating ctx for TLS block %s", val);
3604     debug(DBG_DBG, "conftls_cb: added TLS block %s", val);
3605     return 1;
3606
3607  errexit:
3608     free(conf->cacertfile);
3609     free(conf->cacertpath);
3610     free(conf->certfile);
3611     free(conf->certkeyfile);
3612     free(conf->certkeypwd);
3613     freegconfmstr(conf->policyoids);
3614     free(conf);
3615     return 0;
3616 }
3617
3618 int confrewrite_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3619     char **rmattrs = NULL, **rmvattrs = NULL, **addattrs = NULL, **modattrs = NULL;
3620     
3621     debug(DBG_DBG, "confrewrite_cb called for %s", block);
3622     
3623     if (!getgenericconfig(cf, block,
3624                      "removeAttribute", CONF_MSTR, &rmattrs,
3625                      "removeVendorAttribute", CONF_MSTR, &rmvattrs,
3626                      "addAttribute", CONF_MSTR, &addattrs,
3627                      "modifyAttribute", CONF_MSTR, &modattrs,
3628                      NULL
3629                           ))
3630         debugx(1, DBG_ERR, "configuration error");
3631     addrewrite(val, rmattrs, rmvattrs, addattrs, modattrs);
3632     return 1;
3633 }
3634
3635 void getmainconfig(const char *configfile) {
3636     long int addttl = LONG_MIN, loglevel = LONG_MIN;
3637     struct gconffile *cfs;
3638
3639     cfs = openconfigfile(configfile);
3640     memset(&options, 0, sizeof(options));
3641     
3642     clconfs = list_create();
3643     if (!clconfs)
3644         debugx(1, DBG_ERR, "malloc failed");
3645     
3646     srvconfs = list_create();
3647     if (!srvconfs)
3648         debugx(1, DBG_ERR, "malloc failed");
3649     
3650     realms = list_create();
3651     if (!realms)
3652         debugx(1, DBG_ERR, "malloc failed");    
3653  
3654     tlsconfs = hash_create();
3655     if (!tlsconfs)
3656         debugx(1, DBG_ERR, "malloc failed");
3657     
3658     rewriteconfs = hash_create();
3659     if (!rewriteconfs)
3660         debugx(1, DBG_ERR, "malloc failed");    
3661  
3662     if (!getgenericconfig(&cfs, NULL,
3663                           "ListenUDP", CONF_MSTR, &options.listenargs[RAD_UDP],
3664                           "ListenTCP", CONF_MSTR, &options.listenargs[RAD_TCP],
3665                           "ListenTLS", CONF_MSTR, &options.listenargs[RAD_TLS],
3666                           "ListenDTLS", CONF_MSTR, &options.listenargs[RAD_DTLS],
3667                           "SourceUDP", CONF_STR, &options.sourcearg[RAD_UDP],
3668                           "SourceTCP", CONF_STR, &options.sourcearg[RAD_TCP],
3669                           "SourceTLS", CONF_STR, &options.sourcearg[RAD_TLS],
3670                           "SourceDTLS", CONF_STR, &options.sourcearg[RAD_DTLS],
3671                           "TTLAttribute", CONF_STR, &options.ttlattr,
3672                           "addTTL", CONF_LINT, &addttl,
3673                           "LogLevel", CONF_LINT, &loglevel,
3674                           "LogDestination", CONF_STR, &options.logdestination,
3675                           "LoopPrevention", CONF_BLN, &options.loopprevention,
3676                           "Client", CONF_CBK, confclient_cb, NULL,
3677                           "Server", CONF_CBK, confserver_cb, NULL,
3678                           "Realm", CONF_CBK, confrealm_cb, NULL,
3679                           "TLS", CONF_CBK, conftls_cb, NULL,
3680                           "Rewrite", CONF_CBK, confrewrite_cb, NULL,
3681                           NULL
3682                           ))
3683         debugx(1, DBG_ERR, "configuration error");
3684     
3685     if (loglevel != LONG_MIN) {
3686         if (loglevel < 1 || loglevel > 4)
3687             debugx(1, DBG_ERR, "error in %s, value of option LogLevel is %d, must be 1, 2, 3 or 4", configfile, loglevel);
3688         options.loglevel = (uint8_t)loglevel;
3689     }
3690     if (addttl != LONG_MIN) {
3691         if (addttl < 1 || addttl > 255)
3692             debugx(1, DBG_ERR, "error in %s, value of option addTTL is %d, must be 1-255", configfile, addttl);
3693         options.addttl = (uint8_t)addttl;
3694     }
3695     if (!setttlattr(&options, DEFAULT_TTL_ATTR))
3696         debugx(1, DBG_ERR, "Failed to set TTLAttribute, exiting");
3697 }
3698
3699 void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *pretend, uint8_t *loglevel, char **configfile) {
3700     int c;
3701
3702     while ((c = getopt(argc, argv, "c:d:fpv")) != -1) {
3703         switch (c) {
3704         case 'c':
3705             *configfile = optarg;
3706             break;
3707         case 'd':
3708             if (strlen(optarg) != 1 || *optarg < '1' || *optarg > '4')
3709                 debugx(1, DBG_ERR, "Debug level must be 1, 2, 3 or 4, not %s", optarg);
3710             *loglevel = *optarg - '0';
3711             break;
3712         case 'f':
3713             *foreground = 1;
3714             break;
3715         case 'p':
3716             *pretend = 1;
3717             break;
3718         case 'v':
3719                 debugx(0, DBG_ERR, "radsecproxy revision $Rev$");
3720         default:
3721             goto usage;
3722         }
3723     }
3724     if (!(argc - optind))
3725         return;
3726
3727  usage:
3728     debugx(1, DBG_ERR, "Usage:\n%s [ -c configfile ] [ -d debuglevel ] [ -f ] [ -p ] [ -v ]", argv[0]);
3729 }
3730
3731 #ifdef SYS_SOLARIS9
3732 int daemon(int a, int b) {
3733     int i;
3734
3735     if (fork())
3736         exit(0);
3737
3738     setsid();
3739
3740     for (i = 0; i < 3; i++) {
3741         close(i);
3742         open("/dev/null", O_RDWR);
3743     }
3744     return 1;
3745 }
3746 #endif
3747
3748 void *sighandler(void *arg) {
3749     sigset_t sigset;
3750     int sig;
3751
3752     for(;;) {
3753         sigemptyset(&sigset);
3754         sigaddset(&sigset, SIGPIPE);
3755         sigwait(&sigset, &sig);
3756         /* only get SIGPIPE right now, so could simplify below code */
3757         switch (sig) {
3758         case 0:
3759             /* completely ignoring this */
3760             break;
3761         case SIGPIPE:
3762             debug(DBG_WARN, "sighandler: got SIGPIPE, TLS write error?");
3763             break;
3764         default:
3765             debug(DBG_WARN, "sighandler: ignoring signal %d", sig);
3766         }
3767     }
3768 }
3769
3770 int main(int argc, char **argv) {
3771     pthread_t sigth;
3772     sigset_t sigset;
3773     struct list_node *entry;
3774     uint8_t foreground = 0, pretend = 0, loglevel = 0;
3775     char *configfile = NULL;
3776     struct clsrvconf *srvconf;
3777     int i;
3778     
3779     debug_init("radsecproxy");
3780     debug_set_level(DEBUG_LEVEL);
3781  
3782     getargs(argc, argv, &foreground, &pretend, &loglevel, &configfile);
3783     if (loglevel)
3784         debug_set_level(loglevel);
3785     getmainconfig(configfile ? configfile : CONFIG_MAIN);
3786     if (loglevel)
3787         options.loglevel = loglevel;
3788     else if (options.loglevel)
3789         debug_set_level(options.loglevel);
3790     if (!foreground)
3791         debug_set_destination(options.logdestination ? options.logdestination : "x-syslog:///");
3792     free(options.logdestination);
3793
3794     if (!list_first(clconfs))
3795         debugx(1, DBG_ERR, "No clients configured, nothing to do, exiting");
3796     if (!list_first(realms))
3797         debugx(1, DBG_ERR, "No realms configured, nothing to do, exiting");
3798
3799     if (pretend)
3800         debugx(0, DBG_ERR, "All OK so far; exiting since only pretending");
3801
3802     if (!foreground && (daemon(0, 0) < 0))
3803         debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
3804     
3805     debug_timestamp_on();
3806     debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
3807
3808     sigemptyset(&sigset);
3809     /* exit on all but SIGPIPE, ignore more? */
3810     sigaddset(&sigset, SIGPIPE);
3811     pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3812     pthread_create(&sigth, NULL, sighandler, NULL);
3813
3814     memset(srcprotores, 0, sizeof(srcprotores));
3815     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
3816         srvconf = (struct clsrvconf *)entry->data;
3817         if (srvconf->dynamiclookupcommand)
3818             continue;
3819         if (!addserver(srvconf))
3820             debugx(1, DBG_ERR, "failed to add server");
3821         if (pthread_create(&srvconf->servers->clientth, NULL, clientwr,
3822                            (void *)(srvconf->servers)))
3823             debugx(1, DBG_ERR, "pthread_create failed");
3824     }
3825
3826     for (i = 0; protodefs[i].name; i++) {
3827         if (protodefs[i].freesrcprotores && srcprotores[i]) {
3828             freeaddrinfo(srcprotores[i]);
3829             srcprotores[i] = NULL;
3830         }
3831         if (protodefs[i].initextra)
3832             protodefs[i].initextra();
3833         if (find_clconf_type(i, NULL))
3834             createlisteners(i, options.listenargs[i]);
3835     }
3836     
3837     /* just hang around doing nothing, anything to do here? */
3838     for (;;)
3839         sleep(1000);
3840 }