1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1983, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 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. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the name of the University nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33 #ifndef lint 34 static const char copyright[] = 35 "@(#) Copyright (c) 1983, 1993\n\ 36 The Regents of the University of California. All rights reserved.\n"; 37 #endif /* not lint */ 38 39 #if 0 40 #ifndef lint 41 static char sccsid[] = "@(#)cmds.c 8.2 (Berkeley) 4/28/95"; 42 #endif /* not lint */ 43 #endif 44 45 #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ 46 __FBSDID("$FreeBSD$"); 47 48 /* 49 * lpc -- line printer control program -- commands: 50 */ 51 52 #include <sys/param.h> 53 #include <sys/time.h> 54 #include <sys/stat.h> 55 #include <sys/file.h> 56 57 #include <signal.h> 58 #include <fcntl.h> 59 #include <err.h> 60 #include <errno.h> 61 #include <dirent.h> 62 #include <unistd.h> 63 #include <stdlib.h> 64 #include <stdio.h> 65 #include <ctype.h> 66 #include <string.h> 67 #include "lp.h" 68 #include "lp.local.h" 69 #include "lpc.h" 70 #include "extern.h" 71 #include "pathnames.h" 72 73 /* 74 * Return values from kill_qtask(). 75 */ 76 #define KQT_LFERROR -2 77 #define KQT_KILLFAIL -1 78 #define KQT_NODAEMON 0 79 #define KQT_KILLOK 1 80 81 static char *args2line(int argc, char **argv); 82 static int doarg(char *_job); 83 static int doselect(const struct dirent *_d); 84 static int kill_qtask(const char *lf); 85 static int sortq(const struct dirent **a, const struct dirent **b); 86 static int touch(struct jobqueue *_jq); 87 static void unlinkf(char *_name); 88 static void upstat(struct printer *_pp, const char *_msg, int _notify); 89 static void wrapup_clean(int _laststatus); 90 91 /* 92 * generic framework for commands which operate on all or a specified 93 * set of printers 94 */ 95 enum qsel_val { /* how a given ptr was selected */ 96 QSEL_UNKNOWN = -1, /* ... not selected yet */ 97 QSEL_BYNAME = 0, /* ... user specified it by name */ 98 QSEL_ALL = 1 /* ... user wants "all" printers */ 99 /* (with more to come) */ 100 }; 101 102 static enum qsel_val generic_qselect; /* indicates how ptr was selected */ 103 static int generic_initerr; /* result of initrtn processing */ 104 static char *generic_cmdname; 105 static char *generic_msg; /* if a -msg was specified */ 106 static char *generic_nullarg; 107 static void (*generic_wrapup)(int _last_status); /* perform rtn wrap-up */ 108 109 void 110 generic(void (*specificrtn)(struct printer *_pp), int cmdopts, 111 void (*initrtn)(int _argc, char *_argv[]), int argc, char *argv[]) 112 { 113 int cmdstatus, more, targc; 114 struct printer myprinter, *pp; 115 char **margv, **targv; 116 117 if (argc == 1) { 118 /* 119 * Usage needs a special case for 'down': The user must 120 * either include `-msg', or only the first parameter 121 * that they give will be processed as a printer name. 122 */ 123 printf("usage: %s {all | printer ...}", argv[0]); 124 if (strcmp(argv[0], "down") == 0) { 125 printf(" -msg [<text> ...]\n"); 126 printf(" or: down {all | printer} [<text> ...]"); 127 } else if (cmdopts & LPC_MSGOPT) 128 printf(" [-msg <text> ...]"); 129 printf("\n"); 130 return; 131 } 132 133 /* The first argument is the command name. */ 134 generic_cmdname = *argv++; 135 argc--; 136 137 /* 138 * The initialization routine for a command might set a generic 139 * "wrapup" routine, which should be called after processing all 140 * the printers in the command. This might print summary info. 141 * 142 * Note that the initialization routine may also parse (and 143 * nullify) some of the parameters given on the command, leaving 144 * only the parameters which have to do with printer names. 145 */ 146 pp = &myprinter; 147 generic_wrapup = NULL; 148 generic_qselect = QSEL_UNKNOWN; 149 cmdstatus = 0; 150 /* this just needs to be a distinct value of type 'char *' */ 151 if (generic_nullarg == NULL) 152 generic_nullarg = strdup(""); 153 154 /* 155 * Some commands accept a -msg argument, which indicates that 156 * all remaining arguments should be combined into a string. 157 */ 158 generic_msg = NULL; 159 if (cmdopts & LPC_MSGOPT) { 160 targc = argc; 161 targv = argv; 162 for (; targc > 0; targc--, targv++) { 163 if (strcmp(*targv, "-msg") == 0) { 164 argc -= targc; 165 generic_msg = args2line(targc - 1, targv + 1); 166 break; 167 } 168 } 169 if (argc < 1) { 170 printf("error: No printer name(s) specified before" 171 " '-msg'.\n"); 172 printf("usage: %s {all | printer ...}", 173 generic_cmdname); 174 printf(" [-msg <text> ...]\n"); 175 return; 176 } 177 } 178 179 /* call initialization routine, if there is one for this cmd */ 180 if (initrtn != NULL) { 181 generic_initerr = 0; 182 (*initrtn)(argc, argv); 183 if (generic_initerr) 184 return; 185 /* 186 * The initrtn may have null'ed out some of the parameters. 187 * Compact the parameter list to remove those nulls, and 188 * correct the arg-count. 189 */ 190 targc = argc; 191 targv = argv; 192 margv = argv; 193 argc = 0; 194 for (; targc > 0; targc--, targv++) { 195 if (*targv != generic_nullarg) { 196 if (targv != margv) 197 *margv = *targv; 198 margv++; 199 argc++; 200 } 201 } 202 } 203 204 if (argc == 1 && strcmp(*argv, "all") == 0) { 205 generic_qselect = QSEL_ALL; 206 more = firstprinter(pp, &cmdstatus); 207 if (cmdstatus) 208 goto looperr; 209 while (more) { 210 (*specificrtn)(pp); 211 do { 212 more = nextprinter(pp, &cmdstatus); 213 looperr: 214 switch (cmdstatus) { 215 case PCAPERR_TCOPEN: 216 printf("warning: %s: unresolved " 217 "tc= reference(s) ", 218 pp->printer); 219 case PCAPERR_SUCCESS: 220 break; 221 default: 222 fatal(pp, "%s", pcaperr(cmdstatus)); 223 } 224 } while (more && cmdstatus); 225 } 226 goto wrapup; 227 } 228 229 generic_qselect = QSEL_BYNAME; /* specifically-named ptrs */ 230 for (; argc > 0; argc--, argv++) { 231 init_printer(pp); 232 cmdstatus = getprintcap(*argv, pp); 233 switch (cmdstatus) { 234 default: 235 fatal(pp, "%s", pcaperr(cmdstatus)); 236 case PCAPERR_NOTFOUND: 237 printf("unknown printer %s\n", *argv); 238 continue; 239 case PCAPERR_TCOPEN: 240 printf("warning: %s: unresolved tc= reference(s)\n", 241 *argv); 242 break; 243 case PCAPERR_SUCCESS: 244 break; 245 } 246 (*specificrtn)(pp); 247 } 248 249 wrapup: 250 if (generic_wrapup) { 251 (*generic_wrapup)(cmdstatus); 252 } 253 free_printer(pp); 254 if (generic_msg) 255 free(generic_msg); 256 } 257 258 /* 259 * Convert an argv-array of character strings into a single string. 260 */ 261 static char * 262 args2line(int argc, char **argv) 263 { 264 char *cp1, *cend; 265 const char *cp2; 266 char buf[1024]; 267 268 if (argc <= 0) 269 return strdup("\n"); 270 271 cp1 = buf; 272 cend = buf + sizeof(buf) - 1; /* save room for '\0' */ 273 while (--argc >= 0) { 274 cp2 = *argv++; 275 while ((cp1 < cend) && (*cp1++ = *cp2++)) 276 ; 277 cp1[-1] = ' '; 278 } 279 cp1[-1] = '\n'; 280 *cp1 = '\0'; 281 return strdup(buf); 282 } 283 284 /* 285 * Kill the current daemon, to stop printing of the active job. 286 */ 287 static int 288 kill_qtask(const char *lf) 289 { 290 FILE *fp; 291 pid_t pid; 292 int errsav, killres, lockres, res; 293 294 PRIV_START 295 fp = fopen(lf, "r"); 296 errsav = errno; 297 PRIV_END 298 res = KQT_NODAEMON; 299 if (fp == NULL) { 300 /* 301 * If there is no lock file, then there is no daemon to 302 * kill. Any other error return means there is some 303 * kind of problem with the lock file. 304 */ 305 if (errsav != ENOENT) 306 res = KQT_LFERROR; 307 goto killdone; 308 } 309 310 /* If the lock file is empty, then there is no daemon to kill */ 311 if (get_line(fp) == 0) 312 goto killdone; 313 314 /* 315 * If the file can be locked without blocking, then there 316 * no daemon to kill, or we should not try to kill it. 317 * 318 * XXX - not sure I understand the reasoning behind this... 319 */ 320 lockres = flock(fileno(fp), LOCK_SH|LOCK_NB); 321 (void) fclose(fp); 322 if (lockres == 0) 323 goto killdone; 324 325 pid = atoi(line); 326 if (pid < 0) { 327 /* 328 * If we got a negative pid, then the contents of the 329 * lock file is not valid. 330 */ 331 res = KQT_LFERROR; 332 goto killdone; 333 } 334 335 PRIV_END 336 killres = kill(pid, SIGTERM); 337 errsav = errno; 338 PRIV_END 339 if (killres == 0) { 340 res = KQT_KILLOK; 341 printf("\tdaemon (pid %d) killed\n", pid); 342 } else if (errno == ESRCH) { 343 res = KQT_NODAEMON; 344 } else { 345 res = KQT_KILLFAIL; 346 printf("\tWarning: daemon (pid %d) not killed:\n", pid); 347 printf("\t %s\n", strerror(errsav)); 348 } 349 350 killdone: 351 switch (res) { 352 case KQT_LFERROR: 353 printf("\tcannot open lock file: %s\n", 354 strerror(errsav)); 355 break; 356 case KQT_NODAEMON: 357 printf("\tno daemon to abort\n"); 358 break; 359 case KQT_KILLFAIL: 360 case KQT_KILLOK: 361 /* These two already printed messages to the user. */ 362 break; 363 default: 364 printf("\t<internal error in kill_qtask>\n"); 365 break; 366 } 367 368 return (res); 369 } 370 371 /* 372 * Write a message into the status file. 373 */ 374 static void 375 upstat(struct printer *pp, const char *msg, int notifyuser) 376 { 377 int fd; 378 char statfile[MAXPATHLEN]; 379 380 status_file_name(pp, statfile, sizeof statfile); 381 umask(0); 382 PRIV_START 383 fd = open(statfile, O_WRONLY|O_CREAT|O_EXLOCK, STAT_FILE_MODE); 384 PRIV_END 385 if (fd < 0) { 386 printf("\tcannot create status file: %s\n", strerror(errno)); 387 return; 388 } 389 (void) ftruncate(fd, 0); 390 if (msg == NULL) 391 (void) write(fd, "\n", 1); 392 else 393 (void) write(fd, msg, strlen(msg)); 394 (void) close(fd); 395 if (notifyuser) { 396 if ((msg == (char *)NULL) || (strcmp(msg, "\n") == 0)) 397 printf("\tstatus message is now set to nothing.\n"); 398 else 399 printf("\tstatus message is now: %s", msg); 400 } 401 } 402 403 /* 404 * kill an existing daemon and disable printing. 405 */ 406 void 407 abort_q(struct printer *pp) 408 { 409 int killres, setres; 410 char lf[MAXPATHLEN]; 411 412 lock_file_name(pp, lf, sizeof lf); 413 printf("%s:\n", pp->printer); 414 415 /* 416 * Turn on the owner execute bit of the lock file to disable printing. 417 */ 418 setres = set_qstate(SQS_STOPP, lf); 419 420 /* 421 * If set_qstate found that there already was a lock file, then 422 * call a routine which will read that lock file and kill the 423 * lpd-process which is listed in that lock file. If the lock 424 * file did not exist, then either there is no daemon running 425 * for this queue, or there is one running but *it* could not 426 * write a lock file (which means we can not determine the 427 * process id of that lpd-process). 428 */ 429 switch (setres) { 430 case SQS_CHGOK: 431 case SQS_CHGFAIL: 432 /* Kill the process */ 433 killres = kill_qtask(lf); 434 break; 435 case SQS_CREOK: 436 case SQS_CREFAIL: 437 printf("\tno daemon to abort\n"); 438 break; 439 case SQS_STATFAIL: 440 printf("\tassuming no daemon to abort\n"); 441 break; 442 default: 443 printf("\t<unexpected result (%d) from set_qstate>\n", 444 setres); 445 break; 446 } 447 448 if (setres >= 0) 449 upstat(pp, "printing disabled\n", 0); 450 } 451 452 /* 453 * "global" variables for all the routines related to 'clean' and 'tclean' 454 */ 455 static time_t cln_now; /* current time */ 456 static double cln_minage; /* minimum age before file is removed */ 457 static long cln_sizecnt; /* amount of space freed up */ 458 static int cln_debug; /* print extra debugging msgs */ 459 static int cln_filecnt; /* number of files destroyed */ 460 static int cln_foundcore; /* found a core file! */ 461 static int cln_queuecnt; /* number of queues checked */ 462 static int cln_testonly; /* remove-files vs just-print-info */ 463 464 static int 465 doselect(const struct dirent *d) 466 { 467 int c = d->d_name[0]; 468 469 if ((c == 'c' || c == 'd' || c == 'r' || c == 't') && 470 d->d_name[1] == 'f') 471 return 1; 472 if (c == 'c') { 473 if (!strcmp(d->d_name, "core")) 474 cln_foundcore = 1; 475 } 476 if (c == 'e') { 477 if (!strncmp(d->d_name, "errs.", 5)) 478 return 1; 479 } 480 return 0; 481 } 482 483 /* 484 * Comparison routine that clean_q() uses for scandir. 485 * 486 * The purpose of this sort is to have all `df' files end up immediately 487 * after the matching `cf' file. For files matching `cf', `df', `rf', or 488 * `tf', it sorts by job number and machine, then by `cf', `df', `rf', or 489 * `tf', and then by the sequence letter (which is A-Z, or a-z). This 490 * routine may also see filenames which do not start with `cf', `df', `rf', 491 * or `tf' (such as `errs.*'), and those are simply sorted by the full 492 * filename. 493 * 494 * XXX 495 * This assumes that all control files start with `cfA*', and it turns 496 * out there are a few implementations of lpr which will create `cfB*' 497 * filenames (they will have datafile names which start with `dfB*'). 498 */ 499 static int 500 sortq(const struct dirent **a, const struct dirent **b) 501 { 502 const int a_lt_b = -1, a_gt_b = 1, cat_other = 10; 503 const char *fname_a, *fname_b, *jnum_a, *jnum_b; 504 int cat_a, cat_b, ch, res, seq_a, seq_b; 505 506 fname_a = (*a)->d_name; 507 fname_b = (*b)->d_name; 508 509 /* 510 * First separate filenames into categories. Categories are 511 * legitimate `cf', `df', `rf' & `tf' filenames, and "other" - in 512 * that order. It is critical that the mapping be exactly the 513 * same for 'a' vs 'b', so define a macro for the job. 514 * 515 * [aside: the standard `cf' file has the jobnumber start in 516 * position 4, but some implementations have that as an extra 517 * file-sequence letter, and start the job number in position 5.] 518 */ 519 #define MAP_TO_CAT(fname_X,cat_X,jnum_X,seq_X) do { \ 520 cat_X = cat_other; \ 521 ch = *(fname_X + 2); \ 522 jnum_X = fname_X + 3; \ 523 seq_X = 0; \ 524 if ((*(fname_X + 1) == 'f') && (isalpha(ch))) { \ 525 seq_X = ch; \ 526 if (*fname_X == 'c') \ 527 cat_X = 1; \ 528 else if (*fname_X == 'd') \ 529 cat_X = 2; \ 530 else if (*fname_X == 'r') \ 531 cat_X = 3; \ 532 else if (*fname_X == 't') \ 533 cat_X = 4; \ 534 if (cat_X != cat_other) { \ 535 ch = *jnum_X; \ 536 if (!isdigit(ch)) { \ 537 if (isalpha(ch)) { \ 538 jnum_X++; \ 539 ch = *jnum_X; \ 540 seq_X = (seq_X << 8) + ch; \ 541 } \ 542 if (!isdigit(ch)) \ 543 cat_X = cat_other; \ 544 } \ 545 } \ 546 } \ 547 } while (0) 548 549 MAP_TO_CAT(fname_a, cat_a, jnum_a, seq_a); 550 MAP_TO_CAT(fname_b, cat_b, jnum_b, seq_b); 551 552 #undef MAP_TO_CAT 553 554 /* First handle all cases which have "other" files */ 555 if ((cat_a >= cat_other) || (cat_b >= cat_other)) { 556 /* for two "other" files, just compare the full name */ 557 if (cat_a == cat_b) 558 res = strcmp(fname_a, fname_b); 559 else if (cat_a < cat_b) 560 res = a_lt_b; 561 else 562 res = a_gt_b; 563 goto have_res; 564 } 565 566 /* 567 * At this point, we know both files are legitimate `cf', `df', `rf', 568 * or `tf' files. Compare them by job-number and machine name. 569 */ 570 res = strcmp(jnum_a, jnum_b); 571 if (res != 0) 572 goto have_res; 573 574 /* 575 * We have two files which belong to the same job. Sort based 576 * on the category of file (`c' before `d', etc). 577 */ 578 if (cat_a < cat_b) { 579 res = a_lt_b; 580 goto have_res; 581 } else if (cat_a > cat_b) { 582 res = a_gt_b; 583 goto have_res; 584 } 585 586 /* 587 * Two files in the same category for a single job. Sort based 588 * on the sequence letter(s). (usually `A' through `Z', etc). 589 */ 590 if (seq_a < seq_b) { 591 res = a_lt_b; 592 goto have_res; 593 } else if (seq_a > seq_b) { 594 res = a_gt_b; 595 goto have_res; 596 } 597 598 /* 599 * Given that the filenames in a directory are unique, this SHOULD 600 * never happen (unless there are logic errors in this routine). 601 * But if it does happen, we must return "is equal" or the caller 602 * might see inconsistent results in the sorting order, and that 603 * can trigger other problems. 604 */ 605 printf("\t*** Error in sortq: %s == %s !\n", fname_a, fname_b); 606 printf("\t*** cat %d == %d ; seq = %d %d\n", cat_a, cat_b, 607 seq_a, seq_b); 608 res = 0; 609 610 have_res: 611 return res; 612 } 613 614 /* 615 * Remove all spool files and temporaries from the spooling area. 616 * Or, perhaps: 617 * Remove incomplete jobs from spooling area. 618 */ 619 620 void 621 clean_gi(int argc, char *argv[]) 622 { 623 624 /* init some fields before 'clean' is called for each queue */ 625 cln_queuecnt = 0; 626 cln_now = time(NULL); 627 cln_minage = 3600.0; /* only delete files >1h old */ 628 cln_filecnt = 0; 629 cln_sizecnt = 0; 630 cln_debug = 0; 631 cln_testonly = 0; 632 generic_wrapup = &wrapup_clean; 633 634 /* see if there are any options specified before the ptr list */ 635 for (; argc > 0; argc--, argv++) { 636 if (**argv != '-') 637 break; 638 if (strcmp(*argv, "-d") == 0) { 639 /* just an example of an option... */ 640 cln_debug++; 641 *argv = generic_nullarg; /* "erase" it */ 642 } else { 643 printf("Invalid option '%s'\n", *argv); 644 generic_initerr = 1; 645 } 646 } 647 } 648 649 void 650 tclean_gi(int argc, char *argv[]) 651 { 652 653 /* only difference between 'clean' and 'tclean' is one value */ 654 /* (...and the fact that 'clean' is priv and 'tclean' is not) */ 655 clean_gi(argc, argv); 656 cln_testonly = 1; 657 } 658 659 void 660 clean_q(struct printer *pp) 661 { 662 char *cp, *cp1, *lp; 663 struct dirent **queue; 664 size_t linerem; 665 int didhead, i, n, nitems, rmcp; 666 667 cln_queuecnt++; 668 669 didhead = 0; 670 if (generic_qselect == QSEL_BYNAME) { 671 printf("%s:\n", pp->printer); 672 didhead = 1; 673 } 674 675 lp = line; 676 cp = pp->spool_dir; 677 while (lp < &line[sizeof(line) - 1]) { 678 if ((*lp++ = *cp++) == 0) 679 break; 680 } 681 lp[-1] = '/'; 682 linerem = sizeof(line) - (lp - line); 683 684 cln_foundcore = 0; 685 PRIV_START 686 nitems = scandir(pp->spool_dir, &queue, doselect, sortq); 687 PRIV_END 688 if (nitems < 0) { 689 if (!didhead) { 690 printf("%s:\n", pp->printer); 691 didhead = 1; 692 } 693 printf("\tcannot examine spool directory\n"); 694 return; 695 } 696 if (cln_foundcore) { 697 if (!didhead) { 698 printf("%s:\n", pp->printer); 699 didhead = 1; 700 } 701 printf("\t** found a core file in %s !\n", pp->spool_dir); 702 } 703 if (nitems == 0) 704 return; 705 if (!didhead) 706 printf("%s:\n", pp->printer); 707 if (cln_debug) { 708 printf("\t** ----- Sorted list of files being checked:\n"); 709 i = 0; 710 do { 711 cp = queue[i]->d_name; 712 printf("\t** [%3d] = %s\n", i, cp); 713 } while (++i < nitems); 714 printf("\t** ----- end of sorted list\n"); 715 } 716 i = 0; 717 do { 718 cp = queue[i]->d_name; 719 rmcp = 0; 720 if (*cp == 'c') { 721 /* 722 * A control file. Look for matching data-files. 723 */ 724 /* XXX 725 * Note the logic here assumes that the hostname 726 * part of cf-filenames match the hostname part 727 * in df-filenames, and that is not necessarily 728 * true (eg: for multi-homed hosts). This needs 729 * some further thought... 730 */ 731 n = 0; 732 while (i + 1 < nitems) { 733 cp1 = queue[i + 1]->d_name; 734 if (*cp1 != 'd' || strcmp(cp + 3, cp1 + 3)) 735 break; 736 i++; 737 n++; 738 } 739 if (n == 0) { 740 rmcp = 1; 741 } 742 } else if (*cp == 'e') { 743 /* 744 * Must be an errrs or email temp file. 745 */ 746 rmcp = 1; 747 } else { 748 /* 749 * Must be a df with no cf (otherwise, it would have 750 * been skipped above) or an rf or tf file (which can 751 * always be removed if it is old enough). 752 */ 753 rmcp = 1; 754 } 755 if (rmcp) { 756 if (strlen(cp) >= linerem) { 757 printf("\t** internal error: 'line' overflow!\n"); 758 printf("\t** spooldir = %s\n", pp->spool_dir); 759 printf("\t** cp = %s\n", cp); 760 return; 761 } 762 strlcpy(lp, cp, linerem); 763 unlinkf(line); 764 } 765 } while (++i < nitems); 766 } 767 768 static void 769 wrapup_clean(int laststatus __unused) 770 { 771 772 printf("Checked %d queues, and ", cln_queuecnt); 773 if (cln_filecnt < 1) { 774 printf("no cruft was found\n"); 775 return; 776 } 777 if (cln_testonly) { 778 printf("would have "); 779 } 780 printf("removed %d files (%ld bytes).\n", cln_filecnt, cln_sizecnt); 781 } 782 783 static void 784 unlinkf(char *name) 785 { 786 struct stat stbuf; 787 double agemod, agestat; 788 int res; 789 char linkbuf[BUFSIZ]; 790 791 /* 792 * We have to use lstat() instead of stat(), in case this is a df* 793 * "file" which is really a symlink due to 'lpr -s' processing. In 794 * that case, we need to check the last-mod time of the symlink, and 795 * not the file that the symlink is pointed at. 796 */ 797 PRIV_START 798 res = lstat(name, &stbuf); 799 PRIV_END 800 if (res < 0) { 801 printf("\terror return from stat(%s):\n", name); 802 printf("\t %s\n", strerror(errno)); 803 return; 804 } 805 806 agemod = difftime(cln_now, stbuf.st_mtime); 807 agestat = difftime(cln_now, stbuf.st_ctime); 808 if (cln_debug > 1) { 809 /* this debugging-aid probably is not needed any more... */ 810 printf("\t\t modify age=%g secs, stat age=%g secs\n", 811 agemod, agestat); 812 } 813 if ((agemod <= cln_minage) && (agestat <= cln_minage)) 814 return; 815 816 /* 817 * if this file is a symlink, then find out the target of the 818 * symlink before unlink-ing the file itself 819 */ 820 if (S_ISLNK(stbuf.st_mode)) { 821 PRIV_START 822 res = readlink(name, linkbuf, sizeof(linkbuf)); 823 PRIV_END 824 if (res < 0) { 825 printf("\terror return from readlink(%s):\n", name); 826 printf("\t %s\n", strerror(errno)); 827 return; 828 } 829 if (res == sizeof(linkbuf)) 830 res--; 831 linkbuf[res] = '\0'; 832 } 833 834 cln_filecnt++; 835 cln_sizecnt += stbuf.st_size; 836 837 if (cln_testonly) { 838 printf("\twould remove %s\n", name); 839 if (S_ISLNK(stbuf.st_mode)) { 840 printf("\t (which is a symlink to %s)\n", linkbuf); 841 } 842 } else { 843 PRIV_START 844 res = unlink(name); 845 PRIV_END 846 if (res < 0) 847 printf("\tcannot remove %s (!)\n", name); 848 else 849 printf("\tremoved %s\n", name); 850 /* XXX 851 * Note that for a df* file, this code should also check to see 852 * if it is a symlink to some other file, and if the original 853 * lpr command included '-r' ("remove file"). Of course, this 854 * code would not be removing the df* file unless there was no 855 * matching cf* file, and without the cf* file it is currently 856 * impossible to determine if '-r' had been specified... 857 * 858 * As a result of this quandry, we may be leaving behind a 859 * user's file that was supposed to have been removed after 860 * being printed. This may effect services such as CAP or 861 * samba, if they were configured to use 'lpr -r', and if 862 * datafiles are not being properly removed. 863 */ 864 if (S_ISLNK(stbuf.st_mode)) { 865 printf("\t (which was a symlink to %s)\n", linkbuf); 866 } 867 } 868 } 869 870 /* 871 * Enable queuing to the printer (allow lpr to add new jobs to the queue). 872 */ 873 void 874 enable_q(struct printer *pp) 875 { 876 int setres; 877 char lf[MAXPATHLEN]; 878 879 lock_file_name(pp, lf, sizeof lf); 880 printf("%s:\n", pp->printer); 881 882 setres = set_qstate(SQS_ENABLEQ, lf); 883 } 884 885 /* 886 * Disable queuing. 887 */ 888 void 889 disable_q(struct printer *pp) 890 { 891 int setres; 892 char lf[MAXPATHLEN]; 893 894 lock_file_name(pp, lf, sizeof lf); 895 printf("%s:\n", pp->printer); 896 897 setres = set_qstate(SQS_DISABLEQ, lf); 898 } 899 900 /* 901 * Disable queuing and printing and put a message into the status file 902 * (reason for being down). If the user specified `-msg', then use 903 * everything after that as the message for the status file. If the 904 * user did NOT specify `-msg', then the command should take the first 905 * parameter as the printer name, and all remaining parameters as the 906 * message for the status file. (This is to be compatible with the 907 * original definition of 'down', which was implemented long before 908 * `-msg' was around). 909 */ 910 void 911 down_gi(int argc, char *argv[]) 912 { 913 914 /* If `-msg' was specified, then this routine has nothing to do. */ 915 if (generic_msg != NULL) 916 return; 917 918 /* 919 * If the user only gave one parameter, then use a default msg. 920 * (if argc == 1 at this point, then *argv == name of printer). 921 */ 922 if (argc == 1) { 923 generic_msg = strdup("printing disabled\n"); 924 return; 925 } 926 927 /* 928 * The user specified multiple parameters, and did not specify 929 * `-msg'. Build a message from all the parameters after the 930 * first one (and nullify those parameters so generic-processing 931 * will not process them as printer-queue names). 932 */ 933 argc--; 934 argv++; 935 generic_msg = args2line(argc, argv); 936 for (; argc > 0; argc--, argv++) 937 *argv = generic_nullarg; /* "erase" it */ 938 } 939 940 void 941 down_q(struct printer *pp) 942 { 943 int setres; 944 char lf[MAXPATHLEN]; 945 946 lock_file_name(pp, lf, sizeof lf); 947 printf("%s:\n", pp->printer); 948 949 setres = set_qstate(SQS_DISABLEQ+SQS_STOPP, lf); 950 if (setres >= 0) 951 upstat(pp, generic_msg, 1); 952 } 953 954 /* 955 * Exit lpc 956 */ 957 void 958 quit(int argc __unused, char *argv[] __unused) 959 { 960 exit(0); 961 } 962 963 /* 964 * Kill and restart the daemon. 965 */ 966 void 967 restart_q(struct printer *pp) 968 { 969 int killres, setres, startok; 970 char lf[MAXPATHLEN]; 971 972 lock_file_name(pp, lf, sizeof lf); 973 printf("%s:\n", pp->printer); 974 975 killres = kill_qtask(lf); 976 977 /* 978 * XXX - if the kill worked, we should probably sleep for 979 * a second or so before trying to restart the queue. 980 */ 981 982 /* make sure the queue is set to print jobs */ 983 setres = set_qstate(SQS_STARTP, lf); 984 985 PRIV_START 986 startok = startdaemon(pp); 987 PRIV_END 988 if (!startok) 989 printf("\tcouldn't restart daemon\n"); 990 else 991 printf("\tdaemon restarted\n"); 992 } 993 994 /* 995 * Set the status message of each queue listed. Requires a "-msg" 996 * parameter to indicate the end of the queue list and start of msg text. 997 */ 998 void 999 setstatus_gi(int argc __unused, char *argv[] __unused) 1000 { 1001 1002 if (generic_msg == NULL) { 1003 printf("You must specify '-msg' before the text of the new status message.\n"); 1004 generic_initerr = 1; 1005 } 1006 } 1007 1008 void 1009 setstatus_q(struct printer *pp) 1010 { 1011 struct stat stbuf; 1012 int not_shown; 1013 char lf[MAXPATHLEN]; 1014 1015 lock_file_name(pp, lf, sizeof lf); 1016 printf("%s:\n", pp->printer); 1017 1018 upstat(pp, generic_msg, 1); 1019 1020 /* 1021 * Warn the user if 'lpq' will not display this new status-message. 1022 * Note that if lock file does not exist, then the queue is enabled 1023 * for both queuing and printing. 1024 */ 1025 not_shown = 1; 1026 if (stat(lf, &stbuf) >= 0) { 1027 if (stbuf.st_mode & LFM_PRINT_DIS) 1028 not_shown = 0; 1029 } 1030 if (not_shown) { 1031 printf("\tnote: This queue currently has printing enabled,\n"); 1032 printf("\t so this -msg will only be shown by 'lpq' if\n"); 1033 printf("\t a job is actively printing on it.\n"); 1034 } 1035 } 1036 1037 /* 1038 * Enable printing on the specified printer and startup the daemon. 1039 */ 1040 void 1041 start_q(struct printer *pp) 1042 { 1043 int setres, startok; 1044 char lf[MAXPATHLEN]; 1045 1046 lock_file_name(pp, lf, sizeof lf); 1047 printf("%s:\n", pp->printer); 1048 1049 setres = set_qstate(SQS_STARTP, lf); 1050 1051 PRIV_START 1052 startok = startdaemon(pp); 1053 PRIV_END 1054 if (!startok) 1055 printf("\tcouldn't start daemon\n"); 1056 else 1057 printf("\tdaemon started\n"); 1058 PRIV_END 1059 } 1060 1061 /* 1062 * Print the status of the printer queue. 1063 */ 1064 void 1065 status(struct printer *pp) 1066 { 1067 struct stat stbuf; 1068 register int fd, i; 1069 register struct dirent *dp; 1070 DIR *dirp; 1071 char file[MAXPATHLEN]; 1072 1073 printf("%s:\n", pp->printer); 1074 lock_file_name(pp, file, sizeof file); 1075 if (stat(file, &stbuf) >= 0) { 1076 printf("\tqueuing is %s\n", 1077 ((stbuf.st_mode & LFM_QUEUE_DIS) ? "disabled" 1078 : "enabled")); 1079 printf("\tprinting is %s\n", 1080 ((stbuf.st_mode & LFM_PRINT_DIS) ? "disabled" 1081 : "enabled")); 1082 } else { 1083 printf("\tqueuing is enabled\n"); 1084 printf("\tprinting is enabled\n"); 1085 } 1086 if ((dirp = opendir(pp->spool_dir)) == NULL) { 1087 printf("\tcannot examine spool directory\n"); 1088 return; 1089 } 1090 i = 0; 1091 while ((dp = readdir(dirp)) != NULL) { 1092 if (*dp->d_name == 'c' && dp->d_name[1] == 'f') 1093 i++; 1094 } 1095 closedir(dirp); 1096 if (i == 0) 1097 printf("\tno entries in spool area\n"); 1098 else if (i == 1) 1099 printf("\t1 entry in spool area\n"); 1100 else 1101 printf("\t%d entries in spool area\n", i); 1102 fd = open(file, O_RDONLY); 1103 if (fd < 0 || flock(fd, LOCK_SH|LOCK_NB) == 0) { 1104 (void) close(fd); /* unlocks as well */ 1105 printf("\tprinter idle\n"); 1106 return; 1107 } 1108 (void) close(fd); 1109 /* print out the contents of the status file, if it exists */ 1110 status_file_name(pp, file, sizeof file); 1111 fd = open(file, O_RDONLY|O_SHLOCK); 1112 if (fd >= 0) { 1113 (void) fstat(fd, &stbuf); 1114 if (stbuf.st_size > 0) { 1115 putchar('\t'); 1116 while ((i = read(fd, line, sizeof(line))) > 0) 1117 (void) fwrite(line, 1, i, stdout); 1118 } 1119 (void) close(fd); /* unlocks as well */ 1120 } 1121 } 1122 1123 /* 1124 * Stop the specified daemon after completing the current job and disable 1125 * printing. 1126 */ 1127 void 1128 stop_q(struct printer *pp) 1129 { 1130 int setres; 1131 char lf[MAXPATHLEN]; 1132 1133 lock_file_name(pp, lf, sizeof lf); 1134 printf("%s:\n", pp->printer); 1135 1136 setres = set_qstate(SQS_STOPP, lf); 1137 1138 if (setres >= 0) 1139 upstat(pp, "printing disabled\n", 0); 1140 } 1141 1142 struct jobqueue **queue; 1143 int nitems; 1144 time_t mtime; 1145 1146 /* 1147 * Put the specified jobs at the top of printer queue. 1148 */ 1149 void 1150 topq(int argc, char *argv[]) 1151 { 1152 register int i; 1153 struct stat stbuf; 1154 int cmdstatus, changed; 1155 struct printer myprinter, *pp = &myprinter; 1156 1157 if (argc < 3) { 1158 printf("usage: topq printer [jobnum ...] [user ...]\n"); 1159 return; 1160 } 1161 1162 --argc; 1163 ++argv; 1164 init_printer(pp); 1165 cmdstatus = getprintcap(*argv, pp); 1166 switch(cmdstatus) { 1167 default: 1168 fatal(pp, "%s", pcaperr(cmdstatus)); 1169 case PCAPERR_NOTFOUND: 1170 printf("unknown printer %s\n", *argv); 1171 return; 1172 case PCAPERR_TCOPEN: 1173 printf("warning: %s: unresolved tc= reference(s)", *argv); 1174 break; 1175 case PCAPERR_SUCCESS: 1176 break; 1177 } 1178 printf("%s:\n", pp->printer); 1179 1180 PRIV_START 1181 if (chdir(pp->spool_dir) < 0) { 1182 printf("\tcannot chdir to %s\n", pp->spool_dir); 1183 goto out; 1184 } 1185 PRIV_END 1186 nitems = getq(pp, &queue); 1187 if (nitems == 0) 1188 return; 1189 changed = 0; 1190 mtime = queue[0]->job_time; 1191 for (i = argc; --i; ) { 1192 if (doarg(argv[i]) == 0) { 1193 printf("\tjob %s is not in the queue\n", argv[i]); 1194 continue; 1195 } else 1196 changed++; 1197 } 1198 for (i = 0; i < nitems; i++) 1199 free(queue[i]); 1200 free(queue); 1201 if (!changed) { 1202 printf("\tqueue order unchanged\n"); 1203 return; 1204 } 1205 /* 1206 * Turn on the public execute bit of the lock file to 1207 * get lpd to rebuild the queue after the current job. 1208 */ 1209 PRIV_START 1210 if (changed && stat(pp->lock_file, &stbuf) >= 0) 1211 (void) chmod(pp->lock_file, stbuf.st_mode | LFM_RESET_QUE); 1212 1213 out: 1214 PRIV_END 1215 } 1216 1217 /* 1218 * Reposition the job by changing the modification time of 1219 * the control file. 1220 */ 1221 static int 1222 touch(struct jobqueue *jq) 1223 { 1224 struct timeval tvp[2]; 1225 int ret; 1226 1227 tvp[0].tv_sec = tvp[1].tv_sec = --mtime; 1228 tvp[0].tv_usec = tvp[1].tv_usec = 0; 1229 PRIV_START 1230 ret = utimes(jq->job_cfname, tvp); 1231 PRIV_END 1232 return (ret); 1233 } 1234 1235 /* 1236 * Checks if specified job name is in the printer's queue. 1237 * Returns: negative (-1) if argument name is not in the queue. 1238 */ 1239 static int 1240 doarg(char *job) 1241 { 1242 register struct jobqueue **qq; 1243 register int jobnum, n; 1244 register char *cp, *machine; 1245 int cnt = 0; 1246 FILE *fp; 1247 1248 /* 1249 * Look for a job item consisting of system name, colon, number 1250 * (example: ucbarpa:114) 1251 */ 1252 if ((cp = strchr(job, ':')) != NULL) { 1253 machine = job; 1254 *cp++ = '\0'; 1255 job = cp; 1256 } else 1257 machine = NULL; 1258 1259 /* 1260 * Check for job specified by number (example: 112 or 235ucbarpa). 1261 */ 1262 if (isdigit(*job)) { 1263 jobnum = 0; 1264 do 1265 jobnum = jobnum * 10 + (*job++ - '0'); 1266 while (isdigit(*job)); 1267 for (qq = queue + nitems; --qq >= queue; ) { 1268 n = 0; 1269 for (cp = (*qq)->job_cfname+3; isdigit(*cp); ) 1270 n = n * 10 + (*cp++ - '0'); 1271 if (jobnum != n) 1272 continue; 1273 if (*job && strcmp(job, cp) != 0) 1274 continue; 1275 if (machine != NULL && strcmp(machine, cp) != 0) 1276 continue; 1277 if (touch(*qq) == 0) { 1278 printf("\tmoved %s\n", (*qq)->job_cfname); 1279 cnt++; 1280 } 1281 } 1282 return(cnt); 1283 } 1284 /* 1285 * Process item consisting of owner's name (example: henry). 1286 */ 1287 for (qq = queue + nitems; --qq >= queue; ) { 1288 PRIV_START 1289 fp = fopen((*qq)->job_cfname, "r"); 1290 PRIV_END 1291 if (fp == NULL) 1292 continue; 1293 while (get_line(fp) > 0) 1294 if (line[0] == 'P') 1295 break; 1296 (void) fclose(fp); 1297 if (line[0] != 'P' || strcmp(job, line+1) != 0) 1298 continue; 1299 if (touch(*qq) == 0) { 1300 printf("\tmoved %s\n", (*qq)->job_cfname); 1301 cnt++; 1302 } 1303 } 1304 return(cnt); 1305 } 1306 1307 /* 1308 * Enable both queuing & printing, and start printer (undo `down'). 1309 */ 1310 void 1311 up_q(struct printer *pp) 1312 { 1313 int setres, startok; 1314 char lf[MAXPATHLEN]; 1315 1316 lock_file_name(pp, lf, sizeof lf); 1317 printf("%s:\n", pp->printer); 1318 1319 setres = set_qstate(SQS_ENABLEQ+SQS_STARTP, lf); 1320 1321 PRIV_START 1322 startok = startdaemon(pp); 1323 PRIV_END 1324 if (!startok) 1325 printf("\tcouldn't start daemon\n"); 1326 else 1327 printf("\tdaemon started\n"); 1328 } 1329