Deleted Added
full compact
ntp_timer.c (302408) ntp_timer.c (54359)
1/*
2 * ntp_timer.c - event timer support routines
3 */
4#ifdef HAVE_CONFIG_H
5# include <config.h>
6#endif
7
1/*
2 * ntp_timer.c - event timer support routines
3 */
4#ifdef HAVE_CONFIG_H
5# include <config.h>
6#endif
7
8#include <stdio.h>
9#include <sys/types.h>
10#include <sys/time.h>
11#include <signal.h>
12#include <sys/signal.h>
13
8#include "ntp_machine.h"
9#include "ntpd.h"
10#include "ntp_stdlib.h"
14#include "ntp_machine.h"
15#include "ntpd.h"
16#include "ntp_stdlib.h"
11#include "ntp_calendar.h"
12#include "ntp_leapsec.h"
13
14#if defined(HAVE_IO_COMPLETION_PORT)
15# include "ntp_iocompletionport.h"
16# include "ntp_timer.h"
17#endif
18
17#if defined(HAVE_IO_COMPLETION_PORT)
18# include "ntp_iocompletionport.h"
19# include "ntp_timer.h"
20#endif
21
19#include <stdio.h>
20#include <signal.h>
21#ifdef HAVE_SYS_SIGNAL_H
22# include <sys/signal.h>
23#endif
24#ifdef HAVE_UNISTD_H
25# include <unistd.h>
26#endif
27
28#ifdef KERNEL_PLL
29#include "ntp_syscall.h"
30#endif /* KERNEL_PLL */
31
32#ifdef AUTOKEY
33#include <openssl/rand.h>
34#endif /* AUTOKEY */
35
36
37/* TC_ERR represents the timer_create() error return value. */
38#ifdef SYS_VXWORKS
39#define TC_ERR ERROR
40#else
41#define TC_ERR (-1)
42#endif
43
44
45static void check_leapsec(u_int32, const time_t*, int/*BOOL*/);
46
47/*
22/*
48 * These routines provide support for the event timer. The timer is
23 * These routines provide support for the event timer. The timer is
49 * implemented by an interrupt routine which sets a flag once every
24 * implemented by an interrupt routine which sets a flag once every
50 * second, and a timer routine which is called when the mainline code
51 * gets around to seeing the flag. The timer routine dispatches the
52 * clock adjustment code if its time has come, then searches the timer
53 * queue for expiries which are dispatched to the transmit procedure.
54 * Finally, we call the hourly procedure to do cleanup and print a
55 * message.
25 * 2**EVENT_TIMEOUT seconds (currently 4), and a timer routine which
26 * is called when the mainline code gets around to seeing the flag.
27 * The timer routine dispatches the clock adjustment code if its time
28 * has come, then searches the timer queue for expiries which are
29 * dispatched to the transmit procedure. Finally, we call the hourly
30 * procedure to do cleanup and print a message.
56 */
31 */
57volatile int interface_interval; /* init_io() sets def. 300s */
58
59/*
32
33/*
60 * Initializing flag. All async routines watch this and only do their
61 * thing when it is clear.
34 * Alarm flag. The mainline code imports this.
62 */
35 */
63int initializing;
64
65/*
66 * Alarm flag. The mainline code imports this.
67 */
68volatile int alarm_flag;
69
70/*
36volatile int alarm_flag;
37
38/*
71 * The counters and timeouts
39 * The counters
72 */
40 */
73static u_long interface_timer; /* interface update timer */
74static u_long adjust_timer; /* second timer */
75static u_long stats_timer; /* stats timer */
76static u_long leapf_timer; /* Report leapfile problems once/day */
77static u_long huffpuff_timer; /* huff-n'-puff timer */
78static u_long worker_idle_timer;/* next check for idle intres */
79u_long leapsec; /* seconds to next leap (proximity class) */
80int leapdif; /* TAI difference step at next leap second*/
81u_long orphwait; /* orphan wait time */
82#ifdef AUTOKEY
83static u_long revoke_timer; /* keys revoke timer */
84static u_long keys_timer; /* session key timer */
85u_long sys_revoke = KEY_REVOKE; /* keys revoke timeout (log2 s) */
86u_long sys_automax = NTP_AUTOMAX; /* key list timeout (log2 s) */
87#endif /* AUTOKEY */
41static u_long adjust_timer; /* second timer */
42static u_long keys_timer; /* minute timer */
43static u_long hourly_timer; /* hour timer */
44static u_long revoke_timer; /* keys revoke timer */
45u_long sys_revoke = KEY_REVOKE; /* keys revoke timeout */
88
89/*
90 * Statistics counter for the interested.
91 */
92volatile u_long alarm_overflow;
93
46
47/*
48 * Statistics counter for the interested.
49 */
50volatile u_long alarm_overflow;
51
94u_long current_time; /* seconds since startup */
52#define MINUTE 60
53#define HOUR (60*60)
95
54
55u_long current_time;
56
96/*
97 * Stats. Number of overflows and number of calls to transmit().
98 */
99u_long timer_timereset;
100u_long timer_overflows;
101u_long timer_xmtcalls;
102
103#if defined(VMS)
104static int vmstimer[2]; /* time for next timer AST */
105static int vmsinc[2]; /* timer increment */
106#endif /* VMS */
107
57/*
58 * Stats. Number of overflows and number of calls to transmit().
59 */
60u_long timer_timereset;
61u_long timer_overflows;
62u_long timer_xmtcalls;
63
64#if defined(VMS)
65static int vmstimer[2]; /* time for next timer AST */
66static int vmsinc[2]; /* timer increment */
67#endif /* VMS */
68
108#ifdef SYS_WINNT
109HANDLE WaitableTimerHandle;
69#if defined SYS_WINNT
70static HANDLE WaitableTimerHandle = NULL;
110#else
71#else
111static RETSIGTYPE alarming (int);
72static RETSIGTYPE alarming P((int));
112#endif /* SYS_WINNT */
113
73#endif /* SYS_WINNT */
74
114#if !defined(VMS)
115# if !defined SYS_WINNT || defined(SYS_CYGWIN32)
116# ifdef HAVE_TIMER_CREATE
117static timer_t timer_id;
118typedef struct itimerspec intervaltimer;
119# define itv_frac tv_nsec
120# else
121typedef struct itimerval intervaltimer;
122# define itv_frac tv_usec
123# endif
124intervaltimer itimer;
125# endif
126#endif
127
75
128#if !defined(SYS_WINNT) && !defined(VMS)
129void set_timer_or_die(const intervaltimer *);
130#endif
131
132
133#if !defined(SYS_WINNT) && !defined(VMS)
134void
135set_timer_or_die(
136 const intervaltimer * ptimer
137 )
138{
139 const char * setfunc;
140 int rc;
141
142# ifdef HAVE_TIMER_CREATE
143 setfunc = "timer_settime";
144 rc = timer_settime(timer_id, 0, &itimer, NULL);
145# else
146 setfunc = "setitimer";
147 rc = setitimer(ITIMER_REAL, &itimer, NULL);
148# endif
149 if (-1 == rc) {
150 msyslog(LOG_ERR, "interval timer %s failed, %m",
151 setfunc);
152 exit(1);
153 }
154}
155#endif /* !SYS_WINNT && !VMS */
156
157
158/*
76/*
159 * reinit_timer - reinitialize interval timer after a clock step.
160 */
161void
162reinit_timer(void)
163{
164#if !defined(SYS_WINNT) && !defined(VMS)
165 ZERO(itimer);
166# ifdef HAVE_TIMER_CREATE
167 timer_gettime(timer_id, &itimer);
168# else
169 getitimer(ITIMER_REAL, &itimer);
170# endif
171 if (itimer.it_value.tv_sec < 0 ||
172 itimer.it_value.tv_sec > (1 << EVENT_TIMEOUT))
173 itimer.it_value.tv_sec = (1 << EVENT_TIMEOUT);
174 if (itimer.it_value.itv_frac < 0)
175 itimer.it_value.itv_frac = 0;
176 if (0 == itimer.it_value.tv_sec &&
177 0 == itimer.it_value.itv_frac)
178 itimer.it_value.tv_sec = (1 << EVENT_TIMEOUT);
179 itimer.it_interval.tv_sec = (1 << EVENT_TIMEOUT);
180 itimer.it_interval.itv_frac = 0;
181 set_timer_or_die(&itimer);
182# endif /* VMS */
183}
184
185
186/*
187 * init_timer - initialize the timer data structures
188 */
189void
190init_timer(void)
191{
77 * init_timer - initialize the timer data structures
78 */
79void
80init_timer(void)
81{
82#if !defined(VMS)
83# if !defined SYS_WINNT || defined(SYS_CYGWIN32)
84# ifndef HAVE_TIMER_SETTIME
85 struct itimerval itimer;
86# else
87 static timer_t ntpd_timerid; /* should be global if we ever want */
88 /* to kill timer without rebooting ... */
89 struct itimerspec itimer;
90# endif /* HAVE_TIMER_SETTIME */
91# else /* SYS_WINNT */
92 HANDLE hToken;
93 TOKEN_PRIVILEGES tkp;
94# endif /* SYS_WINNT */
95#endif /* !VMS */
96
192 /*
193 * Initialize...
194 */
97 /*
98 * Initialize...
99 */
195 alarm_flag = FALSE;
100 alarm_flag = 0;
196 alarm_overflow = 0;
197 adjust_timer = 1;
101 alarm_overflow = 0;
102 adjust_timer = 1;
198 stats_timer = SECSPERHR;
199 leapf_timer = SECSPERDAY;
200 huffpuff_timer = 0;
201 interface_timer = 0;
103 hourly_timer = HOUR;
202 current_time = 0;
203 timer_overflows = 0;
204 timer_xmtcalls = 0;
205 timer_timereset = 0;
206
104 current_time = 0;
105 timer_overflows = 0;
106 timer_xmtcalls = 0;
107 timer_timereset = 0;
108
207#ifndef SYS_WINNT
109#if !defined(SYS_WINNT)
208 /*
209 * Set up the alarm interrupt. The first comes 2**EVENT_TIMEOUT
210 * seconds from now and they continue on every 2**EVENT_TIMEOUT
211 * seconds.
212 */
110 /*
111 * Set up the alarm interrupt. The first comes 2**EVENT_TIMEOUT
112 * seconds from now and they continue on every 2**EVENT_TIMEOUT
113 * seconds.
114 */
213# ifndef VMS
214# ifdef HAVE_TIMER_CREATE
215 if (TC_ERR == timer_create(CLOCK_REALTIME, NULL, &timer_id)) {
216 msyslog(LOG_ERR, "timer_create failed, %m");
217 exit(1);
115# if !defined(VMS)
116# if defined(HAVE_TIMER_CREATE) && defined(HAVE_TIMER_SETTIME)
117 if (timer_create (CLOCK_REALTIME, NULL, &ntpd_timerid) ==
118# ifdef SYS_VXWORKS
119 ERROR
120# else
121 -1
122# endif
123 )
124 {
125 fprintf (stderr, "timer create FAILED\n");
126 exit (0);
218 }
127 }
128 (void) signal_no_reset(SIGALRM, alarming);
129 itimer.it_interval.tv_sec = itimer.it_value.tv_sec = (1<<EVENT_TIMEOUT);
130 itimer.it_interval.tv_nsec = itimer.it_value.tv_nsec = 0;
131 timer_settime(ntpd_timerid, 0 /*!TIMER_ABSTIME*/, &itimer, NULL);
132# else
133 (void) signal_no_reset(SIGALRM, alarming);
134 itimer.it_interval.tv_sec = itimer.it_value.tv_sec = (1<<EVENT_TIMEOUT);
135 itimer.it_interval.tv_usec = itimer.it_value.tv_usec = 0;
136 setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0);
219# endif
137# endif
220 signal_no_reset(SIGALRM, alarming);
221 itimer.it_interval.tv_sec =
222 itimer.it_value.tv_sec = (1 << EVENT_TIMEOUT);
223 itimer.it_interval.itv_frac = itimer.it_value.itv_frac = 0;
224 set_timer_or_die(&itimer);
225# else /* VMS follows */
138# else /* VMS */
226 vmsinc[0] = 10000000; /* 1 sec */
227 vmsinc[1] = 0;
228 lib$emul(&(1<<EVENT_TIMEOUT), &vmsinc, &0, &vmsinc);
229
230 sys$gettim(&vmstimer); /* that's "now" as abstime */
231
232 lib$addx(&vmsinc, &vmstimer, &vmstimer);
233 sys$setimr(0, &vmstimer, alarming, alarming, 0);
139 vmsinc[0] = 10000000; /* 1 sec */
140 vmsinc[1] = 0;
141 lib$emul(&(1<<EVENT_TIMEOUT), &vmsinc, &0, &vmsinc);
142
143 sys$gettim(&vmstimer); /* that's "now" as abstime */
144
145 lib$addx(&vmsinc, &vmstimer, &vmstimer);
146 sys$setimr(0, &vmstimer, alarming, alarming, 0);
234# endif /* VMS */
235#else /* SYS_WINNT follows */
147# endif /* VMS */
148#else /* SYS_WINNT */
149 _tzset();
150
236 /*
151 /*
152 * Get privileges needed for fiddling with the clock
153 */
154
155 /* get the current process token handle */
156 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) {
157 msyslog(LOG_ERR, "OpenProcessToken failed: %m");
158 exit(1);
159 }
160 /* get the LUID for system-time privilege. */
161 LookupPrivilegeValue(NULL, SE_SYSTEMTIME_NAME, &tkp.Privileges[0].Luid);
162 tkp.PrivilegeCount = 1; /* one privilege to set */
163 tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
164 /* get set-time privilege for this process. */
165 AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, (PTOKEN_PRIVILEGES) NULL, 0);
166 /* cannot test return value of AdjustTokenPrivileges. */
167 if (GetLastError() != ERROR_SUCCESS) {
168 msyslog(LOG_ERR, "AdjustTokenPrivileges failed: %m");
169 }
170
171 /*
237 * Set up timer interrupts for every 2**EVENT_TIMEOUT seconds
172 * Set up timer interrupts for every 2**EVENT_TIMEOUT seconds
238 * Under Windows/NT,
173 * Under Windows/NT,
239 */
240
241 WaitableTimerHandle = CreateWaitableTimer(NULL, FALSE, NULL);
242 if (WaitableTimerHandle == NULL) {
243 msyslog(LOG_ERR, "CreateWaitableTimer failed: %m");
244 exit(1);
245 }
246 else {
174 */
175
176 WaitableTimerHandle = CreateWaitableTimer(NULL, FALSE, NULL);
177 if (WaitableTimerHandle == NULL) {
178 msyslog(LOG_ERR, "CreateWaitableTimer failed: %m");
179 exit(1);
180 }
181 else {
247 DWORD Period;
248 LARGE_INTEGER DueTime;
249 BOOL rc;
250
251 Period = (1 << EVENT_TIMEOUT) * 1000;
182 DWORD Period = (1<<EVENT_TIMEOUT) * 1000;
183 LARGE_INTEGER DueTime;
252 DueTime.QuadPart = Period * 10000i64;
184 DueTime.QuadPart = Period * 10000i64;
253 rc = SetWaitableTimer(WaitableTimerHandle, &DueTime,
254 Period, NULL, NULL, FALSE);
255 if (!rc) {
185 if (!SetWaitableTimer(WaitableTimerHandle, &DueTime, Period, NULL, NULL, FALSE) != NO_ERROR) {
256 msyslog(LOG_ERR, "SetWaitableTimer failed: %m");
257 exit(1);
258 }
259 }
260
186 msyslog(LOG_ERR, "SetWaitableTimer failed: %m");
187 exit(1);
188 }
189 }
190
261#endif /* SYS_WINNT */
191#endif /* SYS_WINNT */
262}
263
192}
193
264
265/*
266 * intres_timeout_req(s) is invoked in the parent to schedule an idle
267 * timeout to fire in s seconds, if not reset earlier by a call to
268 * intres_timeout_req(0), which clears any pending timeout. When the
269 * timeout expires, worker_idle_timer_fired() is invoked (again, in the
270 * parent).
271 *
272 * sntp and ntpd each provide implementations adapted to their timers.
273 */
274void
275intres_timeout_req(
276 u_int seconds /* 0 cancels */
277 )
194#if defined(SYS_WINNT)
195extern HANDLE
196get_timer_handle(void)
278{
197{
279#if defined(HAVE_DROPROOT) && defined(NEED_EARLY_FORK)
280 if (droproot) {
281 worker_idle_timer = 0;
282 return;
283 }
284#endif
285 if (0 == seconds) {
286 worker_idle_timer = 0;
287 return;
288 }
289 worker_idle_timer = current_time + seconds;
198 return WaitableTimerHandle;
290}
199}
200#endif
291
201
292
293/*
202/*
294 * timer - event timer
203 * timer - dispatch anyone who needs to be
295 */
296void
297timer(void)
298{
204 */
205void
206timer(void)
207{
299 struct peer * p;
300 struct peer * next_peer;
301 l_fp now;
302 time_t tnow;
208 register struct peer *peer, *next_peer;
209 int n;
303
210
211 current_time += (1<<EVENT_TIMEOUT);
212
304 /*
213 /*
305 * The basic timerevent is one second. This is used to adjust the
306 * system clock in time and frequency, implement the kiss-o'-death
307 * function and the association polling function.
214 * Adjustment timeout first.
308 */
215 */
309 current_time++;
310 if (adjust_timer <= current_time) {
311 adjust_timer += 1;
312 adj_host_clock();
216 if (adjust_timer <= current_time) {
217 adjust_timer += 1;
218 adj_host_clock();
313#ifdef REFCLOCK
314 for (p = peer_list; p != NULL; p = next_peer) {
315 next_peer = p->p_link;
316 if (FLAG_REFCLOCK & p->flags)
317 refclock_timer(p);
318 }
319#endif /* REFCLOCK */
320 }
321
322 /*
219 }
220
221 /*
323 * Now dispatch any peers whose event timer has expired. Be
324 * careful here, since the peer structure might go away as the
325 * result of the call.
222 * Now dispatch any peers whose event timer has expired. Be careful
223 * here, since the peer structure might go away as the result of
224 * the call.
326 */
225 */
327 for (p = peer_list; p != NULL; p = next_peer) {
328 next_peer = p->p_link;
329
330 /*
331 * Restrain the non-burst packet rate not more
332 * than one packet every 16 seconds. This is
333 * usually tripped using iburst and minpoll of
334 * 128 s or less.
335 */
336 if (p->throttle > 0)
337 p->throttle--;
338 if (p->nextdate <= current_time) {
226 for (n = 0; n < HASH_SIZE; n++) {
227 for (peer = peer_hash[n]; peer != 0; peer = next_peer) {
228 next_peer = peer->next;
229 if (peer->action && peer->nextaction <= current_time)
230 peer->action(peer);
231 if (peer->nextdate <= current_time) {
339#ifdef REFCLOCK
232#ifdef REFCLOCK
340 if (FLAG_REFCLOCK & p->flags)
341 refclock_transmit(p);
342 else
343#endif /* REFCLOCK */
344 transmit(p);
233 if (peer->flags & FLAG_REFCLOCK)
234 refclock_transmit(peer);
235 else
236 transmit(peer);
237#else /* REFCLOCK */
238 transmit(peer);
239#endif /* REFCLOCK */
240 }
345 }
346 }
347
348 /*
241 }
242 }
243
244 /*
349 * Orphan mode is active when enabled and when no servers less
350 * than the orphan stratum are available. A server with no other
351 * synchronization source is an orphan. It shows offset zero and
352 * reference ID the loopback address.
353 */
354 if (sys_orphan < STRATUM_UNSPEC && sys_peer == NULL &&
355 current_time > orphwait) {
356 if (sys_leap == LEAP_NOTINSYNC) {
357 set_sys_leap(LEAP_NOWARNING);
358#ifdef AUTOKEY
359 if (crypto_flags)
360 crypto_update();
361#endif /* AUTOKEY */
362 }
363 sys_stratum = (u_char)sys_orphan;
364 if (sys_stratum > 1)
365 sys_refid = htonl(LOOPBACKADR);
366 else
367 memcpy(&sys_refid, "LOOP", 4);
368 sys_offset = 0;
369 sys_rootdelay = 0;
370 sys_rootdisp = 0;
371 }
372
373 get_systime(&now);
374 time(&tnow);
375
376 /*
377 * Leapseconds. Get time and defer to worker if either something
378 * is imminent or every 8th second.
379 */
380 if (leapsec > LSPROX_NOWARN || 0 == (current_time & 7))
381 check_leapsec(now.l_ui, &tnow,
382 (sys_leap == LEAP_NOTINSYNC));
383 if (sys_leap != LEAP_NOTINSYNC) {
384 if (leapsec >= LSPROX_ANNOUNCE && leapdif) {
385 if (leapdif > 0)
386 set_sys_leap(LEAP_ADDSECOND);
387 else
388 set_sys_leap(LEAP_DELSECOND);
389 } else {
390 set_sys_leap(LEAP_NOWARNING);
391 }
392 }
393
394 /*
395 * Update huff-n'-puff filter.
396 */
397 if (huffpuff_timer <= current_time) {
398 huffpuff_timer += HUFFPUFF;
399 huffpuff();
400 }
401
402#ifdef AUTOKEY
403 /*
404 * Garbage collect expired keys.
405 */
406 if (keys_timer <= current_time) {
245 * Garbage collect expired keys.
246 */
247 if (keys_timer <= current_time) {
407 keys_timer += 1 << sys_automax;
248 keys_timer += MINUTE;
408 auth_agekeys();
409 }
410
411 /*
249 auth_agekeys();
250 }
251
252 /*
412 * Generate new private value. This causes all associations
413 * to regenerate cookies.
253 * Garbage collect revoked keys
414 */
254 */
415 if (revoke_timer && revoke_timer <= current_time) {
416 revoke_timer += 1 << sys_revoke;
417 RAND_bytes((u_char *)&sys_private, 4);
255 if (revoke_timer <= current_time) {
256 revoke_timer += RANDPOLL(sys_revoke);
257 key_expire_all();
418 }
258 }
419#endif /* AUTOKEY */
420
421 /*
259
260 /*
422 * Interface update timer
261 * Finally, call the hourly routine.
423 */
262 */
424 if (interface_interval && interface_timer <= current_time) {
425 timer_interfacetimeout(current_time +
426 interface_interval);
427 DPRINTF(2, ("timer: interface update\n"));
428 interface_update(NULL, NULL);
263 if (hourly_timer <= current_time) {
264 hourly_timer += HOUR;
265 hourly_stats();
429 }
266 }
430
431 if (worker_idle_timer && worker_idle_timer <= current_time)
432 worker_idle_timer_fired();
433
434 /*
435 * Finally, write hourly stats and do the hourly
436 * and daily leapfile checks.
437 */
438 if (stats_timer <= current_time) {
439 stats_timer += SECSPERHR;
440 write_stats();
441 if (leapf_timer <= current_time) {
442 leapf_timer += SECSPERDAY;
443 check_leap_file(TRUE, now.l_ui, &tnow);
444 } else {
445 check_leap_file(FALSE, now.l_ui, &tnow);
446 }
447 }
448}
449
450
451#ifndef SYS_WINNT
452/*
453 * alarming - tell the world we've been alarmed
454 */
455static RETSIGTYPE
456alarming(
457 int sig
458 )
459{
267}
268
269
270#ifndef SYS_WINNT
271/*
272 * alarming - tell the world we've been alarmed
273 */
274static RETSIGTYPE
275alarming(
276 int sig
277 )
278{
460# ifdef DEBUG
461 const char *msg = "alarming: initializing TRUE\n";
462# endif
463
279#if !defined(VMS)
280 if (initializing)
281 return;
282 if (alarm_flag)
283 alarm_overflow++;
284 else
285 alarm_flag++;
286#else /* VMS AST routine */
464 if (!initializing) {
287 if (!initializing) {
465 if (alarm_flag) {
466 alarm_overflow++;
467# ifdef DEBUG
468 msg = "alarming: overflow\n";
469# endif
470 } else {
471# ifndef VMS
472 alarm_flag++;
473# else
474 /* VMS AST routine, increment is no good */
475 alarm_flag = 1;
476# endif
477# ifdef DEBUG
478 msg = "alarming: normal\n";
479# endif
480 }
288 if (alarm_flag) alarm_overflow++;
289 else alarm_flag = 1; /* increment is no good */
481 }
290 }
482# ifdef VMS
483 lib$addx(&vmsinc, &vmstimer, &vmstimer);
484 sys$setimr(0, &vmstimer, alarming, alarming, 0);
485# endif
486# ifdef DEBUG
487 if (debug >= 4)
488 (void)(-1 == write(1, msg, strlen(msg)));
489# endif
291 lib$addx(&vmsinc,&vmstimer,&vmstimer);
292 sys$setimr(0,&vmstimer,alarming,alarming,0);
293#endif /* VMS */
490}
491#endif /* SYS_WINNT */
492
493
294}
295#endif /* SYS_WINNT */
296
297
494void
495timer_interfacetimeout(u_long timeout)
496{
497 interface_timer = timeout;
498}
499
500
501/*
502 * timer_clr_stats - clear timer module stat counters
503 */
504void
505timer_clr_stats(void)
506{
507 timer_overflows = 0;
508 timer_xmtcalls = 0;
509 timer_timereset = current_time;
510}
511
298/*
299 * timer_clr_stats - clear timer module stat counters
300 */
301void
302timer_clr_stats(void)
303{
304 timer_overflows = 0;
305 timer_xmtcalls = 0;
306 timer_timereset = current_time;
307}
308
512
513static void
514check_leap_sec_in_progress( const leap_result_t *lsdata ) {
515 int prv_leap_sec_in_progress = leap_sec_in_progress;
516 leap_sec_in_progress = lsdata->tai_diff && (lsdata->ddist < 3);
517
518 /* if changed we may have to update the leap status sent to clients */
519 if (leap_sec_in_progress != prv_leap_sec_in_progress)
520 set_sys_leap(sys_leap);
521}
522
523
524static void
525check_leapsec(
526 u_int32 now ,
527 const time_t * tpiv ,
528 int/*BOOL*/ reset)
529{
530 static const char leapmsg_p_step[] =
531 "Positive leap second, stepped backward.";
532 static const char leapmsg_p_slew[] =
533 "Positive leap second, no step correction. "
534 "System clock will be inaccurate for a long time.";
535
536 static const char leapmsg_n_step[] =
537 "Negative leap second, stepped forward.";
538 static const char leapmsg_n_slew[] =
539 "Negative leap second, no step correction. "
540 "System clock will be inaccurate for a long time.";
541
542 leap_result_t lsdata;
543 u_int32 lsprox;
544#ifdef AUTOKEY
545 int/*BOOL*/ update_autokey = FALSE;
546#endif
547
548#ifndef SYS_WINNT /* WinNT port has its own leap second handling */
549# ifdef KERNEL_PLL
550 leapsec_electric(pll_control && kern_enable);
551# else
552 leapsec_electric(0);
553# endif
554#endif
555#ifdef LEAP_SMEAR
556 leap_smear.enabled = leap_smear_intv != 0;
557#endif
558 if (reset) {
559 lsprox = LSPROX_NOWARN;
560 leapsec_reset_frame();
561 memset(&lsdata, 0, sizeof(lsdata));
562 } else {
563 int fired;
564
565 fired = leapsec_query(&lsdata, now, tpiv);
566
567 DPRINTF(3, ("*** leapsec_query: fired %i, now %u (0x%08X), tai_diff %i, ddist %u\n",
568 fired, now, now, lsdata.tai_diff, lsdata.ddist));
569
570#ifdef LEAP_SMEAR
571 leap_smear.in_progress = 0;
572 leap_smear.doffset = 0.0;
573
574 if (leap_smear.enabled) {
575 if (lsdata.tai_diff) {
576 if (leap_smear.interval == 0) {
577 leap_smear.interval = leap_smear_intv;
578 leap_smear.intv_end = lsdata.ttime.Q_s;
579 leap_smear.intv_start = leap_smear.intv_end - leap_smear.interval;
580 DPRINTF(1, ("*** leapsec_query: setting leap_smear interval %li, begin %.0f, end %.0f\n",
581 leap_smear.interval, leap_smear.intv_start, leap_smear.intv_end));
582 }
583 } else {
584 if (leap_smear.interval)
585 DPRINTF(1, ("*** leapsec_query: clearing leap_smear interval\n"));
586 leap_smear.interval = 0;
587 }
588
589 if (leap_smear.interval) {
590 double dtemp = now;
591 if (dtemp >= leap_smear.intv_start && dtemp <= leap_smear.intv_end) {
592 double leap_smear_time = dtemp - leap_smear.intv_start;
593 /*
594 * For now we just do a linear interpolation over the smear interval
595 */
596#if 0
597 // linear interpolation
598 leap_smear.doffset = -(leap_smear_time * lsdata.tai_diff / leap_smear.interval);
599#else
600 // Google approach: lie(t) = (1.0 - cos(pi * t / w)) / 2.0
601 leap_smear.doffset = -((double) lsdata.tai_diff - cos( M_PI * leap_smear_time / leap_smear.interval)) / 2.0;
602#endif
603 /*
604 * TODO see if we're inside an inserted leap second, so we need to compute
605 * leap_smear.doffset = 1.0 - leap_smear.doffset
606 */
607 leap_smear.in_progress = 1;
608#if 0 && defined( DEBUG )
609 msyslog(LOG_NOTICE, "*** leapsec_query: [%.0f:%.0f] (%li), now %u (%.0f), smear offset %.6f ms\n",
610 leap_smear.intv_start, leap_smear.intv_end, leap_smear.interval,
611 now, leap_smear_time, leap_smear.doffset);
612#else
613 DPRINTF(1, ("*** leapsec_query: [%.0f:%.0f] (%li), now %u (%.0f), smear offset %.6f ms\n",
614 leap_smear.intv_start, leap_smear.intv_end, leap_smear.interval,
615 now, leap_smear_time, leap_smear.doffset));
616#endif
617
618 }
619 }
620 }
621 else
622 leap_smear.interval = 0;
623
624 /*
625 * Update the current leap smear offset, eventually 0.0 if outside smear interval.
626 */
627 DTOLFP(leap_smear.doffset, &leap_smear.offset);
628
629#endif /* LEAP_SMEAR */
630
631 if (fired) {
632 /* Full hit. Eventually step the clock, but always
633 * announce the leap event has happened.
634 */
635 const char *leapmsg = NULL;
636 double lswarp = lsdata.warped;
637 if (lswarp < 0.0) {
638 if (clock_max_back > 0.0 &&
639 clock_max_back < -lswarp) {
640 step_systime(lswarp);
641 leapmsg = leapmsg_p_step;
642 } else {
643 leapmsg = leapmsg_p_slew;
644 }
645 } else if (lswarp > 0.0) {
646 if (clock_max_fwd > 0.0 &&
647 clock_max_fwd < lswarp) {
648 step_systime(lswarp);
649 leapmsg = leapmsg_n_step;
650 } else {
651 leapmsg = leapmsg_n_slew;
652 }
653 }
654 if (leapmsg)
655 msyslog(LOG_NOTICE, "%s", leapmsg);
656 report_event(EVNT_LEAP, NULL, NULL);
657#ifdef AUTOKEY
658 update_autokey = TRUE;
659#endif
660 lsprox = LSPROX_NOWARN;
661 leapsec = LSPROX_NOWARN;
662 sys_tai = lsdata.tai_offs;
663 } else {
664#ifdef AUTOKEY
665 update_autokey = (sys_tai != (u_int)lsdata.tai_offs);
666#endif
667 lsprox = lsdata.proximity;
668 sys_tai = lsdata.tai_offs;
669 }
670 }
671
672 /* We guard against panic alarming during the red alert phase.
673 * Strange and evil things might happen if we go from stone cold
674 * to piping hot in one step. If things are already that wobbly,
675 * we let the normal clock correction take over, even if a jump
676 * is involved.
677 * Also make sure the alarming events are edge-triggered, that is,
678 * ceated only when the threshold is crossed.
679 */
680 if ( (leapsec > 0 || lsprox < LSPROX_ALERT)
681 && leapsec < lsprox ) {
682 if ( leapsec < LSPROX_SCHEDULE
683 && lsprox >= LSPROX_SCHEDULE) {
684 if (lsdata.dynamic)
685 report_event(PEVNT_ARMED, sys_peer, NULL);
686 else
687 report_event(EVNT_ARMED, NULL, NULL);
688 }
689 leapsec = lsprox;
690 }
691 if (leapsec > lsprox) {
692 if ( leapsec >= LSPROX_SCHEDULE
693 && lsprox < LSPROX_SCHEDULE) {
694 report_event(EVNT_DISARMED, NULL, NULL);
695 }
696 leapsec = lsprox;
697 }
698
699 if (leapsec >= LSPROX_SCHEDULE)
700 leapdif = lsdata.tai_diff;
701 else
702 leapdif = 0;
703
704 check_leap_sec_in_progress(&lsdata);
705
706#ifdef AUTOKEY
707 if (update_autokey)
708 crypto_update_taichange();
709#endif
710}