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