httpd: support for "I:index.xml" syntax (Peter Korsgaard <jacmet@uclibc.org>)
[oweals/busybox.git] / miscutils / crond.c
index 7e50b61c7b54a86985a545573f8ecccbabaa0480..8ee7e5837174d3af47ad6e904eef0b0170586197 100644 (file)
@@ -1,39 +1,18 @@
+/* vi: set sw=4 ts=4: */
 /*
  * crond -d[#] -c <crondir> -f -b
  *
  * run as root, but NOT setuid root
  *
  * Copyright 1994 Matthew Dillon (dillon@apollo.west.oic.com)
- * May be distributed under the GNU General Public License
+ * (version 2.3.2)
+ * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002
  *
- * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002 to be used in busybox
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
-#define VERSION "2.3.2"
-
-#undef FEATURE_DEBUG_OPT
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdarg.h>
-#include <string.h>
-#include <errno.h>
-#include <time.h>
-#include <dirent.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <syslog.h>
-#include <signal.h>
-#include <getopt.h>
-#include <sys/ioctl.h>
-#include <sys/wait.h>
-#include <sys/stat.h>
-#include <sys/resource.h>
-
-#include "busybox.h"
-
-#define arysize(ary)    (sizeof(ary)/sizeof((ary)[0]))
+#include <sys/syslog.h>
+#include "libbb.h"
 
 #ifndef CRONTABS
 #define CRONTABS        "/var/spool/cron/crontabs"
@@ -42,7 +21,7 @@
 #define TMPDIR          "/var/spool/cron"
 #endif
 #ifndef SENDMAIL
-#define SENDMAIL        "/usr/sbin/sendmail"
+#define SENDMAIL        "sendmail"
 #endif
 #ifndef SENDMAIL_ARGS
 #define SENDMAIL_ARGS   "-ti", "oem"
@@ -82,11 +61,11 @@ typedef struct CronLine {
 
 #define DaemonUid 0
 
-#ifdef FEATURE_DEBUG_OPT
-static short DebugOpt;
+#if ENABLE_DEBUG_CROND_OPTION
+static unsigned DebugOpt;
 #endif
 
-static short LogLevel = 8;
+static unsigned LogLevel = 8;
 static const char *LogFile;
 static const char *CDir = CRONTABS;
 
@@ -100,7 +79,7 @@ static int CheckJobs(void);
 
 static void RunJob(const char *user, CronLine * line);
 
-#ifdef CONFIG_FEATURE_CROND_CALL_SENDMAIL
+#if ENABLE_FEATURE_CROND_CALL_SENDMAIL
 static void EndJob(const char *user, CronLine * line);
 #else
 #define EndJob(user, line)  line->cl_Pid = 0
@@ -124,7 +103,7 @@ static void crondlog(const char *ctl, ...)
        fmt = ctl + 1;
        if (level >= LogLevel) {
 
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                if (DebugOpt) {
                        vfprintf(stderr, fmt, va);
                } else
@@ -132,14 +111,14 @@ static void crondlog(const char *ctl, ...)
                if (LogFile == 0) {
                        vsyslog(type, fmt, va);
                } else {
+#if !ENABLE_DEBUG_CROND_OPTION
                        int logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600);
+#else
+                       int logfd = open3_or_warn(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600);
+#endif
                        if (logfd >= 0) {
                                vdprintf(logfd, fmt, va);
                                close(logfd);
-#ifdef FEATURE_DEBUG_OPT
-                       } else {
-                               bb_perror_msg("Can't open log file");
-#endif
                        }
                }
        }
@@ -149,85 +128,50 @@ static void crondlog(const char *ctl, ...)
        }
 }
 
+int crond_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int crond_main(int ac, char **av)
 {
-       unsigned long opt;
+       unsigned opt;
        char *lopt, *Lopt, *copt;
+       USE_DEBUG_CROND_OPTION(char *dopt;)
 
-#ifdef FEATURE_DEBUG_OPT
-       char *dopt;
-
-       bb_opt_complementally = "f-b:b-f:S-L:L-S:d-l";
-#else
-       bb_opt_complementally = "f-b:b-f:S-L:L-S";
-#endif
-
+       opt_complementary = "f-b:b-f:S-L:L-S" USE_DEBUG_CROND_OPTION(":d-l");
        opterr = 0;                     /* disable getopt 'errors' message. */
-       opt = bb_getopt_ulflags(ac, av, "l:L:fbSc:"
-#ifdef FEATURE_DEBUG_OPT
-                                                       "d:"
-#endif
-                                                       , &lopt, &Lopt, &copt
-#ifdef FEATURE_DEBUG_OPT
-                                                       , &dopt
-#endif
-               );
-       if (opt & 1) {
-               LogLevel = atoi(lopt);
-       }
-       if (opt & 2) {
-               if (*Lopt != 0) {
+       opt = getopt32(av, "l:L:fbSc:" USE_DEBUG_CROND_OPTION("d:"),
+                       &lopt, &Lopt, &copt USE_DEBUG_CROND_OPTION(, &dopt));
+       if (opt & 1) /* -l */
+               LogLevel = xatou(lopt);
+       if (opt & 2) /* -L */
+               if (*Lopt)
                        LogFile = Lopt;
-               }
-       }
-       if (opt & 32) {
-               if (*copt != 0) {
+       if (opt & 32) /* -c */
+               if (*copt)
                        CDir = copt;
-               }
-       }
-#ifdef FEATURE_DEBUG_OPT
-       if (opt & 64) {
-               DebugOpt = atoi(dopt);
+#if ENABLE_DEBUG_CROND_OPTION
+       if (opt & 64) { /* -d */
+               DebugOpt = xatou(dopt);
                LogLevel = 0;
        }
 #endif
 
-       /*
-        * change directory
-        */
-
-       if (chdir(CDir) != 0) {
-               bb_perror_msg_and_die("%s", CDir);
-       }
-       signal(SIGHUP, SIG_IGN);        /* hmm.. but, if kill -HUP original
-                                                                * version - his died. ;(
-                                                                */
-       /*
-        * close stdin and stdout, stderr.
+       /* close stdin and stdout, stderr.
         * close unused descriptors -  don't need.
         * optional detach from controlling terminal
         */
+       if (!(opt & 4))
+               bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, av);
 
-       if (!(opt & 4)) {
-#if defined(__uClinux__)
-               /* reexec for vfork() do continue parent */
-               vfork_daemon_rexec(1, 0, ac, av, "-f");
-#else                                                  /* uClinux */
-               if (daemon(1, 0) < 0) {
-                       bb_perror_msg_and_die("daemon");
-               }
-#endif                                                 /* uClinux */
-       }
+       xchdir(CDir);
+       signal(SIGHUP, SIG_IGN); /* ? original crond dies on HUP... */
 
-       (void) startlogger();   /* need if syslog mode selected */
+       startlogger();  /* need if syslog mode selected */
 
        /*
         * main loop - synchronize to 1 second after the minute, minimum sleep
         *             of 1 second.
         */
-
-       crondlog("\011%s " VERSION " dillon, started, log level %d\n",
-                        bb_applet_name, LogLevel);
+       crondlog("\011%s " BB_VER " started, log level %d\n",
+                        applet_name, LogLevel);
 
        SynchronizeDir();
 
@@ -238,6 +182,7 @@ int crond_main(int ac, char **av)
                int rescan = 60;
                short sleep_time = 60;
 
+               write_pidfile("/var/run/crond.pid");
                for (;;) {
                        sleep((sleep_time + 1) - (short) (time(NULL) % sleep_time));
 
@@ -266,7 +211,7 @@ int crond_main(int ac, char **av)
                                SynchronizeDir();
                        }
                        CheckUpdates();
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                        if (DebugOpt)
                                crondlog("\005Wakeup dt=%d\n", dt);
 #endif
@@ -286,23 +231,8 @@ int crond_main(int ac, char **av)
                        }
                }
        }
-       /* not reached */
-}
-
-#if defined(FEATURE_DEBUG_OPT) || defined(CONFIG_FEATURE_CROND_CALL_SENDMAIL)
-/*
-    write to temp file..
-*/
-static void fdprintf(int fd, const char *ctl, ...)
-{
-       va_list va;
-
-       va_start(va, ctl);
-       vdprintf(fd, ctl, va);
-       va_end(va);
+       return 0; /* not reached */
 }
-#endif
-
 
 static int ChangeUser(const char *user)
 {
@@ -315,7 +245,7 @@ static int ChangeUser(const char *user)
        pas = getpwnam(user);
        if (pas == 0) {
                crondlog("\011failed to get uid for %s", user);
-               return (-1);
+               return -1;
        }
        setenv("USER", pas->pw_name, 1);
        setenv("HOME", pas->pw_dir, 1);
@@ -327,94 +257,56 @@ static int ChangeUser(const char *user)
        err_msg = change_identity_e2str(pas);
        if (err_msg) {
                crondlog("\011%s for user %s", err_msg, user);
-               return (-1);
+               return -1;
        }
        if (chdir(pas->pw_dir) < 0) {
                crondlog("\011chdir failed: %s: %m", pas->pw_dir);
                if (chdir(TMPDIR) < 0) {
                        crondlog("\011chdir failed: %s: %m", TMPDIR);
-                       return (-1);
+                       return -1;
                }
        }
-       return (pas->pw_uid);
+       return pas->pw_uid;
 }
 
 static void startlogger(void)
 {
        if (LogFile == 0) {
-               openlog(bb_applet_name, LOG_CONS | LOG_PID, LOG_CRON);
+               openlog(applet_name, LOG_CONS | LOG_PID, LOG_CRON);
        }
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
        else {                          /* test logfile */
                int logfd;
 
-               if ((logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600)) >= 0) {
+               logfd = open3_or_warn(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600);
+               if (logfd >= 0) {
                        close(logfd);
-               } else {
-                       bb_perror_msg("Failed to open log file '%s' reason", LogFile);
                }
        }
 #endif
 }
 
 
-static const char *const DowAry[] = {
-       "sun",
-       "mon",
-       "tue",
-       "wed",
-       "thu",
-       "fri",
-       "sat",
-
-       "Sun",
-       "Mon",
-       "Tue",
-       "Wed",
-       "Thu",
-       "Fri",
-       "Sat",
-       NULL
-};
-
-static const char *const MonAry[] = {
-       "jan",
-       "feb",
-       "mar",
-       "apr",
-       "may",
-       "jun",
-       "jul",
-       "aug",
-       "sep",
-       "oct",
-       "nov",
-       "dec",
-
-       "Jan",
-       "Feb",
-       "Mar",
-       "Apr",
-       "May",
-       "Jun",
-       "Jul",
-       "Aug",
-       "Sep",
-       "Oct",
-       "Nov",
-       "Dec",
-       NULL
-};
+static const char DowAry[] ALIGN1 =
+       "sun""mon""tue""wed""thu""fri""sat"
+       /* "Sun""Mon""Tue""Wed""Thu""Fri""Sat" */
+;
+
+static const char MonAry[] ALIGN1 =
+       "jan""feb""mar""apr""may""jun""jul""aug""sep""oct""nov""dec"
+       /* "Jan""Feb""Mar""Apr""May""Jun""Jul""Aug""Sep""Oct""Nov""Dec" */
+;
 
 static char *ParseField(char *user, char *ary, int modvalue, int off,
-                                               const char *const *names, char *ptr)
+                               const char *names, char *ptr)
+/* 'names' is a pointer to a set of 3-char abbreviations */
 {
        char *base = ptr;
        int n1 = -1;
        int n2 = -1;
 
        if (base == NULL) {
-               return (NULL);
+               return NULL;
        }
 
        while (*ptr != ' ' && *ptr != '\t' && *ptr != '\n') {
@@ -437,27 +329,26 @@ static char *ParseField(char *user, char *ary, int modvalue, int off,
                } else if (names) {
                        int i;
 
-                       for (i = 0; names[i]; ++i) {
-                               if (strncmp(ptr, names[i], strlen(names[i])) == 0) {
+                       for (i = 0; names[i]; i += 3) {
+                               /* was using strncmp before... */
+                               if (strncasecmp(ptr, &names[i], 3) == 0) {
+                                       ptr += 3;
+                                       if (n1 < 0) {
+                                               n1 = i / 3;
+                                       } else {
+                                               n2 = i / 3;
+                                       }
+                                       skip = 1;
                                        break;
                                }
                        }
-                       if (names[i]) {
-                               ptr += strlen(names[i]);
-                               if (n1 < 0) {
-                                       n1 = i;
-                               } else {
-                                       n2 = i;
-                               }
-                               skip = 1;
-                       }
                }
 
                /* handle optional range '-' */
 
                if (skip == 0) {
                        crondlog("\111failed user %s parsing %s\n", user, base);
-                       return (NULL);
+                       return NULL;
                }
                if (*ptr == '-' && n2 < 0) {
                        ++ptr;
@@ -497,7 +388,7 @@ static char *ParseField(char *user, char *ary, int modvalue, int off,
 
                        if (failsafe == 0) {
                                crondlog("\111failed user %s parsing %s\n", user, base);
-                               return (NULL);
+                               return NULL;
                        }
                }
                if (*ptr != ',') {
@@ -510,13 +401,13 @@ static char *ParseField(char *user, char *ary, int modvalue, int off,
 
        if (*ptr != ' ' && *ptr != '\t' && *ptr != '\n') {
                crondlog("\111failed user %s parsing %s\n", user, base);
-               return (NULL);
+               return NULL;
        }
 
        while (*ptr == ' ' || *ptr == '\t' || *ptr == '\n') {
                ++ptr;
        }
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
        if (DebugOpt) {
                int i;
 
@@ -527,7 +418,7 @@ static char *ParseField(char *user, char *ary, int modvalue, int off,
        }
 #endif
 
-       return (ptr);
+       return ptr;
 }
 
 static void FixDayDow(CronLine * line)
@@ -536,13 +427,13 @@ static void FixDayDow(CronLine * line)
        int weekUsed = 0;
        int daysUsed = 0;
 
-       for (i = 0; i < (int)(arysize(line->cl_Dow)); ++i) {
+       for (i = 0; i < (int)(ARRAY_SIZE(line->cl_Dow)); ++i) {
                if (line->cl_Dow[i] == 0) {
                        weekUsed = 1;
                        break;
                }
        }
-       for (i = 0; i < (int)(arysize(line->cl_Days)); ++i) {
+       for (i = 0; i < (int)(ARRAY_SIZE(line->cl_Days)); ++i) {
                if (line->cl_Days[i] == 0) {
                        daysUsed = 1;
                        break;
@@ -579,7 +470,7 @@ static void SynchronizeFile(const char *fileName)
                        struct stat sbuf;
 
                        if (fstat(fileno(fi), &sbuf) == 0 && sbuf.st_uid == DaemonUid) {
-                               CronFile *file = calloc(1, sizeof(CronFile));
+                               CronFile *file = xzalloc(sizeof(CronFile));
                                CronLine **pline;
 
                                file->cf_User = strdup(fileName);
@@ -598,7 +489,7 @@ static void SynchronizeFile(const char *fileName)
                                        }
                                        memset(&line, 0, sizeof(line));
 
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                                        if (DebugOpt) {
                                                crondlog("\111User %s Entry %s\n", fileName, buf);
                                        }
@@ -623,13 +514,13 @@ static void SynchronizeFile(const char *fileName)
 
                                        FixDayDow(&line);
 
-                                       *pline = calloc(1, sizeof(CronLine));
+                                       *pline = xzalloc(sizeof(CronLine));
                                        **pline = line;
 
                                        /* copy command */
                                        (*pline)->cl_Shell = strdup(ptr);
 
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                                        if (DebugOpt) {
                                                crondlog("\111    Command %s\n", ptr);
                                        }
@@ -691,7 +582,7 @@ static void SynchronizeDir(void)
 
        remove(CRONUPDATE);
        if (chdir(CDir) < 0) {
-               crondlog("\311unable to find %s\n", CDir);
+               crondlog("\311cannot find %s\n", CDir);
        }
        {
                DIR *dir = opendir(".");
@@ -710,7 +601,7 @@ static void SynchronizeDir(void)
                        }
                        closedir(dir);
                } else {
-                       crondlog("\311Unable to open current dir!\n");
+                       crondlog("\311cannot open current dir!\n");
                }
        }
 }
@@ -781,21 +672,21 @@ static int TestJobs(time_t t1, time_t t2)
                        CronLine *line;
 
                        for (file = FileBase; file; file = file->cf_Next) {
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                                if (DebugOpt)
                                        crondlog("\005FILE %s:\n", file->cf_User);
 #endif
                                if (file->cf_Deleted)
                                        continue;
                                for (line = file->cf_LineBase; line; line = line->cl_Next) {
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                                        if (DebugOpt)
                                                crondlog("\005    LINE %s\n", line->cl_Shell);
 #endif
                                        if (line->cl_Mins[tp->tm_min] && line->cl_Hrs[tp->tm_hour] &&
                                                (line->cl_Days[tp->tm_mday] || line->cl_Dow[tp->tm_wday])
                                                && line->cl_Mons[tp->tm_mon]) {
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                                                if (DebugOpt) {
                                                        crondlog("\005    JobToDo: %d %s\n",
                                                                line->cl_Pid, line->cl_Shell);
@@ -814,7 +705,7 @@ static int TestJobs(time_t t1, time_t t2)
                        }
                }
        }
-       return (nJobs);
+       return nJobs;
 }
 
 static void RunJobs(void)
@@ -880,11 +771,11 @@ static int CheckJobs(void)
                }
                nStillRunning += file->cf_Running;
        }
-       return (nStillRunning);
+       return nStillRunning;
 }
 
 
-#ifdef CONFIG_FEATURE_CROND_CALL_SENDMAIL
+#if ENABLE_FEATURE_CROND_CALL_SENDMAIL
 static void
 ForkJob(const char *user, CronLine * line, int mailFd,
                const char *prog, const char *cmd, const char *arg, const char *mailf)
@@ -901,7 +792,7 @@ ForkJob(const char *user, CronLine * line, int mailFd,
                if (ChangeUser(user) < 0) {
                        exit(0);
                }
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                if (DebugOpt) {
                        crondlog("\005Child Running %s\n", prog);
                }
@@ -913,14 +804,14 @@ ForkJob(const char *user, CronLine * line, int mailFd,
                        close(mailFd);
                }
                execl(prog, prog, cmd, arg, NULL);
-               crondlog("\024unable to exec, user %s cmd %s %s %s\n", user, prog, cmd, arg);
+               crondlog("\024cannot exec, user %s cmd %s %s %s\n", user, prog, cmd, arg);
                if (mailf) {
                        fdprintf(1, "Exec failed: %s -c %s\n", prog, arg);
                }
                exit(0);
        } else if (pid < 0) {
                /* FORK FAILED */
-               crondlog("\024couldn't fork, user %s\n", user);
+               crondlog("\024cannot fork, user %s\n", user);
                line->cl_Pid = 0;
                if (mailf) {
                        remove(mailf);
@@ -961,9 +852,9 @@ static void RunJob(const char *user, CronLine * line)
                line->cl_MailFlag = 1;
                fdprintf(mailFd, "To: %s\nSubject: cron: %s\n\n", user,
                        line->cl_Shell);
-               line->cl_MailPos = lseek(mailFd, 0, 1);
+               line->cl_MailPos = lseek(mailFd, 0, SEEK_CUR);
        } else {
-               crondlog("\024unable to create mail file user %s file %s, output to /dev/null\n", user, mailFile);
+               crondlog("\024cannot create mail file user %s file %s, output to /dev/null\n", user, mailFile);
        }
 
        ForkJob(user, line, mailFd, DEFAULT_SHELL, "-c", line->cl_Shell, mailFile);
@@ -1010,8 +901,10 @@ static void EndJob(const char *user, CronLine * line)
                return;
        }
 
-       if (fstat(mailFd, &sbuf) < 0 || sbuf.st_uid != DaemonUid ||     sbuf.st_nlink != 0 ||
-               sbuf.st_size == line->cl_MailPos || !S_ISREG(sbuf.st_mode)) {
+       if (fstat(mailFd, &sbuf) < 0 || sbuf.st_uid != DaemonUid
+        || sbuf.st_nlink != 0 || sbuf.st_size == line->cl_MailPos
+        || !S_ISREG(sbuf.st_mode)
+       ) {
                close(mailFd);
                return;
        }
@@ -1033,21 +926,21 @@ static void RunJob(const char *user, CronLine * line)
                if (ChangeUser(user) < 0) {
                        exit(0);
                }
-#ifdef FEATURE_DEBUG_OPT
+#if ENABLE_DEBUG_CROND_OPTION
                if (DebugOpt) {
                        crondlog("\005Child Running %s\n", DEFAULT_SHELL);
                }
 #endif
 
                execl(DEFAULT_SHELL, DEFAULT_SHELL, "-c", line->cl_Shell, NULL);
-               crondlog("\024unable to exec, user %s cmd %s -c %s\n", user,
+               crondlog("\024cannot exec, user %s cmd %s -c %s\n", user,
                                 DEFAULT_SHELL, line->cl_Shell);
                exit(0);
        } else if (pid < 0) {
                /* FORK FAILED */
-               crondlog("\024couldn't fork, user %s\n", user);
+               crondlog("\024cannot, user %s\n", user);
                pid = 0;
        }
        line->cl_Pid = pid;
 }
-#endif                                                 /* CONFIG_FEATURE_CROND_CALL_SENDMAIL */
+#endif /* ENABLE_FEATURE_CROND_CALL_SENDMAIL */