]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-str.c
added ccp_fatal_error
[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.12 1994/09/16 02:18:01 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/route.h>
47 #include <net/if_arp.h>
48 #include <netinet/in.h>
49
50 #include "pppd.h"
51 #include "ppp.h"
52 #include <net/ppp_str.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 | CRTSCTS);
391     if (crtscts == 1)
392         tios.c_cflag |= CRTSCTS;
393
394     tios.c_cflag |= CS8 | CREAD | HUPCL;
395     if (local || !modem)
396         tios.c_cflag |= CLOCAL;
397     tios.c_iflag = IGNBRK | IGNPAR;
398     tios.c_oflag = 0;
399     tios.c_lflag = 0;
400     tios.c_cc[VMIN] = 1;
401     tios.c_cc[VTIME] = 0;
402
403     if (crtscts == 2) {
404         tios.c_iflag |= IXOFF;
405         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
406         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
407     }
408
409     speed = translate_speed(inspeed);
410     if (speed) {
411         cfsetospeed(&tios, speed);
412         cfsetispeed(&tios, speed);
413     } else {
414         speed = cfgetospeed(&tios);
415         /*
416          * We can't proceed if the serial port speed is B0,
417          * since that implies that the serial port is disabled.
418          */
419         if (speed == B0) {
420             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
421                    devnam);
422             die(1);
423         }
424     }
425
426     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
427         syslog(LOG_ERR, "tcsetattr: %m");
428         die(1);
429     }
430
431     baud_rate = inspeed = baud_rate_of(speed);
432     restore_term = 1;
433 }
434
435 /*
436  * restore_tty - restore the terminal to the saved settings.
437  */
438 void
439 restore_tty()
440 {
441     if (restore_term) {
442         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
443             if (errno != ENXIO)
444                 syslog(LOG_WARNING, "tcsetattr: %m");
445         restore_term = 0;
446     }
447 }
448
449 /*
450  * setdtr - control the DTR line on the serial port.
451  * This is called from die(), so it shouldn't call die().
452  */
453 setdtr(fd, on)
454 int fd, on;
455 {
456     int modembits = TIOCM_DTR;
457
458     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
459 }
460
461
462 /*
463  * output - Output PPP packet.
464  */
465 void
466 output(unit, p, len)
467     int unit;
468     u_char *p;
469     int len;
470 {
471     struct strbuf       str;
472
473     if (unit != 0)
474         MAINDEBUG((LOG_WARNING, "output: unit != 0!"));
475     if (debug)
476         log_packet(p, len, "sent ");
477
478     str.len = len;
479     str.buf = (caddr_t) p;
480     if (putmsg(fd, NULL, &str, 0) < 0) {
481         if (errno != ENXIO) {
482             syslog(LOG_ERR, "putmsg: %m");
483             die(1);
484         }
485     }
486 }
487
488 /*
489  * wait_input - wait for input, for a length of time specified in *timo.
490  */
491 wait_input(timo)
492     struct timeval *timo;
493 {
494     int t;
495     struct pollfd pfd;
496
497     t = timo == NULL? -1: timo->tv_sec * 1000 + timo->tv_usec / 1000;
498     pfd.fd = fd;
499     pfd.events = POLLIN | POLLPRI | POLLHUP;
500     if (poll(&pfd, 1, t) < 0 && errno != EINTR) {
501         syslog(LOG_ERR, "poll: %m");
502         die(1);
503     }
504 }
505
506 /*
507  * read_packet - get a PPP packet from the serial device.
508  */
509 int
510 read_packet(buf)
511     u_char *buf;
512 {
513     struct strbuf str, ctl;
514     int len, i;
515     unsigned char ctlbuf[16];
516
517     str.maxlen = MTU+DLLHEADERLEN;
518     str.buf = (caddr_t) buf;
519     ctl.maxlen = sizeof(ctlbuf);
520     ctl.buf = (caddr_t) ctlbuf;
521     i = 0;
522     len = getmsg(fd, &ctl, &str, &i);
523     if (len < 0) {
524         if (errno == EAGAIN || errno == EWOULDBLOCK) {
525             return -1;
526         }
527         syslog(LOG_ERR, "getmsg(fd) %m");
528         die(1);
529     }
530     if (len) 
531         MAINDEBUG((LOG_DEBUG, "getmsg returned 0x%x",len));
532     if (ctl.len > 0)
533         syslog(LOG_NOTICE, "got ctrl msg len %d %x %x\n", ctl.len,
534                ctlbuf[0], ctlbuf[1]);
535
536     if (str.len < 0) {
537         MAINDEBUG((LOG_DEBUG, "getmsg short return length %d", str.len));
538         return -1;
539     }
540
541     return str.len;
542 }
543
544
545 /*
546  * ppp_send_config - configure the transmit characteristics of
547  * the ppp interface.
548  */
549 void
550 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
551     int unit, mtu;
552     uint32 asyncmap;
553     int pcomp, accomp;
554 {
555     char c;
556     struct ifreq ifr;
557
558     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
559     ifr.ifr_mtu = mtu;
560     if (ioctl(s, SIOCSIFMTU, (caddr_t) &ifr) < 0) {
561         syslog(LOG_ERR, "ioctl(SIOCSIFMTU): %m");
562         quit();
563     }
564
565     if(ioctl(fd, SIOCSIFASYNCMAP, (caddr_t) &asyncmap) < 0) {
566         syslog(LOG_ERR, "ioctl(SIOCSIFASYNCMAP): %m");
567         quit();
568     }
569
570     c = (pcomp? 1: 0);
571     if(ioctl(fd, SIOCSIFCOMPPROT, &c) < 0) {
572         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPPROT): %m");
573         quit();
574     }
575
576     c = (accomp? 1: 0);
577     if(ioctl(fd, SIOCSIFCOMPAC, &c) < 0) {
578         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPAC): %m");
579         quit();
580     }
581 }
582
583
584 /*
585  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
586  */
587 void
588 ppp_set_xaccm(unit, accm)
589     int unit;
590     ext_accm accm;
591 {
592     if (ioctl(fd, SIOCSIFXASYNCMAP, accm) < 0 && errno != ENOTTY)
593         syslog(LOG_WARNING, "ioctl(set extended ACCM): %m");
594 }
595
596
597 /*
598  * ppp_recv_config - configure the receive-side characteristics of
599  * the ppp interface.
600  */
601 void
602 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
603     int unit, mru;
604     uint32 asyncmap;
605     int pcomp, accomp;
606 {
607     char c;
608
609     if (ioctl(fd, SIOCSIFMRU, &mru) < 0) {
610         syslog(LOG_ERR, "ioctl(SIOCSIFMRU): %m");
611     }
612
613     if (ioctl(fd, SIOCSIFRASYNCMAP, (caddr_t) &asyncmap) < 0) {
614         syslog(LOG_ERR, "ioctl(SIOCSIFRASYNCMAP): %m");
615     }
616
617     c = 2 + (pcomp? 1: 0);
618     if(ioctl(fd, SIOCSIFCOMPPROT, &c) < 0) {
619         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPPROT): %m");
620     }
621
622     c = 2 + (accomp? 1: 0);
623     if (ioctl(fd, SIOCSIFCOMPAC, &c) < 0) {
624         syslog(LOG_ERR, "ioctl(SIOCSIFCOMPAC): %m");
625     }
626 }
627
628 /*
629  * ccp_test - ask kernel whether a given compression method
630  * is acceptable for use.
631  */
632 ccp_test(unit, opt_ptr, opt_len, for_transmit)
633     int unit, opt_len, for_transmit;
634     u_char *opt_ptr;
635 {
636     struct ppp_option_data data;
637
638     if ((unsigned) opt_len > MAX_PPP_OPTION)
639         opt_len = MAX_PPP_OPTION;
640     data.length = opt_len;
641     data.transmit = for_transmit;
642     BCOPY(opt_ptr, data.opt_data, opt_len);
643     return ioctl(fd, SIOCSCOMPRESS, (caddr_t) &data) >= 0;
644 }
645
646 /*
647  * ccp_flags_set - inform kernel about the current state of CCP.
648  */
649 void
650 ccp_flags_set(unit, isopen, isup)
651     int unit, isopen, isup;
652 {
653     int x;
654
655     x = (isopen? 1: 0) + (isup? 2: 0);
656     if (ioctl(fd, SIOCSIFCOMP, (caddr_t) &x) < 0 && errno != ENOTTY)
657         syslog(LOG_ERR, "ioctl (SIOCSIFCOMP): %m");
658 }
659
660 /*
661  * ccp_fatal_error - returns 1 if decompression was disabled as a
662  * result of an error detected after decompression of a packet,
663  * 0 otherwise.  This is necessary because of patent nonsense.
664  */
665 int
666 ccp_fatal_error(unit)
667     int unit;
668 {
669     int x;
670
671     if (ioctl(fd, SIOCGIFCOMP, (caddr_t) &x) < 0) {
672         syslog(LOG_ERR, "ioctl(SIOCGIFCOMP): %m");
673         return 0;
674     }
675     return x & CCP_FATALERROR;
676 }
677
678 /*
679  * sifvjcomp - config tcp header compression
680  */
681 int
682 sifvjcomp(u, vjcomp, cidcomp, maxcid)
683     int u, vjcomp, cidcomp, maxcid;
684 {
685     char x;
686
687     x = (vjcomp? 1: 0) + (cidcomp? 0: 2) + (maxcid << 4);
688     if (ioctl(fd, SIOCSIFVJCOMP, (caddr_t) &x) < 0) {
689         syslog(LOG_ERR, "ioctl(SIOCSIFVJCOMP): %m");
690         return 0;
691     }
692     return 1;
693 }
694
695 /*
696  * sifup - Config the interface up.
697  */
698 int
699 sifup(u)
700     int u;
701 {
702     struct ifreq ifr;
703
704     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
705     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
706         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
707         return 0;
708     }
709     ifr.ifr_flags |= IFF_UP;
710     if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
711         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
712         return 0;
713     }
714     return 1;
715 }
716
717 /*
718  * sifdown - Config the interface down.
719  */
720 int
721 sifdown(u)
722     int u;
723 {
724     struct ifreq ifr;
725     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
726     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
727         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
728         return 0;
729     }
730     ifr.ifr_flags &= ~IFF_UP;
731     if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
732         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
733         return 0;
734     }
735     return 1;
736 }
737
738 /*
739  * SET_SA_FAMILY - initialize a struct sockaddr, setting the sa_family field.
740  */
741 #define SET_SA_FAMILY(addr, family)             \
742     BZERO((char *) &(addr), sizeof(addr));      \
743     addr.sa_family = (family);
744
745 /*
746  * sifaddr - Config the interface IP addresses and netmask.
747  */
748 int
749 sifaddr(u, o, h, m)
750     int u;
751     uint32 o, h, m;
752 {
753     int ret;
754     struct ifreq ifr;
755
756     ret = 1;
757     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
758     SET_SA_FAMILY(ifr.ifr_addr, AF_INET);
759     ((struct sockaddr_in *) &ifr.ifr_addr)->sin_addr.s_addr = o;
760     if (ioctl(s, SIOCSIFADDR, (caddr_t) &ifr) < 0) {
761         syslog(LOG_ERR, "ioctl(SIOCSIFADDR): %m");
762         ret = 0;
763     }
764     ((struct sockaddr_in *) &ifr.ifr_dstaddr)->sin_addr.s_addr = h;
765     if (ioctl(s, SIOCSIFDSTADDR, (caddr_t) &ifr) < 0) {
766         syslog(LOG_ERR, "ioctl(SIOCSIFDSTADDR): %m");
767         ret = 0;
768     }
769     if (m != 0) {
770         ((struct sockaddr_in *) &ifr.ifr_addr)->sin_addr.s_addr = m;
771         syslog(LOG_INFO, "Setting interface mask to %s\n", ip_ntoa(m));
772         if (ioctl(s, SIOCSIFNETMASK, (caddr_t) &ifr) < 0) {
773             syslog(LOG_ERR, "ioctl(SIOCSIFNETMASK): %m");
774             ret = 0;
775         }
776     }
777     return ret;
778 }
779
780 /*
781  * cifaddr - Clear the interface IP addresses, and delete routes
782  * through the interface if possible.
783  */
784 int
785 cifaddr(u, o, h)
786     int u;
787     uint32 o, h;
788 {
789     struct rtentry rt;
790
791     SET_SA_FAMILY(rt.rt_dst, AF_INET);
792     ((struct sockaddr_in *) &rt.rt_dst)->sin_addr.s_addr = h;
793     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
794     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = o;
795     rt.rt_flags = RTF_HOST;
796     if (ioctl(s, SIOCDELRT, (caddr_t) &rt) < 0) {
797         syslog(LOG_ERR, "ioctl(SIOCDELRT): %m");
798         return 0;
799     }
800     return 1;
801 }
802
803 /*
804  * sifdefaultroute - assign a default route through the address given.
805  */
806 int
807 sifdefaultroute(u, g)
808     int u;
809     uint32 g;
810 {
811     struct rtentry rt;
812
813     SET_SA_FAMILY(rt.rt_dst, AF_INET);
814     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
815     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
816     rt.rt_flags = RTF_GATEWAY;
817     if (ioctl(s, SIOCADDRT, &rt) < 0) {
818         syslog(LOG_ERR, "default route ioctl(SIOCADDRT): %m");
819         return 0;
820     }
821     return 1;
822 }
823
824 /*
825  * cifdefaultroute - delete a default route through the address given.
826  */
827 int
828 cifdefaultroute(u, g)
829     int u;
830     uint32 g;
831 {
832     struct rtentry rt;
833
834     SET_SA_FAMILY(rt.rt_dst, AF_INET);
835     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
836     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
837     rt.rt_flags = RTF_GATEWAY;
838     if (ioctl(s, SIOCDELRT, &rt) < 0) {
839         syslog(LOG_ERR, "default route ioctl(SIOCDELRT): %m");
840         return 0;
841     }
842     return 1;
843 }
844
845 /*
846  * sifproxyarp - Make a proxy ARP entry for the peer.
847  */
848 int
849 sifproxyarp(unit, hisaddr)
850     int unit;
851     uint32 hisaddr;
852 {
853     struct arpreq arpreq;
854
855     BZERO(&arpreq, sizeof(arpreq));
856
857     /*
858      * Get the hardware address of an interface on the same subnet
859      * as our local address.
860      */
861     if (!get_ether_addr(hisaddr, &arpreq.arp_ha)) {
862         syslog(LOG_WARNING, "Cannot determine ethernet address for proxy ARP");
863         return 0;
864     }
865
866     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
867     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
868     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
869     if (ioctl(s, SIOCSARP, (caddr_t)&arpreq) < 0) {
870         syslog(LOG_ERR, "ioctl(SIOCSARP): %m");
871         return 0;
872     }
873
874     return 1;
875 }
876
877 /*
878  * cifproxyarp - Delete the proxy ARP entry for the peer.
879  */
880 int
881 cifproxyarp(unit, hisaddr)
882     int unit;
883     uint32 hisaddr;
884 {
885     struct arpreq arpreq;
886
887     BZERO(&arpreq, sizeof(arpreq));
888     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
889     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
890     if (ioctl(s, SIOCDARP, (caddr_t)&arpreq) < 0) {
891         syslog(LOG_ERR, "ioctl(SIOCDARP): %m");
892         return 0;
893     }
894     return 1;
895 }
896
897 /*
898  * get_ether_addr - get the hardware address of an interface on the
899  * the same subnet as ipaddr.  Code borrowed from myetheraddr.c
900  * in the cslip-2.6 distribution, which is subject to the following
901  * copyright notice (which also applies to logwtmp below):
902  *
903  * Copyright (c) 1990, 1992 The Regents of the University of California.
904  * All rights reserved.
905  *
906  * Redistribution and use in source and binary forms, with or without
907  * modification, are permitted provided that: (1) source code distributions
908  * retain the above copyright notice and this paragraph in its entirety, (2)
909  * distributions including binary code include the above copyright notice and
910  * this paragraph in its entirety in the documentation or other materials
911  * provided with the distribution, and (3) all advertising materials mentioning
912  * features or use of this software display the following acknowledgement:
913  * ``This product includes software developed by the University of California,
914  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
915  * the University nor the names of its contributors may be used to endorse
916  * or promote products derived from this software without specific prior
917  * written permission.
918  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
919  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
920  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
921  */
922
923 #include <fcntl.h>
924 #include <nlist.h>
925 #include <kvm.h>
926 #include <arpa/inet.h>
927
928 /* XXX SunOS 4.1 defines this and 3.5 doesn't... */
929 #ifdef _nlist_h
930 #define SUNOS4
931 #endif
932
933 #ifdef SUNOS4
934 #include <netinet/in_var.h>
935 #endif
936 #include <netinet/if_ether.h>
937
938 /* Cast a struct sockaddr to a structaddr_in */
939 #define SATOSIN(sa) ((struct sockaddr_in *)(sa))
940
941 /* Determine if "bits" is set in "flag" */
942 #define ALLSET(flag, bits) (((flag) & (bits)) == (bits))
943
944 static struct nlist nl[] = {
945 #define N_IFNET 0
946         { "_ifnet" },
947         { 0 }
948 };
949
950 static void kread();
951
952 int
953 get_ether_addr(ipaddr, hwaddr)
954     uint32 ipaddr;
955     struct sockaddr *hwaddr;
956 {
957     register kvm_t *kd;
958     register struct ifnet *ifp;
959     register struct arpcom *ac;
960     struct arpcom arpcom;
961     struct in_addr *inp;
962 #ifdef SUNOS4
963     register struct ifaddr *ifa;
964     register struct in_ifaddr *in;
965     union {
966         struct ifaddr ifa;
967         struct in_ifaddr in;
968     } ifaddr;
969 #endif
970     uint32 addr, mask;
971
972     /* Open kernel memory for reading */
973     kd = kvm_open(0, 0, 0, O_RDONLY, NULL);
974     if (kd == 0) {
975         syslog(LOG_ERR, "kvm_open: %m");
976         return 0;
977     }
978
979     /* Fetch namelist */
980     if (kvm_nlist(kd, nl) != 0) {
981         syslog(LOG_ERR, "kvm_nlist failed");
982         return 0;
983     }
984
985     ac = &arpcom;
986     ifp = &arpcom.ac_if;
987 #ifdef SUNOS4
988     ifa = &ifaddr.ifa;
989     in = &ifaddr.in;
990 #endif
991
992     if (kvm_read(kd, nl[N_IFNET].n_value, (char *)&addr, sizeof(addr))
993         != sizeof(addr)) {
994         syslog(LOG_ERR, "error reading ifnet addr");
995         return 0;
996     }
997     for ( ; addr; addr = (uint32)ifp->if_next) {
998         if (kvm_read(kd, addr, (char *)ac, sizeof(*ac)) != sizeof(*ac)) {
999             syslog(LOG_ERR, "error reading ifnet");
1000             return 0;
1001         }
1002
1003         /* Only look at configured, broadcast interfaces */
1004         if (!ALLSET(ifp->if_flags, IFF_UP | IFF_BROADCAST))
1005             continue;
1006 #ifdef SUNOS4
1007         /* This probably can't happen... */
1008         if (ifp->if_addrlist == 0)
1009             continue;
1010 #endif
1011
1012         /* Get interface ip address */
1013 #ifdef SUNOS4
1014         if (kvm_read(kd, (uint32)ifp->if_addrlist, (char *)&ifaddr,
1015                      sizeof(ifaddr)) != sizeof(ifaddr)) {
1016             syslog(LOG_ERR, "error reading ifaddr");
1017             return 0;
1018         }
1019         inp = &SATOSIN(&ifa->ifa_addr)->sin_addr;
1020 #else
1021         inp = &SATOSIN(&ifp->if_addr)->sin_addr;
1022 #endif
1023
1024         /* Check if this interface on the right subnet */
1025 #ifdef SUNOS4
1026         mask = in->ia_subnetmask;
1027 #else
1028         mask = ifp->if_subnetmask;
1029 #endif
1030         if ((ipaddr & mask) != (inp->s_addr & mask))
1031             continue;
1032
1033         /* Copy out the local ethernet address */
1034         hwaddr->sa_family = AF_UNSPEC;
1035         BCOPY((caddr_t) &arpcom.ac_enaddr, hwaddr->sa_data,
1036               sizeof(arpcom.ac_enaddr));
1037         return 1;               /* success! */
1038     }
1039
1040     /* couldn't find one */
1041     return 0;
1042 }
1043
1044 #define WTMPFILE        "/usr/adm/wtmp"
1045
1046 int
1047 logwtmp(line, name, host)
1048     char *line, *name, *host;
1049 {
1050     int fd;
1051     struct stat buf;
1052     struct utmp ut;
1053
1054     if ((fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
1055         return;
1056     if (!fstat(fd, &buf)) {
1057         (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
1058         (void)strncpy(ut.ut_name, name, sizeof(ut.ut_name));
1059         (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
1060         (void)time(&ut.ut_time);
1061         if (write(fd, (char *)&ut, sizeof(struct utmp)) != sizeof(struct utmp))
1062             (void)ftruncate(fd, buf.st_size);
1063     }
1064     close(fd);
1065 }