]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-str.c
mods to do compression/decompression at splnet
[ppp.git] / pppd / sys-str.c
1 /*
2  * sys-str.c - System-dependent procedures for setting up
3  * PPP interfaces on systems which use the STREAMS ppp interface.
4  *
5  * Copyright (c) 1989 Carnegie Mellon University.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms are permitted
9  * provided that the above copyright notice and this paragraph are
10  * duplicated in all such forms and that any documentation,
11  * advertising materials, and other materials related to such
12  * distribution and use acknowledge that the software was developed
13  * by Carnegie Mellon University.  The name of the
14  * University may not be used to endorse or promote products derived
15  * from this software without specific prior written permission.
16  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19  */
20
21 #ifndef lint
22 static char rcsid[] = "$Id: sys-str.c,v 1.14 1994/09/21 06:47:37 paulus Exp $";
23 #endif
24
25 /*
26  * TODO:
27  */
28
29 #include <stdio.h>
30 #include <errno.h>
31 #include <syslog.h>
32 #include <termios.h>
33 #include <fcntl.h>
34 #include <string.h>
35 #include <time.h>
36 #include <utmp.h>
37 #include <poll.h>
38 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <sys/sockio.h>
41 #include <sys/time.h>
42 #include <sys/stream.h>
43 #include <sys/stropts.h>
44
45 #include <net/if.h>
46 #include <net/ppp_defs.h>
47 #include <net/ppp_str.h>
48 #include <net/route.h>
49 #include <net/if_arp.h>
50 #include <netinet/in.h>
51
52 #include "pppd.h"
53
54 #ifndef ifr_mtu
55 #define ifr_mtu         ifr_metric
56 #endif
57
58 #define MAXMODULES      10      /* max number of module names to save */
59 static struct   modlist {
60     char        modname[FMNAMESZ+1];
61 } str_modules[MAXMODULES];
62 static int      str_module_count = 0;
63 static int      pushed_ppp;
64 static int      closed_stdio;
65
66 static int      restore_term;   /* 1 => we've munged the terminal */
67 static struct termios inittermios; /* Initial TTY termios */
68
69 /*
70  * sys_init - System-dependent initialization.
71  */
72 void
73 sys_init()
74 {
75     openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP);
76     setlogmask(LOG_UPTO(LOG_INFO));
77     if (debug)
78         setlogmask(LOG_UPTO(LOG_DEBUG));
79 }
80
81 /*
82  * note_debug_level - note a change in the debug level.
83  */
84 void
85 note_debug_level()
86 {
87     if (debug) {
88         syslog(LOG_INFO, "Debug turned ON, Level %d", debug);
89         setlogmask(LOG_UPTO(LOG_DEBUG));
90     } else {
91         setlogmask(LOG_UPTO(LOG_WARNING));
92     }
93 }
94
95 /*
96  * daemon - Detach us from the terminal session.
97  */
98 int
99 daemon(nochdir, noclose)
100     int nochdir, noclose;
101 {
102     int pid;
103
104     if ((pid = fork()) < 0)
105         return -1;
106     if (pid != 0)
107         exit(0);                /* parent dies */
108     setsid();
109     if (!nochdir)
110         chdir("/");
111     if (!noclose) {
112         fclose(stdin);          /* don't need stdin, stdout, stderr */
113         fclose(stdout);
114         fclose(stderr);
115     }
116     return 0;
117 }
118
119
120 /*
121  * ppp_available - check if this kernel supports PPP.
122  */
123 int
124 ppp_available()
125 {
126     int fd, ret;
127
128     fd = open("/dev/tty", O_RDONLY, 0);
129     if (fd < 0)
130         return 1;               /* can't find out - assume we have ppp */
131     ret = ioctl(fd, I_FIND, "pppasync") >= 0;
132     close(fd);
133     return ret;
134 }
135
136
137 /*
138  * establish_ppp - Turn the serial port into a ppp interface.
139  */
140 void
141 establish_ppp()
142 {
143     /* go through and save the name of all the modules, then pop em */
144     for (;;) { 
145         if (ioctl(fd, I_LOOK, str_modules[str_module_count].modname) < 0 ||
146             ioctl(fd, I_POP, 0) < 0)
147             break;
148         MAINDEBUG((LOG_DEBUG, "popped stream module : %s",
149                    str_modules[str_module_count].modname));
150         str_module_count++;
151     }
152
153     /* now push the async/fcs module */
154     if (ioctl(fd, I_PUSH, "pppasync") < 0) {
155         syslog(LOG_ERR, "ioctl(I_PUSH, ppp_async): %m");
156         die(1);
157     }
158     /* push the compress module */
159     if (ioctl(fd, I_PUSH, "pppcomp") < 0) {
160         syslog(LOG_WARNING, "ioctl(I_PUSH, ppp_comp): %m");
161     }
162     /* finally, push the ppp_if module that actually handles the */
163     /* network interface */ 
164     if (ioctl(fd, I_PUSH, "pppif") < 0) {
165         syslog(LOG_ERR, "ioctl(I_PUSH, ppp_if): %m");
166         die(1);
167     }
168     pushed_ppp = 1;
169     /* read mode, message non-discard mode */
170     if (ioctl(fd, I_SRDOPT, RMSGN) < 0) {
171         syslog(LOG_ERR, "ioctl(I_SRDOPT, RMSGN): %m");
172         die(1);
173     }
174     /*
175      * Find out which interface we were given.
176      * (ppp_if handles this ioctl)
177      */
178     if (ioctl(fd, SIOCGETU, &ifunit) < 0) {
179         syslog(LOG_ERR, "ioctl(SIOCGETU): %m");
180         die(1);
181     }
182
183     /* Set debug flags in driver */
184     if (ioctl(fd, SIOCSIFDEBUG, &kdebugflag) < 0) {
185         syslog(LOG_ERR, "ioctl(SIOCSIFDEBUG): %m");
186     }
187
188     /* close stdin, stdout, stderr if they might refer to the device */
189     if (default_device && !closed_stdio) {
190         int i;
191
192         for (i = 0; i <= 2; ++i)
193             if (i != fd && i != s)
194                 close(i);
195         closed_stdio = 1;
196     }
197 }
198
199 /*
200  * disestablish_ppp - Restore the serial port to normal operation.
201  * It attempts to reconstruct the stream with the previously popped
202  * modules.  This shouldn't call die() because it's called from die().
203  */
204 void
205 disestablish_ppp()
206 {
207     int flags;
208     char *s;
209
210     if (hungup) {
211         /* we can't push or pop modules after the stream has hung up */
212         str_module_count = 0;
213         restore_term = 0;       /* nor can we fix up terminal settings */
214         return;
215     }
216
217     if (pushed_ppp) {
218         /*
219          * Check whether the link seems not to be 8-bit clean.
220          */
221         if (ioctl(fd, SIOCGIFDEBUG, (caddr_t) &flags) == 0) {
222             s = NULL;
223             switch (~flags & PAI_FLAGS_HIBITS) {
224             case PAI_FLAGS_B7_0:
225                 s = "bit 7 set to 1";
226                 break;
227             case PAI_FLAGS_B7_1:
228                 s = "bit 7 set to 0";
229                 break;
230             case PAI_FLAGS_PAR_EVEN:
231                 s = "odd parity";
232                 break;
233             case PAI_FLAGS_PAR_ODD:
234                 s = "even parity";
235                 break;
236             }
237             if (s != NULL) {
238                 syslog(LOG_WARNING, "Serial link is not 8-bit clean:");
239                 syslog(LOG_WARNING, "All received characters had %s", s);
240             }
241         }
242     }
243
244     while (ioctl(fd, I_POP, 0) == 0)    /* pop any we pushed */
245         ;
246     pushed_ppp = 0;
247   
248     for (; str_module_count > 0; str_module_count--) {
249         if (ioctl(fd, I_PUSH, str_modules[str_module_count-1].modname)) {
250             if (errno != ENXIO)
251                 syslog(LOG_WARNING, "str_restore: couldn't push module %s: %m",
252                        str_modules[str_module_count-1].modname);
253         } else {
254             MAINDEBUG((LOG_INFO, "str_restore: pushed module %s",
255                        str_modules[str_module_count-1].modname));
256         }
257     }
258 }
259
260
261 /*
262  * List of valid speeds.
263  */
264 struct speed {
265     int speed_int, speed_val;
266 } speeds[] = {
267 #ifdef B50
268     { 50, B50 },
269 #endif
270 #ifdef B75
271     { 75, B75 },
272 #endif
273 #ifdef B110
274     { 110, B110 },
275 #endif
276 #ifdef B134
277     { 134, B134 },
278 #endif
279 #ifdef B150
280     { 150, B150 },
281 #endif
282 #ifdef B200
283     { 200, B200 },
284 #endif
285 #ifdef B300
286     { 300, B300 },
287 #endif
288 #ifdef B600
289     { 600, B600 },
290 #endif
291 #ifdef B1200
292     { 1200, B1200 },
293 #endif
294 #ifdef B1800
295     { 1800, B1800 },
296 #endif
297 #ifdef B2000
298     { 2000, B2000 },
299 #endif
300 #ifdef B2400
301     { 2400, B2400 },
302 #endif
303 #ifdef B3600
304     { 3600, B3600 },
305 #endif
306 #ifdef B4800
307     { 4800, B4800 },
308 #endif
309 #ifdef B7200
310     { 7200, B7200 },
311 #endif
312 #ifdef B9600
313     { 9600, B9600 },
314 #endif
315 #ifdef B19200
316     { 19200, B19200 },
317 #endif
318 #ifdef B38400
319     { 38400, B38400 },
320 #endif
321 #ifdef EXTA
322     { 19200, EXTA },
323 #endif
324 #ifdef EXTB
325     { 38400, EXTB },
326 #endif
327 #ifdef B57600
328     { 57600, B57600 },
329 #endif
330 #ifdef B115200
331     { 115200, B115200 },
332 #endif
333     { 0, 0 }
334 };
335
336 /*
337  * Translate from bits/second to a speed_t.
338  */
339 int
340 translate_speed(bps)
341     int bps;
342 {
343     struct speed *speedp;
344
345     if (bps == 0)
346         return 0;
347     for (speedp = speeds; speedp->speed_int; speedp++)
348         if (bps == speedp->speed_int)
349             return speedp->speed_val;
350     syslog(LOG_WARNING, "speed %d not supported", bps);
351     return 0;
352 }
353
354 /*
355  * Translate from a speed_t to bits/second.
356  */
357 int
358 baud_rate_of(speed)
359     int speed;
360 {
361     struct speed *speedp;
362
363     if (speed == 0)
364         return 0;
365     for (speedp = speeds; speedp->speed_int; speedp++)
366         if (speed == speedp->speed_val)
367             return speedp->speed_int;
368     return 0;
369 }
370
371 /*
372  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
373  * at the requested speed, etc.  If `local' is true, set CLOCAL
374  * regardless of whether the modem option was specified.
375  */
376 set_up_tty(fd, local)
377     int fd, local;
378 {
379     int speed;
380     struct termios tios;
381
382     if (tcgetattr(fd, &tios) < 0) {
383         syslog(LOG_ERR, "tcgetattr: %m");
384         die(1);
385     }
386
387     if (!restore_term)
388         inittermios = tios;
389
390     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
391     if (crtscts > 0)
392         tios.c_cflag |= CRTSCTS;
393     else if (crtscts < 0)
394         tios.c_cflag &= ~CRTSCTS;
395
396     tios.c_cflag |= CS8 | CREAD | HUPCL;
397     if (local || !modem)
398         tios.c_cflag |= CLOCAL;
399     tios.c_iflag = IGNBRK | IGNPAR;
400     tios.c_oflag = 0;
401     tios.c_lflag = 0;
402     tios.c_cc[VMIN] = 1;
403     tios.c_cc[VTIME] = 0;
404
405     if (crtscts == 2) {
406         tios.c_iflag |= IXOFF;
407         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
408         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
409     }
410
411     speed = translate_speed(inspeed);
412     if (speed) {
413         cfsetospeed(&tios, speed);
414         cfsetispeed(&tios, speed);
415     } else {
416         speed = cfgetospeed(&tios);
417         /*
418          * We can't proceed if the serial port speed is B0,
419          * since that implies that the serial port is disabled.
420          */
421         if (speed == B0) {
422             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
423                    devnam);
424             die(1);
425         }
426     }
427
428     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
429         syslog(LOG_ERR, "tcsetattr: %m");
430         die(1);
431     }
432
433     baud_rate = inspeed = baud_rate_of(speed);
434     restore_term = 1;
435 }
436
437 /*
438  * restore_tty - restore the terminal to the saved settings.
439  */
440 void
441 restore_tty()
442 {
443     if (restore_term) {
444         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
445             if (errno != ENXIO)
446                 syslog(LOG_WARNING, "tcsetattr: %m");
447         restore_term = 0;
448     }
449 }
450
451 /*
452  * setdtr - control the DTR line on the serial port.
453  * This is called from die(), so it shouldn't call die().
454  */
455 setdtr(fd, on)
456 int fd, on;
457 {
458     int modembits = TIOCM_DTR;
459
460     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
461 }
462
463
464 /*
465  * output - Output PPP packet.
466  */
467 void
468 output(unit, p, len)
469     int unit;
470     u_char *p;
471     int len;
472 {
473     struct strbuf       str;
474
475     if (unit != 0)
476         MAINDEBUG((LOG_WARNING, "output: unit != 0!"));
477     if (debug)
478         log_packet(p, len, "sent ");
479
480     str.len = len;
481     str.buf = (caddr_t) p;
482     if (putmsg(fd, NULL, &str, 0) < 0) {
483         if (errno != ENXIO) {
484             syslog(LOG_ERR, "putmsg: %m");
485             die(1);
486         }
487     }
488 }
489
490 /*
491  * wait_input - wait for input, for a length of time specified in *timo.
492  */
493 wait_input(timo)
494     struct timeval *timo;
495 {
496     int t;
497     struct pollfd pfd;
498
499     t = timo == NULL? -1: timo->tv_sec * 1000 + timo->tv_usec / 1000;
500     pfd.fd = fd;
501     pfd.events = POLLIN | POLLPRI | POLLHUP;
502     if (poll(&pfd, 1, t) < 0 && errno != EINTR) {
503         syslog(LOG_ERR, "poll: %m");
504         die(1);
505     }
506 }
507
508 /*
509  * read_packet - get a PPP packet from the serial device.
510  */
511 int
512 read_packet(buf)
513     u_char *buf;
514 {
515     struct strbuf str, ctl;
516     int len, i;
517     unsigned char ctlbuf[16];
518
519     str.maxlen = PPP_MTU + PPP_HDRLEN;
520     str.buf = (caddr_t) buf;
521     ctl.maxlen = sizeof(ctlbuf);
522     ctl.buf = (caddr_t) ctlbuf;
523     i = 0;
524     len = getmsg(fd, &ctl, &str, &i);
525     if (len < 0) {
526         if (errno == EAGAIN || errno == EWOULDBLOCK) {
527             return -1;
528         }
529         syslog(LOG_ERR, "getmsg(fd) %m");
530         die(1);
531     }
532     if (len) 
533         MAINDEBUG((LOG_DEBUG, "getmsg returned 0x%x",len));
534     if (ctl.len > 0)
535         syslog(LOG_NOTICE, "got ctrl msg len %d %x %x\n", ctl.len,
536                ctlbuf[0], ctlbuf[1]);
537
538     if (str.len < 0) {
539         MAINDEBUG((LOG_DEBUG, "getmsg short return length %d", str.len));
540         return -1;
541     }
542
543     return str.len;
544 }
545
546
547 /*
548  * ppp_send_config - configure the transmit characteristics of
549  * the ppp interface.
550  */
551 void
552 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
553     int unit, mtu;
554     u_int32_t asyncmap;
555     int pcomp, accomp;
556 {
557     char c;
558     struct ifreq ifr;
559
560     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
561     ifr.ifr_mtu = mtu;
562     if (ioctl(s, SIOCSIFMTU, (caddr_t) &ifr) < 0) {
563         syslog(LOG_ERR, "ioctl(SIOCSIFMTU): %m");
564         quit();
565     }
566
567     if(ioctl(fd, SIOCSIFASYNCMAP, (caddr_t) &asyncmap) < 0) {
568         syslog(LOG_ERR, "ioctl(SIOCSIFASYNCMAP): %m");
569         quit();
570     }
571
572     c = (pcomp? 1: 0);
573     if(ioctl(fd, SIOCSIFCOMPPROT, &c) < 0) {
574         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPPROT): %m");
575         quit();
576     }
577
578     c = (accomp? 1: 0);
579     if(ioctl(fd, SIOCSIFCOMPAC, &c) < 0) {
580         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPAC): %m");
581         quit();
582     }
583 }
584
585
586 /*
587  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
588  */
589 void
590 ppp_set_xaccm(unit, accm)
591     int unit;
592     ext_accm accm;
593 {
594     if (ioctl(fd, SIOCSIFXASYNCMAP, accm) < 0 && errno != ENOTTY)
595         syslog(LOG_WARNING, "ioctl(set extended ACCM): %m");
596 }
597
598
599 /*
600  * ppp_recv_config - configure the receive-side characteristics of
601  * the ppp interface.
602  */
603 void
604 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
605     int unit, mru;
606     u_int32_t asyncmap;
607     int pcomp, accomp;
608 {
609     char c;
610
611     if (ioctl(fd, SIOCSIFMRU, &mru) < 0) {
612         syslog(LOG_ERR, "ioctl(SIOCSIFMRU): %m");
613     }
614
615     if (ioctl(fd, SIOCSIFRASYNCMAP, (caddr_t) &asyncmap) < 0) {
616         syslog(LOG_ERR, "ioctl(SIOCSIFRASYNCMAP): %m");
617     }
618
619     c = 2 + (pcomp? 1: 0);
620     if(ioctl(fd, SIOCSIFCOMPPROT, &c) < 0) {
621         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPPROT): %m");
622     }
623
624     c = 2 + (accomp? 1: 0);
625     if (ioctl(fd, SIOCSIFCOMPAC, &c) < 0) {
626         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPAC): %m");
627     }
628 }
629
630 /*
631  * ccp_test - ask kernel whether a given compression method
632  * is acceptable for use.
633  */
634 ccp_test(unit, opt_ptr, opt_len, for_transmit)
635     int unit, opt_len, for_transmit;
636     u_char *opt_ptr;
637 {
638     struct ppp_option_data data;
639
640     if ((unsigned) opt_len > MAX_PPP_OPTION)
641         opt_len = MAX_PPP_OPTION;
642     data.length = opt_len;
643     data.transmit = for_transmit;
644     BCOPY(opt_ptr, data.opt_data, opt_len);
645     return ioctl(fd, SIOCSCOMPRESS, (caddr_t) &data) >= 0;
646 }
647
648 /*
649  * ccp_flags_set - inform kernel about the current state of CCP.
650  */
651 void
652 ccp_flags_set(unit, isopen, isup)
653     int unit, isopen, isup;
654 {
655     int x;
656
657     x = (isopen? 1: 0) + (isup? 2: 0);
658     if (ioctl(fd, SIOCSIFCOMP, (caddr_t) &x) < 0 && errno != ENOTTY)
659         syslog(LOG_ERR, "ioctl (SIOCSIFCOMP): %m");
660 }
661
662 /*
663  * ccp_fatal_error - returns 1 if decompression was disabled as a
664  * result of an error detected after decompression of a packet,
665  * 0 otherwise.  This is necessary because of patent nonsense.
666  */
667 int
668 ccp_fatal_error(unit)
669     int unit;
670 {
671     int x;
672
673     if (ioctl(fd, SIOCGIFCOMP, (caddr_t) &x) < 0) {
674         syslog(LOG_ERR, "ioctl(SIOCGIFCOMP): %m");
675         return 0;
676     }
677     return x & CCP_FATALERROR;
678 }
679
680 /*
681  * sifvjcomp - config tcp header compression
682  */
683 int
684 sifvjcomp(u, vjcomp, cidcomp, maxcid)
685     int u, vjcomp, cidcomp, maxcid;
686 {
687     char x;
688
689     x = (vjcomp? 1: 0) + (cidcomp? 0: 2) + (maxcid << 4);
690     if (ioctl(fd, SIOCSIFVJCOMP, (caddr_t) &x) < 0) {
691         syslog(LOG_ERR, "ioctl(SIOCSIFVJCOMP): %m");
692         return 0;
693     }
694     return 1;
695 }
696
697 /*
698  * sifup - Config the interface up.
699  */
700 int
701 sifup(u)
702     int u;
703 {
704     struct ifreq ifr;
705
706     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
707     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
708         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
709         return 0;
710     }
711     ifr.ifr_flags |= IFF_UP;
712     if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
713         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
714         return 0;
715     }
716     return 1;
717 }
718
719 /*
720  * sifdown - Config the interface down.
721  */
722 int
723 sifdown(u)
724     int u;
725 {
726     struct ifreq ifr;
727     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
728     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
729         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
730         return 0;
731     }
732     ifr.ifr_flags &= ~IFF_UP;
733     if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
734         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
735         return 0;
736     }
737     return 1;
738 }
739
740 /*
741  * SET_SA_FAMILY - initialize a struct sockaddr, setting the sa_family field.
742  */
743 #define SET_SA_FAMILY(addr, family)             \
744     BZERO((char *) &(addr), sizeof(addr));      \
745     addr.sa_family = (family);
746
747 /*
748  * sifaddr - Config the interface IP addresses and netmask.
749  */
750 int
751 sifaddr(u, o, h, m)
752     int u;
753     u_int32_t o, h, m;
754 {
755     int ret;
756     struct ifreq ifr;
757
758     ret = 1;
759     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
760     SET_SA_FAMILY(ifr.ifr_addr, AF_INET);
761     ((struct sockaddr_in *) &ifr.ifr_addr)->sin_addr.s_addr = o;
762     if (ioctl(s, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
763         syslog(LOG_ERR, "ioctl(SIOCSIFADDR): %m");
764         ret = 0;
765     }
766     ((struct sockaddr_in *) &ifr.ifr_dstaddr)->sin_addr.s_addr = h;
767     if (ioctl(s, SIOCSIFDSTADDR, (caddr_t) &ifr) < 0) {
768         syslog(LOG_ERR, "ioctl(SIOCSIFDSTADDR): %m");
769         ret = 0;
770     }
771     if (m != 0) {
772         ((struct sockaddr_in *) &ifr.ifr_addr)->sin_addr.s_addr = m;
773         syslog(LOG_INFO, "Setting interface mask to %s\n", ip_ntoa(m));
774         if (ioctl(s, SIOCSIFNETMASK, (caddr_t) &ifr) < 0) {
775             syslog(LOG_ERR, "ioctl(SIOCSIFNETMASK): %m");
776             ret = 0;
777         }
778     }
779     return ret;
780 }
781
782 /*
783  * cifaddr - Clear the interface IP addresses, and delete routes
784  * through the interface if possible.
785  */
786 int
787 cifaddr(u, o, h)
788     int u;
789     u_int32_t o, h;
790 {
791     struct rtentry rt;
792
793     SET_SA_FAMILY(rt.rt_dst, AF_INET);
794     ((struct sockaddr_in *) &rt.rt_dst)->sin_addr.s_addr = h;
795     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
796     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = o;
797     rt.rt_flags = RTF_HOST;
798     if (ioctl(s, SIOCDELRT, (caddr_t) &rt) < 0) {
799         syslog(LOG_ERR, "ioctl(SIOCDELRT): %m");
800         return 0;
801     }
802     return 1;
803 }
804
805 /*
806  * sifdefaultroute - assign a default route through the address given.
807  */
808 int
809 sifdefaultroute(u, g)
810     int u;
811     u_int32_t g;
812 {
813     struct rtentry rt;
814
815     SET_SA_FAMILY(rt.rt_dst, AF_INET);
816     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
817     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
818     rt.rt_flags = RTF_GATEWAY;
819     if (ioctl(s, SIOCADDRT, &rt) < 0) {
820         syslog(LOG_ERR, "default route ioctl(SIOCADDRT): %m");
821         return 0;
822     }
823     return 1;
824 }
825
826 /*
827  * cifdefaultroute - delete a default route through the address given.
828  */
829 int
830 cifdefaultroute(u, g)
831     int u;
832     u_int32_t g;
833 {
834     struct rtentry rt;
835
836     SET_SA_FAMILY(rt.rt_dst, AF_INET);
837     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
838     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
839     rt.rt_flags = RTF_GATEWAY;
840     if (ioctl(s, SIOCDELRT, &rt) < 0) {
841         syslog(LOG_ERR, "default route ioctl(SIOCDELRT): %m");
842         return 0;
843     }
844     return 1;
845 }
846
847 /*
848  * sifproxyarp - Make a proxy ARP entry for the peer.
849  */
850 int
851 sifproxyarp(unit, hisaddr)
852     int unit;
853     u_int32_t hisaddr;
854 {
855     struct arpreq arpreq;
856
857     BZERO(&arpreq, sizeof(arpreq));
858
859     /*
860      * Get the hardware address of an interface on the same subnet
861      * as our local address.
862      */
863     if (!get_ether_addr(hisaddr, &arpreq.arp_ha)) {
864         syslog(LOG_WARNING, "Cannot determine ethernet address for proxy ARP");
865         return 0;
866     }
867
868     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
869     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
870     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
871     if (ioctl(s, SIOCSARP, (caddr_t)&arpreq) < 0) {
872         syslog(LOG_ERR, "ioctl(SIOCSARP): %m");
873         return 0;
874     }
875
876     return 1;
877 }
878
879 /*
880  * cifproxyarp - Delete the proxy ARP entry for the peer.
881  */
882 int
883 cifproxyarp(unit, hisaddr)
884     int unit;
885     u_int32_t hisaddr;
886 {
887     struct arpreq arpreq;
888
889     BZERO(&arpreq, sizeof(arpreq));
890     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
891     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
892     if (ioctl(s, SIOCDARP, (caddr_t)&arpreq) < 0) {
893         syslog(LOG_ERR, "ioctl(SIOCDARP): %m");
894         return 0;
895     }
896     return 1;
897 }
898
899 /*
900  * get_ether_addr - get the hardware address of an interface on the
901  * the same subnet as ipaddr.  Code borrowed from myetheraddr.c
902  * in the cslip-2.6 distribution, which is subject to the following
903  * copyright notice (which also applies to logwtmp below):
904  *
905  * Copyright (c) 1990, 1992 The Regents of the University of California.
906  * All rights reserved.
907  *
908  * Redistribution and use in source and binary forms, with or without
909  * modification, are permitted provided that: (1) source code distributions
910  * retain the above copyright notice and this paragraph in its entirety, (2)
911  * distributions including binary code include the above copyright notice and
912  * this paragraph in its entirety in the documentation or other materials
913  * provided with the distribution, and (3) all advertising materials mentioning
914  * features or use of this software display the following acknowledgement:
915  * ``This product includes software developed by the University of California,
916  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
917  * the University nor the names of its contributors may be used to endorse
918  * or promote products derived from this software without specific prior
919  * written permission.
920  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
921  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
922  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
923  */
924
925 #include <fcntl.h>
926 #include <nlist.h>
927 #include <kvm.h>
928 #include <arpa/inet.h>
929
930 /* XXX SunOS 4.1 defines this and 3.5 doesn't... */
931 #ifdef _nlist_h
932 #define SUNOS4
933 #endif
934
935 #ifdef SUNOS4
936 #include <netinet/in_var.h>
937 #endif
938 #include <netinet/if_ether.h>
939
940 /* Cast a struct sockaddr to a structaddr_in */
941 #define SATOSIN(sa) ((struct sockaddr_in *)(sa))
942
943 /* Determine if "bits" is set in "flag" */
944 #define ALLSET(flag, bits) (((flag) & (bits)) == (bits))
945
946 static struct nlist nl[] = {
947 #define N_IFNET 0
948         { "_ifnet" },
949         { 0 }
950 };
951
952 static void kread();
953
954 int
955 get_ether_addr(ipaddr, hwaddr)
956     u_int32_t ipaddr;
957     struct sockaddr *hwaddr;
958 {
959     register kvm_t *kd;
960     register struct ifnet *ifp;
961     register struct arpcom *ac;
962     struct arpcom arpcom;
963     struct in_addr *inp;
964 #ifdef SUNOS4
965     register struct ifaddr *ifa;
966     register struct in_ifaddr *in;
967     union {
968         struct ifaddr ifa;
969         struct in_ifaddr in;
970     } ifaddr;
971 #endif
972     u_int32_t addr, mask;
973
974     /* Open kernel memory for reading */
975     kd = kvm_open(0, 0, 0, O_RDONLY, NULL);
976     if (kd == 0) {
977         syslog(LOG_ERR, "kvm_open: %m");
978         return 0;
979     }
980
981     /* Fetch namelist */
982     if (kvm_nlist(kd, nl) != 0) {
983         syslog(LOG_ERR, "kvm_nlist failed");
984         return 0;
985     }
986
987     ac = &arpcom;
988     ifp = &arpcom.ac_if;
989 #ifdef SUNOS4
990     ifa = &ifaddr.ifa;
991     in = &ifaddr.in;
992 #endif
993
994     if (kvm_read(kd, nl[N_IFNET].n_value, (char *)&addr, sizeof(addr))
995         != sizeof(addr)) {
996         syslog(LOG_ERR, "error reading ifnet addr");
997         return 0;
998     }
999     for ( ; addr; addr = (u_int32_t)ifp->if_next) {
1000         if (kvm_read(kd, addr, (char *)ac, sizeof(*ac)) != sizeof(*ac)) {
1001             syslog(LOG_ERR, "error reading ifnet");
1002             return 0;
1003         }
1004
1005         /* Only look at configured, broadcast interfaces */
1006         if (!ALLSET(ifp->if_flags, IFF_UP | IFF_BROADCAST))
1007             continue;
1008 #ifdef SUNOS4
1009         /* This probably can't happen... */
1010         if (ifp->if_addrlist == 0)
1011             continue;
1012 #endif
1013
1014         /* Get interface ip address */
1015 #ifdef SUNOS4
1016         if (kvm_read(kd, (u_int32_t)ifp->if_addrlist, (char *)&ifaddr,
1017                      sizeof(ifaddr)) != sizeof(ifaddr)) {
1018             syslog(LOG_ERR, "error reading ifaddr");
1019             return 0;
1020         }
1021         inp = &SATOSIN(&ifa->ifa_addr)->sin_addr;
1022 #else
1023         inp = &SATOSIN(&ifp->if_addr)->sin_addr;
1024 #endif
1025
1026         /* Check if this interface on the right subnet */
1027 #ifdef SUNOS4
1028         mask = in->ia_subnetmask;
1029 #else
1030         mask = ifp->if_subnetmask;
1031 #endif
1032         if ((ipaddr & mask) != (inp->s_addr & mask))
1033             continue;
1034
1035         /* Copy out the local ethernet address */
1036         hwaddr->sa_family = AF_UNSPEC;
1037         BCOPY((caddr_t) &arpcom.ac_enaddr, hwaddr->sa_data,
1038               sizeof(arpcom.ac_enaddr));
1039         return 1;               /* success! */
1040     }
1041
1042     /* couldn't find one */
1043     return 0;
1044 }
1045
1046 #define WTMPFILE        "/usr/adm/wtmp"
1047
1048 int
1049 logwtmp(line, name, host)
1050     char *line, *name, *host;
1051 {
1052     int fd;
1053     struct stat buf;
1054     struct utmp ut;
1055
1056     if ((fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
1057         return;
1058     if (!fstat(fd, &buf)) {
1059         (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
1060         (void)strncpy(ut.ut_name, name, sizeof(ut.ut_name));
1061         (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
1062         (void)time(&ut.ut_time);
1063         if (write(fd, (char *)&ut, sizeof(struct utmp)) != sizeof(struct utmp))
1064             (void)ftruncate(fd, buf.st_size);
1065     }
1066     close(fd);
1067 }