2201af91239c4329b6aeb83082dd0b22ff80d44e
[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     rq->refcount++;
1653     sendreply(rq);
1654 }
1655
1656 struct clsrvconf *choosesrvconf(struct list *srvconfs) {
1657     struct list_node *entry;
1658     struct clsrvconf *server, *best = NULL, *first = NULL;
1659
1660     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
1661         server = (struct clsrvconf *)entry->data;
1662         if (!server->servers)
1663             return server;
1664         if (!first)
1665             first = server;
1666         if (!server->servers->connectionok)
1667             continue;
1668         if (!server->servers->lostrqs)
1669             return server;
1670         if (!best) {
1671             best = server;
1672             continue;
1673         }
1674         if (server->servers->lostrqs < best->servers->lostrqs)
1675             best = server;
1676     }
1677     return best ? best : first;
1678 }
1679
1680 struct server *findserver(struct realm **realm, struct tlv *username, uint8_t acc) {
1681     struct clsrvconf *srvconf;
1682     char *id = (char *)tlv2str(username);
1683     
1684     if (!id)
1685         return NULL;
1686     *realm = id2realm(realms, id);
1687     if (!*realm) {
1688         free(id);
1689         return NULL;
1690     }
1691     debug(DBG_DBG, "found matching realm: %s", (*realm)->name);
1692     srvconf = choosesrvconf(acc ? (*realm)->accsrvconfs : (*realm)->srvconfs);
1693     if (!srvconf) {
1694         free(id);
1695         return NULL;
1696     }
1697     if (!acc && !srvconf->servers)
1698         adddynamicrealmserver(*realm, srvconf, id);
1699     free(id);
1700     return srvconf->servers;
1701 }
1702
1703
1704 struct request *newrequest() {
1705     struct request *rq;
1706
1707     rq = malloc(sizeof(struct request));
1708     if (!rq) {
1709         debug(DBG_ERR, "newrequest: malloc failed");
1710         return NULL;
1711     }
1712     memset(rq, 0, sizeof(struct request));
1713     rq->refcount = 1;
1714     gettimeofday(&rq->created, NULL);
1715     return rq;
1716 }
1717
1718 int addclientrq(struct request *rq, uint8_t id) {
1719     struct request *r;
1720     struct timeval now;
1721
1722     pthread_mutex_lock(&rq->from->lock);
1723     gettimeofday(&now, NULL);
1724     r = rq->from->rqs[id];
1725     if (r) {
1726         if (now.tv_sec - r->created.tv_sec < r->from->conf->dupinterval) {
1727 #if 0
1728             later           
1729             if (r->replybuf) {
1730                 debug(DBG_INFO, "radsrv: already sent reply to request with id %d from %s, resending", id, r->from->conf->host);
1731                 r->refcount++;
1732                 sendreply(r);
1733             } else
1734 #endif          
1735                 debug(DBG_INFO, "radsrv: already got request with id %d from %s, ignoring", id, r->from->conf->host);           
1736             pthread_mutex_unlock(&rq->from->lock);
1737             return 0;
1738         }
1739         freerq(r);
1740     }
1741     rq->refcount++;
1742     rq->from->rqs[id] = rq;
1743     pthread_mutex_unlock(&rq->from->lock);
1744     return 1;
1745 }
1746
1747 void rmclientrq(struct request *rq, uint8_t id) {
1748     struct request *r;
1749
1750     pthread_mutex_lock(&rq->from->lock);
1751     r = rq->from->rqs[id];
1752     if (r) {
1753         freerq(r);
1754         rq->from->rqs[id] = NULL;
1755     }
1756     pthread_mutex_unlock(&rq->from->lock);
1757 }
1758
1759 /* returns 0 if validation/authentication fails, else 1 */
1760 int radsrv(struct request *rq) {
1761     struct radmsg *msg = NULL;
1762     struct tlv *attr;
1763     uint8_t *userascii = NULL;
1764     unsigned char newauth[16];
1765     struct realm *realm = NULL;
1766     struct server *to = NULL;
1767     struct client *from = rq->from;
1768     
1769     msg = buf2radmsg(rq->buf, (uint8_t *)from->conf->secret, NULL);
1770     free(rq->buf);
1771     rq->buf = NULL;
1772
1773     if (!msg) {
1774         debug(DBG_WARN, "radsrv: message validation failed, ignoring packet");
1775         freerq(rq);
1776         return 0;
1777     }
1778     
1779     rq->msg = msg;
1780     debug(DBG_DBG, "radsrv: code %d, id %d", msg->code, msg->id);
1781     if (msg->code != RAD_Access_Request && msg->code != RAD_Status_Server && msg->code != RAD_Accounting_Request) {
1782         debug(DBG_INFO, "radsrv: server currently accepts only access-requests, accounting-requests and status-server, ignoring");      
1783         goto exit;
1784     }
1785     
1786     if (!addclientrq(rq, msg->id))
1787         goto exit;
1788
1789     if (msg->code == RAD_Status_Server) {
1790         respond(rq, RAD_Access_Accept, NULL);
1791         goto exit;
1792     }
1793
1794     /* below: code == RAD_Access_Request || code == RAD_Accounting_Request */
1795
1796     if (from->conf->rewritein && !dorewrite(msg, from->conf->rewritein))
1797         goto rmclrqexit;
1798
1799     attr = radmsg_gettype(msg, RAD_Attr_User_Name);
1800     if (!attr) {
1801         if (msg->code == RAD_Accounting_Request) {
1802             acclog(msg, from->conf->host);
1803             respond(rq, RAD_Accounting_Response, NULL);
1804         } else
1805             debug(DBG_WARN, "radsrv: ignoring access request, no username attribute");
1806         goto exit;
1807     }
1808     
1809     if (from->conf->rewriteusername && !rewriteusername(rq, attr)) {
1810         debug(DBG_WARN, "radsrv: username malloc failed, ignoring request");
1811         goto rmclrqexit;
1812     }
1813     
1814     userascii = radattr2ascii(attr);
1815     if (!userascii)
1816         goto rmclrqexit;
1817     debug(DBG_DBG, "%s with username: %s", radmsgtype2string(msg->code), userascii);
1818
1819     to = findserver(&realm, attr, msg->code == RAD_Accounting_Request);
1820     if (!realm) {
1821         debug(DBG_INFO, "radsrv: ignoring request, don't know where to send it");
1822         goto exit;
1823     }
1824
1825     if (!to) {
1826         if (realm->message && msg->code == RAD_Access_Request) {
1827             debug(DBG_INFO, "radsrv: sending reject to %s for %s", from->conf->host, userascii);
1828             respond(rq, RAD_Access_Reject, realm->message);
1829         } else if (realm->accresp && msg->code == RAD_Accounting_Request) {
1830             acclog(msg, from->conf->host);
1831             respond(rq, RAD_Accounting_Response, NULL);
1832         }
1833         goto exit;
1834     }
1835     
1836     if (options.loopprevention && !strcmp(from->conf->name, to->conf->name)) {
1837         debug(DBG_INFO, "radsrv: Loop prevented, not forwarding request from client %s to server %s, discarding",
1838               from->conf->name, to->conf->name);
1839         goto exit;
1840     }
1841
1842     if (msg->code != RAD_Accounting_Request) {
1843         if (!RAND_bytes(newauth, 16)) {
1844             debug(DBG_WARN, "radsrv: failed to generate random auth");
1845             goto rmclrqexit;
1846         }
1847     }
1848     
1849 #ifdef DEBUG
1850     printfchars(NULL, "auth", "%02x ", auth, 16);
1851 #endif
1852
1853     attr = radmsg_gettype(msg, RAD_Attr_User_Password);
1854     if (attr) {
1855         debug(DBG_DBG, "radsrv: found userpwdattr with value length %d", attr->l);
1856         if (!pwdrecrypt(attr->v, attr->l, from->conf->secret, to->conf->secret, msg->auth, newauth))
1857             goto rmclrqexit;
1858     }
1859
1860     attr = radmsg_gettype(msg, RAD_Attr_Tunnel_Password);
1861     if (attr) {
1862         debug(DBG_DBG, "radsrv: found tunnelpwdattr with value length %d", attr->l);
1863         if (!pwdrecrypt(attr->v, attr->l, from->conf->secret, to->conf->secret, msg->auth, newauth))
1864             goto rmclrqexit;
1865     }
1866
1867     rq->origid = msg->id;
1868     memcpy(rq->origauth, msg->auth, 16);
1869     memcpy(msg->auth, newauth, 16);    
1870
1871     if (to->conf->rewriteout && !dorewrite(msg, to->conf->rewriteout))
1872         goto rmclrqexit;
1873     
1874     free(userascii);
1875     sendrq(to, rq);
1876     return 1;
1877     
1878  rmclrqexit:
1879     rmclientrq(rq, msg->id);
1880  exit:
1881     freerq(rq);
1882     free(userascii);
1883     return 1;
1884 }
1885
1886 void replyh(struct server *server, unsigned char *buf) {
1887     struct client *from;
1888     struct rqout *rqout;
1889     int sublen;
1890     unsigned char *subattrs;
1891     uint8_t *username, *stationid;
1892     struct radmsg *msg = NULL;
1893     struct tlv *attr;
1894     struct list_node *node;
1895     
1896     server->connectionok = 1;
1897     server->lostrqs = 0;
1898
1899     rqout = server->requests + buf[1];
1900     pthread_mutex_lock(rqout->lock);
1901     if (!rqout->tries) {
1902         free(buf);
1903         buf = NULL;
1904         debug(DBG_INFO, "replyh: no outstanding request with this id, ignoring reply");
1905         goto errunlock;
1906     }
1907         
1908     msg = buf2radmsg(buf, (uint8_t *)server->conf->secret, rqout->rq->msg->auth);
1909     free(buf);
1910     buf = NULL;
1911     if (!msg) {
1912         debug(DBG_WARN, "replyh: message validation failed, ignoring packet");
1913         goto errunlock;
1914     }
1915     if (msg->code != RAD_Access_Accept && msg->code != RAD_Access_Reject && msg->code != RAD_Access_Challenge
1916         && msg->code != RAD_Accounting_Response) {
1917         debug(DBG_INFO, "replyh: discarding message type %s, accepting only access accept, access reject, access challenge and accounting response messages", radmsgtype2string(msg->code));
1918         goto errunlock;
1919     }
1920     debug(DBG_DBG, "got %s message with id %d", radmsgtype2string(msg->code), msg->id);
1921
1922     gettimeofday(&server->lastrcv, NULL);
1923     
1924     if (rqout->rq->msg->code == RAD_Status_Server) {
1925         freerqoutdata(rqout);
1926         debug(DBG_DBG, "replyh: got status server response from %s", server->conf->host);
1927         goto errunlock;
1928     }
1929
1930     gettimeofday(&server->lastreply, NULL);
1931     from = rqout->rq->from;
1932         
1933     if (server->conf->rewritein && !dorewrite(msg, from->conf->rewritein)) {
1934         debug(DBG_WARN, "replyh: rewritein failed");
1935         goto errunlock;
1936     }
1937     
1938     /* MS MPPE */
1939     for (node = list_first(msg->attrs); node; node = list_next(node)) {
1940         attr = (struct tlv *)node->data;
1941         if (attr->t != RAD_Attr_Vendor_Specific)
1942             continue;
1943         if (attr->l <= 4)
1944             break;
1945         if (attr->v[0] != 0 || attr->v[1] != 0 || attr->v[2] != 1 || attr->v[3] != 55)  /* 311 == MS */
1946             continue;
1947             
1948         sublen = attr->l - 4;
1949         subattrs = attr->v + 4;  
1950         if (!attrvalidate(subattrs, sublen) ||
1951             !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Send_Key, "MS MPPE Send Key",
1952                     rqout->rq, server->conf->secret, from->conf->secret) ||
1953             !msmppe(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Recv_Key, "MS MPPE Recv Key",
1954                     rqout->rq, server->conf->secret, from->conf->secret))
1955             break;
1956     }
1957     if (node) {
1958         debug(DBG_WARN, "replyh: MS attribute handling failed, ignoring reply");
1959         goto errunlock;
1960     }
1961
1962     if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject || msg->code == RAD_Accounting_Response) {
1963         username = radattr2ascii(radmsg_gettype(rqout->rq->msg, RAD_Attr_User_Name));
1964         if (username) {
1965             stationid = radattr2ascii(radmsg_gettype(rqout->rq->msg, RAD_Attr_Calling_Station_Id));
1966             if (stationid) {
1967                 debug(DBG_INFO, "%s for user %s stationid %s from %s",
1968                       radmsgtype2string(msg->code), username, stationid, server->conf->host);
1969                 free(stationid);
1970             } else
1971                 debug(DBG_INFO, "%s for user %s from %s", radmsgtype2string(msg->code), username, server->conf->host);
1972             free(username);
1973         }
1974     }
1975
1976     msg->id = (char)rqout->rq->origid;
1977     memcpy(msg->auth, rqout->rq->origauth, 16);
1978
1979 #ifdef DEBUG    
1980     printfchars(NULL, "origauth/buf+4", "%02x ", buf + 4, 16);
1981 #endif
1982
1983     if (rqout->rq->origusername && (attr = radmsg_gettype(msg, RAD_Attr_User_Name))) {
1984         if (!resizeattr(attr, strlen(rqout->rq->origusername))) {
1985             debug(DBG_WARN, "replyh: malloc failed, ignoring reply");
1986             goto errunlock;
1987         }
1988         memcpy(attr->v, rqout->rq->origusername, strlen(rqout->rq->origusername));
1989     }
1990
1991     if (from->conf->rewriteout && !dorewrite(msg, from->conf->rewriteout)) {
1992         debug(DBG_WARN, "replyh: rewriteout failed");
1993         goto errunlock;
1994     }
1995
1996     debug(DBG_INFO, "replyh: passing reply to client %s", from->conf->name);
1997     radmsg_free(rqout->rq->msg);
1998     rqout->rq->msg = msg;
1999     rqout->rq->refcount++;
2000     sendreply(rqout->rq);
2001     freerqoutdata(rqout);
2002     pthread_mutex_unlock(rqout->lock);
2003     return;
2004
2005  errunlock:
2006     radmsg_free(msg);
2007     pthread_mutex_unlock(rqout->lock);
2008     return;
2009 }
2010
2011 struct request *createstatsrvrq() {
2012     struct request *rq;
2013     struct tlv *attr;
2014
2015     rq = newrequest();
2016     if (!rq)
2017         return NULL;
2018     rq->msg = radmsg_init(RAD_Status_Server, 0, NULL);
2019     if (!rq->msg)
2020         goto exit;
2021     attr = maketlv(RAD_Attr_Message_Authenticator, 16, NULL);
2022     if (!attr)
2023         goto exit;
2024     if (!radmsg_add(rq->msg, attr)) {
2025         freetlv(attr);
2026         goto exit;
2027     }
2028     return rq;
2029
2030  exit:
2031     freerq(rq);
2032     return NULL;
2033 }
2034
2035 /* code for removing state not finished */
2036 void *clientwr(void *arg) {
2037     struct server *server = (struct server *)arg;
2038     struct rqout *rqout;
2039     pthread_t clientrdth;
2040     int i, secs, dynconffail = 0;
2041     uint8_t rnd;
2042     struct timeval now, laststatsrv;
2043     struct timespec timeout;
2044     struct request *statsrvrq;
2045     struct clsrvconf *conf;
2046     
2047     conf = server->conf;
2048     
2049     if (server->dynamiclookuparg && !dynamicconfig(server)) {
2050         dynconffail = 1;
2051         goto errexit;
2052     }
2053     
2054     if (!conf->addrinfo && !resolvepeer(conf, 0)) {
2055         debug(DBG_WARN, "failed to resolve host %s port %s", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
2056         goto errexit;
2057     }
2058
2059     memset(&timeout, 0, sizeof(struct timespec));
2060     
2061     if (conf->statusserver) {
2062         gettimeofday(&server->lastrcv, NULL);
2063         gettimeofday(&laststatsrv, NULL);
2064     }
2065
2066     if (conf->pdef->connecter) {
2067         if (!conf->pdef->connecter(server, NULL, server->dynamiclookuparg ? 6 : 0, "clientwr"))
2068             goto errexit;
2069         server->connectionok = 1;
2070         if (pthread_create(&clientrdth, NULL, conf->pdef->clientconnreader, (void *)server)) {
2071             debug(DBG_ERR, "clientwr: pthread_create failed");
2072             goto errexit;
2073         }
2074     } else
2075         server->connectionok = 1;
2076     
2077     for (;;) {
2078         pthread_mutex_lock(&server->newrq_mutex);
2079         if (!server->newrq) {
2080             gettimeofday(&now, NULL);
2081             /* random 0-7 seconds */
2082             RAND_bytes(&rnd, 1);
2083             rnd /= 32;
2084             if (conf->statusserver) {
2085                 secs = server->lastrcv.tv_sec > laststatsrv.tv_sec ? server->lastrcv.tv_sec : laststatsrv.tv_sec;
2086                 if (!timeout.tv_sec || timeout.tv_sec > secs + STATUS_SERVER_PERIOD + rnd)
2087                     timeout.tv_sec = secs + STATUS_SERVER_PERIOD + rnd;
2088             } else {
2089                 if (!timeout.tv_sec || timeout.tv_sec > now.tv_sec + STATUS_SERVER_PERIOD + rnd)
2090                     timeout.tv_sec = now.tv_sec + STATUS_SERVER_PERIOD + rnd;
2091             }
2092 #if 0
2093             if (timeout.tv_sec > now.tv_sec)
2094                 debug(DBG_DBG, "clientwr: waiting up to %ld secs for new request", timeout.tv_sec - now.tv_sec);
2095 #endif      
2096             pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
2097             timeout.tv_sec = 0;
2098         }
2099         if (server->newrq) {
2100             debug(DBG_DBG, "clientwr: got new request");
2101             server->newrq = 0;
2102         }
2103 #if 0   
2104         else
2105             debug(DBG_DBG, "clientwr: request timer expired, processing request queue");
2106 #endif  
2107         pthread_mutex_unlock(&server->newrq_mutex);
2108
2109         for (i = 0; i < MAX_REQUESTS; i++) {
2110             if (server->clientrdgone) {
2111                 pthread_join(clientrdth, NULL);
2112                 goto errexit;
2113             }
2114
2115             for (; i < MAX_REQUESTS; i++) {
2116                 rqout = server->requests + i;
2117                 if (rqout->rq) {
2118                     pthread_mutex_lock(rqout->lock);
2119                     if (rqout->rq)
2120                         break;
2121                     pthread_mutex_unlock(rqout->lock);
2122                 }
2123             }
2124                 
2125             if (i == MAX_REQUESTS)
2126                 break;
2127
2128             gettimeofday(&now, NULL);
2129             if (now.tv_sec < rqout->expiry.tv_sec) {
2130                 if (!timeout.tv_sec || rqout->expiry.tv_sec < timeout.tv_sec)
2131                     timeout.tv_sec = rqout->expiry.tv_sec;
2132                 pthread_mutex_unlock(rqout->lock);
2133                 continue;
2134             }
2135
2136             if (rqout->tries == (*rqout->rq->buf == RAD_Status_Server ? 1 : conf->retrycount + 1)) {
2137                 debug(DBG_DBG, "clientwr: removing expired packet from queue");
2138                 if (conf->statusserver) {
2139                     if (*rqout->rq->buf == RAD_Status_Server) {
2140                         debug(DBG_WARN, "clientwr: no status server response, %s dead?", conf->host);
2141                         if (server->lostrqs < 255)
2142                             server->lostrqs++;
2143                     }
2144                 } else {
2145                     debug(DBG_WARN, "clientwr: no server response, %s dead?", conf->host);
2146                     if (server->lostrqs < 255)
2147                         server->lostrqs++;
2148                 }
2149                 freerqoutdata(rqout);
2150                 pthread_mutex_unlock(rqout->lock);
2151                 continue;
2152             }
2153
2154             rqout->expiry.tv_sec = now.tv_sec + conf->retryinterval;
2155             if (!timeout.tv_sec || rqout->expiry.tv_sec < timeout.tv_sec)
2156                 timeout.tv_sec = rqout->expiry.tv_sec;
2157             rqout->tries++;
2158             conf->pdef->clientradput(server, rqout->rq->buf);
2159             pthread_mutex_unlock(rqout->lock);
2160         }
2161         if (conf->statusserver) {
2162             secs = server->lastrcv.tv_sec > laststatsrv.tv_sec ? server->lastrcv.tv_sec : laststatsrv.tv_sec;
2163             gettimeofday(&now, NULL);
2164             if (now.tv_sec - secs > STATUS_SERVER_PERIOD) {
2165                 laststatsrv = now;
2166                 statsrvrq = createstatsrvrq();
2167                 if (statsrvrq) {
2168                     debug(DBG_DBG, "clientwr: sending status server to %s", conf->host);
2169                     sendrq(server, statsrvrq);
2170                 }
2171             }
2172         }
2173     }
2174  errexit:
2175     conf->servers = NULL;
2176     if (server->dynamiclookuparg) {
2177         removeserversubrealms(realms, conf);
2178         if (dynconffail)
2179             free(conf);
2180         else
2181             freeclsrvconf(conf);
2182     }
2183     freeserver(server, 1);
2184     ERR_remove_state(0);
2185     return NULL;
2186 }
2187
2188 void createlistener(uint8_t type, char *arg) {
2189     pthread_t th;
2190     struct clsrvconf *listenres;
2191     struct addrinfo *res;
2192     int s = -1, on = 1, *sp = NULL;
2193     
2194     listenres = resolve_hostport(type, arg, protodefs[type].portdefault);
2195     if (!listenres)
2196         debugx(1, DBG_ERR, "createlistener: failed to resolve %s", arg);
2197     
2198     for (res = listenres->addrinfo; res; res = res->ai_next) {
2199         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
2200         if (s < 0) {
2201             debug(DBG_WARN, "createlistener: socket failed");
2202             continue;
2203         }
2204         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
2205 #ifdef IPV6_V6ONLY
2206         if (res->ai_family == AF_INET6)
2207             setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on));
2208 #endif          
2209         if (bind(s, res->ai_addr, res->ai_addrlen)) {
2210             debug(DBG_WARN, "createlistener: bind failed");
2211             close(s);
2212             s = -1;
2213             continue;
2214         }
2215
2216         sp = malloc(sizeof(int));
2217         if (!sp)
2218             debugx(1, DBG_ERR, "malloc failed");
2219         *sp = s;
2220         if (pthread_create(&th, NULL, protodefs[type].listener, (void *)sp))
2221             debugx(1, DBG_ERR, "pthread_create failed");
2222         pthread_detach(th);
2223     }
2224     if (!sp)
2225         debugx(1, DBG_ERR, "createlistener: socket/bind failed");
2226     
2227     debug(DBG_WARN, "createlistener: listening for %s on %s:%s", protodefs[type].name,
2228           listenres->host ? listenres->host : "*", listenres->port);
2229     freeclsrvres(listenres);
2230 }
2231
2232 void createlisteners(uint8_t type, char **args) {
2233     int i;
2234
2235     if (args)
2236         for (i = 0; args[i]; i++)
2237             createlistener(type, args[i]);
2238     else
2239         createlistener(type, NULL);
2240 }
2241
2242 #ifdef DEBUG
2243 void ssl_info_callback(const SSL *ssl, int where, int ret) {
2244     const char *s;
2245     int w;
2246
2247     w = where & ~SSL_ST_MASK;
2248
2249     if (w & SSL_ST_CONNECT)
2250         s = "SSL_connect";
2251     else if (w & SSL_ST_ACCEPT)
2252         s = "SSL_accept";
2253     else
2254         s = "undefined";
2255
2256     if (where & SSL_CB_LOOP)
2257         debug(DBG_DBG, "%s:%s\n", s, SSL_state_string_long(ssl));
2258     else if (where & SSL_CB_ALERT) {
2259         s = (where & SSL_CB_READ) ? "read" : "write";
2260         debug(DBG_DBG, "SSL3 alert %s:%s:%s\n", s, SSL_alert_type_string_long(ret), SSL_alert_desc_string_long(ret));
2261     }
2262     else if (where & SSL_CB_EXIT) {
2263         if (ret == 0)
2264             debug(DBG_DBG, "%s:failed in %s\n", s, SSL_state_string_long(ssl));
2265         else if (ret < 0)
2266             debug(DBG_DBG, "%s:error in %s\n", s, SSL_state_string_long(ssl));
2267     }
2268 }
2269 #endif
2270
2271 SSL_CTX *tlscreatectx(uint8_t type, struct tls *conf) {
2272     SSL_CTX *ctx = NULL;
2273     STACK_OF(X509_NAME) *calist;
2274     X509_STORE *x509_s;
2275     int i;
2276     unsigned long error;
2277
2278     if (!ssl_locks) {
2279         ssl_locks = calloc(CRYPTO_num_locks(), sizeof(pthread_mutex_t));
2280         ssl_lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
2281         for (i = 0; i < CRYPTO_num_locks(); i++) {
2282             ssl_lock_count[i] = 0;
2283             pthread_mutex_init(&ssl_locks[i], NULL);
2284         }
2285         CRYPTO_set_id_callback(ssl_thread_id);
2286         CRYPTO_set_locking_callback(ssl_locking_callback);
2287
2288         SSL_load_error_strings();
2289         SSL_library_init();
2290
2291         while (!RAND_status()) {
2292             time_t t = time(NULL);
2293             pid_t pid = getpid();
2294             RAND_seed((unsigned char *)&t, sizeof(time_t));
2295             RAND_seed((unsigned char *)&pid, sizeof(pid));
2296         }
2297     }
2298
2299     switch (type) {
2300     case RAD_TLS:
2301         ctx = SSL_CTX_new(TLSv1_method());
2302 #ifdef DEBUG    
2303         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
2304 #endif  
2305         break;
2306     case RAD_DTLS:
2307         ctx = SSL_CTX_new(DTLSv1_method());
2308 #ifdef DEBUG    
2309         SSL_CTX_set_info_callback(ctx, ssl_info_callback);
2310 #endif  
2311         SSL_CTX_set_read_ahead(ctx, 1);
2312         break;
2313     }
2314     if (!ctx) {
2315         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
2316         return NULL;
2317     }
2318     
2319     if (conf->certkeypwd) {
2320         SSL_CTX_set_default_passwd_cb_userdata(ctx, conf->certkeypwd);
2321         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
2322     }
2323     if (!SSL_CTX_use_certificate_chain_file(ctx, conf->certfile) ||
2324         !SSL_CTX_use_PrivateKey_file(ctx, conf->certkeyfile, SSL_FILETYPE_PEM) ||
2325         !SSL_CTX_check_private_key(ctx) ||
2326         !SSL_CTX_load_verify_locations(ctx, conf->cacertfile, conf->cacertpath)) {
2327         while ((error = ERR_get_error()))
2328             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2329         debug(DBG_ERR, "tlscreatectx: Error initialising SSL/TLS in TLS context %s", conf->name);
2330         SSL_CTX_free(ctx);
2331         return NULL;
2332     }
2333
2334     calist = conf->cacertfile ? SSL_load_client_CA_file(conf->cacertfile) : NULL;
2335     if (!conf->cacertfile || calist) {
2336         if (conf->cacertpath) {
2337             if (!calist)
2338                 calist = sk_X509_NAME_new_null();
2339             if (!SSL_add_dir_cert_subjects_to_stack(calist, conf->cacertpath)) {
2340                 sk_X509_NAME_free(calist);
2341                 calist = NULL;
2342             }
2343         }
2344     }
2345     if (!calist) {
2346         while ((error = ERR_get_error()))
2347             debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
2348         debug(DBG_ERR, "tlscreatectx: Error adding CA subjects in TLS context %s", conf->name);
2349         SSL_CTX_free(ctx);
2350         return NULL;
2351     }
2352     ERR_clear_error(); /* add_dir_cert_subj returns errors on success */
2353     SSL_CTX_set_client_CA_list(ctx, calist);
2354     
2355     SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
2356     SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
2357
2358     if (conf->crlcheck) {
2359         x509_s = SSL_CTX_get_cert_store(ctx);
2360         X509_STORE_set_flags(x509_s, X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
2361     }
2362
2363     debug(DBG_DBG, "tlscreatectx: created TLS context %s", conf->name);
2364     return ctx;
2365 }
2366
2367 SSL_CTX *tlsgetctx(uint8_t type, char *alt1, char *alt2) {
2368     struct tls *t;
2369
2370     t = hash_read(tlsconfs, alt1, strlen(alt1));
2371     if (!t) {
2372         t = hash_read(tlsconfs, alt2, strlen(alt2));
2373         if (!t)
2374             return NULL;
2375     }
2376
2377     switch (type) {
2378     case RAD_TLS:
2379         if (!t->tlsctx)
2380             t->tlsctx = tlscreatectx(RAD_TLS, t);
2381         return t->tlsctx;
2382     case RAD_DTLS:
2383         if (!t->dtlsctx)
2384             t->dtlsctx = tlscreatectx(RAD_DTLS, t);
2385         return t->dtlsctx;
2386     }
2387     return NULL;
2388 }
2389
2390 struct list *addsrvconfs(char *value, char **names) {
2391     struct list *conflist;
2392     int n;
2393     struct list_node *entry;
2394     struct clsrvconf *conf = NULL;
2395     
2396     if (!names || !*names)
2397         return NULL;
2398     
2399     conflist = list_create();
2400     if (!conflist) {
2401         debug(DBG_ERR, "malloc failed");
2402         return NULL;
2403     }
2404
2405     for (n = 0; names[n]; n++) {
2406         for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
2407             conf = (struct clsrvconf *)entry->data;
2408             if (!strcasecmp(names[n], conf->name))
2409                 break;
2410         }
2411         if (!entry) {
2412             debug(DBG_ERR, "addsrvconfs failed for realm %s, no server named %s", value, names[n]);
2413             list_destroy(conflist);
2414             return NULL;
2415         }
2416         if (!list_push(conflist, conf)) {
2417             debug(DBG_ERR, "malloc failed");
2418             list_destroy(conflist);
2419             return NULL;
2420         }
2421         debug(DBG_DBG, "addsrvconfs: added server %s for realm %s", conf->name, value);
2422     }
2423     return conflist;
2424 }
2425
2426 void freerealm(struct realm *realm) {
2427     if (!realm)
2428         return;
2429     free(realm->name);
2430     free(realm->message);
2431     regfree(&realm->regex);
2432     pthread_mutex_destroy(&realm->subrealms_mutex);
2433     if (realm->subrealms)
2434         list_destroy(realm->subrealms);
2435     if (realm->srvconfs) {
2436         /* emptying list without freeing data */
2437         while (list_shift(realm->srvconfs));
2438         list_destroy(realm->srvconfs);
2439     }
2440     if (realm->accsrvconfs) {
2441         /* emptying list without freeing data */
2442         while (list_shift(realm->accsrvconfs));
2443         list_destroy(realm->accsrvconfs);
2444     }
2445     free(realm);
2446 }
2447
2448 struct realm *addrealm(struct list *realmlist, char *value, char **servers, char **accservers, char *message, uint8_t accresp) {
2449     int n;
2450     struct realm *realm;
2451     char *s, *regex = NULL;
2452     
2453     if (*value == '/') {
2454         /* regexp, remove optional trailing / if present */
2455         if (value[strlen(value) - 1] == '/')
2456             value[strlen(value) - 1] = '\0';
2457     } else {
2458         /* not a regexp, let us make it one */
2459         if (*value == '*' && !value[1])
2460             regex = stringcopy(".*", 0);
2461         else {
2462             for (n = 0, s = value; *s;)
2463                 if (*s++ == '.')
2464                     n++;
2465             regex = malloc(strlen(value) + n + 3);
2466             if (regex) {
2467                 regex[0] = '@';
2468                 for (n = 1, s = value; *s; s++) {
2469                     if (*s == '.')
2470                         regex[n++] = '\\';
2471                     regex[n++] = *s;
2472                 }
2473                 regex[n++] = '$';
2474                 regex[n] = '\0';
2475             }
2476         }
2477         if (!regex) {
2478             debug(DBG_ERR, "malloc failed");
2479             realm = NULL;
2480             goto exit;
2481         }
2482         debug(DBG_DBG, "addrealm: constructed regexp %s from %s", regex, value);
2483     }
2484
2485     realm = malloc(sizeof(struct realm));
2486     if (!realm) {
2487         debug(DBG_ERR, "malloc failed");
2488         goto exit;
2489     }
2490     memset(realm, 0, sizeof(struct realm));
2491     
2492     if (pthread_mutex_init(&realm->subrealms_mutex, NULL)) {
2493         debug(DBG_ERR, "mutex init failed");
2494         free(realm);
2495         realm = NULL;
2496         goto exit;
2497     }
2498
2499     realm->name = stringcopy(value, 0);
2500     if (!realm->name) {
2501         debug(DBG_ERR, "malloc failed");
2502         goto errexit;
2503     }
2504     if (message && strlen(message) > 253) {
2505         debug(DBG_ERR, "ReplyMessage can be at most 253 bytes");
2506         goto errexit;
2507     }
2508     realm->message = message;
2509     realm->accresp = accresp;
2510     
2511     if (regcomp(&realm->regex, regex ? regex : value + 1, REG_EXTENDED | REG_ICASE | REG_NOSUB)) {
2512         debug(DBG_ERR, "addrealm: failed to compile regular expression %s", regex ? regex : value + 1);
2513         goto errexit;
2514     }
2515     
2516     if (servers && *servers) {
2517         realm->srvconfs = addsrvconfs(value, servers);
2518         if (!realm->srvconfs)
2519             goto errexit;
2520     }
2521     
2522     if (accservers && *accservers) {
2523         realm->accsrvconfs = addsrvconfs(value, accservers);
2524         if (!realm->accsrvconfs)
2525             goto errexit;
2526     }
2527
2528     if (!list_push(realmlist, realm)) {
2529         debug(DBG_ERR, "malloc failed");
2530         pthread_mutex_destroy(&realm->subrealms_mutex);
2531         goto errexit;
2532     }
2533     
2534     debug(DBG_DBG, "addrealm: added realm %s", value);
2535     goto exit;
2536
2537  errexit:
2538     freerealm(realm);
2539     realm = NULL;
2540     
2541  exit:
2542     free(regex);
2543     if (servers) {
2544         for (n = 0; servers[n]; n++)
2545             free(servers[n]);
2546         free(servers);
2547     }
2548     if (accservers) {
2549         for (n = 0; accservers[n]; n++)
2550             free(accservers[n]);
2551         free(accservers);
2552     }
2553     return realm;
2554 }
2555
2556 void adddynamicrealmserver(struct realm *realm, struct clsrvconf *conf, char *id) {
2557     struct clsrvconf *srvconf;
2558     struct realm *newrealm = NULL;
2559     char *realmname, *s;
2560     pthread_t clientth;
2561     
2562     if (!conf->dynamiclookupcommand)
2563         return;
2564
2565     /* create dynamic for the realm (string after last @, exit if nothing after @ */
2566     realmname = strrchr(id, '@');
2567     if (!realmname)
2568         return;
2569     realmname++;
2570     if (!*realmname)
2571         return;
2572     for (s = realmname; *s; s++)
2573         if (*s != '.' && *s != '-' && !isalnum((int)*s))
2574             return;
2575     
2576     pthread_mutex_lock(&realm->subrealms_mutex);
2577     /* exit if we now already got a matching subrealm */
2578     if (id2realm(realm->subrealms, id))
2579         goto exit;
2580     srvconf = malloc(sizeof(struct clsrvconf));
2581     if (!srvconf) {
2582         debug(DBG_ERR, "malloc failed");
2583         goto exit;
2584     }
2585     *srvconf = *conf;
2586     if (!addserver(srvconf))
2587         goto errexit;
2588
2589     if (!realm->subrealms)
2590         realm->subrealms = list_create();
2591     if (!realm->subrealms)
2592         goto errexit;
2593     newrealm = addrealm(realm->subrealms, realmname, NULL, NULL, NULL, 0);
2594     if (!newrealm)
2595         goto errexit;
2596
2597     /* add server and accserver to newrealm */
2598     newrealm->srvconfs = list_create();
2599     if (!newrealm->srvconfs || !list_push(newrealm->srvconfs, srvconf)) {
2600         debug(DBG_ERR, "malloc failed");
2601         goto errexit;
2602     }
2603     newrealm->accsrvconfs = list_create();
2604     if (!newrealm->accsrvconfs || !list_push(newrealm->accsrvconfs, srvconf)) {
2605         debug(DBG_ERR, "malloc failed");
2606         goto errexit;
2607     }
2608
2609     srvconf->servers->dynamiclookuparg = stringcopy(realmname, 0);
2610
2611     if (pthread_create(&clientth, NULL, clientwr, (void *)(srvconf->servers))) {
2612         debug(DBG_ERR, "pthread_create failed");
2613         goto errexit;
2614     }
2615     pthread_detach(clientth);
2616     goto exit;
2617     
2618  errexit:
2619     if (newrealm) {
2620         list_removedata(realm->subrealms, newrealm);
2621         freerealm(newrealm);
2622         if (!list_first(realm->subrealms)) {
2623             list_destroy(realm->subrealms);
2624             realm->subrealms = NULL;
2625         }
2626     }
2627     freeserver(srvconf->servers, 1);
2628     free(srvconf);
2629     debug(DBG_ERR, "failed to create dynamic server");
2630
2631  exit:
2632     pthread_mutex_unlock(&realm->subrealms_mutex);
2633 }
2634
2635 int dynamicconfig(struct server *server) {
2636     int ok, fd[2], status;
2637     pid_t pid;
2638     struct clsrvconf *conf = server->conf;
2639     struct gconffile *cf = NULL;
2640     
2641     /* for now we only learn hostname/address */
2642     debug(DBG_DBG, "dynamicconfig: need dynamic server config for %s", server->dynamiclookuparg);
2643
2644     if (pipe(fd) > 0) {
2645         debug(DBG_ERR, "dynamicconfig: pipe error");
2646         goto errexit;
2647     }
2648     pid = fork();
2649     if (pid < 0) {
2650         debug(DBG_ERR, "dynamicconfig: fork error");
2651         close(fd[0]);
2652         close(fd[1]);
2653         goto errexit;
2654     } else if (pid == 0) {
2655         /* child */
2656         close(fd[0]);
2657         if (fd[1] != STDOUT_FILENO) {
2658             if (dup2(fd[1], STDOUT_FILENO) != STDOUT_FILENO)
2659                 debugx(1, DBG_ERR, "dynamicconfig: dup2 error for command %s", conf->dynamiclookupcommand);
2660             close(fd[1]);
2661         }
2662         if (execlp(conf->dynamiclookupcommand, conf->dynamiclookupcommand, server->dynamiclookuparg, NULL) < 0)
2663             debugx(1, DBG_ERR, "dynamicconfig: exec error for command %s", conf->dynamiclookupcommand);
2664     }
2665
2666     close(fd[1]);
2667     pushgconffile(&cf, fdopen(fd[0], "r"), conf->dynamiclookupcommand);
2668     ok = getgenericconfig(&cf, NULL,
2669                           "Server", CONF_CBK, confserver_cb, (void *)conf,
2670                           NULL
2671                           );
2672     freegconf(&cf);
2673         
2674     if (waitpid(pid, &status, 0) < 0) {
2675         debug(DBG_ERR, "dynamicconfig: wait error");
2676         goto errexit;
2677     }
2678     
2679     if (status) {
2680         debug(DBG_INFO, "dynamicconfig: command exited with status %d", WEXITSTATUS(status));
2681         goto errexit;
2682     }
2683
2684     if (ok)
2685         return 1;
2686
2687  errexit:    
2688     debug(DBG_WARN, "dynamicconfig: failed to obtain dynamic server config");
2689     return 0;
2690 }
2691
2692 int addmatchcertattr(struct clsrvconf *conf) {
2693     char *v;
2694     regex_t **r;
2695     
2696     if (!strncasecmp(conf->matchcertattr, "CN:/", 4)) {
2697         r = &conf->certcnregex;
2698         v = conf->matchcertattr + 4;
2699     } else if (!strncasecmp(conf->matchcertattr, "SubjectAltName:URI:/", 20)) {
2700         r = &conf->certuriregex;
2701         v = conf->matchcertattr + 20;
2702     } else
2703         return 0;
2704     if (!*v)
2705         return 0;
2706     /* regexp, remove optional trailing / if present */
2707     if (v[strlen(v) - 1] == '/')
2708         v[strlen(v) - 1] = '\0';
2709     if (!*v)
2710         return 0;
2711
2712     *r = malloc(sizeof(regex_t));
2713     if (!*r) {
2714         debug(DBG_ERR, "malloc failed");
2715         return 0;
2716     }
2717     if (regcomp(*r, v, REG_EXTENDED | REG_ICASE | REG_NOSUB)) {
2718         free(*r);
2719         *r = NULL;
2720         debug(DBG_ERR, "failed to compile regular expression %s", v);
2721         return 0;
2722     }
2723     return 1;
2724 }
2725
2726 /* should accept both names and numeric values, only numeric right now */
2727 uint8_t attrname2val(char *attrname) {
2728     int val = 0;
2729     
2730     val = atoi(attrname);
2731     return val > 0 && val < 256 ? val : 0;
2732 }
2733
2734 /* should accept both names and numeric values, only numeric right now */
2735 int vattrname2val(char *attrname, uint32_t *vendor, uint32_t *type) {
2736     char *s;
2737     
2738     *vendor = atoi(attrname);
2739     s = strchr(attrname, ':');
2740     if (!s) {
2741         *type = -1;
2742         return 1;
2743     }
2744     *type = atoi(s + 1);
2745     return *type >= 0 && *type < 256;
2746 }
2747
2748 /* should accept both names and numeric values, only numeric right now */
2749 struct tlv *extractattr(char *nameval) {
2750     int len, name = 0;
2751     char *s;
2752     struct tlv *a;
2753     
2754     s = strchr(nameval, ':');
2755     name = atoi(nameval);
2756     if (!s || name < 1 || name > 255)
2757         return NULL;
2758     len = strlen(s + 1);
2759     if (len > 253)
2760         return NULL;
2761     a = malloc(sizeof(struct tlv));
2762     if (!a)
2763         return NULL;
2764     a->v = (uint8_t *)stringcopy(s + 1, 0);
2765     if (!a->v) {
2766         free(a);
2767         return NULL;
2768     }
2769     a->t = name;
2770     a->l = len;
2771     return a;
2772 }
2773
2774 /* should accept both names and numeric values, only numeric right now */
2775 struct modattr *extractmodattr(char *nameval) {
2776     int name = 0;
2777     char *s, *t;
2778     struct modattr *m;
2779
2780     if (!strncasecmp(nameval, "User-Name:/", 11)) {
2781         s = nameval + 11;
2782         name = 1;
2783     } else {
2784         s = strchr(nameval, ':');
2785         name = atoi(nameval);
2786         if (!s || name < 1 || name > 255 || s[1] != '/')
2787             return NULL;
2788         s += 2;
2789     }
2790     /* regexp, remove optional trailing / if present */
2791     if (s[strlen(s) - 1] == '/')
2792         s[strlen(s) - 1] = '\0';
2793
2794     t = strchr(s, '/');
2795     if (!t)
2796         return NULL;
2797     *t = '\0';
2798     t++;
2799
2800     m = malloc(sizeof(struct modattr));
2801     if (!m) {
2802         debug(DBG_ERR, "malloc failed");
2803         return NULL;
2804     }
2805     m->t = name;
2806
2807     m->replacement = stringcopy(t, 0);
2808     if (!m->replacement) {
2809         free(m);
2810         debug(DBG_ERR, "malloc failed");
2811         return NULL;
2812     }
2813         
2814     m->regex = malloc(sizeof(regex_t));
2815     if (!m->regex) {
2816         free(m->replacement);
2817         free(m);
2818         debug(DBG_ERR, "malloc failed");
2819         return NULL;
2820     }
2821     
2822     if (regcomp(m->regex, s, REG_ICASE | REG_EXTENDED)) {
2823         free(m->regex);
2824         free(m->replacement);
2825         free(m);
2826         debug(DBG_ERR, "failed to compile regular expression %s", s);
2827         return NULL;
2828     }
2829
2830     return m;
2831 }
2832
2833 struct rewrite *getrewrite(char *alt1, char *alt2) {
2834     struct rewrite *r;
2835
2836     if ((r = hash_read(rewriteconfs,  alt1, strlen(alt1))))
2837         return r;
2838     if ((r = hash_read(rewriteconfs,  alt2, strlen(alt2))))
2839         return r;
2840     return NULL;
2841 }
2842
2843 void addrewrite(char *value, char **rmattrs, char **rmvattrs, char **addattrs, char **modattrs) {
2844     struct rewrite *rewrite = NULL;
2845     int i, n;
2846     uint8_t *rma = NULL;
2847     uint32_t *p, *rmva = NULL;
2848     struct list *adda = NULL, *moda = NULL;
2849     struct tlv *a;
2850     struct modattr *m;
2851     
2852     if (rmattrs) {
2853         for (n = 0; rmattrs[n]; n++);
2854         rma = calloc(n + 1, sizeof(uint8_t));
2855         if (!rma)
2856             debugx(1, DBG_ERR, "malloc failed");
2857     
2858         for (i = 0; i < n; i++) {
2859             if (!(rma[i] = attrname2val(rmattrs[i])))
2860                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", rmattrs[i]);
2861             free(rmattrs[i]);
2862         }
2863         free(rmattrs);
2864         rma[i] = 0;
2865     }
2866     
2867     if (rmvattrs) {
2868         for (n = 0; rmvattrs[n]; n++);
2869         rmva = calloc(2 * n + 1, sizeof(uint32_t));
2870         if (!rmva)
2871             debugx(1, DBG_ERR, "malloc failed");
2872     
2873         for (p = rmva, i = 0; i < n; i++, p += 2) {
2874             if (!vattrname2val(rmvattrs[i], p, p + 1))
2875                 debugx(1, DBG_ERR, "addrewrite: invalid vendor attribute %s", rmvattrs[i]);
2876             free(rmvattrs[i]);
2877         }
2878         free(rmvattrs);
2879         *p = 0;
2880     }
2881     
2882     if (addattrs) {
2883         adda = list_create();
2884         if (!adda)
2885             debugx(1, DBG_ERR, "malloc failed");
2886         for (i = 0; addattrs[i]; i++) {
2887             a = extractattr(addattrs[i]);
2888             if (!a)
2889                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", addattrs[i]);
2890             free(addattrs[i]);
2891             if (!list_push(adda, a))
2892                 debugx(1, DBG_ERR, "malloc failed");
2893         }
2894         free(addattrs);
2895     }
2896
2897     if (modattrs) {
2898         moda = list_create();
2899         if (!moda)
2900             debugx(1, DBG_ERR, "malloc failed");
2901         for (i = 0; modattrs[i]; i++) {
2902             m = extractmodattr(modattrs[i]);
2903             if (!m)
2904                 debugx(1, DBG_ERR, "addrewrite: invalid attribute %s", modattrs[i]);
2905             free(modattrs[i]);
2906             if (!list_push(moda, m))
2907                 debugx(1, DBG_ERR, "malloc failed");
2908         }
2909         free(modattrs);
2910     }
2911         
2912     if (rma || rmva || adda || moda) {
2913         rewrite = malloc(sizeof(struct rewrite));
2914         if (!rewrite)
2915             debugx(1, DBG_ERR, "malloc failed");
2916         rewrite->removeattrs = rma;
2917         rewrite->removevendorattrs = rmva;
2918         rewrite->addattrs = adda;
2919         rewrite->modattrs = moda;
2920     }
2921     
2922     if (!hash_insert(rewriteconfs, value, strlen(value), rewrite))
2923         debugx(1, DBG_ERR, "malloc failed");
2924     debug(DBG_DBG, "addrewrite: added rewrite block %s", value);
2925 }
2926
2927 void freeclsrvconf(struct clsrvconf *conf) {
2928     free(conf->name);
2929     free(conf->host);
2930     free(conf->port);
2931     free(conf->secret);
2932     free(conf->tls);
2933     free(conf->matchcertattr);
2934     if (conf->certcnregex)
2935         regfree(conf->certcnregex);
2936     if (conf->certuriregex)
2937         regfree(conf->certuriregex);
2938     free(conf->confrewritein);
2939     free(conf->confrewriteout);
2940     if (conf->rewriteusername) {
2941         if (conf->rewriteusername->regex)
2942             regfree(conf->rewriteusername->regex);
2943         free(conf->rewriteusername->replacement);
2944         free(conf->rewriteusername);
2945     }
2946     free(conf->dynamiclookupcommand);
2947     free(conf->rewritein);
2948     free(conf->rewriteout);
2949     if (conf->addrinfo)
2950         freeaddrinfo(conf->addrinfo);
2951     if (conf->lock) {
2952         pthread_mutex_destroy(conf->lock);
2953         free(conf->lock);
2954     }
2955     /* not touching ssl_ctx, clients and servers */
2956     free(conf);
2957 }
2958
2959 int mergeconfstring(char **dst, char **src) {
2960     char *t;
2961     
2962     if (*src) {
2963         *dst = *src;
2964         *src = NULL;
2965         return 1;
2966     }
2967     if (*dst) {
2968         t = stringcopy(*dst, 0);
2969         if (!t) {
2970             debug(DBG_ERR, "malloc failed");
2971             return 0;
2972         }
2973         *dst = t;
2974     }
2975     return 1;
2976 }
2977
2978 /* assumes dst is a shallow copy */
2979 int mergesrvconf(struct clsrvconf *dst, struct clsrvconf *src) {
2980     if (!mergeconfstring(&dst->name, &src->name) ||
2981         !mergeconfstring(&dst->host, &src->host) ||
2982         !mergeconfstring(&dst->port, &src->port) ||
2983         !mergeconfstring(&dst->secret, &src->secret) ||
2984         !mergeconfstring(&dst->tls, &src->tls) ||
2985         !mergeconfstring(&dst->matchcertattr, &src->matchcertattr) ||
2986         !mergeconfstring(&dst->confrewritein, &src->confrewritein) ||
2987         !mergeconfstring(&dst->confrewriteout, &src->confrewriteout) ||
2988         !mergeconfstring(&dst->dynamiclookupcommand, &src->dynamiclookupcommand))
2989         return 0;
2990     if (src->pdef)
2991         dst->pdef = src->pdef;
2992     dst->statusserver = src->statusserver;
2993     dst->certnamecheck = src->certnamecheck;
2994     if (src->retryinterval != 255)
2995         dst->retryinterval = src->retryinterval;
2996     if (src->retrycount != 255)
2997         dst->retrycount = src->retrycount;
2998     return 1;
2999 }
3000
3001 int confclient_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3002     struct clsrvconf *conf;
3003     char *conftype = NULL, *rewriteinalias = NULL;
3004     long int dupinterval = LONG_MIN;
3005     
3006     debug(DBG_DBG, "confclient_cb called for %s", block);
3007
3008     conf = malloc(sizeof(struct clsrvconf));
3009     if (!conf)
3010         debugx(1, DBG_ERR, "malloc failed");
3011     memset(conf, 0, sizeof(struct clsrvconf));
3012     conf->certnamecheck = 1;
3013     
3014     if (!getgenericconfig(cf, block,
3015                      "type", CONF_STR, &conftype,
3016                      "host", CONF_STR, &conf->host,
3017                      "secret", CONF_STR, &conf->secret,
3018                      "tls", CONF_STR, &conf->tls,
3019                      "matchcertificateattribute", CONF_STR, &conf->matchcertattr,
3020                      "CertificateNameCheck", CONF_BLN, &conf->certnamecheck,
3021                      "DuplicateInterval", CONF_LINT, &dupinterval,
3022                      "rewrite", CONF_STR, &rewriteinalias,
3023                      "rewriteIn", CONF_STR, &conf->confrewritein,
3024                      "rewriteOut", CONF_STR, &conf->confrewriteout,
3025                      "rewriteattribute", CONF_STR, &conf->confrewriteusername,
3026                      NULL
3027                           ))
3028         debugx(1, DBG_ERR, "configuration error");
3029     
3030     conf->name = stringcopy(val, 0);
3031     if (!conf->host)
3032         conf->host = stringcopy(val, 0);
3033     if (!conf->name || !conf->host)
3034         debugx(1, DBG_ERR, "malloc failed");
3035         
3036     if (!conftype)
3037         debugx(1, DBG_ERR, "error in block %s, option type missing", block);
3038     conf->type = protoname2int(conftype);
3039     conf->pdef = &protodefs[conf->type];
3040     if (!conf->pdef->name)
3041         debugx(1, DBG_ERR, "error in block %s, unknown transport %s", block, conftype);
3042     free(conftype);
3043     
3044     if (conf->type == RAD_TLS || conf->type == RAD_DTLS) {
3045         conf->ssl_ctx = conf->tls ? tlsgetctx(conf->type, conf->tls, NULL) : tlsgetctx(conf->type, "defaultclient", "default");
3046         if (!conf->ssl_ctx)
3047             debugx(1, DBG_ERR, "error in block %s, no tls context defined", block);
3048         if (conf->matchcertattr && !addmatchcertattr(conf))
3049             debugx(1, DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
3050     }
3051     
3052     if (dupinterval != LONG_MIN) {
3053         if (dupinterval < 0 || dupinterval > 255)
3054             debugx(1, DBG_ERR, "error in block %s, value of option DuplicateInterval is %d, must be 0-255", block, dupinterval);
3055         conf->dupinterval = (uint8_t)dupinterval;
3056     } else
3057         conf->dupinterval = conf->pdef->duplicateintervaldefault;
3058     
3059     if (!conf->confrewritein)
3060         conf->confrewritein = rewriteinalias;
3061     else
3062         free(rewriteinalias);
3063     conf->rewritein = conf->confrewritein ? getrewrite(conf->confrewritein, NULL) : getrewrite("defaultclient", "default");
3064     if (conf->confrewriteout)
3065         conf->rewriteout = getrewrite(conf->confrewriteout, NULL);
3066     
3067     if (conf->confrewriteusername) {
3068         conf->rewriteusername = extractmodattr(conf->confrewriteusername);
3069         if (!conf->rewriteusername)
3070             debugx(1, DBG_ERR, "error in block %s, invalid RewriteAttributeValue", block);
3071     }
3072     
3073     if (!resolvepeer(conf, 0))
3074         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
3075     
3076     if (!conf->secret) {
3077         if (!conf->pdef->secretdefault)
3078             debugx(1, DBG_ERR, "error in block %s, secret must be specified for transport type %s", block, conf->pdef->name);
3079         conf->secret = stringcopy(conf->pdef->secretdefault, 0);
3080         if (!conf->secret)
3081             debugx(1, DBG_ERR, "malloc failed");
3082     }
3083
3084     conf->lock = malloc(sizeof(pthread_mutex_t));
3085     if (!conf->lock)
3086         debugx(1, DBG_ERR, "malloc failed");
3087
3088     pthread_mutex_init(conf->lock, NULL);
3089     if (!list_push(clconfs, conf))
3090         debugx(1, DBG_ERR, "malloc failed");
3091     return 1;
3092 }
3093
3094 int compileserverconfig(struct clsrvconf *conf, const char *block) {
3095     if (conf->type == RAD_TLS || conf->type == RAD_DTLS) {
3096         conf->ssl_ctx = conf->tls ? tlsgetctx(conf->type, conf->tls, NULL) : tlsgetctx(conf->type, "defaultserver", "default");
3097         if (!conf->ssl_ctx) {
3098             debug(DBG_ERR, "error in block %s, no tls context defined", block);
3099             return 0;
3100         }
3101         if (conf->matchcertattr && !addmatchcertattr(conf)) {
3102             debug(DBG_ERR, "error in block %s, invalid MatchCertificateAttributeValue", block);
3103             return 0;
3104         }
3105     }
3106
3107     if (!conf->port) {
3108         conf->port = stringcopy(conf->pdef->portdefault, 0);
3109         if (!conf->port) {
3110             debug(DBG_ERR, "malloc failed");
3111             return 0;
3112         }
3113     }
3114     
3115     if (conf->retryinterval == 255)
3116         conf->retryinterval = protodefs[conf->type].retryintervaldefault;
3117     if (conf->retrycount == 255)
3118         conf->retrycount = protodefs[conf->type].retrycountdefault;
3119     
3120     conf->rewritein = conf->confrewritein ? getrewrite(conf->confrewritein, NULL) : getrewrite("defaultserver", "default");
3121     if (conf->confrewriteout)
3122         conf->rewriteout = getrewrite(conf->confrewriteout, NULL);
3123
3124     if (!conf->secret) {
3125         if (!conf->pdef->secretdefault) {
3126             debug(DBG_ERR, "error in block %s, secret must be specified for transport type %s", block, conf->pdef->name);
3127             return 0;
3128         }
3129         conf->secret = stringcopy(conf->pdef->secretdefault, 0);
3130         if (!conf->secret) {
3131             debug(DBG_ERR, "malloc failed");
3132             return 0;
3133         }
3134     }
3135     
3136     if (!conf->dynamiclookupcommand && !resolvepeer(conf, 0)) {
3137         debug(DBG_ERR, "failed to resolve host %s port %s, exiting", conf->host ? conf->host : "(null)", conf->port ? conf->port : "(null)");
3138         return 0;
3139     }
3140     return 1;
3141 }
3142                         
3143 int confserver_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3144     struct clsrvconf *conf, *resconf;
3145     char *conftype = NULL, *rewriteinalias = NULL;
3146     long int retryinterval = LONG_MIN, retrycount = LONG_MIN;
3147     
3148     debug(DBG_DBG, "confserver_cb called for %s", block);
3149
3150     conf = malloc(sizeof(struct clsrvconf));
3151     if (!conf) {
3152         debug(DBG_ERR, "malloc failed");
3153         return 0;
3154     }
3155     memset(conf, 0, sizeof(struct clsrvconf));
3156     resconf = (struct clsrvconf *)arg;
3157     if (resconf) {
3158         conf->statusserver = resconf->statusserver;
3159         conf->certnamecheck = resconf->certnamecheck;
3160     } else
3161         conf->certnamecheck = 1;
3162
3163     if (!getgenericconfig(cf, block,
3164                           "type", CONF_STR, &conftype,
3165                           "host", CONF_STR, &conf->host,
3166                           "port", CONF_STR, &conf->port,
3167                           "secret", CONF_STR, &conf->secret,
3168                           "tls", CONF_STR, &conf->tls,
3169                           "MatchCertificateAttribute", CONF_STR, &conf->matchcertattr,
3170                           "rewrite", CONF_STR, &rewriteinalias,
3171                           "rewriteIn", CONF_STR, &conf->confrewritein,
3172                           "rewriteOut", CONF_STR, &conf->confrewriteout,
3173                           "StatusServer", CONF_BLN, &conf->statusserver,
3174                           "RetryInterval", CONF_LINT, &retryinterval,
3175                           "RetryCount", CONF_LINT, &retrycount,
3176                           "CertificateNameCheck", CONF_BLN, &conf->certnamecheck,
3177                           "DynamicLookupCommand", CONF_STR, &conf->dynamiclookupcommand,
3178                           NULL
3179                           )) {
3180         debug(DBG_ERR, "configuration error");
3181         goto errexit;
3182     }
3183     
3184     conf->name = stringcopy(val, 0);
3185     if (!conf->name) {
3186         debug(DBG_ERR, "malloc failed");
3187         goto errexit;
3188     }
3189     if (!conf->host) {
3190         conf->host = stringcopy(val, 0);
3191         if (!conf->host) {
3192             debug(DBG_ERR, "malloc failed");
3193             goto errexit;
3194         }
3195     }
3196
3197     if (!conftype)
3198         debugx(1, DBG_ERR, "error in block %s, option type missing", block);
3199     conf->type = protoname2int(conftype);
3200     conf->pdef = &protodefs[conf->type];
3201     if (!conf->pdef->name) {
3202         debug(DBG_ERR, "error in block %s, unknown transport %s", block, conftype);
3203         goto errexit;
3204     }
3205     free(conftype);
3206     conftype = NULL;
3207
3208     if (!conf->confrewritein)
3209         conf->confrewritein = rewriteinalias;
3210     else
3211         free(rewriteinalias);
3212     rewriteinalias = NULL;
3213
3214     if (retryinterval != LONG_MIN) {
3215         if (retryinterval < 1 || retryinterval > conf->pdef->retryintervalmax) {
3216             debug(DBG_ERR, "error in block %s, value of option RetryInterval is %d, must be 1-%d", block, retryinterval, conf->pdef->retryintervalmax);
3217             goto errexit;
3218         }
3219         conf->retryinterval = (uint8_t)retryinterval;
3220     } else
3221         conf->retryinterval = 255;
3222     
3223     if (retrycount != LONG_MIN) {
3224         if (retrycount < 0 || retrycount > conf->pdef->retrycountmax) {
3225             debug(DBG_ERR, "error in block %s, value of option RetryCount is %d, must be 0-%d", block, retrycount, conf->pdef->retrycountmax);
3226             goto errexit;
3227         }
3228         conf->retrycount = (uint8_t)retrycount;
3229     } else
3230         conf->retrycount = 255;
3231     
3232     if (resconf) {
3233         if (!mergesrvconf(resconf, conf))
3234             goto errexit;
3235         free(conf);
3236         conf = resconf;
3237         if (conf->dynamiclookupcommand) {
3238             free(conf->dynamiclookupcommand);
3239             conf->dynamiclookupcommand = NULL;
3240         }
3241     }
3242
3243     if (resconf || !conf->dynamiclookupcommand) {
3244         if (!compileserverconfig(conf, block))
3245             goto errexit;
3246     }
3247     
3248     if (resconf)
3249         return 1;
3250         
3251     if (!list_push(srvconfs, conf)) {
3252         debug(DBG_ERR, "malloc failed");
3253         goto errexit;
3254     }
3255     return 1;
3256
3257  errexit:
3258     free(conftype);
3259     free(rewriteinalias);
3260     freeclsrvconf(conf);
3261     return 0;
3262 }
3263
3264 int confrealm_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3265     char **servers = NULL, **accservers = NULL, *msg = NULL;
3266     uint8_t accresp = 0;
3267     
3268     debug(DBG_DBG, "confrealm_cb called for %s", block);
3269     
3270     if (!getgenericconfig(cf, block,
3271                      "server", CONF_MSTR, &servers,
3272                      "accountingServer", CONF_MSTR, &accservers,
3273                      "ReplyMessage", CONF_STR, &msg,
3274                      "AccountingResponse", CONF_BLN, &accresp,
3275                      NULL
3276                           ))
3277         debugx(1, DBG_ERR, "configuration error");
3278
3279     addrealm(realms, val, servers, accservers, msg, accresp);
3280     return 1;
3281 }
3282
3283 int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3284     struct tls *conf;
3285     
3286     debug(DBG_DBG, "conftls_cb called for %s", block);
3287     
3288     conf = malloc(sizeof(struct tls));
3289     if (!conf) {
3290         debug(DBG_ERR, "conftls_cb: malloc failed");
3291         return 0;
3292     }
3293     memset(conf, 0, sizeof(struct tls));
3294     
3295     if (!getgenericconfig(cf, block,
3296                      "CACertificateFile", CONF_STR, &conf->cacertfile,
3297                      "CACertificatePath", CONF_STR, &conf->cacertpath,
3298                      "CertificateFile", CONF_STR, &conf->certfile,
3299                      "CertificateKeyFile", CONF_STR, &conf->certkeyfile,
3300                      "CertificateKeyPassword", CONF_STR, &conf->certkeypwd,
3301                      "CRLCheck", CONF_BLN, &conf->crlcheck,
3302                      NULL
3303                           )) {
3304         debug(DBG_ERR, "conftls_cb: configuration error in block %s", val);
3305         goto errexit;
3306     }
3307     if (!conf->certfile || !conf->certkeyfile) {
3308         debug(DBG_ERR, "conftls_cb: TLSCertificateFile and TLSCertificateKeyFile must be specified in block %s", val);
3309         goto errexit;
3310     }
3311     if (!conf->cacertfile && !conf->cacertpath) {
3312         debug(DBG_ERR, "conftls_cb: CA Certificate file or path need to be specified in block %s", val);
3313         goto errexit;
3314     }
3315
3316     conf->name = stringcopy(val, 0);
3317     if (!conf->name) {
3318         debug(DBG_ERR, "conftls_cb: malloc failed");
3319         goto errexit;
3320     }
3321
3322     if (!hash_insert(tlsconfs, val, strlen(val), conf)) {
3323         debug(DBG_ERR, "conftls_cb: malloc failed");
3324         goto errexit;
3325     }
3326             
3327     debug(DBG_DBG, "conftls_cb: added TLS block %s", val);
3328     return 1;
3329
3330  errexit:
3331     free(conf->cacertfile);
3332     free(conf->cacertpath);
3333     free(conf->certfile);
3334     free(conf->certkeyfile);
3335     free(conf->certkeypwd);
3336     free(conf);
3337     return 0;
3338 }
3339
3340 int confrewrite_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val) {
3341     char **rmattrs = NULL, **rmvattrs = NULL, **addattrs = NULL, **modattrs = NULL;
3342     
3343     debug(DBG_DBG, "confrewrite_cb called for %s", block);
3344     
3345     if (!getgenericconfig(cf, block,
3346                      "removeAttribute", CONF_MSTR, &rmattrs,
3347                      "removeVendorAttribute", CONF_MSTR, &rmvattrs,
3348                      "addAttribute", CONF_MSTR, &addattrs,
3349                      "modifyAttribute", CONF_MSTR, &modattrs,
3350                      NULL
3351                           ))
3352         debugx(1, DBG_ERR, "configuration error");
3353     addrewrite(val, rmattrs, rmvattrs, addattrs, modattrs);
3354     return 1;
3355 }
3356
3357 void getmainconfig(const char *configfile) {
3358     long int loglevel = LONG_MIN;
3359     struct gconffile *cfs;
3360
3361     cfs = openconfigfile(configfile);
3362     memset(&options, 0, sizeof(options));
3363     
3364     clconfs = list_create();
3365     if (!clconfs)
3366         debugx(1, DBG_ERR, "malloc failed");
3367     
3368     srvconfs = list_create();
3369     if (!srvconfs)
3370         debugx(1, DBG_ERR, "malloc failed");
3371     
3372     realms = list_create();
3373     if (!realms)
3374         debugx(1, DBG_ERR, "malloc failed");    
3375  
3376     tlsconfs = hash_create();
3377     if (!tlsconfs)
3378         debugx(1, DBG_ERR, "malloc failed");
3379     
3380     rewriteconfs = hash_create();
3381     if (!rewriteconfs)
3382         debugx(1, DBG_ERR, "malloc failed");    
3383  
3384     if (!getgenericconfig(&cfs, NULL,
3385                           "ListenUDP", CONF_MSTR, &options.listenudp,
3386                           "ListenTCP", CONF_MSTR, &options.listentcp,
3387                           "ListenTLS", CONF_MSTR, &options.listentls,
3388                           "ListenDTLS", CONF_MSTR, &options.listendtls,
3389                           "ListenAccountingUDP", CONF_MSTR, &options.listenaccudp,
3390                           "SourceUDP", CONF_STR, &options.sourceudp,
3391                           "SourceTCP", CONF_STR, &options.sourcetcp,
3392                           "SourceTLS", CONF_STR, &options.sourcetls,
3393                           "SourceDTLS", CONF_STR, &options.sourcedtls,
3394                           "LogLevel", CONF_LINT, &loglevel,
3395                           "LogDestination", CONF_STR, &options.logdestination,
3396                           "LoopPrevention", CONF_BLN, &options.loopprevention,
3397                           "Client", CONF_CBK, confclient_cb, NULL,
3398                           "Server", CONF_CBK, confserver_cb, NULL,
3399                           "Realm", CONF_CBK, confrealm_cb, NULL,
3400                           "TLS", CONF_CBK, conftls_cb, NULL,
3401                           "Rewrite", CONF_CBK, confrewrite_cb, NULL,
3402                           NULL
3403                           ))
3404         debugx(1, DBG_ERR, "configuration error");
3405     
3406     if (loglevel != LONG_MIN) {
3407         if (loglevel < 1 || loglevel > 4)
3408             debugx(1, DBG_ERR, "error in %s, value of option LogLevel is %d, must be 1, 2, 3 or 4", configfile, loglevel);
3409         options.loglevel = (uint8_t)loglevel;
3410     }
3411 }
3412
3413 void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *pretend, uint8_t *loglevel, char **configfile) {
3414     int c;
3415
3416     while ((c = getopt(argc, argv, "c:d:fpv")) != -1) {
3417         switch (c) {
3418         case 'c':
3419             *configfile = optarg;
3420             break;
3421         case 'd':
3422             if (strlen(optarg) != 1 || *optarg < '1' || *optarg > '4')
3423                 debugx(1, DBG_ERR, "Debug level must be 1, 2, 3 or 4, not %s", optarg);
3424             *loglevel = *optarg - '0';
3425             break;
3426         case 'f':
3427             *foreground = 1;
3428             break;
3429         case 'p':
3430             *pretend = 1;
3431             break;
3432         case 'v':
3433                 debugx(0, DBG_ERR, "radsecproxy revision $Rev$");
3434         default:
3435             goto usage;
3436         }
3437     }
3438     if (!(argc - optind))
3439         return;
3440
3441  usage:
3442     debugx(1, DBG_ERR, "Usage:\n%s [ -c configfile ] [ -d debuglevel ] [ -f ] [ -p ] [ -v ]", argv[0]);
3443 }
3444
3445 #ifdef SYS_SOLARIS9
3446 int daemon(int a, int b) {
3447     int i;
3448
3449     if (fork())
3450         exit(0);
3451
3452     setsid();
3453
3454     for (i = 0; i < 3; i++) {
3455         close(i);
3456         open("/dev/null", O_RDWR);
3457     }
3458     return 1;
3459 }
3460 #endif
3461
3462 void *sighandler(void *arg) {
3463     sigset_t sigset;
3464     int sig;
3465
3466     for(;;) {
3467         sigemptyset(&sigset);
3468         sigaddset(&sigset, SIGPIPE);
3469         sigwait(&sigset, &sig);
3470         /* only get SIGPIPE right now, so could simplify below code */
3471         switch (sig) {
3472         case 0:
3473             /* completely ignoring this */
3474             break;
3475         case SIGPIPE:
3476             debug(DBG_WARN, "sighandler: got SIGPIPE, TLS write error?");
3477             break;
3478         default:
3479             debug(DBG_WARN, "sighandler: ignoring signal %d", sig);
3480         }
3481     }
3482 }
3483
3484 int main(int argc, char **argv) {
3485     pthread_t sigth;
3486     sigset_t sigset;
3487     struct list_node *entry;
3488     uint8_t foreground = 0, pretend = 0, loglevel = 0;
3489     char *configfile = NULL;
3490     struct clsrvconf *srvconf;
3491     int i;
3492     
3493     debug_init("radsecproxy");
3494     debug_set_level(DEBUG_LEVEL);
3495     
3496     getargs(argc, argv, &foreground, &pretend, &loglevel, &configfile);
3497     if (loglevel)
3498         debug_set_level(loglevel);
3499     getmainconfig(configfile ? configfile : CONFIG_MAIN);
3500     if (loglevel)
3501         options.loglevel = loglevel;
3502     else if (options.loglevel)
3503         debug_set_level(options.loglevel);
3504     if (!foreground)
3505         debug_set_destination(options.logdestination ? options.logdestination : "x-syslog:///");
3506     free(options.logdestination);
3507
3508     if (!list_first(clconfs))
3509         debugx(1, DBG_ERR, "No clients configured, nothing to do, exiting");
3510     if (!list_first(realms))
3511         debugx(1, DBG_ERR, "No realms configured, nothing to do, exiting");
3512
3513     if (pretend)
3514         debugx(0, DBG_ERR, "All OK so far; exiting since only pretending");
3515
3516     if (!foreground && (daemon(0, 0) < 0))
3517         debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
3518     
3519     debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
3520
3521     sigemptyset(&sigset);
3522     /* exit on all but SIGPIPE, ignore more? */
3523     sigaddset(&sigset, SIGPIPE);
3524     pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3525     pthread_create(&sigth, NULL, sighandler, NULL);
3526
3527     for (entry = list_first(srvconfs); entry; entry = list_next(entry)) {
3528         srvconf = (struct clsrvconf *)entry->data;
3529         if (srvconf->dynamiclookupcommand)
3530             continue;
3531         if (!addserver(srvconf))
3532             debugx(1, DBG_ERR, "failed to add server");
3533         if (pthread_create(&srvconf->servers->clientth, NULL, clientwr,
3534                            (void *)(srvconf->servers)))
3535             debugx(1, DBG_ERR, "pthread_create failed");
3536     }
3537     /* srcprotores for UDP no longer needed */
3538     if (srcprotores[RAD_UDP]) {
3539         freeaddrinfo(srcprotores[RAD_UDP]);
3540         srcprotores[RAD_UDP] = NULL;
3541     }
3542
3543     for (i = 0; protodefs[i].name; i++)
3544         if (protodefs[i].initextra)
3545             protodefs[i].initextra();
3546     
3547     if (find_clconf_type(RAD_TCP, NULL))
3548         createlisteners(RAD_TCP, options.listentcp);
3549     
3550     if (find_clconf_type(RAD_TLS, NULL))
3551         createlisteners(RAD_TLS, options.listentls);
3552     
3553     if (find_clconf_type(RAD_DTLS, NULL))
3554         createlisteners(RAD_DTLS, options.listendtls);
3555     
3556     if (find_clconf_type(RAD_UDP, NULL)) {
3557         createlisteners(RAD_UDP, options.listenudp);
3558         if (options.listenaccudp)
3559             createlisteners(RAD_UDP, options.listenaccudp);
3560     }
3561     
3562     /* just hang around doing nothing, anything to do here? */
3563     for (;;)
3564         sleep(1000);
3565 }