1996-01-05 09:28:11 +00:00
|
|
|
/*
|
|
|
|
* This file contains changes from the Open Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* newsyslog - roll over selected logs at the appropriate time,
|
|
|
|
* keeping the a specified number of backup files around.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-10-06 07:46:08 +00:00
|
|
|
static const char rcsid[] =
|
1997-11-30 18:58:18 +00:00
|
|
|
"$Id: newsyslog.c,v 1.14 1997/10/06 07:46:08 charnier Exp $";
|
1996-01-05 09:28:11 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef CONF
|
|
|
|
#define CONF "/etc/athena/newsyslog.conf" /* Configuration file */
|
|
|
|
#endif
|
|
|
|
#ifndef PIDFILE
|
|
|
|
#define PIDFILE "/etc/syslog.pid"
|
|
|
|
#endif
|
1996-01-16 10:32:04 +00:00
|
|
|
#ifndef COMPRESS_PATH
|
|
|
|
#define COMPRESS_PATH "/usr/ucb/compress" /* File compression program */
|
|
|
|
#endif
|
|
|
|
#ifndef COMPRESS_PROG
|
|
|
|
#define COMPRESS_PROG "compress"
|
1996-01-05 09:28:11 +00:00
|
|
|
#endif
|
|
|
|
#ifndef COMPRESS_POSTFIX
|
|
|
|
#define COMPRESS_POSTFIX ".Z"
|
|
|
|
#endif
|
|
|
|
|
1997-10-06 07:46:08 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
1996-01-05 09:28:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1996-06-08 23:32:10 +00:00
|
|
|
#include <unistd.h>
|
1996-01-05 09:28:11 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#define kbytes(size) (((size) + 1023) >> 10)
|
|
|
|
#ifdef _IBMR2
|
|
|
|
/* Calculates (db * DEV_BSIZE) */
|
|
|
|
#define dbtob(db) ((unsigned)(db) << UBSHIFT)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CE_COMPACT 1 /* Compact the achived log files */
|
1996-01-16 10:32:04 +00:00
|
|
|
#define CE_BINARY 2 /* Logfile is in binary, don't add */
|
1996-01-05 09:28:11 +00:00
|
|
|
/* status messages */
|
|
|
|
#define NONE -1
|
|
|
|
|
|
|
|
struct conf_entry {
|
|
|
|
char *log; /* Name of the log */
|
1997-05-04 01:53:53 +00:00
|
|
|
char *pid_file; /* PID file */
|
1996-01-05 09:28:11 +00:00
|
|
|
int uid; /* Owner of log */
|
|
|
|
int gid; /* Group of log */
|
|
|
|
int numlogs; /* Number of logs to keep */
|
|
|
|
int size; /* Size cutoff to trigger trimming the log */
|
|
|
|
int hours; /* Hours between log trimming */
|
|
|
|
int permissions; /* File permissions on the log */
|
|
|
|
int flags; /* Flags (CE_COMPACT & CE_BINARY) */
|
|
|
|
struct conf_entry *next; /* Linked list pointer */
|
|
|
|
};
|
|
|
|
|
|
|
|
int verbose = 0; /* Print out what's going on */
|
|
|
|
int needroot = 1; /* Root privs are necessary */
|
|
|
|
int noaction = 0; /* Don't do anything, just show it */
|
|
|
|
char *conf = CONF; /* Configuration file to use */
|
|
|
|
time_t timenow;
|
1997-05-04 01:53:53 +00:00
|
|
|
pid_t syslog_pid; /* read in from /etc/syslog.pid */
|
|
|
|
#define MIN_PID 5
|
1996-01-16 10:32:04 +00:00
|
|
|
#define MAX_PID 30000 /* was 65534, see /usr/include/sys/proc.h */
|
|
|
|
char hostname[MAXHOSTNAMELEN+1]; /* hostname */
|
1996-01-05 09:28:11 +00:00
|
|
|
char *daytime; /* timenow in human readable form */
|
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
#ifndef OSF
|
|
|
|
char *strdup(char *strp);
|
|
|
|
#endif
|
1996-01-05 09:28:11 +00:00
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
static struct conf_entry *parse_file();
|
|
|
|
static char *sob(char *p);
|
|
|
|
static char *son(char *p);
|
|
|
|
static char *missing_field(char *p,char *errline);
|
|
|
|
static void do_entry(struct conf_entry *ent);
|
|
|
|
static void PRS(int argc,char **argv);
|
|
|
|
static void usage();
|
1997-05-04 01:53:53 +00:00
|
|
|
static void dotrim(char *log,char *pid_file,int numdays,int falgs,int perm, int owner_uid,int group_gid);
|
1996-06-08 23:32:10 +00:00
|
|
|
static int log_trim(char *log);
|
|
|
|
static void compress_log(char *log);
|
|
|
|
static int sizefile(char *file);
|
|
|
|
static int age_old_log(char *file);
|
1997-05-04 01:53:53 +00:00
|
|
|
static pid_t get_pid(char *pid_file);
|
1996-06-08 23:32:10 +00:00
|
|
|
|
|
|
|
int main(argc,argv)
|
1996-01-05 09:28:11 +00:00
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
struct conf_entry *p, *q;
|
|
|
|
|
|
|
|
PRS(argc,argv);
|
1997-10-06 07:46:08 +00:00
|
|
|
if (needroot && getuid() && geteuid())
|
|
|
|
errx(1, "must have root privs");
|
1996-01-05 09:28:11 +00:00
|
|
|
p = q = parse_file();
|
1997-05-04 01:53:53 +00:00
|
|
|
|
1997-05-05 15:00:15 +00:00
|
|
|
syslog_pid = needroot ? get_pid(PIDFILE) : 0;
|
1997-05-04 01:53:53 +00:00
|
|
|
|
1996-01-05 09:28:11 +00:00
|
|
|
while (p) {
|
|
|
|
do_entry(p);
|
|
|
|
p=p->next;
|
|
|
|
free((char *) q);
|
|
|
|
q=p;
|
|
|
|
}
|
1996-06-08 23:32:10 +00:00
|
|
|
return(0);
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
static void do_entry(ent)
|
1996-01-05 09:28:11 +00:00
|
|
|
struct conf_entry *ent;
|
|
|
|
|
|
|
|
{
|
|
|
|
int size, modtime;
|
|
|
|
|
|
|
|
if (verbose) {
|
|
|
|
if (ent->flags & CE_COMPACT)
|
|
|
|
printf("%s <%dZ>: ",ent->log,ent->numlogs);
|
|
|
|
else
|
|
|
|
printf("%s <%d>: ",ent->log,ent->numlogs);
|
|
|
|
}
|
|
|
|
size = sizefile(ent->log);
|
|
|
|
modtime = age_old_log(ent->log);
|
|
|
|
if (size < 0) {
|
|
|
|
if (verbose)
|
|
|
|
printf("does not exist.\n");
|
|
|
|
} else {
|
|
|
|
if (verbose && (ent->size > 0))
|
|
|
|
printf("size (Kb): %d [%d] ", size, ent->size);
|
|
|
|
if (verbose && (ent->hours > 0))
|
|
|
|
printf(" age (hr): %d [%d] ", modtime, ent->hours);
|
|
|
|
if (((ent->size > 0) && (size >= ent->size)) ||
|
|
|
|
((ent->hours > 0) && ((modtime >= ent->hours)
|
|
|
|
|| (modtime < 0)))) {
|
|
|
|
if (verbose)
|
|
|
|
printf("--> trimming log....\n");
|
|
|
|
if (noaction && !verbose) {
|
|
|
|
if (ent->flags & CE_COMPACT)
|
|
|
|
printf("%s <%dZ>: trimming",
|
|
|
|
ent->log,ent->numlogs);
|
|
|
|
else
|
|
|
|
printf("%s <%d>: trimming",
|
|
|
|
ent->log,ent->numlogs);
|
|
|
|
}
|
1997-05-04 01:53:53 +00:00
|
|
|
dotrim(ent->log, ent->pid_file, ent->numlogs,
|
|
|
|
ent->flags, ent->permissions, ent->uid, ent->gid);
|
1996-01-05 09:28:11 +00:00
|
|
|
} else {
|
|
|
|
if (verbose)
|
|
|
|
printf("--> skipping\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
static void PRS(argc,argv)
|
1996-01-05 09:28:11 +00:00
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
timenow = time((time_t *) 0);
|
|
|
|
daytime = ctime(&timenow) + 4;
|
1996-01-09 08:40:08 +00:00
|
|
|
daytime[15] = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
/* Let's get our hostname */
|
|
|
|
(void) gethostname(hostname, sizeof(hostname));
|
|
|
|
|
|
|
|
/* Truncate domain */
|
1996-06-08 23:32:10 +00:00
|
|
|
if ((p = strchr(hostname, '.'))) {
|
1996-01-05 09:28:11 +00:00
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
optind = 1; /* Start options parsing */
|
1997-03-31 05:11:47 +00:00
|
|
|
while ((c=getopt(argc,argv,"nrvf:t:")) != -1)
|
1996-01-05 09:28:11 +00:00
|
|
|
switch (c) {
|
|
|
|
case 'n':
|
|
|
|
noaction++; /* This implies needroot as off */
|
|
|
|
/* fall through */
|
|
|
|
case 'r':
|
|
|
|
needroot = 0;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
conf = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
static void usage()
|
1996-01-05 09:28:11 +00:00
|
|
|
{
|
1997-10-06 07:46:08 +00:00
|
|
|
fprintf(stderr, "usage: newsyslog [-nrv] [-f config-file]\n");
|
1996-01-05 09:28:11 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse a configuration file and return a linked list of all the logs
|
|
|
|
* to process
|
|
|
|
*/
|
1996-06-08 23:32:10 +00:00
|
|
|
static struct conf_entry *parse_file()
|
1996-01-05 09:28:11 +00:00
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char line[BUFSIZ], *parse, *q;
|
|
|
|
char *errline, *group;
|
|
|
|
struct conf_entry *first = NULL;
|
1996-06-07 16:27:28 +00:00
|
|
|
struct conf_entry *working = NULL;
|
1996-01-05 09:28:11 +00:00
|
|
|
struct passwd *pass;
|
|
|
|
struct group *grp;
|
1997-05-06 23:11:06 +00:00
|
|
|
int eol;
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
if (strcmp(conf,"-"))
|
|
|
|
f = fopen(conf,"r");
|
|
|
|
else
|
|
|
|
f = stdin;
|
1996-01-16 10:32:04 +00:00
|
|
|
if (!f)
|
|
|
|
err(1, "%s", conf);
|
1996-01-05 09:28:11 +00:00
|
|
|
while (fgets(line,BUFSIZ,f)) {
|
|
|
|
if ((line[0]== '\n') || (line[0] == '#'))
|
|
|
|
continue;
|
|
|
|
errline = strdup(line);
|
|
|
|
if (!first) {
|
|
|
|
working = (struct conf_entry *) malloc(sizeof(struct conf_entry));
|
|
|
|
first = working;
|
|
|
|
} else {
|
|
|
|
working->next = (struct conf_entry *) malloc(sizeof(struct conf_entry));
|
|
|
|
working = working->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
q = parse = missing_field(sob(line),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(line);
|
|
|
|
if (!*parse)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "malformed line (missing fields):\n%s", errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
*parse = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
working->log = strdup(q);
|
|
|
|
|
|
|
|
q = parse = missing_field(sob(++parse),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(parse);
|
|
|
|
if (!*parse)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "malformed line (missing fields):\n%s", errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
*parse = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
if ((group = strchr(q, '.')) != NULL) {
|
|
|
|
*group++ = '\0';
|
|
|
|
if (*q) {
|
|
|
|
if (!(isnumber(*q))) {
|
1996-01-16 10:32:04 +00:00
|
|
|
if ((pass = getpwnam(q)) == NULL)
|
|
|
|
errx(1,
|
1997-10-06 07:46:08 +00:00
|
|
|
"error in config file; unknown user:\n%s",
|
1996-01-16 10:32:04 +00:00
|
|
|
errline);
|
1996-01-05 09:28:11 +00:00
|
|
|
working->uid = pass->pw_uid;
|
|
|
|
} else
|
|
|
|
working->uid = atoi(q);
|
|
|
|
} else
|
|
|
|
working->uid = NONE;
|
|
|
|
|
|
|
|
q = group;
|
|
|
|
if (*q) {
|
|
|
|
if (!(isnumber(*q))) {
|
1996-01-16 10:32:04 +00:00
|
|
|
if ((grp = getgrnam(q)) == NULL)
|
|
|
|
errx(1,
|
1997-10-06 07:46:08 +00:00
|
|
|
"error in config file; unknown group:\n%s",
|
1996-01-16 10:32:04 +00:00
|
|
|
errline);
|
1996-01-05 09:28:11 +00:00
|
|
|
working->gid = grp->gr_gid;
|
|
|
|
} else
|
|
|
|
working->gid = atoi(q);
|
|
|
|
} else
|
|
|
|
working->gid = NONE;
|
|
|
|
|
|
|
|
q = parse = missing_field(sob(++parse),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(parse);
|
|
|
|
if (!*parse)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "malformed line (missing fields):\n%s", errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
*parse = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
working->uid = working->gid = NONE;
|
|
|
|
|
1996-01-16 10:32:04 +00:00
|
|
|
if (!sscanf(q,"%o",&working->permissions))
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "error in config file; bad permissions:\n%s",
|
1996-01-16 10:32:04 +00:00
|
|
|
errline);
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
q = parse = missing_field(sob(++parse),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(parse);
|
|
|
|
if (!*parse)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "malformed line (missing fields):\n%s", errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
*parse = '\0';
|
1996-01-16 10:32:04 +00:00
|
|
|
if (!sscanf(q,"%d",&working->numlogs))
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "error in config file; bad number:\n%s",
|
1996-01-16 10:32:04 +00:00
|
|
|
errline);
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
q = parse = missing_field(sob(++parse),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(parse);
|
|
|
|
if (!*parse)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "malformed line (missing fields):\n%s", errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
*parse = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
if (isdigit(*q))
|
|
|
|
working->size = atoi(q);
|
|
|
|
else
|
|
|
|
working->size = -1;
|
|
|
|
|
|
|
|
q = parse = missing_field(sob(++parse),errline);
|
1997-05-06 23:11:06 +00:00
|
|
|
parse = son(parse);
|
|
|
|
eol = !*parse;
|
|
|
|
*parse = '\0';
|
1996-01-05 09:28:11 +00:00
|
|
|
if (isdigit(*q))
|
|
|
|
working->hours = atoi(q);
|
|
|
|
else
|
|
|
|
working->hours = -1;
|
|
|
|
|
1997-05-06 23:11:06 +00:00
|
|
|
if (eol)
|
|
|
|
q = NULL;
|
|
|
|
else {
|
|
|
|
q = parse = sob(++parse); /* Optional field */
|
|
|
|
parse = son(parse);
|
|
|
|
if (!*parse)
|
|
|
|
eol = 1;
|
|
|
|
*parse = '\0';
|
|
|
|
}
|
1997-05-04 01:53:53 +00:00
|
|
|
|
1996-01-05 09:28:11 +00:00
|
|
|
working->flags = 0;
|
|
|
|
while (q && *q && !isspace(*q)) {
|
|
|
|
if ((*q == 'Z') || (*q == 'z'))
|
|
|
|
working->flags |= CE_COMPACT;
|
|
|
|
else if ((*q == 'B') || (*q == 'b'))
|
|
|
|
working->flags |= CE_BINARY;
|
1997-05-06 23:11:06 +00:00
|
|
|
else if (*q != '-')
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "illegal flag in config file -- %c", *q);
|
1996-01-05 09:28:11 +00:00
|
|
|
q++;
|
|
|
|
}
|
|
|
|
|
1997-05-06 23:11:06 +00:00
|
|
|
if (eol)
|
|
|
|
q = NULL;
|
|
|
|
else {
|
|
|
|
q = parse = sob(++parse); /* Optional field */
|
|
|
|
*(parse = son(parse)) = '\0';
|
|
|
|
}
|
1997-05-04 01:53:53 +00:00
|
|
|
|
|
|
|
working->pid_file = NULL;
|
|
|
|
if (q && *q) {
|
|
|
|
if (*q == '/')
|
|
|
|
working->pid_file = strdup(q);
|
|
|
|
else
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "illegal pid file in config file:\n%s", q);
|
1997-05-04 01:53:53 +00:00
|
|
|
}
|
|
|
|
|
1996-01-05 09:28:11 +00:00
|
|
|
free(errline);
|
|
|
|
}
|
|
|
|
if (working)
|
|
|
|
working->next = (struct conf_entry *) NULL;
|
|
|
|
(void) fclose(f);
|
|
|
|
return(first);
|
|
|
|
}
|
|
|
|
|
1996-06-08 23:32:10 +00:00
|
|
|
static char *missing_field(p,errline)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *p,*errline;
|
|
|
|
{
|
1996-01-16 10:32:04 +00:00
|
|
|
if (!p || !*p)
|
1997-10-06 07:46:08 +00:00
|
|
|
errx(1, "missing field in config file:\n%s", errline);
|
1996-01-05 09:28:11 +00:00
|
|
|
return(p);
|
|
|
|
}
|
|
|
|
|
1997-05-04 01:53:53 +00:00
|
|
|
static void dotrim(log,pid_file,numdays,flags,perm,owner_uid,group_gid)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *log;
|
1997-05-04 01:53:53 +00:00
|
|
|
char *pid_file;
|
1996-01-05 09:28:11 +00:00
|
|
|
int numdays;
|
|
|
|
int flags;
|
|
|
|
int perm;
|
|
|
|
int owner_uid;
|
|
|
|
int group_gid;
|
|
|
|
{
|
1996-01-16 10:32:04 +00:00
|
|
|
char file1 [MAXPATHLEN+1], file2 [MAXPATHLEN+1];
|
|
|
|
char zfile1[MAXPATHLEN+1], zfile2[MAXPATHLEN+1];
|
1997-05-04 01:53:53 +00:00
|
|
|
int notified, need_notification, fd, _numdays;
|
1996-01-05 09:28:11 +00:00
|
|
|
struct stat st;
|
1997-05-04 01:53:53 +00:00
|
|
|
pid_t pid;
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
#ifdef _IBMR2
|
|
|
|
/* AIX 3.1 has a broken fchown- if the owner_uid is -1, it will actually */
|
|
|
|
/* change it to be owned by uid -1, instead of leaving it as is, as it is */
|
|
|
|
/* supposed to. */
|
|
|
|
if (owner_uid == -1)
|
|
|
|
owner_uid = geteuid();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Remove oldest log */
|
|
|
|
(void) sprintf(file1,"%s.%d",log,numdays);
|
|
|
|
(void) strcpy(zfile1, file1);
|
|
|
|
(void) strcat(zfile1, COMPRESS_POSTFIX);
|
|
|
|
|
|
|
|
if (noaction) {
|
|
|
|
printf("rm -f %s\n", file1);
|
|
|
|
printf("rm -f %s\n", zfile1);
|
|
|
|
} else {
|
|
|
|
(void) unlink(file1);
|
|
|
|
(void) unlink(zfile1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move down log files */
|
1996-09-09 15:32:26 +00:00
|
|
|
_numdays = numdays; /* preserve */
|
1996-01-05 09:28:11 +00:00
|
|
|
while (numdays--) {
|
|
|
|
(void) strcpy(file2,file1);
|
|
|
|
(void) sprintf(file1,"%s.%d",log,numdays);
|
|
|
|
(void) strcpy(zfile1, file1);
|
|
|
|
(void) strcpy(zfile2, file2);
|
|
|
|
if (lstat(file1, &st)) {
|
|
|
|
(void) strcat(zfile1, COMPRESS_POSTFIX);
|
|
|
|
(void) strcat(zfile2, COMPRESS_POSTFIX);
|
1997-05-04 01:53:53 +00:00
|
|
|
if (lstat(zfile1, &st)) continue;
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
if (noaction) {
|
|
|
|
printf("mv %s %s\n",zfile1,zfile2);
|
|
|
|
printf("chmod %o %s\n", perm, zfile2);
|
|
|
|
printf("chown %d.%d %s\n",
|
|
|
|
owner_uid, group_gid, zfile2);
|
|
|
|
} else {
|
|
|
|
(void) rename(zfile1, zfile2);
|
|
|
|
(void) chmod(zfile2, perm);
|
|
|
|
(void) chown(zfile2, owner_uid, group_gid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!noaction && !(flags & CE_BINARY))
|
|
|
|
(void) log_trim(log); /* Report the trimming to the old log */
|
|
|
|
|
1996-09-09 15:32:26 +00:00
|
|
|
if (!_numdays) {
|
1996-09-06 06:36:07 +00:00
|
|
|
if (noaction)
|
|
|
|
printf("rm %s\n",log);
|
|
|
|
else
|
|
|
|
(void)unlink(log);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (noaction)
|
|
|
|
printf("mv %s to %s\n",log,file1);
|
|
|
|
else
|
|
|
|
(void)rename(log, file1);
|
|
|
|
}
|
|
|
|
|
1996-01-05 09:28:11 +00:00
|
|
|
if (noaction)
|
|
|
|
printf("Start new log...");
|
|
|
|
else {
|
|
|
|
fd = creat(log,perm);
|
1996-01-16 10:32:04 +00:00
|
|
|
if (fd < 0)
|
|
|
|
err(1, "can't start new log");
|
|
|
|
if (fchown(fd, owner_uid, group_gid))
|
|
|
|
err(1, "can't chmod new log file");
|
1996-01-05 09:28:11 +00:00
|
|
|
(void) close(fd);
|
|
|
|
if (!(flags & CE_BINARY))
|
1996-01-16 10:32:04 +00:00
|
|
|
if (log_trim(log)) /* Add status message */
|
|
|
|
err(1, "can't add status message to log");
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
if (noaction)
|
|
|
|
printf("chmod %o %s...",perm,log);
|
|
|
|
else
|
|
|
|
(void) chmod(log,perm);
|
1997-05-04 01:53:53 +00:00
|
|
|
|
|
|
|
pid = 0;
|
|
|
|
need_notification = notified = 0;
|
|
|
|
if (pid_file != NULL) {
|
|
|
|
need_notification = 1;
|
|
|
|
pid = get_pid(pid_file);
|
1997-05-05 15:00:15 +00:00
|
|
|
} else if (needroot && !(flags & CE_BINARY)) {
|
1997-05-04 01:53:53 +00:00
|
|
|
need_notification = 1;
|
|
|
|
pid = syslog_pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid) {
|
|
|
|
if (noaction) {
|
|
|
|
notified = 1;
|
|
|
|
printf("kill -HUP %d\n", (int)pid);
|
|
|
|
} else if (kill(pid,SIGHUP))
|
|
|
|
warn("can't notify daemon, pid %d", (int)pid);
|
|
|
|
else {
|
|
|
|
notified = 1;
|
|
|
|
if (verbose)
|
|
|
|
printf("daemon pid %d notified\n", (int)pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flags & CE_COMPACT)) {
|
|
|
|
if (need_notification && !notified)
|
|
|
|
warnx("log not compressed because daemon not notified");
|
|
|
|
else if (noaction)
|
1996-01-05 09:28:11 +00:00
|
|
|
printf("Compress %s.0\n",log);
|
1997-05-04 01:53:53 +00:00
|
|
|
else {
|
|
|
|
if (notified) {
|
|
|
|
if (verbose)
|
|
|
|
printf("small pause to allow daemon to close log\n");
|
1997-11-30 18:58:18 +00:00
|
|
|
sleep(10);
|
1997-05-04 01:53:53 +00:00
|
|
|
}
|
1996-01-05 09:28:11 +00:00
|
|
|
compress_log(log);
|
1997-05-04 01:53:53 +00:00
|
|
|
}
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Log the fact that the logs were turned over */
|
1996-06-08 23:32:10 +00:00
|
|
|
static int log_trim(log)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *log;
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
if ((f = fopen(log,"a")) == NULL)
|
|
|
|
return(-1);
|
|
|
|
fprintf(f,"%s %s newsyslog[%d]: logfile turned over\n",
|
1996-06-08 23:32:10 +00:00
|
|
|
daytime, hostname, (int)getpid());
|
1996-01-16 10:32:04 +00:00
|
|
|
if (fclose(f) == EOF)
|
|
|
|
err(1, "log_trim: fclose:");
|
1996-01-05 09:28:11 +00:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fork of /usr/ucb/compress to compress the old log file */
|
1996-06-08 23:32:10 +00:00
|
|
|
static void compress_log(log)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *log;
|
|
|
|
{
|
1997-05-04 01:53:53 +00:00
|
|
|
pid_t pid;
|
|
|
|
char tmp[MAXPATHLEN+1];
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
(void) sprintf(tmp,"%s.0",log);
|
1997-05-04 01:53:53 +00:00
|
|
|
pid = fork();
|
1996-01-16 10:32:04 +00:00
|
|
|
if (pid < 0)
|
|
|
|
err(1, "fork");
|
|
|
|
else if (!pid) {
|
1997-05-04 01:53:53 +00:00
|
|
|
(void) execl(COMPRESS_PATH,COMPRESS_PROG,"-f",tmp,0);
|
|
|
|
err(1, COMPRESS_PATH);
|
1996-01-05 09:28:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return size in kilobytes of a file */
|
1996-06-08 23:32:10 +00:00
|
|
|
static int sizefile(file)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *file;
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (stat(file,&sb) < 0)
|
|
|
|
return(-1);
|
|
|
|
return(kbytes(dbtob(sb.st_blocks)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the age of old log file (file.0) */
|
1996-06-08 23:32:10 +00:00
|
|
|
static int age_old_log(file)
|
1996-01-05 09:28:11 +00:00
|
|
|
char *file;
|
|
|
|
{
|
|
|
|
struct stat sb;
|
1996-01-16 10:32:04 +00:00
|
|
|
char tmp[MAXPATHLEN+sizeof(".0")+sizeof(COMPRESS_POSTFIX)+1];
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
(void) strcpy(tmp,file);
|
|
|
|
if (stat(strcat(tmp,".0"),&sb) < 0)
|
|
|
|
if (stat(strcat(tmp,COMPRESS_POSTFIX), &sb) < 0)
|
|
|
|
return(-1);
|
|
|
|
return( (int) (timenow - sb.st_mtime + 1800) / 3600);
|
|
|
|
}
|
|
|
|
|
1997-05-04 01:53:53 +00:00
|
|
|
static pid_t get_pid(pid_file)
|
|
|
|
char *pid_file;
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char line[BUFSIZ];
|
|
|
|
pid_t pid = 0;
|
|
|
|
|
|
|
|
if ((f = fopen(pid_file,"r")) == NULL)
|
|
|
|
warn("can't open %s pid file to restart a daemon",
|
|
|
|
pid_file);
|
|
|
|
else {
|
|
|
|
if (fgets(line,BUFSIZ,f)) {
|
|
|
|
pid = atol(line);
|
|
|
|
if (pid < MIN_PID || pid > MAX_PID) {
|
|
|
|
warnx("preposterous process number: %d", (int)pid);
|
|
|
|
pid = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
warn("can't read %s pid file to restart a daemon",
|
|
|
|
pid_file);
|
|
|
|
(void)fclose(f);
|
|
|
|
}
|
|
|
|
return pid;
|
|
|
|
}
|
1996-01-05 09:28:11 +00:00
|
|
|
|
|
|
|
#ifndef OSF
|
|
|
|
/* Duplicate a string using malloc */
|
|
|
|
|
|
|
|
char *strdup(strp)
|
|
|
|
register char *strp;
|
|
|
|
{
|
|
|
|
register char *cp;
|
|
|
|
|
|
|
|
if ((cp = malloc((unsigned) strlen(strp) + 1)) == NULL)
|
|
|
|
abort();
|
|
|
|
return(strcpy (cp, strp));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Skip Over Blanks */
|
|
|
|
char *sob(p)
|
1997-05-04 01:53:53 +00:00
|
|
|
register char *p;
|
1996-01-05 09:28:11 +00:00
|
|
|
{
|
|
|
|
while (p && *p && isspace(*p))
|
|
|
|
p++;
|
|
|
|
return(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip Over Non-Blanks */
|
|
|
|
char *son(p)
|
1997-05-04 01:53:53 +00:00
|
|
|
register char *p;
|
1996-01-05 09:28:11 +00:00
|
|
|
{
|
|
|
|
while (p && *p && !isspace(*p))
|
|
|
|
p++;
|
|
|
|
return(p);
|
|
|
|
}
|