1 /*- 2 * ------+---------+---------+-------- + --------+---------+---------+---------* 3 * This file includes significant modifications done by: 4 * Copyright (c) 2003, 2004 - Garance Alistair Drosehn <gad@FreeBSD.org>. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * ------+---------+---------+-------- + --------+---------+---------+---------* 29 */ 30 31 /* 32 * This file contains changes from the Open Software Foundation. 33 */ 34 35 /* 36 * Copyright 1988, 1989 by the Massachusetts Institute of Technology 37 * 38 * Permission to use, copy, modify, and distribute this software and its 39 * documentation for any purpose and without fee is hereby granted, provided 40 * that the above copyright notice appear in all copies and that both that 41 * copyright notice and this permission notice appear in supporting 42 * documentation, and that the names of M.I.T. and the M.I.T. S.I.P.B. not be 43 * used in advertising or publicity pertaining to distribution of the 44 * software without specific, written prior permission. M.I.T. and the M.I.T. 45 * S.I.P.B. make no representations about the suitability of this software 46 * for any purpose. It is provided "as is" without express or implied 47 * warranty. 48 * 49 */ 50 51 /* 52 * newsyslog - roll over selected logs at the appropriate time, keeping the a 53 * specified number of backup files around. 54 */ 55 56 #include <sys/cdefs.h> 57 __FBSDID("$FreeBSD$"); 58 59 #define OSF 60 61 #include <sys/param.h> 62 #include <sys/queue.h> 63 #include <sys/sbuf.h> 64 #include <sys/stat.h> 65 #include <sys/wait.h> 66 67 #include <assert.h> 68 #include <ctype.h> 69 #include <err.h> 70 #include <errno.h> 71 #include <dirent.h> 72 #include <fcntl.h> 73 #include <fnmatch.h> 74 #include <glob.h> 75 #include <grp.h> 76 #include <paths.h> 77 #include <pwd.h> 78 #include <signal.h> 79 #include <stdio.h> 80 #include <libgen.h> 81 #include <stdlib.h> 82 #include <string.h> 83 #include <syslog.h> 84 #include <time.h> 85 #include <unistd.h> 86 87 #include "pathnames.h" 88 #include "extern.h" 89 90 /* 91 * Compression types 92 */ 93 #define COMPRESS_TYPES 5 /* Number of supported compression types */ 94 95 #define COMPRESS_NONE 0 96 #define COMPRESS_GZIP 1 97 #define COMPRESS_BZIP2 2 98 #define COMPRESS_XZ 3 99 #define COMPRESS_ZSTD 4 100 101 /* 102 * Bit-values for the 'flags' parsed from a config-file entry. 103 */ 104 #define CE_BINARY 0x0008 /* Logfile is in binary, do not add status */ 105 /* messages to logfile(s) when rotating. */ 106 #define CE_NOSIGNAL 0x0010 /* There is no process to signal when */ 107 /* trimming this file. */ 108 #define CE_TRIMAT 0x0020 /* trim file at a specific time. */ 109 #define CE_GLOB 0x0040 /* name of the log is file name pattern. */ 110 #define CE_SIGNALGROUP 0x0080 /* Signal a process-group instead of a single */ 111 /* process when trimming this file. */ 112 #define CE_CREATE 0x0100 /* Create the log file if it does not exist. */ 113 #define CE_NODUMP 0x0200 /* Set 'nodump' on newly created log file. */ 114 #define CE_PID2CMD 0x0400 /* Replace PID file with a shell command.*/ 115 #define CE_PLAIN0 0x0800 /* Do not compress zero'th history file */ 116 #define CE_RFC5424 0x1000 /* Use RFC5424 format rotation message */ 117 118 #define MIN_PID 5 /* Don't touch pids lower than this */ 119 #define MAX_PID 99999 /* was lower, see /usr/include/sys/proc.h */ 120 121 #define kbytes(size) (((size) + 1023) >> 10) 122 123 #define DEFAULT_MARKER "<default>" 124 #define DEBUG_MARKER "<debug>" 125 #define INCLUDE_MARKER "<include>" 126 #define DEFAULT_TIMEFNAME_FMT "%Y%m%dT%H%M%S" 127 128 #define MAX_OLDLOGS 65536 /* Default maximum number of old logfiles */ 129 130 struct compress_types { 131 const char *flag; /* Flag in configuration file */ 132 const char *suffix; /* Compression suffix */ 133 const char *path; /* Path to compression program */ 134 const char **flags; /* Compression program flags */ 135 int nflags; /* Program flags count */ 136 }; 137 138 static const char *gzip_flags[] = { "-f" }; 139 #define bzip2_flags gzip_flags 140 #define xz_flags gzip_flags 141 static const char *zstd_flags[] = { "-q", "--rm" }; 142 143 static const struct compress_types compress_type[COMPRESS_TYPES] = { 144 { "", "", "", NULL, 0 }, 145 { "Z", ".gz", _PATH_GZIP, gzip_flags, nitems(gzip_flags) }, 146 { "J", ".bz2", _PATH_BZIP2, bzip2_flags, nitems(bzip2_flags) }, 147 { "X", ".xz", _PATH_XZ, xz_flags, nitems(xz_flags) }, 148 { "Y", ".zst", _PATH_ZSTD, zstd_flags, nitems(zstd_flags) } 149 }; 150 151 struct conf_entry { 152 STAILQ_ENTRY(conf_entry) cf_nextp; 153 char *log; /* Name of the log */ 154 char *pid_cmd_file; /* PID or command file */ 155 char *r_reason; /* The reason this file is being rotated */ 156 int firstcreate; /* Creating log for the first time (-C). */ 157 int rotate; /* Non-zero if this file should be rotated */ 158 int fsize; /* size found for the log file */ 159 uid_t uid; /* Owner of log */ 160 gid_t gid; /* Group of log */ 161 int numlogs; /* Number of logs to keep */ 162 int trsize; /* Size cutoff to trigger trimming the log */ 163 int hours; /* Hours between log trimming */ 164 struct ptime_data *trim_at; /* Specific time to do trimming */ 165 unsigned int permissions; /* File permissions on the log */ 166 int flags; /* CE_BINARY */ 167 int compress; /* Compression */ 168 int sig; /* Signal to send */ 169 int def_cfg; /* Using the <default> rule for this file */ 170 }; 171 172 struct sigwork_entry { 173 SLIST_ENTRY(sigwork_entry) sw_nextp; 174 int sw_signum; /* the signal to send */ 175 int sw_pidok; /* true if pid value is valid */ 176 pid_t sw_pid; /* the process id from the PID file */ 177 const char *sw_pidtype; /* "daemon" or "process group" */ 178 int sw_runcmd; /* run command or send PID to signal */ 179 char sw_fname[1]; /* file the PID was read from or shell cmd */ 180 }; 181 182 struct zipwork_entry { 183 SLIST_ENTRY(zipwork_entry) zw_nextp; 184 const struct conf_entry *zw_conf; /* for chown/perm/flag info */ 185 const struct sigwork_entry *zw_swork; /* to know success of signal */ 186 int zw_fsize; /* size of the file to compress */ 187 char zw_fname[1]; /* the file to compress */ 188 }; 189 190 struct include_entry { 191 STAILQ_ENTRY(include_entry) inc_nextp; 192 const char *file; /* Name of file to process */ 193 }; 194 195 struct oldlog_entry { 196 char *fname; /* Filename of the log file */ 197 time_t t; /* Parsed timestamp of the logfile */ 198 }; 199 200 typedef enum { 201 FREE_ENT, KEEP_ENT 202 } fk_entry; 203 204 STAILQ_HEAD(cflist, conf_entry); 205 static SLIST_HEAD(swlisthead, sigwork_entry) swhead = 206 SLIST_HEAD_INITIALIZER(swhead); 207 static SLIST_HEAD(zwlisthead, zipwork_entry) zwhead = 208 SLIST_HEAD_INITIALIZER(zwhead); 209 STAILQ_HEAD(ilist, include_entry); 210 211 int dbg_at_times; /* -D Show details of 'trim_at' code */ 212 213 static int archtodir = 0; /* Archive old logfiles to other directory */ 214 static int createlogs; /* Create (non-GLOB) logfiles which do not */ 215 /* already exist. 1=='for entries with */ 216 /* C flag', 2=='for all entries'. */ 217 int verbose = 0; /* Print out what's going on */ 218 static int needroot = 1; /* Root privs are necessary */ 219 int noaction = 0; /* Don't do anything, just show it */ 220 static int norotate = 0; /* Don't rotate */ 221 static int nosignal; /* Do not send any signals */ 222 static int enforcepid = 0; /* If PID file does not exist or empty, do nothing */ 223 static int force = 0; /* Force the trim no matter what */ 224 static int rotatereq = 0; /* -R = Always rotate the file(s) as given */ 225 /* on the command (this also requires */ 226 /* that a list of files *are* given on */ 227 /* the run command). */ 228 static char *requestor; /* The name given on a -R request */ 229 static char *timefnamefmt = NULL;/* Use time based filenames instead of .0 */ 230 static char *archdirname; /* Directory path to old logfiles archive */ 231 static char *destdir = NULL; /* Directory to treat at root for logs */ 232 static const char *conf; /* Configuration file to use */ 233 234 struct ptime_data *dbg_timenow; /* A "timenow" value set via -D option */ 235 static struct ptime_data *timenow; /* The time to use for checking at-fields */ 236 237 #define DAYTIME_LEN 16 238 static char daytime[DAYTIME_LEN];/* The current time in human readable form, 239 * used for rotation-tracking messages. */ 240 241 /* Another buffer to hold the current time in RFC5424 format. Fractional 242 * seconds are allowed by the RFC, but are not included in the 243 * rotation-tracking messages written by newsyslog and so are not accounted for 244 * in the length below. 245 */ 246 #define DAYTIME_RFC5424_LEN sizeof("YYYY-MM-DDTHH:MM:SS+00:00") 247 static char daytime_rfc5424[DAYTIME_RFC5424_LEN]; 248 249 static char hostname[MAXHOSTNAMELEN]; /* hostname */ 250 static size_t hostname_shortlen; 251 252 static const char *path_syslogpid = _PATH_SYSLOGPID; 253 254 static struct cflist *get_worklist(char **files); 255 static void parse_file(FILE *cf, struct cflist *work_p, struct cflist *glob_p, 256 struct conf_entry *defconf_p, struct ilist *inclist); 257 static void add_to_queue(const char *fname, struct ilist *inclist); 258 static char *sob(char *p); 259 static char *son(char *p); 260 static int isnumberstr(const char *); 261 static int isglobstr(const char *); 262 static char *missing_field(char *p, char *errline); 263 static void change_attrs(const char *, const struct conf_entry *); 264 static const char *get_logfile_suffix(const char *logfile); 265 static fk_entry do_entry(struct conf_entry *); 266 static fk_entry do_rotate(const struct conf_entry *); 267 static void do_sigwork(struct sigwork_entry *); 268 static void do_zipwork(struct zipwork_entry *); 269 static struct sigwork_entry * 270 save_sigwork(const struct conf_entry *); 271 static struct zipwork_entry * 272 save_zipwork(const struct conf_entry *, const struct 273 sigwork_entry *, int, const char *); 274 static void set_swpid(struct sigwork_entry *, const struct conf_entry *); 275 static int sizefile(const char *); 276 static void expand_globs(struct cflist *work_p, struct cflist *glob_p); 277 static void free_clist(struct cflist *list); 278 static void free_entry(struct conf_entry *ent); 279 static struct conf_entry *init_entry(const char *fname, 280 struct conf_entry *src_entry); 281 static void parse_args(int argc, char **argv); 282 static int parse_doption(const char *doption); 283 static void usage(void); 284 static int log_trim(const char *logname, const struct conf_entry *log_ent); 285 static int age_old_log(const char *file); 286 static void savelog(char *from, char *to); 287 static void createdir(const struct conf_entry *ent, char *dirpart); 288 static void createlog(const struct conf_entry *ent); 289 static int parse_signal(const char *str); 290 291 /* 292 * All the following take a parameter of 'int', but expect values in the 293 * range of unsigned char. Define wrappers which take values of type 'char', 294 * whether signed or unsigned, and ensure they end up in the right range. 295 */ 296 #define isdigitch(Anychar) isdigit((u_char)(Anychar)) 297 #define isprintch(Anychar) isprint((u_char)(Anychar)) 298 #define isspacech(Anychar) isspace((u_char)(Anychar)) 299 #define tolowerch(Anychar) tolower((u_char)(Anychar)) 300 301 int 302 main(int argc, char **argv) 303 { 304 struct cflist *worklist; 305 struct conf_entry *p; 306 struct sigwork_entry *stmp; 307 struct zipwork_entry *ztmp; 308 309 SLIST_INIT(&swhead); 310 SLIST_INIT(&zwhead); 311 312 parse_args(argc, argv); 313 argc -= optind; 314 argv += optind; 315 316 if (needroot && getuid() && geteuid()) 317 errx(1, "must have root privs"); 318 worklist = get_worklist(argv); 319 320 /* 321 * Rotate all the files which need to be rotated. Note that 322 * some users have *hundreds* of entries in newsyslog.conf! 323 */ 324 while (!STAILQ_EMPTY(worklist)) { 325 p = STAILQ_FIRST(worklist); 326 STAILQ_REMOVE_HEAD(worklist, cf_nextp); 327 if (do_entry(p) == FREE_ENT) 328 free_entry(p); 329 } 330 331 /* 332 * Send signals to any processes which need a signal to tell 333 * them to close and re-open the log file(s) we have rotated. 334 * Note that zipwork_entries include pointers to these 335 * sigwork_entry's, so we can not free the entries here. 336 */ 337 if (!SLIST_EMPTY(&swhead)) { 338 if (noaction || verbose) 339 printf("Signal all daemon process(es)...\n"); 340 SLIST_FOREACH(stmp, &swhead, sw_nextp) 341 do_sigwork(stmp); 342 if (!(rotatereq && nosignal)) { 343 if (noaction) 344 printf("\tsleep 10\n"); 345 else { 346 if (verbose) 347 printf("Pause 10 seconds to allow " 348 "daemon(s) to close log file(s)\n"); 349 sleep(10); 350 } 351 } 352 } 353 /* 354 * Compress all files that we're expected to compress, now 355 * that all processes should have closed the files which 356 * have been rotated. 357 */ 358 if (!SLIST_EMPTY(&zwhead)) { 359 if (noaction || verbose) 360 printf("Compress all rotated log file(s)...\n"); 361 while (!SLIST_EMPTY(&zwhead)) { 362 ztmp = SLIST_FIRST(&zwhead); 363 do_zipwork(ztmp); 364 SLIST_REMOVE_HEAD(&zwhead, zw_nextp); 365 free(ztmp); 366 } 367 } 368 /* Now free all the sigwork entries. */ 369 while (!SLIST_EMPTY(&swhead)) { 370 stmp = SLIST_FIRST(&swhead); 371 SLIST_REMOVE_HEAD(&swhead, sw_nextp); 372 free(stmp); 373 } 374 375 while (wait(NULL) > 0 || errno == EINTR) 376 ; 377 return (0); 378 } 379 380 static struct conf_entry * 381 init_entry(const char *fname, struct conf_entry *src_entry) 382 { 383 struct conf_entry *tempwork; 384 385 if (verbose > 4) 386 printf("\t--> [creating entry for %s]\n", fname); 387 388 tempwork = malloc(sizeof(struct conf_entry)); 389 if (tempwork == NULL) 390 err(1, "malloc of conf_entry for %s", fname); 391 392 if (destdir == NULL || fname[0] != '/') 393 tempwork->log = strdup(fname); 394 else 395 asprintf(&tempwork->log, "%s%s", destdir, fname); 396 if (tempwork->log == NULL) 397 err(1, "strdup for %s", fname); 398 399 if (src_entry != NULL) { 400 tempwork->pid_cmd_file = NULL; 401 if (src_entry->pid_cmd_file) 402 tempwork->pid_cmd_file = strdup(src_entry->pid_cmd_file); 403 tempwork->r_reason = NULL; 404 tempwork->firstcreate = 0; 405 tempwork->rotate = 0; 406 tempwork->fsize = -1; 407 tempwork->uid = src_entry->uid; 408 tempwork->gid = src_entry->gid; 409 tempwork->numlogs = src_entry->numlogs; 410 tempwork->trsize = src_entry->trsize; 411 tempwork->hours = src_entry->hours; 412 tempwork->trim_at = NULL; 413 if (src_entry->trim_at != NULL) 414 tempwork->trim_at = ptime_init(src_entry->trim_at); 415 tempwork->permissions = src_entry->permissions; 416 tempwork->flags = src_entry->flags; 417 tempwork->compress = src_entry->compress; 418 tempwork->sig = src_entry->sig; 419 tempwork->def_cfg = src_entry->def_cfg; 420 } else { 421 /* Initialize as a "do-nothing" entry */ 422 tempwork->pid_cmd_file = NULL; 423 tempwork->r_reason = NULL; 424 tempwork->firstcreate = 0; 425 tempwork->rotate = 0; 426 tempwork->fsize = -1; 427 tempwork->uid = (uid_t)-1; 428 tempwork->gid = (gid_t)-1; 429 tempwork->numlogs = 1; 430 tempwork->trsize = -1; 431 tempwork->hours = -1; 432 tempwork->trim_at = NULL; 433 tempwork->permissions = 0; 434 tempwork->flags = 0; 435 tempwork->compress = COMPRESS_NONE; 436 tempwork->sig = SIGHUP; 437 tempwork->def_cfg = 0; 438 } 439 440 return (tempwork); 441 } 442 443 static void 444 free_entry(struct conf_entry *ent) 445 { 446 447 if (ent == NULL) 448 return; 449 450 if (ent->log != NULL) { 451 if (verbose > 4) 452 printf("\t--> [freeing entry for %s]\n", ent->log); 453 free(ent->log); 454 ent->log = NULL; 455 } 456 457 if (ent->pid_cmd_file != NULL) { 458 free(ent->pid_cmd_file); 459 ent->pid_cmd_file = NULL; 460 } 461 462 if (ent->r_reason != NULL) { 463 free(ent->r_reason); 464 ent->r_reason = NULL; 465 } 466 467 if (ent->trim_at != NULL) { 468 ptime_free(ent->trim_at); 469 ent->trim_at = NULL; 470 } 471 472 free(ent); 473 } 474 475 static void 476 free_clist(struct cflist *list) 477 { 478 struct conf_entry *ent; 479 480 while (!STAILQ_EMPTY(list)) { 481 ent = STAILQ_FIRST(list); 482 STAILQ_REMOVE_HEAD(list, cf_nextp); 483 free_entry(ent); 484 } 485 486 free(list); 487 list = NULL; 488 } 489 490 static fk_entry 491 do_entry(struct conf_entry * ent) 492 { 493 #define REASON_MAX 80 494 int modtime; 495 fk_entry free_or_keep; 496 double diffsecs; 497 char temp_reason[REASON_MAX]; 498 int oversized; 499 500 free_or_keep = FREE_ENT; 501 if (verbose) 502 printf("%s <%d%s>: ", ent->log, ent->numlogs, 503 compress_type[ent->compress].flag); 504 ent->fsize = sizefile(ent->log); 505 oversized = ((ent->trsize > 0) && (ent->fsize >= ent->trsize)); 506 modtime = age_old_log(ent->log); 507 ent->rotate = 0; 508 ent->firstcreate = 0; 509 if (ent->fsize < 0) { 510 /* 511 * If either the C flag or the -C option was specified, 512 * and if we won't be creating the file, then have the 513 * verbose message include a hint as to why the file 514 * will not be created. 515 */ 516 temp_reason[0] = '\0'; 517 if (createlogs > 1) 518 ent->firstcreate = 1; 519 else if ((ent->flags & CE_CREATE) && createlogs) 520 ent->firstcreate = 1; 521 else if (ent->flags & CE_CREATE) 522 strlcpy(temp_reason, " (no -C option)", REASON_MAX); 523 else if (createlogs) 524 strlcpy(temp_reason, " (no C flag)", REASON_MAX); 525 526 if (ent->firstcreate) { 527 if (verbose) 528 printf("does not exist -> will create.\n"); 529 createlog(ent); 530 } else if (verbose) { 531 printf("does not exist, skipped%s.\n", temp_reason); 532 } 533 } else { 534 if (ent->flags & CE_TRIMAT && !force && !rotatereq && 535 !oversized) { 536 diffsecs = ptimeget_diff(timenow, ent->trim_at); 537 if (diffsecs < 0.0) { 538 /* trim_at is some time in the future. */ 539 if (verbose) { 540 ptime_adjust4dst(ent->trim_at, 541 timenow); 542 printf("--> will trim at %s", 543 ptimeget_ctime(ent->trim_at)); 544 } 545 return (free_or_keep); 546 } else if (diffsecs >= 3600.0) { 547 /* 548 * trim_at is more than an hour in the past, 549 * so find the next valid trim_at time, and 550 * tell the user what that will be. 551 */ 552 if (verbose && dbg_at_times) 553 printf("\n\t--> prev trim at %s\t", 554 ptimeget_ctime(ent->trim_at)); 555 if (verbose) { 556 ptimeset_nxtime(ent->trim_at); 557 printf("--> will trim at %s", 558 ptimeget_ctime(ent->trim_at)); 559 } 560 return (free_or_keep); 561 } else if (verbose && noaction && dbg_at_times) { 562 /* 563 * If we are just debugging at-times, then 564 * a detailed message is helpful. Also 565 * skip "doing" any commands, since they 566 * would all be turned off by no-action. 567 */ 568 printf("\n\t--> timematch at %s", 569 ptimeget_ctime(ent->trim_at)); 570 return (free_or_keep); 571 } else if (verbose && ent->hours <= 0) { 572 printf("--> time is up\n"); 573 } 574 } 575 if (verbose && (ent->trsize > 0)) 576 printf("size (Kb): %d [%d] ", ent->fsize, ent->trsize); 577 if (verbose && (ent->hours > 0)) 578 printf(" age (hr): %d [%d] ", modtime, ent->hours); 579 580 /* 581 * Figure out if this logfile needs to be rotated. 582 */ 583 temp_reason[0] = '\0'; 584 if (rotatereq) { 585 ent->rotate = 1; 586 snprintf(temp_reason, REASON_MAX, " due to -R from %s", 587 requestor); 588 } else if (force) { 589 ent->rotate = 1; 590 snprintf(temp_reason, REASON_MAX, " due to -F request"); 591 } else if (oversized) { 592 ent->rotate = 1; 593 snprintf(temp_reason, REASON_MAX, " due to size>%dK", 594 ent->trsize); 595 } else if (ent->hours <= 0 && (ent->flags & CE_TRIMAT)) { 596 ent->rotate = 1; 597 } else if ((ent->hours > 0) && ((modtime >= ent->hours) || 598 (modtime < 0))) { 599 ent->rotate = 1; 600 } 601 602 /* 603 * If the file needs to be rotated, then rotate it. 604 */ 605 if (ent->rotate && !norotate) { 606 if (temp_reason[0] != '\0') 607 ent->r_reason = strdup(temp_reason); 608 if (verbose) 609 printf("--> trimming log....\n"); 610 if (noaction && !verbose) 611 printf("%s <%d%s>: trimming\n", ent->log, 612 ent->numlogs, 613 compress_type[ent->compress].flag); 614 free_or_keep = do_rotate(ent); 615 } else { 616 if (verbose) 617 printf("--> skipping\n"); 618 } 619 } 620 return (free_or_keep); 621 #undef REASON_MAX 622 } 623 624 static void 625 parse_args(int argc, char **argv) 626 { 627 int ch; 628 char *p; 629 630 timenow = ptime_init(NULL); 631 ptimeset_time(timenow, time(NULL)); 632 strlcpy(daytime, ptimeget_ctime(timenow) + 4, DAYTIME_LEN); 633 ptimeget_ctime_rfc5424(timenow, daytime_rfc5424, DAYTIME_RFC5424_LEN); 634 635 /* Let's get our hostname */ 636 (void)gethostname(hostname, sizeof(hostname)); 637 hostname_shortlen = strcspn(hostname, "."); 638 639 /* Parse command line options. */ 640 while ((ch = getopt(argc, argv, "a:d:f:nrst:vCD:FNPR:S:")) != -1) 641 switch (ch) { 642 case 'a': 643 archtodir++; 644 archdirname = optarg; 645 break; 646 case 'd': 647 destdir = optarg; 648 break; 649 case 'f': 650 conf = optarg; 651 break; 652 case 'n': 653 noaction++; 654 /* FALLTHROUGH */ 655 case 'r': 656 needroot = 0; 657 break; 658 case 's': 659 nosignal = 1; 660 break; 661 case 't': 662 if (optarg[0] == '\0' || 663 strcmp(optarg, "DEFAULT") == 0) 664 timefnamefmt = strdup(DEFAULT_TIMEFNAME_FMT); 665 else 666 timefnamefmt = strdup(optarg); 667 break; 668 case 'v': 669 verbose++; 670 break; 671 case 'C': 672 /* Useful for things like rc.diskless... */ 673 createlogs++; 674 break; 675 case 'D': 676 /* 677 * Set some debugging option. The specific option 678 * depends on the value of optarg. These options 679 * may come and go without notice or documentation. 680 */ 681 if (parse_doption(optarg)) 682 break; 683 usage(); 684 /* NOTREACHED */ 685 case 'F': 686 force++; 687 break; 688 case 'N': 689 norotate++; 690 break; 691 case 'P': 692 enforcepid++; 693 break; 694 case 'R': 695 rotatereq++; 696 requestor = strdup(optarg); 697 break; 698 case 'S': 699 path_syslogpid = optarg; 700 break; 701 case 'm': /* Used by OpenBSD for "monitor mode" */ 702 default: 703 usage(); 704 /* NOTREACHED */ 705 } 706 707 if (force && norotate) { 708 warnx("Only one of -F and -N may be specified."); 709 usage(); 710 /* NOTREACHED */ 711 } 712 713 if (rotatereq) { 714 if (optind == argc) { 715 warnx("At least one filename must be given when -R is specified."); 716 usage(); 717 /* NOTREACHED */ 718 } 719 /* Make sure "requestor" value is safe for a syslog message. */ 720 for (p = requestor; *p != '\0'; p++) { 721 if (!isprintch(*p) && (*p != '\t')) 722 *p = '.'; 723 } 724 } 725 726 if (dbg_timenow) { 727 /* 728 * Note that the 'daytime' variable is not changed. 729 * That is only used in messages that track when a 730 * logfile is rotated, and if a file *is* rotated, 731 * then it will still rotated at the "real now" time. 732 */ 733 ptime_free(timenow); 734 timenow = dbg_timenow; 735 fprintf(stderr, "Debug: Running as if TimeNow is %s", 736 ptimeget_ctime(dbg_timenow)); 737 } 738 739 } 740 741 /* 742 * These debugging options are mainly meant for developer use, such 743 * as writing regression-tests. They would not be needed by users 744 * during normal operation of newsyslog... 745 */ 746 static int 747 parse_doption(const char *doption) 748 { 749 const char TN[] = "TN="; 750 int res; 751 752 if (strncmp(doption, TN, sizeof(TN) - 1) == 0) { 753 /* 754 * The "TimeNow" debugging option. This might be off 755 * by an hour when crossing a timezone change. 756 */ 757 dbg_timenow = ptime_init(NULL); 758 res = ptime_relparse(dbg_timenow, PTM_PARSE_ISO8601, 759 time(NULL), doption + sizeof(TN) - 1); 760 if (res == -2) { 761 warnx("Non-existent time specified on -D %s", doption); 762 return (0); /* failure */ 763 } else if (res < 0) { 764 warnx("Malformed time given on -D %s", doption); 765 return (0); /* failure */ 766 } 767 return (1); /* successfully parsed */ 768 769 } 770 771 if (strcmp(doption, "ats") == 0) { 772 dbg_at_times++; 773 return (1); /* successfully parsed */ 774 } 775 776 /* XXX - This check could probably be dropped. */ 777 if ((strcmp(doption, "neworder") == 0) || (strcmp(doption, "oldorder") 778 == 0)) { 779 warnx("NOTE: newsyslog always uses 'neworder'."); 780 return (1); /* successfully parsed */ 781 } 782 783 warnx("Unknown -D (debug) option: '%s'", doption); 784 return (0); /* failure */ 785 } 786 787 static void 788 usage(void) 789 { 790 791 fprintf(stderr, 792 "usage: newsyslog [-CFNPnrsv] [-a directory] [-d directory] [-f config_file]\n" 793 " [-S pidfile] [-t timefmt] [[-R tagname] file ...]\n"); 794 exit(1); 795 } 796 797 /* 798 * Parse a configuration file and return a linked list of all the logs 799 * which should be processed. 800 */ 801 static struct cflist * 802 get_worklist(char **files) 803 { 804 FILE *f; 805 char **given; 806 struct cflist *cmdlist, *filelist, *globlist; 807 struct conf_entry *defconf, *dupent, *ent; 808 struct ilist inclist; 809 struct include_entry *inc; 810 int gmatch, fnres; 811 812 defconf = NULL; 813 STAILQ_INIT(&inclist); 814 815 filelist = malloc(sizeof(struct cflist)); 816 if (filelist == NULL) 817 err(1, "malloc of filelist"); 818 STAILQ_INIT(filelist); 819 globlist = malloc(sizeof(struct cflist)); 820 if (globlist == NULL) 821 err(1, "malloc of globlist"); 822 STAILQ_INIT(globlist); 823 824 inc = malloc(sizeof(struct include_entry)); 825 if (inc == NULL) 826 err(1, "malloc of inc"); 827 inc->file = conf; 828 if (inc->file == NULL) 829 inc->file = _PATH_CONF; 830 STAILQ_INSERT_TAIL(&inclist, inc, inc_nextp); 831 832 STAILQ_FOREACH(inc, &inclist, inc_nextp) { 833 if (strcmp(inc->file, "-") != 0) 834 f = fopen(inc->file, "r"); 835 else { 836 f = stdin; 837 inc->file = "<stdin>"; 838 } 839 if (!f) 840 err(1, "%s", inc->file); 841 842 if (verbose) 843 printf("Processing %s\n", inc->file); 844 parse_file(f, filelist, globlist, defconf, &inclist); 845 (void) fclose(f); 846 } 847 848 /* 849 * All config-file information has been read in and turned into 850 * a filelist and a globlist. If there were no specific files 851 * given on the run command, then the only thing left to do is to 852 * call a routine which finds all files matched by the globlist 853 * and adds them to the filelist. Then return the worklist. 854 */ 855 if (*files == NULL) { 856 expand_globs(filelist, globlist); 857 free_clist(globlist); 858 if (defconf != NULL) 859 free_entry(defconf); 860 return (filelist); 861 /* NOTREACHED */ 862 } 863 864 /* 865 * If newsyslog was given a specific list of files to process, 866 * it may be that some of those files were not listed in any 867 * config file. Those unlisted files should get the default 868 * rotation action. First, create the default-rotation action 869 * if none was found in a system config file. 870 */ 871 if (defconf == NULL) { 872 defconf = init_entry(DEFAULT_MARKER, NULL); 873 defconf->numlogs = 3; 874 defconf->trsize = 50; 875 defconf->permissions = S_IRUSR|S_IWUSR; 876 } 877 878 /* 879 * If newsyslog was run with a list of specific filenames, 880 * then create a new worklist which has only those files in 881 * it, picking up the rotation-rules for those files from 882 * the original filelist. 883 * 884 * XXX - Note that this will copy multiple rules for a single 885 * logfile, if multiple entries are an exact match for 886 * that file. That matches the historic behavior, but do 887 * we want to continue to allow it? If so, it should 888 * probably be handled more intelligently. 889 */ 890 cmdlist = malloc(sizeof(struct cflist)); 891 if (cmdlist == NULL) 892 err(1, "malloc of cmdlist"); 893 STAILQ_INIT(cmdlist); 894 895 for (given = files; *given; ++given) { 896 /* 897 * First try to find exact-matches for this given file. 898 */ 899 gmatch = 0; 900 STAILQ_FOREACH(ent, filelist, cf_nextp) { 901 if (strcmp(ent->log, *given) == 0) { 902 gmatch++; 903 dupent = init_entry(*given, ent); 904 STAILQ_INSERT_TAIL(cmdlist, dupent, cf_nextp); 905 } 906 } 907 if (gmatch) { 908 if (verbose > 2) 909 printf("\t+ Matched entry %s\n", *given); 910 continue; 911 } 912 913 /* 914 * There was no exact-match for this given file, so look 915 * for a "glob" entry which does match. 916 */ 917 gmatch = 0; 918 if (verbose > 2 && globlist != NULL) 919 printf("\t+ Checking globs for %s\n", *given); 920 STAILQ_FOREACH(ent, globlist, cf_nextp) { 921 fnres = fnmatch(ent->log, *given, FNM_PATHNAME); 922 if (verbose > 2) 923 printf("\t+ = %d for pattern %s\n", fnres, 924 ent->log); 925 if (fnres == 0) { 926 gmatch++; 927 dupent = init_entry(*given, ent); 928 /* This new entry is not a glob! */ 929 dupent->flags &= ~CE_GLOB; 930 STAILQ_INSERT_TAIL(cmdlist, dupent, cf_nextp); 931 /* Only allow a match to one glob-entry */ 932 break; 933 } 934 } 935 if (gmatch) { 936 if (verbose > 2) 937 printf("\t+ Matched %s via %s\n", *given, 938 ent->log); 939 continue; 940 } 941 942 /* 943 * This given file was not found in any config file, so 944 * add a worklist item based on the default entry. 945 */ 946 if (verbose > 2) 947 printf("\t+ No entry matched %s (will use %s)\n", 948 *given, DEFAULT_MARKER); 949 dupent = init_entry(*given, defconf); 950 /* Mark that it was *not* found in a config file */ 951 dupent->def_cfg = 1; 952 STAILQ_INSERT_TAIL(cmdlist, dupent, cf_nextp); 953 } 954 955 /* 956 * Free all the entries in the original work list, the list of 957 * glob entries, and the default entry. 958 */ 959 free_clist(filelist); 960 free_clist(globlist); 961 free_entry(defconf); 962 963 /* And finally, return a worklist which matches the given files. */ 964 return (cmdlist); 965 } 966 967 /* 968 * Expand the list of entries with filename patterns, and add all files 969 * which match those glob-entries onto the worklist. 970 */ 971 static void 972 expand_globs(struct cflist *work_p, struct cflist *glob_p) 973 { 974 int gmatch, gres; 975 size_t i; 976 char *mfname; 977 struct conf_entry *dupent, *ent, *globent; 978 glob_t pglob; 979 struct stat st_fm; 980 981 /* 982 * The worklist contains all fully-specified (non-GLOB) names. 983 * 984 * Now expand the list of filename-pattern (GLOB) entries into 985 * a second list, which (by definition) will only match files 986 * that already exist. Do not add a glob-related entry for any 987 * file which already exists in the fully-specified list. 988 */ 989 STAILQ_FOREACH(globent, glob_p, cf_nextp) { 990 gres = glob(globent->log, GLOB_NOCHECK, NULL, &pglob); 991 if (gres != 0) { 992 warn("cannot expand pattern (%d): %s", gres, 993 globent->log); 994 continue; 995 } 996 997 if (verbose > 2) 998 printf("\t+ Expanding pattern %s\n", globent->log); 999 for (i = 0; i < pglob.gl_matchc; i++) { 1000 mfname = pglob.gl_pathv[i]; 1001 1002 /* See if this file already has a specific entry. */ 1003 gmatch = 0; 1004 STAILQ_FOREACH(ent, work_p, cf_nextp) { 1005 if (strcmp(mfname, ent->log) == 0) { 1006 gmatch++; 1007 break; 1008 } 1009 } 1010 if (gmatch) 1011 continue; 1012 1013 /* Make sure the named matched is a file. */ 1014 gres = lstat(mfname, &st_fm); 1015 if (gres != 0) { 1016 /* Error on a file that glob() matched?!? */ 1017 warn("Skipping %s - lstat() error", mfname); 1018 continue; 1019 } 1020 if (!S_ISREG(st_fm.st_mode)) { 1021 /* We only rotate files! */ 1022 if (verbose > 2) 1023 printf("\t+ . skipping %s (!file)\n", 1024 mfname); 1025 continue; 1026 } 1027 1028 if (verbose > 2) 1029 printf("\t+ . add file %s\n", mfname); 1030 dupent = init_entry(mfname, globent); 1031 /* This new entry is not a glob! */ 1032 dupent->flags &= ~CE_GLOB; 1033 1034 /* Add to the worklist. */ 1035 STAILQ_INSERT_TAIL(work_p, dupent, cf_nextp); 1036 } 1037 globfree(&pglob); 1038 if (verbose > 2) 1039 printf("\t+ Done with pattern %s\n", globent->log); 1040 } 1041 } 1042 1043 /* 1044 * Parse a configuration file and update a linked list of all the logs to 1045 * process. 1046 */ 1047 static void 1048 parse_file(FILE *cf, struct cflist *work_p, struct cflist *glob_p, 1049 struct conf_entry *defconf_p, struct ilist *inclist) 1050 { 1051 char line[BUFSIZ], *parse, *q; 1052 char *cp, *errline, *group; 1053 struct conf_entry *working; 1054 struct passwd *pwd; 1055 struct group *grp; 1056 glob_t pglob; 1057 int eol, ptm_opts, res, special; 1058 size_t i; 1059 1060 errline = NULL; 1061 while (fgets(line, BUFSIZ, cf)) { 1062 if ((line[0] == '\n') || (line[0] == '#') || 1063 (strlen(line) == 0)) 1064 continue; 1065 if (errline != NULL) 1066 free(errline); 1067 errline = strdup(line); 1068 for (cp = line + 1; *cp != '\0'; cp++) { 1069 if (*cp != '#') 1070 continue; 1071 if (*(cp - 1) == '\\') { 1072 strcpy(cp - 1, cp); 1073 cp--; 1074 continue; 1075 } 1076 *cp = '\0'; 1077 break; 1078 } 1079 1080 q = parse = missing_field(sob(line), errline); 1081 parse = son(line); 1082 if (!*parse) 1083 errx(1, "malformed line (missing fields):\n%s", 1084 errline); 1085 *parse = '\0'; 1086 1087 /* 1088 * Allow people to set debug options via the config file. 1089 * (NOTE: debug options are undocumented, and may disappear 1090 * at any time, etc). 1091 */ 1092 if (strcasecmp(DEBUG_MARKER, q) == 0) { 1093 q = parse = missing_field(sob(parse + 1), errline); 1094 parse = son(parse); 1095 if (!*parse) 1096 warnx("debug line specifies no option:\n%s", 1097 errline); 1098 else { 1099 *parse = '\0'; 1100 parse_doption(q); 1101 } 1102 continue; 1103 } else if (strcasecmp(INCLUDE_MARKER, q) == 0) { 1104 if (verbose) 1105 printf("Found: %s", errline); 1106 q = parse = missing_field(sob(parse + 1), errline); 1107 parse = son(parse); 1108 if (!*parse) { 1109 warnx("include line missing argument:\n%s", 1110 errline); 1111 continue; 1112 } 1113 1114 *parse = '\0'; 1115 1116 if (isglobstr(q)) { 1117 res = glob(q, GLOB_NOCHECK, NULL, &pglob); 1118 if (res != 0) { 1119 warn("cannot expand pattern (%d): %s", 1120 res, q); 1121 continue; 1122 } 1123 1124 if (verbose > 2) 1125 printf("\t+ Expanding pattern %s\n", q); 1126 1127 for (i = 0; i < pglob.gl_matchc; i++) 1128 add_to_queue(pglob.gl_pathv[i], 1129 inclist); 1130 globfree(&pglob); 1131 } else 1132 add_to_queue(q, inclist); 1133 continue; 1134 } 1135 1136 special = 0; 1137 working = init_entry(q, NULL); 1138 if (strcasecmp(DEFAULT_MARKER, q) == 0) { 1139 special = 1; 1140 if (defconf_p != NULL) { 1141 warnx("Ignoring duplicate entry for %s!", q); 1142 free_entry(working); 1143 continue; 1144 } 1145 defconf_p = working; 1146 } 1147 1148 q = parse = missing_field(sob(parse + 1), errline); 1149 parse = son(parse); 1150 if (!*parse) 1151 errx(1, "malformed line (missing fields):\n%s", 1152 errline); 1153 *parse = '\0'; 1154 if ((group = strchr(q, ':')) != NULL || 1155 (group = strrchr(q, '.')) != NULL) { 1156 *group++ = '\0'; 1157 if (*q) { 1158 if (!(isnumberstr(q))) { 1159 if ((pwd = getpwnam(q)) == NULL) 1160 errx(1, 1161 "error in config file; unknown user:\n%s", 1162 errline); 1163 working->uid = pwd->pw_uid; 1164 } else 1165 working->uid = atoi(q); 1166 } else 1167 working->uid = (uid_t)-1; 1168 1169 q = group; 1170 if (*q) { 1171 if (!(isnumberstr(q))) { 1172 if ((grp = getgrnam(q)) == NULL) 1173 errx(1, 1174 "error in config file; unknown group:\n%s", 1175 errline); 1176 working->gid = grp->gr_gid; 1177 } else 1178 working->gid = atoi(q); 1179 } else 1180 working->gid = (gid_t)-1; 1181 1182 q = parse = missing_field(sob(parse + 1), errline); 1183 parse = son(parse); 1184 if (!*parse) 1185 errx(1, "malformed line (missing fields):\n%s", 1186 errline); 1187 *parse = '\0'; 1188 } else { 1189 working->uid = (uid_t)-1; 1190 working->gid = (gid_t)-1; 1191 } 1192 1193 if (!sscanf(q, "%o", &working->permissions)) 1194 errx(1, "error in config file; bad permissions:\n%s", 1195 errline); 1196 1197 q = parse = missing_field(sob(parse + 1), errline); 1198 parse = son(parse); 1199 if (!*parse) 1200 errx(1, "malformed line (missing fields):\n%s", 1201 errline); 1202 *parse = '\0'; 1203 if (!sscanf(q, "%d", &working->numlogs) || working->numlogs < 0) 1204 errx(1, "error in config file; bad value for count of logs to save:\n%s", 1205 errline); 1206 1207 q = parse = missing_field(sob(parse + 1), errline); 1208 parse = son(parse); 1209 if (!*parse) 1210 errx(1, "malformed line (missing fields):\n%s", 1211 errline); 1212 *parse = '\0'; 1213 if (isdigitch(*q)) 1214 working->trsize = atoi(q); 1215 else if (strcmp(q, "*") == 0) 1216 working->trsize = -1; 1217 else { 1218 warnx("Invalid value of '%s' for 'size' in line:\n%s", 1219 q, errline); 1220 working->trsize = -1; 1221 } 1222 1223 working->flags = 0; 1224 working->compress = COMPRESS_NONE; 1225 q = parse = missing_field(sob(parse + 1), errline); 1226 parse = son(parse); 1227 eol = !*parse; 1228 *parse = '\0'; 1229 { 1230 char *ep; 1231 u_long ul; 1232 1233 ul = strtoul(q, &ep, 10); 1234 if (ep == q) 1235 working->hours = 0; 1236 else if (*ep == '*') 1237 working->hours = -1; 1238 else if (ul > INT_MAX) 1239 errx(1, "interval is too large:\n%s", errline); 1240 else 1241 working->hours = ul; 1242 1243 if (*ep == '\0' || strcmp(ep, "*") == 0) 1244 goto no_trimat; 1245 if (*ep != '@' && *ep != '$') 1246 errx(1, "malformed interval/at:\n%s", errline); 1247 1248 working->flags |= CE_TRIMAT; 1249 working->trim_at = ptime_init(NULL); 1250 ptm_opts = PTM_PARSE_ISO8601; 1251 if (*ep == '$') 1252 ptm_opts = PTM_PARSE_DWM; 1253 ptm_opts |= PTM_PARSE_MATCHDOM; 1254 res = ptime_relparse(working->trim_at, ptm_opts, 1255 ptimeget_secs(timenow), ep + 1); 1256 if (res == -2) 1257 errx(1, "nonexistent time for 'at' value:\n%s", 1258 errline); 1259 else if (res < 0) 1260 errx(1, "malformed 'at' value:\n%s", errline); 1261 } 1262 no_trimat: 1263 1264 if (eol) 1265 q = NULL; 1266 else { 1267 q = parse = sob(parse + 1); /* Optional field */ 1268 parse = son(parse); 1269 if (!*parse) 1270 eol = 1; 1271 *parse = '\0'; 1272 } 1273 1274 for (; q && *q && !isspacech(*q); q++) { 1275 switch (tolowerch(*q)) { 1276 case 'b': 1277 working->flags |= CE_BINARY; 1278 break; 1279 case 'c': 1280 working->flags |= CE_CREATE; 1281 break; 1282 case 'd': 1283 working->flags |= CE_NODUMP; 1284 break; 1285 case 'g': 1286 working->flags |= CE_GLOB; 1287 break; 1288 case 'j': 1289 working->compress = COMPRESS_BZIP2; 1290 break; 1291 case 'n': 1292 working->flags |= CE_NOSIGNAL; 1293 break; 1294 case 'p': 1295 working->flags |= CE_PLAIN0; 1296 break; 1297 case 'r': 1298 working->flags |= CE_PID2CMD; 1299 break; 1300 case 't': 1301 working->flags |= CE_RFC5424; 1302 break; 1303 case 'u': 1304 working->flags |= CE_SIGNALGROUP; 1305 break; 1306 case 'w': 1307 /* Deprecated flag - keep for compatibility purposes */ 1308 break; 1309 case 'x': 1310 working->compress = COMPRESS_XZ; 1311 break; 1312 case 'y': 1313 working->compress = COMPRESS_ZSTD; 1314 break; 1315 case 'z': 1316 working->compress = COMPRESS_GZIP; 1317 break; 1318 case '-': 1319 break; 1320 case 'f': /* Used by OpenBSD for "CE_FOLLOW" */ 1321 case 'm': /* Used by OpenBSD for "CE_MONITOR" */ 1322 default: 1323 errx(1, "illegal flag in config file -- %c", 1324 *q); 1325 } 1326 } 1327 1328 if (eol) 1329 q = NULL; 1330 else { 1331 q = parse = sob(parse + 1); /* Optional field */ 1332 parse = son(parse); 1333 if (!*parse) 1334 eol = 1; 1335 *parse = '\0'; 1336 } 1337 1338 working->pid_cmd_file = NULL; 1339 if (q && *q) { 1340 if (*q == '/') 1341 working->pid_cmd_file = strdup(q); 1342 else if (isalnum(*q)) 1343 goto got_sig; 1344 else { 1345 errx(1, 1346 "illegal pid file or signal in config file:\n%s", 1347 errline); 1348 } 1349 } 1350 if (eol) 1351 q = NULL; 1352 else { 1353 q = parse = sob(parse + 1); /* Optional field */ 1354 *(parse = son(parse)) = '\0'; 1355 } 1356 1357 working->sig = SIGHUP; 1358 if (q && *q) { 1359 got_sig: 1360 working->sig = parse_signal(q); 1361 if (working->sig < 1 || working->sig >= sys_nsig) { 1362 errx(1, 1363 "illegal signal in config file:\n%s", 1364 errline); 1365 } 1366 } 1367 1368 /* 1369 * Finish figuring out what pid-file to use (if any) in 1370 * later processing if this logfile needs to be rotated. 1371 */ 1372 if ((working->flags & CE_NOSIGNAL) == CE_NOSIGNAL) { 1373 /* 1374 * This config-entry specified 'n' for nosignal, 1375 * see if it also specified an explicit pid_cmd_file. 1376 * This would be a pretty pointless combination. 1377 */ 1378 if (working->pid_cmd_file != NULL) { 1379 warnx("Ignoring '%s' because flag 'n' was specified in line:\n%s", 1380 working->pid_cmd_file, errline); 1381 free(working->pid_cmd_file); 1382 working->pid_cmd_file = NULL; 1383 } 1384 } else if (working->pid_cmd_file == NULL) { 1385 /* 1386 * This entry did not specify the 'n' flag, which 1387 * means it should signal syslogd unless it had 1388 * specified some other pid-file (and obviously the 1389 * syslog pid-file will not be for a process-group). 1390 * Also, we should only try to notify syslog if we 1391 * are root. 1392 */ 1393 if (working->flags & CE_SIGNALGROUP) { 1394 warnx("Ignoring flag 'U' in line:\n%s", 1395 errline); 1396 working->flags &= ~CE_SIGNALGROUP; 1397 } 1398 if (needroot) 1399 working->pid_cmd_file = strdup(path_syslogpid); 1400 } 1401 1402 /* 1403 * Add this entry to the appropriate list of entries, unless 1404 * it was some kind of special entry (eg: <default>). 1405 */ 1406 if (special) { 1407 ; /* Do not add to any list */ 1408 } else if (working->flags & CE_GLOB) { 1409 STAILQ_INSERT_TAIL(glob_p, working, cf_nextp); 1410 } else { 1411 STAILQ_INSERT_TAIL(work_p, working, cf_nextp); 1412 } 1413 } 1414 if (errline != NULL) 1415 free(errline); 1416 } 1417 1418 static char * 1419 missing_field(char *p, char *errline) 1420 { 1421 1422 if (!p || !*p) 1423 errx(1, "missing field in config file:\n%s", errline); 1424 return (p); 1425 } 1426 1427 /* 1428 * In our sort we return it in the reverse of what qsort normally 1429 * would do, as we want the newest files first. If we have two 1430 * entries with the same time we don't really care about order. 1431 * 1432 * Support function for qsort() in delete_oldest_timelog(). 1433 */ 1434 static int 1435 oldlog_entry_compare(const void *a, const void *b) 1436 { 1437 const struct oldlog_entry *ola = a, *olb = b; 1438 1439 if (ola->t > olb->t) 1440 return (-1); 1441 else if (ola->t < olb->t) 1442 return (1); 1443 else 1444 return (0); 1445 } 1446 1447 /* 1448 * Check whether the file corresponding to dp is an archive of the logfile 1449 * logfname, based on the timefnamefmt format string. Return true and fill out 1450 * tm if this is the case; otherwise return false. 1451 */ 1452 static int 1453 validate_old_timelog(int fd, const struct dirent *dp, const char *logfname, 1454 struct tm *tm) 1455 { 1456 struct stat sb; 1457 size_t logfname_len; 1458 char *s; 1459 int c; 1460 1461 logfname_len = strlen(logfname); 1462 1463 if (dp->d_type != DT_REG) { 1464 /* 1465 * Some filesystems (e.g. NFS) don't fill out the d_type field 1466 * and leave it set to DT_UNKNOWN; in this case we must obtain 1467 * the file type ourselves. 1468 */ 1469 if (dp->d_type != DT_UNKNOWN || 1470 fstatat(fd, dp->d_name, &sb, AT_SYMLINK_NOFOLLOW) != 0 || 1471 !S_ISREG(sb.st_mode)) 1472 return (0); 1473 } 1474 /* Ignore everything but files with our logfile prefix. */ 1475 if (strncmp(dp->d_name, logfname, logfname_len) != 0) 1476 return (0); 1477 /* Ignore the actual non-rotated logfile. */ 1478 if (dp->d_namlen == logfname_len) 1479 return (0); 1480 1481 /* 1482 * Make sure we created have found a logfile, so the 1483 * postfix is valid, IE format is: '.<time>(.[bgx]z)?'. 1484 */ 1485 if (dp->d_name[logfname_len] != '.') { 1486 if (verbose) 1487 printf("Ignoring %s which has unexpected " 1488 "extension '%s'\n", dp->d_name, 1489 &dp->d_name[logfname_len]); 1490 return (0); 1491 } 1492 memset(tm, 0, sizeof(*tm)); 1493 if ((s = strptime(&dp->d_name[logfname_len + 1], 1494 timefnamefmt, tm)) == NULL) { 1495 /* 1496 * We could special case "old" sequentially named logfiles here, 1497 * but we do not as that would require special handling to 1498 * decide which one was the oldest compared to "new" time based 1499 * logfiles. 1500 */ 1501 if (verbose) 1502 printf("Ignoring %s which does not " 1503 "match time format\n", dp->d_name); 1504 return (0); 1505 } 1506 1507 for (c = 0; c < COMPRESS_TYPES; c++) 1508 if (strcmp(s, compress_type[c].suffix) == 0) 1509 /* We're done. */ 1510 return (1); 1511 1512 if (verbose) 1513 printf("Ignoring %s which has unexpected extension '%s'\n", 1514 dp->d_name, s); 1515 1516 return (0); 1517 } 1518 1519 /* 1520 * Delete the oldest logfiles, when using time based filenames. 1521 */ 1522 static void 1523 delete_oldest_timelog(const struct conf_entry *ent, const char *archive_dir) 1524 { 1525 char *basebuf, *dirbuf, errbuf[80]; 1526 const char *base, *dir; 1527 int dir_fd, i, logcnt, max_logcnt; 1528 struct oldlog_entry *oldlogs; 1529 struct dirent *dp; 1530 struct tm tm; 1531 DIR *dirp; 1532 1533 oldlogs = malloc(MAX_OLDLOGS * sizeof(struct oldlog_entry)); 1534 max_logcnt = MAX_OLDLOGS; 1535 logcnt = 0; 1536 1537 if (archive_dir != NULL && archive_dir[0] != '\0') { 1538 dirbuf = NULL; 1539 dir = archive_dir; 1540 } else { 1541 if ((dirbuf = strdup(ent->log)) == NULL) 1542 err(1, "strdup()"); 1543 dir = dirname(dirbuf); 1544 } 1545 1546 if ((basebuf = strdup(ent->log)) == NULL) 1547 err(1, "strdup()"); 1548 base = basename(basebuf); 1549 if (strcmp(base, "/") == 0) 1550 errx(1, "Invalid log filename - became '/'"); 1551 1552 if (verbose > 2) 1553 printf("Searching for old logs in %s\n", dir); 1554 1555 /* First we create a 'list' of all archived logfiles */ 1556 if ((dirp = opendir(dir)) == NULL) 1557 err(1, "Cannot open log directory '%s'", dir); 1558 dir_fd = dirfd(dirp); 1559 while ((dp = readdir(dirp)) != NULL) { 1560 if (validate_old_timelog(dir_fd, dp, base, &tm) == 0) 1561 continue; 1562 1563 /* 1564 * We should now have old an old rotated logfile, so 1565 * add it to the 'list'. 1566 */ 1567 if ((oldlogs[logcnt].t = timegm(&tm)) == -1) 1568 err(1, "Could not convert time string to time value"); 1569 if ((oldlogs[logcnt].fname = strdup(dp->d_name)) == NULL) 1570 err(1, "strdup()"); 1571 logcnt++; 1572 1573 /* 1574 * It is very unlikely we ever run out of space in the 1575 * logfile array from the default size, but lets 1576 * handle it anyway... 1577 */ 1578 if (logcnt >= max_logcnt) { 1579 max_logcnt *= 4; 1580 /* Detect integer overflow */ 1581 if (max_logcnt < logcnt) 1582 errx(1, "Too many old logfiles found"); 1583 oldlogs = realloc(oldlogs, 1584 max_logcnt * sizeof(struct oldlog_entry)); 1585 if (oldlogs == NULL) 1586 err(1, "realloc()"); 1587 } 1588 } 1589 1590 /* Second, if needed we delete oldest archived logfiles */ 1591 if (logcnt > 0 && logcnt >= ent->numlogs && ent->numlogs > 1) { 1592 oldlogs = realloc(oldlogs, logcnt * 1593 sizeof(struct oldlog_entry)); 1594 if (oldlogs == NULL) 1595 err(1, "realloc()"); 1596 1597 /* 1598 * We now sort the logs in the order of newest to 1599 * oldest. That way we can simply skip over the 1600 * number of records we want to keep. 1601 */ 1602 qsort(oldlogs, logcnt, sizeof(struct oldlog_entry), 1603 oldlog_entry_compare); 1604 for (i = ent->numlogs - 1; i < logcnt; i++) { 1605 if (noaction) 1606 printf("\trm -f %s/%s\n", dir, 1607 oldlogs[i].fname); 1608 else if (unlinkat(dir_fd, oldlogs[i].fname, 0) != 0) { 1609 snprintf(errbuf, sizeof(errbuf), 1610 "Could not delete old logfile '%s'", 1611 oldlogs[i].fname); 1612 perror(errbuf); 1613 } 1614 } 1615 } else if (verbose > 1) 1616 printf("No old logs to delete for logfile %s\n", ent->log); 1617 1618 /* Third, cleanup */ 1619 closedir(dirp); 1620 for (i = 0; i < logcnt; i++) { 1621 assert(oldlogs[i].fname != NULL); 1622 free(oldlogs[i].fname); 1623 } 1624 free(oldlogs); 1625 free(dirbuf); 1626 free(basebuf); 1627 } 1628 1629 /* 1630 * Generate a log filename, when using classic filenames. 1631 */ 1632 static void 1633 gen_classiclog_fname(char *fname, size_t fname_sz, const char *archive_dir, 1634 const char *namepart, int numlogs_c) 1635 { 1636 1637 if (archive_dir[0] != '\0') 1638 (void) snprintf(fname, fname_sz, "%s/%s.%d", archive_dir, 1639 namepart, numlogs_c); 1640 else 1641 (void) snprintf(fname, fname_sz, "%s.%d", namepart, numlogs_c); 1642 } 1643 1644 /* 1645 * Delete a rotated logfile, when using classic filenames. 1646 */ 1647 static void 1648 delete_classiclog(const char *archive_dir, const char *namepart, int numlog_c) 1649 { 1650 char file1[MAXPATHLEN], zfile1[MAXPATHLEN]; 1651 int c; 1652 1653 gen_classiclog_fname(file1, sizeof(file1), archive_dir, namepart, 1654 numlog_c); 1655 1656 for (c = 0; c < COMPRESS_TYPES; c++) { 1657 (void) snprintf(zfile1, sizeof(zfile1), "%s%s", file1, 1658 compress_type[c].suffix); 1659 if (noaction) 1660 printf("\trm -f %s\n", zfile1); 1661 else 1662 (void) unlink(zfile1); 1663 } 1664 } 1665 1666 /* 1667 * Only add to the queue if the file hasn't already been added. This is 1668 * done to prevent circular include loops. 1669 */ 1670 static void 1671 add_to_queue(const char *fname, struct ilist *inclist) 1672 { 1673 struct include_entry *inc; 1674 1675 STAILQ_FOREACH(inc, inclist, inc_nextp) { 1676 if (strcmp(fname, inc->file) == 0) { 1677 warnx("duplicate include detected: %s", fname); 1678 return; 1679 } 1680 } 1681 1682 inc = malloc(sizeof(struct include_entry)); 1683 if (inc == NULL) 1684 err(1, "malloc of inc"); 1685 inc->file = strdup(fname); 1686 1687 if (verbose > 2) 1688 printf("\t+ Adding %s to the processing queue.\n", fname); 1689 1690 STAILQ_INSERT_TAIL(inclist, inc, inc_nextp); 1691 } 1692 1693 /* 1694 * Search for logfile and return its compression suffix (if supported) 1695 * The suffix detection is first-match in the order of compress_types 1696 * 1697 * Note: if logfile without suffix exists (uncompressed, COMPRESS_NONE) 1698 * a zero-length string is returned 1699 */ 1700 static const char * 1701 get_logfile_suffix(const char *logfile) 1702 { 1703 struct stat st; 1704 char zfile[MAXPATHLEN]; 1705 int c; 1706 1707 for (c = 0; c < COMPRESS_TYPES; c++) { 1708 (void) strlcpy(zfile, logfile, MAXPATHLEN); 1709 (void) strlcat(zfile, compress_type[c].suffix, MAXPATHLEN); 1710 if (lstat(zfile, &st) == 0) 1711 return (compress_type[c].suffix); 1712 } 1713 return (NULL); 1714 } 1715 1716 static fk_entry 1717 do_rotate(const struct conf_entry *ent) 1718 { 1719 char dirpart[MAXPATHLEN], namepart[MAXPATHLEN]; 1720 char file1[MAXPATHLEN], file2[MAXPATHLEN]; 1721 char zfile1[MAXPATHLEN], zfile2[MAXPATHLEN]; 1722 const char *logfile_suffix; 1723 char datetimestr[30]; 1724 int flags, numlogs_c; 1725 fk_entry free_or_keep; 1726 struct sigwork_entry *swork; 1727 struct stat st; 1728 struct tm tm; 1729 time_t now; 1730 1731 flags = ent->flags; 1732 free_or_keep = FREE_ENT; 1733 1734 if (archtodir) { 1735 char *p; 1736 1737 /* build complete name of archive directory into dirpart */ 1738 if (*archdirname == '/') { /* absolute */ 1739 strlcpy(dirpart, archdirname, sizeof(dirpart)); 1740 } else { /* relative */ 1741 /* get directory part of logfile */ 1742 strlcpy(dirpart, ent->log, sizeof(dirpart)); 1743 if ((p = strrchr(dirpart, '/')) == NULL) 1744 dirpart[0] = '\0'; 1745 else 1746 *(p + 1) = '\0'; 1747 strlcat(dirpart, archdirname, sizeof(dirpart)); 1748 } 1749 1750 /* check if archive directory exists, if not, create it */ 1751 if (lstat(dirpart, &st)) 1752 createdir(ent, dirpart); 1753 1754 /* get filename part of logfile */ 1755 if ((p = strrchr(ent->log, '/')) == NULL) 1756 strlcpy(namepart, ent->log, sizeof(namepart)); 1757 else 1758 strlcpy(namepart, p + 1, sizeof(namepart)); 1759 } else { 1760 /* 1761 * Tell utility functions we are not using an archive 1762 * dir. 1763 */ 1764 dirpart[0] = '\0'; 1765 strlcpy(namepart, ent->log, sizeof(namepart)); 1766 } 1767 1768 /* Delete old logs */ 1769 if (timefnamefmt != NULL) 1770 delete_oldest_timelog(ent, dirpart); 1771 else { 1772 /* 1773 * Handle cleaning up after legacy newsyslog where we 1774 * kept ent->numlogs + 1 files. This code can go away 1775 * at some point in the future. 1776 */ 1777 delete_classiclog(dirpart, namepart, ent->numlogs); 1778 1779 if (ent->numlogs > 0) 1780 delete_classiclog(dirpart, namepart, ent->numlogs - 1); 1781 1782 } 1783 1784 if (timefnamefmt != NULL) { 1785 /* If time functions fails we can't really do any sensible */ 1786 if (time(&now) == (time_t)-1 || 1787 localtime_r(&now, &tm) == NULL) 1788 bzero(&tm, sizeof(tm)); 1789 1790 strftime(datetimestr, sizeof(datetimestr), timefnamefmt, &tm); 1791 if (archtodir) 1792 (void) snprintf(file1, sizeof(file1), "%s/%s.%s", 1793 dirpart, namepart, datetimestr); 1794 else 1795 (void) snprintf(file1, sizeof(file1), "%s.%s", 1796 ent->log, datetimestr); 1797 1798 /* Don't run the code to move down logs */ 1799 numlogs_c = -1; 1800 } else { 1801 gen_classiclog_fname(file1, sizeof(file1), dirpart, namepart, 1802 ent->numlogs - 1); 1803 numlogs_c = ent->numlogs - 2; /* copy for countdown */ 1804 } 1805 1806 /* Move down log files */ 1807 for (; numlogs_c >= 0; numlogs_c--) { 1808 (void) strlcpy(file2, file1, sizeof(file2)); 1809 1810 gen_classiclog_fname(file1, sizeof(file1), dirpart, namepart, 1811 numlogs_c); 1812 1813 logfile_suffix = get_logfile_suffix(file1); 1814 if (logfile_suffix == NULL) 1815 continue; 1816 (void) strlcpy(zfile1, file1, MAXPATHLEN); 1817 (void) strlcpy(zfile2, file2, MAXPATHLEN); 1818 (void) strlcat(zfile1, logfile_suffix, MAXPATHLEN); 1819 (void) strlcat(zfile2, logfile_suffix, MAXPATHLEN); 1820 1821 if (noaction) 1822 printf("\tmv %s %s\n", zfile1, zfile2); 1823 else { 1824 /* XXX - Ought to be checking for failure! */ 1825 (void)rename(zfile1, zfile2); 1826 change_attrs(zfile2, ent); 1827 if (ent->compress && !strlen(logfile_suffix)) { 1828 /* compress old rotation */ 1829 struct zipwork_entry zwork; 1830 1831 memset(&zwork, 0, sizeof(zwork)); 1832 zwork.zw_conf = ent; 1833 zwork.zw_fsize = sizefile(zfile2); 1834 strcpy(zwork.zw_fname, zfile2); 1835 do_zipwork(&zwork); 1836 } 1837 } 1838 } 1839 1840 if (ent->numlogs > 0) { 1841 if (noaction) { 1842 /* 1843 * Note that savelog() may succeed with using link() 1844 * for the archtodir case, but there is no good way 1845 * of knowing if it will when doing "noaction", so 1846 * here we claim that it will have to do a copy... 1847 */ 1848 if (archtodir) 1849 printf("\tcp %s %s\n", ent->log, file1); 1850 else 1851 printf("\tln %s %s\n", ent->log, file1); 1852 printf("\ttouch %s\t\t" 1853 "# Update mtime for 'when'-interval processing\n", 1854 file1); 1855 } else { 1856 if (!(flags & CE_BINARY)) { 1857 /* Report the trimming to the old log */ 1858 log_trim(ent->log, ent); 1859 } 1860 savelog(ent->log, file1); 1861 /* 1862 * Interval-based rotations are done using the mtime of 1863 * the most recently archived log, so make sure it gets 1864 * updated during a rotation. 1865 */ 1866 utimes(file1, NULL); 1867 } 1868 change_attrs(file1, ent); 1869 } 1870 1871 /* Create the new log file and move it into place */ 1872 if (noaction) 1873 printf("Start new log...\n"); 1874 createlog(ent); 1875 1876 /* 1877 * Save all signalling and file-compression to be done after log 1878 * files from all entries have been rotated. This way any one 1879 * process will not be sent the same signal multiple times when 1880 * multiple log files had to be rotated. 1881 */ 1882 swork = NULL; 1883 if (ent->pid_cmd_file != NULL) 1884 swork = save_sigwork(ent); 1885 if (ent->numlogs > 0 && ent->compress > COMPRESS_NONE) { 1886 if (!(ent->flags & CE_PLAIN0) || 1887 strcmp(&file1[strlen(file1) - 2], ".0") != 0) { 1888 /* 1889 * The zipwork_entry will include a pointer to this 1890 * conf_entry, so the conf_entry should not be freed. 1891 */ 1892 free_or_keep = KEEP_ENT; 1893 save_zipwork(ent, swork, ent->fsize, file1); 1894 } 1895 } 1896 1897 return (free_or_keep); 1898 } 1899 1900 static void 1901 do_sigwork(struct sigwork_entry *swork) 1902 { 1903 struct sigwork_entry *nextsig; 1904 int kres, secs; 1905 char *tmp; 1906 1907 if (swork->sw_runcmd == 0 && (!(swork->sw_pidok) || swork->sw_pid == 0)) 1908 return; /* no work to do... */ 1909 1910 /* 1911 * If nosignal (-s) was specified, then do not signal any process. 1912 * Note that a nosignal request triggers a warning message if the 1913 * rotated logfile needs to be compressed, *unless* -R was also 1914 * specified. We assume that an `-sR' request came from a process 1915 * which writes to the logfile, and as such, we assume that process 1916 * has already made sure the logfile is not presently in use. This 1917 * just sets swork->sw_pidok to a special value, and do_zipwork 1918 * will print any necessary warning(s). 1919 */ 1920 if (nosignal) { 1921 if (!rotatereq) 1922 swork->sw_pidok = -1; 1923 return; 1924 } 1925 1926 /* 1927 * Compute the pause between consecutive signals. Use a longer 1928 * sleep time if we will be sending two signals to the same 1929 * daemon or process-group. 1930 */ 1931 secs = 0; 1932 nextsig = SLIST_NEXT(swork, sw_nextp); 1933 if (nextsig != NULL) { 1934 if (swork->sw_pid == nextsig->sw_pid) 1935 secs = 10; 1936 else 1937 secs = 1; 1938 } 1939 1940 if (noaction) { 1941 if (swork->sw_runcmd) 1942 printf("\tsh -c '%s %d'\n", swork->sw_fname, 1943 swork->sw_signum); 1944 else { 1945 printf("\tkill -%d %d \t\t# %s\n", swork->sw_signum, 1946 (int)swork->sw_pid, swork->sw_fname); 1947 if (secs > 0) 1948 printf("\tsleep %d\n", secs); 1949 } 1950 return; 1951 } 1952 1953 if (swork->sw_runcmd) { 1954 asprintf(&tmp, "%s %d", swork->sw_fname, swork->sw_signum); 1955 if (tmp == NULL) { 1956 warn("can't allocate memory to run %s", 1957 swork->sw_fname); 1958 return; 1959 } 1960 if (verbose) 1961 printf("Run command: %s\n", tmp); 1962 kres = system(tmp); 1963 if (kres) { 1964 warnx("%s: returned non-zero exit code: %d", 1965 tmp, kres); 1966 } 1967 free(tmp); 1968 return; 1969 } 1970 1971 kres = kill(swork->sw_pid, swork->sw_signum); 1972 if (kres != 0) { 1973 /* 1974 * Assume that "no such process" (ESRCH) is something 1975 * to warn about, but is not an error. Presumably the 1976 * process which writes to the rotated log file(s) is 1977 * gone, in which case we should have no problem with 1978 * compressing the rotated log file(s). 1979 */ 1980 if (errno != ESRCH) 1981 swork->sw_pidok = 0; 1982 warn("can't notify %s, pid %d = %s", swork->sw_pidtype, 1983 (int)swork->sw_pid, swork->sw_fname); 1984 } else { 1985 if (verbose) 1986 printf("Notified %s pid %d = %s\n", swork->sw_pidtype, 1987 (int)swork->sw_pid, swork->sw_fname); 1988 if (secs > 0) { 1989 if (verbose) 1990 printf("Pause %d second(s) between signals\n", 1991 secs); 1992 sleep(secs); 1993 } 1994 } 1995 } 1996 1997 static void 1998 do_zipwork(struct zipwork_entry *zwork) 1999 { 2000 const struct compress_types *ct; 2001 struct sbuf *command; 2002 pid_t pidzip, wpid; 2003 int c, errsav, fcount, zstatus; 2004 const char **args, *pgm_name, *pgm_path; 2005 char *zresult; 2006 2007 command = NULL; 2008 assert(zwork != NULL); 2009 assert(zwork->zw_conf != NULL); 2010 assert(zwork->zw_conf->compress > COMPRESS_NONE); 2011 assert(zwork->zw_conf->compress < COMPRESS_TYPES); 2012 2013 if (zwork->zw_swork != NULL && zwork->zw_swork->sw_runcmd == 0 && 2014 zwork->zw_swork->sw_pidok <= 0) { 2015 warnx( 2016 "log %s not compressed because daemon(s) not notified", 2017 zwork->zw_fname); 2018 change_attrs(zwork->zw_fname, zwork->zw_conf); 2019 return; 2020 } 2021 2022 ct = &compress_type[zwork->zw_conf->compress]; 2023 2024 /* 2025 * execv will be called with the array [ program, flags ... , 2026 * filename, NULL ] so allocate nflags+3 elements for the array. 2027 */ 2028 args = calloc(ct->nflags + 3, sizeof(*args)); 2029 if (args == NULL) 2030 err(1, "calloc"); 2031 2032 pgm_path = ct->path; 2033 pgm_name = strrchr(pgm_path, '/'); 2034 if (pgm_name == NULL) 2035 pgm_name = pgm_path; 2036 else 2037 pgm_name++; 2038 2039 /* Build the argument array. */ 2040 args[0] = pgm_name; 2041 for (c = 0; c < ct->nflags; c++) 2042 args[c + 1] = ct->flags[c]; 2043 args[c + 1] = zwork->zw_fname; 2044 2045 /* Also create a space-delimited version if we need to print it. */ 2046 if ((command = sbuf_new_auto()) == NULL) 2047 errx(1, "sbuf_new"); 2048 sbuf_cpy(command, pgm_path); 2049 for (c = 1; args[c] != NULL; c++) { 2050 sbuf_putc(command, ' '); 2051 sbuf_cat(command, args[c]); 2052 } 2053 if (sbuf_finish(command) == -1) 2054 err(1, "sbuf_finish"); 2055 2056 /* Determine the filename of the compressed file. */ 2057 asprintf(&zresult, "%s%s", zwork->zw_fname, ct->suffix); 2058 if (zresult == NULL) 2059 errx(1, "asprintf"); 2060 2061 if (verbose) 2062 printf("Executing: %s\n", sbuf_data(command)); 2063 2064 if (noaction) { 2065 printf("\t%s %s\n", pgm_name, zwork->zw_fname); 2066 change_attrs(zresult, zwork->zw_conf); 2067 goto out; 2068 } 2069 2070 fcount = 1; 2071 pidzip = fork(); 2072 while (pidzip < 0) { 2073 /* 2074 * The fork failed. If the failure was due to a temporary 2075 * problem, then wait a short time and try it again. 2076 */ 2077 errsav = errno; 2078 warn("fork() for `%s %s'", pgm_name, zwork->zw_fname); 2079 if (errsav != EAGAIN || fcount > 5) 2080 errx(1, "Exiting..."); 2081 sleep(fcount * 12); 2082 fcount++; 2083 pidzip = fork(); 2084 } 2085 if (!pidzip) { 2086 /* The child process executes the compression command */ 2087 execv(pgm_path, __DECONST(char *const*, args)); 2088 err(1, "execv(`%s')", sbuf_data(command)); 2089 } 2090 2091 wpid = waitpid(pidzip, &zstatus, 0); 2092 if (wpid == -1) { 2093 /* XXX - should this be a fatal error? */ 2094 warn("%s: waitpid(%d)", pgm_path, pidzip); 2095 goto out; 2096 } 2097 if (!WIFEXITED(zstatus)) { 2098 warnx("`%s' did not terminate normally", sbuf_data(command)); 2099 goto out; 2100 } 2101 if (WEXITSTATUS(zstatus)) { 2102 warnx("`%s' terminated with a non-zero status (%d)", 2103 sbuf_data(command), WEXITSTATUS(zstatus)); 2104 goto out; 2105 } 2106 2107 /* Compression was successful, set file attributes on the result. */ 2108 change_attrs(zresult, zwork->zw_conf); 2109 2110 out: 2111 if (command != NULL) 2112 sbuf_delete(command); 2113 free(args); 2114 free(zresult); 2115 } 2116 2117 /* 2118 * Save information on any process we need to signal. Any single 2119 * process may need to be sent different signal-values for different 2120 * log files, but usually a single signal-value will cause the process 2121 * to close and re-open all of its log files. 2122 */ 2123 static struct sigwork_entry * 2124 save_sigwork(const struct conf_entry *ent) 2125 { 2126 struct sigwork_entry *sprev, *stmp; 2127 int ndiff; 2128 size_t tmpsiz; 2129 2130 sprev = NULL; 2131 ndiff = 1; 2132 SLIST_FOREACH(stmp, &swhead, sw_nextp) { 2133 ndiff = strcmp(ent->pid_cmd_file, stmp->sw_fname); 2134 if (ndiff > 0) 2135 break; 2136 if (ndiff == 0) { 2137 if (ent->sig == stmp->sw_signum) 2138 break; 2139 if (ent->sig > stmp->sw_signum) { 2140 ndiff = 1; 2141 break; 2142 } 2143 } 2144 sprev = stmp; 2145 } 2146 if (stmp != NULL && ndiff == 0) 2147 return (stmp); 2148 2149 tmpsiz = sizeof(struct sigwork_entry) + strlen(ent->pid_cmd_file) + 1; 2150 stmp = malloc(tmpsiz); 2151 2152 stmp->sw_runcmd = 0; 2153 /* If this is a command to run we just set the flag and run command */ 2154 if (ent->flags & CE_PID2CMD) { 2155 stmp->sw_pid = -1; 2156 stmp->sw_pidok = 0; 2157 stmp->sw_runcmd = 1; 2158 } else { 2159 set_swpid(stmp, ent); 2160 } 2161 stmp->sw_signum = ent->sig; 2162 strcpy(stmp->sw_fname, ent->pid_cmd_file); 2163 if (sprev == NULL) 2164 SLIST_INSERT_HEAD(&swhead, stmp, sw_nextp); 2165 else 2166 SLIST_INSERT_AFTER(sprev, stmp, sw_nextp); 2167 return (stmp); 2168 } 2169 2170 /* 2171 * Save information on any file we need to compress. We may see the same 2172 * file multiple times, so check the full list to avoid duplicates. The 2173 * list itself is sorted smallest-to-largest, because that's the order we 2174 * want to compress the files. If the partition is very low on disk space, 2175 * then the smallest files are the most likely to compress, and compressing 2176 * them first will free up more space for the larger files. 2177 */ 2178 static struct zipwork_entry * 2179 save_zipwork(const struct conf_entry *ent, const struct sigwork_entry *swork, 2180 int zsize, const char *zipfname) 2181 { 2182 struct zipwork_entry *zprev, *ztmp; 2183 int ndiff; 2184 size_t tmpsiz; 2185 2186 /* Compute the size if the caller did not know it. */ 2187 if (zsize < 0) 2188 zsize = sizefile(zipfname); 2189 2190 zprev = NULL; 2191 ndiff = 1; 2192 SLIST_FOREACH(ztmp, &zwhead, zw_nextp) { 2193 ndiff = strcmp(zipfname, ztmp->zw_fname); 2194 if (ndiff == 0) 2195 break; 2196 if (zsize > ztmp->zw_fsize) 2197 zprev = ztmp; 2198 } 2199 if (ztmp != NULL && ndiff == 0) 2200 return (ztmp); 2201 2202 tmpsiz = sizeof(struct zipwork_entry) + strlen(zipfname) + 1; 2203 ztmp = malloc(tmpsiz); 2204 ztmp->zw_conf = ent; 2205 ztmp->zw_swork = swork; 2206 ztmp->zw_fsize = zsize; 2207 strcpy(ztmp->zw_fname, zipfname); 2208 if (zprev == NULL) 2209 SLIST_INSERT_HEAD(&zwhead, ztmp, zw_nextp); 2210 else 2211 SLIST_INSERT_AFTER(zprev, ztmp, zw_nextp); 2212 return (ztmp); 2213 } 2214 2215 /* Send a signal to the pid specified by pidfile */ 2216 static void 2217 set_swpid(struct sigwork_entry *swork, const struct conf_entry *ent) 2218 { 2219 FILE *f; 2220 long minok, maxok, rval; 2221 char *endp, *linep, line[BUFSIZ]; 2222 2223 minok = MIN_PID; 2224 maxok = MAX_PID; 2225 swork->sw_pidok = 0; 2226 swork->sw_pid = 0; 2227 swork->sw_pidtype = "daemon"; 2228 if (ent->flags & CE_SIGNALGROUP) { 2229 /* 2230 * If we are expected to signal a process-group when 2231 * rotating this logfile, then the value read in should 2232 * be the negative of a valid process ID. 2233 */ 2234 minok = -MAX_PID; 2235 maxok = -MIN_PID; 2236 swork->sw_pidtype = "process-group"; 2237 } 2238 2239 f = fopen(ent->pid_cmd_file, "r"); 2240 if (f == NULL) { 2241 if (errno == ENOENT && enforcepid == 0) { 2242 /* 2243 * Warn if the PID file doesn't exist, but do 2244 * not consider it an error. Most likely it 2245 * means the process has been terminated, 2246 * so it should be safe to rotate any log 2247 * files that the process would have been using. 2248 */ 2249 swork->sw_pidok = 1; 2250 warnx("pid file doesn't exist: %s", ent->pid_cmd_file); 2251 } else 2252 warn("can't open pid file: %s", ent->pid_cmd_file); 2253 return; 2254 } 2255 2256 if (fgets(line, BUFSIZ, f) == NULL) { 2257 /* 2258 * Warn if the PID file is empty, but do not consider 2259 * it an error. Most likely it means the process has 2260 * has terminated, so it should be safe to rotate any 2261 * log files that the process would have been using. 2262 */ 2263 if (feof(f) && enforcepid == 0) { 2264 swork->sw_pidok = 1; 2265 warnx("pid/cmd file is empty: %s", ent->pid_cmd_file); 2266 } else 2267 warn("can't read from pid file: %s", ent->pid_cmd_file); 2268 (void)fclose(f); 2269 return; 2270 } 2271 (void)fclose(f); 2272 2273 errno = 0; 2274 linep = line; 2275 while (*linep == ' ') 2276 linep++; 2277 rval = strtol(linep, &endp, 10); 2278 if (*endp != '\0' && !isspacech(*endp)) { 2279 warnx("pid file does not start with a valid number: %s", 2280 ent->pid_cmd_file); 2281 } else if (rval < minok || rval > maxok) { 2282 warnx("bad value '%ld' for process number in %s", 2283 rval, ent->pid_cmd_file); 2284 if (verbose) 2285 warnx("\t(expecting value between %ld and %ld)", 2286 minok, maxok); 2287 } else { 2288 swork->sw_pidok = 1; 2289 swork->sw_pid = rval; 2290 } 2291 2292 return; 2293 } 2294 2295 /* Log the fact that the logs were turned over */ 2296 static int 2297 log_trim(const char *logname, const struct conf_entry *log_ent) 2298 { 2299 FILE *f; 2300 const char *xtra; 2301 2302 if ((f = fopen(logname, "a")) == NULL) 2303 return (-1); 2304 xtra = ""; 2305 if (log_ent->def_cfg) 2306 xtra = " using <default> rule"; 2307 if (log_ent->flags & CE_RFC5424) { 2308 if (log_ent->firstcreate) { 2309 fprintf(f, "<%d>1 %s %s newsyslog %d - - %s%s\n", 2310 LOG_MAKEPRI(LOG_USER, LOG_INFO), 2311 daytime_rfc5424, hostname, getpid(), 2312 "logfile first created", xtra); 2313 } else if (log_ent->r_reason != NULL) { 2314 fprintf(f, "<%d>1 %s %s newsyslog %d - - %s%s%s\n", 2315 LOG_MAKEPRI(LOG_USER, LOG_INFO), 2316 daytime_rfc5424, hostname, getpid(), 2317 "logfile turned over", log_ent->r_reason, xtra); 2318 } else { 2319 fprintf(f, "<%d>1 %s %s newsyslog %d - - %s%s\n", 2320 LOG_MAKEPRI(LOG_USER, LOG_INFO), 2321 daytime_rfc5424, hostname, getpid(), 2322 "logfile turned over", xtra); 2323 } 2324 } else { 2325 if (log_ent->firstcreate) 2326 fprintf(f, 2327 "%s %.*s newsyslog[%d]: logfile first created%s\n", 2328 daytime, (int)hostname_shortlen, hostname, getpid(), 2329 xtra); 2330 else if (log_ent->r_reason != NULL) 2331 fprintf(f, 2332 "%s %.*s newsyslog[%d]: logfile turned over%s%s\n", 2333 daytime, (int)hostname_shortlen, hostname, getpid(), 2334 log_ent->r_reason, xtra); 2335 else 2336 fprintf(f, 2337 "%s %.*s newsyslog[%d]: logfile turned over%s\n", 2338 daytime, (int)hostname_shortlen, hostname, getpid(), 2339 xtra); 2340 } 2341 if (fclose(f) == EOF) 2342 err(1, "log_trim: fclose"); 2343 return (0); 2344 } 2345 2346 /* Return size in kilobytes of a file */ 2347 static int 2348 sizefile(const char *file) 2349 { 2350 struct stat sb; 2351 2352 if (stat(file, &sb) < 0) 2353 return (-1); 2354 return (kbytes(sb.st_size)); 2355 } 2356 2357 /* 2358 * Return the mtime of the most recent archive of the logfile, using timestamp 2359 * based filenames. 2360 */ 2361 static time_t 2362 mtime_old_timelog(const char *file) 2363 { 2364 struct stat sb; 2365 struct tm tm; 2366 int dir_fd; 2367 time_t t; 2368 struct dirent *dp; 2369 DIR *dirp; 2370 char *logfname, *logfnamebuf, *dir, *dirbuf; 2371 2372 t = -1; 2373 2374 if ((dirbuf = strdup(file)) == NULL) { 2375 warn("strdup() of '%s'", file); 2376 return (t); 2377 } 2378 dir = dirname(dirbuf); 2379 if ((logfnamebuf = strdup(file)) == NULL) { 2380 warn("strdup() of '%s'", file); 2381 free(dirbuf); 2382 return (t); 2383 } 2384 logfname = basename(logfnamebuf); 2385 if (logfname[0] == '/') { 2386 warnx("Invalid log filename '%s'", logfname); 2387 goto out; 2388 } 2389 2390 if ((dirp = opendir(dir)) == NULL) { 2391 warn("Cannot open log directory '%s'", dir); 2392 goto out; 2393 } 2394 dir_fd = dirfd(dirp); 2395 /* Open the archive dir and find the most recent archive of logfname. */ 2396 while ((dp = readdir(dirp)) != NULL) { 2397 if (validate_old_timelog(dir_fd, dp, logfname, &tm) == 0) 2398 continue; 2399 2400 if (fstatat(dir_fd, dp->d_name, &sb, AT_SYMLINK_NOFOLLOW) == -1) { 2401 warn("Cannot stat '%s'", file); 2402 continue; 2403 } 2404 if (t < sb.st_mtime) 2405 t = sb.st_mtime; 2406 } 2407 closedir(dirp); 2408 2409 out: 2410 free(dirbuf); 2411 free(logfnamebuf); 2412 return (t); 2413 } 2414 2415 /* Return the age in hours of the most recent archive of the logfile. */ 2416 static int 2417 age_old_log(const char *file) 2418 { 2419 struct stat sb; 2420 const char *logfile_suffix; 2421 static unsigned int suffix_maxlen = 0; 2422 char *tmp; 2423 time_t mtime; 2424 int c; 2425 2426 if (suffix_maxlen == 0) { 2427 for (c = 0; c < COMPRESS_TYPES; c++) 2428 suffix_maxlen = MAX(suffix_maxlen, 2429 strlen(compress_type[c].suffix)); 2430 } 2431 2432 tmp = alloca(MAXPATHLEN + sizeof(".0") + suffix_maxlen + 1); 2433 2434 if (archtodir) { 2435 char *p; 2436 2437 /* build name of archive directory into tmp */ 2438 if (*archdirname == '/') { /* absolute */ 2439 strlcpy(tmp, archdirname, sizeof(tmp)); 2440 } else { /* relative */ 2441 /* get directory part of logfile */ 2442 strlcpy(tmp, file, sizeof(tmp)); 2443 if ((p = strrchr(tmp, '/')) == NULL) 2444 tmp[0] = '\0'; 2445 else 2446 *(p + 1) = '\0'; 2447 strlcat(tmp, archdirname, sizeof(tmp)); 2448 } 2449 2450 strlcat(tmp, "/", sizeof(tmp)); 2451 2452 /* get filename part of logfile */ 2453 if ((p = strrchr(file, '/')) == NULL) 2454 strlcat(tmp, file, sizeof(tmp)); 2455 else 2456 strlcat(tmp, p + 1, sizeof(tmp)); 2457 } else { 2458 (void) strlcpy(tmp, file, sizeof(tmp)); 2459 } 2460 2461 if (timefnamefmt != NULL) { 2462 mtime = mtime_old_timelog(tmp); 2463 if (mtime == -1) 2464 return (-1); 2465 } else { 2466 strlcat(tmp, ".0", sizeof(tmp)); 2467 logfile_suffix = get_logfile_suffix(tmp); 2468 if (logfile_suffix == NULL) 2469 return (-1); 2470 (void) strlcat(tmp, logfile_suffix, sizeof(tmp)); 2471 if (stat(tmp, &sb) < 0) 2472 return (-1); 2473 mtime = sb.st_mtime; 2474 } 2475 2476 return ((int)(ptimeget_secs(timenow) - mtime + 1800) / 3600); 2477 } 2478 2479 /* Skip Over Blanks */ 2480 static char * 2481 sob(char *p) 2482 { 2483 while (p && *p && isspace(*p)) 2484 p++; 2485 return (p); 2486 } 2487 2488 /* Skip Over Non-Blanks */ 2489 static char * 2490 son(char *p) 2491 { 2492 while (p && *p && !isspace(*p)) 2493 p++; 2494 return (p); 2495 } 2496 2497 /* Check if string is actually a number */ 2498 static int 2499 isnumberstr(const char *string) 2500 { 2501 while (*string) { 2502 if (!isdigitch(*string++)) 2503 return (0); 2504 } 2505 return (1); 2506 } 2507 2508 /* Check if string contains a glob */ 2509 static int 2510 isglobstr(const char *string) 2511 { 2512 char chr; 2513 2514 while ((chr = *string++)) { 2515 if (chr == '*' || chr == '?' || chr == '[') 2516 return (1); 2517 } 2518 return (0); 2519 } 2520 2521 /* 2522 * Save the active log file under a new name. A link to the new name 2523 * is the quick-and-easy way to do this. If that fails (which it will 2524 * if the destination is on another partition), then make a copy of 2525 * the file to the new location. 2526 */ 2527 static void 2528 savelog(char *from, char *to) 2529 { 2530 FILE *src, *dst; 2531 int c, res; 2532 2533 res = link(from, to); 2534 if (res == 0) 2535 return; 2536 2537 if ((src = fopen(from, "r")) == NULL) 2538 err(1, "can't fopen %s for reading", from); 2539 if ((dst = fopen(to, "w")) == NULL) 2540 err(1, "can't fopen %s for writing", to); 2541 2542 while ((c = getc(src)) != EOF) { 2543 if ((putc(c, dst)) == EOF) 2544 err(1, "error writing to %s", to); 2545 } 2546 2547 if (ferror(src)) 2548 err(1, "error reading from %s", from); 2549 if ((fclose(src)) != 0) 2550 err(1, "can't fclose %s", to); 2551 if ((fclose(dst)) != 0) 2552 err(1, "can't fclose %s", from); 2553 } 2554 2555 /* create one or more directory components of a path */ 2556 static void 2557 createdir(const struct conf_entry *ent, char *dirpart) 2558 { 2559 int res; 2560 char *s, *d; 2561 char mkdirpath[MAXPATHLEN]; 2562 struct stat st; 2563 2564 s = dirpart; 2565 d = mkdirpath; 2566 2567 for (;;) { 2568 *d++ = *s++; 2569 if (*s != '/' && *s != '\0') 2570 continue; 2571 *d = '\0'; 2572 res = lstat(mkdirpath, &st); 2573 if (res != 0) { 2574 if (noaction) { 2575 printf("\tmkdir %s\n", mkdirpath); 2576 } else { 2577 res = mkdir(mkdirpath, 0755); 2578 if (res != 0) 2579 err(1, "Error on mkdir(\"%s\") for -a", 2580 mkdirpath); 2581 } 2582 } 2583 if (*s == '\0') 2584 break; 2585 } 2586 if (verbose) { 2587 if (ent->firstcreate) 2588 printf("Created directory '%s' for new %s\n", 2589 dirpart, ent->log); 2590 else 2591 printf("Created directory '%s' for -a\n", dirpart); 2592 } 2593 } 2594 2595 /* 2596 * Create a new log file, destroying any currently-existing version 2597 * of the log file in the process. If the caller wants a backup copy 2598 * of the file to exist, they should call 'link(logfile,logbackup)' 2599 * before calling this routine. 2600 */ 2601 void 2602 createlog(const struct conf_entry *ent) 2603 { 2604 int fd, failed; 2605 struct stat st; 2606 char *realfile, *slash, tempfile[MAXPATHLEN]; 2607 2608 fd = -1; 2609 realfile = ent->log; 2610 2611 /* 2612 * If this log file is being created for the first time (-C option), 2613 * then it may also be true that the parent directory does not exist 2614 * yet. Check, and create that directory if it is missing. 2615 */ 2616 if (ent->firstcreate) { 2617 strlcpy(tempfile, realfile, sizeof(tempfile)); 2618 slash = strrchr(tempfile, '/'); 2619 if (slash != NULL) { 2620 *slash = '\0'; 2621 failed = stat(tempfile, &st); 2622 if (failed && errno != ENOENT) 2623 err(1, "Error on stat(%s)", tempfile); 2624 if (failed) 2625 createdir(ent, tempfile); 2626 else if (!S_ISDIR(st.st_mode)) 2627 errx(1, "%s exists but is not a directory", 2628 tempfile); 2629 } 2630 } 2631 2632 /* 2633 * First create an unused filename, so it can be chown'ed and 2634 * chmod'ed before it is moved into the real location. mkstemp 2635 * will create the file mode=600 & owned by us. Note that all 2636 * temp files will have a suffix of '.z<something>'. 2637 */ 2638 strlcpy(tempfile, realfile, sizeof(tempfile)); 2639 strlcat(tempfile, ".zXXXXXX", sizeof(tempfile)); 2640 if (noaction) 2641 printf("\tmktemp %s\n", tempfile); 2642 else { 2643 fd = mkstemp(tempfile); 2644 if (fd < 0) 2645 err(1, "can't mkstemp logfile %s", tempfile); 2646 2647 /* 2648 * Add status message to what will become the new log file. 2649 */ 2650 if (!(ent->flags & CE_BINARY)) { 2651 if (log_trim(tempfile, ent)) 2652 err(1, "can't add status message to log"); 2653 } 2654 } 2655 2656 /* Change the owner/group, if we are supposed to */ 2657 if (ent->uid != (uid_t)-1 || ent->gid != (gid_t)-1) { 2658 if (noaction) 2659 printf("\tchown %u:%u %s\n", ent->uid, ent->gid, 2660 tempfile); 2661 else { 2662 failed = fchown(fd, ent->uid, ent->gid); 2663 if (failed) 2664 err(1, "can't fchown temp file %s", tempfile); 2665 } 2666 } 2667 2668 /* Turn on NODUMP if it was requested in the config-file. */ 2669 if (ent->flags & CE_NODUMP) { 2670 if (noaction) 2671 printf("\tchflags nodump %s\n", tempfile); 2672 else { 2673 failed = fchflags(fd, UF_NODUMP); 2674 if (failed) { 2675 warn("log_trim: fchflags(NODUMP)"); 2676 } 2677 } 2678 } 2679 2680 /* 2681 * Note that if the real logfile still exists, and if the call 2682 * to rename() fails, then "neither the old file nor the new 2683 * file shall be changed or created" (to quote the standard). 2684 * If the call succeeds, then the file will be replaced without 2685 * any window where some other process might find that the file 2686 * did not exist. 2687 * XXX - ? It may be that for some error conditions, we could 2688 * retry by first removing the realfile and then renaming. 2689 */ 2690 if (noaction) { 2691 printf("\tchmod %o %s\n", ent->permissions, tempfile); 2692 printf("\tmv %s %s\n", tempfile, realfile); 2693 } else { 2694 failed = fchmod(fd, ent->permissions); 2695 if (failed) 2696 err(1, "can't fchmod temp file '%s'", tempfile); 2697 failed = rename(tempfile, realfile); 2698 if (failed) 2699 err(1, "can't mv %s to %s", tempfile, realfile); 2700 } 2701 2702 if (fd >= 0) 2703 close(fd); 2704 } 2705 2706 /* 2707 * Change the attributes of a given filename to what was specified in 2708 * the newsyslog.conf entry. This routine is only called for files 2709 * that newsyslog expects that it has created, and thus it is a fatal 2710 * error if this routine finds that the file does not exist. 2711 */ 2712 static void 2713 change_attrs(const char *fname, const struct conf_entry *ent) 2714 { 2715 int failed; 2716 2717 if (noaction) { 2718 printf("\tchmod %o %s\n", ent->permissions, fname); 2719 2720 if (ent->uid != (uid_t)-1 || ent->gid != (gid_t)-1) 2721 printf("\tchown %u:%u %s\n", 2722 ent->uid, ent->gid, fname); 2723 2724 if (ent->flags & CE_NODUMP) 2725 printf("\tchflags nodump %s\n", fname); 2726 return; 2727 } 2728 2729 failed = chmod(fname, ent->permissions); 2730 if (failed) { 2731 if (errno != EPERM) 2732 err(1, "chmod(%s) in change_attrs", fname); 2733 warn("change_attrs couldn't chmod(%s)", fname); 2734 } 2735 2736 if (ent->uid != (uid_t)-1 || ent->gid != (gid_t)-1) { 2737 failed = chown(fname, ent->uid, ent->gid); 2738 if (failed) 2739 warn("can't chown %s", fname); 2740 } 2741 2742 if (ent->flags & CE_NODUMP) { 2743 failed = chflags(fname, UF_NODUMP); 2744 if (failed) 2745 warn("can't chflags %s NODUMP", fname); 2746 } 2747 } 2748 2749 /* 2750 * Parse a signal number or signal name. Returns the signal number parsed or -1 2751 * on failure. 2752 */ 2753 static int 2754 parse_signal(const char *str) 2755 { 2756 int sig, i; 2757 const char *errstr; 2758 2759 sig = strtonum(str, 1, sys_nsig - 1, &errstr); 2760 2761 if (errstr == NULL) 2762 return (sig); 2763 if (strncasecmp(str, "SIG", 3) == 0) 2764 str += 3; 2765 2766 for (i = 1; i < sys_nsig; i++) { 2767 if (strcasecmp(str, sys_signame[i]) == 0) 2768 return (i); 2769 } 2770 2771 return (-1); 2772 } 2773