1 /* 2 * at.c : Put file into atrun queue 3 * Copyright (C) 1993, 1994 Thomas Koenig 4 * 5 * Atrun & Atq modifications 6 * Copyright (C) 1993 David Parsons 7 * 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. 16 * 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. 27 */ 28 29 #ifndef lint 30 static const char rcsid[] = 31 "$FreeBSD$"; 32 #endif /* not lint */ 33 34 #define _USE_BSD 1 35 36 /* System Headers */ 37 38 #include <sys/types.h> 39 #include <sys/stat.h> 40 #include <sys/wait.h> 41 #include <sys/param.h> 42 #include <ctype.h> 43 #include <dirent.h> 44 #include <err.h> 45 #include <errno.h> 46 #include <fcntl.h> 47 #include <pwd.h> 48 #include <signal.h> 49 #include <stddef.h> 50 #include <stdio.h> 51 #include <stdlib.h> 52 #include <string.h> 53 #include <time.h> 54 #include <unistd.h> 55 #include <utmp.h> 56 #ifndef __FreeBSD__ 57 #include <getopt.h> 58 #else 59 #include <locale.h> 60 #endif 61 62 #if (MAXLOGNAME-1) > UT_NAMESIZE 63 #define LOGNAMESIZE UT_NAMESIZE 64 #else 65 #define LOGNAMESIZE (MAXLOGNAME-1) 66 #endif 67 68 /* Local headers */ 69 70 #include "at.h" 71 #include "panic.h" 72 #include "parsetime.h" 73 #include "perm.h" 74 75 #define MAIN 76 #include "privs.h" 77 78 /* Macros */ 79 80 #ifndef ATJOB_DIR 81 #define ATJOB_DIR "/usr/spool/atjobs/" 82 #endif 83 84 #ifndef LFILE 85 #define LFILE ATJOB_DIR ".lockfile" 86 #endif 87 88 #ifndef ATJOB_MX 89 #define ATJOB_MX 255 90 #endif 91 92 #define ALARMC 10 /* Number of seconds to wait for timeout */ 93 94 #define SIZE 255 95 #define TIMESIZE 50 96 97 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ 98 99 /* File scope variables */ 100 101 char *no_export[] = 102 { 103 "TERM", "TERMCAP", "DISPLAY", "_" 104 } ; 105 static int send_mail = 0; 106 107 /* External variables */ 108 109 extern char **environ; 110 int fcreated; 111 char atfile[] = ATJOB_DIR "12345678901234"; 112 113 char *atinput = (char*)0; /* where to get input from */ 114 char atqueue = 0; /* which queue to examine for jobs (atq) */ 115 char atverify = 0; /* verify time instead of queuing job */ 116 117 /* Function declarations */ 118 119 static void sigc(int signo); 120 static void alarmc(int signo); 121 static char *cwdname(void); 122 static void writefile(time_t runtimer, char queue); 123 static void list_jobs(void); 124 125 /* Signal catching functions */ 126 127 static void sigc(int signo) 128 { 129 /* If the user presses ^C, remove the spool file and exit 130 */ 131 if (fcreated) 132 { 133 PRIV_START 134 unlink(atfile); 135 PRIV_END 136 } 137 138 exit(EXIT_FAILURE); 139 } 140 141 static void alarmc(int signo) 142 { 143 /* Time out after some seconds 144 */ 145 panic("file locking timed out"); 146 } 147 148 /* Local functions */ 149 150 static char *cwdname(void) 151 { 152 /* Read in the current directory; the name will be overwritten on 153 * subsequent calls. 154 */ 155 static char *ptr = NULL; 156 static size_t size = SIZE; 157 158 if (ptr == NULL) 159 ptr = (char *) mymalloc(size); 160 161 while (1) 162 { 163 if (ptr == NULL) 164 panic("out of memory"); 165 166 if (getcwd(ptr, size-1) != NULL) 167 return ptr; 168 169 if (errno != ERANGE) 170 perr("cannot get directory"); 171 172 free (ptr); 173 size += SIZE; 174 ptr = (char *) mymalloc(size); 175 } 176 } 177 178 static long 179 nextjob() 180 { 181 long jobno; 182 FILE *fid; 183 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); 189 } 190 else 191 jobno = EOF; 192 fclose(fid); 193 return jobno; 194 } 195 else if ((fid = fopen(ATJOB_DIR ".SEQ", "w")) != (FILE*)0) { 196 fprintf(fid, "%05lx\n", jobno = 1); 197 fclose(fid); 198 return 1; 199 } 200 return EOF; 201 } 202 203 static void 204 writefile(time_t runtimer, char queue) 205 { 206 /* This does most of the work if at or batch are invoked for writing a job. 207 */ 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; 219 220 #ifdef __FreeBSD__ 221 (void) setlocale(LC_TIME, ""); 222 #endif 223 224 /* Install the signal handler for SIGINT; terminate after removing the 225 * spool file if necessary 226 */ 227 act.sa_handler = sigc; 228 sigemptyset(&(act.sa_mask)); 229 act.sa_flags = 0; 230 231 sigaction(SIGINT, &act, NULL); 232 233 ppos = atfile + strlen(ATJOB_DIR); 234 235 /* Loop over all possible file names for running something at this 236 * particular time, see if a file is there; the first empty slot at any 237 * particular time is used. Lock the file LFILE first to make sure 238 * we're alone when doing this. 239 */ 240 241 PRIV_START 242 243 if ((lockdes = open(LFILE, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR)) < 0) 244 perr("cannot open lockfile " LFILE); 245 246 lock.l_type = F_WRLCK; lock.l_whence = SEEK_SET; lock.l_start = 0; 247 lock.l_len = 0; 248 249 act.sa_handler = alarmc; 250 sigemptyset(&(act.sa_mask)); 251 act.sa_flags = 0; 252 253 /* Set an alarm so a timeout occurs after ALARMC seconds, in case 254 * something is seriously broken. 255 */ 256 sigaction(SIGALRM, &act, NULL); 257 alarm(ALARMC); 258 fcntl(lockdes, F_SETLKW, &lock); 259 alarm(0); 260 261 if ((jobno = nextjob()) == EOF) 262 perr("cannot generate job number"); 263 264 sprintf(ppos, "%c%5lx%8lx", queue, 265 jobno, (unsigned long) (runtimer/60)); 266 267 for(ap=ppos; *ap != '\0'; ap ++) 268 if (*ap == ' ') 269 *ap = '0'; 270 271 if (stat(atfile, &statbuf) != 0) 272 if (errno != ENOENT) 273 perr("cannot access " ATJOB_DIR); 274 275 /* Create the file. The x bit is only going to be set after it has 276 * been completely written out, to make sure it is not executed in the 277 * meantime. To make sure they do not get deleted, turn off their r 278 * bit. Yes, this is a kluge. 279 */ 280 cmask = umask(S_IRUSR | S_IWUSR | S_IXUSR); 281 if ((fdes = creat(atfile, O_WRONLY)) == -1) 282 perr("cannot create atjob file"); 283 284 if ((fd2 = dup(fdes)) <0) 285 perr("error in dup() of job file"); 286 287 if(fchown(fd2, real_uid, real_gid) != 0) 288 perr("cannot give away file"); 289 290 PRIV_END 291 292 /* We no longer need suid root; now we just need to be able to write 293 * to the directory, if necessary. 294 */ 295 296 REDUCE_PRIV(DAEMON_UID, DAEMON_GID) 297 298 /* We've successfully created the file; let's set the flag so it 299 * gets removed in case of an interrupt or error. 300 */ 301 fcreated = 1; 302 303 /* Now we can release the lock, so other people can access it 304 */ 305 lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = 0; 306 lock.l_len = 0; 307 fcntl(lockdes, F_SETLKW, &lock); 308 close(lockdes); 309 310 if((fp = fdopen(fdes, "w")) == NULL) 311 panic("cannot reopen atjob file"); 312 313 /* Get the userid to mail to, first by trying getlogin(), which reads 314 * /etc/utmp, then from LOGNAME, finally from getpwuid(). 315 */ 316 mailname = getlogin(); 317 if (mailname == NULL) 318 mailname = getenv("LOGNAME"); 319 320 if ((mailname == NULL) || (mailname[0] == '\0') 321 || (strlen(mailname) > LOGNAMESIZE) || (getpwnam(mailname)==NULL)) 322 { 323 pass_entry = getpwuid(real_uid); 324 if (pass_entry != NULL) 325 mailname = pass_entry->pw_name; 326 } 327 328 if (atinput != (char *) NULL) 329 { 330 fpin = freopen(atinput, "r", stdin); 331 if (fpin == NULL) 332 perr("cannot open input file"); 333 } 334 fprintf(fp, "#!/bin/sh\n# atrun uid=%ld gid=%ld\n# mail %*s %d\n", 335 (long) real_uid, (long) real_gid, LOGNAMESIZE, mailname, send_mail); 336 337 /* Write out the umask at the time of invocation 338 */ 339 fprintf(fp, "umask %lo\n", (unsigned long) cmask); 340 341 /* Write out the environment. Anything that may look like a 342 * special character to the shell is quoted, except for \n, which is 343 * done with a pair of "'s. Don't export the no_export list (such 344 * as TERM or DISPLAY) because we don't want these. 345 */ 346 for (atenv= environ; *atenv != NULL; atenv++) 347 { 348 int export = 1; 349 char *eqp; 350 351 eqp = strchr(*atenv, '='); 352 if (ap == NULL) 353 eqp = *atenv; 354 else 355 { 356 int i; 357 for (i=0; i<sizeof(no_export)/sizeof(no_export[0]); i++) 358 { 359 export = export 360 && (strncmp(*atenv, no_export[i], 361 (size_t) (eqp-*atenv)) != 0); 362 } 363 eqp++; 364 } 365 366 if (export) 367 { 368 fwrite(*atenv, sizeof(char), eqp-*atenv, fp); 369 for(ap = eqp;*ap != '\0'; ap++) 370 { 371 if (*ap == '\n') 372 fprintf(fp, "\"\n\""); 373 else 374 { 375 if (!isalnum(*ap)) { 376 switch (*ap) { 377 case '%': case '/': case '{': case '[': 378 case ']': case '=': case '}': case '@': 379 case '+': case '#': case ',': case '.': 380 case ':': case '-': case '_': 381 break; 382 default: 383 fputc('\\', fp); 384 break; 385 } 386 } 387 fputc(*ap, fp); 388 } 389 } 390 fputs("; export ", fp); 391 fwrite(*atenv, sizeof(char), eqp-*atenv -1, fp); 392 fputc('\n', fp); 393 394 } 395 } 396 /* Cd to the directory at the time and write out all the 397 * commands the user supplies from stdin. 398 */ 399 fprintf(fp, "cd "); 400 for (ap = cwdname(); *ap != '\0'; ap++) 401 { 402 if (*ap == '\n') 403 fprintf(fp, "\"\n\""); 404 else 405 { 406 if (*ap != '/' && !isalnum(*ap)) 407 fputc('\\', fp); 408 409 fputc(*ap, fp); 410 } 411 } 412 /* Test cd's exit status: die if the original directory has been 413 * removed, become unreadable or whatever 414 */ 415 fprintf(fp, " || {\n\t echo 'Execution directory " 416 "inaccessible' >&2\n\t exit 1\n}\n"); 417 418 while((ch = getchar()) != EOF) 419 fputc(ch, fp); 420 421 fprintf(fp, "\n"); 422 if (ferror(fp)) 423 panic("output error"); 424 425 if (ferror(stdin)) 426 panic("input error"); 427 428 fclose(fp); 429 430 /* Set the x bit so that we're ready to start executing 431 */ 432 433 if (fchmod(fd2, S_IRUSR | S_IWUSR | S_IXUSR) < 0) 434 perr("cannot give away file"); 435 436 close(fd2); 437 fprintf(stderr, "Job %ld will be executed using /bin/sh\n", jobno); 438 } 439 440 static void 441 list_jobs() 442 { 443 /* List all a user's jobs in the queue, by looping through ATJOB_DIR, 444 * or everybody's if we are root 445 */ 446 struct passwd *pw; 447 DIR *spool; 448 struct dirent *dirent; 449 struct stat buf; 450 struct tm runtime; 451 unsigned long ctm; 452 char queue; 453 long jobno; 454 time_t runtimer; 455 char timestr[TIMESIZE]; 456 int first=1; 457 458 #ifdef __FreeBSD__ 459 (void) setlocale(LC_TIME, ""); 460 #endif 461 462 PRIV_START 463 464 if (chdir(ATJOB_DIR) != 0) 465 perr("cannot change to " ATJOB_DIR); 466 467 if ((spool = opendir(".")) == NULL) 468 perr("cannot open " ATJOB_DIR); 469 470 /* Loop over every file in the directory 471 */ 472 while((dirent = readdir(spool)) != NULL) { 473 if (stat(dirent->d_name, &buf) != 0) 474 perr("cannot stat in " ATJOB_DIR); 475 476 /* See it's a regular file and has its x bit turned on and 477 * is the user's 478 */ 479 if (!S_ISREG(buf.st_mode) 480 || ((buf.st_uid != real_uid) && ! (real_uid == 0)) 481 || !(S_IXUSR & buf.st_mode || atverify)) 482 continue; 483 484 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3) 485 continue; 486 487 if (atqueue && (queue != atqueue)) 488 continue; 489 490 runtimer = 60*(time_t) ctm; 491 runtime = *localtime(&runtimer); 492 strftime(timestr, TIMESIZE, "%X %x", &runtime); 493 if (first) { 494 printf("Date\t\t\tOwner\tQueue\tJob#\n"); 495 first=0; 496 } 497 pw = getpwuid(buf.st_uid); 498 499 printf("%s\t%s\t%c%s\t%ld\n", 500 timestr, 501 pw ? pw->pw_name : "???", 502 queue, 503 (S_IXUSR & buf.st_mode) ? "":"(done)", 504 jobno); 505 } 506 PRIV_END 507 } 508 509 static void 510 process_jobs(int argc, char **argv, int what) 511 { 512 /* Delete every argument (job - ID) given 513 */ 514 int i; 515 struct stat buf; 516 DIR *spool; 517 struct dirent *dirent; 518 unsigned long ctm; 519 char queue; 520 long jobno; 521 522 PRIV_START 523 524 if (chdir(ATJOB_DIR) != 0) 525 perr("cannot change to " ATJOB_DIR); 526 527 if ((spool = opendir(".")) == NULL) 528 perr("cannot open " ATJOB_DIR); 529 530 PRIV_END 531 532 /* Loop over every file in the directory 533 */ 534 while((dirent = readdir(spool)) != NULL) { 535 536 PRIV_START 537 if (stat(dirent->d_name, &buf) != 0) 538 perr("cannot stat in " ATJOB_DIR); 539 PRIV_END 540 541 if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3) 542 continue; 543 544 for (i=optind; i < argc; i++) { 545 if (atoi(argv[i]) == jobno) { 546 if ((buf.st_uid != real_uid) && !(real_uid == 0)) 547 errx(EXIT_FAILURE, "%s: not owner", argv[i]); 548 switch (what) { 549 case ATRM: 550 551 PRIV_START 552 553 if (unlink(dirent->d_name) != 0) 554 perr(dirent->d_name); 555 556 PRIV_END 557 558 break; 559 560 case CAT: 561 { 562 FILE *fp; 563 int ch; 564 565 PRIV_START 566 567 fp = fopen(dirent->d_name,"r"); 568 569 PRIV_END 570 571 if (!fp) { 572 perr("cannot open file"); 573 } 574 while((ch = getc(fp)) != EOF) { 575 putchar(ch); 576 } 577 } 578 break; 579 580 default: 581 errx(EXIT_FAILURE, "internal error, process_jobs = %d", 582 what); 583 } 584 } 585 } 586 } 587 } /* delete_jobs */ 588 589 /* Global functions */ 590 591 void * 592 mymalloc(size_t n) 593 { 594 void *p; 595 if ((p=malloc(n))==(void *)0) 596 errx(EXIT_FAILURE, "virtual memory exhausted"); 597 return p; 598 } 599 600 int 601 main(int argc, char **argv) 602 { 603 int c; 604 char queue = DEFAULT_AT_QUEUE; 605 char queue_set = 0; 606 char *pgm; 607 608 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ 609 int program = AT; /* our default program */ 610 char *options = "q:f:mvldbVc"; /* default options for at */ 611 int disp_version = 0; 612 time_t timer; 613 614 RELINQUISH_PRIVS 615 616 /* Eat any leading paths 617 */ 618 if ((pgm = strrchr(argv[0], '/')) == NULL) 619 pgm = argv[0]; 620 else 621 pgm++; 622 623 /* find out what this program is supposed to do 624 */ 625 if (strcmp(pgm, "atq") == 0) { 626 program = ATQ; 627 options = "q:vV"; 628 } 629 else if (strcmp(pgm, "atrm") == 0) { 630 program = ATRM; 631 options = "V"; 632 } 633 else if (strcmp(pgm, "batch") == 0) { 634 program = BATCH; 635 options = "f:q:mvV"; 636 } 637 638 /* process whatever options we can process 639 */ 640 opterr=1; 641 while ((c=getopt(argc, argv, options)) != -1) 642 switch (c) { 643 case 'v': /* verify time settings */ 644 atverify = 1; 645 break; 646 647 case 'm': /* send mail when job is complete */ 648 send_mail = 1; 649 break; 650 651 case 'f': 652 atinput = optarg; 653 break; 654 655 case 'q': /* specify queue */ 656 if (strlen(optarg) > 1) 657 usage(); 658 659 atqueue = queue = *optarg; 660 if (!(islower(queue)||isupper(queue))) 661 usage(); 662 663 queue_set = 1; 664 break; 665 666 case 'd': 667 if (program != AT) 668 usage(); 669 670 program = ATRM; 671 options = "V"; 672 break; 673 674 case 'l': 675 if (program != AT) 676 usage(); 677 678 program = ATQ; 679 options = "q:vV"; 680 break; 681 682 case 'b': 683 if (program != AT) 684 usage(); 685 686 program = BATCH; 687 options = "f:q:mvV"; 688 break; 689 690 case 'V': 691 disp_version = 1; 692 break; 693 694 case 'c': 695 program = CAT; 696 options = ""; 697 break; 698 699 default: 700 usage(); 701 break; 702 } 703 /* end of options eating 704 */ 705 706 if (disp_version) 707 fprintf(stderr, "at version " VERSION "\n" 708 "Bug reports to: ig25@rz.uni-karlsruhe.de (Thomas Koenig)\n"); 709 710 /* select our program 711 */ 712 if(!check_permission()) 713 errx(EXIT_FAILURE, "you do not have permission to use this program"); 714 switch (program) { 715 case ATQ: 716 717 REDUCE_PRIV(DAEMON_UID, DAEMON_GID) 718 719 list_jobs(); 720 break; 721 722 case ATRM: 723 724 REDUCE_PRIV(DAEMON_UID, DAEMON_GID) 725 726 process_jobs(argc, argv, ATRM); 727 break; 728 729 case CAT: 730 731 process_jobs(argc, argv, CAT); 732 break; 733 734 case AT: 735 timer = parsetime(argc, argv); 736 if (atverify) 737 { 738 struct tm *tm = localtime(&timer); 739 fprintf(stderr, "%s\n", asctime(tm)); 740 } 741 writefile(timer, queue); 742 break; 743 744 case BATCH: 745 if (queue_set) 746 queue = toupper(queue); 747 else 748 queue = DEFAULT_BATCH_QUEUE; 749 750 if (argc > optind) 751 timer = parsetime(argc, argv); 752 else 753 timer = time(NULL); 754 755 if (atverify) 756 { 757 struct tm *tm = localtime(&timer); 758 fprintf(stderr, "%s\n", asctime(tm)); 759 } 760 761 writefile(timer, queue); 762 break; 763 764 default: 765 panic("internal error"); 766 break; 767 } 768 exit(EXIT_SUCCESS); 769 } 770