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 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
|
/*
htpdate v1.1.0
Eddy Vervest <eddy@vervest.org>
http://www.vervest.org/htp
Synchronize local workstation with time offered by remote web servers
This program works with the timestamps return by web servers,
formatted as specified by HTTP/1.1 (RFC 2616, RFC 1123).
Example usage:
Debug mode (shows raw timestamps, round trip time (RTT) and
time difference):
~# htpdate -d www.linux.org www.freebsd.org
Adjust time smoothly:
~# htpdate -a www.linux.org www.freebsd.org
...see man page for more details
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
http://www.gnu.org/copyleft/gpl.html
*/
/* Needed to avoid implicit warnings from strptime */
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <netdb.h>
#include <time.h>
#include <sys/time.h>
#include <sys/timex.h>
#include <syslog.h>
#include <stdarg.h>
#include <limits.h>
#include <pwd.h>
#include <grp.h>
#define VERSION "1.1.0"
#define MAX_HTTP_HOSTS 15 /* 16 web servers */
#define DEFAULT_HTTP_PORT "80"
#define DEFAULT_PROXY_PORT "8080"
#define DEFAULT_IP_VERSION PF_UNSPEC /* IPv6 and IPv4 */
#define DEFAULT_HTTP_VERSION "1" /* HTTP/1.1 */
#define DEFAULT_TIME_LIMIT 31536000 /* 1 year */
#define DEFAULT_MIN_SLEEP 1800 /* 30 minutes */
#define DEFAULT_MAX_SLEEP 115200 /* 32 hours */
#define MAX_DRIFT 32768000 /* 500 PPM */
#define MAX_ATTEMPT 2 /* Poll attempts */
#define DEFAULT_PID_FILE "/var/run/htpdate.pid"
#define URLSIZE 128
#define BUFFERSIZE 1024
#define sign(x) (x < 0 ? (-1) : 1)
/* By default we turn off "debug" and "log" mode */
static int debug = 0;
static int logmode = 0;
static time_t gmtoffset;
/* Insertion sort is more efficient (and smaller) than qsort for small lists */
static void insertsort( int a[], int length ) {
int i, j, value;
for ( i = 1; i < length; i++ ) {
value = a[i];
for ( j = i - 1; j >= 0 && a[j] > value; j-- )
a[j+1] = a[j];
a[j+1] = value;
}
}
/* Split argument in hostname/IP-address and TCP port
Supports IPv6 literal addresses, RFC 2732.
*/
static void splithostport( char **host, char **port ) {
char *rb, *rc, *lb, *lc;
lb = strchr( *host, '[' );
rb = strrchr( *host, ']' );
lc = strchr( *host, ':' );
rc = strrchr( *host, ':' );
/* A (litteral) IPv6 address with portnumber */
if ( rb < rc && lb != NULL && rb != NULL ) {
rb[0] = '\0';
*port = rc + 1;
*host = lb + 1;
return;
}
/* A (litteral) IPv6 address without portnumber */
if ( rb != NULL && lb != NULL ) {
rb[0] = '\0';
*host = lb + 1;
return;
}
/* A IPv4 address or hostname with portnumber */
if ( rc != NULL && lc == rc ) {
rc[0] = '\0';
*port = rc + 1;
return;
}
}
/* Printlog is a slighty modified version from the one used in rdate */
static void printlog( int is_error, char *format, ... ) {
va_list args;
char buf[128];
va_start(args, format);
(void) vsnprintf(buf, sizeof(buf), format, args);
va_end(args);
if ( logmode )
syslog(is_error?LOG_WARNING:LOG_INFO, "%s", buf);
else
fprintf(is_error?stderr:stdout, "%s\n", buf);
}
static long getHTTPdate( char *host, char *port, char *proxy, char *proxyport, char *httpversion, int ipversion, int when ) {
int server_s;
int rc;
struct addrinfo hints, *res, *res0;
struct tm tm;
struct timeval timevalue = {LONG_MAX, 0};
struct timeval timeofday;
struct timespec sleepspec, remainder;
long rtt;
char buffer[BUFFERSIZE];
char remote_time[25] = { '\0' };
char url[URLSIZE] = { '\0' };
char *pdate = NULL;
/* Connect to web server via proxy server or directly */
memset( &hints, 0, sizeof(hints) );
switch( ipversion ) {
case 4: /* IPv4 only */
hints.ai_family = AF_INET;
break;
case 6: /* IPv6 only */
hints.ai_family = AF_INET6;
break;
default: /* Support IPv6 and IPv4 name resolution */
hints.ai_family = PF_UNSPEC;
}
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_CANONNAME;
if ( proxy == NULL ) {
rc = getaddrinfo( host, port, &hints, &res0 );
} else {
snprintf( url, URLSIZE, "http://%s:%s", host, port);
rc = getaddrinfo( proxy, proxyport, &hints, &res0 );
}
/* Was the hostname and service resolvable? */
if ( rc ) {
printlog( 1, "%s host or service unavailable", host );
return(0); /* Assume correct time */
}
/* Build a combined HTTP/1.0 and 1.1 HEAD request
Pragma: no-cache, "forces" an HTTP/1.0 and 1.1 compliant
web server to return a fresh timestamp
Connection: close, allows the server the immediately close the
connection after sending the response.
*/
snprintf(buffer, BUFFERSIZE, "HEAD %s/ HTTP/1.%s\r\nHost: %s\r\nUser-Agent: htpdate/"VERSION"\r\nPragma: no-cache\r\nCache-Control: no-cache\r\nConnection: close\r\n\r\n", url, httpversion, host);
/* Loop through the available canonical names */
res = res0;
do {
server_s = socket( res->ai_family, res->ai_socktype, res->ai_protocol );
if ( server_s < 0 ) {
continue;
}
rc = connect( server_s, res->ai_addr, res->ai_addrlen );
if ( rc ) {
close( server_s);
server_s = -1;
continue;
}
break;
} while ( ( res = res->ai_next ) );
freeaddrinfo(res0);
if ( rc ) {
printlog( 1, "%s connection failed", host );
return(0); /* Assume correct time */
}
/* Initialize timer */
gettimeofday(&timeofday, NULL);
/* Initialize RTT (start of measurement) */
rtt = timeofday.tv_sec;
/* Wait till we reach the desired time, "when" */
sleepspec.tv_sec = 0;
if ( when >= timeofday.tv_usec ) {
sleepspec.tv_nsec = ( when - timeofday.tv_usec ) * 1000;
} else {
sleepspec.tv_nsec = ( 1000000 + when - timeofday.tv_usec ) * 1000;
rtt++;
}
nanosleep( &sleepspec, &remainder );
/* Send HEAD request */
if ( send(server_s, buffer, strlen(buffer), 0) < 0 )
printlog( 1, "Error sending" );
/* Receive data from the web server
The return code from recv() is the number of bytes received
*/
if ( recv(server_s, buffer, BUFFERSIZE, 0) != -1 ) {
/* Assuming that network delay (server->htpdate) is neglectable,
the received web server time "should" match the local time.
From RFC 2616 paragraph 14.18
...
It SHOULD represent the best available approximation
of the date and time of message generation, unless the
implementation has no means of generating a reasonably
accurate date and time.
...
*/
gettimeofday(&timeofday, NULL);
/* rtt contains round trip time in micro seconds, now! */
rtt = ( timeofday.tv_sec - rtt ) * 1000000 + \
timeofday.tv_usec - when;
/* Look for the line that contains Date: */
if ( (pdate = strstr(buffer, "Date: ")) != NULL ) {
strncpy(remote_time, pdate + 11, 24);
if ( strptime( remote_time, "%d %b %Y %T", &tm) != NULL) {
/* Web server timestamps are without daylight saving */
tm.tm_isdst = 0;
timevalue.tv_sec = mktime(&tm);
} else {
printlog( 1, "%s unknown time format", host );
}
/* Print host, raw timestamp, round trip time */
if ( debug )
printlog( 0, "%-25s %s (%.3f) => %li", host, remote_time, \
rtt * 1e-6, timevalue.tv_sec - timeofday.tv_sec \
+ gmtoffset );
} else {
printlog( 1, "%s no timestamp", host );
}
} /* bytes received */
close( server_s );
/* Return the time delta between web server time (timevalue)
and system time (timeofday)
*/
return( timevalue.tv_sec - timeofday.tv_sec + gmtoffset );
}
static int setclock( double timedelta, int setmode ) {
struct timeval timeofday;
if ( timedelta == 0 ) {
printlog( 0, "No time correction needed" );
return(0);
}
switch ( setmode ) {
case 0: /* No time adjustment, just print time */
printlog( 0, "Offset %.3f seconds", timedelta );
return(0);
case 1: /* Adjust time smoothly */
timeofday.tv_sec = (long)timedelta;
timeofday.tv_usec = (long)((timedelta - timeofday.tv_sec) * 1000000);
printlog( 0, "Adjusting %.3f seconds", timedelta );
/* Become root */
if ( seteuid(0) ) {
printlog( 1, "seteuid()" );
exit(1);
} else {
return( adjtime(&timeofday, NULL) );
}
case 2: /* Set time */
printlog( 0, "Setting %.3f seconds", timedelta );
gettimeofday( &timeofday, NULL );
timedelta += ( timeofday.tv_sec + timeofday.tv_usec*1e-6 );
timeofday.tv_sec = (long)timedelta;
timeofday.tv_usec = (long)(timedelta - timeofday.tv_sec) * 1000000;
printlog( 0, "Set: %s", asctime(localtime(&timeofday.tv_sec)) );
/* Become root */
if ( seteuid(0) ) {
printlog( 1, "seteuid()" );
exit(1);
} else {
return( settimeofday(&timeofday, NULL) );
}
case 3: /* Set frequency, but first an adjust */
return( setclock( timedelta, 1 ) );
default:
return(-1);
}
}
static int htpdate_adjtimex( double drift ) {
struct timex tmx;
long freq;
/* Read current kernel frequency */
tmx.modes = 0;
ntp_adjtime(&tmx);
/* Calculate new frequency */
freq = (long)(65536e6 * drift);
/* Take the average of current and new drift values */
tmx.freq = tmx.freq + (freq >> 1);
if ( (tmx.freq < -MAX_DRIFT) || (tmx.freq > MAX_DRIFT) )
tmx.freq = sign(tmx.freq) * MAX_DRIFT;
printlog( 0, "Adjusting frequency %li", tmx.freq );
tmx.modes = MOD_FREQUENCY;
/* Become root */
if ( seteuid(0) ) {
printlog( 1, "seteuid()" );
exit(1);
} else {
return( ntp_adjtime(&tmx) );
}
}
static void showhelp() {
puts("htpdate version "VERSION"\n\
Usage: htpdate [-046abdhlqstxD] [-i pid file] [-m minpoll] [-M maxpoll]\n\
[-p precision] [-P <proxyserver>[:port]] [-u user[:group]]\n\
<host[:port]> ...\n\n\
-0 HTTP/1.0 request\n\
-4 Force IPv4 name resolution only\n\
-6 Force IPv6 name resolution only\n\
-a adjust time smoothly\n\
-b burst mode\n\
-d debug mode\n\
-D daemon mode\n\
-h help\n\
-i pid file\n\
-l use syslog for output\n\
-m minimum poll interval\n\
-M maximum poll interval\n\
-p precision (ms)\n\
-P proxy server\n\
-q query only, don't make time changes (default)\n\
-s set time\n\
-t turn off sanity time check\n\
-u run daemon as user\n\
-x adjust kernel clock\n\
host web server hostname or ip address (maximum of 16)\n\
port port number (default 80 and 8080 for proxy server)\n");
return;
}
/* Run htpdate in daemon mode */
static void runasdaemon( char *pidfile ) {
FILE *pid_file;
pid_t pid;
/* Check if htpdate is already running (pid exists)*/
pid_file = fopen(pidfile, "r");
if ( pid_file ) {
fputs( "htpdate already running\n", stderr );
exit(1);
}
pid = fork();
if ( pid < 0 ) {
fputs( "fork()\n", stderr );
exit(1);
}
if ( pid > 0 ) {
exit(0);
}
/* Create a new SID for the child process */
if ( setsid () < 0 )
exit(1);
/* Close out the standard file descriptors */
close( STDIN_FILENO );
close( STDOUT_FILENO );
close( STDERR_FILENO );
signal(SIGHUP, SIG_IGN);
/* Change the file mode mask */
umask(0);
/* Change the current working directory */
if ( chdir("/") < 0 ) {
printlog( 1, "chdir()" );
exit(1);
}
/* Second fork, to become the grandchild */
pid = fork();
if ( pid < 0 ) {
printlog( 1, "fork()" );
exit(1);
}
if ( pid > 0 ) {
/* Write a pid file */
pid_file = fopen( pidfile, "w" );
if ( !pid_file ) {
printlog( 1, "Error writing pid file" );
exit(1);
} else {
fprintf( pid_file, "%u\n", (unsigned short)pid );
fclose( pid_file );
}
printlog( 0, "htpdate version "VERSION" started" );
exit(0);
}
}
int main( int argc, char *argv[] ) {
char *host = NULL, *proxy = NULL, *proxyport = NULL;
char *port;
char *httpversion = DEFAULT_HTTP_VERSION;
char *pidfile = DEFAULT_PID_FILE;
char *user = NULL, *userstr = NULL, *group = NULL;
long long sumtimes;
double timeavg, drift = 0;
int timedelta[(MAX_HTTP_HOSTS+1)*(MAX_HTTP_HOSTS+1)-1], timestamp;
int numservers, validtimes, goodtimes, mean;
int nap = 0, when = 500000, precision = 0;
int setmode = 0, burstmode = 0, try, offsetdetect;
int i, burst, param;
int daemonize = 0;
int ipversion = DEFAULT_IP_VERSION;
int timelimit = DEFAULT_TIME_LIMIT;
int minsleep = DEFAULT_MIN_SLEEP;
int maxsleep = DEFAULT_MAX_SLEEP;
int sleeptime = minsleep;
int sw_uid = 0, sw_gid = 0;
time_t starttime = 0;
struct passwd *pw;
struct group *gr;
extern char *optarg;
extern int optind;
/* Parse the command line switches and arguments */
while ( (param = getopt(argc, argv, "046abdhi:lm:p:qstu:xDM:P:") ) != -1)
switch( param ) {
case '0': /* HTTP/1.0 */
httpversion = "0";
break;
case '4': /* IPv4 only */
ipversion = 4;
break;
case '6': /* IPv6 only */
ipversion = 6;
break;
case 'a': /* adjust time */
setmode = 1;
break;
case 'b': /* burst mode */
burstmode = 1;
break;
case 'd': /* turn debug on */
debug = 1;
break;
case 'h': /* show help */
showhelp();
exit(0);
case 'i': /* pid file */
pidfile = (char *)optarg;
break;
case 'l': /* log mode */
logmode = 1;
break;
case 'm': /* minimum poll interval */
if ( ( minsleep = atoi(optarg) ) <= 0 ) {
fputs( "Invalid sleep time\n", stderr );
exit(1);
}
sleeptime = minsleep;
break;
case 'p': /* precision */
precision = atoi(optarg) ;
if ( (precision <= 0) || (precision >= 500) ) {
fputs( "Invalid precision\n", stderr );
exit(1);
}
precision *= 1000;
break;
case 'q': /* query only */
break;
case 's': /* set time */
setmode = 2;
break;
case 't': /* disable "sanity" time check */
timelimit = 2100000000;
break;
case 'u': /* drop root privileges and run as user */
user = (char *)optarg;
userstr = strchr( user, ':' );
if ( userstr != NULL ) {
userstr[0] = '\0';
group = userstr + 1;
}
if ( (pw = getpwnam(user)) != NULL ) {
sw_uid = pw->pw_uid;
sw_gid = pw->pw_gid;
} else {
printf( "Unknown user %s\n", user );
exit(1);
}
if ( group != NULL ) {
if ( (gr = getgrnam(group)) != NULL ) {
sw_gid = gr->gr_gid;
} else {
printf( "Unknown group %s\n", group );
exit(1);
}
}
break;
case 'x': /* adjust time and "kernel" */
setmode = 3;
break;
case 'D': /* run as daemon */
daemonize = 1;
logmode = 1;
break;
case 'M': /* maximum poll interval */
if ( ( maxsleep = atoi(optarg) ) <= 0 ) {
fputs( "Invalid sleep time\n", stderr );
exit(1);
}
break;
case 'P':
proxy = (char *)optarg;
proxyport = DEFAULT_PROXY_PORT;
splithostport( &proxy, &proxyport );
break;
case '?':
return 1;
default:
abort();
}
/* Display help page, if no servers are specified */
if ( argv[optind] == NULL ) {
showhelp();
exit(1);
}
/* Exit if too many servers are specified */
numservers = argc - optind;
if ( numservers > MAX_HTTP_HOSTS ) {
fputs( "Too many servers\n", stderr );
exit(1);
}
/* One must be "root" to change the system time */
if ( (getuid() != 0) && (setmode || daemonize) ) {
fputs( "Only root can change time\n", stderr );
exit(1);
}
/* Run as a daemonize when -D is set */
if ( daemonize ) {
runasdaemon( pidfile );
/* Query only mode doesn't exist in daemon mode */
if ( !setmode )
setmode = 1;
}
/* Now we are root, we drop the privileges (if specified) */
if ( sw_uid ) seteuid( sw_uid );
if ( sw_gid ) setegid( sw_gid );
/* Calculate GMT offset from local timezone */
time(&gmtoffset);
gmtoffset -= mktime(gmtime(&gmtoffset));
/* In case we have more than one web server defined, we
spread the polls equal within a second and take a "nap" in between
*/
if ( numservers > 1 )
if ( precision && (numservers > 2) )
nap = (1000000 - 2*precision) / (numservers - 1);
else
nap = 1000000 / (numservers + 1);
else {
precision = 0;
nap = 500000;
}
/* Infinite poll cycle loop in daemonize mode */
do {
/* Initialize number of received valid timestamps, good timestamps
and the average of the good timestamps
*/
validtimes = goodtimes = sumtimes = offsetdetect = 0;
if ( precision )
when = precision;
else
when = nap;
/* Loop through the time sources (web servers); poll cycle */
for ( i = optind; i < argc; i++ ) {
/* host:port is stored in argv[i] */
host = (char *)argv[i];
port = DEFAULT_HTTP_PORT;
splithostport( &host, &port );
/* if burst mode, reset "when" */
if ( burstmode ) {
if ( precision )
when = precision;
else
when = nap;
}
burst = 0;
do {
/* Retry if first poll shows time offset */
try = MAX_ATTEMPT;
do {
if ( debug ) printlog( 0, "burst: %d try: %d when: %d", \
burst + 1, MAX_ATTEMPT - try + 1, when );
timestamp = getHTTPdate( host, port, proxy, proxyport,\
httpversion, ipversion, when );
try--;
} while ( timestamp && try );
/* Only include valid responses in timedelta[] */
if ( timestamp < timelimit && timestamp > -timelimit ) {
timedelta[validtimes] = timestamp;
validtimes++;
}
/* If we detected a time offset, set the flag */
if ( timestamp )
offsetdetect = 1;
/* Take a nap, to spread polls equally within a second.
Example:
2 servers => 0.333, 0.666
3 servers => 0.250, 0.500, 0.750
4 servers => 0.200, 0.400, 0.600, 0.800
...
nap = 1000000 / (#servers + 1)
or when "precision" is specified, a different algorithm is used
*/
when += nap;
burst++;
} while ( burst < (argc - optind) * burstmode );
/* Sleep for a while, unless we detected a time offset */
if ( daemonize && !offsetdetect )
sleep( sleeptime / numservers );
}
/* Sort the timedelta results */
insertsort( timedelta, validtimes );
/* Mean time value */
mean = timedelta[validtimes/2];
/* Filter out the bogus timevalues. A timedelta which is more than
1 seconde off from mean, is considered a 'false ticker'.
NTP synced web servers can never be more off than a second.
*/
for ( i = 0; i < validtimes; i++ ) {
if ( timedelta[i]-mean <= 1 && timedelta[i]-mean >= -1 ) {
sumtimes += timedelta[i];
goodtimes++;
}
}
/* Check if we have at least one valid response */
if ( goodtimes ) {
timeavg = sumtimes/(double)goodtimes;
if ( debug ) {
printlog( 0, "#: %d mean: %d average: %.3f", goodtimes, \
mean, timeavg );
printlog( 0, "Timezone: GMT%+li (%s,%s)", gmtoffset/3600, tzname[0], tzname[1] );
}
/* Do I really need to change the time? */
if ( sumtimes || !daemonize ) {
/* If a precision was specified and the time offset is small
(< +-1 second), adjust the time with the value of precision
*/
if ( precision && sumtimes < goodtimes && sumtimes > -goodtimes )
timeavg = (double)precision / 1000000 * sign(sumtimes);
/* Correct the clock, if not in "adjtimex" mode */
if ( setclock( timeavg, setmode ) < 0 )
printlog( 1, "Time change failed" );
/* Drop root privileges again */
if ( sw_uid ) seteuid( sw_uid );
if ( daemonize ) {
if ( starttime ) {
/* Calculate systematic clock drift */
drift = timeavg / ( time(NULL) - starttime );
printlog( 0, "Drift %.2f PPM, %.2f s/day", \
drift*1e6, drift*86400 );
/* Adjust system clock */
if ( setmode == 3 ) {
starttime = time(NULL);
/* Adjust the kernel clock */
if ( htpdate_adjtimex( drift ) < 0 )
printlog( 1, "Frequency change failed" );
/* Drop root privileges again */
if ( sw_uid ) seteuid( sw_uid );
}
} else {
starttime = time(NULL);
}
/* Decrease polling interval to minimum */
sleeptime = minsleep;
/* Sleep for 30 minutes after a time adjust or set */
sleep( DEFAULT_MIN_SLEEP );
}
} else {
/* Increase polling interval */
if ( sleeptime < maxsleep )
sleeptime <<= 1;
}
} else {
printlog( 1, "No server suitable for synchronization found" );
/* Sleep for minsleep to avoid flooding */
if ( daemonize )
sleep( minsleep );
else
exit(1);
}
/* After first poll cycle do not step through time, only adjust */
if ( setmode != 3 ) {
setmode = 1;
}
} while ( daemonize ); /* end of infinite while loop */
exit(0);
}
/* vim: set ts=4 sw=4: */
|