]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/sliplogin/sliplogin.c
This commit was generated by cvs2svn to compensate for changes in r98005,
[FreeBSD/FreeBSD.git] / usr.sbin / sliplogin / sliplogin.c
1 /*-
2  * Copyright (c) 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static char copyright[] =
36 "@(#) Copyright (c) 1990, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 static char sccsid[] = "@(#)sliplogin.c 8.2 (Berkeley) 2/1/94";
42 static char rscid[] = "@(#)$FreeBSD$";
43 #endif /* not lint */
44
45 /*
46  * sliplogin.c
47  * [MUST BE RUN SUID, SLOPEN DOES A SUSER()!]
48  *
49  * This program initializes its own tty port to be an async TCP/IP interface.
50  * It sets the line discipline to slip, invokes a shell script to initialize
51  * the network interface, then pauses forever waiting for hangup.
52  *
53  * It is a remote descendant of several similar programs with incestuous ties:
54  * - Kirk Smith's slipconf, modified by Richard Johnsson @ DEC WRL.
55  * - slattach, probably by Rick Adams but touched by countless hordes.
56  * - the original sliplogin for 4.2bsd, Doug Kingston the mover behind it.
57  *
58  * There are two forms of usage:
59  *
60  * "sliplogin"
61  * Invoked simply as "sliplogin", the program looks up the username
62  * in the file /etc/slip.hosts.
63  * If an entry is found, the line on fd0 is configured for SLIP operation
64  * as specified in the file.
65  *
66  * "sliplogin IPhostlogin </dev/ttyb"
67  * Invoked by root with a username, the name is looked up in the
68  * /etc/slip.hosts file and if found fd0 is configured as in case 1.
69  */
70
71 #include <sys/param.h>
72 #include <sys/socket.h>
73 #include <sys/file.h>
74 #include <sys/stat.h>
75 #include <syslog.h>
76 #include <netdb.h>
77
78 #include <termios.h>
79 #include <sys/ioctl.h>
80 #include <net/slip.h>
81 #include <net/if.h>
82
83 #include <stdio.h>
84 #include <errno.h>
85 #include <ctype.h>
86 #include <paths.h>
87 #include <string.h>
88 #include <unistd.h>
89 #include <stdlib.h>
90 #include <signal.h>
91 #include "pathnames.h"
92
93 extern char **environ;
94
95 static char *restricted_environ[] = {
96         "PATH=" _PATH_STDPATH,
97         NULL
98 };
99
100 int     unit;
101 int     slip_mode;
102 speed_t speed;
103 int     uid;
104 int     keepal;
105 int     outfill;
106 int     slunit;
107 char    loginargs[BUFSIZ];
108 char    loginfile[MAXPATHLEN];
109 char    loginname[BUFSIZ];
110 static char raddr[32];                  /* remote address */
111 char ifname[IFNAMSIZ];                  /* interface name */
112 static  char pidfilename[MAXPATHLEN];   /* name of pid file */
113 static  char iffilename[MAXPATHLEN];    /* name of if file */
114 static  pid_t   pid;                    /* our pid */
115
116 char *
117 make_ipaddr(void)
118 {
119 static char address[20] ="";
120 struct hostent *he;
121 unsigned long ipaddr;
122
123 address[0] = '\0';
124 if ((he = gethostbyname(raddr)) != NULL) {
125         ipaddr = ntohl(*(long *)he->h_addr_list[0]);
126         sprintf(address, "%lu.%lu.%lu.%lu",
127                 ipaddr >> 24,
128                 (ipaddr & 0x00ff0000) >> 16,
129                 (ipaddr & 0x0000ff00) >> 8,
130                 (ipaddr & 0x000000ff));
131         }
132
133 return address;
134 }
135
136 struct slip_modes {
137         char    *sm_name;
138         int     sm_or_flag;
139         int     sm_and_flag;
140 }        modes[] = {
141         "normal",       0        , 0        ,
142         "compress",     IFF_LINK0, IFF_LINK2,
143         "noicmp",       IFF_LINK1, 0        ,
144         "autocomp",     IFF_LINK2, IFF_LINK0,
145 };
146
147 void
148 findid(name)
149         char *name;
150 {
151         FILE *fp;
152         static char slopt[5][16];
153         static char laddr[16];
154         static char mask[16];
155         char   slparmsfile[MAXPATHLEN];
156         char user[16];
157         char buf[128];
158         int i, j, n;
159
160         environ = restricted_environ; /* minimal protection for system() */
161
162         (void)strncpy(loginname, name, sizeof(loginname)-1);
163         loginname[sizeof(loginname)-1] = '\0';
164
165         if ((fp = fopen(_PATH_ACCESS, "r")) == NULL) {
166         accfile_err:
167                 syslog(LOG_ERR, "%s: %m\n", _PATH_ACCESS);
168                 exit(1);
169         }
170         while (fgets(loginargs, sizeof(loginargs) - 1, fp)) {
171                 if (ferror(fp))
172                         goto accfile_err;
173                 if (loginargs[0] == '#' || isspace(loginargs[0]))
174                         continue;
175                 n = sscanf(loginargs, "%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s%*[ \t]%15s\n",
176                         user, laddr, raddr, mask, slopt[0], slopt[1],
177                         slopt[2], slopt[3], slopt[4]);
178                 if (n < 4) {
179                         syslog(LOG_ERR, "%s: wrong format\n", _PATH_ACCESS);
180                         exit(1);
181                 }
182                 if (strcmp(user, name) != 0)
183                         continue;
184
185                 (void) fclose(fp);
186
187                 slip_mode = 0;
188                 for (i = 0; i < n - 4; i++) {
189                         for (j = 0; j < sizeof(modes)/sizeof(struct slip_modes);
190                                 j++) {
191                                 if (strcmp(modes[j].sm_name, slopt[i]) == 0) {
192                                         slip_mode |= (modes[j].sm_or_flag);
193                                         slip_mode &= ~(modes[j].sm_and_flag);
194                                         break;
195                                 }
196                         }
197                 }
198
199                 /*
200                  * we've found the guy we're looking for -- see if
201                  * there's a login file we can use.  First check for
202                  * one specific to this host.  If none found, try for
203                  * a generic one.
204                  */
205                 (void)snprintf(loginfile, sizeof(loginfile), "%s.%s", 
206                     _PATH_SLIP_LOGIN, name);
207                 if (access(loginfile, R_OK|X_OK) != 0) {
208                         (void)strncpy(loginfile, _PATH_SLIP_LOGIN,
209                             sizeof(loginfile) - 1);
210                         loginfile[sizeof(loginfile) - 1] = '\0';
211                         if (access(loginfile, R_OK|X_OK)) {
212                                 syslog(LOG_ERR,
213                                        "access denied for %s - no %s\n",
214                                        name, _PATH_SLIP_LOGIN);
215                                 exit(5);
216                         }
217                 }
218                 (void)snprintf(slparmsfile, sizeof(slparmsfile), "%s.%s", _PATH_SLPARMS, name);
219                 if (access(slparmsfile, R_OK|X_OK) != 0) {
220                         (void)strncpy(slparmsfile, _PATH_SLPARMS, sizeof(slparmsfile)-1);
221                         slparmsfile[sizeof(slparmsfile)-1] = '\0';
222                         if (access(slparmsfile, R_OK|X_OK))
223                                 *slparmsfile = '\0';
224                 }
225                 keepal = outfill = 0;
226                 slunit = -1;
227                 if (*slparmsfile) {
228                         if ((fp = fopen(slparmsfile, "r")) == NULL) {
229                         slfile_err:
230                                 syslog(LOG_ERR, "%s: %m\n", slparmsfile);
231                                 exit(1);
232                         }
233                         n = 0;
234                         while (fgets(buf, sizeof(buf) - 1, fp) != NULL) {
235                                 if (ferror(fp))
236                                         goto slfile_err;
237                                 if (buf[0] == '#' || isspace(buf[0]))
238                                         continue;
239                                 n = sscanf(buf, "%d %d %d", &keepal, &outfill, &slunit);
240                                 if (n < 1) {
241                                 slwrong_fmt:
242                                         syslog(LOG_ERR, "%s: wrong format\n", slparmsfile);
243                                         exit(1);
244                                 }
245                                 (void) fclose(fp);
246                                 break;
247                         }
248                         if (n == 0)
249                                 goto slwrong_fmt;
250                 }
251
252                 return;
253         }
254         syslog(LOG_ERR, "SLIP access denied for %s\n", name);
255         exit(4);
256         /* NOTREACHED */
257 }
258
259 char *
260 sigstr(s)
261         int s;
262 {
263         static char buf[32];
264
265         switch (s) {
266         case SIGHUP:    return("HUP");
267         case SIGINT:    return("INT");
268         case SIGQUIT:   return("QUIT");
269         case SIGILL:    return("ILL");
270         case SIGTRAP:   return("TRAP");
271         case SIGIOT:    return("IOT");
272         case SIGEMT:    return("EMT");
273         case SIGFPE:    return("FPE");
274         case SIGKILL:   return("KILL");
275         case SIGBUS:    return("BUS");
276         case SIGSEGV:   return("SEGV");
277         case SIGSYS:    return("SYS");
278         case SIGPIPE:   return("PIPE");
279         case SIGALRM:   return("ALRM");
280         case SIGTERM:   return("TERM");
281         case SIGURG:    return("URG");
282         case SIGSTOP:   return("STOP");
283         case SIGTSTP:   return("TSTP");
284         case SIGCONT:   return("CONT");
285         case SIGCHLD:   return("CHLD");
286         case SIGTTIN:   return("TTIN");
287         case SIGTTOU:   return("TTOU");
288         case SIGIO:     return("IO");
289         case SIGXCPU:   return("XCPU");
290         case SIGXFSZ:   return("XFSZ");
291         case SIGVTALRM: return("VTALRM");
292         case SIGPROF:   return("PROF");
293         case SIGWINCH:  return("WINCH");
294 #ifdef SIGLOST
295         case SIGLOST:   return("LOST");
296 #endif
297         case SIGUSR1:   return("USR1");
298         case SIGUSR2:   return("USR2");
299         }
300         (void)snprintf(buf, sizeof(buf), "sig %d", s);
301         return(buf);
302 }
303
304 void
305 hup_handler(s)
306         int s;
307 {
308         char logoutfile[MAXPATHLEN];
309
310         (void) close(0);
311         seteuid(0);
312         (void)snprintf(logoutfile, sizeof(logoutfile), "%s.%s",
313             _PATH_SLIP_LOGOUT, loginname);
314         if (access(logoutfile, R_OK|X_OK) != 0) {
315                 (void)strncpy(logoutfile, _PATH_SLIP_LOGOUT,
316                     sizeof(logoutfile) - 1);
317                 logoutfile[sizeof(logoutfile) - 1] = '\0';
318         }
319         if (access(logoutfile, R_OK|X_OK) == 0) {
320                 char logincmd[2*MAXPATHLEN+32];
321
322                 (void) snprintf(logincmd, sizeof(logincmd), "%s %d %ld %s", logoutfile, unit, speed, loginargs);
323                 (void) system(logincmd);
324         }
325         syslog(LOG_INFO, "closed %s slip unit %d (%s)\n", loginname, unit,
326                sigstr(s));
327         if (unlink(pidfilename) < 0 && errno != ENOENT)
328                 syslog(LOG_WARNING, "unable to delete pid file: %m");
329         if (unlink(iffilename) < 0 && errno != ENOENT)
330                 syslog(LOG_WARNING, "unable to delete if file: %m");
331         exit(1);
332         /* NOTREACHED */
333 }
334
335
336 /* Modify the slip line mode and add any compression or no-icmp flags. */
337 void line_flags(unit)
338         int unit;
339 {
340         struct ifreq ifr;
341         int s;
342
343         /* open a socket as the handle to the interface */
344         s = socket(AF_INET, SOCK_DGRAM, 0);
345         if (s < 0) {
346                 syslog(LOG_ERR, "socket: %m");
347                 exit(1);
348         }
349         sprintf(ifr.ifr_name, "sl%d", unit);
350
351         /* get the flags for the interface */
352         if (ioctl(s, SIOCGIFFLAGS, (caddr_t)&ifr) < 0) {
353                 syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
354                 exit(1);
355         }
356
357         /* Assert any compression or no-icmp flags. */
358 #define SLMASK (~(IFF_LINK0 | IFF_LINK1 | IFF_LINK2))
359         ifr.ifr_flags &= SLMASK;
360         ifr.ifr_flags |= slip_mode;
361         if (ioctl(s, SIOCSIFFLAGS, (caddr_t)&ifr) < 0) {
362                 syslog(LOG_ERR, "ioctl (SIOCSIFFLAGS): %m");
363                 exit(1);
364         }
365         close(s);
366 }
367
368
369 main(argc, argv)
370         int argc;
371         char *argv[];
372 {
373         int fd, s, ldisc;
374         char *name;
375         struct termios tios, otios;
376         char logincmd[2*BUFSIZ+32];
377         extern uid_t getuid();
378
379         FILE *pidfile;                          /* pid file */
380         FILE *iffile;                           /* interfaces file */
381         char *p;
382         int n;
383         char devnam[MAXPATHLEN] = _PATH_TTY;   /* Device name */
384
385         if ((name = strrchr(argv[0], '/')) == NULL)
386                 name = argv[0];
387         s = getdtablesize();
388         for (fd = 3 ; fd < s ; fd++)
389                 (void) close(fd);
390         openlog(name, LOG_PID|LOG_PERROR, LOG_DAEMON);
391         uid = getuid();
392         if (argc > 1) {
393                 findid(argv[1]);
394
395                 /*
396                  * Disassociate from current controlling terminal, if any,
397                  * and ensure that the slip line is our controlling terminal.
398                  */
399                 if (daemon(1, 1)) {
400                         syslog(LOG_ERR, "daemon(1, 1): %m");
401                         exit(1);
402                 }
403                 if (argc > 2) {
404                         if ((fd = open(argv[2], O_RDWR)) == -1) {
405                                 syslog(LOG_ERR, "open %s: %m", argv[2]);
406                                 exit(2);
407                         }
408                         (void) dup2(fd, 0);
409                         if (fd > 2)
410                                 close(fd);
411                 }
412                 if (ioctl(0, TIOCSCTTY, 0) == -1) {
413                         syslog(LOG_ERR, "ioctl (TIOCSCTTY): %m");
414                         exit(1);
415                 }
416                 if (tcsetpgrp(0, getpid()) < 0) {
417                         syslog(LOG_ERR, "tcsetpgrp failed: %m");
418                         exit(1);
419                 }
420         } else {
421                 if ((name = getlogin()) == NULL) {
422                         syslog(LOG_ERR, "access denied - login name not found\n");
423                         exit(1);
424                 }
425                 findid(name);
426         }
427         (void) fchmod(0, 0600);
428         (void) fprintf(stderr, "starting slip login for %s\n", loginname);
429         (void) fprintf(stderr, "your address is %s\n\n", make_ipaddr());
430
431         (void) fflush(stderr);
432         sleep(1);
433
434         /* set up the line parameters */
435         if (tcgetattr(0, &tios) < 0) {
436                 syslog(LOG_ERR, "tcgetattr: %m");
437                 exit(1);
438         }
439         otios = tios;
440         cfmakeraw(&tios);
441         if (tcsetattr(0, TCSAFLUSH, &tios) < 0) {
442                 syslog(LOG_ERR, "tcsetattr: %m");
443                 exit(1);
444         }
445         speed = cfgetispeed(&tios);
446
447         ldisc = SLIPDISC;
448         if (ioctl(0, TIOCSETD, &ldisc) < 0) {
449                 syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
450                 exit(1);
451         }
452         if (slunit >= 0 && ioctl(0, SLIOCSUNIT, &slunit) < 0) {
453                 syslog(LOG_ERR, "ioctl (SLIOCSUNIT): %m");
454                 exit(1);
455         }
456         /* find out what unit number we were assigned */
457         if (ioctl(0, SLIOCGUNIT, &unit) < 0) {
458                 syslog(LOG_ERR, "ioctl (SLIOCGUNIT): %m");
459                 exit(1);
460         }
461         (void) signal(SIGHUP, hup_handler);
462         (void) signal(SIGTERM, hup_handler);
463
464         if (keepal > 0) {
465                 (void) signal(SIGURG, hup_handler);
466                 if (ioctl(0, SLIOCSKEEPAL, &keepal) < 0) {
467                         syslog(LOG_ERR, "ioctl(SLIOCSKEEPAL): %m");
468                         exit(1);
469                 }
470         }
471         if (outfill > 0 && ioctl(0, SLIOCSOUTFILL, &outfill) < 0) {
472                 syslog(LOG_ERR, "ioctl(SLIOCSOUTFILL): %m");
473                 exit(1);
474         }
475
476         /* write pid to file */
477         pid = getpid();
478         (void) sprintf(ifname, "sl%d", unit);
479         (void) sprintf(pidfilename, "%s%s.pid", _PATH_VARRUN, ifname);
480         if ((pidfile = fopen(pidfilename, "w")) != NULL) {
481                 fprintf(pidfile, "%d\n", pid);
482                 (void) fclose(pidfile);
483         } else {
484                 syslog(LOG_ERR, "Failed to create pid file %s: %m",
485                                 pidfilename);
486                 pidfilename[0] = 0;
487         }
488
489         /* write interface unit number to file */
490         p = ttyname(0);
491         if (p)
492                 strcpy(devnam, p);
493         for (n = strlen(devnam); n > 0; n--) 
494                 if (devnam[n] == '/') {
495                         n++;
496                         break;
497                 }
498         (void) sprintf(iffilename, "%s%s.if", _PATH_VARRUN, &devnam[n]);
499         if ((iffile = fopen(iffilename, "w")) != NULL) {
500                 fprintf(iffile, "sl%d\n", unit); 
501                 (void) fclose(iffile);
502         } else {
503                 syslog(LOG_ERR, "Failed to create if file %s: %m", iffilename);
504                 iffilename[0] = 0;  
505         }
506
507
508         syslog(LOG_INFO, "attaching slip unit %d for %s\n", unit, loginname);
509         (void)snprintf(logincmd, sizeof(logincmd), "%s %d %ld %s", loginfile, unit, speed,
510                       loginargs);
511         /*
512          * aim stdout and errout at /dev/null so logincmd output won't
513          * babble into the slip tty line.
514          */
515         (void) close(1);
516         if ((fd = open(_PATH_DEVNULL, O_WRONLY)) != 1) {
517                 if (fd < 0) {
518                         syslog(LOG_ERR, "open %s: %m", _PATH_DEVNULL);
519                         exit(1);
520                 }
521                 (void) dup2(fd, 1);
522                 (void) close(fd);
523         }
524         (void) dup2(1, 2);
525
526         /*
527          * Run login and logout scripts as root (real and effective);
528          * current route(8) is setuid root, and checks the real uid
529          * to see whether changes are allowed (or just "route get").
530          */
531         (void) setuid(0);
532         if (s = system(logincmd)) {
533                 syslog(LOG_ERR, "%s login failed: exit status %d from %s",
534                        loginname, s, loginfile);
535                 exit(6);
536         }
537
538         /* Handle any compression or no-icmp flags. */
539         line_flags(unit);
540
541         /* reset uid to users' to allow the user to give a signal. */
542         seteuid(uid);
543         /* twiddle thumbs until we get a signal */
544         while (1)
545                 sigpause(0);
546
547         /* NOTREACHED */
548 }