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