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