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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
/*
* ntp_timer.c - event timer support routines
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/time.h>
#include <signal.h>
#include <sys/signal.h>
#include "ntpd.h"
#include "ntp_stdlib.h"
/*
* These routines provide support for the event timer. The timer is
* implemented by an interrupt routine which sets a flag once every
* 2**EVENT_TIMEOUT seconds (currently 4), and a timer routine which
* is called when the mainline code gets around to seeing the flag.
* The timer routine dispatches the clock adjustment code if its time
* has come, then searches the timer queue for expiries which are
* dispatched to the transmit procedure. Finally, we call the hourly
* procedure to do cleanup and print a message.
*/
/*
* Alarm flag. The mainline code imports this.
*/
volatile int alarm_flag;
/*
* adjust and hourly counters
*/
static u_long adjust_timer;
static u_long hourly_timer;
/*
* Imported from the leap module. The leap timer.
*/
extern u_long leap_timer;
/*
* Statistics counter for the interested.
*/
volatile u_long alarm_overflow;
#define HOUR (60*60)
/*
* Current_time holds the number of seconds since we started, in
* increments of 2**EVENT_TIMEOUT seconds. The timer queue is the
* hash into which we sort timer entries.
*/
u_long current_time;
struct event timerqueue[TIMER_NSLOTS];
/*
* Stats. Number of overflows and number of calls to transmit().
*/
u_long timer_timereset;
u_long timer_overflows;
u_long timer_xmtcalls;
#ifndef SYS_WINNT
static RETSIGTYPE alarming P((int));
#else
void PASCAL alarming P((UINT,UINT,DWORD,DWORD,DWORD));
#endif /* SYS_WINNT */
#if defined(VMS)
static int vmstimer[2]; /* time for next timer AST */
static int vmsinc[2]; /* timer increment */
#endif /* VMS */
/*
* init_timer - initialize the timer data structures
*/
void
init_timer()
{
register int i;
#if !defined(VMS)
# ifndef SYS_WINNT
#ifndef HAVE_TIMER_SETTIME
struct itimerval itimer;
#else
static timer_t xntpd_timerid; /* should be global if we ever want to kill
timer without rebooting ... */
struct itimerspec itimer;
#endif
# else /* SYS_WINNT */
TIMECAPS tc;
HANDLE hToken;
TOKEN_PRIVILEGES tkp;
UINT wTimerRes, wTimerID;
extern HANDLE hMutex;
# endif /* SYS_WINNT */
#endif /* VMS */
/*
* Initialize...
*/
alarm_flag = 0;
alarm_overflow = 0;
adjust_timer = 1;
hourly_timer = HOUR;
current_time = 0;
timer_overflows = 0;
timer_xmtcalls = 0;
timer_timereset = 0;
for (i = 0; i < TIMER_NSLOTS; i++) {
/*
* Queue pointers should point at themselves. Event
* times must be set to 0 since this is used to
* detect the queue end.
*/
timerqueue[i].next = &timerqueue[i];
timerqueue[i].prev = &timerqueue[i];
timerqueue[i].event_time = 0;
}
#ifndef SYS_WINNT
/*
* Set up the alarm interrupt. The first comes 2**EVENT_TIMEOUT
* seconds from now and they continue on every 2**EVENT_TIMEOUT
* seconds.
*/
# if !defined(VMS)
#if defined(HAVE_TIMER_CREATE) && defined(HAVE_TIMER_SETTIME)
if (timer_create (CLOCK_REALTIME, NULL, &xntpd_timerid) ==
#ifdef SYS_VXWORKS
ERROR
#else
-1
#endif
)
{
fprintf (stderr, "timer create FAILED\n");
exit (0);
}
(void) signal_no_reset(SIGALRM, alarming);
itimer.it_interval.tv_sec = itimer.it_value.tv_sec = (1<<EVENT_TIMEOUT);
itimer.it_interval.tv_nsec = itimer.it_value.tv_nsec = 0;
timer_settime(xntpd_timerid, 0 /*!TIMER_ABSTIME*/, &itimer, NULL);
#else
(void) signal_no_reset(SIGALRM, alarming);
itimer.it_interval.tv_sec = itimer.it_value.tv_sec = (1<<EVENT_TIMEOUT);
itimer.it_interval.tv_usec = itimer.it_value.tv_usec = 0;
setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0);
#endif
# else /* VMS */
vmsinc[0] = 10000000; /* 1 sec */
vmsinc[1] = 0;
lib$emul(&(1<<EVENT_TIMEOUT), &vmsinc, &0, &vmsinc);
sys$gettim(&vmstimer); /* that's "now" as abstime */
lib$addx(&vmsinc, &vmstimer, &vmstimer);
sys$setimr(0, &vmstimer, alarming, alarming, 0);
# endif /* VMS */
#else /* SYS_WINNT */
_tzset();
/*
* Get privileges needed for fiddling with the clock
*/
/* get the current process token handle */
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) {
msyslog(LOG_ERR, "OpenProcessToken failed: %m");
exit(1);
}
/* get the LUID for system-time privilege. */
LookupPrivilegeValue(NULL, SE_SYSTEMTIME_NAME, &tkp.Privileges[0].Luid);
tkp.PrivilegeCount = 1; /* one privilege to set */
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
/* get set-time privilege for this process. */
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, (PTOKEN_PRIVILEGES) NULL, 0);
/* cannot test return value of AdjustTokenPrivileges. */
if (GetLastError() != ERROR_SUCCESS)
msyslog(LOG_ERR, "AdjustTokenPrivileges failed: %m");
/*
* Set up timer interrupts for every 2**EVENT_TIMEOUT seconds
* Under Windows/NT, expiry of timer interval leads to invocation
* of a callback function (on a different thread) rather than
* generating an alarm signal
*/
/* determine max and min resolution supported */
if(timeGetDevCaps(&tc, sizeof(TIMECAPS)) != TIMERR_NOERROR) {
msyslog(LOG_ERR, "timeGetDevCaps failed: %m");
exit(1);
}
wTimerRes = min(max(tc.wPeriodMin, TARGET_RESOLUTION), tc.wPeriodMax);
/* establish the minimum timer resolution that we'll use */
timeBeginPeriod(wTimerRes);
hMutex = CreateMutex(
NULL, /* no security attributes */
FALSE, /* initially not owned */
"MutexForNTP"); /* name of mutex */
if (hMutex == NULL) {
msyslog(LOG_ERR, "cannot create a mutex: %m\n");
exit(1);
}
/* start the timer event */
wTimerID = timeSetEvent(
(1<<EVENT_TIMEOUT) * 1000, /* Delay in ms */
wTimerRes, /* Resolution */
(LPTIMECALLBACK) alarming, /* Callback function */
(DWORD) 0, /* User data */
TIME_PERIODIC); /* Event type (periodic) */
if (wTimerID == 0) {
msyslog(LOG_ERR, "timeSetEvent failed: %m");
exit(1);
}
#endif /* SYS_WINNT */
}
#ifdef TIMERQUEUE_DEBUG
/* Timer queue sanity checking routines */
static void EV_ASSERT(struct event *ev, char *m)
{
if ( ! ev )
{ msyslog(LOG_ERR, "%s is NULL, aborting!",m); abort(); }
}
static void EV_LINKCHK(struct event *ev, char *m)
{
if ( ! ev )
{ msyslog(LOG_ERR, "%s is NULL, aborting!",m); abort(); }
if ( ! ev->next )
{ msyslog(LOG_ERR, "%s->next is NULL, aborting!",m); abort(); }
if ( ! ev->prev )
{ msyslog(LOG_ERR, "%s->prev is NULL, aborting!",m); abort(); }
if ( ev->next->prev != ev )
{ msyslog(LOG_ERR, "%s->next->prev != self, aborting!",m); abort(); }
if ( ev->prev->next != ev )
{ msyslog(LOG_ERR, "%s->prev->next != self, aborting!",m); abort(); }
}
#else /* TIMERQUEUE_DEBUG */
# define EV_ASSERT() {}
# define EV_LINKCHK() {}
#endif /* TIMERQUEUE_DEBUG */
/*
* timer - dispatch anyone who needs to be
*/
void
timer()
{
register struct event *ev;
register struct event *tq;
#ifdef SYS_WINNT
extern HANDLE hMutex;
#endif
current_time += (1<<EVENT_TIMEOUT);
/*
* Adjustment timeout first
*/
if (adjust_timer <= current_time) {
adjust_timer += 1;
adj_host_clock();
}
#ifdef SYS_WINNT
if (!ReleaseMutex(hMutex)) {
msyslog(LOG_ERR, "alarming cannot release mutex: %m\n");
exit(1);
}
#endif /* SYS_WINNT */
/*
* Leap timer next.
*/
if (leap_timer != 0 && leap_timer <= current_time)
leap_process();
/*
* Now dispatch any peers whose event timer has expired.
*/
/* Added mutex to prevent race condition among threads under Windows NT */
#ifdef SYS_WINNT
WaitForSingleObject(m_hListMutex,INFINITE);
#endif /* SYS_WINNT */
#ifdef TIMERQUEUE_DEBUG
{
int i;
int j;
for (i = 0; i < TIMER_NSLOTS; ++i)
{
struct event *qh;
qh = ev = &timerqueue[i];
if (qh->event_time != 0) {
msyslog(LOG_ERR, "timerqueue[%d].event_time is %d instead of 0!",
i, timerqueue[i].event_time);
abort();
}
j = 0;
do
{
if (ev->prev->next != ev) {
msyslog(LOG_ERR, "timerqueue[%d]: #%d: ev->prev->next != ev",
i, j);
abort();
}
if (ev->next->prev != ev) {
msyslog(LOG_ERR, "timerqueue[%d]: #%d: ev->next->prev != ev",
i, j);
abort();
}
++j;
ev = ev->next;
}
while (qh != ev);
}
}
#endif /* TIMERQUEUE_DEBUG */
tq = &timerqueue[TIMER_SLOT(current_time)];
if (tq) {
ev = tq->next;
while (ev
&& ev->event_time != 0
&& ev->event_time < (current_time + (1<<EVENT_TIMEOUT))) {
tq->next = ev->next;
tq->next->prev = tq;
ev->prev = ev->next = 0;
timer_xmtcalls++;
ev->event_handler(ev->peer);
ev = tq->next;
}
if (!ev) {
msyslog(LOG_ERR, "timer: ev was NIL!");
abort();
}
} else {
msyslog(LOG_ERR, "timer: tq was NIL!");
abort();
}
/* Added mutex to prevent race condition among threads under Windows NT */
#ifdef SYS_WINNT
ReleaseMutex(m_hListMutex);
#endif /* SYS_WINNT */
/*
* Finally, call the hourly routine
*/
if (hourly_timer <= current_time) {
hourly_timer += HOUR;
hourly_stats();
}
}
#ifndef SYS_WINNT
/*
* alarming - tell the world we've been alarmed
*/
static RETSIGTYPE
alarming(sig)
int sig;
{
extern int initializing; /* from main line code */
#if !defined(VMS)
if (initializing)
return;
if (alarm_flag)
alarm_overflow++;
else
alarm_flag++;
#else /* VMS AST routine */
if (!initializing) {
if (alarm_flag) alarm_overflow++;
else alarm_flag = 1; /* increment is no good */
}
lib$addx(&vmsinc,&vmstimer,&vmstimer);
sys$setimr(0,&vmstimer,alarming,alarming,0);
#endif /* VMS */
}
#else /* SYS_WINNT */
/*
* alarming for WinNT - invoke the timer() routine after grabbing the mutex
*/
void PASCAL alarming (UINT wTimerID, UINT msg,
DWORD dwUser, DWORD dw1, DWORD dw2)
{
extern int debug;
static int initializing2 = 1;
extern HANDLE hMutex;
DWORD dwWaitResult;
extern HANDLE TimerThreadHandle;
static DWORD threadID;
#ifdef DEBUG
SYSTEMTIME st;
#endif
/*
* set the priority for timer() thread to be higher than the main thread
*/
if (initializing2) {
TimerThreadHandle = GetCurrentThread();
if (!SetThreadPriority(TimerThreadHandle, (DWORD) THREAD_PRIORITY_HIGHEST))
msyslog(LOG_ERR, "SetThreadPriority failed: %m");
threadID = GetCurrentThreadId();
initializing2 = 0;
}
#ifdef DEBUG
if (debug > 9) {
GetSystemTime(&st);
printf("thread %u (timer callback): time %02u:%02u:%02u:%03u\n",
threadID, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
fflush(stdout);
}
#endif
dwWaitResult = WaitForSingleObject(
hMutex, /* handle of mutex */
5000L); /* five-second time-out interval */
switch (dwWaitResult) {
case WAIT_OBJECT_0:
/* The thread got mutex ownership. */
/* the mutex is released in the timer() routine */
timer();
break;
default:
/* Cannot get mutex ownership due to time-out. */
msyslog(LOG_ERR, "alarming error with mutex: %m\n");
exit(1);
}
UNREFERENCED_PARAMETER(dw1);
UNREFERENCED_PARAMETER(dw2);
UNREFERENCED_PARAMETER(dwUser);
UNREFERENCED_PARAMETER(msg);
UNREFERENCED_PARAMETER(wTimerID);
}
#endif /* SYS_WINNT */
/*
* timer_clr_stats - clear timer module stat counters
*/
void
timer_clr_stats()
{
timer_overflows = 0;
timer_xmtcalls = 0;
timer_timereset = current_time;
}
#ifdef TIMERQUEUE_DEBUG
/* macro versions of these routines are available in include/ntp.h */
# ifdef SYS_WINNT /* WindowsNT apparently needs mutex locking around here */
# define WINNT_WAIT() WaitForSingleObject(m_hListMutex,INFINITE)
# define WINNT_RELS() ReleaseMutex(m_hListMutex)
# else
# define WINNT_WAIT() {}
# define WINNT_RELS() {}
# endif
/*
* TIMER_ENQUEUE() puts stuff on the timer queue. It takes as
* arguments (ea), an array of event slots, and (iev), the event
* to be inserted. This one searches the hash bucket from the
* end, and is about optimum for the timing requirements of
* NTP peers.
*/
void TIMER_ENQUEUE(struct event *ea, struct event *iev)
{
register struct event *ev;
EV_LINKCHK( ea, "TIMER_ENQUEUE(): ea" );
EV_ASSERT( iev, "TIMER_ENQUEUE(): iev" );
WINNT_WAIT();
ev = (ea)[TIMER_SLOT((iev)->event_time)].prev;
EV_LINKCHK( ev, "TIMER_ENQUEUE(): ev" );
while (ev->event_time > (iev)->event_time) {
ev = ev->prev;
EV_LINKCHK( ev, "TIMER_ENQUEUE(): ev" );
}
(iev)->prev = ev;
(iev)->next = ev->next;
(ev)->next->prev = (iev);
(ev)->next = (iev);
WINNT_RELS();
}
/*
* TIMER_INSERT() also puts stuff on the timer queue, but searches the
* bucket from the top. This is better for things that do very short
* time outs, like clock support.
*/
void TIMER_INSERT(struct event *ea, struct event *iev)
{
register struct event *ev;
EV_LINKCHK( ea, "TIMER_INSERT(): ea" );
EV_ASSERT( iev, "TIMER_INSERT(): iev" );
WINNT_WAIT();
ev = (ea)[TIMER_SLOT((iev)->event_time)].next;
EV_LINKCHK( ev, "TIMER_INSERT(): ev" );
while (ev->event_time != 0 &&
ev->event_time < (iev)->event_time) {
ev = ev->next;
EV_LINKCHK( ev, "TIMER_INSERT(): ev" );
}
(iev)->next = ev;
(iev)->prev = ev->prev;
(ev)->prev->next = (iev);
(ev)->prev = (iev);
WINNT_RELS();
}
/*
* Remove an event from the queue.
*/
void TIMER_DEQUEUE(struct event *ev)
{
EV_ASSERT( ev, "TIMER_DEQUEUE(): ev" );
WINNT_WAIT();
if ((ev)->next != 0) {
EV_LINKCHK( ev, "TIMER_DEQUEUE(): ev" );
(ev)->next->prev = (ev)->prev;
(ev)->prev->next = (ev)->next;
(ev)->next = (ev)->prev = 0;
}
WINNT_RELS();
}
#endif /* TIMERQUEUE_DEBUG */
|