Home | History | Annotate | Line # | Download | only in newsyslog
newsyslog.c revision 1.2
      1  1.1  cgd /*
      2  1.1  cgd  * This file contains changes from the Open Software Foundation.
      3  1.1  cgd  * The RCS history log will appear at the end of this file.
      4  1.2  cgd  * @(#)newsyslog.c	$Revision: 1.2 $ $Date: 1993/05/21 14:47:30 $ $Locker:  $
      5  1.1  cgd  */
      6  1.1  cgd 
      7  1.1  cgd /*
      8  1.1  cgd 
      9  1.2  cgd Copyright 1988, 1989 by the Massachusetts Institute of Technology
     10  1.1  cgd 
     11  1.2  cgd Permission to use, copy, modify, and distribute this software
     12  1.2  cgd and its documentation for any purpose and without fee is
     13  1.2  cgd hereby granted, provided that the above copyright notice
     14  1.2  cgd appear in all copies and that both that copyright notice and
     15  1.2  cgd this permission notice appear in supporting documentation,
     16  1.2  cgd and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
     17  1.2  cgd used in advertising or publicity pertaining to distribution
     18  1.2  cgd of the software without specific, written prior permission.
     19  1.2  cgd M.I.T. and the M.I.T. S.I.P.B. make no representations about
     20  1.2  cgd the suitability of this software for any purpose.  It is
     21  1.2  cgd provided "as is" without express or implied warranty.
     22  1.1  cgd 
     23  1.1  cgd */
     24  1.1  cgd 
     25  1.1  cgd /*
     26  1.1  cgd  *      newsyslog - roll over selected logs at the appropriate time,
     27  1.1  cgd  *              keeping the a specified number of backup files around.
     28  1.1  cgd  *
     29  1.2  cgd  *      $Source: /tank/opengrok/rsync2/NetBSD/src/usr.bin/newsyslog/newsyslog.c,v $
     30  1.2  cgd  *      $Author: cgd $
     31  1.1  cgd  */
     32  1.1  cgd 
     33  1.1  cgd #if !defined(lint) && !defined(_NOIDENT)
     34  1.2  cgd static char rcsid[] = "@(#)$RCSfile: newsyslog.c,v $ $Revision: 1.2 $ (OSF) $Date: 1993/05/21 14:47:30 $";
     35  1.1  cgd #endif
     36  1.1  cgd 
     37  1.1  cgd #ifndef CONF
     38  1.1  cgd #define CONF "/etc/athena/newsyslog.conf" /* Configuration file */
     39  1.1  cgd #endif
     40  1.1  cgd #ifndef PIDFILE
     41  1.1  cgd #define PIDFILE "/etc/syslog.pid"
     42  1.1  cgd #endif
     43  1.1  cgd #ifndef COMPRESS
     44  1.1  cgd #define COMPRESS "/usr/ucb/compress" /* File compression program */
     45  1.1  cgd #endif
     46  1.1  cgd 
     47  1.1  cgd #include <stdio.h>
     48  1.1  cgd #include <strings.h>
     49  1.1  cgd #include <ctype.h>
     50  1.1  cgd #include <signal.h>
     51  1.1  cgd #include <pwd.h>
     52  1.1  cgd #include <grp.h>
     53  1.1  cgd #include <sys/types.h>
     54  1.1  cgd #include <sys/time.h>
     55  1.1  cgd #include <sys/stat.h>
     56  1.1  cgd #include <sys/param.h>
     57  1.1  cgd #include <sys/wait.h>
     58  1.1  cgd 
     59  1.1  cgd #define kbytes(size)  (((size) + 1023) >> 10)
     60  1.1  cgd #ifdef _IBMR2
     61  1.1  cgd /* Calculates (db * DEV_BSIZE) */
     62  1.1  cgd #define dbtob(db)  ((unsigned)(db) << UBSHIFT)
     63  1.1  cgd #endif
     64  1.1  cgd 
     65  1.1  cgd #define CE_COMPACT 1            /* Compact the achived log files */
     66  1.1  cgd #define CE_BINARY 2             /* Logfile is in binary, don't add */
     67  1.1  cgd                                 /* status messages */
     68  1.1  cgd #define NONE -1
     69  1.1  cgd 
     70  1.1  cgd struct conf_entry {
     71  1.1  cgd         char    *log;           /* Name of the log */
     72  1.1  cgd         int     uid;            /* Owner of log */
     73  1.1  cgd         int     gid;            /* Group of log */
     74  1.1  cgd         int     numlogs;        /* Number of logs to keep */
     75  1.1  cgd         int     size;           /* Size cutoff to trigger trimming the log */
     76  1.1  cgd         int     hours;          /* Hours between log trimming */
     77  1.1  cgd         int     permissions;    /* File permissions on the log */
     78  1.1  cgd         int     flags;          /* Flags (CE_COMPACT & CE_BINARY)  */
     79  1.1  cgd         struct conf_entry       *next; /* Linked list pointer */
     80  1.1  cgd };
     81  1.1  cgd 
     82  1.1  cgd extern int      optind;
     83  1.1  cgd extern char     *optarg;
     84  1.1  cgd extern char *malloc();
     85  1.1  cgd extern uid_t getuid(),geteuid();
     86  1.1  cgd extern time_t time();
     87  1.1  cgd 
     88  1.1  cgd char    *progname;              /* contains argv[0] */
     89  1.1  cgd int     verbose = 0;            /* Print out what's going on */
     90  1.1  cgd int     needroot = 1;           /* Root privs are necessary */
     91  1.1  cgd int     noaction = 0;           /* Don't do anything, just show it */
     92  1.1  cgd char    *conf = CONF;           /* Configuration file to use */
     93  1.1  cgd time_t  timenow;
     94  1.1  cgd int     syslog_pid;             /* read in from /etc/syslog.pid */
     95  1.1  cgd char    hostname[64];           /* hostname */
     96  1.1  cgd char    *daytime;               /* timenow in human readable form */
     97  1.1  cgd 
     98  1.1  cgd 
     99  1.1  cgd struct conf_entry *parse_file();
    100  1.1  cgd char *sob(), *son(), *strdup(), *missing_field();
    101  1.1  cgd 
    102  1.1  cgd main(argc,argv)
    103  1.1  cgd         int argc;
    104  1.1  cgd         char **argv;
    105  1.1  cgd {
    106  1.1  cgd         struct conf_entry *p, *q;
    107  1.1  cgd 
    108  1.1  cgd         PRS(argc,argv);
    109  1.1  cgd         if (needroot && getuid() && geteuid()) {
    110  1.1  cgd                 fprintf(stderr,"%s: must have root privs\n",progname);
    111  1.1  cgd                 exit(1);
    112  1.1  cgd         }
    113  1.1  cgd         p = q = parse_file();
    114  1.1  cgd         while (p) {
    115  1.1  cgd                 do_entry(p);
    116  1.1  cgd                 p=p->next;
    117  1.1  cgd                 free((char *) q);
    118  1.1  cgd                 q=p;
    119  1.1  cgd         }
    120  1.1  cgd         exit(0);
    121  1.1  cgd }
    122  1.1  cgd 
    123  1.1  cgd do_entry(ent)
    124  1.1  cgd         struct conf_entry       *ent;
    125  1.1  cgd 
    126  1.1  cgd {
    127  1.1  cgd         int     size, modtime;
    128  1.1  cgd 
    129  1.1  cgd         if (verbose) {
    130  1.1  cgd                 if (ent->flags & CE_COMPACT)
    131  1.1  cgd                         printf("%s <%dZ>: ",ent->log,ent->numlogs);
    132  1.1  cgd                 else
    133  1.1  cgd                         printf("%s <%d>: ",ent->log,ent->numlogs);
    134  1.1  cgd         }
    135  1.1  cgd         size = sizefile(ent->log);
    136  1.1  cgd         modtime = age_old_log(ent->log);
    137  1.1  cgd         if (size < 0) {
    138  1.1  cgd                 if (verbose)
    139  1.1  cgd                         printf("does not exist.\n");
    140  1.1  cgd         } else {
    141  1.1  cgd                 if (verbose && (ent->size > 0))
    142  1.1  cgd                         printf("size (Kb): %d [%d] ", size, ent->size);
    143  1.1  cgd                 if (verbose && (ent->hours > 0))
    144  1.1  cgd                         printf(" age (hr): %d [%d] ", modtime, ent->hours);
    145  1.1  cgd                 if (((ent->size > 0) && (size >= ent->size)) ||
    146  1.1  cgd                     ((ent->hours > 0) && ((modtime >= ent->hours)
    147  1.1  cgd                                         || (modtime < 0)))) {
    148  1.1  cgd                         if (verbose)
    149  1.1  cgd                                 printf("--> trimming log....\n");
    150  1.1  cgd                         if (noaction && !verbose) {
    151  1.1  cgd                                 if (ent->flags & CE_COMPACT)
    152  1.1  cgd                                         printf("%s <%dZ>: trimming",
    153  1.1  cgd                                                ent->log,ent->numlogs);
    154  1.1  cgd                                 else
    155  1.1  cgd                                         printf("%s <%d>: trimming",
    156  1.1  cgd                                                ent->log,ent->numlogs);
    157  1.1  cgd                         }
    158  1.1  cgd                         dotrim(ent->log, ent->numlogs, ent->flags,
    159  1.1  cgd                                ent->permissions, ent->uid, ent->gid);
    160  1.1  cgd                 } else {
    161  1.1  cgd                         if (verbose)
    162  1.1  cgd                                 printf("--> skipping\n");
    163  1.1  cgd                 }
    164  1.1  cgd         }
    165  1.1  cgd }
    166  1.1  cgd 
    167  1.1  cgd PRS(argc,argv)
    168  1.1  cgd         int argc;
    169  1.1  cgd         char **argv;
    170  1.1  cgd {
    171  1.1  cgd         int     c;
    172  1.1  cgd         FILE    *f;
    173  1.1  cgd         char    line[BUFSIZ];
    174  1.1  cgd 
    175  1.1  cgd         progname = argv[0];
    176  1.1  cgd         timenow = time((time_t *) 0);
    177  1.1  cgd         daytime = ctime(&timenow);
    178  1.1  cgd         daytime[strlen(daytime)-1] = '\0';
    179  1.1  cgd 
    180  1.1  cgd         /* Let's find the pid of syslogd */
    181  1.1  cgd         syslog_pid = 0;
    182  1.1  cgd         f = fopen(PIDFILE,"r");
    183  1.1  cgd         if (f && fgets(line,BUFSIZ,f))
    184  1.1  cgd                 syslog_pid = atoi(line);
    185  1.1  cgd 
    186  1.1  cgd         /* Let's get our hostname */
    187  1.1  cgd         if (gethostname(hostname, 64)) {
    188  1.1  cgd                 perror("gethostname");
    189  1.1  cgd                 (void) strcpy(hostname,"Mystery Host");
    190  1.1  cgd         }
    191  1.1  cgd 
    192  1.1  cgd         optind = 1;             /* Start options parsing */
    193  1.1  cgd         while ((c=getopt(argc,argv,"nrvf:t:")) != EOF)
    194  1.1  cgd                 switch (c) {
    195  1.1  cgd                 case 'n':
    196  1.1  cgd                         noaction++; /* This implies needroot as off */
    197  1.1  cgd                         /* fall through */
    198  1.1  cgd                 case 'r':
    199  1.1  cgd                         needroot = 0;
    200  1.1  cgd                         break;
    201  1.1  cgd                 case 'v':
    202  1.1  cgd                         verbose++;
    203  1.1  cgd                         break;
    204  1.1  cgd                 case 'f':
    205  1.1  cgd                         conf = optarg;
    206  1.1  cgd                         break;
    207  1.1  cgd                 default:
    208  1.1  cgd                         usage();
    209  1.1  cgd                 }
    210  1.1  cgd         }
    211  1.1  cgd 
    212  1.1  cgd usage()
    213  1.1  cgd {
    214  1.1  cgd         fprintf(stderr,
    215  1.1  cgd                 "Usage: %s <-nrv> <-f config-file>\n");
    216  1.1  cgd         exit(1);
    217  1.1  cgd }
    218  1.1  cgd 
    219  1.1  cgd /* Parse a configuration file and return a linked list of all the logs
    220  1.1  cgd  * to process
    221  1.1  cgd  */
    222  1.1  cgd struct conf_entry *parse_file()
    223  1.1  cgd {
    224  1.1  cgd         FILE    *f;
    225  1.1  cgd         char    line[BUFSIZ], *parse, *q;
    226  1.1  cgd         char    *errline, *group;
    227  1.1  cgd         struct conf_entry *first = NULL;
    228  1.1  cgd         struct conf_entry *working;
    229  1.1  cgd         struct passwd *pass;
    230  1.1  cgd         struct group *grp;
    231  1.1  cgd 
    232  1.1  cgd         if (strcmp(conf,"-"))
    233  1.1  cgd                 f = fopen(conf,"r");
    234  1.1  cgd         else
    235  1.1  cgd                 f = stdin;
    236  1.1  cgd         if (!f) {
    237  1.1  cgd                 (void) fprintf(stderr,"%s: ",progname);
    238  1.1  cgd                 perror(conf);
    239  1.1  cgd                 exit(1);
    240  1.1  cgd         }
    241  1.1  cgd         while (fgets(line,BUFSIZ,f)) {
    242  1.1  cgd                 if ((line[0]== '\n') || (line[0] == '#'))
    243  1.1  cgd                         continue;
    244  1.1  cgd                 errline = strdup(line);
    245  1.1  cgd                 if (!first) {
    246  1.1  cgd                         working = (struct conf_entry *) malloc(sizeof(struct conf_entry));
    247  1.1  cgd                         first = working;
    248  1.1  cgd                 } else {
    249  1.1  cgd                         working->next = (struct conf_entry *) malloc(sizeof(struct conf_entry));
    250  1.1  cgd                         working = working->next;
    251  1.1  cgd                 }
    252  1.1  cgd 
    253  1.1  cgd                 q = parse = missing_field(sob(line),errline);
    254  1.1  cgd                 *(parse = son(line)) = '\0';
    255  1.1  cgd                 working->log = strdup(q);
    256  1.1  cgd 
    257  1.1  cgd                 q = parse = missing_field(sob(++parse),errline);
    258  1.1  cgd                 *(parse = son(parse)) = '\0';
    259  1.1  cgd                 if ((group = index(q, '.')) != NULL) {
    260  1.1  cgd                     *group++ = '\0';
    261  1.1  cgd                     if (*q) {
    262  1.1  cgd                         if (!(isnumber(q))) {
    263  1.1  cgd                             if ((pass = getpwnam(q)) == NULL) {
    264  1.1  cgd                                 fprintf(stderr,
    265  1.1  cgd                                     "Error in config file; unknown user:\n");
    266  1.1  cgd                                 fputs(errline,stderr);
    267  1.1  cgd                                 exit(1);
    268  1.1  cgd                             }
    269  1.1  cgd                             working->uid = pass->pw_uid;
    270  1.1  cgd                         } else
    271  1.1  cgd                             working->uid = atoi(q);
    272  1.1  cgd                     } else
    273  1.1  cgd                         working->uid = NONE;
    274  1.1  cgd 
    275  1.1  cgd                     q = group;
    276  1.1  cgd                     if (*q) {
    277  1.1  cgd                         if (!(isnumber(q))) {
    278  1.1  cgd                             if ((grp = getgrnam(q)) == NULL) {
    279  1.1  cgd                                 fprintf(stderr,
    280  1.1  cgd                                     "Error in config file; unknown group:\n");
    281  1.1  cgd                                 fputs(errline,stderr);
    282  1.1  cgd                                 exit(1);
    283  1.1  cgd                             }
    284  1.1  cgd                             working->gid = grp->gr_gid;
    285  1.1  cgd                         } else
    286  1.1  cgd                             working->gid = atoi(q);
    287  1.1  cgd                     } else
    288  1.1  cgd                         working->gid = NONE;
    289  1.1  cgd 
    290  1.1  cgd                     q = parse = missing_field(sob(++parse),errline);
    291  1.1  cgd                     *(parse = son(parse)) = '\0';
    292  1.1  cgd                 }
    293  1.1  cgd                 else
    294  1.1  cgd                     working->uid = working->gid = NONE;
    295  1.1  cgd 
    296  1.1  cgd                 if (!sscanf(q,"%o",&working->permissions)) {
    297  1.1  cgd                         fprintf(stderr,
    298  1.1  cgd                                 "Error in config file; bad permissions:\n");
    299  1.1  cgd                         fputs(errline,stderr);
    300  1.1  cgd                         exit(1);
    301  1.1  cgd                 }
    302  1.1  cgd 
    303  1.1  cgd                 q = parse = missing_field(sob(++parse),errline);
    304  1.1  cgd                 *(parse = son(parse)) = '\0';
    305  1.1  cgd                 if (!sscanf(q,"%d",&working->numlogs)) {
    306  1.1  cgd                         fprintf(stderr,
    307  1.1  cgd                                 "Error in config file; bad number:\n");
    308  1.1  cgd                         fputs(errline,stderr);
    309  1.1  cgd                         exit(1);
    310  1.1  cgd                 }
    311  1.1  cgd 
    312  1.1  cgd                 q = parse = missing_field(sob(++parse),errline);
    313  1.1  cgd                 *(parse = son(parse)) = '\0';
    314  1.1  cgd                 if (isdigit(*q))
    315  1.1  cgd                         working->size = atoi(q);
    316  1.1  cgd                 else
    317  1.1  cgd                         working->size = -1;
    318  1.1  cgd 
    319  1.1  cgd                 q = parse = missing_field(sob(++parse),errline);
    320  1.1  cgd                 *(parse = son(parse)) = '\0';
    321  1.1  cgd                 if (isdigit(*q))
    322  1.1  cgd                         working->hours = atoi(q);
    323  1.1  cgd                 else
    324  1.1  cgd                         working->hours = -1;
    325  1.1  cgd 
    326  1.1  cgd                 q = parse = sob(++parse); /* Optional field */
    327  1.1  cgd                 *(parse = son(parse)) = '\0';
    328  1.1  cgd                 working->flags = 0;
    329  1.1  cgd                 while (q && *q && !isspace(*q)) {
    330  1.1  cgd                         if ((*q == 'Z') || (*q == 'z'))
    331  1.1  cgd                                 working->flags |= CE_COMPACT;
    332  1.1  cgd                         else if ((*q == 'B') || (*q == 'b'))
    333  1.1  cgd                                 working->flags |= CE_BINARY;
    334  1.1  cgd                         else {
    335  1.1  cgd                                 fprintf(stderr,
    336  1.1  cgd                                         "Illegal flag in config file -- %c\n",
    337  1.1  cgd                                         *q);
    338  1.1  cgd                                 exit(1);
    339  1.1  cgd                         }
    340  1.1  cgd                         q++;
    341  1.1  cgd                 }
    342  1.1  cgd 
    343  1.1  cgd                 free(errline);
    344  1.1  cgd         }
    345  1.1  cgd         if (working)
    346  1.1  cgd                 working->next = (struct conf_entry *) NULL;
    347  1.1  cgd         (void) fclose(f);
    348  1.1  cgd         return(first);
    349  1.1  cgd }
    350  1.1  cgd 
    351  1.1  cgd char *missing_field(p,errline)
    352  1.1  cgd         char    *p,*errline;
    353  1.1  cgd {
    354  1.1  cgd         if (!p || !*p) {
    355  1.1  cgd                 fprintf(stderr,"Missing field in config file:\n");
    356  1.1  cgd                 fputs(errline,stderr);
    357  1.1  cgd                 exit(1);
    358  1.1  cgd         }
    359  1.1  cgd         return(p);
    360  1.1  cgd }
    361  1.1  cgd 
    362  1.1  cgd dotrim(log,numdays,flags,perm,owner_uid,group_gid)
    363  1.1  cgd         char    *log;
    364  1.1  cgd         int     numdays;
    365  1.1  cgd         int     flags;
    366  1.1  cgd         int     perm;
    367  1.1  cgd         int     owner_uid;
    368  1.1  cgd         int     group_gid;
    369  1.1  cgd {
    370  1.1  cgd         char    file1[128], file2[128];
    371  1.1  cgd         char    zfile1[128], zfile2[128];
    372  1.1  cgd         int     fd;
    373  1.1  cgd         struct  stat st;
    374  1.1  cgd 
    375  1.1  cgd #ifdef _IBMR2
    376  1.1  cgd /* AIX 3.1 has a broken fchown- if the owner_uid is -1, it will actually */
    377  1.1  cgd /* change it to be owned by uid -1, instead of leaving it as is, as it is */
    378  1.1  cgd /* supposed to. */
    379  1.1  cgd                 if (owner_uid == -1)
    380  1.1  cgd                   owner_uid = geteuid();
    381  1.1  cgd #endif
    382  1.1  cgd 
    383  1.1  cgd         /* Remove oldest log */
    384  1.1  cgd         (void) sprintf(file1,"%s.%d",log,numdays);
    385  1.1  cgd         (void) strcpy(zfile1, file1);
    386  1.1  cgd         (void) strcat(zfile1, ".Z");
    387  1.1  cgd 
    388  1.1  cgd         if (noaction) {
    389  1.1  cgd                 printf("rm -f %s\n", file1);
    390  1.1  cgd                 printf("rm -f %s\n", zfile1);
    391  1.1  cgd         } else {
    392  1.1  cgd                 (void) unlink(file1);
    393  1.1  cgd                 (void) unlink(zfile1);
    394  1.1  cgd         }
    395  1.1  cgd 
    396  1.1  cgd         /* Move down log files */
    397  1.1  cgd         while (numdays--) {
    398  1.1  cgd                 (void) strcpy(file2,file1);
    399  1.1  cgd                 (void) sprintf(file1,"%s.%d",log,numdays);
    400  1.1  cgd                 (void) strcpy(zfile1, file1);
    401  1.1  cgd                 (void) strcpy(zfile2, file2);
    402  1.1  cgd                 if (lstat(file1, &st)) {
    403  1.1  cgd                         (void) strcat(zfile1, ".Z");
    404  1.1  cgd                         (void) strcat(zfile2, ".Z");
    405  1.1  cgd                         if (lstat(zfile1, &st)) continue;
    406  1.1  cgd                 }
    407  1.1  cgd                 if (noaction) {
    408  1.1  cgd                         printf("mv %s %s\n",zfile1,zfile2);
    409  1.1  cgd                         printf("chmod %o %s\n", perm, zfile2);
    410  1.1  cgd                         printf("chown %d.%d %s\n",
    411  1.1  cgd                                owner_uid, group_gid, zfile2);
    412  1.1  cgd                 } else {
    413  1.1  cgd                         (void) rename(zfile1, zfile2);
    414  1.1  cgd                         (void) chmod(zfile2, perm);
    415  1.1  cgd                         (void) chown(zfile2, owner_uid, group_gid);
    416  1.1  cgd                 }
    417  1.1  cgd         }
    418  1.1  cgd         if (!noaction && !(flags & CE_BINARY))
    419  1.1  cgd                 (void) log_trim(log);  /* Report the trimming to the old log */
    420  1.1  cgd 
    421  1.1  cgd         if (noaction)
    422  1.1  cgd                 printf("mv %s to %s\n",log,file1);
    423  1.1  cgd         else
    424  1.1  cgd                 (void) rename(log,file1);
    425  1.1  cgd         if (noaction)
    426  1.1  cgd                 printf("Start new log...");
    427  1.1  cgd         else {
    428  1.1  cgd                 fd = creat(log,perm);
    429  1.1  cgd                 if (fd < 0) {
    430  1.1  cgd                         perror("can't start new log");
    431  1.1  cgd                         exit(1);
    432  1.1  cgd                 }
    433  1.1  cgd                 if (fchown(fd, owner_uid, group_gid)) {
    434  1.1  cgd                         perror("can't chmod new log file");
    435  1.1  cgd                         exit(1);
    436  1.1  cgd                 }
    437  1.1  cgd                 (void) close(fd);
    438  1.1  cgd                 if (!(flags & CE_BINARY))
    439  1.1  cgd                         if (log_trim(log)) {    /* Add status message */
    440  1.1  cgd                                 perror("can't add status message to log");
    441  1.1  cgd                                 exit(1);
    442  1.1  cgd                         }
    443  1.1  cgd         }
    444  1.1  cgd         if (noaction)
    445  1.1  cgd                 printf("chmod %o %s...",perm,log);
    446  1.1  cgd         else
    447  1.1  cgd                 (void) chmod(log,perm);
    448  1.1  cgd         if (noaction)
    449  1.1  cgd                 printf("kill -HUP %d (syslogd)\n",syslog_pid);
    450  1.1  cgd         else
    451  1.1  cgd         if (kill(syslog_pid,SIGHUP)) {
    452  1.1  cgd                         fprintf(stderr,"%s: ",progname);
    453  1.1  cgd                         perror("warning - could not restart syslogd");
    454  1.1  cgd                 }
    455  1.1  cgd         if (flags & CE_COMPACT) {
    456  1.1  cgd                 if (noaction)
    457  1.1  cgd                         printf("Compress %s.0\n",log);
    458  1.1  cgd                 else
    459  1.1  cgd                         compress_log(log);
    460  1.1  cgd         }
    461  1.1  cgd }
    462  1.1  cgd 
    463  1.1  cgd /* Log the fact that the logs were turned over */
    464  1.1  cgd log_trim(log)
    465  1.1  cgd         char    *log;
    466  1.1  cgd {
    467  1.1  cgd         FILE    *f;
    468  1.1  cgd         if ((f = fopen(log,"a")) == NULL)
    469  1.1  cgd                 return(-1);
    470  1.1  cgd         fprintf(f,"%s %s newsyslog[%d]: logfile turned over\n",
    471  1.1  cgd                 daytime, hostname, getpid());
    472  1.1  cgd         if (fclose(f) == EOF) {
    473  1.1  cgd                 perror("log_trim: fclose:");
    474  1.1  cgd                 exit(1);
    475  1.1  cgd         }
    476  1.1  cgd         return(0);
    477  1.1  cgd }
    478  1.1  cgd 
    479  1.1  cgd /* Fork of /usr/ucb/compress to compress the old log file */
    480  1.1  cgd compress_log(log)
    481  1.1  cgd         char    *log;
    482  1.1  cgd {
    483  1.1  cgd         int     pid;
    484  1.1  cgd         char    tmp[128];
    485  1.1  cgd 
    486  1.1  cgd         pid = fork();
    487  1.1  cgd         (void) sprintf(tmp,"%s.0",log);
    488  1.1  cgd         if (pid < 0) {
    489  1.1  cgd                 fprintf(stderr,"%s: ",progname);
    490  1.1  cgd                 perror("fork");
    491  1.1  cgd                 exit(1);
    492  1.1  cgd         } else if (!pid) {
    493  1.1  cgd                 (void) execl(COMPRESS,"compress","-f",tmp,0);
    494  1.1  cgd                 fprintf(stderr,"%s: ",progname);
    495  1.1  cgd                 perror(COMPRESS);
    496  1.1  cgd                 exit(1);
    497  1.1  cgd         }
    498  1.1  cgd }
    499  1.1  cgd 
    500  1.1  cgd /* Return size in kilobytes of a file */
    501  1.1  cgd int sizefile(file)
    502  1.1  cgd         char    *file;
    503  1.1  cgd {
    504  1.1  cgd         struct stat sb;
    505  1.1  cgd 
    506  1.1  cgd         if (stat(file,&sb) < 0)
    507  1.1  cgd                 return(-1);
    508  1.1  cgd         return(kbytes(dbtob(sb.st_blocks)));
    509  1.1  cgd }
    510  1.1  cgd 
    511  1.1  cgd /* Return the age of old log file (file.0) */
    512  1.1  cgd int age_old_log(file)
    513  1.1  cgd         char    *file;
    514  1.1  cgd {
    515  1.1  cgd         struct stat sb;
    516  1.1  cgd         char tmp[80];
    517  1.1  cgd 
    518  1.1  cgd         (void) strcpy(tmp,file);
    519  1.1  cgd         if (stat(strcat(tmp,".0"),&sb) < 0)
    520  1.1  cgd             if (stat(strcat(tmp,".Z"), &sb) < 0)
    521  1.1  cgd                 return(-1);
    522  1.1  cgd         return( (int) (timenow - sb.st_mtime + 1800) / 3600);
    523  1.1  cgd }
    524  1.1  cgd 
    525  1.1  cgd 
    526  1.1  cgd #ifndef OSF
    527  1.1  cgd /* Duplicate a string using malloc */
    528  1.1  cgd 
    529  1.1  cgd char *strdup(strp)
    530  1.1  cgd register char   *strp;
    531  1.1  cgd {
    532  1.1  cgd         register char *cp;
    533  1.1  cgd 
    534  1.1  cgd         if ((cp = malloc((unsigned) strlen(strp) + 1)) == NULL)
    535  1.1  cgd                 abort();
    536  1.1  cgd         return(strcpy (cp, strp));
    537  1.1  cgd }
    538  1.1  cgd #endif
    539  1.1  cgd 
    540  1.1  cgd /* Skip Over Blanks */
    541  1.1  cgd char *sob(p)
    542  1.1  cgd         register char   *p;
    543  1.1  cgd {
    544  1.1  cgd         while (p && *p && isspace(*p))
    545  1.1  cgd                 p++;
    546  1.1  cgd         return(p);
    547  1.1  cgd }
    548  1.1  cgd 
    549  1.1  cgd /* Skip Over Non-Blanks */
    550  1.1  cgd char *son(p)
    551  1.1  cgd         register char   *p;
    552  1.1  cgd {
    553  1.1  cgd         while (p && *p && !isspace(*p))
    554  1.1  cgd                 p++;
    555  1.1  cgd         return(p);
    556  1.1  cgd }
    557  1.1  cgd 
    558  1.1  cgd 
    559  1.1  cgd /* Check if string is actually a number */
    560  1.1  cgd 
    561  1.1  cgd isnumber(string)
    562  1.1  cgd char *string;
    563  1.1  cgd {
    564  1.1  cgd         while (*string != '\0') {
    565  1.1  cgd             if (*string < '0' || *string > '9') return(0);
    566  1.1  cgd             string++;
    567  1.1  cgd         }
    568  1.1  cgd         return(1);
    569  1.1  cgd }
    570  1.1  cgd 
    571  1.1  cgd #if !defined(__SABER__) && !defined(lint) && !defined(NO_WHAT_STRINGS)
    572  1.2  cgd static char *what_string = "@(#)newsyslog.c\t$Revision: 1.2 $ $Date: 1993/05/21 14:47:30 $ $Locker:  $";
    573  1.1  cgd #endif
    574  1.1  cgd 
    575  1.1  cgd /*
    576  1.1  cgd  * HISTORY
    577  1.1  cgd  * $Log: newsyslog.c,v $
    578  1.2  cgd  * Revision 1.2  1993/05/21 14:47:30  cgd
    579  1.2  cgd  * use the correct (or so john brezak says) copyright.
    580  1.2  cgd  *
    581  1.1  cgd  * Revision 1.1  1993/05/21  14:44:02  cgd
    582  1.1  cgd  * initial import of this log-rotation program to NetBSD
    583  1.1  cgd  *
    584  1.1  cgd  * Revision 3.0.2.2  1993/02/06  04:14:51  brezak
    585  1.1  cgd  * 	Fix up rcsid.
    586  1.1  cgd  * 	[1993/02/06  04:14:03  brezak]
    587  1.1  cgd  *
    588  1.1  cgd  * Revision 3.0  1993/01/01  07:39:17  ede
    589  1.1  cgd  * 	Initial revision for OSF/1 R1.3
    590  1.1  cgd  *
    591  1.1  cgd  * Revision 1.2  1991/08/16  09:50:26  devrcs
    592  1.1  cgd  * 	From John Brezak, brezak (at) apollo.com, originally from Project Athena
    593  1.1  cgd  * 	[91/07/24  09:33:18  meissner]
    594            *
    595            * $EndLog$
    596            */
    597