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