chiark / gitweb /
Administrivia: Fix erroneous GPL3+ licence notices "version d or later" (!)
[secnet.git] / udp.c
1 /* UDP send/receive module for secnet */
2
3 /*
4  * This file is part of secnet.
5  * See README for full list of copyright holders.
6  *
7  * secnet is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  * 
12  * secnet is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * version 3 along with secnet; if not, see
19  * https://www.gnu.org/licenses/gpl.html.
20  */
21
22 /* This module enables sites to communicate by sending UDP
23  * packets. When an instance of the module is created we can
24  * optionally bind to a particular local IP address (not implemented
25  * yet).
26  *
27  * Packets are offered to registered receivers in turn. Once one
28  * accepts it, it isn't offered to any more. */
29
30 #include "secnet.h"
31 #include <stdio.h>
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <string.h>
35 #include <errno.h>
36 #include <sys/socket.h>
37 #include <sys/wait.h>
38 #include <netinet/in.h>
39 #include <arpa/inet.h>
40 #include "util.h"
41 #include "magic.h"
42 #include "unaligned.h"
43 #include "ipaddr.h"
44 #include "magic.h"
45 #include "comm-common.h"
46
47 static comm_sendmsg_fn udp_sendmsg;
48
49 struct udp {
50     struct udpcommon uc;
51     struct udpsocks socks;
52     bool_t addr_configured;
53     unsigned counter;
54 };
55
56 /*
57  * Re comm_addr.ix: This field allows us to note in the comm_addr
58  * which socket an incoming packet was received on.  This is required
59  * for conveniently logging the actual source of a packet.  But the ix
60  * does not formally form part of the address: it is not used when
61  * sending, nor when comparing two comm_addrs.
62  *
63  * The special value -1 means that the comm_addr was constructed by
64  * another module in secnet (eg the resolver), rather than being a
65  * description of the source of an incoming packet.
66  */
67
68 static const char *udp_addr_to_string(void *commst, const struct comm_addr *ca)
69 {
70     struct udp *st=commst;
71     struct udpsocks *socks=&st->socks;
72     static char sbuf[100];
73     int ix=ca->ix>=0 ? ca->ix : 0;
74
75     assert(ix>=0 && ix<socks->n_socks);
76     snprintf(sbuf, sizeof(sbuf), "udp#%u@l%d:%s%s-%s",
77              st->counter, st->uc.cc.loc.line,
78              iaddr_to_string(&socks->socks[ix].addr),
79              ca->ix<0 && socks->n_socks>1 ? "&" : "",
80              iaddr_to_string(&ca->ia));
81     return sbuf;
82 }
83
84 static int udp_socks_beforepoll(void *state, struct pollfd *fds, int *nfds_io,
85                                 int *timeout_io)
86 {
87     struct udpsocks *socks=state;
88     int i;
89     BEFOREPOLL_WANT_FDS(socks->n_socks);
90     for (i=0; i<socks->n_socks; i++) {
91         fds[i].fd=socks->socks[i].fd;
92         fds[i].events=POLLIN;
93     }
94     return 0;
95 }
96
97 const char *af_name(int af)
98 {
99     switch (af) {
100     case AF_INET6: return "IPv6";
101     case AF_INET:  return "IPv4";
102     case 0:        return "(any)";
103     default: abort();
104     }
105 }
106
107 void udp_sock_experienced(struct log_if *lg, struct udpcommon *uc,
108                           struct udpsocks *socks, struct udpsock *us,
109                           const union iaddr *dest, int af,
110                           int r, int errnoval)
111 {
112     bool_t success=r>=0;
113     if (us->experienced[!!dest][af][success]++)
114         return;
115     lg_perror(lg, uc->cc.cl.description, &uc->cc.loc,
116               success ? M_INFO : M_WARNING,
117               success ? 0 : errnoval,
118               "%s %s experiencing some %s %s%s%s%s%s%s",
119               socks->desc,iaddr_to_string(&us->addr),
120               success?"success":"trouble",
121               dest?"transmitting":"receiving",
122               af?" ":"", af?af_name(af):"",
123               dest?" (to ":"",
124               dest?iaddr_to_string(dest):"",
125               dest?")":"");
126 }
127
128 static void udp_socks_afterpoll(void *state, struct pollfd *fds, int nfds)
129 {
130     struct udpsocks *socks=state;
131     struct udpcommon *uc=socks->uc;
132     union iaddr from;
133     socklen_t fromlen;
134     bool_t done;
135     int rv;
136     int i;
137
138     struct commcommon *cc=&uc->cc;
139
140     for (i=0; i<socks->n_socks; i++) {
141         struct udpsock *us=&socks->socks[i];
142         if (i>=nfds) continue;
143         if (!(fds[i].revents & POLLIN)) continue;
144         assert(fds[i].fd == us->fd);
145         int fd=us->fd;
146         do {
147             fromlen=sizeof(from);
148             BUF_ASSERT_FREE(cc->rbuf);
149             BUF_ALLOC(cc->rbuf,"udp_afterpoll");
150             buffer_init(cc->rbuf,calculate_max_start_pad());
151             rv=recvfrom(fd, cc->rbuf->start,
152                         buf_remaining_space(cc->rbuf),
153                         0, &from.sa, &fromlen);
154             if (rv>0) {
155                 cc->rbuf->size=rv;
156                 if (uc->use_proxy) {
157                     /* Check that the packet came from our poxy server;
158                        we shouldn't be contacted directly by anybody else
159                        (since they can trivially forge source addresses) */
160                     if (!iaddr_equal(&from,&uc->proxy,False)) {
161                         Message(M_INFO,"udp: received packet that's not "
162                                 "from the proxy\n");
163                         BUF_FREE(cc->rbuf);
164                         continue;
165                     }
166                     /* proxy protocol supports ipv4 transport only */
167                     from.sa.sa_family=AF_INET;
168                     BUF_GET_BYTES(unprepend,cc->rbuf,&from.sin.sin_addr,4);
169                     buf_unprepend(cc->rbuf,2);
170                     BUF_GET_BYTES(unprepend,cc->rbuf,&from.sin.sin_port,2);
171                 }
172                 struct comm_addr ca;
173                 ca.comm=&cc->ops;
174                 ca.ia=from;
175                 ca.ix=i;
176                 done=comm_notify(&cc->notify, cc->rbuf, &ca);
177                 if (done) {
178                     udp_sock_experienced(0,uc,socks,us,0,
179                                          from.sa.sa_family,0,0);
180                 } else {
181                     uint32_t msgtype;
182                     if (cc->rbuf->size>12 /* prevents traffic amplification */
183                         && ((msgtype=get_uint32(cc->rbuf->start+8))
184                             != LABEL_NAK)) {
185                         uint32_t source,dest;
186                         /* Manufacture and send NAK packet */
187                         source=get_uint32(cc->rbuf->start); /* Us */
188                         dest=get_uint32(cc->rbuf->start+4); /* Them */
189                         send_nak(&ca,source,dest,msgtype,cc->rbuf,"unwanted");
190                     }
191                     BUF_FREE(cc->rbuf);
192                 }
193                 BUF_ASSERT_FREE(cc->rbuf);
194             } else { /* rv<=0 */
195                 if (errno!=EINTR && !iswouldblock(errno))
196                     udp_sock_experienced(0,uc,socks,us, 0,0, rv,errno);
197                 BUF_FREE(cc->rbuf);
198             }
199         } while (rv>=0);
200     }
201 }
202
203 static bool_t udp_sendmsg(void *commst, struct buffer_if *buf,
204                           const struct comm_addr *dest,
205                           struct comm_clientinfo *clientinfo)
206 {
207     struct udp *st=commst;
208     struct udpcommon *uc=&st->uc;
209     struct udpsocks *socks=&st->socks;
210     uint8_t *sa;
211
212     if (uc->use_proxy) {
213         struct udpsock *us=&socks->socks[0];
214         sa=buf_prepend(buf,8);
215         if (dest->ia.sa.sa_family != AF_INET) {
216             Message(M_INFO,
217                "udp: proxy means dropping outgoing non-IPv4 packet to %s\n",
218                     iaddr_to_string(&dest->ia));
219             return False;
220         }
221         memcpy(sa,&dest->ia.sin.sin_addr,4);
222         memset(sa+4,0,4);
223         memcpy(sa+6,&dest->ia.sin.sin_port,2);
224         int r=sendto(us->fd,sa,buf->size+8,0,&uc->proxy.sa,
225                iaddr_socklen(&uc->proxy));
226         udp_sock_experienced(0,uc,socks,us, &dest->ia,0, r,errno);
227         buf_unprepend(buf,8);
228     } else {
229         int i,r;
230         bool_t allunsupported=True;
231         int af=dest->ia.sa.sa_family;
232         for (i=0; i<socks->n_socks; i++) {
233             struct udpsock *us=&socks->socks[i];
234             if (us->addr.sa.sa_family != af)
235                 /* no point even trying */
236                 continue;
237             r=sendto(us->fd, buf->start, buf->size, 0,
238                      &dest->ia.sa, iaddr_socklen(&dest->ia));
239             udp_sock_experienced(0,uc,socks,us, &dest->ia,af, r,errno);
240             if (r>=0) return True;
241             if (!(errno==EAFNOSUPPORT || errno==ENETUNREACH))
242                 /* who knows what that error means? */
243                 allunsupported=False;
244         }
245         return !allunsupported; /* see doc for comm_sendmsg_fn in secnet.h */
246     }
247
248     return True;
249 }
250
251 void udp_destroy_socket(struct udpcommon *uc, struct udpsock *us)
252 {
253     if (us->fd>=0) {
254         close(us->fd);
255         us->fd=-1;
256     }
257 }
258
259 #define FAIL_LG 0, cc->cl.description, &cc->loc, failmsgclass
260 #define FAIL(...) do{                                           \
261         lg_perror(FAIL_LG,errno,__VA_ARGS__);   \
262         goto failed;                                            \
263     }while(0)
264
265 static bool_t record_socket_gotaddr(struct udpcommon *uc, struct udpsock *us,
266                                     int failmsgclass)
267 {
268     struct commcommon *cc=&uc->cc;
269     socklen_t salen=sizeof(us->addr);
270     int r=getsockname(us->fd,&us->addr.sa,&salen);
271     if (r) FAIL("getsockname()");
272     if (salen>sizeof(us->addr)) { errno=0; FAIL("getsockname() length"); }
273     return True;
274
275  failed:
276     return False;
277 }
278
279 bool_t udp_import_socket(struct udpcommon *uc, struct udpsock *us,
280                          int failmsgclass, int fd)
281 {
282     FILLZERO(us->experienced);
283     us->fd=fd;
284     return record_socket_gotaddr(uc,us,failmsgclass);
285 }
286
287 bool_t udp_make_socket(struct udpcommon *uc, struct udpsock *us,
288                        int failmsgclass)
289 {
290     const union iaddr *addr=&us->addr;
291     struct commcommon *cc=&uc->cc;
292     us->fd=-1;
293
294     FILLZERO(us->experienced);
295     us->fd=socket(addr->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
296     if (us->fd<0) FAIL("socket");
297     setnonblock(us->fd);
298     setcloexec(us->fd);
299 #ifdef CONFIG_IPV6
300     if (addr->sa.sa_family==AF_INET6) {
301         int r;
302         int optval=1;
303         socklen_t optlen=sizeof(optval);
304         r=setsockopt(us->fd,IPPROTO_IPV6,IPV6_V6ONLY,&optval,optlen);
305         if (r) FAIL("setsockopt(,IPV6_V6ONLY,&1,)");
306     }
307 #endif
308
309     if (uc->authbind) {
310         pid_t c;
311         int status;
312         char desc[200];
313         snprintf(desc,sizeof(desc),"authbind for %s: %s",
314                  iaddr_to_string(addr), uc->authbind);
315
316         /* XXX this fork() and waitpid() business needs to be hidden
317            in some system-specific library functions. */
318         c=fork();
319         if (c==-1)
320             FAIL("fork() for authbind");
321         if (c==0) {
322             char *argv[5], addrstr[33], portstr[5];
323             const char *addrfam;
324             int port;
325             afterfork();
326             switch (addr->sa.sa_family) {
327             case AF_INET:
328                 sprintf(addrstr,"%08lX",(long)addr->sin.sin_addr.s_addr);
329                 port=addr->sin.sin_port;
330                 addrfam=NULL;
331                 break;
332 #ifdef CONFIG_IPV6
333             case AF_INET6: {
334                 int i;
335                 for (i=0; i<16; i++)
336                     sprintf(addrstr+i*2,"%02X",addr->sin6.sin6_addr.s6_addr[i]);
337                 port=addr->sin6.sin6_port;
338                 addrfam="6";
339                 break;
340             }
341 #endif /*CONFIG_IPV6*/
342             default:
343                 fatal("udp (%s:%d): unsupported address family for authbind",
344                       cc->loc.file,cc->loc.line);
345             }
346             sprintf(portstr,"%04X",port);
347             argv[0]=uc->authbind;
348             argv[1]=addrstr;
349             argv[2]=portstr;
350             argv[3]=(char*)addrfam;
351             argv[4]=NULL;
352             dup2(us->fd,0);
353             execvp(uc->authbind,argv);
354             _exit(255);
355         }
356         while (waitpid(c,&status,0)==-1) {
357             if (errno==EINTR) continue;
358             FAIL("waitpid for authbind");
359         }
360         if (status) {
361             if (WIFEXITED(status) && WEXITSTATUS(status)<127) {
362                 int es=WEXITSTATUS(status);
363                 lg_perror(FAIL_LG,es,
364                           "%s exited with error exit status %d;"
365                           " indicates error",desc,es);
366             } else {
367                 lg_exitstatus(FAIL_LG,status,desc);
368             }
369             goto failed;
370         }
371     } else {
372         if (bind(us->fd, &addr->sa, iaddr_socklen(addr))!=0)
373             FAIL("bind (%s)",iaddr_to_string(addr));
374     }
375
376     bool_t ok=record_socket_gotaddr(uc,us,failmsgclass);
377     if (!ok) goto failed;
378
379     return True;
380
381 failed:
382     udp_destroy_socket(uc,us);
383     return False;
384 }
385
386 #undef FAIL
387
388 void udp_socks_register(struct udpcommon *uc, struct udpsocks *socks,
389                         const char *desc)
390 {
391     socks->uc=uc;
392     socks->desc=desc;
393     socks->interest=
394         register_for_poll(socks,udp_socks_beforepoll,udp_socks_afterpoll,"udp");
395 }
396
397 void udp_socks_deregister(struct udpcommon *uc, struct udpsocks *socks)
398 {
399     socks->uc=uc;
400     deregister_for_poll(socks->interest);
401 }
402
403 void udp_socks_childpersist(struct udpcommon *uc, struct udpsocks *socks)
404 {
405     int i;
406     for (i=0; i<socks->n_socks; i++)
407         udp_destroy_socket(uc,&socks->socks[i]);
408 }
409
410 static void udp_childpersist_hook(void *sst, uint32_t new_phase)
411 {
412     struct udp *st=sst;
413     udp_socks_childpersist(&st->uc,&st->socks);
414 }
415
416 static void udp_phase_hook(void *sst, uint32_t new_phase)
417 {
418     struct udp *st=sst;
419     struct udpsocks *socks=&st->socks;
420     struct udpcommon *uc=&st->uc;
421     int i;
422     bool_t anydone=0;
423
424     for (i=0; i<socks->n_socks; i++) {
425         bool_t required=st->addr_configured
426             || (!anydone && i==socks->n_socks-1);
427         anydone += udp_make_socket(uc,&socks->socks[i],
428                                    required ? M_FATAL : M_WARNING);
429     }
430
431     udp_socks_register(uc,socks, uc->use_proxy ? "proxy" : "socket");
432
433     add_hook(PHASE_CHILDPERSIST,udp_childpersist_hook,st);
434 }
435
436 static list_t *udp_apply(closure_t *self, struct cloc loc, dict_t *context,
437                          list_t *args)
438 {
439     static unsigned counter;
440
441     struct udp *st;
442     list_t *caddrl;
443     list_t *l;
444     uint32_t a;
445     int i;
446
447     COMM_APPLY(st,&st->uc.cc,udp_,"udp",loc);
448     COMM_APPLY_STANDARD(st,&st->uc.cc,"udp",args);
449     UDP_APPLY_STANDARD(st,&st->uc,"udp");
450
451     struct udpcommon *uc=&st->uc;
452     struct udpsocks *socks=&st->socks;
453     struct commcommon *cc=&uc->cc;
454
455     st->counter=counter++;
456
457     union iaddr defaultaddrs[] = {
458 #ifdef CONFIG_IPV6
459         { .sin6 = { .sin6_family=AF_INET6,
460                     .sin6_port=htons(uc->port),
461                     .sin6_addr=IN6ADDR_ANY_INIT } },
462 #endif
463         { .sin = { .sin_family=AF_INET,
464                    .sin_port=htons(uc->port),
465                    .sin_addr= { .s_addr=INADDR_ANY } } }
466     };
467
468     caddrl=dict_lookup(d,"address");
469     st->addr_configured=!!caddrl;
470     socks->n_socks=st->addr_configured ? list_length(caddrl)
471         : (int)ARRAY_SIZE(defaultaddrs);
472     if (socks->n_socks<=0 || socks->n_socks>UDP_MAX_SOCKETS)
473         cfgfatal(cc->loc,"udp","`address' must be 1..%d addresses",
474                  UDP_MAX_SOCKETS);
475
476     for (i=0; i<socks->n_socks; i++) {
477         struct udpsock *us=&socks->socks[i];
478         if (!st->addr_configured) {
479             us->addr=defaultaddrs[i];
480         } else {
481             string_item_to_iaddr(list_elem(caddrl,i),uc->port,&us->addr,"udp");
482         }
483         us->fd=-1;
484     }
485
486     l=dict_lookup(d,"proxy");
487     if (l) {
488         uc->use_proxy=True;
489         uc->proxy.sa.sa_family=AF_INET;
490         item=list_elem(l,0);
491         if (!item || item->type!=t_string) {
492             cfgfatal(cc->loc,"udp","proxy must supply ""addr"",port\n");
493         }
494         a=string_item_to_ipaddr(item,"proxy");
495         uc->proxy.sin.sin_addr.s_addr=htonl(a);
496         item=list_elem(l,1);
497         if (!item || item->type!=t_number) {
498             cfgfatal(cc->loc,"udp","proxy must supply ""addr"",port\n");
499         }
500         uc->proxy.sin.sin_port=htons(item->data.number);
501     }
502
503     update_max_start_pad(&comm_max_start_pad, uc->use_proxy ? 8 : 0);
504
505     add_hook(PHASE_GETRESOURCES,udp_phase_hook,st);
506
507     return new_closure(&cc->cl);
508 }
509
510 void udp_module(dict_t *dict)
511 {
512     add_closure(dict,"udp",udp_apply);
513 }