cleaned up some attribute parsing code
[radsecproxy.git] / radsecproxy.c
1 /*
2  * Copyright (C) 2006, 2007 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 /* TODO:
10  * accounting
11  * radius keep alives (server status)
12  * setsockopt(keepalive...), check if openssl has some keepalive feature
13 */
14
15 /* For UDP there is one server instance consisting of udpserverrd and udpserverth
16  *              rd is responsible for init and launching wr
17  * For TLS there is a server instance that launches tlsserverrd for each TLS peer
18  *          each tlsserverrd launches tlsserverwr
19  * For each UDP/TLS peer there is clientrd and clientwr, clientwr is responsible
20  *          for init and launching rd
21  *
22  * serverrd will receive a request, processes it and puts it in the requestq of
23  *          the appropriate clientwr
24  * clientwr monitors its requestq and sends requests
25  * clientrd looks for responses, processes them and puts them in the replyq of
26  *          the peer the request came from
27  * serverwr monitors its reply and sends replies
28  *
29  * In addition to the main thread, we have:
30  * If UDP peers are configured, there will be 2 + 2 * #peers UDP threads
31  * If TLS peers are configured, there will initially be 2 * #peers TLS threads
32  * For each TLS peer connecting to us there will be 2 more TLS threads
33  *       This is only for connected peers
34  * Example: With 3 UDP peer and 30 TLS peers, there will be a max of
35  *          1 + (2 + 2 * 3) + (2 * 30) + (2 * 30) = 129 threads
36 */
37
38 #include <sys/socket.h>
39 #include <netinet/in.h>
40 #include <netdb.h>
41 #include <string.h>
42 #include <unistd.h>
43 #include <sys/time.h>
44 #include <libgen.h>
45 #include <pthread.h>
46 #include <openssl/ssl.h>
47 #include <openssl/rand.h>
48 #include <openssl/err.h>
49 #include <openssl/md5.h>
50 #include <openssl/hmac.h>
51 #include "debug.h"
52 #include "radsecproxy.h"
53
54 static struct options options;
55 static struct client *clients;
56 static struct server *servers;
57
58 static int client_udp_count = 0;
59 static int client_tls_count = 0;
60 static int client_count = 0;
61 static int server_udp_count = 0;
62 static int server_tls_count = 0;
63 static int server_count = 0;
64
65 static struct peer *tcp_server_listen;
66 static struct peer *udp_server_listen;
67 static struct replyq udp_server_replyq;
68 static int udp_server_sock = -1;
69 static pthread_mutex_t *ssl_locks;
70 static long *ssl_lock_count;
71 static SSL_CTX *ssl_ctx = NULL;
72 extern int optind;
73 extern char *optarg;
74
75 /* callbacks for making OpenSSL thread safe */
76 unsigned long ssl_thread_id() {
77         return (unsigned long)pthread_self();
78 }
79
80 void ssl_locking_callback(int mode, int type, const char *file, int line) {
81     if (mode & CRYPTO_LOCK) {
82         pthread_mutex_lock(&ssl_locks[type]);
83         ssl_lock_count[type]++;
84     } else
85         pthread_mutex_unlock(&ssl_locks[type]);
86 }
87
88 static int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata) {
89     int pwdlen = strlen(userdata);
90     if (rwflag != 0 || pwdlen > size) /* not for decryption or too large */
91         return 0;
92     memcpy(buf, userdata, pwdlen);
93     return pwdlen;
94 }
95
96 static int verify_cb(int ok, X509_STORE_CTX *ctx) {
97   char buf[256];
98   X509 *err_cert;
99   int err, depth;
100
101   err_cert = X509_STORE_CTX_get_current_cert(ctx);
102   err = X509_STORE_CTX_get_error(ctx);
103   depth = X509_STORE_CTX_get_error_depth(ctx);
104
105   if (depth > MAX_CERT_DEPTH) {
106       ok = 0;
107       err = X509_V_ERR_CERT_CHAIN_TOO_LONG;
108       X509_STORE_CTX_set_error(ctx, err);
109   }
110
111   if (!ok) {
112       X509_NAME_oneline(X509_get_subject_name(err_cert), buf, 256);
113       debug(DBG_WARN, "verify error: num=%d:%s:depth=%d:%s", err, X509_verify_cert_error_string(err), depth, buf);
114
115       switch (err) {
116       case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
117           X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), buf, 256);
118           debug(DBG_WARN, "\tIssuer=%s", buf);
119           break;
120       case X509_V_ERR_CERT_NOT_YET_VALID:
121       case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
122           debug(DBG_WARN, "\tCertificate not yet valid");
123           break;
124       case X509_V_ERR_CERT_HAS_EXPIRED:
125           debug(DBG_WARN, "Certificate has expired");
126           break;
127       case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
128           debug(DBG_WARN, "Certificate no longer valid (after notAfter)");
129           break;
130       }
131   }
132 #ifdef DEBUG  
133   printf("certificate verify returns %d\n", ok);
134 #endif  
135   return ok;
136 }
137
138 SSL_CTX *ssl_init() {
139     SSL_CTX *ctx;
140     int i;
141     unsigned long error;
142     
143     if (!options.tlscertificatefile || !options.tlscertificatekeyfile)
144         debugx(1, DBG_ERR, "TLSCertificateFile and TLSCertificateKeyFile must be specified for TLS");
145
146     if (!options.tlscacertificatefile && !options.tlscacertificatepath)
147         debugx(1, DBG_ERR, "CA Certificate file/path need to be configured");
148
149     ssl_locks = malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t));
150     ssl_lock_count = OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
151     for (i = 0; i < CRYPTO_num_locks(); i++) {
152         ssl_lock_count[i] = 0;
153         pthread_mutex_init(&ssl_locks[i], NULL);
154     }
155     CRYPTO_set_id_callback(ssl_thread_id);
156     CRYPTO_set_locking_callback(ssl_locking_callback);
157
158     SSL_load_error_strings();
159     SSL_library_init();
160
161     while (!RAND_status()) {
162         time_t t = time(NULL);
163         pid_t pid = getpid();
164         RAND_seed((unsigned char *)&t, sizeof(time_t));
165         RAND_seed((unsigned char *)&pid, sizeof(pid));
166     }
167
168     ctx = SSL_CTX_new(TLSv1_method());
169     if (options.tlscertificatekeypassword) {
170         SSL_CTX_set_default_passwd_cb_userdata(ctx, options.tlscertificatekeypassword);
171         SSL_CTX_set_default_passwd_cb(ctx, pem_passwd_cb);
172     }
173     if (SSL_CTX_use_certificate_chain_file(ctx, options.tlscertificatefile) &&
174         SSL_CTX_use_PrivateKey_file(ctx, options.tlscertificatekeyfile, SSL_FILETYPE_PEM) &&
175         SSL_CTX_check_private_key(ctx) &&
176         SSL_CTX_load_verify_locations(ctx, options.tlscacertificatefile, options.tlscacertificatepath)) {
177         SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
178         SSL_CTX_set_verify_depth(ctx, MAX_CERT_DEPTH + 1);
179         return ctx;
180     }
181
182     while ((error = ERR_get_error()))
183         debug(DBG_ERR, "SSL: %s", ERR_error_string(error, NULL));
184     debug(DBG_ERR, "Error initialising SSL/TLS");
185     exit(1);
186 }    
187
188 #ifdef DEBUG
189 void printauth(char *s, unsigned char *t) {
190     int i;
191     printf("%s:", s);
192     for (i = 0; i < 16; i++)
193             printf("%02x ", t[i]);
194     printf("\n");
195 }
196 #endif
197
198 int resolvepeer(struct peer *peer, int ai_flags) {
199     struct addrinfo hints, *addrinfo;
200     
201     memset(&hints, 0, sizeof(hints));
202     hints.ai_socktype = (peer->type == 'T' ? SOCK_STREAM : SOCK_DGRAM);
203     hints.ai_family = AF_UNSPEC;
204     hints.ai_flags = ai_flags;
205     if (getaddrinfo(peer->host, peer->port, &hints, &addrinfo)) {
206         debug(DBG_WARN, "resolvepeer: can't resolve %s port %s", peer->host, peer->port);
207         return 0;
208     }
209
210     if (peer->addrinfo)
211         freeaddrinfo(peer->addrinfo);
212     peer->addrinfo = addrinfo;
213     return 1;
214 }         
215
216 int connecttoserver(struct addrinfo *addrinfo) {
217     int s;
218     struct addrinfo *res;
219     
220     for (res = addrinfo; res; res = res->ai_next) {
221         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
222         if (s < 0) {
223             debug(DBG_WARN, "connecttoserver: socket failed");
224             continue;
225         }
226         if (connect(s, res->ai_addr, res->ai_addrlen) == 0)
227             break;
228         debug(DBG_WARN, "connecttoserver: connect failed");
229         close(s);
230         s = -1;
231     }
232     return s;
233 }         
234
235 int bindtoaddr(struct addrinfo *addrinfo) {
236     int s, on = 1;
237     struct addrinfo *res;
238     
239     for (res = addrinfo; res; res = res->ai_next) {
240         s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
241         if (s < 0) {
242             debug(DBG_WARN, "bindtoaddr: socket failed");
243             continue;
244         }
245         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
246         if (!bind(s, res->ai_addr, res->ai_addrlen))
247             return s;
248         debug(DBG_WARN, "bindtoaddr: bind failed");
249         close(s);
250     }
251     return -1;
252 }         
253
254 /* returns the client with matching address, or NULL */
255 /* if client argument is not NULL, we only check that one client */
256 struct client *find_client(char type, struct sockaddr *addr, struct client *client) {
257     struct sockaddr_in6 *sa6;
258     struct in_addr *a4 = NULL;
259     struct client *c;
260     int i;
261     struct addrinfo *res;
262
263     if (addr->sa_family == AF_INET6) {
264         sa6 = (struct sockaddr_in6 *)addr;
265         if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr))
266             a4 = (struct in_addr *)&sa6->sin6_addr.s6_addr[12];
267     } else
268         a4 = &((struct sockaddr_in *)addr)->sin_addr;
269
270     c = (client ? client : clients);
271     for (i = 0; i < client_count; i++) {
272         if (c->peer.type == type)
273             for (res = c->peer.addrinfo; res; res = res->ai_next)
274                 if ((a4 && res->ai_family == AF_INET &&
275                      !memcmp(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, 4)) ||
276                     (res->ai_family == AF_INET6 &&
277                      !memcmp(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, 16)))
278                     return c;
279         if (client)
280             break;
281         c++;
282     }
283     return NULL;
284 }
285
286 /* returns the server with matching address, or NULL */
287 /* if server argument is not NULL, we only check that one server */
288 struct server *find_server(char type, struct sockaddr *addr, struct server *server) {
289     struct sockaddr_in6 *sa6;
290     struct in_addr *a4 = NULL;
291     struct server *s;
292     int i;
293     struct addrinfo *res;
294
295     if (addr->sa_family == AF_INET6) {
296         sa6 = (struct sockaddr_in6 *)addr;
297         if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr))
298             a4 = (struct in_addr *)&sa6->sin6_addr.s6_addr[12];
299     } else
300         a4 = &((struct sockaddr_in *)addr)->sin_addr;
301
302     s = (server ? server : servers);
303     for (i = 0; i < server_count; i++) {
304         if (s->peer.type == type)
305             for (res = s->peer.addrinfo; res; res = res->ai_next)
306                 if ((a4 && res->ai_family == AF_INET &&
307                      !memcmp(a4, &((struct sockaddr_in *)res->ai_addr)->sin_addr, 4)) ||
308                     (res->ai_family == AF_INET6 &&
309                      !memcmp(&sa6->sin6_addr, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr, 16)))
310                     return s;
311         if (server)
312             break;
313         s++;
314     }
315     return NULL;
316 }
317
318 /* exactly one of client and server must be non-NULL */
319 /* if *peer == NULL we return who we received from, else require it to be from peer */
320 /* return from in sa if not NULL */
321 unsigned char *radudpget(int s, struct client **client, struct server **server, struct sockaddr_storage *sa) {
322     int cnt, len;
323     void *f;
324     unsigned char buf[65536], *rad;
325     struct sockaddr_storage from;
326     socklen_t fromlen = sizeof(from);
327
328     for (;;) {
329         cnt = recvfrom(s, buf, sizeof(buf), 0, (struct sockaddr *)&from, &fromlen);
330         if (cnt == -1) {
331             debug(DBG_WARN, "radudpget: recv failed");
332             continue;
333         }
334         debug(DBG_DBG, "radudpget: got %d bytes from %s", cnt, addr2string((struct sockaddr *)&from, fromlen));
335
336         if (cnt < 20) {
337             debug(DBG_WARN, "radudpget: packet too small");
338             continue;
339         }
340     
341         len = RADLEN(buf);
342         if (len < 20) {
343             debug(DBG_WARN, "radudpget: length too small");
344             continue;
345         }
346
347         if (cnt < len) {
348             debug(DBG_WARN, "radudpget: packet smaller than length field in radius header");
349             continue;
350         }
351         if (cnt > len)
352             debug(DBG_DBG, "radudpget: packet was padded with %d bytes", cnt - len);
353
354         f = (client
355              ? (void *)find_client('U', (struct sockaddr *)&from, *client)
356              : (void *)find_server('U', (struct sockaddr *)&from, *server));
357         if (!f) {
358             debug(DBG_WARN, "radudpget: got packet from wrong or unknown UDP peer, ignoring");
359             continue;
360         }
361
362         rad = malloc(len);
363         if (rad)
364             break;
365         debug(DBG_ERR, "radudpget: malloc failed");
366     }
367     memcpy(rad, buf, len);
368     if (client)
369         *client = (struct client *)f; /* only need this if *client == NULL, but if not NULL *client == f here */
370     else
371         *server = (struct server *)f; /* only need this if *server == NULL, but if not NULL *server == f here */
372     if (sa)
373         *sa = from;
374     return rad;
375 }
376
377 int tlsverifycert(struct peer *peer) {
378     int l, loc;
379     X509 *cert;
380     X509_NAME *nm;
381     X509_NAME_ENTRY *e;
382     unsigned char *v;
383     unsigned long error;
384
385     if (SSL_get_verify_result(peer->ssl) != X509_V_OK) {
386         debug(DBG_ERR, "tlsverifycert: basic validation failed");
387         while ((error = ERR_get_error()))
388             debug(DBG_ERR, "tlsverifycert: TLS: %s", ERR_error_string(error, NULL));
389         return 0;
390     }
391
392     cert = SSL_get_peer_certificate(peer->ssl);
393     if (!cert) {
394         debug(DBG_ERR, "tlsverifycert: failed to obtain certificate");
395         return 0;
396     }
397     nm = X509_get_subject_name(cert);
398     loc = -1;
399     for (;;) {
400         loc = X509_NAME_get_index_by_NID(nm, NID_commonName, loc);
401         if (loc == -1)
402             break;
403         e = X509_NAME_get_entry(nm, loc);
404         l = ASN1_STRING_to_UTF8(&v, X509_NAME_ENTRY_get_data(e));
405         if (l < 0)
406             continue;
407 #ifdef DEBUG
408         {
409             int i;
410             printf("cn: ");
411             for (i = 0; i < l; i++)
412                 printf("%c", v[i]);
413             printf("\n");
414         }
415 #endif  
416         if (l == strlen(peer->host) && !strncasecmp(peer->host, (char *)v, l)) {
417             debug(DBG_DBG, "tlsverifycert: Found cn matching host %s, All OK", peer->host);
418             return 1;
419         }
420         debug(DBG_ERR, "tlsverifycert: cn not matching host %s", peer->host);
421     }
422     X509_free(cert);
423     return 0;
424 }
425
426 void tlsconnect(struct server *server, struct timeval *when, char *text) {
427     struct timeval now;
428     time_t elapsed;
429
430     debug(DBG_DBG, "tlsconnect called from %s", text);
431     pthread_mutex_lock(&server->lock);
432     if (when && memcmp(&server->lastconnecttry, when, sizeof(struct timeval))) {
433         /* already reconnected, nothing to do */
434         debug(DBG_DBG, "tlsconnect(%s): seems already reconnected", text);
435         pthread_mutex_unlock(&server->lock);
436         return;
437     }
438
439     debug(DBG_DBG, "tlsconnect %s", text);
440
441     for (;;) {
442         gettimeofday(&now, NULL);
443         elapsed = now.tv_sec - server->lastconnecttry.tv_sec;
444         if (server->connectionok) {
445             server->connectionok = 0;
446             sleep(10);
447         } else if (elapsed < 5)
448             sleep(10);
449         else if (elapsed < 600) {
450             debug(DBG_INFO, "tlsconnect: sleeping %lds", elapsed);
451             sleep(elapsed);
452         } else if (elapsed < 1000) {
453             debug(DBG_INFO, "tlsconnect: sleeping %ds", 900);
454             sleep(900);
455         } else
456             server->lastconnecttry.tv_sec = now.tv_sec;  /* no sleep at startup */
457         debug(DBG_WARN, "tlsconnect: trying to open TLS connection to %s port %s", server->peer.host, server->peer.port);
458         if (server->sock >= 0)
459             close(server->sock);
460         if ((server->sock = connecttoserver(server->peer.addrinfo)) < 0) {
461             debug(DBG_ERR, "tlsconnect: connecttoserver failed");
462             continue;
463         }
464         
465         SSL_free(server->peer.ssl);
466         server->peer.ssl = SSL_new(ssl_ctx);
467         SSL_set_fd(server->peer.ssl, server->sock);
468         if (SSL_connect(server->peer.ssl) > 0 && tlsverifycert(&server->peer))
469             break;
470     }
471     debug(DBG_WARN, "tlsconnect: TLS connection to %s port %s up", server->peer.host, server->peer.port);
472     gettimeofday(&server->lastconnecttry, NULL);
473     pthread_mutex_unlock(&server->lock);
474 }
475
476 unsigned char *radtlsget(SSL *ssl) {
477     int cnt, total, len;
478     unsigned char buf[4], *rad;
479
480     for (;;) {
481         for (total = 0; total < 4; total += cnt) {
482             cnt = SSL_read(ssl, buf + total, 4 - total);
483             if (cnt <= 0) {
484                 debug(DBG_ERR, "radtlsget: connection lost");
485                 if (SSL_get_error(ssl, cnt) == SSL_ERROR_ZERO_RETURN) {
486                     /* remote end sent close_notify, send one back */
487                     SSL_shutdown(ssl);
488                 }
489                 return NULL;
490             }
491         }
492
493         len = RADLEN(buf);
494         rad = malloc(len);
495         if (!rad) {
496             debug(DBG_ERR, "radtlsget: malloc failed");
497             continue;
498         }
499         memcpy(rad, buf, 4);
500
501         for (; total < len; total += cnt) {
502             cnt = SSL_read(ssl, rad + total, len - total);
503             if (cnt <= 0) {
504                 debug(DBG_ERR, "radtlsget: connection lost");
505                 if (SSL_get_error(ssl, cnt) == SSL_ERROR_ZERO_RETURN) {
506                     /* remote end sent close_notify, send one back */
507                     SSL_shutdown(ssl);
508                 }
509                 free(rad);
510                 return NULL;
511             }
512         }
513     
514         if (total >= 20)
515             break;
516         
517         free(rad);
518         debug(DBG_WARN, "radtlsget: packet smaller than minimum radius size");
519     }
520     
521     debug(DBG_DBG, "radtlsget: got %d bytes", total);
522     return rad;
523 }
524
525 int clientradput(struct server *server, unsigned char *rad) {
526     int cnt;
527     size_t len;
528     unsigned long error;
529     struct timeval lastconnecttry;
530     
531     len = RADLEN(rad);
532     if (server->peer.type == 'U') {
533         if (send(server->sock, rad, len, 0) >= 0) {
534             debug(DBG_DBG, "clienradput: sent UDP of length %d to %s port %s", len, server->peer.host, server->peer.port);
535             return 1;
536         }
537         debug(DBG_WARN, "clientradput: send failed");
538         return 0;
539     }
540
541     lastconnecttry = server->lastconnecttry;
542     while ((cnt = SSL_write(server->peer.ssl, rad, len)) <= 0) {
543         while ((error = ERR_get_error()))
544             debug(DBG_ERR, "clientradput: TLS: %s", ERR_error_string(error, NULL));
545         tlsconnect(server, &lastconnecttry, "clientradput");
546         lastconnecttry = server->lastconnecttry;
547     }
548
549     server->connectionok = 1;
550     debug(DBG_DBG, "clientradput: Sent %d bytes, Radius packet of length %d to TLS peer %s",
551            cnt, len, server->peer.host);
552     return 1;
553 }
554
555 int radsign(unsigned char *rad, unsigned char *sec) {
556     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
557     static unsigned char first = 1;
558     static EVP_MD_CTX mdctx;
559     unsigned int md_len;
560     int result;
561     
562     pthread_mutex_lock(&lock);
563     if (first) {
564         EVP_MD_CTX_init(&mdctx);
565         first = 0;
566     }
567
568     result = (EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) &&
569         EVP_DigestUpdate(&mdctx, rad, RADLEN(rad)) &&
570         EVP_DigestUpdate(&mdctx, sec, strlen((char *)sec)) &&
571         EVP_DigestFinal_ex(&mdctx, rad + 4, &md_len) &&
572         md_len == 16);
573     pthread_mutex_unlock(&lock);
574     return result;
575 }
576
577 int validauth(unsigned char *rad, unsigned char *reqauth, unsigned char *sec) {
578     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
579     static unsigned char first = 1;
580     static EVP_MD_CTX mdctx;
581     unsigned char hash[EVP_MAX_MD_SIZE];
582     unsigned int len;
583     int result;
584     
585     pthread_mutex_lock(&lock);
586     if (first) {
587         EVP_MD_CTX_init(&mdctx);
588         first = 0;
589     }
590
591     len = RADLEN(rad);
592     
593     result = (EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) &&
594               EVP_DigestUpdate(&mdctx, rad, 4) &&
595               EVP_DigestUpdate(&mdctx, reqauth, 16) &&
596               (len <= 20 || EVP_DigestUpdate(&mdctx, rad + 20, len - 20)) &&
597               EVP_DigestUpdate(&mdctx, sec, strlen((char *)sec)) &&
598               EVP_DigestFinal_ex(&mdctx, hash, &len) &&
599               len == 16 &&
600               !memcmp(hash, rad + 4, 16));
601     pthread_mutex_unlock(&lock);
602     return result;
603 }
604               
605 int checkmessageauth(unsigned char *rad, uint8_t *authattr, char *secret) {
606     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
607     static unsigned char first = 1;
608     static HMAC_CTX hmacctx;
609     unsigned int md_len;
610     uint8_t auth[16], hash[EVP_MAX_MD_SIZE];
611     
612     pthread_mutex_lock(&lock);
613     if (first) {
614         HMAC_CTX_init(&hmacctx);
615         first = 0;
616     }
617
618     memcpy(auth, authattr, 16);
619     memset(authattr, 0, 16);
620     md_len = 0;
621     HMAC_Init_ex(&hmacctx, secret, strlen(secret), EVP_md5(), NULL);
622     HMAC_Update(&hmacctx, rad, RADLEN(rad));
623     HMAC_Final(&hmacctx, hash, &md_len);
624     memcpy(authattr, auth, 16);
625     if (md_len != 16) {
626         debug(DBG_WARN, "message auth computation failed");
627         pthread_mutex_unlock(&lock);
628         return 0;
629     }
630
631     if (memcmp(auth, hash, 16)) {
632         debug(DBG_WARN, "message authenticator, wrong value");
633         pthread_mutex_unlock(&lock);
634         return 0;
635     }   
636         
637     pthread_mutex_unlock(&lock);
638     return 1;
639 }
640
641 int createmessageauth(unsigned char *rad, unsigned char *authattrval, char *secret) {
642     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
643     static unsigned char first = 1;
644     static HMAC_CTX hmacctx;
645     unsigned int md_len;
646
647     if (!authattrval)
648         return 1;
649     
650     pthread_mutex_lock(&lock);
651     if (first) {
652         HMAC_CTX_init(&hmacctx);
653         first = 0;
654     }
655
656     memset(authattrval, 0, 16);
657     md_len = 0;
658     HMAC_Init_ex(&hmacctx, secret, strlen(secret), EVP_md5(), NULL);
659     HMAC_Update(&hmacctx, rad, RADLEN(rad));
660     HMAC_Final(&hmacctx, authattrval, &md_len);
661     if (md_len != 16) {
662         debug(DBG_WARN, "message auth computation failed");
663         pthread_mutex_unlock(&lock);
664         return 0;
665     }
666
667     pthread_mutex_unlock(&lock);
668     return 1;
669 }
670
671 unsigned char *attrget(unsigned char *attrs, int length, uint8_t type, uint8_t *len) {
672     while (length > 1) {
673         if (attrs[RAD_Attr_Type] == type) {
674             if (len)
675                 *len = attrs[RAD_Attr_Length] - 2;
676             return &attrs[RAD_Attr_Value];
677         }
678         length -= attrs[RAD_Attr_Length];
679         attrs += attrs[RAD_Attr_Length];
680     }
681     return NULL;
682 }
683
684 void sendrq(struct server *to, struct client *from, struct request *rq) {
685     int i;
686     uint8_t *attrval;
687     
688     pthread_mutex_lock(&to->newrq_mutex);
689     /* might simplify if only try nextid, might be ok */
690     for (i = to->nextid; i < MAX_REQUESTS; i++)
691         if (!to->requests[i].buf)
692             break;
693     if (i == MAX_REQUESTS) {
694         for (i = 0; i < to->nextid; i++)
695             if (!to->requests[i].buf)
696                 break;
697         if (i == to->nextid) {
698             debug(DBG_WARN, "No room in queue, dropping request");
699             pthread_mutex_unlock(&to->newrq_mutex);
700             return;
701         }
702     }
703     
704     to->nextid = i + 1;
705     rq->buf[1] = (char)i;
706     debug(DBG_DBG, "sendrq: inserting packet with id %d in queue for %s", i, to->peer.host);
707
708     attrval = attrget(rq->buf + 20, RADLEN(rq->buf) - 20, RAD_Attr_Message_Authenticator, NULL);
709     if (attrval && !createmessageauth(rq->buf, attrval, to->peer.secret))
710         return;
711
712     to->requests[i] = *rq;
713
714     if (!to->newrq) {
715         to->newrq = 1;
716         debug(DBG_DBG, "signalling client writer");
717         pthread_cond_signal(&to->newrq_cond);
718     }
719     pthread_mutex_unlock(&to->newrq_mutex);
720 }
721
722 void sendreply(struct client *to, struct server *from, unsigned char *buf, struct sockaddr_storage *tosa) {
723     struct replyq *replyq = to->replyq;
724     
725     pthread_mutex_lock(&replyq->count_mutex);
726     if (replyq->count == replyq->size) {
727         debug(DBG_WARN, "No room in queue, dropping request");
728         pthread_mutex_unlock(&replyq->count_mutex);
729         return;
730     }
731
732     replyq->replies[replyq->count].buf = buf;
733     if (tosa)
734         replyq->replies[replyq->count].tosa = *tosa;
735     replyq->count++;
736
737     if (replyq->count == 1) {
738         debug(DBG_DBG, "signalling client writer");
739         pthread_cond_signal(&replyq->count_cond);
740     }
741     pthread_mutex_unlock(&replyq->count_mutex);
742 }
743
744 int pwdencrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
745     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
746     static unsigned char first = 1;
747     static EVP_MD_CTX mdctx;
748     unsigned char hash[EVP_MAX_MD_SIZE], *input;
749     unsigned int md_len;
750     uint8_t i, offset = 0, out[128];
751     
752     pthread_mutex_lock(&lock);
753     if (first) {
754         EVP_MD_CTX_init(&mdctx);
755         first = 0;
756     }
757
758     input = auth;
759     for (;;) {
760         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
761             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
762             !EVP_DigestUpdate(&mdctx, input, 16) ||
763             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
764             md_len != 16) {
765             pthread_mutex_unlock(&lock);
766             return 0;
767         }
768         for (i = 0; i < 16; i++)
769             out[offset + i] = hash[i] ^ in[offset + i];
770         input = out + offset - 16;
771         offset += 16;
772         if (offset == len)
773             break;
774     }
775     memcpy(in, out, len);
776     pthread_mutex_unlock(&lock);
777     return 1;
778 }
779
780 int pwddecrypt(uint8_t *in, uint8_t len, char *shared, uint8_t sharedlen, uint8_t *auth) {
781     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
782     static unsigned char first = 1;
783     static EVP_MD_CTX mdctx;
784     unsigned char hash[EVP_MAX_MD_SIZE], *input;
785     unsigned int md_len;
786     uint8_t i, offset = 0, out[128];
787     
788     pthread_mutex_lock(&lock);
789     if (first) {
790         EVP_MD_CTX_init(&mdctx);
791         first = 0;
792     }
793
794     input = auth;
795     for (;;) {
796         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
797             !EVP_DigestUpdate(&mdctx, (uint8_t *)shared, sharedlen) ||
798             !EVP_DigestUpdate(&mdctx, input, 16) ||
799             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
800             md_len != 16) {
801             pthread_mutex_unlock(&lock);
802             return 0;
803         }
804         for (i = 0; i < 16; i++)
805             out[offset + i] = hash[i] ^ in[offset + i];
806         input = in + offset;
807         offset += 16;
808         if (offset == len)
809             break;
810     }
811     memcpy(in, out, len);
812     pthread_mutex_unlock(&lock);
813     return 1;
814 }
815
816 int msmppencrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
817     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
818     static unsigned char first = 1;
819     static EVP_MD_CTX mdctx;
820     unsigned char hash[EVP_MAX_MD_SIZE];
821     unsigned int md_len;
822     uint8_t i, offset;
823     
824     pthread_mutex_lock(&lock);
825     if (first) {
826         EVP_MD_CTX_init(&mdctx);
827         first = 0;
828     }
829
830 #if 0    
831     printf("msppencrypt auth in: ");
832     for (i = 0; i < 16; i++)
833         printf("%02x ", auth[i]);
834     printf("\n");
835     
836     printf("msppencrypt salt in: ");
837     for (i = 0; i < 2; i++)
838         printf("%02x ", salt[i]);
839     printf("\n");
840     
841     printf("msppencrypt in: ");
842     for (i = 0; i < len; i++)
843         printf("%02x ", text[i]);
844     printf("\n");
845 #endif
846     
847     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
848         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
849         !EVP_DigestUpdate(&mdctx, auth, 16) ||
850         !EVP_DigestUpdate(&mdctx, salt, 2) ||
851         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
852         pthread_mutex_unlock(&lock);
853         return 0;
854     }
855
856 #if 0    
857     printf("msppencrypt hash: ");
858     for (i = 0; i < 16; i++)
859         printf("%02x ", hash[i]);
860     printf("\n");
861 #endif
862     
863     for (i = 0; i < 16; i++)
864         text[i] ^= hash[i];
865     
866     for (offset = 16; offset < len; offset += 16) {
867 #if 0   
868         printf("text + offset - 16 c(%d): ", offset / 16);
869         for (i = 0; i < 16; i++)
870             printf("%02x ", (text + offset - 16)[i]);
871         printf("\n");
872 #endif
873         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
874             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
875             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
876             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
877             md_len != 16) {
878             pthread_mutex_unlock(&lock);
879             return 0;
880         }
881 #if 0   
882         printf("msppencrypt hash: ");
883         for (i = 0; i < 16; i++)
884             printf("%02x ", hash[i]);
885         printf("\n");
886 #endif    
887         
888         for (i = 0; i < 16; i++)
889             text[offset + i] ^= hash[i];
890     }
891     
892 #if 0
893     printf("msppencrypt out: ");
894     for (i = 0; i < len; i++)
895         printf("%02x ", text[i]);
896     printf("\n");
897 #endif
898
899     pthread_mutex_unlock(&lock);
900     return 1;
901 }
902
903 int msmppdecrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, uint8_t *auth, uint8_t *salt) {
904     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
905     static unsigned char first = 1;
906     static EVP_MD_CTX mdctx;
907     unsigned char hash[EVP_MAX_MD_SIZE];
908     unsigned int md_len;
909     uint8_t i, offset;
910     char plain[255];
911     
912     pthread_mutex_lock(&lock);
913     if (first) {
914         EVP_MD_CTX_init(&mdctx);
915         first = 0;
916     }
917
918 #if 0    
919     printf("msppdecrypt auth in: ");
920     for (i = 0; i < 16; i++)
921         printf("%02x ", auth[i]);
922     printf("\n");
923     
924     printf("msppedecrypt salt in: ");
925     for (i = 0; i < 2; i++)
926         printf("%02x ", salt[i]);
927     printf("\n");
928     
929     printf("msppedecrypt in: ");
930     for (i = 0; i < len; i++)
931         printf("%02x ", text[i]);
932     printf("\n");
933 #endif
934     
935     if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
936         !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
937         !EVP_DigestUpdate(&mdctx, auth, 16) ||
938         !EVP_DigestUpdate(&mdctx, salt, 2) ||
939         !EVP_DigestFinal_ex(&mdctx, hash, &md_len)) {
940         pthread_mutex_unlock(&lock);
941         return 0;
942     }
943
944 #if 0    
945     printf("msppedecrypt hash: ");
946     for (i = 0; i < 16; i++)
947         printf("%02x ", hash[i]);
948     printf("\n");
949 #endif
950     
951     for (i = 0; i < 16; i++)
952         plain[i] = text[i] ^ hash[i];
953     
954     for (offset = 16; offset < len; offset += 16) {
955 #if 0   
956         printf("text + offset - 16 c(%d): ", offset / 16);
957         for (i = 0; i < 16; i++)
958             printf("%02x ", (text + offset - 16)[i]);
959         printf("\n");
960 #endif
961         if (!EVP_DigestInit_ex(&mdctx, EVP_md5(), NULL) ||
962             !EVP_DigestUpdate(&mdctx, shared, sharedlen) ||
963             !EVP_DigestUpdate(&mdctx, text + offset - 16, 16) ||
964             !EVP_DigestFinal_ex(&mdctx, hash, &md_len) ||
965             md_len != 16) {
966             pthread_mutex_unlock(&lock);
967             return 0;
968         }
969 #if 0   
970     printf("msppedecrypt hash: ");
971     for (i = 0; i < 16; i++)
972         printf("%02x ", hash[i]);
973     printf("\n");
974 #endif    
975
976     for (i = 0; i < 16; i++)
977         plain[offset + i] = text[offset + i] ^ hash[i];
978     }
979
980     memcpy(text, plain, len);
981 #if 0
982     printf("msppedecrypt out: ");
983     for (i = 0; i < len; i++)
984         printf("%02x ", text[i]);
985     printf("\n");
986 #endif
987
988     pthread_mutex_unlock(&lock);
989     return 1;
990 }
991
992 struct server *id2server(char *id, uint8_t len) {
993     int i;
994     char **realm, *idrealm;
995
996     idrealm = strchr(id, '@');
997     if (idrealm) {
998         idrealm++;
999         len -= idrealm - id;
1000     } else {
1001         idrealm = "-";
1002         len = 1;
1003     }
1004     for (i = 0; i < server_count; i++) {
1005         for (realm = servers[i].realms; *realm; realm++) {
1006             if ((strlen(*realm) == 1 && **realm == '*') ||
1007                 (strlen(*realm) == len && !memcmp(idrealm, *realm, len))) {
1008                 debug(DBG_DBG, "found matching realm: %s, host %s", *realm, servers[i].peer.host);
1009                 return servers + i;
1010             }
1011         }
1012     }
1013     return NULL;
1014 }
1015
1016 int rqinqueue(struct server *to, struct client *from, uint8_t id) {
1017     int i;
1018     
1019     pthread_mutex_lock(&to->newrq_mutex);
1020     for (i = 0; i < MAX_REQUESTS; i++)
1021         if (to->requests[i].buf && to->requests[i].origid == id && to->requests[i].from == from)
1022             break;
1023     pthread_mutex_unlock(&to->newrq_mutex);
1024     
1025     return i < MAX_REQUESTS;
1026 }
1027
1028 int attrvalidate(unsigned char *attrs, int length) {
1029     while (length > 1) {
1030         if (attrs[RAD_Attr_Length] < 2) {
1031             debug(DBG_WARN, "attrvalidate: invalid attribute length %d", attrs[RAD_Attr_Length]);
1032             return 0;
1033         }
1034         length -= attrs[RAD_Attr_Length];
1035         if (length < 0) {
1036             debug(DBG_WARN, "attrvalidate: attribute length %d exceeds packet length", attrs[RAD_Attr_Length]);
1037             return 0;
1038         }
1039         attrs += attrs[RAD_Attr_Length];
1040     }
1041     if (length)
1042         debug(DBG_WARN, "attrvalidate: malformed packet? remaining byte after last attribute");
1043     return 1;
1044 }
1045
1046 struct server *radsrv(struct request *rq, unsigned char *buf, struct client *from) {
1047     uint8_t code, id, *auth, *attrs, attrvallen, *attrval;
1048     uint16_t len;
1049     struct server *to;
1050     char username[256];
1051     unsigned char newauth[16];
1052 #ifdef DEBUG
1053     int i;
1054 #endif    
1055     
1056     code = *(uint8_t *)buf;
1057     id = *(uint8_t *)(buf + 1);
1058     len = RADLEN(buf);
1059     auth = (uint8_t *)(buf + 4);
1060
1061     debug(DBG_DBG, "radsrv: code %d, id %d, length %d", code, id, len);
1062     
1063     if (code != RAD_Access_Request) {
1064         debug(DBG_INFO, "radsrv: server currently accepts only access-requests, ignoring");
1065         return NULL;
1066     }
1067
1068     len -= 20;
1069     attrs = buf + 20;
1070
1071     if (!attrvalidate(attrs, len)) {
1072         debug(DBG_WARN, "radsrv: attribute validation failed, ignoring packet");
1073         return NULL;
1074     }
1075         
1076     attrval = attrget(attrs, len, RAD_Attr_User_Name, &attrvallen);
1077     if (!attrval) {
1078         debug(DBG_WARN, "radsrv: ignoring request, no username attribute");
1079         return NULL;
1080     }
1081     memcpy(username, attrval, attrvallen);
1082     username[attrvallen] = '\0';
1083     debug(DBG_DBG, "Access Request with username: %s", username);
1084     
1085     to = id2server(username, attrvallen);
1086     if (!to) {
1087         debug(DBG_INFO, "radsrv: ignoring request, don't know where to send it");
1088         return NULL;
1089     }
1090     
1091     if (rqinqueue(to, from, id)) {
1092         debug(DBG_INFO, "radsrv: ignoring request from host %s with id %d, already got one", from->peer.host, id);
1093         return NULL;
1094     }
1095
1096     attrval = attrget(attrs, len, RAD_Attr_Message_Authenticator, &attrvallen);
1097     if (attrval && (attrvallen != 16 || !checkmessageauth(buf, attrval, from->peer.secret))) {
1098         debug(DBG_WARN, "radsrv: message authentication failed");
1099         return NULL;
1100     }
1101
1102     if (!RAND_bytes(newauth, 16)) {
1103         debug(DBG_WARN, "radsrv: failed to generate random auth");
1104         return NULL;
1105     }
1106
1107 #ifdef DEBUG    
1108     printauth("auth", auth);
1109     printauth("newauth", newauth);
1110 #endif
1111     
1112     attrval = attrget(attrs, len, RAD_Attr_User_Password, &attrvallen);
1113     if (attrval) {
1114         debug(DBG_DBG, "radsrv: found userpwdattr with value length %d", attrvallen);
1115         if (attrvallen < 16 || attrvallen > 128 || attrvallen % 16) {
1116             debug(DBG_WARN, "radsrv: invalid user password length");
1117             return NULL;
1118         }
1119         
1120         if (!pwddecrypt(attrval, attrvallen, from->peer.secret, strlen(from->peer.secret), auth)) {
1121             debug(DBG_WARN, "radsrv: cannot decrypt password");
1122             return NULL;
1123         }
1124 #ifdef DEBUG
1125         printf("radsrv: password: ");
1126         for (i = 0; i < attrvallen; i++)
1127             printf("%02x ", attrval[i]);
1128         printf("\n");
1129 #endif  
1130         if (!pwdencrypt(attrval, attrvallen, to->peer.secret, strlen(to->peer.secret), newauth)) {
1131             debug(DBG_WARN, "radsrv: cannot encrypt password");
1132             return NULL;
1133         }
1134     }
1135     
1136     attrval = attrget(attrs, len, RAD_Attr_Tunnel_Password, &attrvallen);
1137     if (attrval) {
1138         debug(DBG_DBG, "radsrv: found tunnelpwdattr with value length %d", attrvallen);
1139         if (attrvallen < 16 || attrvallen > 128 || attrvallen % 16) {
1140             debug(DBG_WARN, "radsrv: invalid user password length");
1141             return NULL;
1142         }
1143         
1144         if (!pwddecrypt(attrval, attrvallen, from->peer.secret, strlen(from->peer.secret), auth)) {
1145             debug(DBG_WARN, "radsrv: cannot decrypt password");
1146             return NULL;
1147         }
1148 #ifdef DEBUG    
1149         printf("radsrv: password: ");
1150         for (i = 0; i < attrvallen; i++)
1151             printf("%02x ", attrval[i]);
1152         printf("\n");
1153 #endif  
1154         if (!pwdencrypt(attrval, attrvallen, to->peer.secret, strlen(to->peer.secret), newauth)) {
1155             debug(DBG_WARN, "radsrv: cannot encrypt password");
1156             return NULL;
1157         }
1158     }
1159
1160     rq->buf = buf;
1161     rq->from = from;
1162     rq->origid = id;
1163     memcpy(rq->origauth, auth, 16);
1164     memcpy(auth, newauth, 16);
1165 #ifdef DEBUG    
1166     printauth("rq->origauth", (unsigned char *)rq->origauth);
1167     printauth("auth", auth);
1168 #endif    
1169     return to;
1170 }
1171
1172 void *clientrd(void *arg) {
1173     struct server *server = (struct server *)arg;
1174     struct client *from;
1175     int i, len, sublen;
1176     unsigned char *buf, *messageauth, *subattrs, *attrs, *attrval;
1177     uint8_t attrvallen;
1178     struct sockaddr_storage fromsa;
1179     struct timeval lastconnecttry;
1180     char tmp[255];
1181     
1182     for (;;) {
1183         lastconnecttry = server->lastconnecttry;
1184         buf = (server->peer.type == 'U' ? radudpget(server->sock, NULL, &server, NULL) : radtlsget(server->peer.ssl));
1185         if (!buf && server->peer.type == 'T') {
1186             tlsconnect(server, &lastconnecttry, "clientrd");
1187             continue;
1188         }
1189     
1190         server->connectionok = 1;
1191
1192         i = buf[1]; /* i is the id */
1193
1194         switch (*buf) {
1195         case RAD_Access_Accept:
1196             debug(DBG_DBG, "got Access Accept with id %d", i);
1197             break;
1198         case RAD_Access_Reject:
1199             debug(DBG_DBG, "got Access Reject with id %d", i);
1200             break;
1201         case RAD_Access_Challenge:
1202             debug(DBG_DBG, "got Access Challenge with id %d", i);
1203             break;
1204         default:
1205             debug(DBG_INFO, "clientrd: discarding, only accept access accept, access reject and access challenge messages");
1206             continue;
1207         }
1208         
1209         pthread_mutex_lock(&server->newrq_mutex);
1210         if (!server->requests[i].buf || !server->requests[i].tries) {
1211             pthread_mutex_unlock(&server->newrq_mutex);
1212             debug(DBG_INFO, "clientrd: no matching request sent with this id, ignoring");
1213             continue;
1214         }
1215
1216         if (server->requests[i].received) {
1217             pthread_mutex_unlock(&server->newrq_mutex);
1218             debug(DBG_INFO, "clientrd: already received, ignoring");
1219             continue;
1220         }
1221         
1222         if (!validauth(buf, server->requests[i].buf + 4, (unsigned char *)server->peer.secret)) {
1223             pthread_mutex_unlock(&server->newrq_mutex);
1224             debug(DBG_WARN, "clientrd: invalid auth, ignoring");
1225             continue;
1226         }
1227         
1228         from = server->requests[i].from;
1229         len = RADLEN(buf) - 20;
1230         attrs = buf + 20;
1231
1232         if (!attrvalidate(attrs, len)) {
1233             debug(DBG_WARN, "clientrd: attribute validation failed, ignoring packet");
1234             continue;
1235         }
1236         
1237         /* Message Authenticator */
1238         messageauth = attrget(attrs, len, RAD_Attr_Message_Authenticator, &attrvallen);
1239         if (messageauth) {
1240             if (attrvallen != 16) {
1241                 debug(DBG_WARN, "clientrd: illegal message auth attribute length, ignoring packet");
1242                 continue;
1243             }
1244             memcpy(tmp, buf + 4, 16);
1245             memcpy(buf + 4, server->requests[i].buf + 4, 16);
1246             if (!checkmessageauth(buf, messageauth, server->peer.secret)) {
1247                 debug(DBG_WARN, "clientrd: message authentication failed");
1248                 continue;
1249             }
1250             memcpy(buf + 4, tmp, 16);
1251             debug(DBG_DBG, "clientrd: message auth ok");
1252         }
1253
1254         /* MS MPPE */
1255         attrval = attrget(attrs, len, RAD_Attr_Vendor_Specific, &attrvallen);
1256         if (attrval && attrvallen > 4 && ((uint16_t *)attrval)[0] == 0 && ntohs(((uint16_t *)attrval)[1]) == 311) { /* 311 == MS */
1257             sublen = attrvallen - 4;
1258             subattrs = attrval + 4;
1259             if (!attrvalidate(subattrs, sublen)) {
1260                 debug(DBG_WARN, "radsrv: MS attribute validation failed, ignoring packet");
1261                 continue;
1262             }
1263             
1264             attrval = attrget(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Send_Key, &attrvallen);
1265             if (attrval) {
1266                 debug(DBG_DBG, "clientrd: Got MS MPPE");
1267                 if (attrvallen < 18)
1268                     continue;
1269                 if (!msmppdecrypt(attrval + 2, attrvallen - 2, (unsigned char *)server->peer.secret,
1270                                   strlen(server->peer.secret), server->requests[i].buf + 4, attrval)) {
1271                     debug(DBG_WARN, "clientrd: failed to decrypt msppe key");
1272                     continue;
1273                 }
1274                 if (!msmppencrypt(attrval + 2, attrvallen - 2, (unsigned char *)from->peer.secret,
1275                                   strlen(from->peer.secret), (unsigned char *)server->requests[i].origauth, attrval)) {
1276                     debug(DBG_WARN, "clientrd: failed to encrypt msppe key");
1277                     continue;
1278                 }
1279             }
1280             
1281             attrval = attrget(subattrs, sublen, RAD_VS_ATTR_MS_MPPE_Recv_Key, &attrvallen);
1282             if (attrval) {
1283                 debug(DBG_DBG, "clientrd: Got MS MPPE");
1284                 if (attrvallen < 18)
1285                     continue;
1286                 if (!msmppdecrypt(attrval + 2, attrvallen - 2, (unsigned char *)server->peer.secret,
1287                                   strlen(server->peer.secret), server->requests[i].buf + 4, attrval)) {
1288                     debug(DBG_WARN, "clientrd: failed to decrypt msppe key");
1289                     continue;
1290                 }
1291                 if (!msmppencrypt(attrval + 2, attrvallen - 2, (unsigned char *)from->peer.secret,
1292                                   strlen(from->peer.secret), (unsigned char *)server->requests[i].origauth, attrval)) {
1293                     debug(DBG_WARN, "clientrd: failed to encrypt msppe key");
1294                     continue;
1295                 }
1296             }
1297         }
1298
1299         /* log DBG_INFO that received access accept/reject and username attr from original request */
1300         
1301         /* once we set received = 1, requests[i] may be reused */
1302         buf[1] = (char)server->requests[i].origid;
1303         memcpy(buf + 4, server->requests[i].origauth, 16);
1304 #ifdef DEBUG    
1305         printauth("origauth/buf+4", buf + 4);
1306 #endif
1307         
1308         if (messageauth) {
1309             if (!createmessageauth(buf, messageauth, from->peer.secret))
1310                 continue;
1311             debug(DBG_DBG, "clientrd: computed messageauthattr");
1312         }
1313
1314         if (from->peer.type == 'U')
1315             fromsa = server->requests[i].fromsa;
1316         server->requests[i].received = 1;
1317         pthread_mutex_unlock(&server->newrq_mutex);
1318
1319         if (!radsign(buf, (unsigned char *)from->peer.secret)) {
1320             debug(DBG_WARN, "clientrd: failed to sign message");
1321             continue;
1322         }
1323 #ifdef DEBUG    
1324         printauth("signedorigauth/buf+4", buf + 4);
1325 #endif  
1326         debug(DBG_DBG, "clientrd: giving packet back to where it came from");
1327         sendreply(from, server, buf, from->peer.type == 'U' ? &fromsa : NULL);
1328     }
1329 }
1330
1331 void *clientwr(void *arg) {
1332     struct server *server = (struct server *)arg;
1333     struct request *rq;
1334     pthread_t clientrdth;
1335     int i;
1336     uint8_t rnd;
1337     struct timeval now, lastsend;
1338     struct timespec timeout;
1339
1340     memset(&lastsend, 0, sizeof(struct timeval));
1341     memset(&timeout, 0, sizeof(struct timespec));
1342
1343     if (server->peer.type == 'U') {
1344         if ((server->sock = connecttoserver(server->peer.addrinfo)) < 0)
1345             debugx(1, DBG_ERR, "clientwr: connecttoserver failed");
1346     } else
1347         tlsconnect(server, NULL, "new client");
1348     
1349     if (pthread_create(&clientrdth, NULL, clientrd, (void *)server))
1350         debugx(1, DBG_ERR, "clientwr: pthread_create failed");
1351
1352     for (;;) {
1353         pthread_mutex_lock(&server->newrq_mutex);
1354         if (!server->newrq) {
1355             gettimeofday(&now, NULL);
1356             if (timeout.tv_sec) {
1357                 debug(DBG_DBG, "clientwr: waiting up to %ld secs for new request", timeout.tv_sec - now.tv_sec);
1358                 pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
1359                 timeout.tv_sec = 0;
1360             } else if (options.statusserver) {
1361                 timeout.tv_sec = now.tv_sec + STATUS_SERVER_PERIOD;
1362                 /* add random 0-7 seconds to timeout */
1363                 RAND_bytes(&rnd, 1);
1364                 timeout.tv_sec += rnd / 32;
1365                 pthread_cond_timedwait(&server->newrq_cond, &server->newrq_mutex, &timeout);
1366                 timeout.tv_sec = 0;
1367             } else {
1368                 debug(DBG_DBG, "clientwr: waiting for new request");
1369                 pthread_cond_wait(&server->newrq_cond, &server->newrq_mutex);
1370             }
1371         }
1372         if (server->newrq) {
1373             debug(DBG_DBG, "clientwr: got new request");
1374             server->newrq = 0;
1375         } else
1376             debug(DBG_DBG, "clientwr: request timer expired, processing request queue");
1377         pthread_mutex_unlock(&server->newrq_mutex);
1378
1379         for (i = 0; i < MAX_REQUESTS; i++) {
1380             pthread_mutex_lock(&server->newrq_mutex);
1381             while (!server->requests[i].buf && i < MAX_REQUESTS)
1382                 i++;
1383             if (i == MAX_REQUESTS) {
1384                 pthread_mutex_unlock(&server->newrq_mutex);
1385                 break;
1386             }
1387             rq = server->requests + i;
1388
1389             if (rq->received) {
1390                 debug(DBG_DBG, "clientwr: removing received packet from queue");
1391                 free(rq->buf);
1392                 /* setting this to NULL means that it can be reused */
1393                 rq->buf = NULL;
1394                 pthread_mutex_unlock(&server->newrq_mutex);
1395                 continue;
1396             }
1397             
1398             gettimeofday(&now, NULL);
1399             if (now.tv_sec <= rq->expiry.tv_sec) {
1400                 if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1401                     timeout.tv_sec = rq->expiry.tv_sec;
1402                 pthread_mutex_unlock(&server->newrq_mutex);
1403                 continue;
1404             }
1405
1406             if (rq->tries == (server->peer.type == 'T' ? 1 : REQUEST_RETRIES)) {
1407                 debug(DBG_DBG, "clientwr: removing expired packet from queue");
1408                 free(rq->buf);
1409                 /* setting this to NULL means that it can be reused */
1410                 rq->buf = NULL;
1411                 pthread_mutex_unlock(&server->newrq_mutex);
1412                 continue;
1413             }
1414             pthread_mutex_unlock(&server->newrq_mutex);
1415
1416             rq->expiry.tv_sec = now.tv_sec +
1417                 (server->peer.type == 'T' ? REQUEST_EXPIRY : REQUEST_EXPIRY / REQUEST_RETRIES);
1418             if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec)
1419                 timeout.tv_sec = rq->expiry.tv_sec;
1420             rq->tries++;
1421             clientradput(server, server->requests[i].buf);
1422             gettimeofday(&lastsend, NULL);
1423             usleep(200000);
1424         }
1425         if (options.statusserver) {
1426             gettimeofday(&now, NULL);
1427             if (now.tv_sec - lastsend.tv_sec >= STATUS_SERVER_PERIOD) {
1428                 lastsend.tv_sec = now.tv_sec;
1429                 debug(DBG_DBG, "clientwr: should send status to %s here", server->peer.host);
1430             }
1431         }
1432     }
1433 }
1434
1435 void *udpserverwr(void *arg) {
1436     struct replyq *replyq = &udp_server_replyq;
1437     struct reply *reply = replyq->replies;
1438     
1439     pthread_mutex_lock(&replyq->count_mutex);
1440     for (;;) {
1441         while (!replyq->count) {
1442             debug(DBG_DBG, "udp server writer, waiting for signal");
1443             pthread_cond_wait(&replyq->count_cond, &replyq->count_mutex);
1444             debug(DBG_DBG, "udp server writer, got signal");
1445         }
1446         pthread_mutex_unlock(&replyq->count_mutex);
1447         
1448         if (sendto(udp_server_sock, reply->buf, RADLEN(reply->buf), 0,
1449                    (struct sockaddr *)&reply->tosa, SOCKADDR_SIZE(reply->tosa)) < 0)
1450             debug(DBG_WARN, "sendudp: send failed");
1451         free(reply->buf);
1452         
1453         pthread_mutex_lock(&replyq->count_mutex);
1454         replyq->count--;
1455         memmove(replyq->replies, replyq->replies + 1,
1456                 replyq->count * sizeof(struct reply));
1457     }
1458 }
1459
1460 void *udpserverrd(void *arg) {
1461     struct request rq;
1462     unsigned char *buf;
1463     struct server *to;
1464     struct client *fr;
1465     pthread_t udpserverwrth;
1466
1467     if ((udp_server_sock = bindtoaddr(udp_server_listen->addrinfo)) < 0)
1468         debugx(1, DBG_ERR, "udpserverrd: socket/bind failed");
1469
1470     debug(DBG_WARN, "udpserverrd: listening for UDP on %s:%s",
1471           udp_server_listen->host ? udp_server_listen->host : "*", udp_server_listen->port);
1472
1473     if (pthread_create(&udpserverwrth, NULL, udpserverwr, NULL))
1474         debugx(1, DBG_ERR, "pthread_create failed");
1475     
1476     for (;;) {
1477         fr = NULL;
1478         memset(&rq, 0, sizeof(struct request));
1479         buf = radudpget(udp_server_sock, &fr, NULL, &rq.fromsa);
1480         to = radsrv(&rq, buf, fr);
1481         if (!to) {
1482             debug(DBG_INFO, "udpserverrd: ignoring request, no place to send it");
1483             continue;
1484         }
1485         sendrq(to, fr, &rq);
1486     }
1487 }
1488
1489 void *tlsserverwr(void *arg) {
1490     int cnt;
1491     unsigned long error;
1492     struct client *client = (struct client *)arg;
1493     struct replyq *replyq;
1494     
1495     debug(DBG_DBG, "tlsserverwr starting for %s", client->peer.host);
1496     replyq = client->replyq;
1497     pthread_mutex_lock(&replyq->count_mutex);
1498     for (;;) {
1499         while (!replyq->count) {
1500             if (client->peer.ssl) {         
1501                 debug(DBG_DBG, "tls server writer, waiting for signal");
1502                 pthread_cond_wait(&replyq->count_cond, &replyq->count_mutex);
1503                 debug(DBG_DBG, "tls server writer, got signal");
1504             }
1505             if (!client->peer.ssl) {
1506                 /* ssl might have changed while waiting */
1507                 pthread_mutex_unlock(&replyq->count_mutex);
1508                 debug(DBG_DBG, "tlsserverwr: exiting as requested");
1509                 pthread_exit(NULL);
1510             }
1511         }
1512         pthread_mutex_unlock(&replyq->count_mutex);
1513         cnt = SSL_write(client->peer.ssl, replyq->replies->buf, RADLEN(replyq->replies->buf));
1514         if (cnt > 0)
1515             debug(DBG_DBG, "tlsserverwr: Sent %d bytes, Radius packet of length %d",
1516                   cnt, RADLEN(replyq->replies->buf));
1517         else
1518             while ((error = ERR_get_error()))
1519                 debug(DBG_ERR, "tlsserverwr: SSL: %s", ERR_error_string(error, NULL));
1520         free(replyq->replies->buf);
1521
1522         pthread_mutex_lock(&replyq->count_mutex);
1523         replyq->count--;
1524         memmove(replyq->replies, replyq->replies + 1, replyq->count * sizeof(struct reply));
1525     }
1526 }
1527
1528 void *tlsserverrd(void *arg) {
1529     struct request rq;
1530     char unsigned *buf;
1531     unsigned long error;
1532     struct server *to;
1533     int s;
1534     struct client *client = (struct client *)arg;
1535     pthread_t tlsserverwrth;
1536     SSL *ssl;
1537     
1538     debug(DBG_DBG, "tlsserverrd starting for %s", client->peer.host);
1539     ssl = client->peer.ssl;
1540
1541     if (SSL_accept(ssl) <= 0) {
1542         while ((error = ERR_get_error()))
1543             debug(DBG_ERR, "tlsserverrd: SSL: %s", ERR_error_string(error, NULL));
1544         debug(DBG_ERR, "SSL_accept failed");
1545         goto errexit;
1546     }
1547     if (tlsverifycert(&client->peer)) {
1548         if (pthread_create(&tlsserverwrth, NULL, tlsserverwr, (void *)client)) {
1549             debug(DBG_ERR, "tlsserverrd: pthread_create failed");
1550             goto errexit;
1551         }
1552         for (;;) {
1553             buf = radtlsget(client->peer.ssl);
1554             if (!buf)
1555                 break;
1556             debug(DBG_DBG, "tlsserverrd: got Radius message from %s", client->peer.host);
1557             memset(&rq, 0, sizeof(struct request));
1558             to = radsrv(&rq, buf, client);
1559             if (!to) {
1560                 debug(DBG_INFO, "tlsserverrd: ignoring request, no place to send it");
1561                 continue;
1562             }
1563             sendrq(to, client, &rq);
1564         }
1565         debug(DBG_ERR, "tlsserverrd: connection lost");
1566         /* stop writer by setting peer.ssl to NULL and give signal in case waiting for data */
1567         client->peer.ssl = NULL;
1568         pthread_mutex_lock(&client->replyq->count_mutex);
1569         pthread_cond_signal(&client->replyq->count_cond);
1570         pthread_mutex_unlock(&client->replyq->count_mutex);
1571         debug(DBG_DBG, "tlsserverrd: waiting for writer to end");
1572         pthread_join(tlsserverwrth, NULL);
1573     }
1574     
1575  errexit:
1576     s = SSL_get_fd(ssl);
1577     SSL_free(ssl);
1578     shutdown(s, SHUT_RDWR);
1579     close(s);
1580     debug(DBG_DBG, "tlsserverrd thread for %s exiting", client->peer.host);
1581     client->peer.ssl = NULL;
1582     pthread_exit(NULL);
1583 }
1584
1585 int tlslistener() {
1586     pthread_t tlsserverth;
1587     int s, snew;
1588     struct sockaddr_storage from;
1589     size_t fromlen = sizeof(from);
1590     struct client *client;
1591
1592     if ((s = bindtoaddr(tcp_server_listen->addrinfo)) < 0)
1593         debugx(1, DBG_ERR, "tlslistener: socket/bind failed");
1594     
1595     listen(s, 0);
1596     debug(DBG_WARN, "listening for incoming TCP on %s:%s",
1597           tcp_server_listen->host ? tcp_server_listen->host : "*", tcp_server_listen->port);
1598
1599     for (;;) {
1600         snew = accept(s, (struct sockaddr *)&from, &fromlen);
1601         if (snew < 0) {
1602             debug(DBG_WARN, "accept failed");
1603             continue;
1604         }
1605         debug(DBG_WARN, "incoming TLS connection from %s", addr2string((struct sockaddr *)&from, fromlen));
1606
1607         client = find_client('T', (struct sockaddr *)&from, NULL);
1608         if (!client) {
1609             debug(DBG_WARN, "ignoring request, not a known TLS client");
1610             shutdown(snew, SHUT_RDWR);
1611             close(snew);
1612             continue;
1613         }
1614
1615         if (client->peer.ssl) {
1616             debug(DBG_WARN, "Ignoring incoming TLS connection, already have one from this client");
1617             shutdown(snew, SHUT_RDWR);
1618             close(snew);
1619             continue;
1620         }
1621         client->peer.ssl = SSL_new(ssl_ctx);
1622         SSL_set_fd(client->peer.ssl, snew);
1623         if (pthread_create(&tlsserverth, NULL, tlsserverrd, (void *)client)) {
1624             debug(DBG_ERR, "tlslistener: pthread_create failed");
1625             SSL_free(client->peer.ssl);
1626             shutdown(snew, SHUT_RDWR);
1627             close(snew);
1628             client->peer.ssl = NULL;
1629             continue;
1630         }
1631         pthread_detach(tlsserverth);
1632     }
1633     return 0;
1634 }
1635
1636 char *parsehostport(char *s, struct peer *peer) {
1637     char *p, *field;
1638     int ipv6 = 0;
1639
1640     p = s;
1641     /* allow literal addresses and port, e.g. [2001:db8::1]:1812 */
1642     if (*p == '[') {
1643         p++;
1644         field = p;
1645         for (; *p && *p != ']' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
1646         if (*p != ']')
1647             debugx(1, DBG_ERR, "no ] matching initial [");
1648         ipv6 = 1;
1649     } else {
1650         field = p;
1651         for (; *p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n'; p++);
1652     }
1653     if (field == p)
1654         debugx(1, DBG_ERR, "missing host/address");
1655
1656     peer->host = stringcopy(field, p - field);
1657     if (ipv6) {
1658         p++;
1659         if (*p && *p != ':' && *p != ' ' && *p != '\t' && *p != '\n')
1660             debugx(1, DBG_ERR, "unexpected character after ]");
1661     }
1662     if (*p == ':') {
1663             /* port number or service name is specified */;
1664             field = ++p;
1665             for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
1666             if (field == p)
1667                 debugx(1, DBG_ERR, "syntax error, : but no following port");
1668             peer->port = stringcopy(field, p - field);
1669     } else
1670         peer->port = stringcopy(peer->type == 'U' ? DEFAULT_UDP_PORT : DEFAULT_TLS_PORT, 0);
1671     return p;
1672 }
1673
1674 /* * is default, else longest match ... ";" used for separator */
1675 char *parserealmlist(char *s, struct server *server) {
1676     char *p;
1677     int i, n, l;
1678
1679     for (p = s, n = 1; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++)
1680         if (*p == ';')
1681             n++;
1682     l = p - s;
1683     if (!l)
1684         debugx(1, DBG_ERR, "realm list must be specified");
1685
1686     server->realmdata = stringcopy(s, l);
1687     server->realms = malloc((1+n) * sizeof(char *));
1688     if (!server->realms)
1689         debugx(1, DBG_ERR, "malloc failed");
1690     server->realms[0] = server->realmdata;
1691     for (n = 1, i = 0; i < l; i++)
1692         if (server->realmdata[i] == ';') {
1693             server->realmdata[i] = '\0';
1694             server->realms[n++] = server->realmdata + i + 1;
1695         }       
1696     server->realms[n] = NULL;
1697     return p;
1698 }
1699
1700 FILE *openconfigfile(const char *filename) {
1701     FILE *f;
1702     char pathname[100], *base;
1703     
1704     f = fopen(filename, "r");
1705     if (f) {
1706         debug(DBG_DBG, "reading config file %s", filename);
1707         return f;
1708     }
1709
1710     if (strlen(filename) + 1 <= sizeof(pathname)) {
1711         /* basename() might modify the string */
1712         strcpy(pathname, filename);
1713         base = basename(pathname);
1714         f = fopen(base, "r");
1715     }
1716
1717     if (!f)
1718         debugx(1, DBG_ERR, "could not read config file %s nor %s\n%s", filename, base, strerror(errno));
1719     
1720     debug(DBG_DBG, "reading config file %s", base);
1721     return f;
1722 }
1723
1724 /* exactly one argument must be non-NULL */
1725 void getconfig(const char *serverfile, const char *clientfile) {
1726     FILE *f;
1727     char line[1024];
1728     char *p, *field, **r;
1729     struct client *client;
1730     struct server *server;
1731     struct peer *peer;
1732     int i, count, *ucount, *tcount;
1733  
1734     f = openconfigfile(serverfile ? serverfile : clientfile);
1735     if (serverfile) {
1736         ucount = &server_udp_count;
1737         tcount = &server_tls_count;
1738     } else {
1739         ucount = &client_udp_count;
1740         tcount = &client_tls_count;
1741     }
1742     while (fgets(line, 1024, f)) {
1743         for (p = line; *p == ' ' || *p == '\t'; p++);
1744         switch (*p) {
1745         case '#':
1746         case '\n':
1747             break;
1748         case 'T':
1749             (*tcount)++;
1750             break;
1751         case 'U':
1752             (*ucount)++;
1753             break;
1754         default:
1755             debugx(1, DBG_ERR, "type must be U or T, got %c", *p);
1756         }
1757     }
1758
1759     if (serverfile) {
1760         count = server_count = server_udp_count + server_tls_count;
1761         servers = calloc(count, sizeof(struct server));
1762         if (!servers)
1763             debugx(1, DBG_ERR, "malloc failed");
1764     } else {
1765         count = client_count = client_udp_count + client_tls_count;
1766         clients = calloc(count, sizeof(struct client));
1767         if (!clients)
1768             debugx(1, DBG_ERR, "malloc failed");
1769     }
1770     
1771     if (client_udp_count) {
1772         udp_server_replyq.replies = malloc(client_udp_count * MAX_REQUESTS * sizeof(struct reply));
1773         if (!udp_server_replyq.replies)
1774             debugx(1, DBG_ERR, "malloc failed");
1775         udp_server_replyq.size = client_udp_count * MAX_REQUESTS;
1776         udp_server_replyq.count = 0;
1777         pthread_mutex_init(&udp_server_replyq.count_mutex, NULL);
1778         pthread_cond_init(&udp_server_replyq.count_cond, NULL);
1779     }    
1780     
1781     rewind(f);
1782     for (i = 0; i < count && fgets(line, 1024, f);) {
1783         if (serverfile) {
1784             server = &servers[i];
1785             peer = &server->peer;
1786         } else {
1787             client = &clients[i];
1788             peer = &client->peer;
1789         }
1790         for (p = line; *p == ' ' || *p == '\t'; p++);
1791         if (*p == '#' || *p == '\n')
1792             continue;
1793         peer->type = *p;        /* we already know it must be U or T */
1794         for (p++; *p == ' ' || *p == '\t'; p++);
1795         p = parsehostport(p, peer);
1796         for (; *p == ' ' || *p == '\t'; p++);
1797         if (serverfile) {
1798             p = parserealmlist(p, server);
1799             for (; *p == ' ' || *p == '\t'; p++);
1800         }
1801         field = p;
1802         for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
1803         if (field == p) {
1804             /* no secret set and end of line, line is complete if TLS */
1805             if (peer->type == 'U')
1806                 debugx(1, DBG_ERR, "secret must be specified for UDP");
1807             peer->secret = stringcopy(DEFAULT_TLS_SECRET, 0);
1808         } else {
1809             peer->secret = stringcopy(field, p - field);
1810             /* check that rest of line only white space */
1811             for (; *p == ' ' || *p == '\t'; p++);
1812             if (*p && *p != '\n')
1813                 debugx(1, DBG_ERR, "max 4 fields per line, found a 5th");
1814         }
1815
1816         if ((serverfile && !resolvepeer(&server->peer, 0)) ||
1817             (clientfile && !resolvepeer(&client->peer, 0)))
1818             debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", peer->host, peer->port);
1819
1820         if (serverfile) {
1821             pthread_mutex_init(&server->lock, NULL);
1822             server->sock = -1;
1823             server->requests = calloc(MAX_REQUESTS, sizeof(struct request));
1824             if (!server->requests)
1825                 debugx(1, DBG_ERR, "malloc failed");
1826             server->newrq = 0;
1827             pthread_mutex_init(&server->newrq_mutex, NULL);
1828             pthread_cond_init(&server->newrq_cond, NULL);
1829         } else {
1830             if (peer->type == 'U')
1831                 client->replyq = &udp_server_replyq;
1832             else {
1833                 client->replyq = malloc(sizeof(struct replyq));
1834                 if (!client->replyq)
1835                     debugx(1, DBG_ERR, "malloc failed");
1836                 client->replyq->replies = calloc(MAX_REQUESTS, sizeof(struct reply));
1837                 if (!client->replyq->replies)
1838                     debugx(1, DBG_ERR, "malloc failed");
1839                 client->replyq->size = MAX_REQUESTS;
1840                 client->replyq->count = 0;
1841                 pthread_mutex_init(&client->replyq->count_mutex, NULL);
1842                 pthread_cond_init(&client->replyq->count_cond, NULL);
1843             }
1844         }
1845         debug(DBG_DBG, "got type %c, host %s, port %s, secret %s", peer->type, peer->host, peer->port, peer->secret);
1846         if (serverfile) {
1847             debug(DBG_DBG, "    with realms:");
1848             for (r = server->realms; *r; r++)
1849                 debug(DBG_DBG, "\t%s", *r);
1850         }
1851         i++;
1852     }
1853     fclose(f);
1854 }
1855
1856 struct peer *server_create(char type) {
1857     struct peer *server;
1858     char *conf;
1859
1860     server = malloc(sizeof(struct peer));
1861     if (!server)
1862         debugx(1, DBG_ERR, "malloc failed");
1863     memset(server, 0, sizeof(struct peer));
1864     server->type = type;
1865     conf = (type == 'T' ? options.listentcp : options.listenudp);
1866     if (conf) {
1867         parsehostport(conf, server);
1868         if (!strcmp(server->host, "*")) {
1869             free(server->host);
1870             server->host = NULL;
1871         }
1872     } else
1873         server->port = stringcopy(type == 'T' ? DEFAULT_TLS_PORT : DEFAULT_UDP_PORT, 0);
1874     if (!resolvepeer(server, AI_PASSIVE))
1875         debugx(1, DBG_ERR, "failed to resolve host %s port %s, exiting", server->host, server->port);
1876     return server;
1877 }
1878                 
1879 void getmainconfig(const char *configfile) {
1880     FILE *f;
1881     char line[1024];
1882     char *p, *opt, *endopt, *val, *endval;
1883     
1884     f = openconfigfile(configfile);
1885     memset(&options, 0, sizeof(options));
1886
1887     while (fgets(line, 1024, f)) {
1888         for (p = line; *p == ' ' || *p == '\t'; p++);
1889         if (!*p || *p == '#' || *p == '\n')
1890             continue;
1891         opt = p++;
1892         for (; *p && *p != ' ' && *p != '\t' && *p != '\n'; p++);
1893         endopt = p - 1;
1894         for (; *p == ' ' || *p == '\t'; p++);
1895         if (!*p || *p == '\n') {
1896             endopt[1] = '\0';
1897             debugx(1, DBG_ERR, "error in %s, option %s has no value", configfile, opt);
1898         }
1899         val = p;
1900         for (; *p && *p != '\n'; p++)
1901             if (*p != ' ' && *p != '\t')
1902                 endval = p;
1903         endopt[1] = '\0';
1904         endval[1] = '\0';
1905         debug(DBG_DBG, "getmainconfig: %s = %s", opt, val);
1906         
1907         if (!strcasecmp(opt, "TLSCACertificateFile")) {
1908             options.tlscacertificatefile = stringcopy(val, 0);
1909             continue;
1910         }
1911         if (!strcasecmp(opt, "TLSCACertificatePath")) {
1912             options.tlscacertificatepath = stringcopy(val, 0);
1913             continue;
1914         }
1915         if (!strcasecmp(opt, "TLSCertificateFile")) {
1916             options.tlscertificatefile = stringcopy(val, 0);
1917             continue;
1918         }
1919         if (!strcasecmp(opt, "TLSCertificateKeyFile")) {
1920             options.tlscertificatekeyfile = stringcopy(val, 0);
1921             continue;
1922         }
1923         if (!strcasecmp(opt, "TLSCertificateKeyPassword")) {
1924             options.tlscertificatekeypassword = stringcopy(val, 0);
1925             continue;
1926         }
1927         if (!strcasecmp(opt, "ListenUDP")) {
1928             options.listenudp = stringcopy(val, 0);
1929             continue;
1930         }
1931         if (!strcasecmp(opt, "ListenTCP")) {
1932             options.listentcp = stringcopy(val, 0);
1933             continue;
1934         }
1935         if (!strcasecmp(opt, "StatusServer")) {
1936             if (!strcasecmp(val, "on"))
1937                 options.statusserver = 1;
1938             else if (strcasecmp(val, "off")) {
1939                 debugx(1, DBG_ERR, "error in %s, value of option %s is %s, must be on or off", configfile, opt, val);
1940             }
1941             continue;
1942         }
1943         if (!strcasecmp(opt, "LogLevel")) {
1944             if (strlen(val) != 1 || *val < '1' || *val > '4')
1945                 debugx(1, DBG_ERR, "error in %s, value of option %s is %s, must be 1, 2, 3 or 4", configfile, opt, val);
1946             options.loglevel = *val - '0';
1947             continue;
1948         }
1949         if (!strcasecmp(opt, "LogDestination")) {
1950             options.logdestination = stringcopy(val, 0);
1951             continue;
1952         }
1953         debugx(1, DBG_ERR, "error in %s, unknown option %s", configfile, opt);
1954     }
1955     fclose(f);
1956 }
1957
1958 void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *loglevel) {
1959     int c;
1960
1961     while ((c = getopt(argc, argv, "d:f")) != -1) {
1962         switch (c) {
1963         case 'd':
1964             if (strlen(optarg) != 1 || *optarg < '1' || *optarg > '4')
1965                 debugx(1, DBG_ERR, "Debug level must be 1, 2, 3 or 4, not %s", optarg);
1966             *loglevel = *optarg - '0';
1967             break;
1968         case 'f':
1969             *foreground = 1;
1970             break;
1971         default:
1972             goto usage;
1973         }
1974     }
1975     if (!(argc - optind))
1976         return;
1977
1978  usage:
1979     debug(DBG_ERR, "Usage:\n%s [ -f ] [ -d debuglevel ]", argv[0]);
1980     exit(1);
1981 }
1982
1983 int main(int argc, char **argv) {
1984     pthread_t udpserverth;
1985     int i;
1986     uint8_t foreground = 0, loglevel = 0;
1987     
1988     debug_init("radsecproxy");
1989     debug_set_level(DEBUG_LEVEL);
1990     getargs(argc, argv, &foreground, &loglevel);
1991     if (loglevel)
1992         debug_set_level(loglevel);
1993     getmainconfig(CONFIG_MAIN);
1994     if (loglevel)
1995         options.loglevel = loglevel;
1996     else if (options.loglevel)
1997         debug_set_level(options.loglevel);
1998     if (foreground)
1999         options.logdestination = NULL;
2000     else {
2001         if (!options.logdestination)
2002             options.logdestination = "x-syslog://";
2003         debug_set_destination(options.logdestination);
2004     }
2005     getconfig(CONFIG_SERVERS, NULL);
2006     getconfig(NULL, CONFIG_CLIENTS);
2007
2008     if (!foreground && (daemon(0, 0) < 0))
2009         debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
2010         
2011     if (client_udp_count) {
2012         udp_server_listen = server_create('U');
2013         if (pthread_create(&udpserverth, NULL, udpserverrd, NULL))
2014             debugx(1, DBG_ERR, "pthread_create failed");
2015     }
2016     
2017     if (client_tls_count || server_tls_count)
2018         ssl_ctx = ssl_init();
2019     
2020     for (i = 0; i < server_count; i++)
2021         if (pthread_create(&servers[i].clientth, NULL, clientwr, (void *)&servers[i]))
2022             debugx(1, DBG_ERR, "pthread_create failed");
2023
2024     if (client_tls_count) {
2025         tcp_server_listen = server_create('T');
2026         return tlslistener();
2027     }
2028     
2029     /* just hang around doing nothing, anything to do here? */
2030     for (;;)
2031         sleep(1000);
2032 }