Home | History | Annotate | Line # | Download | only in newsyslog
newsyslog.c revision 1.62
      1  1.62      otis /*	$NetBSD: newsyslog.c,v 1.62 2021/03/01 21:37:10 otis Exp $	*/
      2  1.22        ad 
      3  1.22        ad /*
      4  1.22        ad  * Copyright (c) 1999, 2000 Andrew Doran <ad (at) NetBSD.org>
      5  1.22        ad  * All rights reserved.
      6  1.22        ad  *
      7  1.22        ad  * Redistribution and use in source and binary forms, with or without
      8  1.22        ad  * modification, are permitted provided that the following conditions
      9  1.22        ad  * are met:
     10  1.22        ad  * 1. Redistributions of source code must retain the above copyright
     11  1.22        ad  *    notice, this list of conditions and the following disclaimer.
     12  1.22        ad  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.22        ad  *    notice, this list of conditions and the following disclaimer in the
     14  1.22        ad  *    documentation and/or other materials provided with the distribution.
     15  1.22        ad  *
     16  1.22        ad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.22        ad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.22        ad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.22        ad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.22        ad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.22        ad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.22        ad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.22        ad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.22        ad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.22        ad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.22        ad  * SUCH DAMAGE.
     27  1.22        ad  *
     28  1.22        ad  */
     29  1.12   thorpej 
     30   1.1       cgd /*
     31   1.1       cgd  * This file contains changes from the Open Software Foundation.
     32   1.1       cgd  */
     33   1.1       cgd 
     34   1.1       cgd /*
     35  1.22        ad  * Copyright 1988, 1989 by the Massachusetts Institute of Technology
     36  1.22        ad  *
     37  1.22        ad  * Permission to use, copy, modify, and distribute this software
     38  1.22        ad  * and its documentation for any purpose and without fee is
     39  1.22        ad  * hereby granted, provided that the above copyright notice
     40  1.22        ad  * appear in all copies and that both that copyright notice and
     41  1.22        ad  * this permission notice appear in supporting documentation,
     42  1.22        ad  * and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
     43  1.22        ad  * used in advertising or publicity pertaining to distribution
     44  1.22        ad  * of the software without specific, written prior permission.
     45  1.22        ad  * M.I.T. and the M.I.T. S.I.P.B. make no representations about
     46  1.22        ad  * the suitability of this software for any purpose.  It is
     47  1.22        ad  * provided "as is" without express or implied warranty.
     48  1.22        ad  *
     49  1.22        ad  */
     50   1.1       cgd 
     51   1.1       cgd /*
     52  1.32        ad  * newsyslog(8) - a program to roll over log files provided that specified
     53  1.22        ad  * critera are met, optionally preserving a number of historical log files.
     54   1.1       cgd  */
     55   1.1       cgd 
     56  1.13     lukem #include <sys/cdefs.h>
     57   1.5   mycroft #ifndef lint
     58  1.62      otis __RCSID("$NetBSD: newsyslog.c,v 1.62 2021/03/01 21:37:10 otis Exp $");
     59   1.5   mycroft #endif /* not lint */
     60   1.1       cgd 
     61   1.1       cgd #include <sys/types.h>
     62   1.1       cgd #include <sys/time.h>
     63   1.1       cgd #include <sys/stat.h>
     64   1.1       cgd #include <sys/param.h>
     65  1.36      tron #include <sys/wait.h>
     66   1.1       cgd 
     67  1.13     lukem #include <ctype.h>
     68  1.13     lukem #include <fcntl.h>
     69  1.13     lukem #include <grp.h>
     70  1.13     lukem #include <pwd.h>
     71  1.13     lukem #include <signal.h>
     72  1.13     lukem #include <stdio.h>
     73  1.13     lukem #include <stdlib.h>
     74  1.22        ad #include <stdarg.h>
     75  1.13     lukem #include <string.h>
     76  1.14    kleink #include <time.h>
     77  1.13     lukem #include <unistd.h>
     78  1.22        ad #include <errno.h>
     79  1.22        ad #include <err.h>
     80  1.31        ad #include <paths.h>
     81  1.22        ad 
     82  1.54  christos #define PRHDRINFO(x)	\
     83  1.49  christos     (/*LINTED*/(void)(verbose ? printf x : 0))
     84  1.54  christos #define PRINFO(x)	\
     85  1.49  christos     (/*LINTED*/(void)(verbose ? printf("  ") + printf x : 0))
     86  1.22        ad 
     87  1.51    dogcow #ifndef __arraycount
     88  1.51    dogcow #define __arraycount(a) (sizeof(a) / sizeof(a[0]))
     89  1.51    dogcow #endif
     90  1.51    dogcow 
     91  1.29        ad #define	CE_BINARY	0x02	/* Logfile is a binary file/non-syslog */
     92  1.29        ad #define	CE_NOSIGNAL	0x04	/* Don't send a signal when trimmed */
     93  1.32        ad #define	CE_CREATE	0x08	/* Create log file if none exists */
     94  1.32        ad #define	CE_PLAIN0	0x10	/* Do not compress zero'th history file */
     95  1.54  christos #define	CE_SYSLPROTOCOL 0x20	/* log in syslog-protocol format,
     96  1.54  christos 				   not configurable but detected at runtime */
     97  1.62      otis #define	CE_NOEMPTY	0x40	/* Do not rotate empty log file */
     98  1.13     lukem 
     99   1.1       cgd struct conf_entry {
    100  1.22        ad 	uid_t	uid;			/* Owner of log */
    101  1.22        ad 	gid_t	gid;			/* Group of log */
    102  1.22        ad 	mode_t	mode;			/* File permissions */
    103  1.22        ad 	int	numhist;		/* Number of historical logs to keep */
    104  1.22        ad 	size_t	maxsize;		/* Maximum log size */
    105  1.22        ad 	int	maxage;			/* Hours between log trimming */
    106  1.32        ad 	time_t	trimat;			/* Specific trim time */
    107  1.22        ad 	int	flags;			/* Flags (CE_*) */
    108  1.22        ad 	int	signum;			/* Signal to send */
    109  1.22        ad 	char	pidfile[MAXPATHLEN];	/* File containing PID to signal */
    110  1.22        ad 	char	logfile[MAXPATHLEN];	/* Path to log file */
    111   1.1       cgd };
    112   1.1       cgd 
    113  1.53    dogcow struct compressor {
    114  1.53    dogcow 	const char *path;
    115  1.53    dogcow 	const char *args;
    116  1.53    dogcow 	const char *suffix;
    117  1.53    dogcow 	const char *flag; /* newsyslog.conf flag */
    118  1.53    dogcow };
    119  1.53    dogcow 
    120  1.53    dogcow static struct compressor compress[] =
    121  1.53    dogcow {
    122  1.53    dogcow 	{NULL, "", "", ""}, /* 0th compressor is "no compression" */
    123  1.53    dogcow 	{"/usr/bin/gzip", "-f", ".gz", "Z"},
    124  1.53    dogcow 	{"/usr/bin/bzip2", "-9f", ".bz2", "J"},
    125  1.60  christos 	{"/usr/bin/xz", "-f", ".xz", "X"},
    126  1.53    dogcow };
    127  1.53    dogcow 
    128  1.53    dogcow #define _PATH_NEWSYSLOGCONF	"/etc/newsyslog.conf"
    129  1.53    dogcow #define _PATH_SYSLOGDPID	_PATH_VARRUN"syslogd.pid"
    130  1.53    dogcow 
    131  1.49  christos static int	verbose;			/* Be verbose */
    132  1.49  christos static int	noaction;			/* Take no action */
    133  1.49  christos static int	nosignal;			/* Do not send signals */
    134  1.54  christos static char	hostname[MAXHOSTNAMELEN + 1];	/* Hostname, with domain */
    135  1.49  christos static uid_t	myeuid;				/* EUID we are running with */
    136  1.51    dogcow static int	ziptype;			/* compression type, if any */
    137  1.49  christos 
    138  1.49  christos static int	getsig(const char *);
    139  1.49  christos static int	isnumber(const char *);
    140  1.49  christos static int	parse_cfgline(struct conf_entry *, FILE *, size_t *);
    141  1.49  christos static time_t	parse_iso8601(char *);
    142  1.49  christos static time_t	parse_dwm(char *);
    143  1.49  christos static int	parse_userspec(const char *, struct passwd **, struct group **);
    144  1.49  christos static pid_t	readpidfile(const char *);
    145  1.50     perry static void	usage(void) __dead;
    146  1.49  christos 
    147  1.49  christos static void	log_compress(struct conf_entry *, const char *);
    148  1.49  christos static void	log_create(struct conf_entry *);
    149  1.49  christos static void	log_examine(struct conf_entry *, int);
    150  1.49  christos static void	log_trim(struct conf_entry *);
    151  1.49  christos static void	log_trimmed(struct conf_entry *);
    152  1.54  christos static void	log_get_format(struct conf_entry *);
    153  1.22        ad 
    154  1.22        ad /*
    155  1.22        ad  * Program entry point.
    156  1.22        ad  */
    157  1.13     lukem int
    158  1.22        ad main(int argc, char **argv)
    159   1.1       cgd {
    160  1.29        ad 	struct conf_entry log;
    161  1.22        ad 	FILE *fd;
    162  1.49  christos 	const char *cfile;
    163  1.32        ad 	int c, needroot, i, force;
    164  1.22        ad 	size_t lineno;
    165  1.39        ad 
    166  1.22        ad 	force = 0;
    167  1.22        ad 	needroot = 1;
    168  1.51    dogcow 	ziptype = 0;
    169  1.22        ad 	cfile = _PATH_NEWSYSLOGCONF;
    170   1.1       cgd 
    171  1.49  christos 	(void)gethostname(hostname, sizeof(hostname));
    172  1.44        ad 	hostname[sizeof(hostname) - 1] = '\0';
    173   1.8       jtc 
    174  1.32        ad 	/* Parse command line options. */
    175  1.38        ad 	while ((c = getopt(argc, argv, "f:nrsvF")) != -1) {
    176  1.22        ad 		switch (c) {
    177  1.28        ad 		case 'f':
    178  1.28        ad 			cfile = optarg;
    179  1.28        ad 			break;
    180  1.28        ad 		case 'n':
    181  1.28        ad 			noaction = 1;
    182  1.29        ad 			verbose = 1;
    183  1.28        ad 			break;
    184  1.22        ad 		case 'r':
    185  1.22        ad 			needroot = 0;
    186  1.22        ad 			break;
    187  1.38        ad 		case 's':
    188  1.38        ad 			nosignal = 1;
    189  1.38        ad 			break;
    190  1.22        ad 		case 'v':
    191  1.22        ad 			verbose = 1;
    192  1.22        ad 			break;
    193  1.22        ad 		case 'F':
    194  1.22        ad 			force = 1;
    195  1.22        ad 			break;
    196  1.22        ad 		default:
    197  1.22        ad 			usage();
    198  1.28        ad 			/* NOTREACHED */
    199  1.22        ad 		}
    200   1.8       jtc 	}
    201   1.1       cgd 
    202  1.32        ad 	myeuid = geteuid();
    203  1.32        ad 	if (needroot && myeuid != 0)
    204  1.22        ad 		errx(EXIT_FAILURE, "must be run as root");
    205  1.22        ad 
    206  1.32        ad 	argc -= optind;
    207  1.32        ad 	argv += optind;
    208  1.32        ad 
    209  1.22        ad 	if (strcmp(cfile, "-") == 0)
    210  1.22        ad 		fd = stdin;
    211  1.22        ad 	else if ((fd = fopen(cfile, "rt")) == NULL)
    212  1.22        ad 		err(EXIT_FAILURE, "%s", cfile);
    213  1.32        ad 
    214  1.32        ad 	for (lineno = 0; !parse_cfgline(&log, fd, &lineno);) {
    215  1.32        ad 		/*
    216  1.32        ad 		 * If specific log files were specified, touch only
    217  1.32        ad 		 * those.
    218  1.32        ad 		 */
    219  1.32        ad 		if (argc != 0) {
    220  1.32        ad 			for (i = 0; i < argc; i++)
    221  1.32        ad 				if (strcmp(log.logfile, argv[i]) == 0)
    222  1.32        ad 					break;
    223  1.32        ad 			if (i == argc)
    224  1.32        ad 				continue;
    225  1.32        ad 		}
    226  1.29        ad 		log_examine(&log, force);
    227  1.32        ad 	}
    228  1.22        ad 
    229  1.22        ad 	if (fd != stdin)
    230  1.49  christos 		(void)fclose(fd);
    231   1.1       cgd 
    232  1.22        ad 	exit(EXIT_SUCCESS);
    233  1.22        ad 	/* NOTREACHED */
    234   1.1       cgd }
    235   1.1       cgd 
    236  1.22        ad /*
    237  1.22        ad  * Parse a single line from the configuration file.
    238   1.1       cgd  */
    239  1.49  christos static int
    240  1.32        ad parse_cfgline(struct conf_entry *log, FILE *fd, size_t *_lineno)
    241   1.1       cgd {
    242  1.22        ad 	char *line, *q, **ap, *argv[10];
    243  1.22        ad 	struct passwd *pw;
    244  1.22        ad 	struct group *gr;
    245  1.33     enami 	int nf, lineno, i, rv;
    246  1.33     enami 
    247  1.33     enami 	rv = -1;
    248  1.33     enami 	line = NULL;
    249  1.59      manu 	ziptype = 0;
    250  1.30        ad 
    251  1.32        ad 	/* Place the white-space separated fields into an array. */
    252  1.33     enami 	do {
    253  1.33     enami 		if (line != NULL)
    254  1.33     enami 			free(line);
    255  1.33     enami 		if ((line = fparseln(fd, NULL, _lineno, NULL, 0)) == NULL)
    256  1.33     enami 			return (rv);
    257  1.33     enami 		lineno = (int)*_lineno;
    258  1.33     enami 
    259  1.33     enami 		for (ap = argv, nf = 0; (*ap = strsep(&line, " \t")) != NULL;)
    260  1.33     enami 			if (**ap != '\0') {
    261  1.44        ad 				if (++nf == sizeof(argv) / sizeof(argv[0])) {
    262  1.33     enami 					warnx("config line %d: "
    263  1.33     enami 					    "too many fields", lineno);
    264  1.33     enami 					goto bad;
    265  1.33     enami 				}
    266  1.33     enami 				ap++;
    267  1.22        ad 			}
    268  1.33     enami 	} while (nf == 0);
    269  1.22        ad 
    270  1.22        ad 	if (nf < 6)
    271  1.22        ad 		errx(EXIT_FAILURE, "config line %d: too few fields", lineno);
    272  1.22        ad 
    273  1.49  christos 	(void)memset(log, 0, sizeof(*log));
    274  1.33     enami 
    275  1.32        ad 	/* logfile_name */
    276  1.22        ad 	ap = argv;
    277  1.49  christos 	(void)strlcpy(log->logfile, *ap++, sizeof(log->logfile));
    278  1.32        ad 	if (log->logfile[0] != '/')
    279  1.32        ad 		errx(EXIT_FAILURE,
    280  1.32        ad 		    "config line %d: logfile must have a full path", lineno);
    281  1.21        ad 
    282  1.32        ad 	/* owner:group */
    283  1.31        ad 	if (strchr(*ap, ':') != NULL || strchr(*ap, '.') != NULL) {
    284  1.32        ad 		if (parse_userspec(*ap++, &pw, &gr)) {
    285  1.22        ad 			warnx("config line %d: unknown user/group", lineno);
    286  1.33     enami 			goto bad;
    287  1.22        ad 		}
    288  1.32        ad 
    289  1.32        ad 		/*
    290  1.35        ad 		 * We may only change the file's owner as non-root.
    291  1.32        ad 		 */
    292  1.32        ad 		if (myeuid != 0) {
    293  1.32        ad 			if (pw->pw_uid != myeuid)
    294  1.32        ad 				errx(EXIT_FAILURE, "config line %d: user:group "
    295  1.32        ad 				    "as non-root must match current user",
    296  1.32        ad 				    lineno);
    297  1.32        ad 			log->uid = (uid_t)-1;
    298  1.32        ad 		} else
    299  1.32        ad 			log->uid = pw->pw_uid;
    300  1.22        ad 		log->gid = gr->gr_gid;
    301  1.22        ad 		if (nf < 7)
    302  1.22        ad 			errx(EXIT_FAILURE, "config line %d: too few fields",
    303  1.22        ad 			    lineno);
    304  1.32        ad 	} else if (myeuid != 0) {
    305  1.32        ad 		log->uid = (uid_t)-1;
    306  1.32        ad 		log->gid = getegid();
    307  1.22        ad 	}
    308  1.22        ad 
    309  1.32        ad 	/* mode */
    310  1.22        ad 	if (sscanf(*ap++, "%o", &i) != 1) {
    311  1.22        ad 		warnx("config line %d: bad permissions", lineno);
    312  1.33     enami 		goto bad;
    313  1.22        ad 	}
    314  1.22        ad 	log->mode = (mode_t)i;
    315  1.22        ad 
    316  1.32        ad 	/* count */
    317  1.26   aymeric 	if (sscanf(*ap++, "%d", &log->numhist) != 1) {
    318  1.22        ad 		warnx("config line %d: bad log count", lineno);
    319  1.33     enami 		goto bad;
    320  1.22        ad 	}
    321  1.22        ad 
    322  1.32        ad 	/* size */
    323  1.48       dsl 	if (**ap == '*')
    324  1.48       dsl 		log->maxsize = (size_t)-1;
    325  1.48       dsl 	else {
    326  1.32        ad 		log->maxsize = (int)strtol(*ap, &q, 0);
    327  1.32        ad 		if (*q != '\0') {
    328  1.32        ad 			warnx("config line %d: bad log size", lineno);
    329  1.33     enami 			goto bad;
    330  1.32        ad 		}
    331  1.22        ad 	}
    332  1.22        ad 	ap++;
    333  1.32        ad 
    334  1.32        ad 	/* when */
    335  1.32        ad 	log->maxage = -1;
    336  1.32        ad 	log->trimat = (time_t)-1;
    337  1.32        ad 	q = *ap++;
    338  1.32        ad 
    339  1.32        ad 	if (strcmp(q, "*") != 0) {
    340  1.48       dsl 		if (isdigit((unsigned char)*q))
    341  1.32        ad 			log->maxage = (int)strtol(q, &q, 10);
    342  1.32        ad 
    343  1.32        ad 		/*
    344  1.32        ad 		 * One class of periodic interval specification can follow a
    345  1.32        ad 		 * maximum age specification.  Handle it.
    346  1.32        ad 		 */
    347  1.32        ad 		if (*q == '@') {
    348  1.32        ad 			log->trimat = parse_iso8601(q + 1);
    349  1.32        ad 			if (log->trimat == (time_t)-1) {
    350  1.32        ad 				warnx("config line %d: bad trim time", lineno);
    351  1.33     enami 				goto bad;
    352  1.32        ad 			}
    353  1.32        ad 		} else if (*q == '$') {
    354  1.32        ad 			if ((log->trimat = parse_dwm(q + 1)) == (time_t)-1) {
    355  1.32        ad 				warnx("config line %d: bad trim time", lineno);
    356  1.33     enami 				goto bad;
    357  1.32        ad 			}
    358  1.32        ad 		} else if (log->maxage == -1) {
    359  1.32        ad 			warnx("config line %d: bad log age", lineno);
    360  1.33     enami 			goto bad;
    361  1.32        ad 		}
    362  1.22        ad 	}
    363  1.32        ad 
    364  1.32        ad 	/* flags */
    365  1.42        ad 	log->flags = (nosignal ? CE_NOSIGNAL : 0);
    366  1.42        ad 
    367  1.28        ad 	for (q = *ap++; q != NULL && *q != '\0'; q++) {
    368  1.51    dogcow 		char qq = toupper((unsigned char)*q);
    369  1.51    dogcow 		switch (qq) {
    370  1.51    dogcow 		case 'B':
    371  1.22        ad 			log->flags |= CE_BINARY;
    372  1.22        ad 			break;
    373  1.51    dogcow 		case 'C':
    374  1.22        ad 			log->flags |= CE_CREATE;
    375  1.22        ad 			break;
    376  1.62      otis 		case 'E':
    377  1.62      otis 			log->flags |= CE_NOEMPTY;
    378  1.62      otis 			break;
    379  1.51    dogcow 		case 'N':
    380  1.22        ad 			log->flags |= CE_NOSIGNAL;
    381  1.22        ad 			break;
    382  1.51    dogcow 		case 'P':
    383  1.29        ad 			log->flags |= CE_PLAIN0;
    384  1.29        ad 			break;
    385  1.60  christos 		case 'J': case 'X': case 'Z':
    386  1.52    simonb 			for (ziptype = __arraycount(compress); --ziptype; ) {
    387  1.51    dogcow 				if (*compress[ziptype].flag == qq)
    388  1.51    dogcow 				    break;
    389  1.51    dogcow 			}
    390  1.22        ad 			break;
    391  1.22        ad 		case '-':
    392  1.22        ad 			break;
    393  1.22        ad 		default:
    394  1.22        ad 			warnx("config line %d: bad flags", lineno);
    395  1.33     enami 			goto bad;
    396  1.22        ad 		}
    397  1.22        ad 	}
    398   1.1       cgd 
    399  1.32        ad 	/* path_to_pidfile */
    400  1.22        ad 	if (*ap != NULL && **ap == '/')
    401  1.49  christos 		(void)strlcpy(log->pidfile, *ap++, sizeof(log->pidfile));
    402  1.22        ad 	else
    403  1.22        ad 		log->pidfile[0] = '\0';
    404  1.22        ad 
    405  1.32        ad 	/* sigtype */
    406  1.40        ad 	if (*ap != NULL) {
    407  1.40        ad 		if ((log->signum = getsig(*ap++)) < 0) {
    408  1.40        ad 			warnx("config line %d: bad signal type", lineno);
    409  1.40        ad 			goto bad;
    410  1.40        ad 		}
    411  1.22        ad 	} else
    412  1.22        ad 		log->signum = SIGHUP;
    413  1.33     enami 
    414  1.33     enami 	rv = 0;
    415  1.33     enami 
    416  1.33     enami bad:
    417  1.33     enami 	free(line);
    418  1.33     enami 	return (rv);
    419   1.1       cgd }
    420   1.1       cgd 
    421  1.22        ad /*
    422  1.54  christos  * Examine a log file.	If the trim conditions are met, call log_trim() to
    423  1.22        ad  * trim the log file.
    424  1.22        ad  */
    425  1.49  christos static void
    426  1.29        ad log_examine(struct conf_entry *log, int force)
    427  1.22        ad {
    428  1.22        ad 	struct stat sb;
    429  1.22        ad 	size_t size;
    430  1.32        ad 	int age, trim;
    431  1.51    dogcow 	unsigned int j;
    432  1.34        ad 	char tmp[MAXPATHLEN];
    433  1.34        ad 	const char *reason;
    434  1.22        ad 	time_t now;
    435  1.28        ad 
    436  1.32        ad 	now = time(NULL);
    437  1.32        ad 
    438  1.29        ad 	PRHDRINFO(("\n%s <%d%s>: ", log->logfile, log->numhist,
    439  1.51    dogcow 	    compress[ziptype].flag));
    440  1.28        ad 
    441  1.32        ad 	/*
    442  1.54  christos 	 * stat() the logfile.	If it doesn't exist and the `c' flag has
    443  1.32        ad 	 * been specified, create it.  If it doesn't exist and the `c' flag
    444  1.32        ad 	 * hasn't been specified, give up.
    445  1.32        ad 	 */
    446  1.29        ad 	if (stat(log->logfile, &sb) < 0) {
    447  1.29        ad 		if (errno == ENOENT && (log->flags & CE_CREATE) != 0) {
    448  1.28        ad 			PRHDRINFO(("creating; "));
    449  1.28        ad 			if (!noaction)
    450  1.29        ad 				log_create(log);
    451  1.28        ad 			else {
    452  1.28        ad 				PRHDRINFO(("can't proceed with `-n'\n"));
    453  1.28        ad 				return;
    454  1.28        ad 			}
    455  1.29        ad 			if (stat(log->logfile, &sb))
    456  1.29        ad 				err(EXIT_FAILURE, "%s", log->logfile);
    457  1.28        ad 		} else if (errno == ENOENT) {
    458  1.28        ad 			PRHDRINFO(("does not exist --> skip log\n"));
    459  1.22        ad 			return;
    460  1.28        ad 		} else if (errno != 0)
    461  1.29        ad 			err(EXIT_FAILURE, "%s", log->logfile);
    462  1.45    itojun 	}
    463  1.45    itojun 
    464  1.45    itojun 	if (!S_ISREG(sb.st_mode)) {
    465  1.45    itojun 		PRHDRINFO(("not a regular file --> skip log\n"));
    466  1.45    itojun 		return;
    467  1.22        ad 	}
    468  1.22        ad 
    469  1.62      otis 	/* Skip rotation of empty log file when flag
    470  1.62      otis 	 * E is specified
    471  1.62      otis 	 */
    472  1.62      otis 	if (sb.st_size == 0 && (log->flags & CE_NOEMPTY) != 0) {
    473  1.62      otis 		PRHDRINFO(("empty file --> skip log\n"));
    474  1.62      otis 		return;
    475  1.62      otis 	}
    476  1.62      otis 
    477  1.32        ad 	/* Size of the log file in kB. */
    478  1.22        ad 	size = ((size_t)sb.st_blocks * S_BLKSIZE) >> 10;
    479  1.20        ad 
    480  1.32        ad 	/*
    481  1.32        ad 	 * Get the age (expressed in hours) of the current log file with
    482  1.32        ad 	 * respect to the newest historical log file.
    483  1.32        ad 	 */
    484  1.51    dogcow 	age = -1;
    485  1.52    simonb 	for (j = 0; j < __arraycount(compress); j++) {
    486  1.51    dogcow 		(void)strlcpy(tmp, log->logfile, sizeof(tmp));
    487  1.51    dogcow 		(void)strlcat(tmp, ".0", sizeof(tmp));
    488  1.51    dogcow 		(void)strlcat(tmp, compress[j].suffix, sizeof(tmp));
    489  1.51    dogcow 		if (!stat(tmp, &sb)) {
    490  1.28        ad 			age = (int)(now - sb.st_mtime + 1800) / 3600;
    491  1.51    dogcow 			break;
    492  1.51    dogcow 		}
    493  1.51    dogcow 	}
    494  1.11   thorpej 
    495  1.22        ad 	/*
    496  1.32        ad 	 * Examine the set of given trim conditions and if any one is met,
    497  1.32        ad 	 * trim the log.
    498  1.32        ad 	 *
    499  1.32        ad 	 * Note: if `maxage' or `trimat' is used as a trim condition, we
    500  1.32        ad 	 * need at least one historical log file to determine the `age' of
    501  1.54  christos 	 * the active log file.	 WRT `trimat', we will trim up to one hour
    502  1.32        ad 	 * after the specific trim time has passed - we need to know if
    503  1.32        ad 	 * we've trimmed to meet that condition with a previous invocation
    504  1.32        ad 	 * of newsyslog(8).
    505  1.22        ad 	 */
    506  1.32        ad 	if (log->maxage >= 0 && (age >= log->maxage || age < 0)) {
    507  1.32        ad 		trim = 1;
    508  1.32        ad 		reason = "log age > interval";
    509  1.32        ad 	} else if (size >= log->maxsize) {
    510  1.32        ad 		trim = 1;
    511  1.32        ad 		reason = "log size > size";
    512  1.32        ad 	} else if (log->trimat != (time_t)-1 && now >= log->trimat &&
    513  1.39        ad 		   (age == -1 || age > 1) &&
    514  1.39        ad 		   difftime(now, log->trimat) < 60 * 60) {
    515  1.32        ad 		trim = 1;
    516  1.32        ad 		reason = "specific trim time";
    517  1.32        ad 	} else {
    518  1.32        ad 		trim = force;
    519  1.32        ad 		reason = "trim forced";
    520  1.32        ad 	}
    521  1.32        ad 
    522  1.32        ad 	if (trim) {
    523  1.32        ad 		PRHDRINFO(("--> trim log (%s)\n", reason));
    524  1.29        ad 		log_trim(log);
    525  1.22        ad 	} else
    526  1.32        ad 		PRHDRINFO(("--> skip log (trim conditions not met)\n"));
    527   1.1       cgd }
    528   1.1       cgd 
    529  1.22        ad /*
    530  1.22        ad  * Trim the specified log file.
    531  1.22        ad  */
    532  1.49  christos static void
    533  1.22        ad log_trim(struct conf_entry *log)
    534   1.1       cgd {
    535  1.22        ad 	char file1[MAXPATHLEN], file2[MAXPATHLEN];
    536  1.52    simonb 	int i, j, k;
    537  1.22        ad 	struct stat st;
    538  1.22        ad 	pid_t pid;
    539  1.22        ad 
    540  1.47     lukem 	if (log->numhist != 0) {
    541  1.47     lukem 		/* Remove oldest historical log. */
    542  1.52    simonb 		for (j = 0; j < (int)__arraycount(compress); j++) {
    543  1.51    dogcow 			(void)snprintf(file1, sizeof(file1), "%s.%d",
    544  1.51    dogcow 			    log->logfile, log->numhist - 1);
    545  1.51    dogcow 			(void)strlcat(file1, compress[j].suffix,
    546  1.51    dogcow 			    sizeof(file1));
    547  1.51    dogcow 			PRINFO(("rm -f %s\n", file1));
    548  1.51    dogcow 			if (!noaction)
    549  1.51    dogcow 				(void)unlink(file1);
    550  1.51    dogcow 		}
    551  1.47     lukem 	}
    552  1.22        ad 
    553  1.58  christos 	/*
    554  1.58  christos 	 * If a historical log file isn't compressed, and 'z' has been
    555  1.58  christos 	 * specified, compress it.  (This is convenient, but is also needed
    556  1.58  christos 	 * if 'p' has been specified.)  It should be noted that gzip(1)
    557  1.58  christos 	 * preserves file ownership and file mode.
    558  1.58  christos 	 */
    559  1.58  christos 	if (ziptype) {
    560  1.58  christos 		for (i = 0; i < log->numhist; i++) {
    561  1.58  christos 			snprintf(file1, sizeof(file1), "%s.%d", log->logfile, i);
    562  1.58  christos 			if (lstat(file1, &st) != 0)
    563  1.58  christos 				continue;
    564  1.58  christos 			snprintf(file2, sizeof(file2), "%s%s", file1,
    565  1.58  christos 			    compress[ziptype].suffix);
    566  1.58  christos 			if (lstat(file2, &st) == 0)
    567  1.58  christos 				continue;
    568  1.58  christos 			log_compress(log, file1);
    569  1.58  christos 		}
    570  1.58  christos 	}
    571  1.58  christos 
    572  1.32        ad 	/* Move down log files. */
    573  1.47     lukem 	for (i = log->numhist - 1; i > 0; i--) {
    574  1.52    simonb 		for (j = 0; j < (int)__arraycount(compress); j++) {
    575  1.51    dogcow 			snprintf(file1, sizeof(file1), "%s.%d%s", log->logfile,
    576  1.57    dogcow 			    i - 1, compress[j].suffix);
    577  1.51    dogcow 			snprintf(file2, sizeof(file2), "%s.%d%s", log->logfile,
    578  1.57    dogcow 			    i, compress[j].suffix);
    579  1.51    dogcow 			k = lstat(file1, &st);
    580  1.51    dogcow 			if (!k) break;
    581  1.22        ad 		}
    582  1.51    dogcow 		if (k) continue;
    583  1.22        ad 
    584  1.29        ad 		PRINFO(("mv %s %s\n", file1, file2));
    585  1.28        ad 		if (!noaction)
    586  1.29        ad 			if (rename(file1, file2))
    587  1.29        ad 				err(EXIT_FAILURE, "%s", file1);
    588  1.29        ad 		PRINFO(("chmod %o %s\n", log->mode, file2));
    589  1.28        ad 		if (!noaction)
    590  1.29        ad 			if (chmod(file2, log->mode))
    591  1.29        ad 				err(EXIT_FAILURE, "%s", file2);
    592  1.32        ad 		PRINFO(("chown %d:%d %s\n", log->uid, log->gid,
    593  1.32        ad 		    file2));
    594  1.28        ad 		if (!noaction)
    595  1.29        ad 			if (chown(file2, log->uid, log->gid))
    596  1.32        ad 				err(EXIT_FAILURE, "%s", file2);
    597  1.29        ad 	}
    598  1.29        ad 
    599  1.54  christos 	log_get_format(log);
    600  1.28        ad 	log_trimmed(log);
    601  1.22        ad 
    602  1.32        ad 	/* Create the historical log file if we're maintaining history. */
    603  1.22        ad 	if (log->numhist == 0) {
    604  1.28        ad 		PRINFO(("rm -f %s\n", log->logfile));
    605  1.28        ad 		if (!noaction)
    606  1.28        ad 			if (unlink(log->logfile))
    607  1.28        ad 				err(EXIT_FAILURE, "%s", log->logfile);
    608  1.22        ad 	} else {
    609  1.49  christos 		(void)snprintf(file1, sizeof(file1), "%s.0", log->logfile);
    610  1.28        ad 		PRINFO(("mv %s %s\n", log->logfile, file1));
    611  1.28        ad 		if (!noaction)
    612  1.28        ad 			if (rename(log->logfile, file1))
    613  1.28        ad 				err(EXIT_FAILURE, "%s", log->logfile);
    614  1.22        ad 	}
    615  1.22        ad 
    616  1.29        ad 	PRINFO(("(create new log)\n"));
    617  1.22        ad 	log_create(log);
    618  1.28        ad 	log_trimmed(log);
    619  1.22        ad 
    620  1.32        ad 	/* Set the correct permissions on the log. */
    621  1.22        ad 	PRINFO(("chmod %o %s\n", log->mode, log->logfile));
    622  1.28        ad 	if (!noaction)
    623  1.28        ad 		if (chmod(log->logfile, log->mode))
    624  1.28        ad 			err(EXIT_FAILURE, "%s", log->logfile);
    625  1.22        ad 
    626  1.32        ad 	/* Do we need to signal a daemon? */
    627  1.42        ad 	if ((log->flags & CE_NOSIGNAL) == 0) {
    628  1.22        ad 		if (log->pidfile[0] != '\0')
    629  1.22        ad 			pid = readpidfile(log->pidfile);
    630  1.22        ad 		else
    631  1.22        ad 			pid = readpidfile(_PATH_SYSLOGDPID);
    632  1.22        ad 
    633  1.22        ad 		if (pid != (pid_t)-1) {
    634  1.32        ad 			PRINFO(("kill -%s %lu\n",
    635  1.32        ad 			    sys_signame[log->signum], (u_long)pid));
    636  1.28        ad 			if (!noaction)
    637  1.28        ad 				if (kill(pid, log->signum))
    638  1.28        ad 					warn("kill");
    639  1.22        ad 		}
    640  1.22        ad 	}
    641  1.29        ad 
    642  1.32        ad 	/* If the newest historical log is to be compressed, do it here. */
    643  1.51    dogcow 	if (ziptype && !(log->flags & CE_PLAIN0) && log->numhist != 0) {
    644  1.44        ad 		snprintf(file1, sizeof(file1), "%s.0", log->logfile);
    645  1.42        ad 		if ((log->flags & CE_NOSIGNAL) == 0) {
    646  1.42        ad 			PRINFO(("sleep for 10 seconds before compressing...\n"));
    647  1.49  christos 			(void)sleep(10);
    648  1.42        ad 		}
    649  1.29        ad 		log_compress(log, file1);
    650  1.22        ad 	}
    651   1.1       cgd }
    652   1.1       cgd 
    653  1.54  christos static void
    654  1.54  christos log_get_format(struct conf_entry *log)
    655  1.54  christos {
    656  1.54  christos 	FILE *fd;
    657  1.54  christos 	char *line;
    658  1.54  christos 	size_t linelen;
    659  1.54  christos 
    660  1.54  christos 	if ((log->flags & CE_BINARY) != 0)
    661  1.54  christos 		return;
    662  1.54  christos 	PRINFO(("(read line format of %s)\n", log->logfile));
    663  1.54  christos 	if (noaction)
    664  1.54  christos 		return;
    665  1.54  christos 
    666  1.54  christos 	if ((fd = fopen(log->logfile, "r")) == NULL)
    667  1.54  christos 		return;
    668  1.54  christos 
    669  1.54  christos 	/* read 2nd line */
    670  1.54  christos 	line = fgetln(fd, &linelen);
    671  1.54  christos 	if ((line = fgetln(fd, &linelen)) != NULL
    672  1.54  christos 	  && line[10] == 'T')
    673  1.54  christos 		log->flags |= CE_SYSLPROTOCOL;
    674  1.54  christos 	(void)fclose(fd);
    675  1.54  christos }
    676  1.54  christos 
    677  1.22        ad /*
    678  1.22        ad  * Write an entry to the log file recording the fact that it was trimmed.
    679  1.22        ad  */
    680  1.49  christos static void
    681  1.22        ad log_trimmed(struct conf_entry *log)
    682   1.1       cgd {
    683  1.22        ad 	FILE *fd;
    684  1.22        ad 	time_t now;
    685  1.55  christos 	const char *daytime;
    686  1.55  christos 	const char  trim_message[] = "log file turned over";
    687  1.22        ad 
    688  1.28        ad 	if ((log->flags & CE_BINARY) != 0)
    689  1.28        ad 		return;
    690  1.28        ad 	PRINFO(("(append rotation notice to %s)\n", log->logfile));
    691  1.28        ad 	if (noaction)
    692  1.28        ad 		return;
    693  1.28        ad 
    694  1.22        ad 	if ((fd = fopen(log->logfile, "at")) == NULL)
    695  1.22        ad 		err(EXIT_FAILURE, "%s", log->logfile);
    696  1.22        ad 
    697  1.54  christos 	if ((log->flags & CE_SYSLPROTOCOL) == 0) {
    698  1.54  christos 		char shorthostname[MAXHOSTNAMELEN];
    699  1.54  christos 		char *p;
    700  1.54  christos 
    701  1.54  christos 		/* Truncate domain. */
    702  1.55  christos 		(void)strlcpy(shorthostname, hostname, sizeof(shorthostname));
    703  1.54  christos 		if ((p = strchr(shorthostname, '.')) != NULL)
    704  1.54  christos 			*p = '\0';
    705  1.54  christos 
    706  1.54  christos 		now = time(NULL);
    707  1.55  christos 		daytime = p = ctime(&now) + 4;
    708  1.55  christos 		p[15] = '\0';
    709  1.54  christos 
    710  1.54  christos 		(void)fprintf(fd, "%s %s newsyslog[%lu]: %s\n",
    711  1.54  christos 		    daytime, hostname, (u_long)getpid(), trim_message);
    712  1.54  christos 	} else {
    713  1.54  christos 		struct tm *tmnow;
    714  1.54  christos 		struct timeval tv;
    715  1.54  christos 		char timestamp[35];
    716  1.54  christos 		unsigned i, j;
    717  1.54  christos 
    718  1.54  christos 		if (gettimeofday(&tv, NULL) == -1) {
    719  1.54  christos 			daytime = "-";
    720  1.54  christos 		} else {
    721  1.54  christos 			tzset();
    722  1.54  christos 			now = (time_t) tv.tv_sec;
    723  1.54  christos 			tmnow = localtime(&now);
    724  1.54  christos 
    725  1.54  christos 			i = strftime(timestamp, sizeof(timestamp),
    726  1.54  christos 				"%FT%T", tmnow);
    727  1.54  christos 			i += snprintf(timestamp+i, sizeof(timestamp)-i,
    728  1.56  christos 				".%06ld", (long)tv.tv_usec);
    729  1.54  christos 			i += j = strftime(timestamp+i, sizeof(timestamp)-i-1,
    730  1.54  christos 				"%z", tmnow);
    731  1.54  christos 			/* strftime gives eg. "+0200", but we need "+02:00" */
    732  1.54  christos 			if (j == 5) {
    733  1.54  christos 				timestamp[i+1] = timestamp[i];
    734  1.54  christos 				timestamp[i]   = timestamp[i-1];
    735  1.54  christos 				timestamp[i-1] = timestamp[i-2];
    736  1.54  christos 				timestamp[i-2] = ':';
    737  1.54  christos 				i += 1;
    738  1.54  christos 			}
    739  1.54  christos 			daytime = timestamp;
    740  1.54  christos 		}
    741  1.54  christos 		(void)fprintf(fd, "%s %s newsyslog %lu - - %s\n",
    742  1.54  christos 			daytime, hostname, (u_long)getpid(), trim_message);
    743  1.22        ad 
    744  1.54  christos 	}
    745  1.49  christos 	(void)fclose(fd);
    746   1.1       cgd }
    747   1.1       cgd 
    748  1.22        ad /*
    749  1.29        ad  * Create a new log file.
    750  1.22        ad  */
    751  1.49  christos static void
    752  1.29        ad log_create(struct conf_entry *log)
    753   1.1       cgd {
    754  1.22        ad 	int fd;
    755   1.1       cgd 
    756  1.28        ad 	if (noaction)
    757  1.28        ad 		return;
    758  1.28        ad 
    759  1.29        ad 	if ((fd = creat(log->logfile, log->mode)) < 0)
    760  1.29        ad 		err(EXIT_FAILURE, "%s", log->logfile);
    761  1.29        ad 	if (fchown(fd, log->uid, log->gid) < 0)
    762  1.29        ad 		err(EXIT_FAILURE, "%s", log->logfile);
    763  1.49  christos 	(void)close(fd);
    764   1.1       cgd }
    765   1.1       cgd 
    766  1.22        ad /*
    767  1.32        ad  * Fork off gzip(1) to compress a log file.  This routine takes an
    768  1.32        ad  * additional string argument (the name of the file to compress): it is also
    769  1.32        ad  * used to compress historical log files other than the newest.
    770  1.29        ad  */
    771  1.49  christos static void
    772  1.29        ad log_compress(struct conf_entry *log, const char *fn)
    773  1.29        ad {
    774  1.32        ad 	char tmp[MAXPATHLEN];
    775  1.29        ad 
    776  1.51    dogcow 	PRINFO(("%s %s %s\n", compress[ziptype].path, compress[ziptype].args,
    777  1.51    dogcow 	    fn));
    778  1.29        ad 	if (!noaction) {
    779  1.36      tron 		pid_t pid;
    780  1.36      tron 		int status;
    781  1.36      tron 
    782  1.36      tron 		if ((pid = vfork()) < 0)
    783  1.36      tron 			err(EXIT_FAILURE, "vfork");
    784  1.29        ad 		else if (pid == 0) {
    785  1.51    dogcow 			(void)execl(compress[ziptype].path,
    786  1.51    dogcow 			   compress[ziptype].path, compress[ziptype].args, fn,
    787  1.51    dogcow 			   NULL);
    788  1.36      tron 			_exit(EXIT_FAILURE);
    789  1.29        ad 		}
    790  1.36      tron 		while (waitpid(pid, &status, 0) != pid);
    791  1.36      tron 
    792  1.36      tron 		if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0))
    793  1.51    dogcow 			errx(EXIT_FAILURE, "%s failed", compress[ziptype].path);
    794  1.29        ad 	}
    795  1.32        ad 
    796  1.51    dogcow 	(void)snprintf(tmp, sizeof(tmp), "%s%s", fn, compress[ziptype].suffix);
    797  1.32        ad 	PRINFO(("chown %d:%d %s\n", log->uid, log->gid, tmp));
    798  1.32        ad 	if (!noaction)
    799  1.37      tron 		if (chown(tmp, log->uid, log->gid))
    800  1.32        ad 			err(EXIT_FAILURE, "%s", tmp);
    801  1.29        ad }
    802  1.29        ad 
    803  1.29        ad /*
    804  1.22        ad  * Display program usage information.
    805  1.22        ad  */
    806  1.49  christos static void
    807  1.22        ad usage(void)
    808   1.1       cgd {
    809   1.1       cgd 
    810  1.49  christos 	(void)fprintf(stderr,
    811  1.49  christos 	    "Usage: %s [-nrsvF] [-f config-file] [file ...]\n", getprogname());
    812  1.22        ad 	exit(EXIT_FAILURE);
    813   1.1       cgd }
    814   1.1       cgd 
    815  1.22        ad /*
    816  1.22        ad  * Return non-zero if a string represents a decimal value.
    817  1.22        ad  */
    818  1.49  christos static int
    819  1.22        ad isnumber(const char *string)
    820  1.22        ad {
    821   1.1       cgd 
    822  1.48       dsl 	while (isdigit((unsigned char)*string))
    823  1.22        ad 		string++;
    824   1.1       cgd 
    825  1.49  christos 	return *string == '\0';
    826  1.21        ad }
    827  1.21        ad 
    828  1.22        ad /*
    829  1.22        ad  * Given a signal name, attempt to find the corresponding signal number.
    830  1.22        ad  */
    831  1.49  christos static int
    832  1.22        ad getsig(const char *sig)
    833  1.21        ad {
    834  1.22        ad 	char *p;
    835  1.21        ad 	int n;
    836  1.21        ad 
    837  1.21        ad 	if (isnumber(sig)) {
    838  1.22        ad 		n = (int)strtol(sig, &p, 0);
    839  1.61     prlw1 		if (*p != '\0' || n < 0 || n >= NSIG)
    840  1.49  christos 			return -1;
    841  1.49  christos 		return n;
    842  1.21        ad 	}
    843  1.21        ad 
    844  1.28        ad 	if (strncasecmp(sig, "SIG", 3) == 0)
    845  1.21        ad 		sig += 3;
    846  1.22        ad 	for (n = 1; n < NSIG; n++)
    847  1.22        ad 		if (strcasecmp(sys_signame[n], sig) == 0)
    848  1.49  christos 			return n;
    849  1.49  christos 	return -1;
    850  1.22        ad }
    851  1.22        ad 
    852  1.22        ad /*
    853  1.22        ad  * Given a path to a PID file, return the PID contained within.
    854  1.22        ad  */
    855  1.49  christos static pid_t
    856  1.22        ad readpidfile(const char *file)
    857  1.22        ad {
    858  1.22        ad 	FILE *fd;
    859  1.22        ad 	char line[BUFSIZ];
    860  1.22        ad 	pid_t pid;
    861  1.22        ad 
    862  1.28        ad #ifdef notyet
    863  1.28        ad 	if (file[0] != '/')
    864  1.49  christos 		(void)snprintf(tmp, sizeof(tmp), "%s%s", _PATH_VARRUN, file);
    865  1.28        ad 	else
    866  1.49  christos 		(void)strlcpy(tmp, file, sizeof(tmp));
    867  1.28        ad #endif
    868  1.28        ad 
    869  1.49  christos 	if ((fd = fopen(file, "r")) == NULL) {
    870  1.25        ad 		warn("%s", file);
    871  1.49  christos 		return (pid_t)-1;
    872  1.21        ad 	}
    873  1.25        ad 
    874  1.44        ad 	if (fgets(line, sizeof(line) - 1, fd) != NULL) {
    875  1.44        ad 		line[sizeof(line) - 1] = '\0';
    876  1.22        ad 		pid = (pid_t)strtol(line, NULL, 0);
    877  1.29        ad 	} else {
    878  1.29        ad 		warnx("unable to read %s", file);
    879  1.29        ad 		pid = (pid_t)-1;
    880  1.22        ad 	}
    881  1.29        ad 
    882  1.49  christos 	(void)fclose(fd);
    883  1.49  christos 	return pid;
    884  1.22        ad }
    885  1.22        ad 
    886  1.22        ad /*
    887  1.22        ad  * Parse a user:group specification.
    888  1.22        ad  *
    889  1.32        ad  * XXX This is over the top for newsyslog(8).  It should be moved to libutil.
    890  1.22        ad  */
    891  1.22        ad int
    892  1.32        ad parse_userspec(const char *name, struct passwd **pw, struct group **gr)
    893  1.22        ad {
    894  1.22        ad 	char buf[MAXLOGNAME * 2 + 2], *group;
    895  1.22        ad 
    896  1.49  christos 	(void)strlcpy(buf, name, sizeof(buf));
    897  1.22        ad 	*gr = NULL;
    898  1.22        ad 
    899  1.22        ad 	/*
    900  1.22        ad 	 * Before attempting to use '.' as a separator, see if the whole
    901  1.28        ad 	 * string resolves as a user name.
    902  1.22        ad 	 */
    903  1.22        ad 	if ((*pw = getpwnam(buf)) != NULL) {
    904  1.22        ad 		*gr = getgrgid((*pw)->pw_gid);
    905  1.22        ad 		return (0);
    906  1.22        ad 	}
    907  1.22        ad 
    908  1.22        ad 	/* Split the user and group name. */
    909  1.22        ad 	if ((group = strchr(buf, ':')) != NULL ||
    910  1.22        ad 	    (group = strchr(buf, '.')) != NULL)
    911  1.22        ad 		*group++ = '\0';
    912  1.22        ad 
    913  1.22        ad 	if (isnumber(buf))
    914  1.22        ad 		*pw = getpwuid((uid_t)atoi(buf));
    915  1.22        ad 	else
    916  1.22        ad 		*pw = getpwnam(buf);
    917  1.22        ad 
    918  1.22        ad 	/*
    919  1.22        ad 	 * Find the group.  If a group wasn't specified, use the user's
    920  1.22        ad 	 * `natural' group.  We get to this point even if no user was found.
    921  1.22        ad 	 * This is to allow the caller to get a better idea of what went
    922  1.22        ad 	 * wrong, if anything.
    923  1.22        ad 	 */
    924  1.22        ad 	if (group == NULL || *group == '\0') {
    925  1.22        ad 		if (*pw == NULL)
    926  1.49  christos 			return -1;
    927  1.22        ad 		*gr = getgrgid((*pw)->pw_gid);
    928  1.22        ad 	} else if (isnumber(group))
    929  1.22        ad 		*gr = getgrgid((gid_t)atoi(group));
    930  1.22        ad 	else
    931  1.22        ad 		*gr = getgrnam(group);
    932  1.22        ad 
    933  1.49  christos 	return *pw != NULL && *gr != NULL ? 0 : -1;
    934  1.32        ad }
    935  1.32        ad 
    936  1.32        ad /*
    937  1.32        ad  * Parse a cyclic time specification, the format is as follows:
    938  1.32        ad  *
    939  1.32        ad  *	[Dhh] or [Wd[Dhh]] or [Mdd[Dhh]]
    940  1.32        ad  *
    941  1.32        ad  * to rotate a log file cyclic at
    942  1.32        ad  *
    943  1.32        ad  *	- every day (D) within a specific hour (hh)	(hh = 0...23)
    944  1.54  christos  *	- once a week (W) at a specific day (d)	    OR	(d = 0..6, 0 = Sunday)
    945  1.32        ad  *	- once a month (M) at a specific day (d)	(d = 1..31,l|L)
    946  1.32        ad  *
    947  1.32        ad  * We don't accept a timezone specification; missing fields are defaulted to
    948  1.32        ad  * the current date but time zero.
    949  1.32        ad  */
    950  1.49  christos static time_t
    951  1.32        ad parse_dwm(char *s)
    952  1.32        ad {
    953  1.32        ad 	char *t;
    954  1.32        ad 	struct tm tm, *tmp;
    955  1.51    dogcow 	long ul;
    956  1.32        ad 	time_t now;
    957  1.32        ad 	static int mtab[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    958  1.32        ad 	int wmseen, dseen, nd, save;
    959  1.32        ad 
    960  1.32        ad 	wmseen = 0;
    961  1.32        ad 	dseen = 0;
    962  1.32        ad 
    963  1.32        ad 	now = time(NULL);
    964  1.32        ad 	tmp = localtime(&now);
    965  1.32        ad 	tm = *tmp;
    966  1.32        ad 
    967  1.32        ad 	/* Set no. of days per month */
    968  1.32        ad 	nd = mtab[tm.tm_mon];
    969  1.32        ad 
    970  1.32        ad 	if (tm.tm_mon == 1 &&
    971  1.32        ad 	    ((tm.tm_year + 1900) % 4 == 0) &&
    972  1.32        ad 	    ((tm.tm_year + 1900) % 100 != 0) &&
    973  1.32        ad 	    ((tm.tm_year + 1900) % 400 == 0))
    974  1.32        ad 		nd++;	/* leap year, 29 days in february */
    975  1.32        ad 	tm.tm_hour = tm.tm_min = tm.tm_sec = 0;
    976  1.32        ad 
    977  1.32        ad 	for (;;) {
    978  1.32        ad 		switch (*s) {
    979  1.32        ad 		case 'D':
    980  1.32        ad 			if (dseen)
    981  1.49  christos 				return (time_t)-1;
    982  1.32        ad 			dseen++;
    983  1.32        ad 			s++;
    984  1.51    dogcow 			ul = strtol(s, &t, 10);
    985  1.51    dogcow 			if (ul > 23 || ul < 0)
    986  1.49  christos 				return (time_t)-1;
    987  1.32        ad 			tm.tm_hour = ul;
    988  1.32        ad 			break;
    989  1.32        ad 
    990  1.32        ad 		case 'W':
    991  1.32        ad 			if (wmseen)
    992  1.49  christos 				return (time_t)-1;
    993  1.32        ad 			wmseen++;
    994  1.32        ad 			s++;
    995  1.51    dogcow 			ul = strtol(s, &t, 10);
    996  1.51    dogcow 			if (ul > 6 || ul < 0)
    997  1.32        ad 				return (-1);
    998  1.32        ad 			if (ul != tm.tm_wday) {
    999  1.32        ad 				if (ul < tm.tm_wday) {
   1000  1.32        ad 					save = 6 - tm.tm_wday;
   1001  1.32        ad 					save += (ul + 1);
   1002  1.32        ad 				} else
   1003  1.32        ad 					save = ul - tm.tm_wday;
   1004  1.32        ad 				tm.tm_mday += save;
   1005  1.32        ad 
   1006  1.32        ad 				if (tm.tm_mday > nd) {
   1007  1.32        ad 					tm.tm_mon++;
   1008  1.32        ad 					tm.tm_mday = tm.tm_mday - nd;
   1009  1.32        ad 				}
   1010  1.32        ad 			}
   1011  1.32        ad 			break;
   1012  1.32        ad 
   1013  1.32        ad 		case 'M':
   1014  1.32        ad 			if (wmseen)
   1015  1.49  christos 				return (time_t)-1;
   1016  1.32        ad 			wmseen++;
   1017  1.32        ad 			s++;
   1018  1.48       dsl 			if (tolower((unsigned char)*s) == 'l') {
   1019  1.32        ad 				tm.tm_mday = nd;
   1020  1.32        ad 				s++;
   1021  1.32        ad 				t = s;
   1022  1.32        ad 			} else {
   1023  1.51    dogcow 				ul = strtol(s, &t, 10);
   1024  1.32        ad 				if (ul < 1 || ul > 31)
   1025  1.49  christos 					return (time_t)-1;
   1026  1.32        ad 
   1027  1.32        ad 				if (ul > nd)
   1028  1.49  christos 					return (time_t)-1;
   1029  1.32        ad 				tm.tm_mday = ul;
   1030  1.32        ad 			}
   1031  1.32        ad 			break;
   1032  1.32        ad 
   1033  1.32        ad 		default:
   1034  1.49  christos 			return (time_t)-1;
   1035  1.32        ad 		}
   1036  1.32        ad 
   1037  1.48       dsl 		if (*t == '\0' || isspace((unsigned char)*t))
   1038  1.32        ad 			break;
   1039  1.32        ad 		else
   1040  1.32        ad 			s = t;
   1041  1.32        ad 	}
   1042  1.32        ad 
   1043  1.49  christos 	return mktime(&tm);
   1044  1.32        ad }
   1045  1.32        ad 
   1046  1.32        ad /*
   1047  1.54  christos  * Parse a limited subset of ISO 8601.	The specific format is as follows:
   1048  1.32        ad  *
   1049  1.32        ad  * [CC[YY[MM[DD]]]][THH[MM[SS]]]	(where `T' is the literal letter)
   1050  1.32        ad  *
   1051  1.32        ad  * We don't accept a timezone specification; missing fields (including
   1052  1.32        ad  * timezone) are defaulted to the current date but time zero.
   1053  1.32        ad  */
   1054  1.49  christos static time_t
   1055  1.32        ad parse_iso8601(char *s)
   1056  1.32        ad {
   1057  1.32        ad 	char *t;
   1058  1.32        ad 	struct tm tm, *tmp;
   1059  1.32        ad 	u_long ul;
   1060  1.32        ad 	time_t now;
   1061  1.32        ad 
   1062  1.32        ad 	now = time(NULL);
   1063  1.32        ad 	tmp = localtime(&now);
   1064  1.32        ad 	tm = *tmp;
   1065  1.32        ad 
   1066  1.32        ad 	tm.tm_hour = tm.tm_min = tm.tm_sec = 0;
   1067  1.32        ad 
   1068  1.32        ad 	ul = strtoul(s, &t, 10);
   1069  1.32        ad 	if (*t != '\0' && *t != 'T')
   1070  1.49  christos 		return (time_t)-1;
   1071  1.32        ad 
   1072  1.32        ad 	/*
   1073  1.32        ad 	 * Now t points either to the end of the string (if no time was
   1074  1.32        ad 	 * provided) or to the letter `T' which separates date and time in
   1075  1.32        ad 	 * ISO 8601.  The pointer arithmetic is the same for either case.
   1076  1.32        ad 	 */
   1077  1.32        ad 	switch (t - s) {
   1078  1.32        ad 	case 8:
   1079  1.32        ad 		tm.tm_year = ((ul / 1000000) - 19) * 100;
   1080  1.32        ad 		ul = ul % 1000000;
   1081  1.32        ad 		/* FALLTHROUGH */
   1082  1.32        ad 	case 6:
   1083  1.32        ad 		tm.tm_year = tm.tm_year - (tm.tm_year % 100);
   1084  1.32        ad 		tm.tm_year += ul / 10000;
   1085  1.32        ad 		ul = ul % 10000;
   1086  1.32        ad 		/* FALLTHROUGH */
   1087  1.32        ad 	case 4:
   1088  1.32        ad 		tm.tm_mon = (ul / 100) - 1;
   1089  1.32        ad 		ul = ul % 100;
   1090  1.32        ad 		/* FALLTHROUGH */
   1091  1.32        ad 	case 2:
   1092  1.32        ad 		tm.tm_mday = ul;
   1093  1.32        ad 		/* FALLTHROUGH */
   1094  1.32        ad 	case 0:
   1095  1.32        ad 		break;
   1096  1.32        ad 	default:
   1097  1.49  christos 		return (time_t)-1;
   1098  1.32        ad 	}
   1099  1.32        ad 
   1100  1.32        ad 	/* Sanity check */
   1101  1.32        ad 	if (tm.tm_year < 70 || tm.tm_mon < 0 || tm.tm_mon > 12 ||
   1102  1.32        ad 	    tm.tm_mday < 1 || tm.tm_mday > 31)
   1103  1.49  christos 		return (time_t)-1;
   1104  1.32        ad 
   1105  1.32        ad 	if (*t != '\0') {
   1106  1.32        ad 		s = ++t;
   1107  1.32        ad 		ul = strtoul(s, &t, 10);
   1108  1.48       dsl 		if (*t != '\0' && !isspace((unsigned char)*t))
   1109  1.49  christos 			return (time_t)-1;
   1110  1.32        ad 
   1111  1.32        ad 		switch (t - s) {
   1112  1.32        ad 		case 6:
   1113  1.32        ad 			tm.tm_sec = ul % 100;
   1114  1.32        ad 			ul /= 100;
   1115  1.32        ad 			/* FALLTHROUGH */
   1116  1.32        ad 		case 4:
   1117  1.32        ad 			tm.tm_min = ul % 100;
   1118  1.32        ad 			ul /= 100;
   1119  1.32        ad 			/* FALLTHROUGH */
   1120  1.32        ad 		case 2:
   1121  1.32        ad 			tm.tm_hour = ul;
   1122  1.32        ad 			/* FALLTHROUGH */
   1123  1.32        ad 		case 0:
   1124  1.32        ad 			break;
   1125  1.32        ad 		default:
   1126  1.49  christos 			return (time_t)-1;
   1127  1.32        ad 		}
   1128  1.32        ad 
   1129  1.32        ad 		/* Sanity check */
   1130  1.32        ad 		if (tm.tm_sec < 0 || tm.tm_sec > 60 || tm.tm_min < 0 ||
   1131  1.32        ad 		    tm.tm_min > 59 || tm.tm_hour < 0 || tm.tm_hour > 23)
   1132  1.49  christos 			return (time_t)-1;
   1133  1.32        ad 	}
   1134  1.32        ad 
   1135  1.49  christos 	return mktime(&tm);
   1136   1.1       cgd }
   1137