Home | History | Annotate | Line # | Download | only in common_source
rmjob.c revision 1.19
      1  1.19      agc /*	$NetBSD: rmjob.c,v 1.19 2003/08/07 11:25:25 agc Exp $	*/
      2   1.7      jtc 
      3   1.1      cgd /*
      4   1.4      cgd  * Copyright (c) 1983, 1993
      5   1.4      cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1      cgd  *
      7   1.1      cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1      cgd  * modification, are permitted provided that the following conditions
      9   1.1      cgd  * are met:
     10   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     15  1.19      agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1      cgd  *    may be used to endorse or promote products derived from this software
     17   1.1      cgd  *    without specific prior written permission.
     18   1.1      cgd  *
     19   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1      cgd  * SUCH DAMAGE.
     30   1.1      cgd  */
     31   1.1      cgd 
     32  1.13      mrg #include <sys/cdefs.h>
     33   1.1      cgd #ifndef lint
     34  1.11    mikel #if 0
     35  1.12      mrg static char sccsid[] = "@(#)rmjob.c	8.2 (Berkeley) 4/28/95";
     36  1.11    mikel #else
     37  1.19      agc __RCSID("$NetBSD: rmjob.c,v 1.19 2003/08/07 11:25:25 agc Exp $");
     38  1.11    mikel #endif
     39   1.1      cgd #endif /* not lint */
     40   1.1      cgd 
     41   1.4      cgd #include <sys/param.h>
     42   1.4      cgd 
     43   1.4      cgd #include <signal.h>
     44   1.4      cgd #include <errno.h>
     45   1.4      cgd #include <dirent.h>
     46   1.4      cgd #include <unistd.h>
     47   1.4      cgd #include <stdlib.h>
     48   1.4      cgd #include <stdio.h>
     49   1.4      cgd #include <string.h>
     50   1.4      cgd #include <ctype.h>
     51   1.4      cgd #include "lp.h"
     52   1.4      cgd #include "lp.local.h"
     53   1.4      cgd #include "pathnames.h"
     54   1.4      cgd 
     55   1.1      cgd /*
     56   1.1      cgd  * rmjob - remove the specified jobs from the queue.
     57   1.1      cgd  */
     58   1.1      cgd 
     59   1.1      cgd /*
     60   1.1      cgd  * Stuff for handling lprm specifications
     61   1.1      cgd  */
     62   1.1      cgd extern char	*user[];		/* users to process */
     63   1.1      cgd extern int	users;			/* # of users in user array */
     64   1.1      cgd extern int	requ[];			/* job number of spool entries */
     65   1.1      cgd extern int	requests;		/* # of spool requests */
     66   1.1      cgd extern char	*person;		/* name of person doing lprm */
     67   1.1      cgd 
     68   1.4      cgd static char	root[] = "root";
     69   1.4      cgd static int	all = 0;		/* eliminate all files (root only) */
     70   1.4      cgd static int	cur_daemon;		/* daemon's pid */
     71   1.4      cgd static char	current[40];		/* active control file name */
     72   1.1      cgd 
     73   1.5  hpeyerl extern uid_t	uid, euid;		/* real and effective user id's */
     74   1.5  hpeyerl 
     75  1.18      wiz static	void	do_unlink(char *);
     76  1.18      wiz static	void	alarmer(int);
     77   1.5  hpeyerl 
     78   1.4      cgd void
     79  1.18      wiz rmjob(void)
     80   1.1      cgd {
     81  1.13      mrg 	int i, nitems;
     82   1.1      cgd 	int assasinated = 0;
     83   1.3      jtc 	struct dirent **files;
     84   1.1      cgd 	char *cp;
     85   1.1      cgd 
     86   1.4      cgd 	if ((i = cgetent(&bp, printcapdb, printer)) == -2)
     87   1.4      cgd 		fatal("can't open printer description file");
     88   1.4      cgd 	else if (i == -1)
     89   1.1      cgd 		fatal("unknown printer");
     90   1.4      cgd 	else if (i == -3)
     91   1.4      cgd 		fatal("potential reference loop detected in printcap file");
     92  1.17      mrg 	if (cgetstr(bp, DEFLP, &LP) < 0)
     93   1.4      cgd 		LP = _PATH_DEFDEVLP;
     94   1.4      cgd 	if (cgetstr(bp, "rp", &RP) < 0)
     95   1.4      cgd 		RP = DEFLP;
     96   1.4      cgd 	if (cgetstr(bp, "sd", &SD) < 0)
     97   1.1      cgd 		SD = _PATH_DEFSPOOL;
     98   1.4      cgd 	if (cgetstr(bp,"lo", &LO) < 0)
     99   1.1      cgd 		LO = DEFLOCK;
    100   1.4      cgd 	cgetstr(bp, "rm", &RM);
    101  1.11    mikel 	if ((cp = checkremote()) != NULL)
    102   1.1      cgd 		printf("Warning: %s\n", cp);
    103   1.1      cgd 
    104   1.1      cgd 	/*
    105   1.1      cgd 	 * If the format was `lprm -' and the user isn't the super-user,
    106   1.1      cgd 	 *  then fake things to look like he said `lprm user'.
    107   1.1      cgd 	 */
    108   1.1      cgd 	if (users < 0) {
    109   1.1      cgd 		if (getuid() == 0)
    110   1.1      cgd 			all = 1;	/* all files in local queue */
    111   1.1      cgd 		else {
    112   1.1      cgd 			user[0] = person;
    113   1.1      cgd 			users = 1;
    114   1.1      cgd 		}
    115   1.1      cgd 	}
    116   1.1      cgd 	if (!strcmp(person, "-all")) {
    117   1.1      cgd 		if (from == host)
    118   1.1      cgd 			fatal("The login name \"-all\" is reserved");
    119   1.1      cgd 		all = 1;	/* all those from 'from' */
    120   1.1      cgd 		person = root;
    121   1.1      cgd 	}
    122   1.1      cgd 
    123   1.5  hpeyerl 	seteuid(euid);
    124   1.1      cgd 	if (chdir(SD) < 0)
    125   1.1      cgd 		fatal("cannot chdir to spool directory");
    126   1.1      cgd 	if ((nitems = scandir(".", &files, iscf, NULL)) < 0)
    127   1.1      cgd 		fatal("cannot access spool directory");
    128   1.5  hpeyerl 	seteuid(uid);
    129   1.1      cgd 
    130   1.1      cgd 	if (nitems) {
    131   1.1      cgd 		/*
    132   1.1      cgd 		 * Check for an active printer daemon (in which case we
    133   1.1      cgd 		 *  kill it if it is reading our file) then remove stuff
    134   1.1      cgd 		 *  (after which we have to restart the daemon).
    135   1.1      cgd 		 */
    136   1.1      cgd 		if (lockchk(LO) && chk(current)) {
    137   1.5  hpeyerl 			seteuid(euid);
    138   1.1      cgd 			assasinated = kill(cur_daemon, SIGINT) == 0;
    139   1.5  hpeyerl 			seteuid(uid);
    140   1.1      cgd 			if (!assasinated)
    141   1.1      cgd 				fatal("cannot kill printer daemon");
    142   1.1      cgd 		}
    143   1.1      cgd 		/*
    144   1.1      cgd 		 * process the files
    145   1.1      cgd 		 */
    146   1.1      cgd 		for (i = 0; i < nitems; i++)
    147   1.1      cgd 			process(files[i]->d_name);
    148   1.1      cgd 	}
    149   1.1      cgd 	rmremote();
    150   1.1      cgd 	/*
    151   1.1      cgd 	 * Restart the printer daemon if it was killed
    152   1.1      cgd 	 */
    153   1.1      cgd 	if (assasinated && !startdaemon(printer))
    154   1.1      cgd 		fatal("cannot restart printer daemon\n");
    155   1.1      cgd 	exit(0);
    156   1.1      cgd }
    157   1.1      cgd 
    158   1.1      cgd /*
    159   1.1      cgd  * Process a lock file: collect the pid of the active
    160   1.1      cgd  *  daemon and the file name of the active spool entry.
    161   1.1      cgd  * Return boolean indicating existence of a lock file.
    162   1.1      cgd  */
    163   1.4      cgd int
    164  1.18      wiz lockchk(char *s)
    165   1.1      cgd {
    166  1.13      mrg 	FILE *fp;
    167  1.13      mrg 	int i, n;
    168   1.1      cgd 
    169   1.5  hpeyerl 	seteuid(euid);
    170   1.5  hpeyerl 	if ((fp = fopen(s, "r")) == NULL) {
    171   1.1      cgd 		if (errno == EACCES)
    172   1.1      cgd 			fatal("can't access lock file");
    173   1.1      cgd 		else
    174   1.1      cgd 			return(0);
    175   1.5  hpeyerl 	}
    176   1.5  hpeyerl 	seteuid(uid);
    177   1.1      cgd 	if (!getline(fp)) {
    178   1.8      mrg 		(void)fclose(fp);
    179   1.1      cgd 		return(0);		/* no daemon present */
    180   1.1      cgd 	}
    181   1.1      cgd 	cur_daemon = atoi(line);
    182   1.5  hpeyerl 	if (kill(cur_daemon, 0) < 0 && errno != EPERM) {
    183   1.8      mrg 		(void)fclose(fp);
    184   1.1      cgd 		return(0);		/* no daemon present */
    185   1.1      cgd 	}
    186   1.1      cgd 	for (i = 1; (n = fread(current, sizeof(char), sizeof(current), fp)) <= 0; i++) {
    187   1.1      cgd 		if (i > 5) {
    188   1.1      cgd 			n = 1;
    189   1.1      cgd 			break;
    190   1.1      cgd 		}
    191  1.14      mrg 		sleep((size_t)i);
    192   1.1      cgd 	}
    193   1.1      cgd 	current[n-1] = '\0';
    194   1.8      mrg 	(void)fclose(fp);
    195   1.1      cgd 	return(1);
    196   1.1      cgd }
    197   1.1      cgd 
    198   1.1      cgd /*
    199   1.1      cgd  * Process a control file.
    200   1.1      cgd  */
    201   1.4      cgd void
    202  1.18      wiz process(char *file)
    203   1.1      cgd {
    204   1.1      cgd 	FILE *cfp;
    205   1.1      cgd 
    206   1.1      cgd 	if (!chk(file))
    207   1.1      cgd 		return;
    208   1.5  hpeyerl 	seteuid(euid);
    209   1.1      cgd 	if ((cfp = fopen(file, "r")) == NULL)
    210   1.1      cgd 		fatal("cannot open %s", file);
    211   1.5  hpeyerl 	seteuid(uid);
    212   1.1      cgd 	while (getline(cfp)) {
    213   1.1      cgd 		switch (line[0]) {
    214   1.1      cgd 		case 'U':  /* unlink associated files */
    215  1.13      mrg 			if (strchr(line+1, '/') || strncmp(line+1, "df", 2))
    216  1.13      mrg 				break;
    217   1.6       pk 			do_unlink(line+1);
    218   1.1      cgd 		}
    219   1.1      cgd 	}
    220   1.8      mrg 	(void)fclose(cfp);
    221   1.5  hpeyerl 	do_unlink(file);
    222   1.5  hpeyerl }
    223   1.5  hpeyerl 
    224   1.5  hpeyerl static void
    225  1.18      wiz do_unlink(char *file)
    226   1.5  hpeyerl {
    227   1.5  hpeyerl 	int	ret;
    228   1.5  hpeyerl 
    229   1.1      cgd 	if (from != host)
    230   1.1      cgd 		printf("%s: ", host);
    231   1.5  hpeyerl 	seteuid(euid);
    232   1.5  hpeyerl 	ret = unlink(file);
    233   1.5  hpeyerl 	seteuid(uid);
    234   1.5  hpeyerl 	printf(ret ? "cannot dequeue %s\n" : "%s dequeued\n", file);
    235   1.1      cgd }
    236   1.1      cgd 
    237   1.1      cgd /*
    238   1.1      cgd  * Do the dirty work in checking
    239   1.1      cgd  */
    240   1.4      cgd int
    241  1.18      wiz chk(char *file)
    242   1.1      cgd {
    243  1.13      mrg 	int *r, n;
    244  1.13      mrg 	char **u, *cp;
    245   1.1      cgd 	FILE *cfp;
    246   1.1      cgd 
    247   1.1      cgd 	/*
    248   1.1      cgd 	 * Check for valid cf file name (mostly checking current).
    249   1.1      cgd 	 */
    250   1.1      cgd 	if (strlen(file) < 7 || file[0] != 'c' || file[1] != 'f')
    251   1.1      cgd 		return(0);
    252   1.1      cgd 
    253   1.1      cgd 	if (all && (from == host || !strcmp(from, file+6)))
    254   1.1      cgd 		return(1);
    255   1.1      cgd 
    256   1.1      cgd 	/*
    257   1.1      cgd 	 * get the owner's name from the control file.
    258   1.1      cgd 	 */
    259   1.5  hpeyerl 	seteuid(euid);
    260   1.1      cgd 	if ((cfp = fopen(file, "r")) == NULL)
    261   1.1      cgd 		return(0);
    262   1.5  hpeyerl 	seteuid(uid);
    263   1.1      cgd 	while (getline(cfp)) {
    264   1.1      cgd 		if (line[0] == 'P')
    265   1.1      cgd 			break;
    266   1.1      cgd 	}
    267   1.8      mrg 	(void)fclose(cfp);
    268   1.1      cgd 	if (line[0] != 'P')
    269   1.1      cgd 		return(0);
    270   1.1      cgd 
    271   1.1      cgd 	if (users == 0 && requests == 0)
    272   1.1      cgd 		return(!strcmp(file, current) && isowner(line+1, file));
    273   1.1      cgd 	/*
    274   1.1      cgd 	 * Check the request list
    275   1.1      cgd 	 */
    276   1.1      cgd 	for (n = 0, cp = file+3; isdigit(*cp); )
    277   1.1      cgd 		n = n * 10 + (*cp++ - '0');
    278   1.1      cgd 	for (r = requ; r < &requ[requests]; r++)
    279   1.1      cgd 		if (*r == n && isowner(line+1, file))
    280   1.1      cgd 			return(1);
    281   1.1      cgd 	/*
    282   1.1      cgd 	 * Check to see if it's in the user list
    283   1.1      cgd 	 */
    284   1.1      cgd 	for (u = user; u < &user[users]; u++)
    285   1.1      cgd 		if (!strcmp(*u, line+1) && isowner(line+1, file))
    286   1.1      cgd 			return(1);
    287   1.1      cgd 	return(0);
    288   1.1      cgd }
    289   1.1      cgd 
    290   1.1      cgd /*
    291   1.1      cgd  * If root is removing a file on the local machine, allow it.
    292   1.1      cgd  * If root is removing a file from a remote machine, only allow
    293   1.1      cgd  * files sent from the remote machine to be removed.
    294   1.1      cgd  * Normal users can only remove the file from where it was sent.
    295   1.1      cgd  */
    296   1.4      cgd int
    297  1.18      wiz isowner(char *owner, char *file)
    298   1.1      cgd {
    299   1.1      cgd 	if (!strcmp(person, root) && (from == host || !strcmp(from, file+6)))
    300   1.1      cgd 		return(1);
    301   1.1      cgd 	if (!strcmp(person, owner) && !strcmp(from, file+6))
    302   1.1      cgd 		return(1);
    303   1.1      cgd 	if (from != host)
    304   1.1      cgd 		printf("%s: ", host);
    305   1.1      cgd 	printf("%s: Permission denied\n", file);
    306   1.1      cgd 	return(0);
    307   1.1      cgd }
    308   1.1      cgd 
    309   1.1      cgd /*
    310   1.1      cgd  * Check to see if we are sending files to a remote machine. If we are,
    311   1.1      cgd  * then try removing files on the remote machine.
    312   1.1      cgd  */
    313   1.4      cgd void
    314  1.18      wiz rmremote(void)
    315   1.1      cgd {
    316  1.13      mrg 	char *cp, *s;
    317  1.14      mrg 	int i, rem;
    318  1.14      mrg 	size_t len;
    319   1.1      cgd 
    320  1.12      mrg 	if (!remote)
    321   1.1      cgd 		return;	/* not sending to a remote machine */
    322   1.1      cgd 
    323   1.1      cgd 	/*
    324   1.1      cgd 	 * Flush stdout so the user can see what has been deleted
    325   1.1      cgd 	 * while we wait (possibly) for the connection.
    326   1.1      cgd 	 */
    327   1.1      cgd 	fflush(stdout);
    328   1.1      cgd 
    329   1.8      mrg 	/* \5 RP space all */
    330   1.8      mrg 	len = 1 + strlen(RP) + 1 + strlen(all ? "-all" : person);
    331   1.1      cgd 	for (i = 0; i < users; i++) {
    332   1.8      mrg 		len += strlen(user[i]) + 1;
    333   1.8      mrg 	}
    334   1.8      mrg 	for (i = 0; i < requests; i++) {
    335   1.8      mrg 		len += snprintf(line, sizeof(line), " %d", requ[i]);
    336   1.8      mrg 	}
    337   1.9      cgd 	/* newline nul */
    338   1.9      cgd 	len += 2;
    339   1.8      mrg 	if (len > sizeof(line))
    340   1.8      mrg 		s = malloc(len);
    341   1.8      mrg 	else
    342   1.8      mrg 		s = line;
    343   1.8      mrg 	cp = s;
    344   1.8      mrg 
    345   1.8      mrg 	cp += snprintf(s, len, "\5%s %s", RP, all ? "-all" : person);
    346   1.8      mrg 	for (i = 0; i < users; i++) {
    347   1.8      mrg 		*cp++ = ' ';
    348   1.8      mrg 		strncpy(cp, user[i], len - (cp - s) - 2);
    349   1.1      cgd 		cp += strlen(cp);
    350   1.1      cgd 	}
    351   1.1      cgd 	for (i = 0; i < requests; i++) {
    352  1.10      cgd 		(void)snprintf(cp, len - (cp - s) - 1, " %d", requ[i]);
    353   1.1      cgd 		cp += strlen(cp);
    354   1.1      cgd 	}
    355   1.8      mrg 	cp[0] = '\n';
    356   1.8      mrg 	cp[1] = '\0';
    357   1.8      mrg 
    358  1.12      mrg 	rem = getport(RM, 0);
    359   1.1      cgd 	if (rem < 0) {
    360   1.1      cgd 		if (from != host)
    361   1.1      cgd 			printf("%s: ", host);
    362   1.1      cgd 		printf("connection to %s is down\n", RM);
    363   1.1      cgd 	} else {
    364  1.15      mrg 		struct sigaction osa, nsa;
    365  1.15      mrg 
    366   1.9      cgd 		if (write(rem, s, len) != len)
    367   1.1      cgd 			fatal("Lost connection");
    368   1.8      mrg 		if (len > sizeof(line))
    369   1.8      mrg 			(void)free(s);
    370  1.15      mrg 		nsa.sa_handler = alarmer;
    371  1.15      mrg 		sigemptyset(&nsa.sa_mask);
    372  1.15      mrg 		sigaddset(&nsa.sa_mask, SIGALRM);
    373  1.15      mrg 		nsa.sa_flags = 0;
    374  1.15      mrg 		(void)sigaction(SIGALRM, &nsa, &osa);
    375  1.15      mrg 		alarm(wait_time);
    376  1.15      mrg 		while ((i = read(rem, line, sizeof(line))) > 0) {
    377  1.14      mrg 			(void)fwrite(line, 1, (size_t)i, stdout);
    378  1.15      mrg 			alarm(wait_time);
    379  1.15      mrg 		}
    380  1.15      mrg 		alarm(0);
    381  1.15      mrg 		(void)sigaction(SIGALRM, &osa, NULL);
    382   1.8      mrg 		(void)close(rem);
    383   1.1      cgd 	}
    384  1.15      mrg }
    385  1.15      mrg 
    386  1.15      mrg static void
    387  1.18      wiz alarmer(int s)
    388  1.15      mrg {
    389  1.15      mrg 	/* nothing */
    390   1.1      cgd }
    391   1.1      cgd 
    392   1.1      cgd /*
    393   1.1      cgd  * Return 1 if the filename begins with 'cf'
    394   1.1      cgd  */
    395   1.4      cgd int
    396  1.18      wiz iscf(const struct dirent *d)
    397   1.1      cgd {
    398   1.1      cgd 	return(d->d_name[0] == 'c' && d->d_name[1] == 'f');
    399   1.1      cgd }
    400