chiark / gitweb /
Bugfixes: install service prog in right place; allow no extra routes.
[userv-utils] / ipif / service.c
CommitLineData
1c1a9fa1 1/*
2 * userv service (or standalone program)
3 * for per-user IP subranges.
4 *
5 * This is invoked as root, directly from userv.
6 * Its arguments are supposed to be, in order:
1e963473 7 * <config>
8 * Specifies address ranges and gids which own them.
1c1a9fa1 9 * -- Indicates that the remaining arguments are user-supplied
10 * and therefore untrusted.
11 * <local-addr>,<peer-addr>,<mtu>,<proto>
12 * As for slattach. Supported protocols are slip, cslip, and
13 * adaptive. Alternatively, set to `debug' to print debugging
14 * info. <local-addr> is address of the interface on chiark;
15 * <peer-addr> is the address of the point-to-point peer.
16 * <prefix>/<mask>,<prefix>/<mask>,...
17 * List of additional routes to add for this interface.
18 * May be the empty argument.
19 *
1e963473 20 * <config> is either
21 * <gid>,<prefix>/<len>[,<junk>]
22 * indicating that that gid may allocate addresses in
23 * the relevant subspace (<junk> is ignored)
24 * or #...
25 * which is a comment
26 * or /<config-file-name> or ./<config-file-name> or ../<config-file-name>
27 * which refers to a file which contains lines which
28 * are each <config>
29 * or *
30 * which means that anything is permitted
31 *
1c1a9fa1 32 * Should be run from userv with no-disconnect-hup.
33 */
34
35#include <stdio.h>
36#include <string.h>
37#include <stdlib.h>
38#include <assert.h>
39#include <errno.h>
1e963473 40#include <stdarg.h>
41#include <ctype.h>
42#include <limits.h>
02b2392d 43#include <signal.h>
44#include <unistd.h>
45
46#include <sys/types.h>
47#include <sys/wait.h>
48#include <sys/stat.h>
1c1a9fa1 49
1e963473 50#define NARGS 4
1c1a9fa1 51#define MAXEXROUTES 5
52#define ATXTLEN 12
53
1e963473 54static const unsigned long gidmaxval= (unsigned long)((gid_t)-2);
55static const char *const protos_ok[]= { "slip", "cslip", "adaptive", 0 };
02b2392d 56static const int signals[]= { SIGHUP, SIGINT, SIGTERM, 0 };
1e963473 57
58static const char *configstr, *proto;
1c1a9fa1 59static unsigned long localaddr, peeraddr, mtu;
1e963473 60static int localallow, peerallow, allallow;
1c1a9fa1 61static int nexroutes;
62static struct exroute {
63 unsigned long prefix, mask;
1e963473 64 int allow;
1c1a9fa1 65 char prefixtxt[ATXTLEN], masktxt[ATXTLEN];
66} exroutes[MAXEXROUTES];
67
1e963473 68static char localtxt[ATXTLEN];
69static char peertxt[ATXTLEN];
70
71static struct pplace {
72 struct pplace *parent;
73 const char *filename;
74 int lineno;
75} *cpplace;
76
02b2392d 77
6d360a53 78static int slpipe[2], ptmaster, undoslattach;
02b2392d 79static const char *ifname;
80static const char *ptyname;
81
82#define NPIDS 4
83
84static union {
85 struct { pid_t sl, cout, cin, task; } byname;
86 pid_t bynumber[NPIDS];
87} pids;
88sigset_t emptyset, fullset;
89
90
6d360a53 91static int cleantask(void) {
92 pid_t pid;
93
94 pid= fork();
95 if (!pid) return 1;
96 if (pid == (pid_t)-1)
97 perror("userv-ipif: fork for undo slattach failed - cannot clean up properly");
98 return 0;
99}
100
02b2392d 101static void terminate(int estatus) {
102 int i, status;
103 pid_t pid;
104
105 for (i=0; i<NPIDS; i++)
106 if (pids.bynumber[i]) kill(pids.bynumber[i], SIGTERM);
6d360a53 107
108 if (undoslattach) {
109 if (cleantask()) {
110 execlp("slattach", "slattach", "-p", "tty", ptyname, (char*)0);
111 perror("userv-ipif: exec slattach for undo slattach failed");
112 exit(-1);
113 }
114 if (ifname && cleantask()) {
115 execlp("ifconfig", "ifconfig", ifname, "down", (char*)0);
116 perror("userv-ipif: exec ifconfig for undo ifconfig failed");
117 exit(-1);
118 }
119 }
120
02b2392d 121 for (;;) {
122 pid= waitpid(-1,&status,0);
123 if (pid == (pid_t)-1) break;
124 }
125 exit(estatus);
126}
127
128
1e963473 129static void fatal(const char *fmt, ...)
130 __attribute__((format(printf,1,2)));
131static void fatal(const char *fmt, ...) {
132 va_list al;
133 va_start(al,fmt);
1c1a9fa1 134
1e963473 135 fputs("userv-ipif service: fatal error: ",stderr);
136 vfprintf(stderr, fmt, al);
137 putc('\n',stderr);
02b2392d 138 terminate(8);
1c1a9fa1 139}
140
1e963473 141static void sysfatal(const char *fmt, ...)
142 __attribute__((format(printf,1,2)));
143static void sysfatal(const char *fmt, ...) {
144 va_list al;
145 int e;
146
147 e= errno;
148 va_start(al,fmt);
149
6d360a53 150 fputs("userv-ipif service: fatal system error: ",stderr);
1e963473 151 vfprintf(stderr, fmt, al);
6d360a53 152 fprintf(stderr,": %s\n", strerror(e));
02b2392d 153 terminate(12);
1c1a9fa1 154}
1e963473 155
156
157static void badusage(const char *fmt, ...)
158 __attribute__((format(printf,1,2)));
159static void badusage(const char *fmt, ...) {
160 va_list al;
161 struct pplace *cpp;
1c1a9fa1 162
1e963473 163 if (cpplace) {
164 fprintf(stderr,
165 "userv-ipif service: %s:%d: ",
166 cpplace->filename, cpplace->lineno);
167 } else {
168 fputs("userv-ipif service: invalid usage: ",stderr);
169 }
170 va_start(al,fmt);
171 vfprintf(stderr, fmt, al);
172 putc('\n',stderr);
173
174 if (cpplace) {
175 for (cpp=cpplace->parent; cpp; cpp=cpp->parent) {
176 fprintf(stderr,
177 "userv-ipif service: %s:%d: ... in file included from here\n",
178 cpp->filename, cpp->lineno);
179 }
180 }
02b2392d 181 terminate(16);
1c1a9fa1 182}
183
184static char *ip2txt(unsigned long addr, char *buf) {
185 sprintf(buf, "%lu.%lu.%lu.%lu",
186 (addr>>24) & 0x0ff,
187 (addr>>16) & 0x0ff,
188 (addr>>8) & 0x0ff,
189 (addr) & 0x0ff);
190 return buf;
191}
192
193static unsigned long eat_number(const char **argp, const char *what,
194 unsigned long min, unsigned long max,
195 const char *endchars, int *endchar_r) {
196 /* If !endchars then the endchar must be a nul, otherwise it may be
197 * a nul (resulting in *argp set to 0) or something else (*argp set
198 * to point to after delim, *endchar_r set to delim).
199 * *endchar_r may be 0.
200 */
201 unsigned long rv;
202 char *ep;
203 int endchar;
204
baba1099 205 if (!*argp) { badusage("missing number %s",what); }
1c1a9fa1 206 rv= strtoul(*argp,&ep,0);
207 if ((endchar= *ep)) {
baba1099 208 if (!endchars) badusage("junk after number %s",what);
1e963473 209 if (!strchr(endchars,endchar))
210 badusage("invalid character or delimiter `%c' in or after number, %s:"
baba1099 211 " expected %s (or none?)", endchar,what,endchars);
1c1a9fa1 212 *argp= ep+1;
213 } else {
214 *argp= 0;
215 }
216 if (endchar_r) *endchar_r= endchar;
1e963473 217 if (rv < min || rv > max) badusage("number %s value %lu out of range %lu..%lu",
218 what, rv, min, max);
1c1a9fa1 219 return rv;
220}
221
1c1a9fa1 222static void addrnet_mustdiffer(const char *w1, unsigned long p1, unsigned long m1,
223 const char *w2, unsigned long p2, unsigned long m2) {
224 unsigned long mask;
225
226 mask= m1&m2;
227 if ((p1 & mask) != (p2 & mask)) return;
1e963473 228 badusage("%s %08lx/%08lx overlaps/clashes with %s %08lx/%08lx",
229 w1,p1,m1, w2,p2,m2);
1c1a9fa1 230}
231
232static unsigned long eat_addr(const char **argp, const char *what,
1c1a9fa1 233 const char *endchars, int *endchar_r) {
234 char whatbuf[100];
235 unsigned long rv;
236 int i;
237
1c1a9fa1 238 for (rv=0, i=0;
239 i<4;
240 i++) {
241 rv <<= 8;
242 sprintf(whatbuf,"%s byte #%d",what,i);
243 rv |= eat_number(argp,whatbuf, 0,255, i<3 ? "." : endchars, endchar_r);
244 }
245
1c1a9fa1 246 return rv;
247}
248
249static void eat_prefixmask(const char **argp, const char *what,
1c1a9fa1 250 const char *endchars, int *endchar_r,
251 unsigned long *prefix_r, unsigned long *mask_r, int *len_r) {
252 /* mask_r and len_r may be 0 */
253 char whatbuf[100];
254 int len;
255 unsigned long prefix, mask;
256
1e963473 257 prefix= eat_addr(argp,what, "/",0);
1c1a9fa1 258 sprintf(whatbuf,"%s length",what);
259 len= eat_number(argp,whatbuf, 0,32, endchars,endchar_r);
260
261 mask= (~0UL << (32-len));
baba1099 262 if (prefix & ~mask) badusage("%s prefix %08lx not fully contained in mask %08lx",
1e963473 263 what,prefix,mask);
1c1a9fa1 264 *prefix_r= prefix;
265 if (mask_r) *mask_r= mask;
266 if (len_r) *len_r= len;
267}
1e963473 268
269static int addrnet_isin(unsigned long prefix, unsigned long mask,
270 unsigned long mprefix, unsigned long mmask) {
271 return !(~mask & mmask) && (prefix & mmask) == mprefix;
272}
1c1a9fa1 273
1c1a9fa1 274
1e963473 275static void permit(unsigned long pprefix, unsigned long pmask) {
276 int i, any;
1c1a9fa1 277
1e963473 278 assert(!(pprefix & ~pmask));
1c1a9fa1 279
1e963473 280 if (!proto) fputs("permits",stdout);
281 if (addrnet_isin(localaddr,~0UL, pprefix,pmask)) {
282 if (!proto) fputs(" local-addr",stdout);
283 any= localallow= 1;
284 }
285 if (addrnet_isin(peeraddr,~0UL, pprefix,pmask)) {
286 if (!proto) fputs(" peer-addr",stdout);
287 any= peerallow= 1;
288 }
289 for (i=0; i<nexroutes; i++) {
290 if (addrnet_isin(exroutes[i].prefix,exroutes[i].mask, pprefix,pmask)) {
291 if (!proto) printf(" route#%d",i);
292 any= exroutes[i].allow= 1;
293 }
294 }
295 if (!proto) {
296 if (!any) fputs(" nothing!",stderr);
297 putchar('\n');
298 }
299}
1c1a9fa1 300
1e963473 301static void pconfig(const char *configstr, int truncated);
302
303static void pfile(const char *filename) {
304 FILE *file;
305 char buf[PATH_MAX];
306 int l, truncated, c;
307 struct pplace npp, *cpp;
308
309 for (cpp=cpplace; cpp; cpp=cpp->parent) {
310 if (!strcmp(cpp->filename,filename))
311 badusage("recursive configuration file `%s'",filename);
312 }
313
314 file= fopen(filename,"r");
315 if (!file)
316 badusage("cannot open configuration file `%s': %s", filename, strerror(errno));
317
318 if (!proto) printf("config file `%s':\n",filename);
319
320 npp.parent= cpplace;
321 npp.filename= filename;
322 npp.lineno= 0;
323 cpplace= &npp;
324
325 while (fgets(buf, sizeof(buf), file)) {
326 npp.lineno++;
327 l= strlen(buf);
328 if (!l) continue;
329
330 truncated= (buf[l-1] != '\n');
331 while (l>0 && isspace((unsigned char) buf[l-1])) l--;
332 if (!l) continue;
333 buf[l]= 0;
334
335 if (truncated) {
336 while ((c= getc(file)) != EOF && c != '\n');
337 if (c == EOF) break;
338 }
339
340 pconfig(buf,truncated);
341 }
342 if (ferror(file))
343 badusage("failed while reading configuration file: %s", strerror(errno));
344
345 cpplace= npp.parent;
346}
347
348static void pconfig(const char *configstr, int truncated) {
349 unsigned long fgid, tgid, pprefix, pmask;
350 int plen;
351 char ptxt[ATXTLEN];
352 const char *gidlist;
353
354 switch (configstr[0]) {
355 case '*':
356 if (strcmp(configstr,"*")) badusage("`*' directive must be only thing on line");
357 permit(0UL,0UL);
358 return;
359
360 case '#':
361 return;
362
363 case '/': case '.':
364 if (truncated) badusage("filename too long (`%.100s...')",configstr);
365 pfile(configstr);
366 return;
367
368 default:
369 if (!isdigit((unsigned char)configstr[0]))
370 badusage("unknown configuration directive");
371
372 fgid= eat_number(&configstr,"gid", 0,gidmaxval, ",",0);
373 eat_prefixmask(&configstr,"permitted-prefix", ",",0, &pprefix,&pmask,&plen);
374 if (!configstr && truncated) badusage("gid,prefix/len,... spec too long");
375
376 if (!proto) printf(" %5lu,%s/%d: ", fgid, ip2txt(pprefix,ptxt), plen);
377
378 gidlist= getenv("USERV_GID");
379 if (!gidlist) fatal("USERV_GID not set");
1c1a9fa1 380 for (;;) {
1e963473 381 if (!gidlist) {
382 if (!proto) printf("no matching gid\n");
383 return;
1c1a9fa1 384 }
1e963473 385 tgid= eat_number(&gidlist,"userv-gid", 0,gidmaxval, " ",0);
386 if (tgid == fgid) break;
1c1a9fa1 387 }
1e963473 388 permit(pprefix,pmask);
389 return;
1c1a9fa1 390 }
1e963473 391}
392
393static void checkallow(int allow, const char *what,
394 const char *prefixtxt, const char *masktxt) {
395 if (allow) return;
396 fprintf(stderr,"userv-ipif service: access denied for %s, %s/%s\n",
397 what, prefixtxt, masktxt);
398 allallow= 0;
399}
400
401static void parseargs(int argc, const char *const *argv) {
402 unsigned long routeaddr, routemask;
403 const char *carg;
404 const char *const *cprotop;
405 int i;
406 char erwhatbuf[100], erwhatbuf2[100];
407
408 if (argc < NARGS+1) { badusage("too few arguments"); }
409 if (argc > NARGS+1) { badusage("too many arguments"); }
410
411 configstr= *++argv;
1c1a9fa1 412
413 carg= *++argv;
1e963473 414 if (strcmp(carg,"--")) badusage("separator argument `--' not found, got `%s'",carg);
1c1a9fa1 415
1e963473 416 carg= *++argv;
417 localaddr= eat_addr(&carg,"local-addr", ",",0);
418 peeraddr= eat_addr(&carg,"peer-addr", ",",0);
1c1a9fa1 419 mtu= eat_number(&carg,"mtu", 576,65536, ",",0);
1e963473 420 localallow= peerallow= 0;
1c1a9fa1 421
422 if (!strcmp(carg,"debug")) {
423 proto= 0;
424 } else {
425 for (cprotop= protos_ok;
426 (proto= *cprotop) && strcmp(proto,carg);
427 cprotop++);
428 if (!proto) fatal("invalid protocol");
429 }
430
431 addrnet_mustdiffer("local-addr",localaddr,~0UL, "peer-addr",peeraddr,~0UL);
432
433 carg= *++argv;
434 for (nexroutes=0;
baba1099 435 carg && *carg;
1e963473 436 nexroutes++) {
437 if (nexroutes == MAXEXROUTES)
438 fatal("too many extra routes (only %d allowed)",MAXEXROUTES);
439 sprintf(erwhatbuf,"route#%d",nexroutes);
1c1a9fa1 440
1e963473 441 eat_prefixmask(&carg,erwhatbuf, ",",0, &routeaddr,&routemask,0);
442 if (routemask == ~0UL) {
443 addrnet_mustdiffer(erwhatbuf,routeaddr,routemask, "local-addr",localaddr,~0UL);
444 addrnet_mustdiffer(erwhatbuf,routeaddr,routemask, "peer-addr",peeraddr,~0UL);
445 }
1c1a9fa1 446 for (i=0; i<nexroutes; i++) {
1e963473 447 sprintf(erwhatbuf2,"route#%d",i);
1c1a9fa1 448 addrnet_mustdiffer(erwhatbuf,routeaddr,routemask,
449 erwhatbuf2,exroutes[i].prefix,exroutes[i].mask);
450 }
451 exroutes[nexroutes].prefix= routeaddr;
452 exroutes[nexroutes].mask= routemask;
1e963473 453 exroutes[nexroutes].allow= 0;
1c1a9fa1 454 ip2txt(routeaddr,exroutes[nexroutes].prefixtxt);
455 ip2txt(routemask,exroutes[nexroutes].masktxt);
456 }
457 ip2txt(localaddr,localtxt);
458 ip2txt(peeraddr,peertxt);
1e963473 459}
460
461static void checkpermit(void) {
462 int i;
463 char erwhatbuf[100];
1c1a9fa1 464
1e963473 465 allallow= 1;
466 checkallow(localallow,"local-addr", localtxt,"32");
467 checkallow(peerallow,"peer-addr", peertxt,"32");
468 for (i=0; i<nexroutes; i++) {
469 sprintf(erwhatbuf, "route#%d", i);
470 checkallow(exroutes[i].allow, erwhatbuf, exroutes[i].prefixtxt, exroutes[i].masktxt);
471 }
472 if (!allallow) fatal("access denied");
473}
474
475static void dumpdebug(void) __attribute__((noreturn));
476static void dumpdebug(void) {
477 int i;
478 char erwhatbuf[100];
479
480 printf("protocol: debug\n"
481 "local: %08lx == %s\n"
482 "peer: %08lx == %s\n"
483 "mtu: %ld\n"
484 "routes: %d\n",
485 localaddr, localtxt,
486 peeraddr, peertxt,
487 mtu,
488 nexroutes);
489 for (i=0; i<nexroutes; i++) {
490 sprintf(erwhatbuf, "route#%d:", i);
491 printf("%-9s %08lx/%08lx == %s/%s\n",
492 erwhatbuf,
493 exroutes[i].prefix, exroutes[i].mask,
494 exroutes[i].prefixtxt, exroutes[i].masktxt);
1c1a9fa1 495 }
1e963473 496 if (ferror(stdout) || fclose(stdout)) sysfatal("flush stdout");
497 exit(0);
498}
499
6d360a53 500
501static void setsigmask(const sigset_t *ss) {
502 int r;
503
504 r= sigprocmask(SIG_SETMASK, ss, 0);
505 if (r) sysfatal("[un]block signals");
506}
507
02b2392d 508static void setsignals(void (*handler)(int), struct sigaction *sa, int chldflags) {
509 const int *signalp;
510 int r, sig;
511
512 sa->sa_handler= handler;
513 sa->sa_flags= 0;
514 for (signalp=signals; (sig=*signalp); signalp++) {
515 r= sigaction(sig, sa, 0); if (r) sysfatal("uncatch signal");
516 }
517 sa->sa_flags= chldflags;
518 r= sigaction(SIGCHLD, sa, 0); if (r) sysfatal("uncatch children");
519}
520
02b2392d 521static void infork(void) {
522 struct sigaction sa;
523
524 memset(&pids,0,sizeof(pids));
525 sigemptyset(&sa.sa_mask);
526 setsignals(SIG_DFL,&sa,0);
527 setsigmask(&emptyset);
6d360a53 528 undoslattach= 0;
02b2392d 529}
530
531static pid_t makesubproc(void (*entry)(void)) {
532 pid_t pid;
533
534 pid= fork(); if (pid == (pid_t)-1) sysfatal("fork for subprocess");
535 if (pid) return pid;
536
537 infork();
538 entry();
539 abort();
540}
541
542static int task(void) {
543 pid_t pid;
544
545 pid= fork();
6d360a53 546 if (pid == (pid_t)-1) sysfatal("fork for task");
547 if (!pid) { infork(); return 1; }
02b2392d 548
549 pids.byname.task= pid;
550 while (pids.byname.task) sigsuspend(&emptyset);
551 return 0;
552}
553
6d360a53 554static void mdup2(int fd1, int fd2, const char *what) {
555 int r;
556
557 for (;;) {
558 r= dup2(fd1,fd2); if (r==fd2) return;
559 if (r!=-1) fatal("dup2 in %s gave wrong answer %d instead of %d",what,r,fd2);
560 if (errno != EINTR) sysfatal("dup2 failed in %s",what);
561 }
562}
563
02b2392d 564static void sl_entry(void) {
6d360a53 565 mdup2(slpipe[1],1,"slattach child");
02b2392d 566 execlp("slattach", "slattach", "-v", "-L", "-p",proto, ptyname, (char*)0);
567 sysfatal("cannot exec slattach");
568}
569
570static void cin_entry(void) {
6d360a53 571 mdup2(ptmaster,1,"cat input child");
02b2392d 572 execlp("cat", "cat", (char*)0);
573 sysfatal("cannot exec cat input");
574}
575
576static void cout_entry(void) {
6d360a53 577 mdup2(ptmaster,0,"cat output child");
02b2392d 578 execlp("cat", "cat", (char*)0);
579 sysfatal("cannot exec cat output");
580}
581
582static void sighandler(int signum) {
583 pid_t pid;
584 int estatus, status;
585 const char *taskfail;
586
587 estatus= 4;
588
589 if (signum == SIGCHLD) {
590 for (;;) {
591 pid= waitpid(-1,&status,WNOHANG);
592 if (!pid || pid == (pid_t)-1) return;
593
594 if (pid == pids.byname.task) {
595 pids.byname.task= 0;
596 if (!status) return;
597 taskfail= "task";
598 } else if (pid == pids.byname.cin) {
599 pids.byname.cin= 0;
600 if (status) {
601 taskfail= "input cat";
602 } else {
603 taskfail= 0;
604 estatus= 0;
605 }
606 } else if (pid == pids.byname.cout) {
607 pids.byname.cout= 0;
608 taskfail= "output cat";
609 } else if (pid == pids.byname.sl) {
610 pids.byname.sl= 0;
611 taskfail= "slattach";
612 } else {
613 continue;
614 }
6d360a53 615 break;
02b2392d 616 }
617 if (taskfail) {
6d360a53 618 if (WIFEXITED(status)) {
619 fprintf(stderr,
620 "userv-ipif service: %s unexpectedly exited with exit status %d\n",
621 taskfail, WEXITSTATUS(status));
622 } else if (WIFSIGNALED(status)) {
623 fprintf(stderr,
624 "userv-ipif service: %s unexpectedly killed by signal %s%s\n",
625 taskfail, strsignal(WTERMSIG(status)),
626 WCOREDUMP(status) ? " (core dumped)" : "");
627 } else {
628 fprintf(stderr, "userv-ipif service: %s unexpectedly terminated"
629 " with unknown status code %d\n", taskfail, status);
630 }
02b2392d 631 }
632 } else {
633 fprintf(stderr,
634 "userv-ipif service: received signal %d, terminating\n",
635 signum);
636 }
637
638 terminate(estatus);
639}
640
641static void startup(void) {
642 int r;
643 struct sigaction sa;
644
645 sigfillset(&fullset);
646 sigemptyset(&emptyset);
647
648 ptmaster= getpt(); if (ptmaster==-1) sysfatal("allocate pty master");
649 r= grantpt(ptmaster); if (r) sysfatal("grab/grant pty slave");
650 ptyname= ptsname(ptmaster); if (!ptyname) sysfatal("get pty slave name");
651 r= chmod(ptyname,0600); if (r) sysfatal("chmod pty slave");
6d360a53 652 r= unlockpt(ptmaster); if (r) sysfatal("unlock pty");
02b2392d 653
654 sigfillset(&sa.sa_mask);
655 setsignals(sighandler,&sa,SA_NOCLDSTOP);
656 setsigmask(&fullset);
657}
658
659static void startslattach(void) {
6d360a53 660 static char ifnbuf[200];
661
02b2392d 662 FILE *piper;
02b2392d 663 int r, l, k;
664
665 r= pipe(slpipe); if (r) sysfatal("create pipe");
666 piper= fdopen(slpipe[0],"r"); if (!piper) sysfatal("fdopen pipe");
667
6d360a53 668 undoslattach= 1;
02b2392d 669 pids.byname.sl= makesubproc(sl_entry);
670
671 close(slpipe[1]);
672 setsigmask(&emptyset);
673 if (!fgets(ifnbuf,sizeof(ifnbuf),piper)) {
674 if (ferror(piper)) sysfatal("cannot read ifname from slattach");
675 else fatal("cannot read ifname from slattach");
676 }
677 setsigmask(&fullset);
678 l= strlen(ifnbuf);
679 if (l<0 || ifnbuf[l-1] != '\n') fatal("slattach gave strange output `%s'",ifnbuf);
680 ifnbuf[l-1]= 0;
681 for (k=l; k>0 && ifnbuf[k-1]!=' '; k--);
682 ifname= ifnbuf+k;
683}
684
685static void netconfigure(void) {
686 char mtutxt[100];
687 int i;
688
689 if (task()) {
690 sprintf(mtutxt,"%lu",mtu);
691
692 execlp("ifconfig", "ifconfig", ifname, localtxt,
693 "netmask","255.255.255.255", "-broadcast", "pointopoint",peertxt,
694 "mtu",mtutxt, "up", (char*)0);
695 sysfatal("cannot exec ifconfig");
696 }
697
02b2392d 698 for (i=0; i<nexroutes; i++) {
699 if (task()) {
6d360a53 700 execlp("route","route", "add", "-net",exroutes[i].prefixtxt,
02b2392d 701 "netmask",exroutes[i].masktxt,
702 "gw",peertxt, "dev",ifname, (char*)0);
703 sysfatal("cannot exec route (for route)");
704 }
705 }
706}
707
708static void copydata(void) __attribute__((noreturn));
5f1c67ff 709static void copydata(void) {
710 int r;
711
02b2392d 712 pids.byname.cin= makesubproc(cin_entry);
5f1c67ff 713 for (;;) {
714 r= write(1, "\300", 1); if (r==1) break;
715 assert(r==-1); if (errno != EINTR) sysfatal("send initial delim to confirm");
716 }
02b2392d 717 pids.byname.cout= makesubproc(cout_entry);
718
719 for (;;) sigsuspend(&emptyset);
720}
721
1e963473 722int main(int argc, const char *const *argv) {
723 parseargs(argc,argv);
724 pconfig(configstr,0);
725 checkpermit();
726 if (!proto) dumpdebug();
727
02b2392d 728 startup();
729 startslattach();
730 netconfigure();
731 copydata();
1c1a9fa1 732}