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