2000-07-11 15:39:46 +04:00
|
|
|
/* $NetBSD: newsyslog.c,v 1.29 2000/07/11 11:39:47 ad Exp $ */
|
1996-09-27 05:56:55 +04:00
|
|
|
|
1993-05-21 18:43:59 +04:00
|
|
|
/*
|
2000-07-07 14:52:41 +04:00
|
|
|
* Copyright (c) 1999, 2000 Andrew Doran <ad@NetBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1993-05-21 18:43:59 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-07 14:52:41 +04:00
|
|
|
* This file contains changes from the Open Software Foundation.
|
|
|
|
*/
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Copyright 1988, 1989 by the Massachusetts Institute of Technology
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software
|
|
|
|
* and its documentation for any purpose and without fee is
|
|
|
|
* hereby granted, provided that the above copyright notice
|
|
|
|
* appear in all copies and that both that copyright notice and
|
|
|
|
* this permission notice appear in supporting documentation,
|
|
|
|
* and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
|
|
|
|
* used in advertising or publicity pertaining to distribution
|
|
|
|
* of the software without specific, written prior permission.
|
|
|
|
* M.I.T. and the M.I.T. S.I.P.B. make no representations about
|
|
|
|
* the suitability of this software for any purpose. It is
|
|
|
|
* provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
*/
|
1993-05-21 18:43:59 +04:00
|
|
|
|
|
|
|
/*
|
2000-07-07 14:52:41 +04:00
|
|
|
* newsyslog(1) - a program to roll over log files provided that specified
|
|
|
|
* critera are met, optionally preserving a number of historical log files.
|
1993-05-21 18:43:59 +04:00
|
|
|
*/
|
|
|
|
|
1997-10-19 10:23:50 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-08-10 04:05:51 +04:00
|
|
|
#ifndef lint
|
2000-07-11 15:39:46 +04:00
|
|
|
__RCSID("$NetBSD: newsyslog.c,v 1.29 2000/07/11 11:39:47 ad Exp $");
|
1993-08-10 04:05:51 +04:00
|
|
|
#endif /* not lint */
|
1993-05-21 18:43:59 +04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
1997-10-19 10:23:50 +04:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2000-07-07 14:52:41 +04:00
|
|
|
#include <stdarg.h>
|
1997-10-19 10:23:50 +04:00
|
|
|
#include <string.h>
|
1998-04-02 14:35:26 +04:00
|
|
|
#include <time.h>
|
1997-10-19 10:23:50 +04:00
|
|
|
#include <unistd.h>
|
2000-07-07 14:52:41 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <util.h>
|
|
|
|
|
|
|
|
#include "pathnames.h"
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
#define PRHDRINFO(x) ((void)(verbose ? printf x : 0))
|
|
|
|
#define PRINFO(x) ((void)(verbose ? printf(" ") + printf x : 0))
|
2000-07-07 14:52:41 +04:00
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
#define CE_COMPRESS 0x01 /* Compress the achived log files */
|
|
|
|
#define CE_BINARY 0x02 /* Logfile is a binary file/non-syslog */
|
|
|
|
#define CE_NOSIGNAL 0x04 /* Don't send a signal when trimmed */
|
|
|
|
#define CE_CREATE 0x08 /* Create log file if none exists */
|
|
|
|
#define CE_PLAIN0 0x10 /* Do not compress zero'th history file */
|
1997-10-19 10:23:50 +04:00
|
|
|
|
1993-05-21 18:43:59 +04:00
|
|
|
struct conf_entry {
|
2000-07-07 14:52:41 +04:00
|
|
|
uid_t uid; /* Owner of log */
|
|
|
|
gid_t gid; /* Group of log */
|
|
|
|
mode_t mode; /* File permissions */
|
|
|
|
int numhist; /* Number of historical logs to keep */
|
|
|
|
size_t maxsize; /* Maximum log size */
|
|
|
|
int maxage; /* Hours between log trimming */
|
|
|
|
int flags; /* Flags (CE_*) */
|
|
|
|
int signum; /* Signal to send */
|
|
|
|
char pidfile[MAXPATHLEN]; /* File containing PID to signal */
|
|
|
|
char logfile[MAXPATHLEN]; /* Path to log file */
|
1993-05-21 18:43:59 +04:00
|
|
|
};
|
|
|
|
|
2000-07-07 19:42:35 +04:00
|
|
|
int verbose = 0; /* Be verbose */
|
2000-07-10 15:15:07 +04:00
|
|
|
int noaction = 0; /* Take no action */
|
2000-07-07 19:42:35 +04:00
|
|
|
char hostname[MAXHOSTNAMELEN + 1]; /* Hostname, stripped of domain */
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
int main(int, char **);
|
|
|
|
int parse(struct conf_entry *, FILE *, size_t *);
|
1997-10-19 10:23:50 +04:00
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
void log_compress(struct conf_entry *, const char *);
|
2000-07-07 14:52:41 +04:00
|
|
|
void log_create(struct conf_entry *);
|
|
|
|
void log_examine(struct conf_entry *, int);
|
|
|
|
void log_trim(struct conf_entry *);
|
|
|
|
void log_trimmed(struct conf_entry *);
|
|
|
|
|
|
|
|
int getsig(const char *);
|
|
|
|
int isnumber(const char *);
|
|
|
|
int parseuserspec(const char *, struct passwd **, struct group **);
|
|
|
|
pid_t readpidfile(const char *);
|
|
|
|
void usage(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Program entry point.
|
|
|
|
*/
|
1997-10-19 10:23:50 +04:00
|
|
|
int
|
2000-07-07 14:52:41 +04:00
|
|
|
main(int argc, char **argv)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-11 15:39:46 +04:00
|
|
|
struct conf_entry log;
|
2000-07-07 14:52:41 +04:00
|
|
|
FILE *fd;
|
|
|
|
char *p, *cfile;
|
2000-07-07 19:42:35 +04:00
|
|
|
int c, force, needroot;
|
2000-07-07 14:52:41 +04:00
|
|
|
size_t lineno;
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
force = 0;
|
|
|
|
needroot = 1;
|
|
|
|
cfile = _PATH_NEWSYSLOGCONF;
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
gethostname(hostname, sizeof(hostname));
|
1998-07-06 10:45:41 +04:00
|
|
|
hostname[sizeof(hostname) - 1] = '\0';
|
1995-01-06 22:20:20 +03:00
|
|
|
|
|
|
|
/* Truncate domain */
|
2000-07-07 14:52:41 +04:00
|
|
|
if ((p = strchr(hostname, '.')) != NULL)
|
1995-01-06 22:20:20 +03:00
|
|
|
*p = '\0';
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
/* Parse command line options */
|
2000-07-10 15:15:07 +04:00
|
|
|
while ((c = getopt(argc, argv, "f:nrvF")) != -1) {
|
2000-07-07 14:52:41 +04:00
|
|
|
switch (c) {
|
2000-07-10 15:15:07 +04:00
|
|
|
case 'f':
|
|
|
|
cfile = optarg;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
noaction = 1;
|
2000-07-11 15:39:46 +04:00
|
|
|
verbose = 1;
|
2000-07-10 15:15:07 +04:00
|
|
|
break;
|
2000-07-07 14:52:41 +04:00
|
|
|
case 'r':
|
|
|
|
needroot = 0;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verbose = 1;
|
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
force = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
2000-07-10 15:15:07 +04:00
|
|
|
/* NOTREACHED */
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
1995-01-06 22:20:20 +03:00
|
|
|
}
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
if (needroot && geteuid() != 0)
|
2000-07-07 14:52:41 +04:00
|
|
|
errx(EXIT_FAILURE, "must be run as root");
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
if (strcmp(cfile, "-") == 0)
|
|
|
|
fd = stdin;
|
|
|
|
else if ((fd = fopen(cfile, "rt")) == NULL)
|
|
|
|
err(EXIT_FAILURE, "%s", cfile);
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
for (lineno = 0; !parse(&log, fd, &lineno);)
|
|
|
|
log_examine(&log, force);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if (fd != stdin)
|
|
|
|
fclose(fd);
|
|
|
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
/* NOTREACHED */
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Parse a single line from the configuration file.
|
1993-05-21 18:43:59 +04:00
|
|
|
*/
|
2000-07-07 14:52:41 +04:00
|
|
|
int
|
|
|
|
parse(struct conf_entry *log, FILE *fd, size_t *_lineno)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
char *line, *q, **ap, *argv[10];
|
|
|
|
struct passwd *pw;
|
|
|
|
struct group *gr;
|
|
|
|
int nf, lineno, i;
|
|
|
|
|
|
|
|
if ((line = fparseln(fd, NULL, _lineno, NULL, 0)) == NULL)
|
|
|
|
return (-1);
|
|
|
|
lineno = (int)*_lineno;
|
|
|
|
|
|
|
|
for (ap = argv, nf = 0; (*ap = strsep(&line, " \t")) != NULL;)
|
|
|
|
if (**ap != '\0') {
|
|
|
|
if (++nf == sizeof(argv) / sizeof(argv[0])) {
|
|
|
|
warnx("config line %d: too many fields",
|
|
|
|
lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ap++;
|
1999-11-30 15:03:24 +03:00
|
|
|
}
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if (nf == 0)
|
|
|
|
return (0);
|
1999-11-30 15:03:24 +03:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
if (nf < 6)
|
|
|
|
errx(EXIT_FAILURE, "config line %d: too few fields", lineno);
|
|
|
|
|
|
|
|
ap = argv;
|
|
|
|
strlcpy(log->logfile, *ap++, sizeof(log->logfile));
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
if (strchr(*ap, ':') != NULL) {
|
|
|
|
if (parseuserspec(*ap++, &pw, &gr)) {
|
|
|
|
warnx("config line %d: unknown user/group", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
log->uid = pw->pw_uid;
|
|
|
|
log->gid = gr->gr_gid;
|
|
|
|
if (nf < 7)
|
|
|
|
errx(EXIT_FAILURE, "config line %d: too few fields",
|
|
|
|
lineno);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sscanf(*ap++, "%o", &i) != 1) {
|
|
|
|
warnx("config line %d: bad permissions", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
log->mode = (mode_t)i;
|
|
|
|
|
2000-07-09 16:14:01 +04:00
|
|
|
if (sscanf(*ap++, "%d", &log->numhist) != 1) {
|
2000-07-07 14:52:41 +04:00
|
|
|
warnx("config line %d: bad log count", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isdigit(**ap))
|
|
|
|
log->maxsize = atoi(*ap);
|
|
|
|
else if (**ap == '*')
|
|
|
|
log->maxsize = (size_t)-1;
|
|
|
|
else {
|
|
|
|
warnx("config line %d: bad log size", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ap++;
|
|
|
|
|
|
|
|
if (isdigit(**ap))
|
|
|
|
log->maxage = atoi(*ap);
|
|
|
|
else if (**ap == '*')
|
|
|
|
log->maxage = -1;
|
|
|
|
else {
|
|
|
|
warnx("config line %d: bad log age", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ap++;
|
|
|
|
|
|
|
|
log->flags = 0;
|
2000-07-10 15:15:07 +04:00
|
|
|
for (q = *ap++; q != NULL && *q != '\0'; q++) {
|
2000-07-07 14:52:41 +04:00
|
|
|
switch (tolower(*q)) {
|
|
|
|
case 'b':
|
|
|
|
log->flags |= CE_BINARY;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
log->flags |= CE_CREATE;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
log->flags |= CE_NOSIGNAL;
|
|
|
|
break;
|
2000-07-11 15:39:46 +04:00
|
|
|
case 'p':
|
|
|
|
log->flags |= CE_PLAIN0;
|
|
|
|
break;
|
2000-07-07 14:52:41 +04:00
|
|
|
case 'z':
|
2000-07-11 15:39:46 +04:00
|
|
|
log->flags |= CE_COMPRESS;
|
2000-07-07 14:52:41 +04:00
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
warnx("config line %d: bad flags", lineno);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*ap != NULL && **ap == '/')
|
|
|
|
strlcpy(log->pidfile, *ap++, sizeof(log->pidfile));
|
|
|
|
else
|
|
|
|
log->pidfile[0] = '\0';
|
|
|
|
|
|
|
|
if (*ap != NULL && (log->signum = getsig(*ap++)) < 0) {
|
|
|
|
warnx("config line %d: bad signal type", lineno);
|
|
|
|
return (-1);
|
|
|
|
} else
|
|
|
|
log->signum = SIGHUP;
|
|
|
|
|
|
|
|
return (0);
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Examine a log file. If the trim conditions are met, call log_trim() to
|
|
|
|
* trim the log file.
|
|
|
|
*/
|
1997-10-19 10:23:50 +04:00
|
|
|
void
|
2000-07-11 15:39:46 +04:00
|
|
|
log_examine(struct conf_entry *log, int force)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
struct stat sb;
|
|
|
|
size_t size;
|
2000-07-10 15:15:07 +04:00
|
|
|
int age;
|
2000-07-07 14:52:41 +04:00
|
|
|
char tmp[MAXPATHLEN];
|
|
|
|
time_t now;
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
if (log->logfile[0] == '\0')
|
2000-07-07 14:52:41 +04:00
|
|
|
return;
|
2000-07-10 15:15:07 +04:00
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
PRHDRINFO(("\n%s <%d%s>: ", log->logfile, log->numhist,
|
|
|
|
(log->flags & CE_COMPRESS) != 0 ? "Z" : ""));
|
2000-07-10 15:15:07 +04:00
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
if (stat(log->logfile, &sb) < 0) {
|
|
|
|
if (errno == ENOENT && (log->flags & CE_CREATE) != 0) {
|
2000-07-10 15:15:07 +04:00
|
|
|
PRHDRINFO(("creating; "));
|
|
|
|
if (!noaction)
|
2000-07-11 15:39:46 +04:00
|
|
|
log_create(log);
|
2000-07-10 15:15:07 +04:00
|
|
|
else {
|
|
|
|
PRHDRINFO(("can't proceed with `-n'\n"));
|
|
|
|
return;
|
|
|
|
}
|
2000-07-11 15:39:46 +04:00
|
|
|
if (stat(log->logfile, &sb))
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
2000-07-10 15:15:07 +04:00
|
|
|
} else if (errno == ENOENT) {
|
|
|
|
PRHDRINFO(("does not exist --> skip log\n"));
|
2000-07-07 14:52:41 +04:00
|
|
|
return;
|
2000-07-10 15:15:07 +04:00
|
|
|
} else if (errno != 0)
|
2000-07-11 15:39:46 +04:00
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
1999-11-30 15:03:24 +03:00
|
|
|
}
|
|
|
|
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
size = ((size_t)sb.st_blocks * S_BLKSIZE) >> 10;
|
|
|
|
|
|
|
|
now = time(NULL);
|
2000-07-11 15:39:46 +04:00
|
|
|
strlcpy(tmp, log->logfile, sizeof(tmp));
|
2000-07-07 14:52:41 +04:00
|
|
|
strlcat(tmp, ".0", sizeof(tmp));
|
|
|
|
if (stat(tmp, &sb) < 0) {
|
|
|
|
strlcat(tmp, ".gz", sizeof(tmp));
|
|
|
|
if (stat(tmp, &sb) < 0)
|
2000-07-10 15:15:07 +04:00
|
|
|
age = -1;
|
2000-07-07 14:52:41 +04:00
|
|
|
else
|
2000-07-10 15:15:07 +04:00
|
|
|
age = (int)(now - sb.st_mtime + 1800) / 3600;
|
2000-07-07 14:52:41 +04:00
|
|
|
} else
|
2000-07-10 15:15:07 +04:00
|
|
|
age = (int)(now - sb.st_mtime + 1800) / 3600;
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if (verbose) {
|
2000-07-11 15:39:46 +04:00
|
|
|
if (log->maxsize != (size_t)-1)
|
2000-07-10 15:15:07 +04:00
|
|
|
PRHDRINFO(("size (Kb): %lu [%lu] ",
|
2000-07-10 06:23:04 +04:00
|
|
|
(u_long)size,
|
2000-07-11 15:39:46 +04:00
|
|
|
(u_long)log->maxsize));
|
|
|
|
if (log->maxage > 0)
|
|
|
|
PRHDRINFO(("age (hr): %d [%d] ", age, log->maxage));
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: if maxage is used as a trim condition, we need at least one
|
|
|
|
* historical log file to determine the `age' of the active log file.
|
|
|
|
*/
|
2000-07-11 15:39:46 +04:00
|
|
|
if ((log->maxage > 0 && (age >= log->maxage || age < 0)) ||
|
|
|
|
size >= log->maxsize || force) {
|
2000-07-10 15:15:07 +04:00
|
|
|
PRHDRINFO(("--> trim log\n"));
|
2000-07-11 15:39:46 +04:00
|
|
|
log_trim(log);
|
2000-07-07 14:52:41 +04:00
|
|
|
} else
|
2000-07-10 15:15:07 +04:00
|
|
|
PRHDRINFO(("--> skip log\n"));
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Trim the specified log file.
|
|
|
|
*/
|
1997-10-19 10:23:50 +04:00
|
|
|
void
|
2000-07-07 14:52:41 +04:00
|
|
|
log_trim(struct conf_entry *log)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
char file1[MAXPATHLEN], file2[MAXPATHLEN];
|
|
|
|
int i;
|
|
|
|
struct stat st;
|
|
|
|
pid_t pid;
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
/* Remove oldest historical log */
|
|
|
|
snprintf(file1, sizeof(file1), "%s.%d", log->logfile, log->numhist - 1);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
PRINFO(("rm -f %s\n", file1));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
|
|
|
unlink(file1);
|
2000-07-11 15:39:46 +04:00
|
|
|
strlcat(file1, ".gz", sizeof(file1));
|
|
|
|
PRINFO(("rm -f %s\n", file1));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
2000-07-11 15:39:46 +04:00
|
|
|
unlink(file1);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
/* Move down log files */
|
2000-07-07 14:52:41 +04:00
|
|
|
for (i = log->numhist - 1; i != 0; i--) {
|
|
|
|
snprintf(file1, sizeof(file1), "%s.%d", log->logfile, i - 1);
|
2000-07-11 15:39:46 +04:00
|
|
|
snprintf(file2, sizeof(file2), "%s.%d", log->logfile, i);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if (lstat(file1, &st) != 0) {
|
2000-07-11 15:39:46 +04:00
|
|
|
strlcat(file1, ".gz", sizeof(file1));
|
|
|
|
strlcat(file2, ".gz", sizeof(file2));
|
|
|
|
if (lstat(file1, &st) != 0)
|
2000-07-07 14:52:41 +04:00
|
|
|
continue;
|
|
|
|
}
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
PRINFO(("mv %s %s\n", file1, file2));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
2000-07-11 15:39:46 +04:00
|
|
|
if (rename(file1, file2))
|
|
|
|
err(EXIT_FAILURE, "%s", file1);
|
|
|
|
PRINFO(("chmod %o %s\n", log->mode, file2));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
2000-07-11 15:39:46 +04:00
|
|
|
if (chmod(file2, log->mode))
|
|
|
|
err(EXIT_FAILURE, "%s", file2);
|
|
|
|
PRINFO(("chown %d:%d %s\n", log->uid, log->gid, file2));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
2000-07-11 15:39:46 +04:00
|
|
|
if (chown(file2, log->uid, log->gid))
|
|
|
|
err(EXIT_FAILURE, "%s", file2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If a historical log file isn't compressed, and 'z' has been
|
|
|
|
* specified, compress it. (This is convenient, but is also needed
|
|
|
|
* if 'p' has been specified.) It should be noted that gzip(1)
|
|
|
|
* preserves file ownership and file mode.
|
|
|
|
*/
|
|
|
|
for (i = (log->flags & CE_PLAIN0) != 0; i < log->numhist; i++) {
|
|
|
|
snprintf(file1, sizeof(file1), "%s.%d", log->logfile, i);
|
|
|
|
if (lstat(file1, &st) != 0)
|
|
|
|
continue;
|
|
|
|
snprintf(file2, sizeof(file2), "%s.gz", file1);
|
|
|
|
if (lstat(file2, &st) == 0)
|
|
|
|
continue;
|
|
|
|
log_compress(log, file1);
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
log_trimmed(log);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if (log->numhist == 0) {
|
2000-07-10 15:15:07 +04:00
|
|
|
PRINFO(("rm -f %s\n", log->logfile));
|
|
|
|
if (!noaction)
|
|
|
|
if (unlink(log->logfile))
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
2000-07-07 14:52:41 +04:00
|
|
|
} else {
|
2000-07-11 15:39:46 +04:00
|
|
|
snprintf(file1, sizeof(file1), "%s.0", log->logfile);
|
2000-07-10 15:15:07 +04:00
|
|
|
PRINFO(("mv %s %s\n", log->logfile, file1));
|
|
|
|
if (!noaction)
|
|
|
|
if (rename(log->logfile, file1))
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
PRINFO(("(create new log)\n"));
|
2000-07-07 14:52:41 +04:00
|
|
|
log_create(log);
|
2000-07-10 15:15:07 +04:00
|
|
|
log_trimmed(log);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
PRINFO(("chmod %o %s\n", log->mode, log->logfile));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
|
|
|
if (chmod(log->logfile, log->mode))
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
if ((log->flags & CE_NOSIGNAL) == 0) {
|
|
|
|
if (log->pidfile[0] != '\0')
|
|
|
|
pid = readpidfile(log->pidfile);
|
|
|
|
else
|
|
|
|
pid = readpidfile(_PATH_SYSLOGDPID);
|
|
|
|
|
|
|
|
if (pid != (pid_t)-1) {
|
2000-07-11 15:39:46 +04:00
|
|
|
PRINFO(("kill -%s %lu\n", sys_signame[log->signum],
|
|
|
|
(u_long)pid));
|
2000-07-10 15:15:07 +04:00
|
|
|
if (!noaction)
|
|
|
|
if (kill(pid, log->signum))
|
|
|
|
warn("kill");
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
|
|
|
}
|
2000-07-11 15:39:46 +04:00
|
|
|
|
|
|
|
if ((log->flags & (CE_PLAIN0 | CE_COMPRESS)) == CE_COMPRESS) {
|
|
|
|
snprintf(file1, sizeof(file1), "%s.0", log->logfile);
|
|
|
|
log_compress(log, file1);
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Write an entry to the log file recording the fact that it was trimmed.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
log_trimmed(struct conf_entry *log)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
FILE *fd;
|
|
|
|
time_t now;
|
|
|
|
char *daytime;
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
if ((log->flags & CE_BINARY) != 0)
|
|
|
|
return;
|
|
|
|
PRINFO(("(append rotation notice to %s)\n", log->logfile));
|
|
|
|
if (noaction)
|
|
|
|
return;
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
if ((fd = fopen(log->logfile, "at")) == NULL)
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
|
|
|
|
|
|
|
now = time(NULL);
|
|
|
|
daytime = ctime(&now) + 4;
|
|
|
|
daytime[15] = '\0';
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
fprintf(fd, "%s %s newsyslog[%lu]: log file turned over\n", daytime,
|
|
|
|
hostname, (u_long)getpid());
|
2000-07-07 14:52:41 +04:00
|
|
|
fclose(fd);
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
2000-07-11 15:39:46 +04:00
|
|
|
* Create a new log file.
|
2000-07-07 14:52:41 +04:00
|
|
|
*/
|
|
|
|
void
|
2000-07-11 15:39:46 +04:00
|
|
|
log_create(struct conf_entry *log)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
int fd;
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
if (noaction)
|
|
|
|
return;
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
if ((fd = creat(log->logfile, log->mode)) < 0)
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
|
|
|
if (fchown(fd, log->uid, log->gid) < 0)
|
|
|
|
err(EXIT_FAILURE, "%s", log->logfile);
|
2000-07-10 15:15:07 +04:00
|
|
|
close(fd);
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
|
|
|
|
2000-07-11 15:39:46 +04:00
|
|
|
/*
|
|
|
|
* Compress a log file. This routine takes an additional string argument:
|
|
|
|
* it is also used to compress historical log files.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
log_compress(struct conf_entry *log, const char *fn)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
PRINFO(("gzip %s\n", fn));
|
|
|
|
if (!noaction) {
|
|
|
|
if ((pid = fork()) < 0)
|
|
|
|
err(EXIT_FAILURE, "fork");
|
|
|
|
else if (pid == 0) {
|
|
|
|
execl(_PATH_GZIP, "gzip", "-f", fn, NULL);
|
|
|
|
err(EXIT_FAILURE, _PATH_GZIP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Display program usage information.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
usage(void)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
fprintf(stderr, "usage: newsyslog [-Frv] [-f config-file]\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
1993-05-21 18:43:59 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Return non-zero if a string represents a decimal value.
|
|
|
|
*/
|
1997-10-19 10:23:50 +04:00
|
|
|
int
|
2000-07-07 14:52:41 +04:00
|
|
|
isnumber(const char *string)
|
1993-05-21 18:43:59 +04:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
while (isdigit(*string))
|
|
|
|
string++;
|
|
|
|
|
|
|
|
return (*string == '\0');
|
1993-05-21 18:43:59 +04:00
|
|
|
}
|
1999-11-30 15:03:24 +03:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
/*
|
|
|
|
* Given a signal name, attempt to find the corresponding signal number.
|
|
|
|
*/
|
1999-11-30 15:03:24 +03:00
|
|
|
int
|
2000-07-07 14:52:41 +04:00
|
|
|
getsig(const char *sig)
|
1999-11-30 15:03:24 +03:00
|
|
|
{
|
2000-07-07 14:52:41 +04:00
|
|
|
char *p;
|
1999-11-30 15:03:24 +03:00
|
|
|
int n;
|
|
|
|
|
|
|
|
if (isnumber(sig)) {
|
2000-07-07 14:52:41 +04:00
|
|
|
n = (int)strtol(sig, &p, 0);
|
2000-07-10 15:15:07 +04:00
|
|
|
if (p != '\0' || n < 0 || n >= NSIG)
|
1999-11-30 15:03:24 +03:00
|
|
|
return (-1);
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
if (strncasecmp(sig, "SIG", 3) == 0)
|
1999-11-30 15:03:24 +03:00
|
|
|
sig += 3;
|
2000-07-07 14:52:41 +04:00
|
|
|
for (n = 1; n < NSIG; n++)
|
|
|
|
if (strcasecmp(sys_signame[n], sig) == 0)
|
1999-11-30 15:03:24 +03:00
|
|
|
return (n);
|
|
|
|
return (-1);
|
|
|
|
}
|
2000-07-07 14:52:41 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a path to a PID file, return the PID contained within.
|
|
|
|
*/
|
|
|
|
pid_t
|
|
|
|
readpidfile(const char *file)
|
|
|
|
{
|
|
|
|
FILE *fd;
|
|
|
|
char line[BUFSIZ];
|
|
|
|
pid_t pid;
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
#ifdef notyet
|
|
|
|
if (file[0] != '/')
|
|
|
|
snprintf(tmp, sizeof(tmp), "%s%s", _PATH_VARRUN, file);
|
|
|
|
else
|
|
|
|
strlcpy(tmp, file, sizeof(tmp));
|
|
|
|
#endif
|
|
|
|
|
2000-07-07 19:42:35 +04:00
|
|
|
if ((fd = fopen(file, "rt")) == NULL) {
|
|
|
|
warn("%s", file);
|
2000-07-07 14:52:41 +04:00
|
|
|
return (-1);
|
|
|
|
}
|
2000-07-07 19:42:35 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
if (fgets(line, sizeof(line) - 1, fd) != NULL) {
|
|
|
|
line[sizeof(line) - 1] = '\0';
|
|
|
|
pid = (pid_t)strtol(line, NULL, 0);
|
2000-07-11 15:39:46 +04:00
|
|
|
} else {
|
|
|
|
warnx("unable to read %s", file);
|
|
|
|
pid = (pid_t)-1;
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|
2000-07-11 15:39:46 +04:00
|
|
|
|
2000-07-07 14:52:41 +04:00
|
|
|
fclose(fd);
|
|
|
|
return (pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a user:group specification.
|
|
|
|
*
|
|
|
|
* XXX This is over the top for newsyslog(1). It should be moved to libutil.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
parseuserspec(const char *name, struct passwd **pw, struct group **gr)
|
|
|
|
{
|
|
|
|
char buf[MAXLOGNAME * 2 + 2], *group;
|
|
|
|
|
|
|
|
strlcpy(buf, name, sizeof(buf));
|
|
|
|
*gr = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Before attempting to use '.' as a separator, see if the whole
|
2000-07-10 15:15:07 +04:00
|
|
|
* string resolves as a user name.
|
2000-07-07 14:52:41 +04:00
|
|
|
*/
|
|
|
|
if ((*pw = getpwnam(buf)) != NULL) {
|
|
|
|
*gr = getgrgid((*pw)->pw_gid);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Split the user and group name. */
|
|
|
|
if ((group = strchr(buf, ':')) != NULL ||
|
|
|
|
(group = strchr(buf, '.')) != NULL)
|
|
|
|
*group++ = '\0';
|
|
|
|
|
|
|
|
if (isnumber(buf))
|
|
|
|
*pw = getpwuid((uid_t)atoi(buf));
|
|
|
|
else
|
|
|
|
*pw = getpwnam(buf);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the group. If a group wasn't specified, use the user's
|
|
|
|
* `natural' group. We get to this point even if no user was found.
|
|
|
|
* This is to allow the caller to get a better idea of what went
|
|
|
|
* wrong, if anything.
|
|
|
|
*/
|
|
|
|
if (group == NULL || *group == '\0') {
|
|
|
|
if (*pw == NULL)
|
|
|
|
return (-1);
|
|
|
|
*gr = getgrgid((*pw)->pw_gid);
|
|
|
|
} else if (isnumber(group))
|
|
|
|
*gr = getgrgid((gid_t)atoi(group));
|
|
|
|
else
|
|
|
|
*gr = getgrnam(group);
|
|
|
|
|
2000-07-10 15:15:07 +04:00
|
|
|
return (*pw != NULL && *gr != NULL ? 0 : -1);
|
2000-07-07 14:52:41 +04:00
|
|
|
}
|