chiark / gitweb /
Introduce setnonblock()
[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 #include "comm-common.h"
27
28 static comm_sendmsg_fn udp_sendmsg;
29
30 struct udp {
31     struct udpcommon uc;
32     struct udpsocks socks;
33 };
34
35 static const char *udp_addr_to_string(void *commst, const struct comm_addr *ca)
36 {
37     struct udp *st=commst;
38     struct udpsocks *socks=&st->socks;
39     static char sbuf[100];
40     int ix=ca->ix>=0 ? ca->ix : 0;
41
42     assert(ix>=0 && ix<socks->n_socks);
43     snprintf(sbuf, sizeof(sbuf), "udp:%d:%s-%s",
44              ca->ix,
45              iaddr_to_string(&socks->socks[ix].addr),
46              iaddr_to_string(&ca->ia));
47     return sbuf;
48 }
49
50 static int udp_socks_beforepoll(void *state, struct pollfd *fds, int *nfds_io,
51                                 int *timeout_io)
52 {
53     struct udpsocks *socks=state;
54     int i;
55     BEFOREPOLL_WANT_FDS(socks->n_socks);
56     for (i=0; i<socks->n_socks; i++) {
57         fds[i].fd=socks->socks[i].fd;
58         fds[i].events=POLLIN;
59     }
60     return 0;
61 }
62
63 static void udp_socks_afterpoll(void *state, struct pollfd *fds, int nfds)
64 {
65     struct udpsocks *socks=state;
66     struct udpcommon *uc=socks->uc;
67     union iaddr from;
68     socklen_t fromlen;
69     bool_t done;
70     int rv;
71     int i;
72
73     struct commcommon *cc=&uc->cc;
74
75     for (i=0; i<socks->n_socks; i++) {
76         if (i>=nfds) continue;
77         if (!(fds[i].revents & POLLIN)) continue;
78         assert(fds[i].fd == socks->socks[i].fd);
79         int fd=socks->socks[i].fd;
80         do {
81             FILLZERO(from);
82             fromlen=sizeof(from);
83             BUF_ASSERT_FREE(cc->rbuf);
84             BUF_ALLOC(cc->rbuf,"udp_afterpoll");
85             buffer_init(cc->rbuf,calculate_max_start_pad());
86             rv=recvfrom(fd, cc->rbuf->start,
87                         buf_remaining_space(cc->rbuf),
88                         0, (struct sockaddr *)&from, &fromlen);
89             if (rv>0) {
90                 cc->rbuf->size=rv;
91                 if (uc->use_proxy) {
92                     /* Check that the packet came from our poxy server;
93                        we shouldn't be contacted directly by anybody else
94                        (since they can trivially forge source addresses) */
95                     if (!iaddr_equal(&from,&uc->proxy)) {
96                         Message(M_INFO,"udp: received packet that's not "
97                                 "from the proxy\n");
98                         BUF_FREE(cc->rbuf);
99                         continue;
100                     }
101                     /* proxy protocol supports ipv4 transport only */
102                     FILLZERO(from);
103                     from.sa.sa_family=AF_INET;
104                     memcpy(&from.sin.sin_addr,buf_unprepend(cc->rbuf,4),4);
105                     buf_unprepend(cc->rbuf,2);
106                     memcpy(&from.sin.sin_port,buf_unprepend(cc->rbuf,2),2);
107                 }
108                 struct comm_addr ca;
109                 FILLZERO(ca);
110                 ca.comm=&cc->ops;
111                 ca.ia=from;
112                 ca.ix=i;
113                 done=comm_notify(&cc->notify, cc->rbuf, &ca);
114                 if (!done) {
115                     uint32_t msgtype;
116                     if (cc->rbuf->size>12 /* prevents traffic amplification */
117                         && ((msgtype=get_uint32(cc->rbuf->start+8))
118                             != LABEL_NAK)) {
119                         uint32_t source,dest;
120                         /* Manufacture and send NAK packet */
121                         source=get_uint32(cc->rbuf->start); /* Us */
122                         dest=get_uint32(cc->rbuf->start+4); /* Them */
123                         send_nak(&ca,source,dest,msgtype,cc->rbuf,"unwanted");
124                     }
125                     BUF_FREE(cc->rbuf);
126                 }
127                 BUF_ASSERT_FREE(cc->rbuf);
128             } else {
129                 BUF_FREE(cc->rbuf);
130             }
131         } while (rv>=0);
132     }
133 }
134
135 static bool_t udp_sendmsg(void *commst, struct buffer_if *buf,
136                           const struct comm_addr *dest)
137 {
138     struct udp *st=commst;
139     struct udpcommon *uc=&st->uc;
140     struct udpsocks *socks=&st->socks;
141     uint8_t *sa;
142
143     if (uc->use_proxy) {
144         sa=buf_prepend(buf,8);
145         if (dest->ia.sa.sa_family != AF_INET) {
146             Message(M_INFO,
147                "udp: proxy means dropping outgoing non-IPv4 packet to %s\n",
148                     iaddr_to_string(&dest->ia));
149             return False;
150         }
151         memcpy(sa,&dest->ia.sin.sin_addr,4);
152         memset(sa+4,0,4);
153         memcpy(sa+6,&dest->ia.sin.sin_port,2);
154         sendto(socks->socks[0].fd,sa,buf->size+8,0,(struct sockaddr *)&uc->proxy,
155                sizeof(uc->proxy));
156         buf_unprepend(buf,8);
157     } else {
158         int i,r;
159         bool_t allunsupported=True;
160         for (i=0; i<socks->n_socks; i++) {
161             if (dest->ia.sa.sa_family != socks->socks[i].addr.sa.sa_family)
162                 /* no point even trying */
163                 continue;
164             r=sendto(socks->socks[i].fd, buf->start, buf->size, 0,
165                      &dest->ia.sa, iaddr_socklen(&dest->ia));
166             if (!r) return True;
167             if (!(errno==EAFNOSUPPORT || errno==ENETUNREACH))
168                 /* who knows what that error means? */
169                 allunsupported=False;
170         }
171         return !allunsupported; /* see doc for comm_sendmsg_fn in secnet.h */
172     }
173
174     return True;
175 }
176
177 void udp_destroy_socket(struct udpcommon *uc, struct udpsock *us)
178 {
179     if (us->fd>=0) {
180         close(us->fd);
181         us->fd=-1;
182     }
183 }
184
185 bool_t udp_make_socket(struct udpcommon *uc, struct udpsock *us,
186                        int failmsgclass)
187 {
188     const union iaddr *addr=&us->addr;
189     struct commcommon *cc=&uc->cc;
190     us->fd=-1;
191
192 #define FAIL_LG 0, cc->cl.description, &cc->loc, failmsgclass
193 #define FAIL(...) do{                                           \
194         lg_perror(FAIL_LG,errno,__VA_ARGS__);   \
195         goto failed;                                            \
196     }while(0)
197
198     us->fd=socket(addr->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
199     if (us->fd<0) FAIL("socket");
200     setnonblock(us->fd);
201     setcloexec(us->fd);
202 #ifdef CONFIG_IPV6
203     if (addr->sa.sa_family==AF_INET6) {
204         int r;
205         int optval=1;
206         socklen_t optlen=sizeof(optval);
207         r=setsockopt(us->fd,IPPROTO_IPV6,IPV6_V6ONLY,&optval,optlen);
208         if (r) FAIL("setsockopt(,IPV6_V6ONLY,&1,)");
209     }
210 #endif
211
212     if (uc->authbind) {
213         pid_t c;
214         int status;
215
216         /* XXX this fork() and waitpid() business needs to be hidden
217            in some system-specific library functions. */
218         c=fork();
219         if (c==-1)
220             FAIL("fork() for authbind");
221         if (c==0) {
222             char *argv[5], addrstr[33], portstr[5];
223             const char *addrfam;
224             int port;
225             afterfork();
226             switch (addr->sa.sa_family) {
227             case AF_INET:
228                 sprintf(addrstr,"%08lX",(long)addr->sin.sin_addr.s_addr);
229                 port=addr->sin.sin_port;
230                 addrfam=NULL;
231                 break;
232 #ifdef CONFIG_IPV6
233             case AF_INET6: {
234                 int i;
235                 for (i=0; i<16; i++)
236                     sprintf(addrstr+i*2,"%02X",addr->sin6.sin6_addr.s6_addr[i]);
237                 port=addr->sin6.sin6_port;
238                 addrfam="6";
239                 break;
240             }
241 #endif /*CONFIG_IPV6*/
242             default:
243                 fatal("udp (%s:%d): unsupported address family for authbind",
244                       cc->loc.file,cc->loc.line);
245             }
246             sprintf(portstr,"%04X",port);
247             argv[0]=uc->authbind;
248             argv[1]=addrstr;
249             argv[2]=portstr;
250             argv[3]=(char*)addrfam;
251             argv[4]=NULL;
252             dup2(us->fd,0);
253             execvp(uc->authbind,argv);
254             _exit(255);
255         }
256         while (waitpid(c,&status,0)==-1) {
257             if (errno==EINTR) continue;
258             FAIL("waitpid for authbind");
259         }
260         if (status) {
261             lg_exitstatus(FAIL_LG,status,"authbind");
262             goto failed;
263         }
264     } else {
265         if (bind(us->fd, &addr->sa, iaddr_socklen(addr))!=0)
266             FAIL("bind (%s)",iaddr_to_string(addr));
267     }
268     return True;
269
270 failed:
271     udp_destroy_socket(uc,us);
272     return False;
273
274 #undef FAIL
275 }
276
277 void udp_socks_register(struct udpcommon *uc, struct udpsocks *socks)
278 {
279     socks->uc=uc;
280     socks->interest=
281         register_for_poll(socks,udp_socks_beforepoll,udp_socks_afterpoll,"udp");
282 }
283
284 void udp_socks_deregister(struct udpcommon *uc, struct udpsocks *socks)
285 {
286     socks->uc=uc;
287     deregister_for_poll(socks->interest);
288 }
289
290 static void udp_phase_hook(void *sst, uint32_t new_phase)
291 {
292     struct udp *st=sst;
293     struct udpsocks *socks=&st->socks;
294     struct udpcommon *uc=&st->uc;
295     int i;
296     for (i=0; i<socks->n_socks; i++)
297         udp_make_socket(uc,&socks->socks[i],M_FATAL);
298
299     udp_socks_register(uc,socks);
300 }
301
302 static list_t *udp_apply(closure_t *self, struct cloc loc, dict_t *context,
303                          list_t *args)
304 {
305     struct udp *st;
306     list_t *caddrl;
307     list_t *l;
308     uint32_t a;
309     int i;
310
311     COMM_APPLY(st,&st->uc.cc,udp_,"udp",loc);
312     COMM_APPLY_STANDARD(st,&st->uc.cc,"udp",args);
313     UDP_APPLY_STANDARD(st,&st->uc,"udp");
314
315     struct udpcommon *uc=&st->uc;
316     struct udpsocks *socks=&st->socks;
317     struct commcommon *cc=&uc->cc;
318
319     union iaddr defaultaddrs[] = {
320 #ifdef CONFIG_IPV6
321         { .sin6 = { .sin6_family=AF_INET6,
322                     .sin6_port=htons(uc->port),
323                     .sin6_addr=IN6ADDR_ANY_INIT } },
324 #endif
325         { .sin = { .sin_family=AF_INET,
326                    .sin_port=htons(uc->port),
327                    .sin_addr= { .s_addr=INADDR_ANY } } }
328     };
329
330     caddrl=dict_lookup(d,"address");
331     socks->n_socks=caddrl ? list_length(caddrl) : (int)ARRAY_SIZE(defaultaddrs);
332     if (socks->n_socks<=0 || socks->n_socks>UDP_MAX_SOCKETS)
333         cfgfatal(cc->loc,"udp","`address' must be 1..%d addresses",
334                  UDP_MAX_SOCKETS);
335
336     for (i=0; i<socks->n_socks; i++) {
337         struct udpsock *us=&socks->socks[i];
338         FILLZERO(us->addr);
339         if (!list_length(caddrl)) {
340             us->addr=defaultaddrs[i];
341         } else {
342             text2iaddr(list_elem(caddrl,i),uc->port,
343                        &us->addr,"udp");
344         }
345         us->fd=-1;
346     }
347
348     uc->authbind=dict_read_string(d,"authbind",False,"udp",cc->loc);
349     l=dict_lookup(d,"proxy");
350     if (l) {
351         uc->use_proxy=True;
352         FILLZERO(uc->proxy);
353         uc->proxy.sa.sa_family=AF_INET;
354         item=list_elem(l,0);
355         if (!item || item->type!=t_string) {
356             cfgfatal(cc->loc,"udp","proxy must supply ""addr"",port\n");
357         }
358         a=string_item_to_ipaddr(item,"proxy");
359         uc->proxy.sin.sin_addr.s_addr=htonl(a);
360         item=list_elem(l,1);
361         if (!item || item->type!=t_number) {
362             cfgfatal(cc->loc,"udp","proxy must supply ""addr"",port\n");
363         }
364         uc->proxy.sin.sin_port=htons(item->data.number);
365     }
366
367     update_max_start_pad(&comm_max_start_pad, uc->use_proxy ? 8 : 0);
368
369     add_hook(PHASE_GETRESOURCES,udp_phase_hook,st);
370
371     return new_closure(&cc->cl);
372 }
373
374 void udp_module(dict_t *dict)
375 {
376     add_closure(dict,"udp",udp_apply);
377 }