chiark / gitweb /
fds: Introduce pipe_cloexec()
[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                         buf_remaining_space(st->rbuf),
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     setcloexec(st->fd);
228
229     FILLZERO(addr);
230     addr.sin_family=AF_INET;
231     addr.sin_addr.s_addr=htonl(st->addr);
232     addr.sin_port=htons(st->port);
233     if (st->authbind) {
234         pid_t c;
235         int status;
236
237         /* XXX this fork() and waitpid() business needs to be hidden
238            in some system-specific library functions. */
239         c=fork();
240         if (c==-1) {
241             fatal_perror("udp_phase_hook: fork() for authbind");
242         }
243         if (c==0) {
244             char *argv[4], addrstr[9], portstr[5];
245             sprintf(addrstr,"%08lX",(long)addr.sin_addr.s_addr);
246             sprintf(portstr,"%04X",addr.sin_port);
247             argv[0]=st->authbind;
248             argv[1]=addrstr;
249             argv[2]=portstr;
250             argv[3]=NULL;
251             dup2(st->fd,0);
252             execvp(st->authbind,argv);
253             _exit(255);
254         }
255         while (waitpid(c,&status,0)==-1) {
256             if (errno==EINTR) continue;
257             fatal_perror("udp (%s:%d): authbind",st->loc.file,st->loc.line);
258         }
259         if (WIFSIGNALED(status)) {
260             fatal("udp (%s:%d): authbind died on signal %d",st->loc.file,
261                   st->loc.line, WTERMSIG(status));
262         }
263         if (WIFEXITED(status) && WEXITSTATUS(status)!=0) {
264             fatal("udp (%s:%d): authbind died with status %d",st->loc.file,
265                   st->loc.line, WEXITSTATUS(status));
266         }
267     } else {
268         if (bind(st->fd, (struct sockaddr *)&addr, sizeof(addr))!=0) {
269             fatal_perror("udp (%s:%d): bind",st->loc.file,st->loc.line);
270         }
271     }
272
273     register_for_poll(st,udp_beforepoll,udp_afterpoll,1,"udp");
274 }
275
276 static list_t *udp_apply(closure_t *self, struct cloc loc, dict_t *context,
277                          list_t *args)
278 {
279     struct udp *st;
280     item_t *i,*j;
281     dict_t *d;
282     list_t *l;
283     uint32_t a;
284
285     st=safe_malloc(sizeof(*st),"udp_apply(st)");
286     st->loc=loc;
287     st->cl.description="udp";
288     st->cl.type=CL_COMM;
289     st->cl.apply=NULL;
290     st->cl.interface=&st->ops;
291     st->ops.st=st;
292     st->ops.request_notify=request_notify;
293     st->ops.release_notify=release_notify;
294     st->ops.sendmsg=udp_sendmsg;
295     st->ops.addr_to_string=addr_to_string;
296     st->port=0;
297     st->use_proxy=False;
298
299     i=list_elem(args,0);
300     if (!i || i->type!=t_dict) {
301         cfgfatal(st->loc,"udp","first argument must be a dictionary\n");
302     }
303     d=i->data.dict;
304
305     j=dict_find_item(d,"address",False,"udp",st->loc);
306     st->addr=j?string_item_to_ipaddr(j, "udp"):INADDR_ANY;
307     st->port=dict_read_number(d,"port",True,"udp",st->loc,0);
308     st->rbuf=find_cl_if(d,"buffer",CL_BUFFER,True,"udp",st->loc);
309     st->authbind=dict_read_string(d,"authbind",False,"udp",st->loc);
310     l=dict_lookup(d,"proxy");
311     if (l) {
312         st->use_proxy=True;
313         FILLZERO(st->proxy);
314         st->proxy.sin_family=AF_INET;
315         i=list_elem(l,0);
316         if (!i || i->type!=t_string) {
317             cfgfatal(st->loc,"udp","proxy must supply ""addr"",port\n");
318         }
319         a=string_item_to_ipaddr(i,"proxy");
320         st->proxy.sin_addr.s_addr=htonl(a);
321         i=list_elem(l,1);
322         if (!i || i->type!=t_number) {
323             cfgfatal(st->loc,"udp","proxy must supply ""addr"",port\n");
324         }
325         st->proxy.sin_port=htons(i->data.number);
326     }
327
328     update_max_start_pad(&comm_max_start_pad, st->use_proxy ? 8 : 0);
329
330     add_hook(PHASE_GETRESOURCES,udp_phase_hook,st);
331
332     return new_closure(&st->cl);
333 }
334
335 void udp_module(dict_t *dict)
336 {
337     add_closure(dict,"udp",udp_apply);
338 }