Home | History | Annotate | Line # | Download | only in lpd
lpd.c revision 1.22.4.2
      1  1.22.4.2    jhawk /*	$NetBSD: lpd.c,v 1.22.4.2 2001/10/26 18:04:35 jhawk Exp $	*/
      2       1.7      mrg 
      3       1.1      cgd /*
      4       1.4      cgd  * Copyright (c) 1983, 1993, 1994
      5       1.4      cgd  *	The Regents of the University of California.  All rights reserved.
      6       1.4      cgd  *
      7       1.1      cgd  *
      8       1.1      cgd  * Redistribution and use in source and binary forms, with or without
      9       1.1      cgd  * modification, are permitted provided that the following conditions
     10       1.1      cgd  * are met:
     11       1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     12       1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     13       1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     15       1.1      cgd  *    documentation and/or other materials provided with the distribution.
     16       1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     17       1.1      cgd  *    must display the following acknowledgement:
     18       1.1      cgd  *	This product includes software developed by the University of
     19       1.1      cgd  *	California, Berkeley and its contributors.
     20       1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     21       1.1      cgd  *    may be used to endorse or promote products derived from this software
     22       1.1      cgd  *    without specific prior written permission.
     23       1.1      cgd  *
     24       1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1      cgd  * SUCH DAMAGE.
     35       1.1      cgd  */
     36       1.1      cgd 
     37      1.11    mikel #include <sys/cdefs.h>
     38      1.11    mikel 
     39       1.1      cgd #ifndef lint
     40      1.11    mikel __COPYRIGHT("@(#) Copyright (c) 1983, 1993, 1994\n\
     41      1.11    mikel 	The Regents of the University of California.  All rights reserved.\n");
     42       1.1      cgd #endif /* not lint */
     43       1.1      cgd 
     44       1.1      cgd #ifndef lint
     45      1.10    mikel #if 0
     46      1.12      mrg static char sccsid[] = "@(#)lpd.c	8.7 (Berkeley) 5/10/95";
     47      1.10    mikel #else
     48  1.22.4.2    jhawk __RCSID("$NetBSD: lpd.c,v 1.22.4.2 2001/10/26 18:04:35 jhawk Exp $");
     49      1.10    mikel #endif
     50       1.1      cgd #endif /* not lint */
     51       1.1      cgd 
     52       1.1      cgd /*
     53       1.1      cgd  * lpd -- line printer daemon.
     54       1.1      cgd  *
     55       1.1      cgd  * Listen for a connection and perform the requested operation.
     56       1.1      cgd  * Operations are:
     57       1.1      cgd  *	\1printer\n
     58       1.1      cgd  *		check the queue for jobs and print any found.
     59       1.1      cgd  *	\2printer\n
     60       1.1      cgd  *		receive a job from another machine and queue it.
     61       1.1      cgd  *	\3printer [users ...] [jobs ...]\n
     62       1.1      cgd  *		return the current state of the queue (short form).
     63       1.1      cgd  *	\4printer [users ...] [jobs ...]\n
     64       1.1      cgd  *		return the current state of the queue (long form).
     65       1.1      cgd  *	\5printer person [users ...] [jobs ...]\n
     66       1.1      cgd  *		remove jobs from the queue.
     67       1.1      cgd  *
     68       1.1      cgd  * Strategy to maintain protected spooling area:
     69       1.1      cgd  *	1. Spooling area is writable only by daemon and spooling group
     70       1.1      cgd  *	2. lpr runs setuid root and setgrp spooling group; it uses
     71       1.1      cgd  *	   root to access any file it wants (verifying things before
     72       1.1      cgd  *	   with an access call) and group id to know how it should
     73       1.1      cgd  *	   set up ownership of files in the spooling area.
     74       1.1      cgd  *	3. Files in spooling area are owned by root, group spooling
     75       1.1      cgd  *	   group, with mode 660.
     76       1.1      cgd  *	4. lpd, lpq and lprm run setuid daemon and setgrp spooling group to
     77       1.1      cgd  *	   access files and printer.  Users can't get to anything
     78       1.1      cgd  *	   w/o help of lpq and lprm programs.
     79       1.1      cgd  */
     80       1.1      cgd 
     81       1.4      cgd #include <sys/param.h>
     82       1.4      cgd #include <sys/wait.h>
     83       1.4      cgd #include <sys/types.h>
     84       1.4      cgd #include <sys/socket.h>
     85       1.4      cgd #include <sys/un.h>
     86       1.4      cgd #include <sys/stat.h>
     87      1.12      mrg #include <sys/file.h>
     88       1.4      cgd #include <netinet/in.h>
     89       1.4      cgd 
     90      1.18      mrg #include <err.h>
     91       1.4      cgd #include <netdb.h>
     92       1.4      cgd #include <unistd.h>
     93       1.4      cgd #include <syslog.h>
     94       1.4      cgd #include <signal.h>
     95       1.4      cgd #include <errno.h>
     96       1.4      cgd #include <fcntl.h>
     97       1.4      cgd #include <dirent.h>
     98       1.4      cgd #include <stdio.h>
     99       1.4      cgd #include <stdlib.h>
    100       1.4      cgd #include <string.h>
    101       1.4      cgd #include <ctype.h>
    102      1.11    mikel #include <arpa/inet.h>
    103      1.11    mikel 
    104       1.1      cgd #include "lp.h"
    105       1.4      cgd #include "lp.local.h"
    106       1.1      cgd #include "pathnames.h"
    107       1.4      cgd #include "extern.h"
    108       1.1      cgd 
    109      1.21   itojun /* XXX from libc/net/rcmd.c */
    110      1.21   itojun extern int __ivaliduser_sa __P((FILE *, struct sockaddr *, socklen_t,
    111      1.21   itojun 		const char *, const char *));
    112      1.21   itojun 
    113       1.1      cgd int	lflag;				/* log requests flag */
    114      1.18      mrg int	rflag;				/* allow of for remote printers */
    115       1.8    perry int	sflag;				/* secure (no inet) flag */
    116       1.1      cgd int	from_remote;			/* from remote socket */
    117       1.1      cgd 
    118      1.11    mikel int               main __P((int, char **));
    119       1.4      cgd static void       reapchild __P((int));
    120       1.4      cgd static void       mcleanup __P((int));
    121       1.4      cgd static void       doit __P((void));
    122       1.4      cgd static void       startup __P((void));
    123      1.20   itojun static void       chkhost __P((struct sockaddr *));
    124      1.12      mrg static int	  ckqueue __P((char *));
    125      1.13      mrg static void	  usage __P((void));
    126      1.20   itojun static int	  *socksetup __P((int, int));
    127       1.1      cgd 
    128       1.5  hpeyerl uid_t	uid, euid;
    129      1.18      mrg int child_count;
    130       1.5  hpeyerl 
    131       1.4      cgd int
    132       1.1      cgd main(argc, argv)
    133       1.1      cgd 	int argc;
    134       1.1      cgd 	char **argv;
    135       1.1      cgd {
    136       1.4      cgd 	fd_set defreadfds;
    137       1.4      cgd 	struct sockaddr_un un, fromunix;
    138      1.20   itojun 	struct sockaddr_storage frominet;
    139      1.22      mrg 	sigset_t nmask, omask;
    140      1.22      mrg 	int lfd, errs, i, f, funix, *finet;
    141      1.18      mrg 	int child_max = 32;	/* more then enough to hose the system */
    142      1.22      mrg 	int options = 0;
    143      1.22      mrg 	struct servent *sp, serv;
    144       1.1      cgd 
    145       1.5  hpeyerl 	euid = geteuid();	/* these shouldn't be different */
    146       1.5  hpeyerl 	uid = getuid();
    147       1.1      cgd 	gethostname(host, sizeof(host));
    148      1.16      mrg 	host[sizeof(host) - 1] = '\0';
    149       1.1      cgd 	name = argv[0];
    150       1.1      cgd 
    151      1.13      mrg 	errs = 0;
    152      1.18      mrg 	while ((i = getopt(argc, argv, "dln:srw:")) != -1)
    153      1.13      mrg 		switch (i) {
    154      1.13      mrg 		case 'd':
    155      1.13      mrg 			options |= SO_DEBUG;
    156      1.13      mrg 			break;
    157      1.13      mrg 		case 'l':
    158      1.13      mrg 			lflag++;
    159      1.14      mrg 			break;
    160      1.18      mrg 		case 'n':
    161      1.18      mrg 			child_max = atoi(optarg);
    162      1.18      mrg 			if (child_max < 0 || child_max > 1024)
    163      1.18      mrg 				errx(1, "invalid number of children: %s",
    164      1.18      mrg 				    optarg);
    165      1.18      mrg 			break;
    166      1.18      mrg 		case 'r':
    167      1.18      mrg 			rflag++;
    168      1.18      mrg 			break;
    169      1.14      mrg 		case 's':
    170      1.14      mrg 			sflag++;
    171      1.13      mrg 			break;
    172      1.18      mrg 		case 'w':
    173      1.18      mrg 			wait_time = atoi(optarg);
    174      1.18      mrg 			if (wait_time < 0)
    175      1.18      mrg 				errx(1, "wait time must be postive: %s",
    176      1.18      mrg 				    optarg);
    177      1.18      mrg 			if (wait_time < 30)
    178      1.18      mrg 			    warnx("warning: wait time less than 30 seconds");
    179      1.18      mrg 			break;
    180      1.13      mrg 		default:
    181      1.13      mrg 			errs++;
    182      1.13      mrg 		}
    183      1.13      mrg 	argc -= optind;
    184      1.13      mrg 	argv += optind;
    185      1.22      mrg 	if (errs)
    186      1.13      mrg 		usage();
    187       1.1      cgd 
    188      1.22      mrg 	switch (argc) {
    189      1.22      mrg 	case 1:
    190      1.22      mrg 		if ((i = atoi(argv[0])) == 0)
    191      1.22      mrg 			usage();
    192      1.22      mrg 		if (i < 0 || i > USHRT_MAX)
    193      1.22      mrg 			errx(1, "port # %d is invalid", i);
    194      1.22      mrg 
    195      1.22      mrg 		serv.s_port = htons(i);
    196      1.22      mrg 		sp = &serv;
    197      1.22      mrg 		break;
    198      1.22      mrg 	case 0:
    199      1.22      mrg 		sp = getservbyname("printer", "tcp");
    200      1.22      mrg 		if (sp == NULL)
    201      1.22      mrg 			errx(1, "printer/tcp: unknown service");
    202      1.22      mrg 		break;
    203      1.22      mrg 	default:
    204      1.22      mrg 		usage();
    205      1.22      mrg 	}
    206      1.22      mrg 
    207       1.1      cgd #ifndef DEBUG
    208       1.1      cgd 	/*
    209       1.1      cgd 	 * Set up standard environment by detaching from the parent.
    210       1.1      cgd 	 */
    211       1.1      cgd 	daemon(0, 0);
    212       1.1      cgd #endif
    213       1.1      cgd 
    214       1.1      cgd 	openlog("lpd", LOG_PID, LOG_LPR);
    215       1.4      cgd 	syslog(LOG_INFO, "restarted");
    216       1.9      mrg 	(void)umask(0);
    217       1.1      cgd 	lfd = open(_PATH_MASTERLOCK, O_WRONLY|O_CREAT, 0644);
    218       1.1      cgd 	if (lfd < 0) {
    219       1.1      cgd 		syslog(LOG_ERR, "%s: %m", _PATH_MASTERLOCK);
    220       1.1      cgd 		exit(1);
    221       1.1      cgd 	}
    222       1.1      cgd 	if (flock(lfd, LOCK_EX|LOCK_NB) < 0) {
    223       1.1      cgd 		if (errno == EWOULDBLOCK)	/* active deamon present */
    224       1.1      cgd 			exit(0);
    225       1.1      cgd 		syslog(LOG_ERR, "%s: %m", _PATH_MASTERLOCK);
    226       1.1      cgd 		exit(1);
    227       1.1      cgd 	}
    228       1.1      cgd 	ftruncate(lfd, 0);
    229       1.1      cgd 	/*
    230       1.1      cgd 	 * write process id for others to know
    231       1.1      cgd 	 */
    232       1.9      mrg 	(void)snprintf(line, sizeof(line), "%u\n", getpid());
    233       1.1      cgd 	f = strlen(line);
    234       1.1      cgd 	if (write(lfd, line, f) != f) {
    235       1.1      cgd 		syslog(LOG_ERR, "%s: %m", _PATH_MASTERLOCK);
    236       1.1      cgd 		exit(1);
    237       1.1      cgd 	}
    238       1.1      cgd 	signal(SIGCHLD, reapchild);
    239       1.1      cgd 	/*
    240       1.1      cgd 	 * Restart all the printers.
    241       1.1      cgd 	 */
    242       1.1      cgd 	startup();
    243       1.9      mrg 	(void)unlink(_PATH_SOCKETNAME);
    244      1.17    lukem 	funix = socket(AF_LOCAL, SOCK_STREAM, 0);
    245       1.1      cgd 	if (funix < 0) {
    246       1.1      cgd 		syslog(LOG_ERR, "socket: %m");
    247       1.1      cgd 		exit(1);
    248       1.1      cgd 	}
    249      1.22      mrg 
    250      1.22      mrg 	sigemptyset(&nmask);
    251      1.22      mrg 	sigaddset(&nmask, SIGHUP);
    252      1.22      mrg 	sigaddset(&nmask, SIGINT);
    253      1.22      mrg 	sigaddset(&nmask, SIGQUIT);
    254      1.22      mrg 	sigaddset(&nmask, SIGTERM);
    255      1.22      mrg 	sigprocmask(SIG_BLOCK, &nmask, &omask);
    256      1.22      mrg 
    257      1.22      mrg 	(void) umask(07);
    258       1.1      cgd 	signal(SIGHUP, mcleanup);
    259       1.1      cgd 	signal(SIGINT, mcleanup);
    260       1.1      cgd 	signal(SIGQUIT, mcleanup);
    261       1.1      cgd 	signal(SIGTERM, mcleanup);
    262       1.4      cgd 	memset(&un, 0, sizeof(un));
    263      1.17    lukem 	un.sun_family = AF_LOCAL;
    264       1.9      mrg 	strncpy(un.sun_path, _PATH_SOCKETNAME, sizeof(un.sun_path) - 1);
    265       1.4      cgd #ifndef SUN_LEN
    266       1.4      cgd #define SUN_LEN(unp) (strlen((unp)->sun_path) + 2)
    267       1.4      cgd #endif
    268       1.4      cgd 	if (bind(funix, (struct sockaddr *)&un, SUN_LEN(&un)) < 0) {
    269       1.1      cgd 		syslog(LOG_ERR, "ubind: %m");
    270       1.1      cgd 		exit(1);
    271       1.1      cgd 	}
    272      1.22      mrg 	(void) umask(0);
    273      1.22      mrg 	sigprocmask(SIG_SETMASK, &omask, (sigset_t *)0);
    274       1.4      cgd 	FD_ZERO(&defreadfds);
    275       1.4      cgd 	FD_SET(funix, &defreadfds);
    276       1.1      cgd 	listen(funix, 5);
    277       1.8    perry 	if (!sflag)
    278      1.20   itojun 		finet = socksetup(PF_UNSPEC, options);
    279       1.8    perry 	else
    280      1.20   itojun 		finet = NULL;	/* pretend we couldn't open TCP socket. */
    281       1.1      cgd 
    282      1.20   itojun 	if (finet) {
    283      1.20   itojun 		for (i = 1; i <= *finet; i++) {
    284      1.20   itojun 			FD_SET(finet[i], &defreadfds);
    285      1.20   itojun 			listen(finet[i], 5);
    286       1.1      cgd 		}
    287       1.1      cgd 	}
    288       1.1      cgd 	/*
    289       1.1      cgd 	 * Main loop: accept, do a request, continue.
    290       1.1      cgd 	 */
    291       1.4      cgd 	memset(&frominet, 0, sizeof(frominet));
    292       1.4      cgd 	memset(&fromunix, 0, sizeof(fromunix));
    293       1.1      cgd 	for (;;) {
    294      1.22      mrg 		int domain, nfds, s, fromlen;
    295       1.4      cgd 		fd_set readfds;
    296      1.18      mrg 		/* "short" so it overflows in about 2 hours */
    297      1.18      mrg 		short sleeptime = 10;
    298      1.18      mrg 
    299      1.18      mrg 		while (child_max < child_count) {
    300      1.18      mrg 			syslog(LOG_WARNING,
    301      1.18      mrg 			    "too many children, sleeping for %d seconds",
    302      1.18      mrg 				sleeptime);
    303      1.18      mrg 			sleep(sleeptime);
    304      1.18      mrg 			sleeptime <<= 1;
    305      1.18      mrg 			if (sleeptime < 0) {
    306      1.18      mrg 				syslog(LOG_CRIT, "sleeptime overflowed! help!");
    307      1.18      mrg 				sleeptime = 10;
    308      1.18      mrg 			}
    309      1.18      mrg 		}
    310       1.1      cgd 
    311       1.4      cgd 		FD_COPY(&defreadfds, &readfds);
    312       1.1      cgd 		nfds = select(20, &readfds, 0, 0, 0);
    313       1.1      cgd 		if (nfds <= 0) {
    314       1.1      cgd 			if (nfds < 0 && errno != EINTR)
    315       1.1      cgd 				syslog(LOG_WARNING, "select: %m");
    316       1.1      cgd 			continue;
    317       1.1      cgd 		}
    318       1.4      cgd 		if (FD_ISSET(funix, &readfds)) {
    319      1.22      mrg 			domain = AF_LOCAL;
    320      1.22      mrg 			fromlen = sizeof(fromunix);
    321       1.1      cgd 			s = accept(funix,
    322       1.1      cgd 			    (struct sockaddr *)&fromunix, &fromlen);
    323      1.20   itojun 		} else {
    324      1.20   itojun                         for (i = 1; i <= *finet; i++)
    325      1.20   itojun 				if (FD_ISSET(finet[i], &readfds)) {
    326      1.20   itojun 					domain = AF_INET, fromlen = sizeof(frominet);
    327      1.20   itojun 					s = accept(finet[i], (struct sockaddr *)&frominet, &fromlen);
    328      1.20   itojun 				}
    329       1.1      cgd 		}
    330       1.1      cgd 		if (s < 0) {
    331       1.1      cgd 			if (errno != EINTR)
    332       1.1      cgd 				syslog(LOG_WARNING, "accept: %m");
    333       1.1      cgd 			continue;
    334       1.1      cgd 		}
    335      1.18      mrg 
    336      1.18      mrg 		switch (fork()) {
    337      1.18      mrg 		case 0:
    338       1.1      cgd 			signal(SIGCHLD, SIG_IGN);
    339       1.1      cgd 			signal(SIGHUP, SIG_IGN);
    340       1.1      cgd 			signal(SIGINT, SIG_IGN);
    341       1.1      cgd 			signal(SIGQUIT, SIG_IGN);
    342       1.1      cgd 			signal(SIGTERM, SIG_IGN);
    343       1.9      mrg 			(void)close(funix);
    344      1.20   itojun 			if (!sflag && finet)
    345      1.20   itojun                         	for (i = 1; i <= *finet; i++)
    346      1.20   itojun 					(void)close(finet[i]);
    347       1.1      cgd 			dup2(s, 1);
    348       1.9      mrg 			(void)close(s);
    349       1.1      cgd 			if (domain == AF_INET) {
    350      1.20   itojun 				/* for both AF_INET and AF_INET6 */
    351       1.1      cgd 				from_remote = 1;
    352      1.20   itojun 				chkhost((struct sockaddr *)&frominet);
    353       1.1      cgd 			} else
    354       1.1      cgd 				from_remote = 0;
    355       1.1      cgd 			doit();
    356       1.1      cgd 			exit(0);
    357      1.18      mrg 		case -1:
    358      1.18      mrg 			syslog(LOG_WARNING, "fork: %m, sleeping for 10 seconds...");
    359      1.18      mrg 			sleep(10);
    360      1.18      mrg 			continue;
    361      1.18      mrg 		default:
    362      1.18      mrg 			child_count++;
    363       1.1      cgd 		}
    364       1.9      mrg 		(void)close(s);
    365       1.1      cgd 	}
    366       1.1      cgd }
    367       1.1      cgd 
    368       1.4      cgd static void
    369       1.4      cgd reapchild(signo)
    370       1.4      cgd 	int signo;
    371       1.1      cgd {
    372       1.1      cgd 	union wait status;
    373       1.1      cgd 
    374       1.1      cgd 	while (wait3((int *)&status, WNOHANG, 0) > 0)
    375      1.18      mrg 		child_count--;
    376       1.1      cgd }
    377       1.1      cgd 
    378       1.4      cgd static void
    379       1.4      cgd mcleanup(signo)
    380       1.4      cgd 	int signo;
    381       1.1      cgd {
    382       1.1      cgd 	if (lflag)
    383       1.1      cgd 		syslog(LOG_INFO, "exiting");
    384       1.1      cgd 	unlink(_PATH_SOCKETNAME);
    385       1.1      cgd 	exit(0);
    386       1.1      cgd }
    387       1.1      cgd 
    388       1.1      cgd /*
    389       1.1      cgd  * Stuff for handling job specifications
    390       1.1      cgd  */
    391       1.1      cgd char	*user[MAXUSERS];	/* users to process */
    392       1.1      cgd int	users;			/* # of users in user array */
    393       1.1      cgd int	requ[MAXREQUESTS];	/* job number of spool entries */
    394       1.1      cgd int	requests;		/* # of spool requests */
    395       1.1      cgd char	*person;		/* name of person doing lprm */
    396       1.1      cgd 
    397      1.20   itojun char	fromb[NI_MAXHOST];	/* buffer for client's machine name */
    398       1.4      cgd char	cbuf[BUFSIZ];		/* command line buffer */
    399       1.1      cgd char	*cmdnames[] = {
    400       1.1      cgd 	"null",
    401       1.1      cgd 	"printjob",
    402       1.1      cgd 	"recvjob",
    403       1.1      cgd 	"displayq short",
    404       1.1      cgd 	"displayq long",
    405       1.1      cgd 	"rmjob"
    406       1.1      cgd };
    407       1.1      cgd 
    408       1.4      cgd static void
    409       1.1      cgd doit()
    410       1.1      cgd {
    411      1.13      mrg 	char *cp;
    412      1.13      mrg 	int n;
    413       1.1      cgd 
    414       1.1      cgd 	for (;;) {
    415       1.1      cgd 		cp = cbuf;
    416       1.1      cgd 		do {
    417       1.1      cgd 			if (cp >= &cbuf[sizeof(cbuf) - 1])
    418       1.1      cgd 				fatal("Command line too long");
    419       1.1      cgd 			if ((n = read(1, cp, 1)) != 1) {
    420       1.1      cgd 				if (n < 0)
    421       1.1      cgd 					fatal("Lost connection");
    422       1.1      cgd 				return;
    423       1.1      cgd 			}
    424       1.1      cgd 		} while (*cp++ != '\n');
    425       1.1      cgd 		*--cp = '\0';
    426       1.1      cgd 		cp = cbuf;
    427       1.1      cgd 		if (lflag) {
    428      1.18      mrg 			if (*cp >= '\1' && *cp <= '\5') {
    429       1.1      cgd 				syslog(LOG_INFO, "%s requests %s %s",
    430      1.10    mikel 					from, cmdnames[(int)*cp], cp+1);
    431      1.18      mrg 				setproctitle("serving %s: %s %s", from,
    432      1.18      mrg 				    cmdnames[(int)*cp], cp+1);
    433      1.18      mrg 			}
    434       1.1      cgd 			else
    435       1.1      cgd 				syslog(LOG_INFO, "bad request (%d) from %s",
    436       1.1      cgd 					*cp, from);
    437       1.1      cgd 		}
    438       1.1      cgd 		switch (*cp++) {
    439       1.1      cgd 		case '\1':	/* check the queue and print any jobs there */
    440       1.1      cgd 			printer = cp;
    441  1.22.4.2    jhawk 			if (*printer == '\0')
    442  1.22.4.2    jhawk 				printer = DEFLP;
    443       1.1      cgd 			printjob();
    444       1.1      cgd 			break;
    445       1.1      cgd 		case '\2':	/* receive files to be queued */
    446       1.1      cgd 			if (!from_remote) {
    447       1.1      cgd 				syslog(LOG_INFO, "illegal request (%d)", *cp);
    448       1.1      cgd 				exit(1);
    449       1.1      cgd 			}
    450       1.1      cgd 			printer = cp;
    451  1.22.4.2    jhawk 			if (*printer == '\0')
    452  1.22.4.2    jhawk 				printer = DEFLP;
    453       1.1      cgd 			recvjob();
    454       1.1      cgd 			break;
    455       1.1      cgd 		case '\3':	/* display the queue (short form) */
    456       1.1      cgd 		case '\4':	/* display the queue (long form) */
    457       1.1      cgd 			printer = cp;
    458  1.22.4.2    jhawk 			if (*printer == '\0')
    459  1.22.4.2    jhawk 				printer = DEFLP;
    460       1.1      cgd 			while (*cp) {
    461       1.1      cgd 				if (*cp != ' ') {
    462       1.1      cgd 					cp++;
    463       1.1      cgd 					continue;
    464       1.1      cgd 				}
    465       1.1      cgd 				*cp++ = '\0';
    466       1.1      cgd 				while (isspace(*cp))
    467       1.1      cgd 					cp++;
    468       1.1      cgd 				if (*cp == '\0')
    469       1.1      cgd 					break;
    470       1.1      cgd 				if (isdigit(*cp)) {
    471       1.1      cgd 					if (requests >= MAXREQUESTS)
    472       1.1      cgd 						fatal("Too many requests");
    473       1.1      cgd 					requ[requests++] = atoi(cp);
    474       1.1      cgd 				} else {
    475       1.1      cgd 					if (users >= MAXUSERS)
    476       1.1      cgd 						fatal("Too many users");
    477       1.1      cgd 					user[users++] = cp;
    478       1.1      cgd 				}
    479       1.1      cgd 			}
    480       1.1      cgd 			displayq(cbuf[0] - '\3');
    481       1.1      cgd 			exit(0);
    482       1.1      cgd 		case '\5':	/* remove a job from the queue */
    483       1.1      cgd 			if (!from_remote) {
    484       1.1      cgd 				syslog(LOG_INFO, "illegal request (%d)", *cp);
    485       1.1      cgd 				exit(1);
    486       1.1      cgd 			}
    487       1.1      cgd 			printer = cp;
    488  1.22.4.2    jhawk 			if (*printer == '\0')
    489  1.22.4.2    jhawk 				printer = DEFLP;
    490       1.1      cgd 			while (*cp && *cp != ' ')
    491       1.1      cgd 				cp++;
    492       1.1      cgd 			if (!*cp)
    493       1.1      cgd 				break;
    494       1.1      cgd 			*cp++ = '\0';
    495       1.1      cgd 			person = cp;
    496       1.1      cgd 			while (*cp) {
    497       1.1      cgd 				if (*cp != ' ') {
    498       1.1      cgd 					cp++;
    499       1.1      cgd 					continue;
    500       1.1      cgd 				}
    501       1.1      cgd 				*cp++ = '\0';
    502       1.1      cgd 				while (isspace(*cp))
    503       1.1      cgd 					cp++;
    504       1.1      cgd 				if (*cp == '\0')
    505       1.1      cgd 					break;
    506       1.1      cgd 				if (isdigit(*cp)) {
    507       1.1      cgd 					if (requests >= MAXREQUESTS)
    508       1.1      cgd 						fatal("Too many requests");
    509       1.1      cgd 					requ[requests++] = atoi(cp);
    510       1.1      cgd 				} else {
    511       1.1      cgd 					if (users >= MAXUSERS)
    512       1.1      cgd 						fatal("Too many users");
    513       1.1      cgd 					user[users++] = cp;
    514       1.1      cgd 				}
    515       1.1      cgd 			}
    516       1.1      cgd 			rmjob();
    517       1.1      cgd 			break;
    518       1.1      cgd 		}
    519       1.1      cgd 		fatal("Illegal service request");
    520       1.1      cgd 	}
    521       1.1      cgd }
    522       1.1      cgd 
    523       1.1      cgd /*
    524       1.1      cgd  * Make a pass through the printcap database and start printing any
    525       1.1      cgd  * files left from the last time the machine went down.
    526       1.1      cgd  */
    527       1.4      cgd static void
    528       1.1      cgd startup()
    529       1.1      cgd {
    530       1.4      cgd 	char *buf;
    531      1.13      mrg 	char *cp;
    532       1.1      cgd 
    533       1.1      cgd 	/*
    534       1.1      cgd 	 * Restart the daemons.
    535       1.1      cgd 	 */
    536       1.4      cgd 	while (cgetnext(&buf, printcapdb) > 0) {
    537      1.12      mrg 		if (ckqueue(buf) <= 0) {
    538      1.12      mrg 			free(buf);
    539      1.12      mrg 			continue;	/* no work to do for this printer */
    540      1.12      mrg 		}
    541       1.1      cgd 		for (cp = buf; *cp; cp++)
    542       1.1      cgd 			if (*cp == '|' || *cp == ':') {
    543       1.1      cgd 				*cp = '\0';
    544       1.1      cgd 				break;
    545       1.1      cgd 			}
    546      1.12      mrg 		if (lflag)
    547      1.12      mrg 			syslog(LOG_INFO, "work for %s", buf);
    548      1.18      mrg 		switch (fork()) {
    549      1.18      mrg 		case -1:
    550       1.1      cgd 			syslog(LOG_WARNING, "startup: cannot fork");
    551       1.4      cgd 			mcleanup(0);
    552      1.18      mrg 		case 0:
    553       1.4      cgd 			printer = buf;
    554      1.18      mrg 			setproctitle("working on printer %s", printer);
    555       1.4      cgd 			cgetclose();
    556       1.1      cgd 			printjob();
    557      1.12      mrg 			/* NOTREACHED */
    558      1.18      mrg 		default:
    559      1.18      mrg 			child_count++;
    560      1.18      mrg 			free(buf);
    561       1.1      cgd 		}
    562      1.12      mrg 	}
    563      1.12      mrg }
    564      1.12      mrg 
    565      1.12      mrg /*
    566      1.12      mrg  * Make sure there's some work to do before forking off a child
    567      1.12      mrg  */
    568      1.12      mrg static int
    569      1.12      mrg ckqueue(cap)
    570      1.12      mrg 	char *cap;
    571      1.12      mrg {
    572      1.13      mrg 	struct dirent *d;
    573      1.12      mrg 	DIR *dirp;
    574      1.12      mrg 	char *spooldir;
    575      1.12      mrg 
    576      1.12      mrg 	if (cgetstr(cap, "sd", &spooldir) == -1)
    577      1.12      mrg 		spooldir = _PATH_DEFSPOOL;
    578      1.12      mrg 	if ((dirp = opendir(spooldir)) == NULL)
    579      1.12      mrg 		return (-1);
    580      1.12      mrg 	while ((d = readdir(dirp)) != NULL) {
    581      1.12      mrg 		if (d->d_name[0] != 'c' || d->d_name[1] != 'f')
    582      1.12      mrg 			continue;	/* daemon control files only */
    583      1.12      mrg 		closedir(dirp);
    584      1.12      mrg 		return (1);		/* found something */
    585       1.1      cgd 	}
    586      1.12      mrg 	closedir(dirp);
    587      1.12      mrg 	return (0);
    588       1.1      cgd }
    589       1.1      cgd 
    590       1.1      cgd #define DUMMY ":nobody::"
    591       1.1      cgd 
    592       1.1      cgd /*
    593       1.1      cgd  * Check to see if the from host has access to the line printer.
    594       1.1      cgd  */
    595       1.4      cgd static void
    596       1.1      cgd chkhost(f)
    597      1.20   itojun 	struct sockaddr *f;
    598       1.1      cgd {
    599      1.20   itojun 	struct addrinfo hints, *res, *r;
    600      1.13      mrg 	FILE *hostf;
    601      1.13      mrg 	int first = 1, good = 0;
    602      1.20   itojun 	char host[NI_MAXHOST], ip[NI_MAXHOST];
    603      1.20   itojun 	char serv[NI_MAXSERV];
    604      1.20   itojun 	int error;
    605      1.20   itojun 
    606      1.20   itojun 	error = getnameinfo(f, f->sa_len, NULL, 0, serv, sizeof(serv),
    607      1.20   itojun 			    NI_NUMERICSERV);
    608      1.20   itojun 	if (error || atoi(serv) >= IPPORT_RESERVED)
    609       1.1      cgd 		fatal("Malformed from address");
    610       1.4      cgd 
    611       1.4      cgd 	/* Need real hostname for temporary filenames */
    612      1.20   itojun 	error = getnameinfo(f, f->sa_len, host, sizeof(host), NULL, 0,
    613      1.20   itojun 			    NI_NAMEREQD);
    614      1.20   itojun 	if (error) {
    615      1.20   itojun 		error = getnameinfo(f, f->sa_len, host, sizeof(host), NULL, 0,
    616      1.20   itojun 				    NI_NUMERICHOST);
    617      1.20   itojun 		if (error)
    618      1.20   itojun 			fatal("Host name for your address unknown");
    619      1.20   itojun 		else
    620      1.20   itojun 			fatal("Host name for your address (%s) unknown", host);
    621      1.20   itojun 	}
    622       1.1      cgd 
    623      1.20   itojun 	(void)strncpy(fromb, host, sizeof(fromb) - 1);
    624      1.19      mjl 	fromb[sizeof(fromb) - 1] = '\0';
    625       1.1      cgd 	from = fromb;
    626       1.1      cgd 
    627      1.20   itojun 	/* need address in stringform for comparison (no DNS lookup here) */
    628      1.20   itojun 	error = getnameinfo(f, f->sa_len, host, sizeof(host), NULL, 0,
    629      1.20   itojun 			    NI_NUMERICHOST);
    630      1.20   itojun 	if (error)
    631      1.20   itojun 		fatal("Cannot print address");
    632      1.20   itojun 
    633      1.13      mrg 	/* Check for spoof, ala rlogind */
    634      1.20   itojun 	memset(&hints, 0, sizeof(hints));
    635      1.20   itojun 	hints.ai_family = PF_UNSPEC;
    636      1.20   itojun 	hints.ai_socktype = SOCK_DGRAM;	/*dummy*/
    637      1.20   itojun 	error = getaddrinfo(fromb, NULL, &hints, &res);
    638      1.20   itojun 	if (error) {
    639      1.20   itojun 		fatal("hostname for your address (%s) unknown: %s", host,
    640      1.20   itojun 		    gai_strerror(error));
    641      1.20   itojun 	}
    642      1.20   itojun 	good = 0;
    643      1.20   itojun 	for (r = res; good == 0 && r; r = r->ai_next) {
    644      1.20   itojun 		error = getnameinfo(r->ai_addr, r->ai_addrlen, ip, sizeof(ip),
    645      1.20   itojun 				    NULL, 0, NI_NUMERICHOST);
    646      1.20   itojun 		if (!error && !strcmp(host, ip))
    647      1.13      mrg 			good = 1;
    648      1.13      mrg 	}
    649      1.20   itojun 	if (res)
    650      1.20   itojun 		freeaddrinfo(res);
    651      1.13      mrg 	if (good == 0)
    652      1.20   itojun 		fatal("address for your hostname (%s) not matched", host);
    653      1.18      mrg 	setproctitle("serving %s", from);
    654       1.1      cgd 	hostf = fopen(_PATH_HOSTSEQUIV, "r");
    655       1.1      cgd again:
    656       1.1      cgd 	if (hostf) {
    657      1.21   itojun 		if (__ivaliduser_sa(hostf, f, f->sa_len, DUMMY, DUMMY) == 0) {
    658       1.9      mrg 			(void)fclose(hostf);
    659       1.1      cgd 			return;
    660       1.1      cgd 		}
    661       1.9      mrg 		(void)fclose(hostf);
    662       1.1      cgd 	}
    663       1.1      cgd 	if (first == 1) {
    664       1.1      cgd 		first = 0;
    665       1.1      cgd 		hostf = fopen(_PATH_HOSTSLPD, "r");
    666       1.1      cgd 		goto again;
    667       1.1      cgd 	}
    668       1.1      cgd 	fatal("Your host does not have line printer access");
    669       1.4      cgd 	/*NOTREACHED*/
    670      1.13      mrg }
    671      1.13      mrg 
    672      1.13      mrg static void
    673      1.13      mrg usage()
    674      1.13      mrg {
    675      1.13      mrg 	extern char *__progname;	/* XXX */
    676      1.13      mrg 
    677      1.22      mrg 	fprintf(stderr, "usage: %s [-dlrs] [-n maxchild] [-w maxwait] [port]\n",
    678      1.22      mrg 	    __progname);
    679      1.13      mrg 	exit(1);
    680      1.20   itojun }
    681      1.20   itojun 
    682      1.20   itojun /* setup server socket for specified address family */
    683      1.20   itojun /* if af is PF_UNSPEC more than one socket may be returned */
    684      1.20   itojun /* the returned list is dynamically allocated, so caller needs to free it */
    685      1.20   itojun int *
    686      1.20   itojun socksetup(af, options)
    687      1.20   itojun         int af, options;
    688      1.20   itojun {
    689      1.20   itojun 	struct addrinfo hints, *res, *r;
    690      1.20   itojun 	int error, maxs, *s, *socks;
    691      1.20   itojun 	const int on = 1;
    692      1.20   itojun 
    693      1.20   itojun 	memset(&hints, 0, sizeof(hints));
    694      1.20   itojun 	hints.ai_flags = AI_PASSIVE;
    695      1.20   itojun 	hints.ai_family = af;
    696      1.20   itojun 	hints.ai_socktype = SOCK_STREAM;
    697      1.20   itojun 	error = getaddrinfo(NULL, "printer", &hints, &res);
    698      1.20   itojun 	if (error) {
    699  1.22.4.1   itojun 		syslog(LOG_ERR, "%s", gai_strerror(error));
    700      1.20   itojun 		mcleanup(0);
    701      1.20   itojun 	}
    702      1.20   itojun 
    703      1.20   itojun 	/* Count max number of sockets we may open */
    704      1.20   itojun 	for (maxs = 0, r = res; r; r = r->ai_next, maxs++)
    705      1.20   itojun 		;
    706      1.20   itojun 	socks = malloc((maxs + 1) * sizeof(int));
    707      1.20   itojun 	if (!socks) {
    708      1.20   itojun 		syslog(LOG_ERR, "couldn't allocate memory for sockets");
    709      1.20   itojun 		mcleanup(0);
    710      1.20   itojun 	}
    711      1.20   itojun 
    712      1.20   itojun 	*socks = 0;   /* num of sockets counter at start of array */
    713      1.20   itojun 	s = socks + 1;
    714      1.20   itojun 	for (r = res; r; r = r->ai_next) {
    715      1.20   itojun 		*s = socket(r->ai_family, r->ai_socktype, r->ai_protocol);
    716      1.20   itojun 		if (*s < 0) {
    717      1.20   itojun 			syslog(LOG_DEBUG, "socket(): %m");
    718      1.20   itojun 			continue;
    719      1.20   itojun 		}
    720      1.20   itojun 		if (options & SO_DEBUG)
    721      1.20   itojun 			if (setsockopt(*s, SOL_SOCKET, SO_DEBUG,
    722      1.20   itojun 				       &on, sizeof(on)) < 0) {
    723      1.20   itojun 				syslog(LOG_ERR, "setsockopt (SO_DEBUG): %m");
    724      1.20   itojun 				close (*s);
    725      1.20   itojun 				continue;
    726      1.20   itojun 			}
    727      1.20   itojun 		if (bind(*s, r->ai_addr, r->ai_addrlen) < 0) {
    728      1.20   itojun 			syslog(LOG_DEBUG, "bind(): %m");
    729      1.20   itojun 			close (*s);
    730      1.20   itojun 			continue;
    731      1.20   itojun 		}
    732      1.20   itojun 		*socks = *socks + 1;
    733      1.20   itojun 		s++;
    734      1.20   itojun 	}
    735      1.20   itojun 
    736      1.20   itojun 	if (res)
    737      1.20   itojun 		freeaddrinfo(res);
    738      1.20   itojun 
    739      1.20   itojun 	if (*socks == 0) {
    740      1.20   itojun 		syslog(LOG_ERR, "Couldn't bind to any socket");
    741      1.20   itojun 		free(socks);
    742      1.20   itojun 		mcleanup(0);
    743      1.20   itojun 	}
    744      1.20   itojun 	return(socks);
    745       1.1      cgd }
    746