Fix duplicate bitmask for _A and _G.
[dragonfly.git] / usr.bin / at / at.c
bloba559c2dd45f111afe71527041fd869ee3aab6b28
1 /*
2 * at.c : Put file into atrun queue
3 * Copyright (C) 1993, 1994 Thomas Koenig
5 * Atrun & Atq modifications
6 * Copyright (C) 1993 David Parsons
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. The name of the author(s) may not be used to endorse or promote
14 * products derived from this software without specific prior written
15 * permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * $FreeBSD: src/usr.bin/at/at.c,v 1.18.2.1 2001/08/02 00:55:58 obrien Exp $
29 * $DragonFly: src/usr.bin/at/at.c,v 1.5 2004/09/20 13:11:54 joerg Exp $
32 #define _USE_BSD 1
34 /* System Headers */
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <sys/wait.h>
39 #include <sys/param.h>
40 #include <ctype.h>
41 #include <dirent.h>
42 #include <err.h>
43 #include <errno.h>
44 #include <fcntl.h>
45 #include <pwd.h>
46 #include <signal.h>
47 #include <stddef.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <time.h>
52 #include <unistd.h>
53 #include <utmp.h>
54 #include <locale.h>
56 #if (MAXLOGNAME-1) > UT_NAMESIZE
57 #define LOGNAMESIZE UT_NAMESIZE
58 #else
59 #define LOGNAMESIZE (MAXLOGNAME-1)
60 #endif
62 /* Local headers */
64 #include "at.h"
65 #include "panic.h"
66 #include "parsetime.h"
67 #include "perm.h"
69 #define MAIN
70 #include "privs.h"
72 /* Macros */
74 #ifndef ATJOB_DIR
75 #define ATJOB_DIR "/usr/spool/atjobs/"
76 #endif
78 #ifndef LFILE
79 #define LFILE ATJOB_DIR ".lockfile"
80 #endif
82 #ifndef ATJOB_MX
83 #define ATJOB_MX 255
84 #endif
86 #define ALARMC 10 /* Number of seconds to wait for timeout */
88 #define SIZE 255
89 #define TIMESIZE 50
91 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
93 /* File scope variables */
95 const char *no_export[] =
97 "TERM", "TERMCAP", "DISPLAY", "_"
98 } ;
99 static int send_mail = 0;
101 /* External variables */
102 uid_t real_uid, effective_uid;
103 gid_t real_gid, effective_gid;
105 extern char **environ;
106 int fcreated;
107 char atfile[sizeof(ATJOB_DIR) + 14] = ATJOB_DIR;
109 char *atinput = NULL; /* where to get input from */
110 char atqueue = 0; /* which queue to examine for jobs (atq) */
111 char atverify = 0; /* verify time instead of queuing job */
113 /* Function declarations */
115 static void sigc(int signo);
116 static void alarmc(int signo);
117 static char *cwdname(void);
118 static void writefile(time_t runtimer, char queue);
119 static void list_jobs(void);
121 /* Signal catching functions */
123 static
124 void sigc(int signo __unused)
126 /* If the user presses ^C, remove the spool file and exit
128 if (fcreated)
130 PRIV_START
131 unlink(atfile);
132 PRIV_END
135 exit(EXIT_FAILURE);
138 static
139 void alarmc(int sign __unused)
141 /* Time out after some seconds
143 panic("file locking timed out");
146 /* Local functions */
148 static char *cwdname(void)
150 /* Read in the current directory; the name will be overwritten on
151 * subsequent calls.
153 static char *ptr = NULL;
154 static size_t size = SIZE;
156 if (ptr == NULL)
157 if ((ptr = malloc(size)) == NULL)
158 errx(EXIT_FAILURE, "virtual memory exhausted");
160 while (1)
162 if (ptr == NULL)
163 panic("out of memory");
165 if (getcwd(ptr, size-1) != NULL)
166 return ptr;
168 if (errno != ERANGE)
169 perr("cannot get directory");
171 free (ptr);
172 size += SIZE;
173 if ((ptr = malloc(size)) == NULL)
174 errx(EXIT_FAILURE, "virtual memory exhausted");
178 static long
179 nextjob(void)
181 long jobno;
182 FILE *fid;
184 if ((fid = fopen(ATJOB_DIR ".SEQ", "r+")) != (FILE*)0) {
185 if (fscanf(fid, "%5lx", &jobno) == 1) {
186 rewind(fid);
187 jobno = (1+jobno) % 0xfffff; /* 2^20 jobs enough? */
188 fprintf(fid, "%05lx\n", jobno);
190 else
191 jobno = EOF;
192 fclose(fid);
193 return jobno;
195 else if ((fid = fopen(ATJOB_DIR ".SEQ", "w")) != (FILE*)0) {
196 fprintf(fid, "%05lx\n", jobno = 1);
197 fclose(fid);
198 return 1;
200 return EOF;
203 static void
204 writefile(time_t runtimer, char queue)
206 /* This does most of the work if at or batch are invoked for writing a job.
208 long jobno;
209 char *ap, *ppos, *mailname;
210 struct passwd *pass_entry;
211 struct stat statbuf;
212 int fdes, lockdes, fd2;
213 FILE *fp, *fpin;
214 struct sigaction act;
215 char **atenv;
216 int ch;
217 mode_t cmask;
218 struct flock lock;
220 setlocale(LC_TIME, "");
222 /* Install the signal handler for SIGINT; terminate after removing the
223 * spool file if necessary
225 act.sa_handler = sigc;
226 sigemptyset(&(act.sa_mask));
227 act.sa_flags = 0;
229 sigaction(SIGINT, &act, NULL);
231 /* Loop over all possible file names for running something at this
232 * particular time, see if a file is there; the first empty slot at any
233 * particular time is used. Lock the file LFILE first to make sure
234 * we're alone when doing this.
237 PRIV_START
239 if ((lockdes = open(LFILE, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR)) < 0)
240 perr("cannot open lockfile " LFILE);
242 lock.l_type = F_WRLCK; lock.l_whence = SEEK_SET; lock.l_start = 0;
243 lock.l_len = 0;
245 act.sa_handler = alarmc;
246 sigemptyset(&(act.sa_mask));
247 act.sa_flags = 0;
249 /* Set an alarm so a timeout occurs after ALARMC seconds, in case
250 * something is seriously broken.
252 sigaction(SIGALRM, &act, NULL);
253 alarm(ALARMC);
254 fcntl(lockdes, F_SETLKW, &lock);
255 alarm(0);
257 if ((jobno = nextjob()) == EOF)
258 perr("cannot generate job number");
260 ppos = atfile + strlen(atfile);
261 snprintf(ppos, sizeof(atfile) - strlen(atfile), "%c%5lx%8lx", queue,
262 jobno, (unsigned long) (runtimer/60));
264 for(ap=ppos; *ap != '\0'; ap ++)
265 if (*ap == ' ')
266 *ap = '0';
268 if (stat(atfile, &statbuf) != 0)
269 if (errno != ENOENT)
270 perr("cannot access " ATJOB_DIR);
272 /* Create the file. The x bit is only going to be set after it has
273 * been completely written out, to make sure it is not executed in the
274 * meantime. To make sure they do not get deleted, turn off their r
275 * bit. Yes, this is a kluge.
277 cmask = umask(S_IRUSR | S_IWUSR | S_IXUSR);
278 if ((fdes = creat(atfile, O_WRONLY)) == -1)
279 perr("cannot create atjob file");
281 if ((fd2 = dup(fdes)) <0)
282 perr("error in dup() of job file");
284 if(fchown(fd2, real_uid, real_gid) != 0)
285 perr("cannot give away file");
287 PRIV_END
289 /* We no longer need suid root; now we just need to be able to write
290 * to the directory, if necessary.
293 REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
295 /* We've successfully created the file; let's set the flag so it
296 * gets removed in case of an interrupt or error.
298 fcreated = 1;
300 /* Now we can release the lock, so other people can access it
302 lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = 0;
303 lock.l_len = 0;
304 fcntl(lockdes, F_SETLKW, &lock);
305 close(lockdes);
307 if((fp = fdopen(fdes, "w")) == NULL)
308 panic("cannot reopen atjob file");
310 /* Get the userid to mail to, first by trying getlogin(), which reads
311 * /etc/utmp, then from LOGNAME, finally from getpwuid().
313 mailname = getlogin();
314 if (mailname == NULL)
315 mailname = getenv("LOGNAME");
317 if ((mailname == NULL) || (mailname[0] == '\0')
318 || (strlen(mailname) > LOGNAMESIZE) || (getpwnam(mailname)==NULL))
320 pass_entry = getpwuid(real_uid);
321 if (pass_entry != NULL)
322 mailname = pass_entry->pw_name;
325 if (atinput != (char *) NULL)
327 fpin = freopen(atinput, "r", stdin);
328 if (fpin == NULL)
329 perr("cannot open input file");
331 fprintf(fp, "#!/bin/sh\n# atrun uid=%ld gid=%ld\n# mail %*s %d\n",
332 (long) real_uid, (long) real_gid, LOGNAMESIZE, mailname, send_mail);
334 /* Write out the umask at the time of invocation
336 fprintf(fp, "umask %lo\n", (unsigned long) cmask);
338 /* Write out the environment. Anything that may look like a
339 * special character to the shell is quoted, except for \n, which is
340 * done with a pair of "'s. Don't export the no_export list (such
341 * as TERM or DISPLAY) because we don't want these.
343 for (atenv= environ; *atenv != NULL; atenv++)
345 int export = 1;
346 char *eqp;
348 eqp = strchr(*atenv, '=');
349 if (ap == NULL)
350 eqp = *atenv;
351 else
353 unsigned int i;
354 for (i=0; i<sizeof(no_export)/sizeof(no_export[0]); i++)
356 export = export
357 && (strncmp(*atenv, no_export[i],
358 (size_t) (eqp-*atenv)) != 0);
360 eqp++;
363 if (export)
365 fwrite(*atenv, sizeof(char), eqp-*atenv, fp);
366 for(ap = eqp;*ap != '\0'; ap++)
368 if (*ap == '\n')
369 fprintf(fp, "\"\n\"");
370 else
372 if (!isalnum(*ap)) {
373 switch (*ap) {
374 case '%': case '/': case '{': case '[':
375 case ']': case '=': case '}': case '@':
376 case '+': case '#': case ',': case '.':
377 case ':': case '-': case '_':
378 break;
379 default:
380 fputc('\\', fp);
381 break;
384 fputc(*ap, fp);
387 fputs("; export ", fp);
388 fwrite(*atenv, sizeof(char), eqp-*atenv -1, fp);
389 fputc('\n', fp);
393 /* Cd to the directory at the time and write out all the
394 * commands the user supplies from stdin.
396 fprintf(fp, "cd ");
397 for (ap = cwdname(); *ap != '\0'; ap++)
399 if (*ap == '\n')
400 fprintf(fp, "\"\n\"");
401 else
403 if (*ap != '/' && !isalnum(*ap))
404 fputc('\\', fp);
406 fputc(*ap, fp);
409 /* Test cd's exit status: die if the original directory has been
410 * removed, become unreadable or whatever
412 fprintf(fp, " || {\n\t echo 'Execution directory "
413 "inaccessible' >&2\n\t exit 1\n}\n");
415 while((ch = getchar()) != EOF)
416 fputc(ch, fp);
418 fprintf(fp, "\n");
419 if (ferror(fp))
420 panic("output error");
422 if (ferror(stdin))
423 panic("input error");
425 fclose(fp);
427 /* Set the x bit so that we're ready to start executing
430 if (fchmod(fd2, S_IRUSR | S_IWUSR | S_IXUSR) < 0)
431 perr("cannot give away file");
433 close(fd2);
434 fprintf(stderr, "Job %ld will be executed using /bin/sh\n", jobno);
437 static void
438 list_jobs(void)
440 /* List all a user's jobs in the queue, by looping through ATJOB_DIR,
441 * or everybody's if we are root
443 struct passwd *pw;
444 DIR *spool;
445 struct dirent *dirent;
446 struct stat buf;
447 struct tm runtime;
448 unsigned long ctm;
449 char queue;
450 long jobno;
451 time_t runtimer;
452 char timestr[TIMESIZE];
453 int first=1;
455 setlocale(LC_TIME, "");
457 PRIV_START
459 if (chdir(ATJOB_DIR) != 0)
460 perr("cannot change to " ATJOB_DIR);
462 if ((spool = opendir(".")) == NULL)
463 perr("cannot open " ATJOB_DIR);
465 /* Loop over every file in the directory
467 while((dirent = readdir(spool)) != NULL) {
468 if (stat(dirent->d_name, &buf) != 0)
469 perr("cannot stat in " ATJOB_DIR);
471 /* See it's a regular file and has its x bit turned on and
472 * is the user's
474 if (!S_ISREG(buf.st_mode)
475 || ((buf.st_uid != real_uid) && ! (real_uid == 0))
476 || !(S_IXUSR & buf.st_mode || atverify))
477 continue;
479 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3)
480 continue;
482 if (atqueue && (queue != atqueue))
483 continue;
485 runtimer = 60*(time_t) ctm;
486 runtime = *localtime(&runtimer);
487 strftime(timestr, TIMESIZE, "%X %x", &runtime);
488 if (first) {
489 printf("Date\t\t\tOwner\tQueue\tJob#\n");
490 first=0;
492 pw = getpwuid(buf.st_uid);
494 printf("%s\t%s\t%c%s\t%ld\n",
495 timestr,
496 pw ? pw->pw_name : "???",
497 queue,
498 (S_IXUSR & buf.st_mode) ? "":"(done)",
499 jobno);
501 PRIV_END
504 static void
505 process_jobs(int argc, char **argv, int what)
507 /* Delete every argument (job - ID) given
509 int i;
510 struct stat buf;
511 DIR *spool;
512 struct dirent *dirent;
513 unsigned long ctm;
514 char queue;
515 long jobno;
517 PRIV_START
519 if (chdir(ATJOB_DIR) != 0)
520 perr("cannot change to " ATJOB_DIR);
522 if ((spool = opendir(".")) == NULL)
523 perr("cannot open " ATJOB_DIR);
525 PRIV_END
527 /* Loop over every file in the directory
529 while((dirent = readdir(spool)) != NULL) {
531 PRIV_START
532 if (stat(dirent->d_name, &buf) != 0)
533 perr("cannot stat in " ATJOB_DIR);
534 PRIV_END
536 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3)
537 continue;
539 for (i=optind; i < argc; i++) {
540 if (atoi(argv[i]) == jobno) {
541 if ((buf.st_uid != real_uid) && !(real_uid == 0))
542 errx(EXIT_FAILURE, "%s: not owner", argv[i]);
543 switch (what) {
544 case ATRM:
546 PRIV_START
548 if (unlink(dirent->d_name) != 0)
549 perr(dirent->d_name);
551 PRIV_END
553 break;
555 case CAT:
557 FILE *fp;
558 int ch;
560 PRIV_START
562 fp = fopen(dirent->d_name,"r");
564 PRIV_END
566 if (!fp) {
567 perr("cannot open file");
569 while((ch = getc(fp)) != EOF) {
570 putchar(ch);
573 break;
575 default:
576 errx(EXIT_FAILURE, "internal error, process_jobs = %d",
577 what);
582 } /* delete_jobs */
585 main(int argc, char **argv)
587 int c;
588 char queue = DEFAULT_AT_QUEUE;
589 char queue_set = 0;
590 char *pgm;
592 int program = AT; /* our default program */
593 const char *options = "q:f:mvldbVc"; /* default options for at */
594 int disp_version = 0;
595 time_t timer;
597 RELINQUISH_PRIVS
599 /* Eat any leading paths
601 if ((pgm = strrchr(argv[0], '/')) == NULL)
602 pgm = argv[0];
603 else
604 pgm++;
606 /* find out what this program is supposed to do
608 if (strcmp(pgm, "atq") == 0) {
609 program = ATQ;
610 options = "q:vV";
612 else if (strcmp(pgm, "atrm") == 0) {
613 program = ATRM;
614 options = "V";
616 else if (strcmp(pgm, "batch") == 0) {
617 program = BATCH;
618 options = "f:q:mvV";
621 /* process whatever options we can process
623 opterr=1;
624 while ((c=getopt(argc, argv, options)) != -1)
625 switch (c) {
626 case 'v': /* verify time settings */
627 atverify = 1;
628 break;
630 case 'm': /* send mail when job is complete */
631 send_mail = 1;
632 break;
634 case 'f':
635 atinput = optarg;
636 break;
638 case 'q': /* specify queue */
639 if (strlen(optarg) > 1)
640 usage();
642 atqueue = queue = *optarg;
643 if (!(islower(queue)||isupper(queue)))
644 usage();
646 queue_set = 1;
647 break;
649 case 'd':
650 if (program != AT)
651 usage();
653 program = ATRM;
654 options = "V";
655 break;
657 case 'l':
658 if (program != AT)
659 usage();
661 program = ATQ;
662 options = "q:vV";
663 break;
665 case 'b':
666 if (program != AT)
667 usage();
669 program = BATCH;
670 options = "f:q:mvV";
671 break;
673 case 'V':
674 disp_version = 1;
675 break;
677 case 'c':
678 program = CAT;
679 options = "";
680 break;
682 default:
683 usage();
684 break;
686 /* end of options eating
689 if (disp_version)
690 fprintf(stderr, "at version " VERSION "\n"
691 "Bug reports to: ig25@rz.uni-karlsruhe.de (Thomas Koenig)\n");
693 /* select our program
695 if(!check_permission())
696 errx(EXIT_FAILURE, "you do not have permission to use this program");
697 switch (program) {
698 case ATQ:
700 REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
702 list_jobs();
703 break;
705 case ATRM:
707 REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
709 process_jobs(argc, argv, ATRM);
710 break;
712 case CAT:
714 process_jobs(argc, argv, CAT);
715 break;
717 case AT:
718 timer = parsetime(argc, argv);
719 if (atverify)
721 struct tm *tm = localtime(&timer);
722 fprintf(stderr, "%s\n", asctime(tm));
724 writefile(timer, queue);
725 break;
727 case BATCH:
728 if (queue_set)
729 queue = toupper(queue);
730 else
731 queue = DEFAULT_BATCH_QUEUE;
733 if (argc > optind)
734 timer = parsetime(argc, argv);
735 else
736 timer = time(NULL);
738 if (atverify)
740 struct tm *tm = localtime(&timer);
741 fprintf(stderr, "%s\n", asctime(tm));
744 writefile(timer, queue);
745 break;
747 default:
748 panic("internal error");
749 break;
751 exit(EXIT_SUCCESS);