chiark / gitweb /
test-example: Set `system/userid'
[secnet.git] / polypath.c
1 /* polypath
2  * send/receive module for secnet
3  * for multi-route setups */
4
5 #include "secnet.h"
6 #include "util.h"
7 #include "unaligned.h"
8 #include "comm-common.h"
9
10 #include <adns.h>
11 #include <ctype.h>
12
13 #ifdef CONFIG_IPV6
14
15 static comm_sendmsg_fn polypath_sendmsg;
16
17 struct interf {
18     char *name; /* from malloc */
19     struct udpsocks socks;
20     bool_t experienced_xmit_noaf[MAX_AF+1];
21     LIST_ENTRY(interf) entry;
22 };
23
24 struct polypath {
25     struct udpcommon uc;
26     int max_interfs;
27     const char *const *ifname_pats;
28     const char *const *monitor_command;
29     bool_t permit_loopback;
30     LIST_HEAD(,interf) interfs;
31     struct buffer_if lbuf;
32     int monitor_fd;
33     pid_t monitor_pid;
34     int privsep_incoming_fd;
35     int privsep_ipcsock_fd;
36 };
37
38 static void polypath_phase_shutdown(void *sst, uint32_t newphase);
39
40 #define LG 0, st->uc.cc.cl.description, &st->uc.cc.loc
41
42 static const char *const default_loopback_ifname_pats[] = {
43     "!lo", 0
44 };
45 static const char *const default_ifname_pats[] = {
46     "!tun*","!tap*","!sl*","!userv*", "*", 0
47 };
48
49 static const char *const default_monitor_command[] = {
50 #if __linux__
51     DATAROOTDIR "/secnet/" "polypath-interface-monitor-linux", 0
52 #else
53     0
54 #endif
55 };
56
57 static const char *polypath_addr_to_string(void *commst,
58                                            const struct comm_addr *ca)
59 {
60     static char sbuf[100];
61
62     snprintf(sbuf, sizeof(sbuf), "polypath:%s",
63              iaddr_to_string(&ca->ia));
64     return sbuf;
65 }
66
67 static bool_t ifname_search_pats(struct polypath *st, struct cloc loc,
68                                  const char *ifname, bool_t *want_io,
69                                  const char *const *pats) {
70     /* Returns True iff we found a list entry, in which case *want_io
71      * is set to the sense of that entry.  Otherwise *want_io is set
72      * to the sense of the last entry, or unchanged if there were no pats. */
73     if (!pats)
74         return False;
75     const char *const *pati;
76     for (pati=pats; *pati; pati++) {
77         const char *pat=*pati;
78         if (*pat=='!') { *want_io=False; pat++; }
79         else if (*pat=='+') { *want_io=True; pat++; }
80         else if (*pat=='*' || isalnum((unsigned char)*pat)) { *want_io=True; }
81         else cfgfatal(loc,"polypath","invalid interface name pattern `%s'",pat);
82         int match=fnmatch(pat,ifname,0);
83         if (match==0) return True;
84         if (match!=FNM_NOMATCH)
85             cfgfatal(loc,"polypath","fnmatch failed! (pattern `%s')",pat);
86     }
87     return False;
88 }
89
90 static bool_t ifname_wanted(struct polypath *st, struct cloc loc,
91                             const char *ifname) {
92     bool_t want=False; /* pretend an empty cfg ends with !<doesn'tmatch> */
93     if (ifname_search_pats(st,loc,ifname,&want, st->ifname_pats))
94         return want;
95     if (want) /* last pattern was positive, do not search default */
96         return False;
97     if (!st->permit_loopback &&
98         ifname_search_pats(st,loc,ifname,&want, default_loopback_ifname_pats))
99         return want;
100     if (ifname_search_pats(st,loc,ifname,&want, default_ifname_pats))
101         return want;
102     abort();
103 }
104
105 static int polypath_beforepoll(void *state, struct pollfd *fds, int *nfds_io,
106                                int *timeout_io)
107 {
108     struct polypath *st=state;
109     BEFOREPOLL_WANT_FDS(1);
110     fds[0].fd=st->monitor_fd;
111     fds[0].events=POLLIN;
112     return 0;
113 }
114
115 static inline bool_t matches32(uint32_t word, uint32_t prefix, int prefixlen)
116 {
117     assert(prefixlen>0);
118     assert(prefixlen<=32);
119     uint32_t mask = ~(((uint32_t)1 << (32-prefixlen)) - 1);
120     assert(!(prefix & ~mask));
121     return (word & mask) == prefix;
122 }
123
124 /* These macros expect
125  *    bad_fn_type *const bad;
126  *    void *badctx;
127  * and
128  *   out:
129  */
130 #define BAD(m)     do{ bad(st,badctx,m,0);  goto out; }while(0)
131 #define BADE(m,ev) do{ bad(st,badctx,m,ev); goto out; }while(0)
132 typedef void bad_fn_type(struct polypath *st, void *badctx,
133                          const char* m, int ev);
134
135 typedef void polypath_ppml_callback_type(struct polypath *st,
136           bad_fn_type *bad, void *badctx,
137           bool_t add, const char *ifname, const char *ifaddr,
138           const union iaddr *ia, int fd /* -1 if none yet */);
139
140 struct ppml_bad_ctx {
141     const char *orgl;
142     char *undospace;
143 };
144
145 static void ppml_bad(struct polypath *st, void *badctx, const char *m, int ev)
146 {
147     struct ppml_bad_ctx *bc=badctx;
148     if (bc->undospace)
149         *(bc->undospace)=' ';
150     lg_perror(LG,M_WARNING,ev,
151               "error processing polypath state change: %s"
152               " (while processing `%s')",
153               m,bc->orgl);
154 }
155
156 static void polypath_process_monitor_line(struct polypath *st, char *orgl,
157                                       polypath_ppml_callback_type *callback)
158     /* always calls callback with fd==-1 */
159 {
160     struct udpcommon *uc=&st->uc;
161     char *l=orgl;
162     bad_fn_type (*const bad)=ppml_bad;
163     struct ppml_bad_ctx badctx[1]={{
164             .orgl=orgl,
165             .undospace=0
166         }};
167
168     bool_t add;
169     int c=*l++;
170     if (c=='+') add=True;
171     else if (c=='-') add=False;
172     else BAD("bad +/-");
173
174     int proto;
175     c=*l++;
176     if (c=='4') proto=AF_INET;
177     else if (c=='6') proto=AF_INET6;
178     else BAD("bad proto");
179
180     char *space=strchr(l,' ');
181     if (!space) BAD("no first space");
182     const char *ifname=space+1;
183
184     space=strchr(ifname,' ');
185     if (!space) BAD("no second space");
186     const char *ifaddr=space+1;
187     *space=0;
188     badctx->undospace=space;
189
190     union iaddr ia;
191     FILLZERO(ia);
192     socklen_t salen=sizeof(ia);
193     int r=adns_text2addr(ifaddr,uc->port, adns_qf_addrlit_ipv4_quadonly,
194                          &ia.sa, &salen);
195     assert(r!=ENOSPC);
196     if (r) BADE("adns_text2addr",r);
197     if (ia.sa.sa_family!=proto) BAD("address family mismatch");
198
199 #define DONT(m) do{                                                     \
200         if (add)                                                        \
201             lg_perror(LG,M_INFO,0,"ignoring %s [%s]: %s",ifname,ifaddr,m); \
202         goto out;                                                       \
203     }while(0)
204
205     if (!ifname_wanted(st,st->uc.cc.loc,ifname))
206         DONT("unwanted interface name");
207
208     switch (ia.sa.sa_family) {
209     case AF_INET6: {
210         const struct in6_addr *i6=&ia.sin6.sin6_addr;
211 #define DONTKIND(X,m) \
212         if (IN6_IS_ADDR_##X(i6)) DONT("IPv6 address is " m)
213         DONTKIND(UNSPECIFIED, "unspecified");
214         DONTKIND(MULTICAST  , "multicast"  );
215         DONTKIND(LINKLOCAL  , "link local" );
216         DONTKIND(SITELOCAL  , "site local" );
217         DONTKIND(V4MAPPED   , "v4-mapped"  );
218         if (!st->permit_loopback)
219             DONTKIND(LOOPBACK   , "loopback"   );
220 #undef DONTKIND
221 #define DONTMASK(w7x,w6x,prefixlen,m)                                   \
222         if (matches32(get_uint32(i6->s6_addr),                          \
223                       ((uint32_t)0x##w7x << 16) | (uint32_t)0x##w6x,    \
224                       prefixlen))                                       \
225             DONT("IPv6 address is " m)
226         DONTMASK( 100,   0,  8, "Discard-Only (RFC6666)");
227         DONTMASK(2001,   0, 23, "in IETF protocol block (RFC2928)");
228 #undef DONTMASK
229         break;
230     }
231     case AF_INET: {
232         const uint32_t i4=htonl(ia.sin.sin_addr.s_addr);
233         if (i4==INADDR_ANY) DONT("IPv4 address is any/unspecified");
234         if (i4==INADDR_BROADCAST) DONT("IPv4 address is all hosts broadcast");
235 #define DONTMASK(b3,b2,b1,b0,prefixlen,m) do{                           \
236             const uint8_t prefixbytes[4] = { (b3),(b2),(b1),(b0) };     \
237             if (matches32(i4,get_uint32(prefixbytes),prefixlen))        \
238                 DONT("IPv4 address is " m);                             \
239         }while(0)
240         DONTMASK(169,254,0,0, 16, "link local");
241         DONTMASK(224,  0,0,0,  4, "multicast");
242         DONTMASK(192,  0,0,0, 24, "in IETF protocol block (RFC6890)");
243         DONTMASK(240,  0,0,0,  4, "in reserved addressing block (RFC1112)");
244         if (!st->permit_loopback)
245             DONTMASK(127,  0,0,0,  8, "loopback");
246 #undef DONTMASK
247         break;
248     }
249     default:
250         abort();
251     }
252
253 #undef DONT
254
255     /* OK, process it */
256     callback(st, bad,badctx, add,ifname,ifaddr,&ia,-1);
257
258  out:;
259 }
260
261 static void dump_pria(struct polypath *st, const char *ifname)
262 {
263 #ifdef POLYPATH_DEBUG
264     struct interf *interf;
265     if (ifname)
266         lg_perror(LG,M_DEBUG,0, "polypath record ifaddr `%s'",ifname);
267     LIST_FOREACH(interf, &st->interfs, entry) {
268         lg_perror(LG,M_DEBUG,0, "  polypath interface `%s', nsocks=%d",
269                   interf->name, interf->socks.n_socks);
270         int i;
271         for (i=0; i<interf->socks.n_socks; i++) {
272             struct udpsock *us=&interf->socks.socks[i];
273             lg_perror(LG,M_DEBUG,0, "    polypath sock fd=%d addr=%s",
274                       us->fd, iaddr_to_string(&us->addr));
275         }
276     }
277 #endif
278 }
279
280 static bool_t polypath_make_socket(struct polypath *st,
281                                    bad_fn_type *bad, void *badctx,
282                                    struct udpsock *us, const char *ifname)
283     /* on error exit has called bad; might leave us->fd as -1 */
284 {
285     assert(us->fd==-1);
286
287     bool_t ok=udp_make_socket(&st->uc,us,M_WARNING);
288     if (!ok) BAD("unable to set up socket");
289     int r=setsockopt(us->fd,SOL_SOCKET,SO_BINDTODEVICE,
290                      ifname,strlen(ifname)+1);
291     if (r) BADE("setsockopt(,,SO_BINDTODEVICE,)",errno);
292     return True;
293
294  out:
295     return False;
296 }
297
298 static void polypath_record_ifaddr(struct polypath *st,
299                                    bad_fn_type *bad, void *badctx,
300                                    bool_t add, const char *ifname,
301                                    const char *ifaddr,
302                                    const union iaddr *ia, int fd)
303 {
304     struct udpcommon *uc=&st->uc;
305     struct interf *interf=0;
306     struct udpsock *us=0;
307
308     dump_pria(st,ifname);
309
310     int n_ifs=0;
311     LIST_FOREACH(interf,&st->interfs,entry) {
312         if (!strcmp(interf->name,ifname))
313             goto found_interf;
314         n_ifs++;
315     }
316     /* not found */
317     if (n_ifs==st->max_interfs) BAD("too many interfaces");
318     interf=malloc(sizeof(*interf));
319     if (!interf) BADE("malloc for new interface",errno);
320     interf->name=0;
321     interf->socks.n_socks=0;
322     FILLZERO(interf->experienced_xmit_noaf);
323     LIST_INSERT_HEAD(&st->interfs,interf,entry);
324     udp_socks_register(&st->uc,&interf->socks);
325     interf->name=strdup(ifname);
326     if (!interf->name) BADE("strdup interface name",errno);
327  found_interf:
328
329     if (add) {
330         if (interf->socks.n_socks == UDP_MAX_SOCKETS)
331             BAD("too many addresses on this interface");
332         struct udpsock *us=&interf->socks.socks[interf->socks.n_socks];
333         us->fd=-1;
334         COPY_OBJ(us->addr,*ia);
335         if (fd<0) {
336             bool_t ok=polypath_make_socket(st,bad,badctx, us,ifname);
337             if (!ok) goto out;
338         } else {
339             FILLZERO(us->experienced);
340             us->fd=fd;
341             fd=-1;
342         }
343         interf->socks.n_socks++;
344         us=0; /* do not destroy this socket during `out' */
345         lg_perror(LG,M_INFO,0,"using %s %s",ifname,ifaddr);
346     } else {
347         int i;
348         for (i=0; i<interf->socks.n_socks; i++)
349             if (!memcmp(&interf->socks.socks[i].addr,ia,sizeof(*ia)))
350                 goto address_remove_found;
351         BAD("address to remove not found");
352     address_remove_found:
353         lg_perror(LG,M_INFO,0,"removed %s %s",ifname,ifaddr);
354         udp_destroy_socket(&st->uc,&interf->socks.socks[i]);
355         interf->socks.socks[i]=
356             interf->socks.socks[--interf->socks.n_socks];
357     }
358
359  out:
360     if (us)
361         udp_destroy_socket(uc,us);
362     if (fd>=0)
363         close(fd);
364     if (interf && !interf->socks.n_socks) {
365         udp_socks_deregister(&st->uc,&interf->socks);
366         LIST_REMOVE(interf,entry);
367         free(interf->name);
368         free(interf);
369     }
370
371     dump_pria(st,0);
372 }
373
374 static void subproc_problem(struct polypath *st,
375                             enum async_linebuf_result alr, const char *emsg)
376 {
377     int status;
378     assert(st->monitor_pid);
379
380     pid_t gotpid=waitpid(st->monitor_pid,&status,WNOHANG);
381     if (gotpid==st->monitor_pid) {
382         st->monitor_pid=0;
383         lg_exitstatus(LG,M_FATAL,status,"interface monitor");
384     } else if (gotpid<0)
385         lg_perror(LG,M_ERR,errno,"unable to reap interface monitor");
386     else
387         assert(gotpid==0);
388
389     if (alr==async_linebuf_eof)
390         lg_perror(LG,M_FATAL,0,"unexpected EOF from interface monitor");
391     else
392         lg_perror(LG,M_FATAL,0,"bad output from interface monitor: %s",emsg);
393     assert(!"not reached");
394 }
395
396 /* Used in non-privsep case, and in privsep child */
397 static void afterpoll_monitor(struct polypath *st, struct pollfd *fd,
398                               polypath_ppml_callback_type *callback)
399 {
400     enum async_linebuf_result alr;
401     const char *emsg;
402     
403     while ((alr=async_linebuf_read(fd,&st->lbuf,&emsg)) == async_linebuf_ok)
404         polypath_process_monitor_line(st,st->lbuf.base,callback);
405
406     if (alr==async_linebuf_nothing)
407         return;
408
409     subproc_problem(st,alr,emsg);
410 }
411
412 /* Used in non-privsep case only - glue for secnet main loop */
413 static void polypath_afterpoll_monitor(void *state, struct pollfd *fds,
414                                        int nfds)
415 {
416     struct polypath *st=state;
417     if (nfds<1) return;
418     afterpoll_monitor(st,fds,polypath_record_ifaddr);
419 }
420
421 /* Actual udp packet sending work */
422 static bool_t polypath_sendmsg(void *commst, struct buffer_if *buf,
423                           const struct comm_addr *dest)
424 {
425     struct polypath *st=commst;
426     struct interf *interf;
427     bool_t allreasonable=True;
428     int af=dest->ia.sa.sa_family;
429
430     LIST_FOREACH(interf,&st->interfs,entry) {
431         int i;
432         bool_t attempted=False, reasonable=False;
433         for (i=0; i<interf->socks.n_socks; i++) {
434             struct udpsock *us=&interf->socks.socks[i];
435             if (af != us->addr.sa.sa_family)
436                 continue;
437             attempted=True;
438             int r=sendto(us->fd,buf->start,buf->size,
439                          0,&dest->ia.sa,iaddr_socklen(&dest->ia));
440             udp_sock_experienced(0,&st->uc, interf->name,us,
441                                  1,af, r,errno);
442             if (r>=0) {
443                 reasonable=True;
444                 break;
445             }
446             if (!(errno==EAFNOSUPPORT || errno==ENETUNREACH))
447                 reasonable=True;
448             lg_perror(LG,M_DEBUG,errno,"%s [%s] xmit %"PRIu32" bytes to %s",
449                       interf->name,iaddr_to_string(&us->addr),
450                       buf->size,iaddr_to_string(&dest->ia));
451         }
452         if (!attempted)
453             if (!interf->experienced_xmit_noaf[af]++)
454                 lg_perror(LG,M_WARNING,0,
455                           "%s has no suitable address to transmit %s",
456                           interf->name, af_name(af));
457         allreasonable *= reasonable;
458     }
459     return allreasonable;
460 }
461
462 /* Non-privsep: called in (sole) child.  Privsep: in grandchild. */
463 static void child_monitor(struct polypath *st, int childfd)
464 {
465     dup2(childfd,1);
466     execvp(st->monitor_command[0],(char**)st->monitor_command);
467     fprintf(stderr,"secnet: cannot execute %s: %s\n",
468             st->monitor_command[0], strerror(errno));
469     exit(-1);
470 }
471
472 /* General utility function. */
473 static void start_subproc(struct polypath *st, void (*make_fdpair)(int[2]),
474                           void (*child)(struct polypath *st, int childfd),
475                           const char *desc)
476 {
477     int pfds[2];
478
479     assert(!st->monitor_pid);
480     assert(st->monitor_fd<0);
481
482     make_fdpair(pfds);
483
484     pid_t pid=fork();
485     if (!pid) {
486         afterfork();
487         close(pfds[0]);
488         child(st,pfds[1]);
489         abort();
490     }
491     if (pid<0)
492         fatal_perror("%s: failed to fork for interface monitoring",
493                      st->uc.cc.cl.description);
494
495     close(pfds[1]);
496     st->monitor_pid=pid;
497     st->monitor_fd=pfds[0];
498     setnonblock(st->monitor_fd);
499
500     lg_perror(LG,M_NOTICE,0, "%s: spawning %s [pid %ld]",
501               st->uc.cc.cl.description, desc, (long)st->monitor_pid);
502 }
503
504 /* Non-privsep only: glue for forking the monitor, from the main loop */
505 static void polypath_phase_startmonitor(void *sst, uint32_t newphase)
506 {
507     struct polypath *st=sst;
508     start_subproc(st,pipe_cloexec,child_monitor,
509                   "interface monitor (no privsep)");
510     register_for_poll(st,polypath_beforepoll,
511                       polypath_afterpoll_monitor,"polypath");
512 }
513
514 /*----- Privsep-only: -----*/
515
516 /*
517  * We use two subprocesses, a child and a grandchild.  These are
518  * forked before secnet drops privilege.
519  *
520  * The grandchild is the same interface monitor helper script as used
521  * in the non-privsep case.  But its lines are read by the child
522  * instead of by the main secnet.  The child is responsible for
523  * creating the actual socket (binding it, etc.).  Each socket is
524  * passed to secnet proper via fd passing, along with a data message
525  * describing the interface name and address.  The child does not
526  * retain a list of current interfaces and addresses - it trusts the
527  * interface monitor to get that right.  secnet proper still maintains
528  * that data structure.
529  *
530  * The result is that much of the non-privsep code can be reused, but
531  * just plumbed together differently.
532  *
533  * The child does not retain the socket after passing it on.
534  * Interface removals are handled similarly but without any fd.
535  *
536  * The result is that the configuration's limits on which interfaces
537  * and ports secnet may use are enforced by the privileged child.
538  */
539
540 struct privsep_mdata {
541     bool_t add;
542     char ifname[100];
543     union iaddr ia;
544 };
545
546 static void papp_bad(struct polypath *st, void *badctx, const char *m, int ev)
547 {
548     const struct privsep_mdata *mdata=(const void*)st->lbuf.start;
549     const char *addr_str=badctx;
550
551     lg_perror(LG,M_WARNING,ev,
552               "error processing polypath address change %s %s [%s]: %s",
553               mdata->add ? "+" : "-",
554               mdata->ifname, addr_str, m);
555 }
556
557 static void polypath_afterpoll_privsep(void *state, struct pollfd *fds,
558                                        int nfds)
559 /* In secnet proper; receives messages from child. */
560 {
561     struct polypath *st=state;
562
563     if (nfds<1) return;
564
565     int revents=fds[0].revents;
566
567     const char *badbit=pollbadbit(revents);
568     if (badbit) subproc_problem(st,async_linebuf_broken,badbit);
569
570     if (!(revents & POLLIN)) return;
571
572     for (;;) {
573         if (st->lbuf.size==sizeof(struct privsep_mdata)) {
574             const struct privsep_mdata *mdata=(const void*)st->lbuf.start;
575             if (mdata->add && st->privsep_incoming_fd<0)
576                 fatal("polypath (privsep): got add message data but no fd");
577             if (!mdata->add && st->privsep_incoming_fd>=0)
578                 fatal("polypath (privsep): got remove message data with fd");
579             if (!memchr(mdata->ifname,0,sizeof(mdata->ifname)))
580                 fatal("polypath (privsep): got ifname with no terminating nul");
581             int af=mdata->ia.sa.sa_family;
582             if (!(af==AF_INET6 || af==AF_INET))
583                 fatal("polypath (privsep): got message data but bad AF %d",af);
584             const char *addr_str=iaddr_to_string(&mdata->ia);
585             polypath_record_ifaddr(st,papp_bad,(void*)addr_str,
586                                    mdata->add,mdata->ifname,addr_str,
587                                    &mdata->ia, st->privsep_incoming_fd);
588             st->privsep_incoming_fd=-1;
589             st->lbuf.size=0;
590         }
591         struct msghdr msg;
592         int fd;
593         size_t cmsgdatalen=sizeof(fd);
594         char cmsg_control_buf[CMSG_SPACE(cmsgdatalen)];
595         struct iovec iov;
596
597         FILLZERO(msg);
598         msg.msg_iov=&iov;
599         msg.msg_iovlen=1;
600
601         iov.iov_base=st->lbuf.start+st->lbuf.size;
602         iov.iov_len=sizeof(struct privsep_mdata)-st->lbuf.size;
603
604         if (st->privsep_incoming_fd<0) {
605             msg.msg_control=cmsg_control_buf;
606             msg.msg_controllen=sizeof(cmsg_control_buf);
607         }
608
609         ssize_t got=recvmsg(st->monitor_fd,&msg,0);
610         if (got<0) {
611             if (errno==EINTR) continue;
612             if (iswouldblock(errno)) break;
613             fatal_perror("polypath (privsep): recvmsg failed");
614         }
615         if (got==0)
616             subproc_problem(st,async_linebuf_eof,0);
617
618         st->lbuf.size+=got;
619
620         if (msg.msg_controllen) {
621             size_t cmsgdatalen=sizeof(st->privsep_incoming_fd);
622             struct cmsghdr *h=CMSG_FIRSTHDR(&msg);
623             if (!(st->privsep_incoming_fd==-1 &&
624                   h &&
625                   h->cmsg_level==SOL_SOCKET &&
626                   h->cmsg_type==SCM_RIGHTS &&
627                   h->cmsg_len==CMSG_LEN(cmsgdatalen) &&
628                   !CMSG_NXTHDR(&msg,h)))
629                 subproc_problem(st,async_linebuf_broken,"bad cmsg");
630             memcpy(&st->privsep_incoming_fd,CMSG_DATA(h),cmsgdatalen);
631             assert(st->privsep_incoming_fd>=0);
632         }
633
634     }
635 }
636
637 static void privsep_handle_ifaddr(struct polypath *st,
638                                    bad_fn_type *bad, void *badctx,
639                                    bool_t add, const char *ifname,
640                                    const char *ifaddr,
641                                    const union iaddr *ia, int fd_dummy)
642 /* In child: handles discovered wanted interfaces, making sockets
643    and sending them to secnet proper. */
644 {
645     struct msghdr msg;
646     struct iovec iov;
647     struct udpsock us={ .fd=-1 };
648     size_t cmsgdatalen=sizeof(us.fd);
649     char cmsg_control_buf[CMSG_SPACE(cmsgdatalen)];
650
651     assert(fd_dummy==-1);
652
653     struct privsep_mdata mdata;
654     FILLZERO(mdata);
655     mdata.add=add;
656
657     size_t l=strlen(ifname);
658     if (l>=sizeof(mdata.ifname)) BAD("interface name too long");
659     strcpy(mdata.ifname,ifname);
660
661     COPY_OBJ(mdata.ia,*ia);
662
663     iov.iov_base=&mdata;
664     iov.iov_len =sizeof(mdata);
665
666     FILLZERO(msg);
667     msg.msg_iov=&iov;
668     msg.msg_iovlen=1;
669
670     if (add) {
671         COPY_OBJ(us.addr,*ia);
672         bool_t ok=polypath_make_socket(st,bad,badctx,&us,ifname);
673         if (!ok) goto out;
674
675         msg.msg_control=cmsg_control_buf;
676         msg.msg_controllen=sizeof(cmsg_control_buf);
677
678         struct cmsghdr *h=CMSG_FIRSTHDR(&msg);
679         h->cmsg_level=SOL_SOCKET;
680         h->cmsg_type =SCM_RIGHTS;
681         h->cmsg_len  =CMSG_LEN(cmsgdatalen);
682         memcpy(CMSG_DATA(h),&us.fd,cmsgdatalen);
683     }
684
685     while (iov.iov_len) {
686         ssize_t got=sendmsg(st->privsep_ipcsock_fd,&msg,0);
687         if (got<0) {
688             if (errno!=EINTR) fatal_perror("polypath privsep sendmsg");
689             got=0;
690         } else {
691             assert(got>0);
692             assert((size_t)got<=iov.iov_len);
693         }
694         iov.iov_base=(char*)iov.iov_base+got;
695         iov.iov_len-=got;
696         msg.msg_control=0;
697         msg.msg_controllen=0;
698     }
699
700  out:
701     if (us.fd>=0) close(us.fd);
702 }
703
704 static void child_privsep(struct polypath *st, int ipcsockfd)
705 /* Privsep child main loop. */
706 {
707     struct pollfd fds[2];
708
709     enter_phase(PHASE_CHILDPERSIST);
710
711     st->privsep_ipcsock_fd=ipcsockfd;
712     start_subproc(st,pipe_cloexec,child_monitor,
713                   "interface monitor (grandchild)");
714     for (;;) {
715         int nfds=1;
716         int r=polypath_beforepoll(st,fds,&nfds,0);
717         assert(nfds==1);
718         assert(!r);
719
720         fds[1].fd=st->privsep_ipcsock_fd;
721         fds[1].events=POLLIN;
722
723         r=poll(fds,ARRAY_SIZE(fds),-1);
724
725         if (r<0) {
726             if (errno==EINTR) continue;
727             fatal_perror("polypath privsep poll");
728         }
729         if (fds[1].revents) {
730             if (fds[1].revents & (POLLHUP|POLLIN)) {
731                 polypath_phase_shutdown(st,PHASE_SHUTDOWN);
732                 exit(0);
733             }
734             fatal("polypath privsep poll parent socket revents=%#x",
735                   fds[1].revents);
736         }
737         if (fds[0].revents & POLLNVAL)
738             fatal("polypath privsep poll child socket POLLNVAL");
739         afterpoll_monitor(st,fds,privsep_handle_ifaddr);
740     }
741 }
742
743 static void privsep_socketpair(int *fd)
744 {
745     int r=socketpair(AF_UNIX,SOCK_STREAM,0,fd);
746     if (r) fatal_perror("socketpair(AF_UNIX,SOCK_STREAM,,)");
747     setcloexec(fd[0]);
748     setcloexec(fd[1]);
749 }
750
751 static void polypath_phase_startprivsep(void *sst, uint32_t newphase)
752 {
753     struct polypath *st=sst;
754
755     if (!will_droppriv()) {
756         add_hook(PHASE_RUN,          polypath_phase_startmonitor,st);
757         return;
758     }
759
760     start_subproc(st,privsep_socketpair,child_privsep,
761                   "socket generator (privsep interface handler)");
762
763     BUF_FREE(&st->lbuf);
764     buffer_destroy(&st->lbuf);
765     buffer_new(&st->lbuf,sizeof(struct privsep_mdata));
766     BUF_ALLOC(&st->lbuf,"polypath mdata buf");
767     st->privsep_incoming_fd=-1;
768
769     register_for_poll(st,polypath_beforepoll,
770                       polypath_afterpoll_privsep,"polypath");
771 }
772
773 static void polypath_phase_shutdown(void *sst, uint32_t newphase)
774 {
775     struct polypath *st=sst;
776     if (st->monitor_pid) {
777         assert(st->monitor_pid>0);
778         kill(st->monitor_pid,SIGTERM);
779     }
780 }
781
782 static void polypath_phase_childpersist(void *sst, uint32_t newphase)
783 {
784     struct polypath *st=sst;
785     struct interf *interf;
786
787     LIST_FOREACH(interf,&st->interfs,entry)
788         udp_socks_childpersist(&st->uc,&interf->socks);
789 }
790
791 #undef BAD
792 #undef BADE
793
794 /*----- generic closure and module setup -----*/
795
796 static list_t *polypath_apply(closure_t *self, struct cloc loc,
797                               dict_t *context, list_t *args)
798 {
799     struct polypath *st;
800
801     COMM_APPLY(st,&st->uc.cc,polypath_,"polypath",loc);
802     COMM_APPLY_STANDARD(st,&st->uc.cc,"polypath",args);
803     UDP_APPLY_STANDARD(st,&st->uc,"polypath");
804
805     struct udpcommon *uc=&st->uc;
806     struct commcommon *cc=&uc->cc;
807
808     st->max_interfs=dict_read_number(d,"max-interfaces",False,"polypath",loc,3);
809
810     st->ifname_pats=dict_read_string_array(d,"interfaces",False,"polypath",
811                                            cc->loc,0);
812     st->permit_loopback=0; /* ifname_wanted reads this */
813     ifname_wanted(st,st->uc.cc.loc," "); /* try to check each pattern */
814
815     st->monitor_command=dict_read_string_array(d,"monitor-command",False,
816                                "polypath",cc->loc, default_monitor_command);
817     if (!st->monitor_command[0])
818         cfgfatal(loc,"polypath","no polypath interface monitor-command"
819                  " (polypath unsupported on this platform?)\n");
820
821     st->permit_loopback=dict_read_bool(d,"permit-loopback",False,
822                                        "polypath",cc->loc,False);
823
824     LIST_INIT(&st->interfs);
825     buffer_new(&st->lbuf,ADNS_ADDR2TEXT_BUFLEN+100);
826     BUF_ALLOC(&st->lbuf,"polypath lbuf");
827
828     st->monitor_fd=-1;
829     st->monitor_pid=0;
830
831     add_hook(PHASE_GETRESOURCES, polypath_phase_startprivsep,st);
832
833     add_hook(PHASE_SHUTDOWN,    polypath_phase_shutdown,    st);
834     add_hook(PHASE_CHILDPERSIST,polypath_phase_childpersist,st);
835
836     return new_closure(&cc->cl);
837 }
838
839 #endif /* CONFIG_IPV6 */
840
841 void polypath_module(dict_t *dict)
842 {
843 #ifdef CONFIG_IPV6
844     add_closure(dict,"polypath",polypath_apply);
845 #endif /* CONFIG_IPV6 */
846 }