chiark / gitweb /
fa42ba43cfd0fb9672b8b2fcf5ba675320cd9594
[secnet.git] / udp.c
1 /* UDP send/receive module for secnet */
2
3 /* This module enables sites to communicate by sending UDP
4  * packets. When an instance of the module is created we can
5  * optionally bind to a particular local IP address (not implemented
6  * yet).
7  *
8  * Packets are offered to registered receivers in turn. Once one
9  * accepts it, it isn't offered to any more. */
10
11 #include "secnet.h"
12 #include <stdio.h>
13 #include <unistd.h>
14 #include <fcntl.h>
15 #include <string.h>
16 #include <errno.h>
17 #include <sys/socket.h>
18 #include <sys/wait.h>
19 #include <netinet/in.h>
20 #include <arpa/inet.h>
21 #include "util.h"
22 #include "magic.h"
23 #include "unaligned.h"
24 #include "ipaddr.h"
25 #include "magic.h"
26
27 static beforepoll_fn udp_beforepoll;
28 static afterpoll_fn udp_afterpoll;
29 static comm_request_notify_fn request_notify;
30 static comm_release_notify_fn release_notify;
31 static comm_sendmsg_fn udp_sendmsg;
32
33 struct notify_list {
34     comm_notify_fn *fn;
35     void *state;
36     struct notify_list *next;
37 };
38
39 struct udp {
40     closure_t cl;
41     struct comm_if ops;
42     struct cloc loc;
43     uint32_t addr;
44     uint16_t port;
45     int fd;
46     string_t authbind;
47     struct buffer_if *rbuf;
48     struct notify_list *notify;
49     bool_t use_proxy;
50     struct sockaddr_in proxy;
51 };
52
53 static const char *saddr_to_string(const struct sockaddr_in *sin) {
54     static char bufs[2][100];
55     static int b;
56
57     b ^= 1;
58     snprintf(bufs[b], sizeof(bufs[b]), "[%s]:%d",
59              inet_ntoa(sin->sin_addr),
60              ntohs(sin->sin_port));
61     return bufs[b];
62 }
63
64 static const char *addr_to_string(void *commst, const struct comm_addr *ca) {
65     struct udp *st=commst;
66     static char sbuf[100];
67
68     struct sockaddr_in la;
69     la.sin_addr.s_addr=htonl(st->addr);
70     la.sin_port=htons(st->port);
71
72     snprintf(sbuf, sizeof(sbuf), "udp:%s-%s",
73              saddr_to_string(&la), saddr_to_string(&ca->sin));
74     return sbuf;
75 }
76
77 static int udp_beforepoll(void *state, struct pollfd *fds, int *nfds_io,
78                           int *timeout_io)
79 {
80     struct udp *st=state;
81     if (*nfds_io<1) {
82         *nfds_io=1;
83         return ERANGE;
84     }
85     *nfds_io=1;
86     fds->fd=st->fd;
87     fds->events=POLLIN;
88     return 0;
89 }
90
91 static void udp_afterpoll(void *state, struct pollfd *fds, int nfds)
92 {
93     struct udp *st=state;
94     struct sockaddr_in from;
95     socklen_t fromlen;
96     struct notify_list *n;
97     bool_t done;
98     int rv;
99
100     if (nfds && (fds->revents & POLLIN)) {
101         do {
102             FILLZERO(from);
103             fromlen=sizeof(from);
104             BUF_ASSERT_FREE(st->rbuf);
105             BUF_ALLOC(st->rbuf,"udp_afterpoll");
106             buffer_init(st->rbuf,calculate_max_start_pad());
107             rv=recvfrom(st->fd, st->rbuf->start,
108                         (st->rbuf->base + st->rbuf->len) - st->rbuf->start,
109                         0, (struct sockaddr *)&from, &fromlen);
110             if (rv>0) {
111                 st->rbuf->size=rv;
112                 if (st->use_proxy) {
113                     /* Check that the packet came from our poxy server;
114                        we shouldn't be contacted directly by anybody else
115                        (since they can trivially forge source addresses) */
116                     if (memcmp(&from.sin_addr,&st->proxy.sin_addr,4)!=0 ||
117                         memcmp(&from.sin_port,&st->proxy.sin_port,2)!=0) {
118                         Message(M_INFO,"udp: received packet that's not "
119                                 "from the proxy\n");
120                         BUF_FREE(st->rbuf);
121                         continue;
122                     }
123                     memcpy(&from.sin_addr,buf_unprepend(st->rbuf,4),4);
124                     buf_unprepend(st->rbuf,2);
125                     memcpy(&from.sin_port,buf_unprepend(st->rbuf,2),2);
126                 }
127                 struct comm_addr ca;
128                 FILLZERO(ca);
129                 ca.comm=&st->ops;
130                 ca.sin=from;
131                 done=False;
132                 for (n=st->notify; n; n=n->next) {
133                     if (n->fn(n->state, st->rbuf, &ca)) {
134                         done=True;
135                         break;
136                     }
137                 }
138                 if (!done) {
139                     uint32_t msgtype;
140                     if (st->rbuf->size>12 /* prevents traffic amplification */
141                         && ((msgtype=get_uint32(st->rbuf->start+8))
142                             != LABEL_NAK)) {
143                         uint32_t source,dest;
144                         /* Manufacture and send NAK packet */
145                         source=get_uint32(st->rbuf->start); /* Us */
146                         dest=get_uint32(st->rbuf->start+4); /* Them */
147                         send_nak(&ca,source,dest,msgtype,st->rbuf,"unwanted");
148                     }
149                     BUF_FREE(st->rbuf);
150                 }
151                 BUF_ASSERT_FREE(st->rbuf);
152             } else {
153                 BUF_FREE(st->rbuf);
154             }
155         } while (rv>=0);
156     }
157 }
158
159 static void request_notify(void *commst, void *nst, comm_notify_fn *fn)
160 {
161     struct udp *st=commst;
162     struct notify_list *n;
163     
164     n=safe_malloc(sizeof(*n),"request_notify");
165     n->fn=fn;
166     n->state=nst;
167     n->next=st->notify;
168     st->notify=n;
169 }
170
171 static void release_notify(void *commst, void *nst, comm_notify_fn *fn)
172 {
173     struct udp *st=commst;
174     struct notify_list *n, **p, *t;
175
176     /* XXX untested */
177     p=&st->notify;
178     for (n=st->notify; n; )
179     {
180         if (n->state==nst && n->fn==fn) {
181             t=n;
182             *p=n->next;
183             n=n->next;
184             free(t);
185         } else {
186             p=&n->next;
187             n=n->next;
188         }
189     }
190 }
191
192 static bool_t udp_sendmsg(void *commst, struct buffer_if *buf,
193                           const struct comm_addr *dest)
194 {
195     struct udp *st=commst;
196     uint8_t *sa;
197
198     if (st->use_proxy) {
199         sa=buf_prepend(buf,8);
200         memcpy(sa,&dest->sin.sin_addr,4);
201         memset(sa+4,0,4);
202         memcpy(sa+6,&dest->sin.sin_port,2);
203         sendto(st->fd,sa,buf->size+8,0,(struct sockaddr *)&st->proxy,
204                sizeof(st->proxy));
205         buf_unprepend(buf,8);
206     } else {
207         sendto(st->fd, buf->start, buf->size, 0,
208                (struct sockaddr *)&dest->sin, sizeof(dest->sin));
209     }
210
211     return True;
212 }
213
214 static void udp_phase_hook(void *sst, uint32_t new_phase)
215 {
216     struct udp *st=sst;
217     struct sockaddr_in addr;
218
219     st->fd=socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
220     if (st->fd<0) {
221         fatal_perror("udp (%s:%d): socket",st->loc.file,st->loc.line);
222     }
223     if (fcntl(st->fd, F_SETFL, fcntl(st->fd, F_GETFL)|O_NONBLOCK)==-1) {
224         fatal_perror("udp (%s:%d): fcntl(set O_NONBLOCK)",
225                      st->loc.file,st->loc.line);
226     }
227     if (fcntl(st->fd, F_SETFD, FD_CLOEXEC)==-1) {
228         fatal_perror("udp (%s:%d): fcntl(set FD_CLOEXEC)",
229                      st->loc.file,st->loc.line);
230     }
231
232     FILLZERO(addr);
233     addr.sin_family=AF_INET;
234     addr.sin_addr.s_addr=htonl(st->addr);
235     addr.sin_port=htons(st->port);
236     if (st->authbind) {
237         pid_t c;
238         int status;
239
240         /* XXX this fork() and waitpid() business needs to be hidden
241            in some system-specific library functions. */
242         c=fork();
243         if (c==-1) {
244             fatal_perror("udp_phase_hook: fork() for authbind");
245         }
246         if (c==0) {
247             char *argv[4], addrstr[9], portstr[5];
248             sprintf(addrstr,"%08lX",(long)addr.sin_addr.s_addr);
249             sprintf(portstr,"%04X",addr.sin_port);
250             argv[0]=st->authbind;
251             argv[1]=addrstr;
252             argv[2]=portstr;
253             argv[3]=NULL;
254             dup2(st->fd,0);
255             execvp(st->authbind,argv);
256             _exit(255);
257         }
258         while (waitpid(c,&status,0)==-1) {
259             if (errno==EINTR) continue;
260             fatal_perror("udp (%s:%d): authbind",st->loc.file,st->loc.line);
261         }
262         if (WIFSIGNALED(status)) {
263             fatal("udp (%s:%d): authbind died on signal %d",st->loc.file,
264                   st->loc.line, WTERMSIG(status));
265         }
266         if (WIFEXITED(status) && WEXITSTATUS(status)!=0) {
267             fatal("udp (%s:%d): authbind died with status %d",st->loc.file,
268                   st->loc.line, WEXITSTATUS(status));
269         }
270     } else {
271         if (bind(st->fd, (struct sockaddr *)&addr, sizeof(addr))!=0) {
272             fatal_perror("udp (%s:%d): bind",st->loc.file,st->loc.line);
273         }
274     }
275
276     register_for_poll(st,udp_beforepoll,udp_afterpoll,1,"udp");
277 }
278
279 static list_t *udp_apply(closure_t *self, struct cloc loc, dict_t *context,
280                          list_t *args)
281 {
282     struct udp *st;
283     item_t *i,*j;
284     dict_t *d;
285     list_t *l;
286     uint32_t a;
287
288     st=safe_malloc(sizeof(*st),"udp_apply(st)");
289     st->loc=loc;
290     st->cl.description="udp";
291     st->cl.type=CL_COMM;
292     st->cl.apply=NULL;
293     st->cl.interface=&st->ops;
294     st->ops.st=st;
295     st->ops.request_notify=request_notify;
296     st->ops.release_notify=release_notify;
297     st->ops.sendmsg=udp_sendmsg;
298     st->ops.addr_to_string=addr_to_string;
299     st->port=0;
300     st->use_proxy=False;
301
302     i=list_elem(args,0);
303     if (!i || i->type!=t_dict) {
304         cfgfatal(st->loc,"udp","first argument must be a dictionary\n");
305     }
306     d=i->data.dict;
307
308     j=dict_find_item(d,"address",False,"udp",st->loc);
309     st->addr=j?string_item_to_ipaddr(j, "udp"):INADDR_ANY;
310     st->port=dict_read_number(d,"port",True,"udp",st->loc,0);
311     st->rbuf=find_cl_if(d,"buffer",CL_BUFFER,True,"udp",st->loc);
312     st->authbind=dict_read_string(d,"authbind",False,"udp",st->loc);
313     l=dict_lookup(d,"proxy");
314     if (l) {
315         st->use_proxy=True;
316         FILLZERO(st->proxy);
317         st->proxy.sin_family=AF_INET;
318         i=list_elem(l,0);
319         if (!i || i->type!=t_string) {
320             cfgfatal(st->loc,"udp","proxy must supply ""addr"",port\n");
321         }
322         a=string_item_to_ipaddr(i,"proxy");
323         st->proxy.sin_addr.s_addr=htonl(a);
324         i=list_elem(l,1);
325         if (!i || i->type!=t_number) {
326             cfgfatal(st->loc,"udp","proxy must supply ""addr"",port\n");
327         }
328         st->proxy.sin_port=htons(i->data.number);
329     }
330
331     update_max_start_pad(&comm_max_start_pad, st->use_proxy ? 8 : 0);
332
333     add_hook(PHASE_GETRESOURCES,udp_phase_hook,st);
334
335     return new_closure(&st->cl);
336 }
337
338 void udp_module(dict_t *dict)
339 {
340     add_closure(dict,"udp",udp_apply);
341 }