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