1 /* Copyright 1988,1990,1993,1994 by Paul Vixie
2 * All rights reserved
3 */
4
5 /*
6 * Copyright (c) 1997 by Internet Software Consortium
7 *
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
13 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
14 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
15 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
18 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
19 * SOFTWARE.
20 */
21
22 #if !defined(lint) && !defined(LINT)
23 static const char rcsid[] =
24 "$Id: database.c,v 1.3 1998/08/14 00:32:38 vixie Exp $";
25 #endif
26
27 /* vix 26jan87 [RCS has the log]
28 */
29
30 #include "cron.h"
31
32 #define TMAX(a,b) ((a)>(b)?(a):(b))
33
34 static void process_crontab(const char *, const char *,
35 const char *, struct stat *,
36 cron_db *, cron_db *);
37
38 void
load_database(cron_db * old_db)39 load_database(cron_db *old_db)
40 {
41 struct stat statbuf, syscron_stat, st;
42 cron_db new_db;
43 DIR_T *dp;
44 DIR *dir;
45 user *u, *nu;
46 time_t maxmtime;
47 struct {
48 const char *name;
49 struct stat st;
50 } syscrontabs [] = {
51 { SYSCRONTABS },
52 { LOCALSYSCRONTABS }
53 };
54 int i, ret;
55
56 Debug(DLOAD, ("[%d] load_database()\n", getpid()))
57
58 /* before we start loading any data, do a stat on SPOOL_DIR
59 * so that if anything changes as of this moment (i.e., before we've
60 * cached any of the database), we'll see the changes next time.
61 */
62 if (stat(SPOOL_DIR, &statbuf) < OK) {
63 log_it("CRON", getpid(), "STAT FAILED", SPOOL_DIR);
64 (void) exit(ERROR_EXIT);
65 }
66
67 /* track system crontab file
68 */
69 if (stat(SYSCRONTAB, &syscron_stat) < OK)
70 syscron_stat.st_mtime = 0;
71
72 maxmtime = TMAX(statbuf.st_mtime, syscron_stat.st_mtime);
73
74 for (i = 0; i < nitems(syscrontabs); i++) {
75 if (stat(syscrontabs[i].name, &syscrontabs[i].st) != -1) {
76 maxmtime = TMAX(syscrontabs[i].st.st_mtime, maxmtime);
77 /* Traverse into directory */
78 if (!(dir = opendir(syscrontabs[i].name)))
79 continue;
80 while (NULL != (dp = readdir(dir))) {
81 if (dp->d_name[0] == '.')
82 continue;
83 ret = fstatat(dirfd(dir), dp->d_name, &st, 0);
84 if (ret != 0 || !S_ISREG(st.st_mode))
85 continue;
86 maxmtime = TMAX(st.st_mtime, maxmtime);
87 }
88 closedir(dir);
89 } else {
90 syscrontabs[i].st.st_mtime = 0;
91 }
92 }
93
94 /* if spooldir's mtime has not changed, we don't need to fiddle with
95 * the database.
96 *
97 * Note that old_db->mtime is initialized to 0 in main(), and
98 * so is guaranteed to be different than the stat() mtime the first
99 * time this function is called.
100 */
101 if (old_db->mtime == maxmtime) {
102 Debug(DLOAD, ("[%d] spool dir mtime unch, no load needed.\n",
103 getpid()))
104 return;
105 }
106
107 /* something's different. make a new database, moving unchanged
108 * elements from the old database, reloading elements that have
109 * actually changed. Whatever is left in the old database when
110 * we're done is chaff -- crontabs that disappeared.
111 */
112 new_db.mtime = maxmtime;
113 new_db.head = new_db.tail = NULL;
114
115 if (syscron_stat.st_mtime) {
116 process_crontab("root", SYS_NAME,
117 SYSCRONTAB, &syscron_stat,
118 &new_db, old_db);
119 }
120
121 for (i = 0; i < nitems(syscrontabs); i++) {
122 char tabname[MAXPATHLEN];
123 if (syscrontabs[i].st.st_mtime == 0)
124 continue;
125 if (!(dir = opendir(syscrontabs[i].name))) {
126 log_it("CRON", getpid(), "OPENDIR FAILED",
127 syscrontabs[i].name);
128 (void) exit(ERROR_EXIT);
129 }
130
131 while (NULL != (dp = readdir(dir))) {
132 if (dp->d_name[0] == '.')
133 continue;
134 if (fstatat(dirfd(dir), dp->d_name, &st, 0) == 0 &&
135 !S_ISREG(st.st_mode))
136 continue;
137 snprintf(tabname, sizeof(tabname), "%s/%s",
138 syscrontabs[i].name, dp->d_name);
139 process_crontab("root", SYS_NAME, tabname,
140 &syscrontabs[i].st, &new_db, old_db);
141 }
142 closedir(dir);
143 }
144
145 /* we used to keep this dir open all the time, for the sake of
146 * efficiency. however, we need to close it in every fork, and
147 * we fork a lot more often than the mtime of the dir changes.
148 */
149 if (!(dir = opendir(SPOOL_DIR))) {
150 log_it("CRON", getpid(), "OPENDIR FAILED", SPOOL_DIR);
151 (void) exit(ERROR_EXIT);
152 }
153
154 while (NULL != (dp = readdir(dir))) {
155 char fname[MAXNAMLEN+1], tabname[MAXNAMLEN+1];
156
157 /* avoid file names beginning with ".". this is good
158 * because we would otherwise waste two guaranteed calls
159 * to getpwnam() for . and .., and also because user names
160 * starting with a period are just too nasty to consider.
161 */
162 if (dp->d_name[0] == '.')
163 continue;
164
165 (void) strncpy(fname, dp->d_name, sizeof(fname));
166 fname[sizeof(fname)-1] = '\0';
167
168 if (snprintf(tabname, sizeof tabname, CRON_TAB(fname))
169 >= (int)sizeof(tabname)) {
170 log_it("CRON", getpid(), "TABNAME TOO LONG", fname);
171 continue;
172 }
173
174 process_crontab(fname, fname, tabname,
175 &statbuf, &new_db, old_db);
176 }
177 closedir(dir);
178
179 /* if we don't do this, then when our children eventually call
180 * getpwnam() in do_command.c's child_process to verify MAILTO=,
181 * they will screw us up (and v-v).
182 */
183 endpwent();
184
185 /* whatever's left in the old database is now junk.
186 */
187 Debug(DLOAD, ("unlinking old database:\n"))
188 for (u = old_db->head; u != NULL; u = nu) {
189 Debug(DLOAD, ("\t%s\n", u->name))
190 nu = u->next;
191 unlink_user(old_db, u);
192 free_user(u);
193 }
194
195 /* overwrite the database control block with the new one.
196 */
197 *old_db = new_db;
198 Debug(DLOAD, ("load_database is done\n"))
199 }
200
201 void
link_user(cron_db * db,user * u)202 link_user(cron_db *db, user *u)
203 {
204 if (db->head == NULL)
205 db->head = u;
206 if (db->tail)
207 db->tail->next = u;
208 u->prev = db->tail;
209 u->next = NULL;
210 db->tail = u;
211 }
212
213 void
unlink_user(cron_db * db,user * u)214 unlink_user(cron_db *db, user *u)
215 {
216 if (u->prev == NULL)
217 db->head = u->next;
218 else
219 u->prev->next = u->next;
220
221 if (u->next == NULL)
222 db->tail = u->prev;
223 else
224 u->next->prev = u->prev;
225 }
226
227 user *
find_user(cron_db * db,const char * name)228 find_user(cron_db *db, const char *name)
229 {
230 user *u;
231
232 for (u = db->head; u != NULL; u = u->next)
233 if (strcmp(u->name, name) == 0)
234 break;
235 return (u);
236 }
237
238 static void
process_crontab(const char * uname,const char * fname,const char * tabname,struct stat * statbuf,cron_db * new_db,cron_db * old_db)239 process_crontab(const char *uname, const char *fname, const char *tabname,
240 struct stat *statbuf, cron_db *new_db, cron_db *old_db)
241 {
242 struct passwd *pw = NULL;
243 int crontab_fd = OK - 1;
244 user *u;
245 entry *e;
246 time_t now;
247
248 if (strcmp(fname, SYS_NAME) != 0 && !(pw = getpwnam(uname))) {
249 /* file doesn't have a user in passwd file.
250 */
251 log_it(fname, getpid(), "ORPHAN", "no passwd entry");
252 goto next_crontab;
253 }
254
255 if ((crontab_fd = open(tabname, O_RDONLY, 0)) < OK) {
256 /* crontab not accessible?
257 */
258 log_it(fname, getpid(), "CAN'T OPEN", tabname);
259 goto next_crontab;
260 }
261
262 if (fstat(crontab_fd, statbuf) < OK) {
263 log_it(fname, getpid(), "FSTAT FAILED", tabname);
264 goto next_crontab;
265 }
266
267 Debug(DLOAD, ("\t%s:", fname))
268 u = find_user(old_db, fname);
269 if (u != NULL) {
270 /* if crontab has not changed since we last read it
271 * in, then we can just use our existing entry.
272 */
273 if (u->mtime == statbuf->st_mtime) {
274 Debug(DLOAD, (" [no change, using old data]"))
275 unlink_user(old_db, u);
276 link_user(new_db, u);
277 goto next_crontab;
278 }
279
280 /* before we fall through to the code that will reload
281 * the user, let's deallocate and unlink the user in
282 * the old database. This is more a point of memory
283 * efficiency than anything else, since all leftover
284 * users will be deleted from the old database when
285 * we finish with the crontab...
286 */
287 Debug(DLOAD, (" [delete old data]"))
288 unlink_user(old_db, u);
289 free_user(u);
290 log_it(fname, getpid(), "RELOAD", tabname);
291 }
292 u = load_user(crontab_fd, pw, fname);
293 if (u != NULL) {
294 u->mtime = statbuf->st_mtime;
295 /*
296 * TargetTime == 0 when we're initially populating the database,
297 * and TargetTime > 0 any time after that (i.e. we're reloading
298 * cron.d/ files because they've been created/modified). In the
299 * latter case, we should check for any interval jobs and run
300 * them 'n' seconds from the time the job was loaded/reloaded.
301 * Otherwise, they will not be run until cron is restarted.
302 */
303 if (TargetTime != 0) {
304 now = time(NULL);
305 for (e = u->crontab; e != NULL; e = e->next) {
306 if ((e->flags & INTERVAL) != 0)
307 e->lastexit = now;
308 }
309 }
310 link_user(new_db, u);
311 }
312
313 next_crontab:
314 if (crontab_fd >= OK) {
315 Debug(DLOAD, (" [done]\n"))
316 close(crontab_fd);
317 }
318 }
319