aboutsummaryrefslogtreecommitdiffstats
path: root/src/satd-timer.c
blob: 671555e7c8dbd487194e5a4f7bf5814a961f525d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
 * Copyright © 2015  Mattias Andrée <maandree@member.fsf.org>
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */
#include "daemon.h"
#include <time.h>
#include <sys/timerfd.h>



/**
 * Pretty self-explanatory.
 */
#ifdef __GNUC__
__attribute__((__pure__))
#endif
static inline int
timecmp(const struct timespec *a, const struct timespec *b)
{
	if (a->tv_sec  != b->tv_sec)   return (a->tv_sec  < b->tv_sec  ? -1 : +1);
	if (a->tv_nsec != b->tv_nsec)  return (a->tv_nsec < b->tv_nsec ? -1 : +1);
	return 0;
}


/**
 * Subroutine to the sat daemon: list jobs.
 * 
 * @param   argc  Should be 3.
 * @param   argv  The name of the process, the pathname of the socket,
 *                and the pathname to the state file.
 * @return  0     The process was successful.
 * @return  1     The process failed queuing the job.
 */
int
main(int argc, char *argv[])
{
#define TIME(job, suffix)  ((job)->clk == CLOCK_BOOTTIME ? &boot##suffix : &real##suffix)

	char jobno[3 * sizeof(size_t) + 1];
	struct itimerspec bootspec;
	struct itimerspec realspec;
	struct timespec bootnow;
	struct timespec realnow;
	struct job **jobs = NULL;
	struct job **job;
	int rc = 0;

	t (reopen(STATE_FILENO, O_RDWR));

	/* Get current expiration time. */
	t (timerfd_gettime(BOOT_FILENO, &bootspec));
	t (timerfd_gettime(REAL_FILENO, &realspec));

	/* Run expired jobs, and find new expiration times. */
	t (clock_gettime(CLOCK_BOOTTIME, &bootnow));
	t (clock_gettime(CLOCK_REALTIME, &realnow));
	t (!(jobs = get_jobs()));
	for (job = jobs; *job; job++) {
		if (timecmp(&(job[0]->ts), TIME(*job, now)) <= 0) {
			sprintf(jobno, "%zu", job[0]->no);
			remove_job(jobno, 2);
		} else if (timecmp(&(job[0]->ts), &(TIME(*job, spec)->it_value)) > 0) {
			TIME(*job, spec)->it_value = job[0]->ts;
		}
	}

	/* Update expiration time. */
	t (timerfd_settime(BOOT_FILENO, TFD_TIMER_ABSTIME, &bootspec, NULL));
	t (timerfd_settime(REAL_FILENO, TFD_TIMER_ABSTIME, &realspec, NULL));

done:
	for (job = jobs; *job; job++)
		free(*job);
	free(jobs);
	close(STATE_FILENO);
	return rc;
fail:
	perror(argv[0]);
	rc = 1;
	goto done;
	(void) argc;
}