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