]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-sunos4.c
typo
[ppp.git] / pppd / sys-sunos4.c
1 /*
2  * System-dependent procedures for pppd under SunOS 4.
3  *
4  * Copyright (c) 1994-2002 Paul Mackerras. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *
18  * 3. The name(s) of the authors of this software must not be used to
19  *    endorse or promote products derived from this software without
20  *    prior written permission.
21  *
22  * 4. Redistributions of any form whatsoever must retain the following
23  *    acknowledgment:
24  *    "This product includes software developed by Paul Mackerras
25  *     <paulus@samba.org>".
26  *
27  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
28  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
29  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
30  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
31  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
32  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
33  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34  *
35  * Derived from main.c and pppd.h, which are:
36  *
37  * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
38  *
39  * Redistribution and use in source and binary forms, with or without
40  * modification, are permitted provided that the following conditions
41  * are met:
42  *
43  * 1. Redistributions of source code must retain the above copyright
44  *    notice, this list of conditions and the following disclaimer.
45  *
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in
48  *    the documentation and/or other materials provided with the
49  *    distribution.
50  *
51  * 3. The name "Carnegie Mellon University" must not be used to
52  *    endorse or promote products derived from this software without
53  *    prior written permission. For permission or any legal
54  *    details, please contact
55  *      Office of Technology Transfer
56  *      Carnegie Mellon University
57  *      5000 Forbes Avenue
58  *      Pittsburgh, PA  15213-3890
59  *      (412) 268-4387, fax: (412) 268-7395
60  *      tech-transfer@andrew.cmu.edu
61  *
62  * 4. Redistributions of any form whatsoever must retain the following
63  *    acknowledgment:
64  *    "This product includes software developed by Computing Services
65  *     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
66  *
67  * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
68  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
69  * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
70  * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
71  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
72  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
73  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
74  */
75
76 #define RCSID   "$Id: sys-sunos4.c,v 1.32 2003/04/07 00:01:46 paulus Exp $"
77
78 #include <stdio.h>
79 #include <stddef.h>
80 #include <stdlib.h>
81 #include <string.h>
82 #include <ctype.h>
83 #include <errno.h>
84 #include <fcntl.h>
85 #include <unistd.h>
86 #include <termios.h>
87 #include <signal.h>
88 #include <malloc.h>
89 #include <utmp.h>
90 #include <sys/types.h>
91 #include <sys/param.h>
92 #include <sys/socket.h>
93 #include <sys/sockio.h>
94 #include <sys/stream.h>
95 #include <sys/stropts.h>
96 #include <sys/stat.h>
97 #include <sys/time.h>
98 #include <sys/poll.h>
99 #include <net/if.h>
100 #include <net/if_arp.h>
101 #include <net/nit_if.h>
102 #include <net/route.h>
103 #include <net/ppp_defs.h>
104 #include <net/pppio.h>
105 #include <netinet/in.h>
106
107 #include "pppd.h"
108
109 #if defined(sun) && defined(sparc)
110 #include <alloca.h>
111 #ifndef __GNUC__
112 extern void *alloca();
113 #endif
114 #endif /*sparc*/
115
116 static const char rcsid[] = RCSID;
117
118 static int      pppfd;
119 static int      fdmuxid = -1;
120 static int      iffd;
121 static int      sockfd;
122
123 static int      restore_term;
124 static struct termios inittermios;
125 static struct winsize wsinfo;   /* Initial window size info */
126 static pid_t    parent_pid;     /* PID of our parent */
127
128 extern u_char   inpacket_buf[]; /* borrowed from main.c */
129
130 #define MAX_POLLFDS     32
131 static struct pollfd pollfds[MAX_POLLFDS];
132 static int n_pollfds;
133
134 static int      link_mtu, link_mru;
135
136 #define NMODULES        32
137 static int      tty_nmodules;
138 static char     tty_modules[NMODULES][FMNAMESZ+1];
139
140 static int      if_is_up;       /* Interface has been marked up */
141 static u_int32_t ifaddrs[2];    /* local and remote addresses */
142 static u_int32_t default_route_gateway; /* Gateway for default route added */
143 static u_int32_t proxy_arp_addr;        /* Addr for proxy arp entry added */
144
145 /* Prototypes for procedures local to this file. */
146 static int translate_speed __P((int));
147 static int baud_rate_of __P((int));
148 static int get_ether_addr __P((u_int32_t, struct sockaddr *));
149 static int strioctl __P((int, int, void *, int, int));
150
151
152 /*
153  * sys_init - System-dependent initialization.
154  */
155 void
156 sys_init()
157 {
158     int x;
159
160     /* Get an internet socket for doing socket ioctl's on. */
161     if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
162         fatal("Couldn't create IP socket: %m");
163
164     /*
165      * We may want to send a SIGHUP to the session leader associated
166      * with our controlling terminal later.  Because SunOS doesn't
167      * have getsid(), we make do with sending the signal to our
168      * parent process.
169      */
170     parent_pid = getppid();
171
172     /*
173      * Open the ppp device.
174      */
175     pppfd = open("/dev/ppp", O_RDWR | O_NONBLOCK, 0);
176     if (pppfd < 0)
177         fatal("Can't open /dev/ppp: %m");
178     if (kdebugflag) {
179         x = PPPDBG_LOG + PPPDBG_DRIVER;
180         strioctl(pppfd, PPPIO_DEBUG, &x, sizeof(int), 0);
181     }
182
183     /* Assign a new PPA and get its unit number. */
184     if (strioctl(pppfd, PPPIO_NEWPPA, &ifunit, 0, sizeof(int)) < 0)
185         fatal("Can't create new PPP interface: %m");
186
187     /*
188      * Open the ppp device again and push the if_ppp module on it.
189      */
190     iffd = open("/dev/ppp", O_RDWR, 0);
191     if (iffd < 0)
192         fatal("Can't open /dev/ppp (2): %m");
193     if (kdebugflag) {
194         x = PPPDBG_LOG + PPPDBG_DRIVER;
195         strioctl(iffd, PPPIO_DEBUG, &x, sizeof(int), 0);
196     }
197     if (strioctl(iffd, PPPIO_ATTACH, &ifunit, sizeof(int), 0) < 0)
198         fatal("Couldn't attach ppp interface to device: %m");
199     if (ioctl(iffd, I_PUSH, "if_ppp") < 0)
200         fatal("Can't push ppp interface module: %m");
201     if (kdebugflag) {
202         x = PPPDBG_LOG + PPPDBG_IF;
203         strioctl(iffd, PPPIO_DEBUG, &x, sizeof(int), 0);
204     }
205     if (strioctl(iffd, PPPIO_NEWPPA, &ifunit, sizeof(int), 0) < 0)
206         fatal("Couldn't create ppp interface unit: %m");
207     x = PPP_IP;
208     if (strioctl(iffd, PPPIO_BIND, &x, sizeof(int), 0) < 0)
209         fatal("Couldn't bind ppp interface to IP SAP: %m");
210
211     n_pollfds = 0;
212 }
213
214 /*
215  * sys_cleanup - restore any system state we modified before exiting:
216  * mark the interface down, delete default route and/or proxy arp entry.
217  * This shouldn't call die() because it's called from die().
218  */
219 void
220 sys_cleanup()
221 {
222     if (if_is_up)
223         sifdown(0);
224     if (ifaddrs[0])
225         cifaddr(0, ifaddrs[0], ifaddrs[1]);
226     if (default_route_gateway)
227         cifdefaultroute(0, 0, default_route_gateway);
228     if (proxy_arp_addr)
229         cifproxyarp(0, proxy_arp_addr);
230 }
231
232 /*
233  * sys_close - Clean up in a child process before execing.
234  */
235 void
236 sys_close()
237 {
238     close(iffd);
239     close(pppfd);
240     close(sockfd);
241 }
242
243 /*
244  * sys_check_options - check the options that the user specified
245  */
246 int
247 sys_check_options()
248 {
249     return 1;
250 }
251
252 #if 0
253 /*
254  * daemon - Detach us from controlling terminal session.
255  */
256 int
257 daemon(nochdir, noclose)
258     int nochdir, noclose;
259 {
260     int pid;
261
262     if ((pid = fork()) < 0)
263         return -1;
264     if (pid != 0)
265         exit(0);                /* parent dies */
266     setsid();
267     if (!nochdir)
268         chdir("/");
269     if (!noclose) {
270         fclose(stdin);          /* don't need stdin, stdout, stderr */
271         fclose(stdout);
272         fclose(stderr);
273     }
274     return 0;
275 }
276 #endif
277
278 /*
279  * ppp_available - check whether the system has any ppp interfaces
280  */
281 int
282 ppp_available()
283 {
284     struct stat buf;
285
286     return stat("/dev/ppp", &buf) >= 0;
287 }
288
289 /*
290  * tty_establish_ppp - Turn the serial port into a ppp interface.
291  */
292 int
293 tty_establish_ppp(fd)
294     int fd;
295 {
296     int i;
297
298     /* Pop any existing modules off the tty stream. */
299     for (i = 0;; ++i)
300         if (ioctl(fd, I_LOOK, tty_modules[i]) < 0
301             || ioctl(fd, I_POP, 0) < 0)
302             break;
303     tty_nmodules = i;
304
305     /* Push the async hdlc module and the compressor module. */
306     if (ioctl(fd, I_PUSH, "ppp_ahdl") < 0)
307         fatal("Couldn't push PPP Async HDLC module: %m");
308     if (ioctl(fd, I_PUSH, "ppp_comp") < 0)
309         error("Couldn't push PPP compression module: %m");
310
311     /* Link the serial port under the PPP multiplexor. */
312     if ((fdmuxid = ioctl(pppfd, I_LINK, fd)) < 0)
313         fatal("Can't link tty to PPP mux: %m");
314
315     return pppfd;
316 }
317
318 /*
319  * disestablish_ppp - Restore the serial port to normal operation.
320  * It attempts to reconstruct the stream with the previously popped
321  * modules.  This shouldn't call die() because it's called from die().
322  */
323 void
324 tty_disestablish_ppp(fd)
325     int fd;
326 {
327     int i;
328
329     if (fdmuxid >= 0) {
330         if (ioctl(pppfd, I_UNLINK, fdmuxid) < 0) {
331             if (!hungup)
332                 error("Can't unlink tty from PPP mux: %m");
333         }
334         fdmuxid = -1;
335
336         if (!hungup) {
337             while (ioctl(fd, I_POP, 0) >= 0)
338                 ;
339             for (i = tty_nmodules - 1; i >= 0; --i)
340                 if (ioctl(fd, I_PUSH, tty_modules[i]) < 0)
341                     error("Couldn't restore tty module %s: %m",
342                            tty_modules[i]);
343         }
344         if (hungup && default_device && parent_pid > 0) {
345             /*
346              * If we have received a hangup, we need to send a SIGHUP
347              * to the terminal's controlling process.  The reason is
348              * that the original stream head for the terminal hasn't
349              * seen the M_HANGUP message (it went up through the ppp
350              * driver to the stream head for our fd to /dev/ppp).
351              * Actually we send the signal to the process that invoked
352              * pppd, since SunOS doesn't have getsid().
353              */
354             kill(parent_pid, SIGHUP);
355         }
356     }
357 }
358
359 /*
360  * Check whether the link seems not to be 8-bit clean.
361  */
362 void
363 clean_check()
364 {
365     int x;
366     char *s;
367
368     if (strioctl(pppfd, PPPIO_GCLEAN, &x, 0, sizeof(x)) < 0)
369         return;
370     s = NULL;
371     switch (~x) {
372     case RCV_B7_0:
373         s = "bit 7 set to 1";
374         break;
375     case RCV_B7_1:
376         s = "bit 7 set to 0";
377         break;
378     case RCV_EVNP:
379         s = "odd parity";
380         break;
381     case RCV_ODDP:
382         s = "even parity";
383         break;
384     }
385     if (s != NULL) {
386         warn("Serial link is not 8-bit clean:");
387         warn("All received characters had %s", s);
388     }
389 }
390
391 /*
392  * List of valid speeds.
393  */
394 struct speed {
395     int speed_int, speed_val;
396 } speeds[] = {
397 #ifdef B50
398     { 50, B50 },
399 #endif
400 #ifdef B75
401     { 75, B75 },
402 #endif
403 #ifdef B110
404     { 110, B110 },
405 #endif
406 #ifdef B134
407     { 134, B134 },
408 #endif
409 #ifdef B150
410     { 150, B150 },
411 #endif
412 #ifdef B200
413     { 200, B200 },
414 #endif
415 #ifdef B300
416     { 300, B300 },
417 #endif
418 #ifdef B600
419     { 600, B600 },
420 #endif
421 #ifdef B1200
422     { 1200, B1200 },
423 #endif
424 #ifdef B1800
425     { 1800, B1800 },
426 #endif
427 #ifdef B2000
428     { 2000, B2000 },
429 #endif
430 #ifdef B2400
431     { 2400, B2400 },
432 #endif
433 #ifdef B3600
434     { 3600, B3600 },
435 #endif
436 #ifdef B4800
437     { 4800, B4800 },
438 #endif
439 #ifdef B7200
440     { 7200, B7200 },
441 #endif
442 #ifdef B9600
443     { 9600, B9600 },
444 #endif
445 #ifdef B19200
446     { 19200, B19200 },
447 #endif
448 #ifdef B38400
449     { 38400, B38400 },
450 #endif
451 #ifdef EXTA
452     { 19200, EXTA },
453 #endif
454 #ifdef EXTB
455     { 38400, EXTB },
456 #endif
457 #ifdef B57600
458     { 57600, B57600 },
459 #endif
460 #ifdef B115200
461     { 115200, B115200 },
462 #endif
463     { 0, 0 }
464 };
465
466 /*
467  * Translate from bits/second to a speed_t.
468  */
469 static int
470 translate_speed(bps)
471     int bps;
472 {
473     struct speed *speedp;
474
475     if (bps == 0)
476         return 0;
477     for (speedp = speeds; speedp->speed_int; speedp++)
478         if (bps == speedp->speed_int)
479             return speedp->speed_val;
480     warn("speed %d not supported", bps);
481     return 0;
482 }
483
484 /*
485  * Translate from a speed_t to bits/second.
486  */
487 static int
488 baud_rate_of(speed)
489     int speed;
490 {
491     struct speed *speedp;
492
493     if (speed == 0)
494         return 0;
495     for (speedp = speeds; speedp->speed_int; speedp++)
496         if (speed == speedp->speed_val)
497             return speedp->speed_int;
498     return 0;
499 }
500
501 /*
502  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
503  * at the requested speed, etc.  If `local' is true, set CLOCAL
504  * regardless of whether the modem option was specified.
505  */
506 void
507 set_up_tty(fd, local)
508     int fd, local;
509 {
510     int speed;
511     struct termios tios;
512
513     if (tcgetattr(fd, &tios) < 0)
514         fatal("tcgetattr: %m");
515
516     if (!restore_term) {
517         inittermios = tios;
518         ioctl(fd, TIOCGWINSZ, &wsinfo);
519     }
520
521     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
522     if (crtscts > 0)
523         tios.c_cflag |= CRTSCTS;
524     else if (crtscts < 0)
525         tios.c_cflag &= ~CRTSCTS;
526
527     tios.c_cflag |= CS8 | CREAD | HUPCL;
528     if (local || !modem)
529         tios.c_cflag |= CLOCAL;
530     tios.c_iflag = IGNBRK | IGNPAR;
531     tios.c_oflag = 0;
532     tios.c_lflag = 0;
533     tios.c_cc[VMIN] = 1;
534     tios.c_cc[VTIME] = 0;
535
536     if (crtscts == -2) {
537         tios.c_iflag |= IXON | IXOFF;
538         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
539         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
540     }
541
542     speed = translate_speed(inspeed);
543     if (speed) {
544         cfsetospeed(&tios, speed);
545         cfsetispeed(&tios, speed);
546     } else {
547         speed = cfgetospeed(&tios);
548         /*
549          * We can't proceed if the serial port speed is 0,
550          * since that implies that the serial port is disabled.
551          */
552         if (speed == B0)
553             fatal("Baud rate for %s is 0; need explicit baud rate", devnam);
554     }
555
556     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0)
557         fatal("tcsetattr: %m");
558
559     baud_rate = inspeed = baud_rate_of(speed);
560     restore_term = 1;
561 }
562
563 /*
564  * restore_tty - restore the terminal to the saved settings.
565  */
566 void
567 restore_tty(fd)
568     int fd;
569 {
570     if (restore_term) {
571         if (!default_device) {
572             /*
573              * Turn off echoing, because otherwise we can get into
574              * a loop with the tty and the modem echoing to each other.
575              * We presume we are the sole user of this tty device, so
576              * when we close it, it will revert to its defaults anyway.
577              */
578             inittermios.c_lflag &= ~(ECHO | ECHONL);
579         }
580         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
581             if (!hungup && errno != ENXIO)
582                 warn("tcsetattr: %m");
583         ioctl(fd, TIOCSWINSZ, &wsinfo);
584         restore_term = 0;
585     }
586 }
587
588 /*
589  * setdtr - control the DTR line on the serial port.
590  * This is called from die(), so it shouldn't call die().
591  */
592 void
593 setdtr(fd, on)
594 int fd, on;
595 {
596     int modembits = TIOCM_DTR;
597
598     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
599 }
600
601 /*
602  * open_loopback - open the device we use for getting packets
603  * in demand mode.  Under SunOS, we use our existing fd
604  * to the ppp driver.
605  */
606 int
607 open_ppp_loopback()
608 {
609     return pppfd;
610 }
611
612 /*
613  * output - Output PPP packet.
614  */
615 void
616 output(unit, p, len)
617     int unit;
618     u_char *p;
619     int len;
620 {
621     struct strbuf data;
622     int retries;
623     struct pollfd pfd;
624
625     dump_packet("sent", p, len);
626     if (snoop_send_hook) snoop_send_hook(p, len);
627
628     data.len = len;
629     data.buf = (caddr_t) p;
630     retries = 4;
631     while (putmsg(pppfd, NULL, &data, 0) < 0) {
632         if (--retries < 0 || (errno != EWOULDBLOCK && errno != EAGAIN)) {
633             if (errno != ENXIO)
634                 error("Couldn't send packet: %m");
635             break;
636         }
637         pfd.fd = pppfd;
638         pfd.events = POLLOUT;
639         poll(&pfd, 1, 250);     /* wait for up to 0.25 seconds */
640     }
641 }
642
643
644 /*
645  * wait_input - wait until there is data available,
646  * for the length of time specified by *timo (indefinite
647  * if timo is NULL).
648  */
649 void
650 wait_input(timo)
651     struct timeval *timo;
652 {
653     int t;
654
655     t = timo == NULL? -1: timo->tv_sec * 1000 + timo->tv_usec / 1000;
656     if (poll(pollfds, n_pollfds, t) < 0 && errno != EINTR) {
657         if (errno != EAGAIN)
658             fatal("poll: %m");
659         /* we can get EAGAIN on a heavily loaded system,
660          * just wait a short time and try again. */
661         usleep(50000);
662     }
663 }
664
665 /*
666  * add_fd - add an fd to the set that wait_input waits for.
667  */
668 void add_fd(fd)
669     int fd;
670 {
671     int n;
672
673     for (n = 0; n < n_pollfds; ++n)
674         if (pollfds[n].fd == fd)
675             return;
676     if (n_pollfds < MAX_POLLFDS) {
677         pollfds[n_pollfds].fd = fd;
678         pollfds[n_pollfds].events = POLLIN | POLLPRI | POLLHUP;
679         ++n_pollfds;
680     } else
681         error("Too many inputs!");
682 }
683
684 /*
685  * remove_fd - remove an fd from the set that wait_input waits for.
686  */
687 void remove_fd(fd)
688     int fd;
689 {
690     int n;
691
692     for (n = 0; n < n_pollfds; ++n) {
693         if (pollfds[n].fd == fd) {
694             while (++n < n_pollfds)
695                 pollfds[n-1] = pollfds[n];
696             --n_pollfds;
697             break;
698         }
699     }
700 }
701
702 #if 0
703 /*
704  * wait_loop_output - wait until there is data available on the
705  * loopback, for the length of time specified by *timo (indefinite
706  * if timo is NULL).
707  */
708 void
709 wait_loop_output(timo)
710     struct timeval *timo;
711 {
712     wait_input(timo);
713 }
714
715 /*
716  * wait_time - wait for a given length of time or until a
717  * signal is received.
718  */
719 void
720 wait_time(timo)
721     struct timeval *timo;
722 {
723     int n;
724
725     n = select(0, NULL, NULL, NULL, timo);
726     if (n < 0 && errno != EINTR)
727         fatal("select: %m");
728 }
729 #endif
730
731 /*
732  * read_packet - get a PPP packet from the serial device.
733  */
734 int
735 read_packet(buf)
736     u_char *buf;
737 {
738     struct strbuf ctrl, data;
739     int flags, len;
740     unsigned char ctrlbuf[64];
741
742     for (;;) {
743         data.maxlen = PPP_MRU + PPP_HDRLEN;
744         data.buf = (caddr_t) buf;
745         ctrl.maxlen = sizeof(ctrlbuf);
746         ctrl.buf = (caddr_t) ctrlbuf;
747         flags = 0;
748         len = getmsg(pppfd, &ctrl, &data, &flags);
749         if (len < 0) {
750             if (errno == EAGAIN || errno == EINTR)
751                 return -1;
752             fatal("Error reading packet: %m");
753         }
754
755         if (ctrl.len <= 0)
756             return data.len;
757
758         /*
759          * Got a M_PROTO or M_PCPROTO message.  Huh?
760          */
761         if (debug)
762             dbglog("got ctrl msg len=%d", ctrl.len);
763
764     }
765 }
766
767 /*
768  * get_loop_output - get outgoing packets from the ppp device,
769  * and detect when we want to bring the real link up.
770  * Return value is 1 if we need to bring up the link, 0 otherwise.
771  */
772 int
773 get_loop_output()
774 {
775     int len;
776     int rv = 0;
777
778     while ((len = read_packet(inpacket_buf)) > 0) {
779         if (loop_frame(inpacket_buf, len))
780             rv = 1;
781     }
782     return rv;
783 }
784
785 /*
786  * netif_set_mtu - set the MTU on the PPP network interface.
787  */
788 void
789 netif_set_mtu(unit, mtu)
790     int unit, mtu;
791 {
792     struct ifreq ifr;
793
794     memset(&ifr, 0, sizeof(ifr));
795     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
796     ifr.ifr_metric = link_mtu;
797     if (ioctl(sockfd, SIOCSIFMTU, &ifr) < 0) {
798         error("Couldn't set IP MTU: %m");
799     }
800 }
801
802 /*
803  * tty_send_config - configure the transmit characteristics of
804  * the ppp interface.
805  */
806 int
807 tty_send_config(mtu, asyncmap, pcomp, accomp)
808     int mtu;
809     u_int32_t asyncmap;
810     int pcomp, accomp;
811 {
812     int cf[2];
813
814     link_mtu = mtu;
815     if (strioctl(pppfd, PPPIO_MTU, &mtu, sizeof(mtu), 0) < 0) {
816         if (hungup && errno == ENXIO) {
817             ++error_count;
818             return;
819         }
820         error("Couldn't set MTU: %m");
821     }
822     if (strioctl(pppfd, PPPIO_XACCM, &asyncmap, sizeof(asyncmap), 0) < 0)
823         error("Couldn't set transmit ACCM: %m");
824     cf[0] = (pcomp? COMP_PROT: 0) + (accomp? COMP_AC: 0);
825     cf[1] = COMP_PROT | COMP_AC;
826     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0)
827         error("Couldn't set prot/AC compression: %m");
828 }
829
830 /*
831  * tty_set_xaccm - set the extended transmit ACCM for the interface.
832  */
833 void
834 tty_set_xaccm(unit, accm)
835     int unit;
836     ext_accm accm;
837 {
838     if (strioctl(pppfd, PPPIO_XACCM, accm, sizeof(ext_accm), 0) < 0) {
839         if (!hungup || errno != ENXIO)
840             warn("Couldn't set extended ACCM: %m");
841     }
842 }
843
844 /*
845  * tty_recv_config - configure the receive-side characteristics of
846  * the ppp interface.
847  */
848 void
849 tty_recv_config(mru, asyncmap, pcomp, accomp)
850     int mru;
851     u_int32_t asyncmap;
852     int pcomp, accomp;
853 {
854     int cf[2];
855
856     link_mru = mru;
857     if (strioctl(pppfd, PPPIO_MRU, &mru, sizeof(mru), 0) < 0) {
858         if (hungup && errno == ENXIO) {
859             ++error_count;
860             return;
861         }
862         error("Couldn't set MRU: %m");
863     }
864     if (strioctl(pppfd, PPPIO_RACCM, &asyncmap, sizeof(asyncmap), 0) < 0)
865         error("Couldn't set receive ACCM: %m");
866     cf[0] = (pcomp? DECOMP_PROT: 0) + (accomp? DECOMP_AC: 0);
867     cf[1] = DECOMP_PROT | DECOMP_AC;
868     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0)
869         error("Couldn't set prot/AC decompression: %m");
870 }
871
872 /*
873  * ccp_test - ask kernel whether a given compression method
874  * is acceptable for use.
875  */
876 int
877 ccp_test(unit, opt_ptr, opt_len, for_transmit)
878     int unit, opt_len, for_transmit;
879     u_char *opt_ptr;
880 {
881     if (strioctl(pppfd, (for_transmit? PPPIO_XCOMP: PPPIO_RCOMP),
882                  opt_ptr, opt_len, 0) >= 0)
883         return 1;
884     return (errno == ENOSR)? 0: -1;
885 }
886
887 /*
888  * ccp_flags_set - inform kernel about the current state of CCP.
889  */
890 void
891 ccp_flags_set(unit, isopen, isup)
892     int unit, isopen, isup;
893 {
894     int cf[2];
895
896     cf[0] = (isopen? CCP_ISOPEN: 0) + (isup? CCP_ISUP: 0);
897     cf[1] = CCP_ISOPEN | CCP_ISUP | CCP_ERROR | CCP_FATALERROR;
898     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
899         if (!hungup || errno != ENXIO)
900             error("Couldn't set kernel CCP state: %m");
901     }
902 }
903
904 /*
905  * get_idle_time - return how long the link has been idle.
906  */
907 int
908 get_idle_time(u, ip)
909     int u;
910     struct ppp_idle *ip;
911 {
912     return strioctl(pppfd, PPPIO_GIDLE, ip, 0, sizeof(struct ppp_idle)) >= 0;
913 }
914
915 /*
916  * get_ppp_stats - return statistics for the link.
917  */
918 int
919 get_ppp_stats(u, stats)
920     int u;
921     struct pppd_stats *stats;
922 {
923     struct ppp_stats s;
924
925     if (strioctl(pppfd, PPPIO_GETSTAT, &s, 0, sizeof(s)) < 0) {
926         error("Couldn't get link statistics: %m");
927         return 0;
928     }
929     stats->bytes_in = s.p.ppp_ibytes;
930     stats->bytes_out = s.p.ppp_obytes;
931     stats->pkts_in = s.p.ppp_ipackets;
932     stats->pkts_out = s.p.ppp_opackets;
933     return 1;
934 }
935
936
937 /*
938  * ccp_fatal_error - returns 1 if decompression was disabled as a
939  * result of an error detected after decompression of a packet,
940  * 0 otherwise.  This is necessary because of patent nonsense.
941  */
942 int
943 ccp_fatal_error(unit)
944     int unit;
945 {
946     int cf[2];
947
948     cf[0] = cf[1] = 0;
949     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
950         if (errno != ENXIO && errno != EINVAL)
951             error("Couldn't get compression flags: %m");
952         return 0;
953     }
954     return cf[0] & CCP_FATALERROR;
955 }
956
957 /*
958  * sifvjcomp - config tcp header compression
959  */
960 int
961 sifvjcomp(u, vjcomp, xcidcomp, xmaxcid)
962     int u, vjcomp, xcidcomp, xmaxcid;
963 {
964     int cf[2];
965     char maxcid[2];
966
967     if (vjcomp) {
968         maxcid[0] = xcidcomp;
969         maxcid[1] = 15;         /* XXX should be rmaxcid */
970         if (strioctl(pppfd, PPPIO_VJINIT, maxcid, sizeof(maxcid), 0) < 0) {
971             error("Couldn't initialize VJ compression: %m");
972         }
973     }
974
975     cf[0] = (vjcomp? COMP_VJC + DECOMP_VJC: 0)  /* XXX this is wrong */
976         + (xcidcomp? COMP_VJCCID + DECOMP_VJCCID: 0);
977     cf[1] = COMP_VJC + DECOMP_VJC + COMP_VJCCID + DECOMP_VJCCID;
978     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
979         if (vjcomp)
980             error("Couldn't enable VJ compression: %m");
981     }
982
983     return 1;
984 }
985
986 /*
987  * sifup - Config the interface up and enable IP packets to pass.
988  */
989 int
990 sifup(u)
991     int u;
992 {
993     struct ifreq ifr;
994
995     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
996     if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) < 0) {
997         error("Couldn't mark interface up (get): %m");
998         return 0;
999     }
1000     ifr.ifr_flags |= IFF_UP;
1001     if (ioctl(sockfd, SIOCSIFFLAGS, &ifr) < 0) {
1002         error("Couldn't mark interface up (set): %m");
1003         return 0;
1004     }
1005     if_is_up = 1;
1006     return 1;
1007 }
1008
1009 /*
1010  * sifdown - Config the interface down and disable IP.
1011  */
1012 int
1013 sifdown(u)
1014     int u;
1015 {
1016     struct ifreq ifr;
1017
1018     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1019     if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) < 0) {
1020         error("Couldn't mark interface down (get): %m");
1021         return 0;
1022     }
1023     if ((ifr.ifr_flags & IFF_UP) != 0) {
1024         ifr.ifr_flags &= ~IFF_UP;
1025         if (ioctl(sockfd, SIOCSIFFLAGS, &ifr) < 0) {
1026             error("Couldn't mark interface down (set): %m");
1027             return 0;
1028         }
1029     }
1030     if_is_up = 0;
1031     return 1;
1032 }
1033
1034 /*
1035  * sifnpmode - Set the mode for handling packets for a given NP.
1036  */
1037 int
1038 sifnpmode(u, proto, mode)
1039     int u;
1040     int proto;
1041     enum NPmode mode;
1042 {
1043     int npi[2];
1044
1045     npi[0] = proto;
1046     npi[1] = (int) mode;
1047     if (strioctl(pppfd, PPPIO_NPMODE, npi, 2 * sizeof(int), 0) < 0) {
1048         error("ioctl(set NP %d mode to %d): %m", proto, mode);
1049         return 0;
1050     }
1051     return 1;
1052 }
1053
1054 #define INET_ADDR(x)    (((struct sockaddr_in *) &(x))->sin_addr.s_addr)
1055
1056 /*
1057  * sifaddr - Config the interface IP addresses and netmask.
1058  */
1059 int
1060 sifaddr(u, o, h, m)
1061     int u;
1062     u_int32_t o, h, m;
1063 {
1064     struct ifreq ifr;
1065
1066     memset(&ifr, 0, sizeof(ifr));
1067     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1068     ifr.ifr_addr.sa_family = AF_INET;
1069     INET_ADDR(ifr.ifr_addr) = m;
1070     if (ioctl(sockfd, SIOCSIFNETMASK, &ifr) < 0) {
1071         error("Couldn't set IP netmask: %m");
1072     }
1073     ifr.ifr_addr.sa_family = AF_INET;
1074     INET_ADDR(ifr.ifr_addr) = o;
1075     if (ioctl(sockfd, SIOCSIFADDR, &ifr) < 0) {
1076         error("Couldn't set local IP address: %m");
1077     }
1078     ifr.ifr_dstaddr.sa_family = AF_INET;
1079     INET_ADDR(ifr.ifr_dstaddr) = h;
1080     if (ioctl(sockfd, SIOCSIFDSTADDR, &ifr) < 0) {
1081         error("Couldn't set remote IP address: %m");
1082     }
1083 #if 0   /* now done in ppp_send_config */
1084     ifr.ifr_metric = link_mtu;
1085     if (ioctl(sockfd, SIOCSIFMTU, &ifr) < 0) {
1086         error("Couldn't set IP MTU: %m");
1087     }
1088 #endif
1089     ifaddrs[0] = o;
1090     ifaddrs[1] = h;
1091
1092     return 1;
1093 }
1094
1095 /*
1096  * cifaddr - Clear the interface IP addresses, and delete routes
1097  * through the interface if possible.
1098  */
1099 int
1100 cifaddr(u, o, h)
1101     int u;
1102     u_int32_t o, h;
1103 {
1104     struct rtentry rt;
1105
1106     bzero(&rt, sizeof(rt));
1107     rt.rt_dst.sa_family = AF_INET;
1108     INET_ADDR(rt.rt_dst) = h;
1109     rt.rt_gateway.sa_family = AF_INET;
1110     INET_ADDR(rt.rt_gateway) = o;
1111     rt.rt_flags = RTF_HOST;
1112     if (ioctl(sockfd, SIOCDELRT, &rt) < 0)
1113         error("Couldn't delete route through interface: %m");
1114     ifaddrs[0] = 0;
1115     return 1;
1116 }
1117
1118 /*
1119  * sifdefaultroute - assign a default route through the address given.
1120  */
1121 int
1122 sifdefaultroute(u, l, g)
1123     int u;
1124     u_int32_t l, g;
1125 {
1126     struct rtentry rt;
1127
1128     bzero(&rt, sizeof(rt));
1129     rt.rt_dst.sa_family = AF_INET;
1130     INET_ADDR(rt.rt_dst) = 0;
1131     rt.rt_gateway.sa_family = AF_INET;
1132     INET_ADDR(rt.rt_gateway) = g;
1133     rt.rt_flags = RTF_GATEWAY;
1134
1135     if (ioctl(sockfd, SIOCADDRT, &rt) < 0) {
1136         error("Can't add default route: %m");
1137         return 0;
1138     }
1139
1140     default_route_gateway = g;
1141     return 1;
1142 }
1143
1144 /*
1145  * cifdefaultroute - delete a default route through the address given.
1146  */
1147 int
1148 cifdefaultroute(u, l, g)
1149     int u;
1150     u_int32_t l, g;
1151 {
1152     struct rtentry rt;
1153
1154     bzero(&rt, sizeof(rt));
1155     rt.rt_dst.sa_family = AF_INET;
1156     INET_ADDR(rt.rt_dst) = 0;
1157     rt.rt_gateway.sa_family = AF_INET;
1158     INET_ADDR(rt.rt_gateway) = g;
1159     rt.rt_flags = RTF_GATEWAY;
1160
1161     if (ioctl(sockfd, SIOCDELRT, &rt) < 0) {
1162         error("Can't delete default route: %m");
1163         return 0;
1164     }
1165
1166     default_route_gateway = 0;
1167     return 1;
1168 }
1169
1170 /*
1171  * sifproxyarp - Make a proxy ARP entry for the peer.
1172  */
1173 int
1174 sifproxyarp(unit, hisaddr)
1175     int unit;
1176     u_int32_t hisaddr;
1177 {
1178     struct arpreq arpreq;
1179
1180     bzero(&arpreq, sizeof(arpreq));
1181     if (!get_ether_addr(hisaddr, &arpreq.arp_ha))
1182         return 0;
1183
1184     arpreq.arp_pa.sa_family = AF_INET;
1185     INET_ADDR(arpreq.arp_pa) = hisaddr;
1186     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1187     if (ioctl(sockfd, SIOCSARP, (caddr_t) &arpreq) < 0) {
1188         error("Couldn't set proxy ARP entry: %m");
1189         return 0;
1190     }
1191
1192     proxy_arp_addr = hisaddr;
1193     return 1;
1194 }
1195
1196 /*
1197  * cifproxyarp - Delete the proxy ARP entry for the peer.
1198  */
1199 int
1200 cifproxyarp(unit, hisaddr)
1201     int unit;
1202     u_int32_t hisaddr;
1203 {
1204     struct arpreq arpreq;
1205
1206     bzero(&arpreq, sizeof(arpreq));
1207     arpreq.arp_pa.sa_family = AF_INET;
1208     INET_ADDR(arpreq.arp_pa) = hisaddr;
1209     if (ioctl(sockfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1210         error("Couldn't delete proxy ARP entry: %m");
1211         return 0;
1212     }
1213
1214     proxy_arp_addr = 0;
1215     return 1;
1216 }
1217
1218 /*
1219  * get_ether_addr - get the hardware address of an interface on the
1220  * the same subnet as ipaddr.
1221  */
1222 #define MAX_IFS         32
1223
1224 static int
1225 get_ether_addr(ipaddr, hwaddr)
1226     u_int32_t ipaddr;
1227     struct sockaddr *hwaddr;
1228 {
1229     struct ifreq *ifr, *ifend;
1230     u_int32_t ina, mask;
1231     struct ifreq ifreq;
1232     struct ifconf ifc;
1233     struct ifreq ifs[MAX_IFS];
1234     int nit_fd;
1235
1236     ifc.ifc_len = sizeof(ifs);
1237     ifc.ifc_req = ifs;
1238     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1239         error("ioctl(SIOCGIFCONF): %m");
1240         return 0;
1241     }
1242
1243     /*
1244      * Scan through looking for an interface with an Internet
1245      * address on the same subnet as `ipaddr'.
1246      */
1247     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1248     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1249             ((char *)&ifr->ifr_addr + sizeof(struct sockaddr))) {
1250         if (ifr->ifr_addr.sa_family == AF_INET) {
1251
1252             /*
1253              * Check that the interface is up, and not point-to-point
1254              * or loopback.
1255              */
1256             strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1257             if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1258                 continue;
1259             if ((ifreq.ifr_flags &
1260                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1261                  != (IFF_UP|IFF_BROADCAST))
1262                 continue;
1263
1264             /*
1265              * Get its netmask and check that it's on the right subnet.
1266              */
1267             if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1268                 continue;
1269             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1270             mask = ((struct sockaddr_in *) &ifreq.ifr_addr)->sin_addr.s_addr;
1271             if ((ipaddr & mask) != (ina & mask))
1272                 continue;
1273
1274             break;
1275         }
1276     }
1277
1278     if (ifr >= ifend)
1279         return 0;
1280     info("found interface %s for proxy arp", ifr->ifr_name);
1281
1282     /*
1283      * Grab the physical address for this interface.
1284      */
1285     if ((nit_fd = open("/dev/nit", O_RDONLY)) < 0) {
1286         error("Couldn't open /dev/nit: %m");
1287         return 0;
1288     }
1289     strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1290     if (ioctl(nit_fd, NIOCBIND, &ifreq) < 0
1291         || ioctl(nit_fd, SIOCGIFADDR, &ifreq) < 0) {
1292         error("Couldn't get hardware address for %s: %m",
1293                ifreq.ifr_name);
1294         close(nit_fd);
1295         return 0;
1296     }
1297
1298     hwaddr->sa_family = AF_UNSPEC;
1299     memcpy(hwaddr->sa_data, ifreq.ifr_addr.sa_data, 6);
1300     close(nit_fd);
1301     return 1;
1302 }
1303
1304 /*
1305  * have_route_to - determine if the system has any route to
1306  * a given IP address.
1307  * For demand mode to work properly, we have to ignore routes
1308  * through our own interface.
1309  */
1310 int have_route_to(addr)
1311     u_int32_t addr;
1312 {
1313     return -1;
1314 }
1315
1316 #define WTMPFILE        "/usr/adm/wtmp"
1317
1318 void
1319 logwtmp(line, name, host)
1320     const char *line, *name, *host;
1321 {
1322     int fd;
1323     struct stat buf;
1324     struct utmp ut;
1325
1326     if ((fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
1327         return;
1328     if (!fstat(fd, &buf)) {
1329         strncpy(ut.ut_line, line, sizeof(ut.ut_line));
1330         strncpy(ut.ut_name, name, sizeof(ut.ut_name));
1331         strncpy(ut.ut_host, host, sizeof(ut.ut_host));
1332         (void)time(&ut.ut_time);
1333         if (write(fd, (char *)&ut, sizeof(struct utmp)) != sizeof(struct utmp))
1334             (void)ftruncate(fd, buf.st_size);
1335     }
1336     close(fd);
1337 }
1338
1339 /*
1340  * Return user specified netmask, modified by any mask we might determine
1341  * for address `addr' (in network byte order).
1342  * Here we scan through the system's list of interfaces, looking for
1343  * any non-point-to-point interfaces which might appear to be on the same
1344  * network as `addr'.  If we find any, we OR in their netmask to the
1345  * user-specified netmask.
1346  */
1347 u_int32_t
1348 GetMask(addr)
1349     u_int32_t addr;
1350 {
1351     u_int32_t mask, nmask, ina;
1352     struct ifreq *ifr, *ifend, ifreq;
1353     struct ifconf ifc;
1354
1355     addr = ntohl(addr);
1356     if (IN_CLASSA(addr))        /* determine network mask for address class */
1357         nmask = IN_CLASSA_NET;
1358     else if (IN_CLASSB(addr))
1359         nmask = IN_CLASSB_NET;
1360     else
1361         nmask = IN_CLASSC_NET;
1362     /* class D nets are disallowed by bad_ip_adrs */
1363     mask = netmask | htonl(nmask);
1364
1365     /*
1366      * Scan through the system's network interfaces.
1367      */
1368     ifc.ifc_len = MAX_IFS * sizeof(struct ifreq);
1369     ifc.ifc_req = alloca(ifc.ifc_len);
1370     if (ifc.ifc_req == 0)
1371         return mask;
1372     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1373         warn("Couldn't get system interface list: %m");
1374         return mask;
1375     }
1376     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1377     for (ifr = ifc.ifc_req; ifr < ifend; ++ifr) {
1378         /*
1379          * Check the interface's internet address.
1380          */
1381         if (ifr->ifr_addr.sa_family != AF_INET)
1382             continue;
1383         ina = INET_ADDR(ifr->ifr_addr);
1384         if ((ntohl(ina) & nmask) != (addr & nmask))
1385             continue;
1386         /*
1387          * Check that the interface is up, and not point-to-point or loopback.
1388          */
1389         strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1390         if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1391             continue;
1392         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1393             != IFF_UP)
1394             continue;
1395         /*
1396          * Get its netmask and OR it into our mask.
1397          */
1398         if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1399             continue;
1400         mask |= INET_ADDR(ifreq.ifr_addr);
1401     }
1402
1403     return mask;
1404 }
1405
1406 static int
1407 strioctl(fd, cmd, ptr, ilen, olen)
1408     int fd, cmd, ilen, olen;
1409     void *ptr;
1410 {
1411     struct strioctl str;
1412
1413     str.ic_cmd = cmd;
1414     str.ic_timout = 0;
1415     str.ic_len = ilen;
1416     str.ic_dp = ptr;
1417     if (ioctl(fd, I_STR, &str) == -1)
1418         return -1;
1419     if (str.ic_len != olen)
1420         dbglog("strioctl: expected %d bytes, got %d for cmd %x\n",
1421                olen, str.ic_len, cmd);
1422     return 0;
1423 }
1424
1425 /*
1426  * Use the hostid as part of the random number seed.
1427  */
1428 int
1429 get_host_seed()
1430 {
1431     return gethostid();
1432 }
1433
1434 #if 0
1435 /*
1436  * Code for locking/unlocking the serial device.
1437  * This code is derived from chat.c.
1438  */
1439
1440 #if !defined(HDB) && !defined(SUNOS3)
1441 #define HDB     1               /* ascii lock files are the default */
1442 #endif
1443
1444 #ifndef LOCK_DIR
1445 # if HDB
1446 #  define       PIDSTRING
1447 #  define       LOCK_PREFIX     "/usr/spool/locks/LCK.."
1448 # else /* HDB */
1449 #  define       LOCK_PREFIX     "/usr/spool/uucp/LCK.."
1450 # endif /* HDB */
1451 #endif /* LOCK_DIR */
1452
1453 static char *lock_file;         /* name of lock file created */
1454
1455 /*
1456  * lock - create a lock file for the named device.
1457  */
1458 int
1459 lock(dev)
1460     char *dev;
1461 {
1462     char hdb_lock_buffer[12];
1463     int fd, pid, n;
1464     char *p;
1465     size_t l;
1466
1467     if ((p = strrchr(dev, '/')) != NULL)
1468         dev = p + 1;
1469     l = strlen(LOCK_PREFIX) + strlen(dev) + 1;
1470     lock_file = malloc(l);
1471     if (lock_file == NULL)
1472         novm("lock file name");
1473     slprintf(lock_file, l, "%s%s", LOCK_PREFIX, dev);
1474
1475     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1476         if (errno == EEXIST
1477             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1478             /* Read the lock file to find out who has the device locked */
1479 #ifdef PIDSTRING
1480             n = read(fd, hdb_lock_buffer, 11);
1481             if (n > 0) {
1482                 hdb_lock_buffer[n] = 0;
1483                 pid = atoi(hdb_lock_buffer);
1484             }
1485 #else
1486             n = read(fd, &pid, sizeof(pid));
1487 #endif
1488             if (n <= 0) {
1489                 error("Can't read pid from lock file %s", lock_file);
1490                 close(fd);
1491             } else {
1492                 if (kill(pid, 0) == -1 && errno == ESRCH) {
1493                     /* pid no longer exists - remove the lock file */
1494                     if (unlink(lock_file) == 0) {
1495                         close(fd);
1496                         notice("Removed stale lock on %s (pid %d)",
1497                                dev, pid);
1498                         continue;
1499                     } else
1500                         warn("Couldn't remove stale lock on %s",
1501                                dev);
1502                 } else
1503                     notice("Device %s is locked by pid %d",
1504                            dev, pid);
1505             }
1506             close(fd);
1507         } else
1508             error("Can't create lock file %s: %m", lock_file);
1509         free(lock_file);
1510         lock_file = NULL;
1511         return -1;
1512     }
1513
1514 #ifdef PIDSTRING
1515     slprintf(hdb_lock_buffer, sizeof(hdb_lock_buffer), "%10d\n", getpid());
1516     write(fd, hdb_lock_buffer, 11);
1517 #else
1518     pid = getpid();
1519     write(fd, &pid, sizeof pid);
1520 #endif
1521
1522     close(fd);
1523     return 0;
1524 }
1525
1526 /*
1527  * unlock - remove our lockfile
1528  */
1529 void
1530 unlock()
1531 {
1532     if (lock_file) {
1533         unlink(lock_file);
1534         free(lock_file);
1535         lock_file = NULL;
1536     }
1537 }
1538 #endif /* lock stuff removed */
1539
1540 /*
1541  * get_pty - get a pty master/slave pair and chown the slave side
1542  * to the uid given.  Assumes slave_name points to >= 12 bytes of space.
1543  */
1544 int
1545 get_pty(master_fdp, slave_fdp, slave_name, uid)
1546     int *master_fdp;
1547     int *slave_fdp;
1548     char *slave_name;
1549     int uid;
1550 {
1551     int i, mfd, sfd;
1552     char pty_name[12];
1553     struct termios tios;
1554
1555     sfd = -1;
1556     for (i = 0; i < 64; ++i) {
1557         slprintf(pty_name, sizeof(pty_name), "/dev/pty%c%x",
1558                  'p' + i / 16, i % 16);
1559         mfd = open(pty_name, O_RDWR, 0);
1560         if (mfd >= 0) {
1561             pty_name[5] = 't';
1562             sfd = open(pty_name, O_RDWR | O_NOCTTY, 0);
1563             if (sfd >= 0)
1564                 break;
1565             close(mfd);
1566         }
1567     }
1568     if (sfd < 0)
1569         return 0;
1570
1571     strlcpy(slave_name, pty_name, 12);
1572     *master_fdp = mfd;
1573     *slave_fdp = sfd;
1574     fchown(sfd, uid, -1);
1575     fchmod(sfd, S_IRUSR | S_IWUSR);
1576     if (tcgetattr(sfd, &tios) == 0) {
1577         tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB);
1578         tios.c_cflag |= CS8 | CREAD;
1579         tios.c_iflag  = IGNPAR | CLOCAL;
1580         tios.c_oflag  = 0;
1581         tios.c_lflag  = 0;
1582         if (tcsetattr(sfd, TCSAFLUSH, &tios) < 0)
1583             warn("couldn't set attributes on pty: %m");
1584     } else
1585         warn("couldn't get attributes on pty: %m");
1586
1587     return 1;
1588 }
1589
1590 /*
1591  * SunOS doesn't have strtoul :-(
1592  */
1593 unsigned long
1594 strtoul(str, ptr, base)
1595     char *str, **ptr;
1596     int base;
1597 {
1598     return (unsigned long) strtol(str, ptr, base);
1599 }
1600
1601 /*
1602  * Or strerror :-(
1603  */
1604 extern char *sys_errlist[];
1605 extern int sys_nerr;
1606
1607 char *
1608 strerror(n)
1609     int n;
1610 {
1611     static char unknown[32];
1612
1613     if (n > 0 && n < sys_nerr)
1614         return sys_errlist[n];
1615     slprintf(unknown, sizeof(unknown), "Error %d", n);
1616     return unknown;
1617 }