Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * crond -d[#] -c <crondir> -f -b |
| 3 | * |
| 4 | * run as root, but NOT setuid root |
| 5 | * |
| 6 | * Copyright 1994 Matthew Dillon (dillon@apollo.west.oic.com) |
| 7 | * May be distributed under the GNU General Public License |
| 8 | * |
| 9 | * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002 to be used in busybox |
| 10 | */ |
| 11 | |
| 12 | #define VERSION "2.3.2" |
| 13 | |
| 14 | #undef FEATURE_DEBUG_OPT |
| 15 | |
| 16 | |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <stdarg.h> |
| 20 | #include <string.h> |
| 21 | #include <errno.h> |
| 22 | #include <time.h> |
| 23 | #include <dirent.h> |
| 24 | #include <fcntl.h> |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 25 | #include <unistd.h> |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 26 | #include <syslog.h> |
| 27 | #include <signal.h> |
| 28 | #include <getopt.h> |
| 29 | #include <sys/ioctl.h> |
| 30 | #include <sys/wait.h> |
| 31 | #include <sys/stat.h> |
| 32 | #include <sys/resource.h> |
| 33 | |
| 34 | #include "busybox.h" |
| 35 | |
| 36 | #define arysize(ary) (sizeof(ary)/sizeof((ary)[0])) |
| 37 | |
| 38 | #ifndef CRONTABS |
| 39 | #define CRONTABS "/var/spool/cron/crontabs" |
| 40 | #endif |
| 41 | #ifndef TMPDIR |
| 42 | #define TMPDIR "/var/spool/cron" |
| 43 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 44 | #ifndef SENDMAIL |
| 45 | #define SENDMAIL "/usr/sbin/sendmail" |
| 46 | #endif |
| 47 | #ifndef SENDMAIL_ARGS |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 48 | #define SENDMAIL_ARGS "-ti", "oem" |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 49 | #endif |
| 50 | #ifndef CRONUPDATE |
| 51 | #define CRONUPDATE "cron.update" |
| 52 | #endif |
| 53 | #ifndef MAXLINES |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 54 | #define MAXLINES 256 /* max lines in non-root crontabs */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 55 | #endif |
| 56 | |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 57 | typedef struct CronFile { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 58 | struct CronFile *cf_Next; |
| 59 | struct CronLine *cf_LineBase; |
| 60 | char *cf_User; /* username */ |
| 61 | int cf_Ready; /* bool: one or more jobs ready */ |
| 62 | int cf_Running; /* bool: one or more jobs running */ |
| 63 | int cf_Deleted; /* marked for deletion, ignore */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 64 | } CronFile; |
| 65 | |
| 66 | typedef struct CronLine { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 67 | struct CronLine *cl_Next; |
| 68 | char *cl_Shell; /* shell command */ |
| 69 | pid_t cl_Pid; /* running pid, 0, or armed (-1) */ |
| 70 | int cl_MailFlag; /* running pid is for mail */ |
| 71 | int cl_MailPos; /* 'empty file' size */ |
| 72 | char cl_Mins[60]; /* 0-59 */ |
| 73 | char cl_Hrs[24]; /* 0-23 */ |
| 74 | char cl_Days[32]; /* 1-31 */ |
| 75 | char cl_Mons[12]; /* 0-11 */ |
| 76 | char cl_Dow[7]; /* 0-6, beginning sunday */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 77 | } CronLine; |
| 78 | |
| 79 | #define RUN_RANOUT 1 |
| 80 | #define RUN_RUNNING 2 |
| 81 | #define RUN_FAILED 3 |
| 82 | |
| 83 | #define DaemonUid 0 |
| 84 | |
| 85 | #ifdef FEATURE_DEBUG_OPT |
| 86 | static short DebugOpt; |
| 87 | #endif |
| 88 | |
| 89 | static short LogLevel = 8; |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 90 | static const char *LogFile; |
| 91 | static const char *CDir = CRONTABS; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 92 | |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 93 | static void startlogger(void); |
| 94 | |
| 95 | static void CheckUpdates(void); |
| 96 | static void SynchronizeDir(void); |
| 97 | static int TestJobs(time_t t1, time_t t2); |
| 98 | static void RunJobs(void); |
| 99 | static int CheckJobs(void); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 100 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 101 | static void RunJob(const char *user, CronLine * line); |
| 102 | |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 103 | #ifdef CONFIG_FEATURE_CROND_CALL_SENDMAIL |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 104 | static void EndJob(const char *user, CronLine * line); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 105 | #else |
| 106 | #define EndJob(user, line) line->cl_Pid = 0 |
| 107 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 108 | |
| 109 | static void DeleteFile(const char *userName); |
| 110 | |
| 111 | static CronFile *FileBase; |
| 112 | |
| 113 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 114 | static void crondlog(const char *ctl, ...) |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 115 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 116 | va_list va; |
| 117 | const char *fmt; |
| 118 | int level = (int) (ctl[0] & 0xf); |
| 119 | int type = level == 20 ? |
| 120 | LOG_ERR : ((ctl[0] & 0100) ? LOG_WARNING : LOG_NOTICE); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 121 | |
| 122 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 123 | va_start(va, ctl); |
| 124 | fmt = ctl + 1; |
| 125 | if (level >= LogLevel) { |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 126 | |
| 127 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 128 | if (DebugOpt) { |
| 129 | vfprintf(stderr, fmt, va); |
| 130 | } else |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 131 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 132 | if (LogFile == 0) { |
| 133 | vsyslog(type, fmt, va); |
| 134 | } else { |
| 135 | int logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 600); |
| 136 | if (logfd >= 0) { |
| 137 | vdprintf(logfd, fmt, va); |
| 138 | close(logfd); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 139 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 140 | } else { |
| 141 | bb_perror_msg("Can't open log file"); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 142 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 143 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 144 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 145 | } |
| 146 | va_end(va); |
| 147 | if (ctl[0] & 0200) { |
| 148 | exit(20); |
| 149 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 152 | int crond_main(int ac, char **av) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 153 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 154 | unsigned long opt; |
| 155 | char *lopt, *Lopt, *copt; |
| 156 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 157 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 158 | char *dopt; |
| 159 | |
| 160 | bb_opt_complementaly = "f-b:b-f:S-L:L-S:d-l"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 161 | #else |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 162 | bb_opt_complementaly = "f-b:b-f:S-L:L-S"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 163 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 164 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 165 | opterr = 0; /* disable getopt 'errors' message. */ |
| 166 | opt = bb_getopt_ulflags(ac, av, "l:L:fbSc:" |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 167 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 168 | "d:" |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 169 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 170 | , &lopt, &Lopt, &copt |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 171 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 172 | , &dopt |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 173 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 174 | ); |
| 175 | if (opt & 1) { |
| 176 | LogLevel = atoi(lopt); |
| 177 | } |
| 178 | if (opt & 2) { |
| 179 | if (*Lopt != 0) { |
| 180 | LogFile = Lopt; |
| 181 | } |
| 182 | } |
| 183 | if (opt & 32) { |
| 184 | if (*copt != 0) { |
| 185 | CDir = copt; |
| 186 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 187 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 188 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 189 | if (opt & 64) { |
| 190 | DebugOpt = atoi(dopt); |
| 191 | LogLevel = 0; |
| 192 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 193 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 194 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 195 | /* |
| 196 | * change directory |
| 197 | */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 198 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 199 | if (chdir(CDir) != 0) { |
| 200 | bb_perror_msg_and_die("%s", CDir); |
| 201 | } |
| 202 | signal(SIGHUP, SIG_IGN); /* hmm.. but, if kill -HUP original |
| 203 | * version - his died. ;( |
| 204 | */ |
| 205 | /* |
| 206 | * close stdin and stdout, stderr. |
| 207 | * close unused descriptors - don't need. |
| 208 | * optional detach from controlling terminal |
| 209 | */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 210 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 211 | if (!(opt & 4)) { |
Russ Dill | a1fece2 | 2003-12-15 21:57:44 +0000 | [diff] [blame] | 212 | #if defined(__uClinux__) |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 213 | /* reexec for vfork() do continue parent */ |
| 214 | vfork_daemon_rexec(1, 0, ac, av, "-f"); |
| 215 | #else /* uClinux */ |
| 216 | if (daemon(1, 0) < 0) { |
| 217 | bb_perror_msg_and_die("daemon"); |
| 218 | } |
| 219 | #endif /* uClinux */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 220 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 221 | |
| 222 | (void) startlogger(); /* need if syslog mode selected */ |
| 223 | |
| 224 | /* |
| 225 | * main loop - synchronize to 1 second after the minute, minimum sleep |
| 226 | * of 1 second. |
| 227 | */ |
| 228 | |
| 229 | crondlog("\011%s " VERSION " dillon, started, log level %d\n", |
| 230 | bb_applet_name, LogLevel); |
| 231 | |
| 232 | SynchronizeDir(); |
| 233 | |
| 234 | { |
| 235 | time_t t1 = time(NULL); |
| 236 | time_t t2; |
| 237 | long dt; |
| 238 | short rescan = 60; |
| 239 | short sleep_time = 60; |
| 240 | |
| 241 | for (;;) { |
| 242 | sleep((sleep_time + 1) - (short) (time(NULL) % sleep_time)); |
| 243 | |
| 244 | t2 = time(NULL); |
| 245 | dt = t2 - t1; |
| 246 | |
| 247 | /* |
| 248 | * The file 'cron.update' is checked to determine new cron |
| 249 | * jobs. The directory is rescanned once an hour to deal |
| 250 | * with any screwups. |
| 251 | * |
| 252 | * check for disparity. Disparities over an hour either way |
| 253 | * result in resynchronization. A reverse-indexed disparity |
| 254 | * less then an hour causes us to effectively sleep until we |
| 255 | * match the original time (i.e. no re-execution of jobs that |
| 256 | * have just been run). A forward-indexed disparity less then |
| 257 | * an hour causes intermediate jobs to be run, but only once |
| 258 | * in the worst case. |
| 259 | * |
| 260 | * when running jobs, the inequality used is greater but not |
| 261 | * equal to t1, and less then or equal to t2. |
| 262 | */ |
| 263 | |
| 264 | if (--rescan == 0) { |
| 265 | rescan = 60; |
| 266 | SynchronizeDir(); |
| 267 | } |
| 268 | CheckUpdates(); |
| 269 | #ifdef FEATURE_DEBUG_OPT |
| 270 | if (DebugOpt) |
| 271 | crondlog("\005Wakeup dt=%d\n", dt); |
| 272 | #endif |
| 273 | if (dt < -60 * 60 || dt > 60 * 60) { |
| 274 | t1 = t2; |
| 275 | crondlog("\111time disparity of %d minutes detected\n", dt / 60); |
| 276 | } else if (dt > 0) { |
| 277 | TestJobs(t1, t2); |
| 278 | RunJobs(); |
| 279 | sleep(5); |
| 280 | if (CheckJobs() > 0) { |
| 281 | sleep_time = 10; |
| 282 | } else { |
| 283 | sleep_time = 60; |
| 284 | } |
| 285 | t1 = t2; |
| 286 | } |
| 287 | } |
| 288 | } |
| 289 | /* not reached */ |
Glenn L McGrath | b89fcd4 | 2003-12-23 07:21:33 +0000 | [diff] [blame] | 290 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 291 | |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 292 | #if defined(FEATURE_DEBUG_OPT) || defined(CONFIG_FEATURE_CROND_CALL_SENDMAIL) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 293 | /* |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 294 | write to temp file.. |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 295 | */ |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 296 | static void fdprintf(int fd, const char *ctl, ...) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 297 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 298 | va_list va; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 299 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 300 | va_start(va, ctl); |
| 301 | vdprintf(fd, ctl, va); |
| 302 | va_end(va); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 303 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 304 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 305 | |
| 306 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 307 | static int ChangeUser(const char *user) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 308 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 309 | struct passwd *pas; |
| 310 | const char *err_msg; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 311 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 312 | /* |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 313 | * Obtain password entry and change privileges |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 314 | */ |
| 315 | pas = getpwnam(user); |
| 316 | if (pas == 0) { |
| 317 | crondlog("\011failed to get uid for %s", user); |
| 318 | return (-1); |
| 319 | } |
| 320 | setenv("USER", pas->pw_name, 1); |
| 321 | setenv("HOME", pas->pw_dir, 1); |
| 322 | setenv("SHELL", DEFAULT_SHELL, 1); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 323 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 324 | /* |
| 325 | * Change running state to the user in question |
| 326 | */ |
| 327 | err_msg = change_identity_e2str(pas); |
| 328 | if (err_msg) { |
| 329 | crondlog("\011%s for user %s", err_msg, user); |
| 330 | return (-1); |
| 331 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 332 | if (chdir(pas->pw_dir) < 0) { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 333 | crondlog("\011chdir failed: %s: %m", pas->pw_dir); |
| 334 | if (chdir(TMPDIR) < 0) { |
| 335 | crondlog("\011chdir failed: %s: %m", TMPDIR); |
| 336 | return (-1); |
| 337 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 338 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 339 | return (pas->pw_uid); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 342 | static void startlogger(void) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 343 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 344 | if (LogFile == 0) { |
| 345 | openlog(bb_applet_name, LOG_CONS | LOG_PID, LOG_CRON); |
| 346 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 347 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 348 | else { /* test logfile */ |
| 349 | int logfd; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 350 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 351 | if ((logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 600)) >= 0) { |
| 352 | close(logfd); |
| 353 | } else { |
| 354 | bb_perror_msg("Failed to open log file '%s' reason", LogFile); |
| 355 | } |
| 356 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 357 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 361 | static const char *const DowAry[] = { |
| 362 | "sun", |
| 363 | "mon", |
| 364 | "tue", |
| 365 | "wed", |
| 366 | "thu", |
| 367 | "fri", |
| 368 | "sat", |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 369 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 370 | "Sun", |
| 371 | "Mon", |
| 372 | "Tue", |
| 373 | "Wed", |
| 374 | "Thu", |
| 375 | "Fri", |
| 376 | "Sat", |
| 377 | NULL |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 378 | }; |
| 379 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 380 | static const char *const MonAry[] = { |
| 381 | "jan", |
| 382 | "feb", |
| 383 | "mar", |
| 384 | "apr", |
| 385 | "may", |
| 386 | "jun", |
| 387 | "jul", |
| 388 | "aug", |
| 389 | "sep", |
| 390 | "oct", |
| 391 | "nov", |
| 392 | "dec", |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 393 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 394 | "Jan", |
| 395 | "Feb", |
| 396 | "Mar", |
| 397 | "Apr", |
| 398 | "May", |
| 399 | "Jun", |
| 400 | "Jul", |
| 401 | "Aug", |
| 402 | "Sep", |
| 403 | "Oct", |
| 404 | "Nov", |
| 405 | "Dec", |
| 406 | NULL |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 407 | }; |
| 408 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 409 | static char *ParseField(char *user, char *ary, int modvalue, int off, |
| 410 | const char *const *names, char *ptr) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 411 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 412 | char *base = ptr; |
| 413 | int n1 = -1; |
| 414 | int n2 = -1; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 415 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 416 | if (base == NULL) { |
| 417 | return (NULL); |
| 418 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 419 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 420 | while (*ptr != ' ' && *ptr != '\t' && *ptr != '\n') { |
| 421 | int skip = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 422 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 423 | /* Handle numeric digit or symbol or '*' */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 424 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 425 | if (*ptr == '*') { |
| 426 | n1 = 0; /* everything will be filled */ |
| 427 | n2 = modvalue - 1; |
| 428 | skip = 1; |
| 429 | ++ptr; |
| 430 | } else if (*ptr >= '0' && *ptr <= '9') { |
| 431 | if (n1 < 0) { |
| 432 | n1 = strtol(ptr, &ptr, 10) + off; |
| 433 | } else { |
| 434 | n2 = strtol(ptr, &ptr, 10) + off; |
| 435 | } |
| 436 | skip = 1; |
| 437 | } else if (names) { |
| 438 | int i; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 439 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 440 | for (i = 0; names[i]; ++i) { |
| 441 | if (strncmp(ptr, names[i], strlen(names[i])) == 0) { |
| 442 | break; |
| 443 | } |
| 444 | } |
| 445 | if (names[i]) { |
| 446 | ptr += strlen(names[i]); |
| 447 | if (n1 < 0) { |
| 448 | n1 = i; |
| 449 | } else { |
| 450 | n2 = i; |
| 451 | } |
| 452 | skip = 1; |
| 453 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 454 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 455 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 456 | /* handle optional range '-' */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 457 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 458 | if (skip == 0) { |
| 459 | crondlog("\111failed user %s parsing %s\n", user, base); |
| 460 | return (NULL); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 461 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 462 | if (*ptr == '-' && n2 < 0) { |
| 463 | ++ptr; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 464 | continue; |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 465 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 466 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 467 | /* |
| 468 | * collapse single-value ranges, handle skipmark, and fill |
| 469 | * in the character array appropriately. |
| 470 | */ |
| 471 | |
| 472 | if (n2 < 0) { |
| 473 | n2 = n1; |
| 474 | } |
| 475 | if (*ptr == '/') { |
| 476 | skip = strtol(ptr + 1, &ptr, 10); |
| 477 | } |
| 478 | /* |
| 479 | * fill array, using a failsafe is the easiest way to prevent |
| 480 | * an endless loop |
| 481 | */ |
| 482 | |
| 483 | { |
| 484 | int s0 = 1; |
| 485 | int failsafe = 1024; |
| 486 | |
| 487 | --n1; |
| 488 | do { |
| 489 | n1 = (n1 + 1) % modvalue; |
| 490 | |
| 491 | if (--s0 == 0) { |
| 492 | ary[n1 % modvalue] = 1; |
| 493 | s0 = skip; |
| 494 | } |
| 495 | } |
| 496 | while (n1 != n2 && --failsafe); |
| 497 | |
| 498 | if (failsafe == 0) { |
| 499 | crondlog("\111failed user %s parsing %s\n", user, base); |
| 500 | return (NULL); |
| 501 | } |
| 502 | } |
| 503 | if (*ptr != ',') { |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 504 | break; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 505 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 506 | ++ptr; |
| 507 | n1 = -1; |
| 508 | n2 = -1; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 509 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 510 | |
| 511 | if (*ptr != ' ' && *ptr != '\t' && *ptr != '\n') { |
| 512 | crondlog("\111failed user %s parsing %s\n", user, base); |
| 513 | return (NULL); |
| 514 | } |
| 515 | |
| 516 | while (*ptr == ' ' || *ptr == '\t' || *ptr == '\n') { |
| 517 | ++ptr; |
| 518 | } |
| 519 | #ifdef FEATURE_DEBUG_OPT |
| 520 | if (DebugOpt) { |
| 521 | int i; |
| 522 | |
| 523 | for (i = 0; i < modvalue; ++i) { |
| 524 | crondlog("\005%d", ary[i]); |
| 525 | } |
| 526 | crondlog("\005\n"); |
| 527 | } |
| 528 | #endif |
| 529 | |
| 530 | return (ptr); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 533 | static void FixDayDow(CronLine * line) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 534 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 535 | short i; |
| 536 | short weekUsed = 0; |
| 537 | short daysUsed = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 538 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 539 | for (i = 0; i < arysize(line->cl_Dow); ++i) { |
| 540 | if (line->cl_Dow[i] == 0) { |
| 541 | weekUsed = 1; |
| 542 | break; |
| 543 | } |
| 544 | } |
| 545 | for (i = 0; i < arysize(line->cl_Days); ++i) { |
| 546 | if (line->cl_Days[i] == 0) { |
| 547 | daysUsed = 1; |
| 548 | break; |
| 549 | } |
| 550 | } |
| 551 | if (weekUsed && !daysUsed) { |
| 552 | memset(line->cl_Days, 0, sizeof(line->cl_Days)); |
| 553 | } |
| 554 | if (daysUsed && !weekUsed) { |
| 555 | memset(line->cl_Dow, 0, sizeof(line->cl_Dow)); |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | |
| 560 | |
| 561 | static void SynchronizeFile(const char *fileName) |
| 562 | { |
| 563 | int maxEntries = MAXLINES; |
| 564 | int maxLines; |
| 565 | char buf[1024]; |
| 566 | |
| 567 | if (strcmp(fileName, "root") == 0) { |
| 568 | maxEntries = 65535; |
| 569 | } |
| 570 | maxLines = maxEntries * 10; |
| 571 | |
| 572 | if (fileName) { |
| 573 | FILE *fi; |
| 574 | |
| 575 | DeleteFile(fileName); |
| 576 | |
| 577 | fi = fopen(fileName, "r"); |
| 578 | if (fi != NULL) { |
| 579 | struct stat sbuf; |
| 580 | |
| 581 | if (fstat(fileno(fi), &sbuf) == 0 && sbuf.st_uid == DaemonUid) { |
| 582 | CronFile *file = calloc(1, sizeof(CronFile)); |
| 583 | CronLine **pline; |
| 584 | |
| 585 | file->cf_User = strdup(fileName); |
| 586 | pline = &file->cf_LineBase; |
| 587 | |
| 588 | while (fgets(buf, sizeof(buf), fi) != NULL && --maxLines) { |
| 589 | CronLine line; |
| 590 | char *ptr; |
| 591 | |
| 592 | if (buf[0]) { |
| 593 | buf[strlen(buf) - 1] = 0; |
| 594 | } |
| 595 | if (buf[0] == 0 || buf[0] == '#' || buf[0] == ' ' || buf[0] == '\t') { |
| 596 | continue; |
| 597 | } |
| 598 | if (--maxEntries == 0) { |
| 599 | break; |
| 600 | } |
| 601 | memset(&line, 0, sizeof(line)); |
| 602 | |
| 603 | #ifdef FEATURE_DEBUG_OPT |
| 604 | if (DebugOpt) { |
| 605 | crondlog("\111User %s Entry %s\n", fileName, buf); |
| 606 | } |
| 607 | #endif |
| 608 | |
| 609 | /* parse date ranges */ |
| 610 | ptr = ParseField(file->cf_User, line.cl_Mins, 60, 0, NULL, buf); |
| 611 | ptr = ParseField(file->cf_User, line.cl_Hrs, 24, 0, NULL, ptr); |
| 612 | ptr = ParseField(file->cf_User, line.cl_Days, 32, 0, NULL, ptr); |
| 613 | ptr = ParseField(file->cf_User, line.cl_Mons, 12, -1, MonAry, ptr); |
| 614 | ptr = ParseField(file->cf_User, line.cl_Dow, 7, 0, DowAry, ptr); |
| 615 | |
| 616 | /* check failure */ |
| 617 | if (ptr == NULL) { |
| 618 | continue; |
| 619 | } |
| 620 | |
| 621 | /* |
| 622 | * fix days and dow - if one is not * and the other |
| 623 | * is *, the other is set to 0, and vise-versa |
| 624 | */ |
| 625 | |
| 626 | FixDayDow(&line); |
| 627 | |
| 628 | *pline = calloc(1, sizeof(CronLine)); |
| 629 | **pline = line; |
| 630 | |
| 631 | /* copy command */ |
| 632 | (*pline)->cl_Shell = strdup(ptr); |
| 633 | |
| 634 | #ifdef FEATURE_DEBUG_OPT |
| 635 | if (DebugOpt) { |
| 636 | crondlog("\111 Command %s\n", ptr); |
| 637 | } |
| 638 | #endif |
| 639 | |
| 640 | pline = &((*pline)->cl_Next); |
| 641 | } |
| 642 | *pline = NULL; |
| 643 | |
| 644 | file->cf_Next = FileBase; |
| 645 | FileBase = file; |
| 646 | |
| 647 | if (maxLines == 0 || maxEntries == 0) { |
| 648 | crondlog("\111Maximum number of lines reached for user %s\n", fileName); |
| 649 | } |
| 650 | } |
| 651 | fclose(fi); |
| 652 | } |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | static void CheckUpdates(void) |
| 657 | { |
| 658 | FILE *fi; |
| 659 | char buf[256]; |
| 660 | |
| 661 | fi = fopen(CRONUPDATE, "r"); |
| 662 | if (fi != NULL) { |
| 663 | remove(CRONUPDATE); |
| 664 | while (fgets(buf, sizeof(buf), fi) != NULL) { |
| 665 | SynchronizeFile(strtok(buf, " \t\r\n")); |
| 666 | } |
| 667 | fclose(fi); |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | static void SynchronizeDir(void) |
| 672 | { |
| 673 | /* Attempt to delete the database. */ |
| 674 | |
| 675 | for (;;) { |
| 676 | CronFile *file; |
| 677 | |
| 678 | for (file = FileBase; file && file->cf_Deleted; file = file->cf_Next); |
| 679 | if (file == NULL) { |
| 680 | break; |
| 681 | } |
| 682 | DeleteFile(file->cf_User); |
| 683 | } |
| 684 | |
| 685 | /* |
| 686 | * Remove cron update file |
| 687 | * |
| 688 | * Re-chdir, in case directory was renamed & deleted, or otherwise |
| 689 | * screwed up. |
| 690 | * |
| 691 | * scan directory and add associated users |
| 692 | */ |
| 693 | |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 694 | remove(CRONUPDATE); |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 695 | if (chdir(CDir) < 0) { |
| 696 | crondlog("\311unable to find %s\n", CDir); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 697 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 698 | { |
| 699 | DIR *dir = opendir("."); |
| 700 | struct dirent *den; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 701 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 702 | if (dir) { |
| 703 | while ((den = readdir(dir))) { |
| 704 | if (strchr(den->d_name, '.') != NULL) { |
| 705 | continue; |
| 706 | } |
| 707 | if (getpwnam(den->d_name)) { |
| 708 | SynchronizeFile(den->d_name); |
| 709 | } else { |
| 710 | crondlog("\007ignoring %s\n", den->d_name); |
| 711 | } |
| 712 | } |
| 713 | closedir(dir); |
| 714 | } else { |
| 715 | crondlog("\311Unable to open current dir!\n"); |
| 716 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 717 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | |
| 721 | /* |
| 722 | * DeleteFile() - delete user database |
| 723 | * |
| 724 | * Note: multiple entries for same user may exist if we were unable to |
| 725 | * completely delete a database due to running processes. |
| 726 | */ |
| 727 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 728 | static void DeleteFile(const char *userName) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 729 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 730 | CronFile **pfile = &FileBase; |
| 731 | CronFile *file; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 732 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 733 | while ((file = *pfile) != NULL) { |
| 734 | if (strcmp(userName, file->cf_User) == 0) { |
| 735 | CronLine **pline = &file->cf_LineBase; |
| 736 | CronLine *line; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 737 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 738 | file->cf_Running = 0; |
| 739 | file->cf_Deleted = 1; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 740 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 741 | while ((line = *pline) != NULL) { |
| 742 | if (line->cl_Pid > 0) { |
| 743 | file->cf_Running = 1; |
| 744 | pline = &line->cl_Next; |
| 745 | } else { |
| 746 | *pline = line->cl_Next; |
| 747 | free(line->cl_Shell); |
| 748 | free(line); |
| 749 | } |
| 750 | } |
| 751 | if (file->cf_Running == 0) { |
| 752 | *pfile = file->cf_Next; |
| 753 | free(file->cf_User); |
| 754 | free(file); |
| 755 | } else { |
| 756 | pfile = &file->cf_Next; |
| 757 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 758 | } else { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 759 | pfile = &file->cf_Next; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 760 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 761 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /* |
| 765 | * TestJobs() |
| 766 | * |
| 767 | * determine which jobs need to be run. Under normal conditions, the |
| 768 | * period is about a minute (one scan). Worst case it will be one |
| 769 | * hour (60 scans). |
| 770 | */ |
| 771 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 772 | static int TestJobs(time_t t1, time_t t2) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 773 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 774 | short nJobs = 0; |
| 775 | time_t t; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 776 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 777 | /* Find jobs > t1 and <= t2 */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 778 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 779 | for (t = t1 - t1 % 60; t <= t2; t += 60) { |
| 780 | if (t > t1) { |
| 781 | struct tm *tp = localtime(&t); |
| 782 | CronFile *file; |
| 783 | CronLine *line; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 784 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 785 | for (file = FileBase; file; file = file->cf_Next) { |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 786 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 787 | if (DebugOpt) |
| 788 | crondlog("\005FILE %s:\n", file->cf_User); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 789 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 790 | if (file->cf_Deleted) |
| 791 | continue; |
| 792 | for (line = file->cf_LineBase; line; line = line->cl_Next) { |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 793 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 794 | if (DebugOpt) |
| 795 | crondlog("\005 LINE %s\n", line->cl_Shell); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 796 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 797 | if (line->cl_Mins[tp->tm_min] && line->cl_Hrs[tp->tm_hour] && |
| 798 | (line->cl_Days[tp->tm_mday] || line->cl_Dow[tp->tm_wday]) |
| 799 | && line->cl_Mons[tp->tm_mon]) { |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 800 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 801 | if (DebugOpt) { |
| 802 | crondlog("\005 JobToDo: %d %s\n", |
| 803 | line->cl_Pid, line->cl_Shell); |
| 804 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 805 | #endif |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 806 | if (line->cl_Pid > 0) { |
| 807 | crondlog("\010 process already running: %s %s\n", |
| 808 | file->cf_User, line->cl_Shell); |
| 809 | } else if (line->cl_Pid == 0) { |
| 810 | line->cl_Pid = -1; |
| 811 | file->cf_Ready = 1; |
| 812 | ++nJobs; |
| 813 | } |
| 814 | } |
| 815 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 816 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 817 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 818 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 819 | return (nJobs); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 822 | static void RunJobs(void) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 823 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 824 | CronFile *file; |
| 825 | CronLine *line; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 826 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 827 | for (file = FileBase; file; file = file->cf_Next) { |
| 828 | if (file->cf_Ready) { |
| 829 | file->cf_Ready = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 830 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 831 | for (line = file->cf_LineBase; line; line = line->cl_Next) { |
| 832 | if (line->cl_Pid < 0) { |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 833 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 834 | RunJob(file->cf_User, line); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 835 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 836 | crondlog("\010USER %s pid %3d cmd %s\n", |
| 837 | file->cf_User, line->cl_Pid, line->cl_Shell); |
| 838 | if (line->cl_Pid < 0) { |
| 839 | file->cf_Ready = 1; |
| 840 | } |
| 841 | else if (line->cl_Pid > 0) { |
| 842 | file->cf_Running = 1; |
| 843 | } |
| 844 | } |
| 845 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 846 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 847 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | /* |
| 851 | * CheckJobs() - check for job completion |
| 852 | * |
| 853 | * Check for job completion, return number of jobs still running after |
| 854 | * all done. |
| 855 | */ |
| 856 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 857 | static int CheckJobs(void) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 858 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 859 | CronFile *file; |
| 860 | CronLine *line; |
| 861 | int nStillRunning = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 862 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 863 | for (file = FileBase; file; file = file->cf_Next) { |
| 864 | if (file->cf_Running) { |
| 865 | file->cf_Running = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 866 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 867 | for (line = file->cf_LineBase; line; line = line->cl_Next) { |
| 868 | if (line->cl_Pid > 0) { |
| 869 | int status; |
| 870 | int r = wait4(line->cl_Pid, &status, WNOHANG, NULL); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 871 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 872 | if (r < 0 || r == line->cl_Pid) { |
| 873 | EndJob(file->cf_User, line); |
| 874 | if (line->cl_Pid) { |
| 875 | file->cf_Running = 1; |
| 876 | } |
| 877 | } else if (r == 0) { |
| 878 | file->cf_Running = 1; |
| 879 | } |
| 880 | } |
| 881 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 882 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 883 | nStillRunning += file->cf_Running; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 884 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 885 | return (nStillRunning); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 889 | #ifdef CONFIG_FEATURE_CROND_CALL_SENDMAIL |
| 890 | static void |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 891 | ForkJob(const char *user, CronLine * line, int mailFd, |
| 892 | const char *prog, const char *cmd, const char *arg, const char *mailf) |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 893 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 894 | /* Fork as the user in question and run program */ |
| 895 | pid_t pid = fork(); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 896 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 897 | line->cl_Pid = pid; |
| 898 | if (pid == 0) { |
| 899 | /* CHILD */ |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 900 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 901 | /* Change running state to the user in question */ |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 902 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 903 | if (ChangeUser(user) < 0) { |
| 904 | exit(0); |
| 905 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 906 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 907 | if (DebugOpt) { |
| 908 | crondlog("\005Child Running %s\n", prog); |
| 909 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 910 | #endif |
| 911 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 912 | if (mailFd >= 0) { |
| 913 | dup2(mailFd, mailf != NULL); |
| 914 | dup2((mailf ? mailFd : 1), 2); |
| 915 | close(mailFd); |
| 916 | } |
| 917 | execl(prog, prog, cmd, arg, NULL); |
| 918 | crondlog("\024unable to exec, user %s cmd %s %s %s\n", user, prog, cmd, arg); |
| 919 | if (mailf) { |
| 920 | fdprintf(1, "Exec failed: %s -c %s\n", prog, arg); |
| 921 | } |
| 922 | exit(0); |
| 923 | } else if (pid < 0) { |
| 924 | /* FORK FAILED */ |
| 925 | crondlog("\024couldn't fork, user %s\n", user); |
| 926 | line->cl_Pid = 0; |
| 927 | if (mailf) { |
| 928 | remove(mailf); |
| 929 | } |
| 930 | } else if (mailf) { |
| 931 | /* PARENT, FORK SUCCESS |
| 932 | * rename mail-file based on pid of process |
| 933 | */ |
| 934 | char mailFile2[128]; |
| 935 | |
| 936 | snprintf(mailFile2, sizeof(mailFile2), TMPDIR "/cron.%s.%d", user, pid); |
| 937 | rename(mailf, mailFile2); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 938 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 939 | /* |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 940 | * Close the mail file descriptor.. we can't just leave it open in |
| 941 | * a structure, closing it later, because we might run out of descriptors |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 942 | */ |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 943 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 944 | if (mailFd >= 0) { |
| 945 | close(mailFd); |
| 946 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 947 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 948 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 949 | static void RunJob(const char *user, CronLine * line) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 950 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 951 | char mailFile[128]; |
| 952 | int mailFd; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 953 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 954 | line->cl_Pid = 0; |
| 955 | line->cl_MailFlag = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 956 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 957 | /* open mail file - owner root so nobody can screw with it. */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 958 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 959 | snprintf(mailFile, sizeof(mailFile), TMPDIR "/cron.%s.%d", user, getpid()); |
| 960 | mailFd = open(mailFile, O_CREAT | O_TRUNC | O_WRONLY | O_EXCL | O_APPEND, 0600); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 961 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 962 | if (mailFd >= 0) { |
| 963 | line->cl_MailFlag = 1; |
| 964 | fdprintf(mailFd, "To: %s\nSubject: cron: %s\n\n", user, |
| 965 | line->cl_Shell); |
| 966 | line->cl_MailPos = lseek(mailFd, 0, 1); |
| 967 | } else { |
| 968 | crondlog("\024unable to create mail file user %s file %s, output to /dev/null\n", user, mailFile); |
| 969 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 970 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 971 | ForkJob(user, line, mailFd, DEFAULT_SHELL, "-c", line->cl_Shell, mailFile); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | /* |
| 975 | * EndJob - called when job terminates and when mail terminates |
| 976 | */ |
| 977 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 978 | static void EndJob(const char *user, CronLine * line) |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 979 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 980 | int mailFd; |
| 981 | char mailFile[128]; |
| 982 | struct stat sbuf; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 983 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 984 | /* No job */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 985 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 986 | if (line->cl_Pid <= 0) { |
| 987 | line->cl_Pid = 0; |
| 988 | return; |
| 989 | } |
| 990 | |
| 991 | /* |
| 992 | * End of job and no mail file |
| 993 | * End of sendmail job |
| 994 | */ |
| 995 | |
| 996 | snprintf(mailFile, sizeof(mailFile), TMPDIR "/cron.%s.%d", user, line->cl_Pid); |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 997 | line->cl_Pid = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 998 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 999 | if (line->cl_MailFlag != 1) { |
| 1000 | return; |
| 1001 | } |
| 1002 | line->cl_MailFlag = 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1003 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1004 | /* |
| 1005 | * End of primary job - check for mail file. If size has increased and |
| 1006 | * the file is still valid, we sendmail it. |
| 1007 | */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1008 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1009 | mailFd = open(mailFile, O_RDONLY); |
| 1010 | remove(mailFile); |
| 1011 | if (mailFd < 0) { |
| 1012 | return; |
| 1013 | } |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1014 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1015 | if (fstat(mailFd, &sbuf) < 0 || sbuf.st_uid != DaemonUid || sbuf.st_nlink != 0 || |
| 1016 | sbuf.st_size == line->cl_MailPos || !S_ISREG(sbuf.st_mode)) { |
| 1017 | close(mailFd); |
| 1018 | return; |
| 1019 | } |
| 1020 | ForkJob(user, line, mailFd, SENDMAIL, SENDMAIL_ARGS, NULL); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1021 | } |
| 1022 | #else |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1023 | /* crond without sendmail */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1024 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1025 | static void RunJob(const char *user, CronLine * line) |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1026 | { |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1027 | /* Fork as the user in question and run program */ |
| 1028 | pid_t pid = fork(); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1029 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1030 | if (pid == 0) { |
| 1031 | /* CHILD */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1032 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1033 | /* Change running state to the user in question */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1034 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1035 | if (ChangeUser(user) < 0) { |
| 1036 | exit(0); |
| 1037 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1038 | #ifdef FEATURE_DEBUG_OPT |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1039 | if (DebugOpt) { |
| 1040 | crondlog("\005Child Running %s\n", DEFAULT_SHELL); |
| 1041 | } |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1042 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1043 | |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1044 | execl(DEFAULT_SHELL, DEFAULT_SHELL, "-c", line->cl_Shell, NULL); |
| 1045 | crondlog("\024unable to exec, user %s cmd %s -c %s\n", user, |
| 1046 | DEFAULT_SHELL, line->cl_Shell); |
| 1047 | exit(0); |
| 1048 | } else if (pid < 0) { |
| 1049 | /* FORK FAILED */ |
| 1050 | crondlog("\024couldn't fork, user %s\n", user); |
| 1051 | pid = 0; |
| 1052 | } |
| 1053 | line->cl_Pid = pid; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 1054 | } |
Glenn L McGrath | 9079ad0 | 2004-02-22 04:44:21 +0000 | [diff] [blame] | 1055 | #endif /* CONFIG_FEATURE_CROND_CALL_SENDMAIL */ |