summaryrefslogtreecommitdiff
path: root/usr.sbin/cron
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2015-08-25 20:09:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2015-08-25 20:09:28 +0000
commit519483eac8104c85e00286fcf1fc196d852f68c2 (patch)
treeee57dc1626896c57a909e60669a118fe0df2f414 /usr.sbin/cron
parent585254a8e1745efcb2cd0b199ba4f8754571bae1 (diff)
Use ppoll(2) instead of poll(2). This has two benefits. Firstly,
we can use struct timespec throughout and avoid any conversion issues which might cause jobs to fire prematurely. Secondly, it eliminates a race condition that could delay us taking action on SIGCHLD and SIGHUP. OK deraadt@ okan@ ratchov@
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r--usr.sbin/cron/atrun.c6
-rw-r--r--usr.sbin/cron/cron.c56
-rw-r--r--usr.sbin/cron/funcs.h4
3 files changed, 34 insertions, 32 deletions
diff --git a/usr.sbin/cron/atrun.c b/usr.sbin/cron/atrun.c
index a6dbb9a784a..efcd73e1df5 100644
--- a/usr.sbin/cron/atrun.c
+++ b/usr.sbin/cron/atrun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atrun.c,v 1.28 2015/02/09 23:00:14 deraadt Exp $ */
+/* $OpenBSD: atrun.c,v 1.29 2015/08/25 20:09:27 millert Exp $ */
/*
* Copyright (c) 2002-2003 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -31,7 +31,7 @@ static void run_job(atjob *, char *);
* Scan the at jobs dir and build up a list of jobs found.
*/
int
-scan_atjobs(at_db *old_db, struct timeval *tv)
+scan_atjobs(at_db *old_db, struct timespec *ts)
{
DIR *atdir = NULL;
int cwd, queue, pending;
@@ -110,7 +110,7 @@ scan_atjobs(at_db *old_db, struct timeval *tv)
if (new_db.tail != NULL)
new_db.tail->next = job;
new_db.tail = job;
- if (tv != NULL && run_time <= tv->tv_sec)
+ if (ts != NULL && run_time <= ts->tv_sec)
pending = 1;
}
closedir(atdir);
diff --git a/usr.sbin/cron/cron.c b/usr.sbin/cron/cron.c
index a283e231f68..aa243c0d09a 100644
--- a/usr.sbin/cron/cron.c
+++ b/usr.sbin/cron/cron.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cron.c,v 1.52 2015/02/09 22:35:08 deraadt Exp $ */
+/* $OpenBSD: cron.c,v 1.53 2015/08/25 20:09:27 millert Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
@@ -27,7 +27,7 @@ static void usage(void),
run_reboot_jobs(cron_db *),
find_jobs(time_t, cron_db *, int, int),
set_time(int),
- cron_sleep(time_t),
+ cron_sleep(time_t, sigset_t *),
sigchld_handler(int),
sighup_handler(int),
sigchld_reaper(void),
@@ -54,6 +54,7 @@ int
main(int argc, char *argv[])
{
struct sigaction sact;
+ sigset_t blocked, omask;
int fd;
ProgramName = argv[0];
@@ -130,6 +131,15 @@ main(int argc, char *argv[])
timeRunning = virtualTime = clockTime;
/*
+ * We block SIGHUP and SIGCHLD while running jobs and receive them
+ * only while sleeping in ppoll(). This ensures no signal is lost.
+ */
+ sigemptyset(&blocked);
+ sigaddset(&blocked, SIGCHLD);
+ sigaddset(&blocked, SIGHUP);
+ sigprocmask(SIG_BLOCK, &blocked, &omask);
+
+ /*
* Too many clocks, not enough time (Al. Einstein)
* These clocks are in minutes since the epoch, adjusted for timezone.
* virtualTime: is the time it *would* be if we woke up
@@ -145,7 +155,7 @@ main(int argc, char *argv[])
/* ... wait for the time (in minutes) to change ... */
do {
- cron_sleep(timeRunning + 1);
+ cron_sleep(timeRunning + 1, &omask);
set_time(FALSE);
} while (clockTime == timeRunning);
timeRunning = clockTime;
@@ -242,15 +252,7 @@ main(int argc, char *argv[])
atrun(&at_database, batch_maxload,
timeRunning * SECONDS_PER_MINUTE - GMToff);
- /* Check to see if we received a signal while running jobs. */
- if (got_sighup) {
- got_sighup = 0;
- log_close();
- }
- if (got_sigchld) {
- got_sigchld = 0;
- sigchld_reaper();
- }
+ /* Reload jobs as needed. */
load_database(&database);
scan_atjobs(&at_database, NULL);
}
@@ -339,28 +341,28 @@ set_time(int initialize)
* Try to just hit the next minute.
*/
static void
-cron_sleep(time_t target)
+cron_sleep(time_t target, sigset_t *mask)
{
int fd, nfds;
unsigned char poke;
- struct timeval t1, t2, tv;
+ struct timespec t1, t2, timeout;
struct sockaddr_un s_un;
socklen_t sunlen;
static struct pollfd pfd[1];
- gettimeofday(&t1, NULL);
+ clock_gettime(CLOCK_REALTIME, &t1);
t1.tv_sec += GMToff;
- tv.tv_sec = (target * SECONDS_PER_MINUTE - t1.tv_sec) + 1;
- tv.tv_usec = 0;
+ timeout.tv_sec = (target * SECONDS_PER_MINUTE - t1.tv_sec) + 1;
+ timeout.tv_nsec = 0;
pfd[0].fd = cronSock;
pfd[0].events = POLLIN;
- while (timerisset(&tv) && tv.tv_sec < 65) {
+ while (timespecisset(&timeout) && timeout.tv_sec < 65) {
poke = RELOAD_CRON | RELOAD_AT;
/* Sleep until we time out, get a poke, or get a signal. */
- nfds = poll(pfd, 1, tv.tv_sec * 1000 + tv.tv_usec / 1000);
+ nfds = ppoll(pfd, 1, &timeout, mask);
if (nfds == 0)
break; /* timer expired */
if (nfds == -1 && errno != EINTR)
@@ -381,7 +383,7 @@ cron_sleep(time_t target)
* away so that "at now" really runs
* jobs immediately.
*/
- gettimeofday(&t2, NULL);
+ clock_gettime(CLOCK_REALTIME, &t2);
at_database.mtime = 0;
if (scan_atjobs(&at_database, &t2))
atrun(&at_database,
@@ -401,15 +403,15 @@ cron_sleep(time_t target)
}
/* Adjust tv and continue where we left off. */
- gettimeofday(&t2, NULL);
+ clock_gettime(CLOCK_REALTIME, &t2);
t2.tv_sec += GMToff;
- timersub(&t2, &t1, &t1);
- timersub(&tv, &t1, &tv);
+ timespecsub(&t2, &t1, &t1);
+ timespecsub(&timeout, &t1, &timeout);
memcpy(&t1, &t2, sizeof(t1));
- if (tv.tv_sec < 0)
- tv.tv_sec = 0;
- if (tv.tv_usec < 0)
- tv.tv_usec = 0;
+ if (timeout.tv_sec < 0)
+ timeout.tv_sec = 0;
+ if (timeout.tv_nsec < 0)
+ timeout.tv_nsec = 0;
}
}
diff --git a/usr.sbin/cron/funcs.h b/usr.sbin/cron/funcs.h
index bd8adc42ae2..7c01629eeaa 100644
--- a/usr.sbin/cron/funcs.h
+++ b/usr.sbin/cron/funcs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: funcs.h,v 1.16 2015/01/23 01:01:06 tedu Exp $ */
+/* $OpenBSD: funcs.h,v 1.17 2015/08/25 20:09:27 millert Exp $ */
/*
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
@@ -54,7 +54,7 @@ int job_runqueue(void),
allowed(const char *, const char *, const char *),
open_socket(void),
safe_p(const char *, const char *),
- scan_atjobs(at_db *, struct timeval *);
+ scan_atjobs(at_db *, struct timespec *);
int strtot(const char *nptr, char **endptr, time_t *tp);