1 /* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * (c) UNIX System Laboratories, Inc. 5 * All or some portions of this file are derived from material licensed 6 * to the University of California by American Telephone and Telegraph 7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8 * the permission of UNIX System Laboratories, Inc. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software 19 * must display the following acknowledgement: 20 * This product includes software developed by the University of 21 * California, Berkeley and its contributors. 22 * 4. Neither the name of the University nor the names of its contributors 23 * may be used to endorse or promote products derived from this software 24 * without specific prior written permission. 25 * 26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 37 */ 38 39 #ifndef lint 40 /* 41 static char sccsid[] = "@(#)common.c 8.5 (Berkeley) 4/28/95"; 42 */ 43 static const char rcsid[] = 44 "$FreeBSD$"; 45 #endif /* not lint */ 46 47 #include <sys/param.h> 48 #include <sys/stat.h> 49 #include <sys/time.h> 50 #include <sys/types.h> 51 52 #include <dirent.h> 53 #include <errno.h> 54 #include <fcntl.h> 55 #include <stdio.h> 56 #include <stdlib.h> 57 #include <string.h> 58 #include <unistd.h> 59 60 #include "lp.h" 61 #include "lp.local.h" 62 #include "pathnames.h" 63 64 /* 65 * Routines and data common to all the line printer functions. 66 */ 67 char line[BUFSIZ]; 68 const char *progname; /* program name */ 69 70 extern uid_t uid, euid; 71 72 static int compar(const void *_p1, const void *_p2); 73 74 /* 75 * Getline reads a line from the control file cfp, removes tabs, converts 76 * new-line to null and leaves it in line. 77 * Returns 0 at EOF or the number of characters read. 78 */ 79 int 80 getline(FILE *cfp) 81 { 82 register int linel = 0; 83 register char *lp = line; 84 register int c; 85 86 while ((c = getc(cfp)) != '\n' && (size_t)(linel+1) < sizeof(line)) { 87 if (c == EOF) 88 return(0); 89 if (c == '\t') { 90 do { 91 *lp++ = ' '; 92 linel++; 93 } while ((linel & 07) != 0 && (size_t)(linel+1) < 94 sizeof(line)); 95 continue; 96 } 97 *lp++ = c; 98 linel++; 99 } 100 *lp++ = '\0'; 101 return(linel); 102 } 103 104 /* 105 * Scan the current directory and make a list of daemon files sorted by 106 * creation time. 107 * Return the number of entries and a pointer to the list. 108 */ 109 int 110 getq(const struct printer *pp, struct jobqueue *(*namelist[])) 111 { 112 register struct dirent *d; 113 register struct jobqueue *q, **queue; 114 size_t arraysz, nitems; 115 struct stat stbuf; 116 DIR *dirp; 117 int statres; 118 119 seteuid(euid); 120 if ((dirp = opendir(pp->spool_dir)) == NULL) { 121 seteuid(uid); 122 return (-1); 123 } 124 if (fstat(dirp->dd_fd, &stbuf) < 0) 125 goto errdone; 126 seteuid(uid); 127 128 /* 129 * Estimate the array size by taking the size of the directory file 130 * and dividing it by a multiple of the minimum size entry. 131 */ 132 arraysz = (stbuf.st_size / 24); 133 queue = (struct jobqueue **)malloc(arraysz * sizeof(struct jobqueue *)); 134 if (queue == NULL) 135 goto errdone; 136 137 nitems = 0; 138 while ((d = readdir(dirp)) != NULL) { 139 if (d->d_name[0] != 'c' || d->d_name[1] != 'f') 140 continue; /* daemon control files only */ 141 seteuid(euid); 142 statres = stat(d->d_name, &stbuf); 143 seteuid(uid); 144 if (statres < 0) 145 continue; /* Doesn't exist */ 146 q = (struct jobqueue *)malloc(sizeof(time_t) + strlen(d->d_name) 147 + 1); 148 if (q == NULL) 149 goto errdone; 150 q->job_time = stbuf.st_mtime; 151 strcpy(q->job_cfname, d->d_name); 152 /* 153 * Check to make sure the array has space left and 154 * realloc the maximum size. 155 */ 156 if (++nitems > arraysz) { 157 arraysz *= 2; 158 queue = (struct jobqueue **)realloc((char *)queue, 159 arraysz * sizeof(struct jobqueue *)); 160 if (queue == NULL) 161 goto errdone; 162 } 163 queue[nitems-1] = q; 164 } 165 closedir(dirp); 166 if (nitems) 167 qsort(queue, nitems, sizeof(struct jobqueue *), compar); 168 *namelist = queue; 169 return(nitems); 170 171 errdone: 172 closedir(dirp); 173 seteuid(uid); 174 return (-1); 175 } 176 177 /* 178 * Compare modification times. 179 */ 180 static int 181 compar(const void *p1, const void *p2) 182 { 183 const struct jobqueue *qe1, *qe2; 184 185 qe1 = *(const struct jobqueue * const *)p1; 186 qe2 = *(const struct jobqueue * const *)p2; 187 188 if (qe1->job_time < qe2->job_time) 189 return (-1); 190 if (qe1->job_time > qe2->job_time) 191 return (1); 192 /* 193 * At this point, the two files have the same last-modification time. 194 * return a result based on filenames, so that 'cfA001some.host' will 195 * come before 'cfA002some.host'. Since the jobid ('001') will wrap 196 * around when it gets to '999', we also assume that '9xx' jobs are 197 * older than '0xx' jobs. 198 */ 199 if ((qe1->job_cfname[3] == '9') && (qe2->job_cfname[3] == '0')) 200 return (-1); 201 if ((qe1->job_cfname[3] == '0') && (qe2->job_cfname[3] == '9')) 202 return (1); 203 return (strcmp(qe1->job_cfname, qe2->job_cfname)); 204 } 205 206 /* sleep n milliseconds */ 207 void 208 delay(int millisec) 209 { 210 struct timeval tdelay; 211 212 if (millisec <= 0 || millisec > 10000) 213 fatal((struct printer *)0, /* fatal() knows how to deal */ 214 "unreasonable delay period (%d)", millisec); 215 tdelay.tv_sec = millisec / 1000; 216 tdelay.tv_usec = millisec * 1000 % 1000000; 217 (void) select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &tdelay); 218 } 219 220 char * 221 lock_file_name(const struct printer *pp, char *buf, size_t len) 222 { 223 static char staticbuf[MAXPATHLEN]; 224 225 if (buf == 0) 226 buf = staticbuf; 227 if (len == 0) 228 len = MAXPATHLEN; 229 230 if (pp->lock_file[0] == '/') 231 strlcpy(buf, pp->lock_file, len); 232 else 233 snprintf(buf, len, "%s/%s", pp->spool_dir, pp->lock_file); 234 235 return buf; 236 } 237 238 char * 239 status_file_name(const struct printer *pp, char *buf, size_t len) 240 { 241 static char staticbuf[MAXPATHLEN]; 242 243 if (buf == 0) 244 buf = staticbuf; 245 if (len == 0) 246 len = MAXPATHLEN; 247 248 if (pp->status_file[0] == '/') 249 strlcpy(buf, pp->status_file, len); 250 else 251 snprintf(buf, len, "%s/%s", pp->spool_dir, pp->status_file); 252 253 return buf; 254 } 255 256 /* 257 * Routine to change operational state of a print queue. The operational 258 * state is indicated by the access bits on the lock file for the queue. 259 * At present, this is only called from various routines in lpc/cmds.c. 260 * 261 * XXX - Note that this works by changing access-bits on the 262 * file, and you can only do that if you are the owner of 263 * the file, or root. Thus, this won't really work for 264 * userids in the "LPR_OPER" group, unless lpc is running 265 * setuid to root (or maybe setuid to daemon). 266 * Generally lpc is installed setgid to daemon, but does 267 * not run setuid. 268 */ 269 int 270 set_qstate(int action, const char *lfname) 271 { 272 struct stat stbuf; 273 mode_t chgbits, newbits, oldmask; 274 const char *failmsg, *okmsg; 275 int chres, errsav, fd, res, statres; 276 277 /* 278 * Find what the current access-bits are. 279 */ 280 memset(&stbuf, 0, sizeof(stbuf)); 281 seteuid(euid); 282 statres = stat(lfname, &stbuf); 283 errsav = errno; 284 seteuid(uid); 285 if ((statres < 0) && (errsav != ENOENT)) { 286 printf("\tcannot stat() lock file\n"); 287 return (SQS_STATFAIL); 288 /* NOTREACHED */ 289 } 290 291 /* 292 * Determine which bit(s) should change for the requested action. 293 */ 294 chgbits = stbuf.st_mode; 295 newbits = LOCK_FILE_MODE; 296 okmsg = NULL; 297 failmsg = NULL; 298 if (action & SQS_DISABLEQ) { 299 chgbits |= LFM_QUEUE_DIS; 300 newbits |= LFM_QUEUE_DIS; 301 okmsg = "queuing disabled"; 302 failmsg = "disable queuing"; 303 } 304 if (action & SQS_STOPP) { 305 chgbits |= LFM_PRINT_DIS; 306 newbits |= LFM_PRINT_DIS; 307 okmsg = "printing disabled"; 308 failmsg = "disable printing"; 309 if (action & SQS_DISABLEQ) { 310 okmsg = "printer and queuing disabled"; 311 failmsg = "disable queuing and printing"; 312 } 313 } 314 if (action & SQS_ENABLEQ) { 315 chgbits &= ~LFM_QUEUE_DIS; 316 newbits &= ~LFM_QUEUE_DIS; 317 okmsg = "queuing enabled"; 318 failmsg = "enable queuing"; 319 } 320 if (action & SQS_STARTP) { 321 chgbits &= ~LFM_PRINT_DIS; 322 newbits &= ~LFM_PRINT_DIS; 323 okmsg = "printing enabled"; 324 failmsg = "enable printing"; 325 } 326 if (okmsg == NULL) { 327 /* This routine was called with an invalid action. */ 328 printf("\t<error in set_qstate!>\n"); 329 return (SQS_PARMERR); 330 /* NOTREACHED */ 331 } 332 333 res = 0; 334 if (statres >= 0) { 335 /* The file already exists, so change the access. */ 336 seteuid(euid); 337 chres = chmod(lfname, chgbits); 338 errsav = errno; 339 seteuid(uid); 340 res = SQS_CHGOK; 341 if (res < 0) 342 res = SQS_CHGFAIL; 343 } else if (newbits == LOCK_FILE_MODE) { 344 /* 345 * The file does not exist, but the state requested is 346 * the same as the default state when no file exists. 347 * Thus, there is no need to create the file. 348 */ 349 res = SQS_SKIPCREOK; 350 } else { 351 /* 352 * The file did not exist, so create it with the 353 * appropriate access bits for the requested action. 354 * Push a new umask around that create, to make sure 355 * all the read/write bits are set as desired. 356 */ 357 oldmask = umask(S_IWOTH); 358 seteuid(euid); 359 fd = open(lfname, O_WRONLY|O_CREAT, newbits); 360 errsav = errno; 361 seteuid(uid); 362 umask(oldmask); 363 res = SQS_CREFAIL; 364 if (fd >= 0) { 365 res = SQS_CREOK; 366 close(fd); 367 } 368 } 369 370 switch (res) { 371 case SQS_CHGOK: 372 case SQS_CREOK: 373 case SQS_SKIPCREOK: 374 printf("\t%s\n", okmsg); 375 break; 376 case SQS_CREFAIL: 377 printf("\tcannot create lock file: %s\n", 378 strerror(errsav)); 379 break; 380 default: 381 printf("\tcannot %s: %s\n", failmsg, strerror(errsav)); 382 break; 383 } 384 385 return (res); 386 } 387 388 /* routine to get a current timestamp, optionally in a standard-fmt string */ 389 void 390 lpd_gettime(struct timespec *tsp, char *strp, size_t strsize) 391 { 392 struct timespec local_ts; 393 struct timeval btime; 394 char tempstr[TIMESTR_SIZE]; 395 #ifdef STRFTIME_WRONG_z 396 char *destp; 397 #endif 398 399 if (tsp == NULL) 400 tsp = &local_ts; 401 402 /* some platforms have a routine called clock_gettime, but the 403 * routine does nothing but return "not implemented". */ 404 memset(tsp, 0, sizeof(struct timespec)); 405 if (clock_gettime(CLOCK_REALTIME, tsp)) { 406 /* nanosec-aware rtn failed, fall back to microsec-aware rtn */ 407 memset(tsp, 0, sizeof(struct timespec)); 408 gettimeofday(&btime, NULL); 409 tsp->tv_sec = btime.tv_sec; 410 tsp->tv_nsec = btime.tv_usec * 1000; 411 } 412 413 /* caller may not need a character-ized version */ 414 if ((strp == NULL) || (strsize < 1)) 415 return; 416 417 strftime(tempstr, TIMESTR_SIZE, LPD_TIMESTAMP_PATTERN, 418 localtime(&tsp->tv_sec)); 419 420 /* 421 * This check is for implementations of strftime which treat %z 422 * (timezone as [+-]hhmm ) like %Z (timezone as characters), or 423 * completely ignore %z. This section is not needed on freebsd. 424 * I'm not sure this is completely right, but it should work OK 425 * for EST and EDT... 426 */ 427 #ifdef STRFTIME_WRONG_z 428 destp = strrchr(tempstr, ':'); 429 if (destp != NULL) { 430 destp += 3; 431 if ((*destp != '+') && (*destp != '-')) { 432 char savday[6]; 433 int tzmin = timezone / 60; 434 int tzhr = tzmin / 60; 435 if (daylight) 436 tzhr--; 437 strcpy(savday, destp + strlen(destp) - 4); 438 snprintf(destp, (destp - tempstr), "%+03d%02d", 439 (-1*tzhr), tzmin % 60); 440 strcat(destp, savday); 441 } 442 } 443 #endif 444 445 if (strsize > TIMESTR_SIZE) { 446 strsize = TIMESTR_SIZE; 447 strp[TIMESTR_SIZE+1] = '\0'; 448 } 449 strlcpy(strp, tempstr, strsize); 450 } 451 452 /* routines for writing transfer-statistic records */ 453 void 454 trstat_init(struct printer *pp, const char *fname, int filenum) 455 { 456 register const char *srcp; 457 register char *destp, *endp; 458 459 /* 460 * Figure out the job id of this file. The filename should be 461 * 'cf', 'df', or maybe 'tf', followed by a letter (or sometimes 462 * two), followed by the jobnum, followed by a hostname. 463 * The jobnum is usually 3 digits, but might be as many as 5. 464 * Note that some care has to be taken parsing this, as the 465 * filename could be coming from a remote-host, and thus might 466 * not look anything like what is expected... 467 */ 468 memset(pp->jobnum, 0, sizeof(pp->jobnum)); 469 pp->jobnum[0] = '0'; 470 srcp = strchr(fname, '/'); 471 if (srcp == NULL) 472 srcp = fname; 473 destp = &(pp->jobnum[0]); 474 endp = destp + 5; 475 while (*srcp != '\0' && (*srcp < '0' || *srcp > '9')) 476 srcp++; 477 while (*srcp >= '0' && *srcp <= '9' && destp < endp) 478 *(destp++) = *(srcp++); 479 480 /* get the starting time in both numeric and string formats, and 481 * save those away along with the file-number */ 482 pp->jobdfnum = filenum; 483 lpd_gettime(&pp->tr_start, pp->tr_timestr, (size_t)TIMESTR_SIZE); 484 485 return; 486 } 487 488 void 489 trstat_write(struct printer *pp, tr_sendrecv sendrecv, size_t bytecnt, 490 const char *userid, const char *otherhost, const char *orighost) 491 { 492 #define STATLINE_SIZE 1024 493 double trtime; 494 size_t remspace; 495 int statfile; 496 char thishost[MAXHOSTNAMELEN], statline[STATLINE_SIZE]; 497 char *eostat; 498 const char *lprhost, *recvdev, *recvhost, *rectype; 499 const char *sendhost, *statfname; 500 #define UPD_EOSTAT(xStr) do { \ 501 eostat = strchr(xStr, '\0'); \ 502 remspace = eostat - xStr; \ 503 } while(0) 504 505 lpd_gettime(&pp->tr_done, NULL, (size_t)0); 506 trtime = DIFFTIME_TS(pp->tr_done, pp->tr_start); 507 508 gethostname(thishost, sizeof(thishost)); 509 lprhost = sendhost = recvhost = recvdev = NULL; 510 switch (sendrecv) { 511 case TR_SENDING: 512 rectype = "send"; 513 statfname = pp->stat_send; 514 sendhost = thishost; 515 recvhost = otherhost; 516 break; 517 case TR_RECVING: 518 rectype = "recv"; 519 statfname = pp->stat_recv; 520 sendhost = otherhost; 521 recvhost = thishost; 522 break; 523 case TR_PRINTING: 524 /* 525 * This case is for copying to a device (presumably local, 526 * though filters using things like 'net/CAP' can confuse 527 * this assumption...). 528 */ 529 rectype = "prnt"; 530 statfname = pp->stat_send; 531 sendhost = thishost; 532 recvdev = _PATH_DEFDEVLP; 533 if (pp->lp) recvdev = pp->lp; 534 break; 535 default: 536 /* internal error... should we syslog/printf an error? */ 537 return; 538 } 539 if (statfname == NULL) 540 return; 541 542 /* 543 * the original-host and userid are found out by reading thru the 544 * cf (control-file) for the job. Unfortunately, on incoming jobs 545 * the df's (data-files) are sent before the matching cf, so the 546 * orighost & userid are generally not-available for incoming jobs. 547 * 548 * (it would be nice to create a work-around for that..) 549 */ 550 if (orighost && (*orighost != '\0')) 551 lprhost = orighost; 552 else 553 lprhost = ".na."; 554 if (*userid == '\0') 555 userid = NULL; 556 557 /* 558 * Format of statline. 559 * Some of the keywords listed here are not implemented here, but 560 * they are listed to reserve the meaning for a given keyword. 561 * Fields are separated by a blank. The fields in statline are: 562 * <tstamp> - time the transfer started 563 * <ptrqueue> - name of the printer queue (the short-name...) 564 * <hname> - hostname the file originally came from (the 565 * 'lpr host'), if known, or "_na_" if not known. 566 * <xxx> - id of job from that host (generally three digits) 567 * <n> - file count (# of file within job) 568 * <rectype> - 4-byte field indicating the type of transfer 569 * statistics record. "send" means it's from the 570 * host sending a datafile, "recv" means it's from 571 * a host as it receives a datafile. 572 * user=<userid> - user who sent the job (if known) 573 * secs=<n> - seconds it took to transfer the file 574 * bytes=<n> - number of bytes transfered (ie, "bytecount") 575 * bps=<n.n>e<n> - Bytes/sec (if the transfer was "big enough" 576 * for this to be useful) 577 * ! top=<str> - type of printer (if the type is defined in 578 * printcap, and if this statline is for sending 579 * a file to that ptr) 580 * ! qls=<n> - queue-length at start of send/print-ing a job 581 * ! qle=<n> - queue-length at end of send/print-ing a job 582 * sip=<addr> - IP address of sending host, only included when 583 * receiving a job. 584 * shost=<hname> - sending host (if that does != the original host) 585 * rhost=<hname> - hostname receiving the file (ie, "destination") 586 * rdev=<dev> - device receiving the file, when the file is being 587 * send to a device instead of a remote host. 588 * 589 * Note: A single print job may be transferred multiple times. The 590 * original 'lpr' occurs on one host, and that original host might 591 * send to some interim host (or print server). That interim host 592 * might turn around and send the job to yet another host (most likely 593 * the real printer). The 'shost=' parameter is only included if the 594 * sending host for this particular transfer is NOT the same as the 595 * host which did the original 'lpr'. 596 * 597 * Many values have 'something=' tags before them, because they are 598 * in some sense "optional", or their order may vary. "Optional" may 599 * mean in the sense that different SITES might choose to have other 600 * fields in the record, or that some fields are only included under 601 * some circumstances. Programs processing these records should not 602 * assume the order or existence of any of these keyword fields. 603 */ 604 snprintf(statline, STATLINE_SIZE, "%s %s %s %s %03ld %s", 605 pp->tr_timestr, pp->printer, lprhost, pp->jobnum, 606 pp->jobdfnum, rectype); 607 UPD_EOSTAT(statline); 608 609 if (userid != NULL) { 610 snprintf(eostat, remspace, " user=%s", userid); 611 UPD_EOSTAT(statline); 612 } 613 snprintf(eostat, remspace, " secs=%#.2f bytes=%lu", trtime, 614 (unsigned long)bytecnt); 615 UPD_EOSTAT(statline); 616 617 /* 618 * The bps field duplicates info from bytes and secs, so do 619 * not bother to include it for very small files. 620 */ 621 if ((bytecnt > 25000) && (trtime > 1.1)) { 622 snprintf(eostat, remspace, " bps=%#.2e", 623 ((double)bytecnt/trtime)); 624 UPD_EOSTAT(statline); 625 } 626 627 if (sendrecv == TR_RECVING) { 628 if (remspace > 5+strlen(from_ip) ) { 629 snprintf(eostat, remspace, " sip=%s", from_ip); 630 UPD_EOSTAT(statline); 631 } 632 } 633 if (0 != strcmp(lprhost, sendhost)) { 634 if (remspace > 7+strlen(sendhost) ) { 635 snprintf(eostat, remspace, " shost=%s", sendhost); 636 UPD_EOSTAT(statline); 637 } 638 } 639 if (recvhost) { 640 if (remspace > 7+strlen(recvhost) ) { 641 snprintf(eostat, remspace, " rhost=%s", recvhost); 642 UPD_EOSTAT(statline); 643 } 644 } 645 if (recvdev) { 646 if (remspace > 6+strlen(recvdev) ) { 647 snprintf(eostat, remspace, " rdev=%s", recvdev); 648 UPD_EOSTAT(statline); 649 } 650 } 651 if (remspace > 1) { 652 strcpy(eostat, "\n"); 653 } else { 654 /* probably should back up to just before the final " x=".. */ 655 strcpy(statline+STATLINE_SIZE-2, "\n"); 656 } 657 statfile = open(statfname, O_WRONLY|O_APPEND, 0664); 658 if (statfile < 0) { 659 /* statfile was given, but we can't open it. should we 660 * syslog/printf this as an error? */ 661 return; 662 } 663 write(statfile, statline, strlen(statline)); 664 close(statfile); 665 666 return; 667 #undef UPD_EOSTAT 668 } 669 670 #include <stdarg.h> 671 672 void 673 fatal(const struct printer *pp, const char *msg, ...) 674 { 675 va_list ap; 676 va_start(ap, msg); 677 /* this error message is being sent to the 'from_host' */ 678 if (from_host != local_host) 679 (void)printf("%s: ", local_host); 680 (void)printf("%s: ", progname); 681 if (pp && pp->printer) 682 (void)printf("%s: ", pp->printer); 683 (void)vprintf(msg, ap); 684 va_end(ap); 685 (void)putchar('\n'); 686 exit(1); 687 } 688 689 /* 690 * Close all file descriptors from START on up. 691 * This is a horrific kluge, since getdtablesize() might return 692 * ``infinity'', in which case we will be spending a long time 693 * closing ``files'' which were never open. Perhaps it would 694 * be better to close the first N fds, for some small value of N. 695 */ 696 void 697 closeallfds(int start) 698 { 699 int stop = getdtablesize(); 700 for (; start < stop; start++) 701 close(start); 702 } 703 704