changing to use a separate client structure for each udp client
[radsecproxy.git] / udp.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 #include <signal.h>
10 #include <sys/socket.h>
11 #include <netinet/in.h>
12 #include <netdb.h>
13 #include <string.h>
14 #include <unistd.h>
15 #include <limits.h>
16 #ifdef SYS_SOLARIS9
17 #include <fcntl.h>
18 #endif
19 #include <sys/time.h>
20 #include <sys/types.h>
21 #include <sys/select.h>
22 #include <ctype.h>
23 #include <sys/wait.h>
24 #include <arpa/inet.h>
25 #include <regex.h>
26 #include <pthread.h>
27 #include <openssl/ssl.h>
28 #include "debug.h"
29 #include "list.h"
30 #include "util.h"
31 #include "radsecproxy.h"
32 #include "tls.h"
33
34 static int client4_sock = -1;
35 static int client6_sock = -1;
36 static struct queue *server_replyq = NULL;
37
38 /* exactly one of client and server must be non-NULL */
39 /* return who we received from in *client or *server */
40 /* return from in sa if not NULL */
41 unsigned char *radudpget(int s, struct client **client, struct server **server, struct sockaddr_storage *sa) {
42     int cnt, len;
43     unsigned char buf[4], *rad = NULL;
44     struct sockaddr_storage from;
45     struct sockaddr *fromcopy;
46     socklen_t fromlen = sizeof(from);
47     struct clsrvconf *p;
48     struct list_node *node;
49     fd_set readfds;
50     
51     for (;;) {
52         if (rad) {
53             free(rad);
54             rad = NULL;
55         }
56         FD_ZERO(&readfds);
57         FD_SET(s, &readfds);
58         if (select(s + 1, &readfds, NULL, NULL, NULL) < 1)
59             continue;
60         cnt = recvfrom(s, buf, 4, MSG_PEEK | MSG_TRUNC, (struct sockaddr *)&from, &fromlen);
61         if (cnt == -1) {
62             debug(DBG_WARN, "radudpget: recv failed");
63             continue;
64         }
65         if (cnt < 20) {
66             debug(DBG_WARN, "radudpget: length too small");
67             recv(s, buf, 4, 0);
68             continue;
69         }
70         
71         p = client
72             ? find_clconf(RAD_UDP, (struct sockaddr *)&from, NULL)
73             : find_srvconf(RAD_UDP, (struct sockaddr *)&from, NULL);
74         if (!p) {
75             debug(DBG_WARN, "radudpget: got packet from wrong or unknown UDP peer %s, ignoring", addr2string((struct sockaddr *)&from, fromlen));
76             recv(s, buf, 4, 0);
77             continue;
78         }
79         
80         len = RADLEN(buf);
81         if (len < 20) {
82             debug(DBG_WARN, "radudpget: length too small");
83             recv(s, buf, 4, 0);
84             continue;
85         }
86             
87         rad = malloc(len);
88         if (!rad) {
89             debug(DBG_ERR, "radudpget: malloc failed");
90             recv(s, buf, 4, 0);
91             continue;
92         }
93         
94         cnt = recv(s, rad, len, MSG_TRUNC);
95         debug(DBG_DBG, "radudpget: got %d bytes from %s", cnt, addr2string((struct sockaddr *)&from, fromlen));
96
97         if (cnt < len) {
98             debug(DBG_WARN, "radudpget: packet smaller than length field in radius header");
99             continue;
100         }
101         if (cnt > len)
102             debug(DBG_DBG, "radudpget: packet was padded with %d bytes", cnt - len);
103
104         if (client) {
105             for (node = list_first(p->clients); node; node = list_next(node))
106                 if (addr_equal((struct sockaddr *)&from, ((struct client *)node->data)->addr))
107                     break;
108             if (node) {
109                 *client = (struct client *)node->data;
110                 break;
111             }
112             fromcopy = addr_copy((struct sockaddr *)&from);
113             if (!fromcopy)
114                 continue;
115             *client = addclient(p);
116             if (!*client) {
117                 free(fromcopy);
118                 continue;
119             }
120             (*client)->addr = fromcopy;
121         } else if (server)
122             *server = p->servers;
123         break;
124     }
125     if (sa)
126         *sa = from;
127     return rad;
128 }
129
130 int clientradputudp(struct server *server, unsigned char *rad) {
131     size_t len;
132     struct sockaddr_storage sa;
133     struct sockaddr *sap;
134     struct clsrvconf *conf = server->conf;
135     in_port_t *port = NULL;
136     
137     len = RADLEN(rad);
138     
139     if (*rad == RAD_Accounting_Request) {
140         sap = (struct sockaddr *)&sa;
141         memcpy(sap, conf->addrinfo->ai_addr, conf->addrinfo->ai_addrlen);
142     } else
143         sap = conf->addrinfo->ai_addr;
144     
145     switch (sap->sa_family) {
146     case AF_INET:
147         port = &((struct sockaddr_in *)sap)->sin_port;
148         break;
149     case AF_INET6:
150         port = &((struct sockaddr_in6 *)sap)->sin6_port;
151         break;
152     default:
153         return 0;
154     }
155
156     if (*rad == RAD_Accounting_Request)
157         *port = htons(ntohs(*port) + 1);
158     
159     if (sendto(server->sock, rad, len, 0, sap, conf->addrinfo->ai_addrlen) >= 0) {
160         debug(DBG_DBG, "clienradputudp: sent UDP of length %d to %s port %d", len, conf->host, ntohs(*port));
161         return 1;
162     }
163
164     debug(DBG_WARN, "clientradputudp: send failed");
165     return 0;
166 }
167
168 void *udpclientrd(void *arg) {
169     struct server *server;
170     unsigned char *buf;
171     int *s = (int *)arg;
172     
173     for (;;) {
174         server = NULL;
175         buf = radudpget(*s, NULL, &server, NULL);
176         replyh(server, buf);
177     }
178 }
179
180 void *udpserverrd(void *arg) {
181     struct request rq;
182     int *sp = (int *)arg;
183     
184     for (;;) {
185         memset(&rq, 0, sizeof(struct request));
186         rq.buf = radudpget(*sp, &rq.from, NULL, &rq.fromsa);
187         rq.fromudpsock = *sp;
188         radsrv(&rq);
189     }
190     free(sp);
191 }
192
193 void *udpserverwr(void *arg) {
194     struct queue *replyq = (struct queue *)arg;
195     struct reply *reply;
196     
197     for (;;) {
198         pthread_mutex_lock(&replyq->mutex);
199         while (!(reply = (struct reply *)list_shift(replyq->entries))) {
200             debug(DBG_DBG, "udp server writer, waiting for signal");
201             pthread_cond_wait(&replyq->cond, &replyq->mutex);
202             debug(DBG_DBG, "udp server writer, got signal");
203         }
204         pthread_mutex_unlock(&replyq->mutex);
205
206         if (sendto(reply->toudpsock, reply->buf, RADLEN(reply->buf), 0,
207                    (struct sockaddr *)&reply->tosa, SOCKADDR_SIZE(reply->tosa)) < 0)
208             debug(DBG_WARN, "sendudp: send failed");
209         free(reply->buf);
210         free(reply);
211     }
212 }
213
214 void addclientudp(struct client *client) {
215     client->replyq = server_replyq;
216 }
217
218 void addserverextraudp(struct clsrvconf *conf) {
219     switch (conf->addrinfo->ai_family) {
220     case AF_INET:
221         if (client4_sock < 0) {
222             client4_sock = bindtoaddr(getsrcprotores(RAD_UDP), AF_INET, 0, 1);
223             if (client4_sock < 0)
224                 debugx(1, DBG_ERR, "addserver: failed to create client socket for server %s", conf->host);
225         }
226         conf->servers->sock = client4_sock;
227         break;
228     case AF_INET6:
229         if (client6_sock < 0) {
230             client6_sock = bindtoaddr(getsrcprotores(RAD_UDP), AF_INET6, 0, 1);
231             if (client6_sock < 0)
232                 debugx(1, DBG_ERR, "addserver: failed to create client socket for server %s", conf->host);
233         }
234         conf->servers->sock = client6_sock;
235         break;
236     default:
237         debugx(1, DBG_ERR, "addserver: unsupported address family");
238     }
239 }
240
241 void initextraudp() {
242     pthread_t cl4th, cl6th, srvth;
243     
244     if (client4_sock >= 0)
245         if (pthread_create(&cl4th, NULL, udpclientrd, (void *)&client4_sock))
246             debugx(1, DBG_ERR, "pthread_create failed");
247     if (client6_sock >= 0)
248         if (pthread_create(&cl6th, NULL, udpclientrd, (void *)&client6_sock))
249             debugx(1, DBG_ERR, "pthread_create failed");
250
251     if (find_clconf_type(RAD_UDP, NULL)) {
252         server_replyq = newqueue();
253         if (pthread_create(&srvth, NULL, udpserverwr, (void *)server_replyq))
254             debugx(1, DBG_ERR, "pthread_create failed");
255     }
256 }