-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhtpdate.c
1035 lines (865 loc) · 30.5 KB
/
htpdate.c
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
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
htpdate v2.0.0
Eddy Vervest <[email protected]>
http://www.vervest.org/htp
Synchronize local system 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.example.com
Adjust time smoothly:
htpdate -a www.example.com
...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 <math.h>
#include <pwd.h>
#include <grp.h>
#include <float.h>
#if defined __NetBSD__ || defined __FreeBSD__ || defined __APPLE__
#define adjtimex ntp_adjtime
#endif
#ifdef ENABLE_HTTPS
#include <openssl/ssl.h>
#endif
#define LICENSE "\
Copyright (C) 2004-2024 Eddy Vervest.\n\
\n\
This program is free software; you can redistribute it and/or modify\n\
it under the terms of the GNU General Public License as published by\n\
the Free Software Foundation; either version 2 of the License, or (at\n\
your option) any later version.\n\
\n\
There is NO WARRANTY, to the extent permitted by law."
#define VERSION "2.0.0"
#define MAX_HTTP_HOSTS 16 /* 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 NO_TIME_LIMIT -1
#define ERR_TIMESTAMP DBL_MAX /* Err fetching date in getHTTPdate */
#define DEFAULT_PRECISION 4 /* 4 request per host */
#define DEFAULT_MIN_SLEEP 900 /* 15 minutes */
#define DEFAULT_MAX_SLEEP 115200 /* 32 hours */
#define MAX_DRIFT 32768000 /* 500 PPM */
#define DEFAULT_PID_FILE "/var/run/htpdate.pid"
#define HEADREQUESTSIZE 1024
#define URLSIZE 128
#define BUFFERSIZE 8192
#define PRINTBUFFERSIZE BUFFERSIZE
#define sign(x) (x < 0 ? (-1) : 1)
/* By default turn off "debug" and "log" mode */
static int debug = 0;
static int logmode = 0;
static int verifycert = 0;
/* Insertion sort is more efficient (and smaller) than qsort for small lists */
static void insertsort(double a[], int length) {
long i, j;
for (i = 1; i < length; i++) {
double value = a[i];
for (j = i - 1; j >= 0 && a[j] > value; j--)
a[j+1] = a[j];
a[j+1] = value;
}
}
/* 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[PRINTBUFFERSIZE];
va_start(args, format);
(void) vsnprintf(buf, sizeof(buf), format, args);
va_end(args);
switch(logmode) {
case 0:
fprintf(is_error?stderr:stdout, "%s\n", buf);
break;
case 1:
syslog(is_error?LOG_WARNING:LOG_INFO, "%s", buf);
break;
case 2:
fprintf(stderr, "%s\n", buf);
break;
default:
fprintf(stderr, "%s\n", "Invalid logmode, aborting");
abort();
}
}
/* Split argument in hostname/IP-address and TCP port
Supports IPv6 literal addresses, RFC 2732.
*/
static void splitURL(char **scheme, char **host, char **port, char **path) {
char *rb, *rc, *lb, *lc, *ps;
*path = "";
*scheme = NULL;
if ((ps = strcasestr(*host, "https://")) != NULL) {
#ifndef ENABLE_HTTPS
printlog(1, "HTTPS not supported, %s", *host);
return;
#endif
*scheme = "https://";
*port = "443";
*host = ps + 8;
}
if ((ps = strcasestr(*host, "http://")) != NULL) {
*host = ps + 7;
}
lb = strchr(*host, '[');
rb = strrchr(*host, ']');
lc = strchr(*host, ':');
rc = strrchr(*host, ':');
ps = strchr(*host, '/');
/* Extract URL path */
if (ps != NULL) {
ps[0] = '\0';
*path = ps + 1;
}
/* A (literal) IPv6 address with portnumber */
if (rb < rc && lb != NULL && rb != NULL) {
rb[0] = '\0';
*port = rc + 1;
*host = lb + 1;
return;
}
/* A (literal) 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;
}
}
static void swuid(unsigned int id) {
if (seteuid(id)) {
printlog(1, "seteuid() %i", id);
exit(1);
}
}
static void swgid(unsigned int id) {
if (setegid(id)) {
printlog(1, "setegid() %i", id);
exit(1);
}
}
static long long getoffset(char remote_time[25]) {
struct timeval timevalue = {0, 0};
struct timespec now;
struct tm tm;
clock_gettime(CLOCK_REALTIME, &now);
memset(&tm, 0, sizeof(struct tm));
if (strptime(remote_time, "%d %b %Y %T", &tm) != NULL) {
timevalue.tv_sec = timegm(&tm);
} else {
printlog(1, "unknown time format");
}
return now.tv_sec - timevalue.tv_sec;
}
static int sendHEAD(int server_s, char *headrequest, char *buffer) {
int ret = (int)send(server_s, headrequest, strlen(headrequest), 0);
if (ret < 0) {
printlog(1, "Error sending");
return -1;
}
/* Receive data from the web server
The return code from recv() is the number of bytes received
*/
ret = recv(server_s, buffer, BUFFERSIZE - 1, 0) > 0;
return ret;
}
#ifdef ENABLE_HTTPS
static int sendHEADTLS(SSL *conn, char *headrequest, char *buffer) {
int ret = SSL_write(conn, headrequest, strlen(headrequest));
if (ret < 0) {
printlog(1, "Error sending: %i", ret);
return -1;
}
/* Receive data from the web server
The return code is the number of bytes received
*/
ret = SSL_read(conn, buffer, BUFFERSIZE - 1) > 0;
return ret;
}
static int proxyCONNECT(
int server_s,
char *host, char *port,
char *proxy, char *proxyport,
char *httpversion) {
char buffer[BUFFERSIZE] = {'\0'};
char connectrequest[URLSIZE] = {'\0'};
snprintf(connectrequest, URLSIZE,
"CONNECT %s:%s HTTP/1.%s\r\n\r\n", host, port, httpversion);
send(server_s, connectrequest, strlen(connectrequest), 0);
int ret = recv(server_s, buffer, BUFFERSIZE - 1, 0) > 0;
if (strstr(buffer, " 200 ") == NULL) {
printlog(1, "Proxy error: %s:%s\r\n%s", proxy, proxyport, buffer);
}
return ret;
}
#endif
static double getHTTPdate(
char *scheme,
char *host, char *port, char *path,
char *proxy, char *proxyport,
char *httpversion, int ipversion, int precision) {
int server_s;
int rc;
int polls = 0;
struct addrinfo hints, *res;
struct timespec sleepspec, now;
char headrequest[HEADREQUESTSIZE] = {'\0'};
char buffer[BUFFERSIZE] = {'\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, &res);
} else {
snprintf(url, URLSIZE, "http://%s:%s", host, port);
rc = getaddrinfo(proxy, proxyport, &hints, &res);
}
/* Was the hostname and service resolvable? */
if (rc) {
printlog(1, "%s host or service unavailable", host);
return(ERR_TIMESTAMP);
}
/* 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: keep-alive, for multiple requests
*/
snprintf(headrequest, HEADREQUESTSIZE,
"HEAD %s/%s HTTP/1.%s\r\n"
"Host: %s\r\n"
"User-Agent: htpdate/"VERSION"\r\n"
"Pragma: no-cache\r\n"
"Cache-Control: no-cache\r\n"
"Connection: keep-alive\r\n\r\n",
url, path, httpversion, host);
/* Loop through the available canonical names */
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(res);
if (rc) {
printlog(1, "%s connection failed", host);
return(ERR_TIMESTAMP);
}
#ifdef ENABLE_HTTPS
SSL_CTX *tls_ctx = SSL_CTX_new(TLS_method());
SSL_CTX_set_default_verify_paths(tls_ctx);
SSL_CTX_set_verify_depth(tls_ctx, 4);
if (verifycert) SSL_CTX_set_verify(tls_ctx, SSL_VERIFY_PEER, NULL);
SSL *conn = SSL_new(tls_ctx);
SSL_set_tlsext_host_name(conn, host);
if (scheme) {
if (proxy) {
rc = proxyCONNECT(server_s, host, port, proxy, proxyport, httpversion);
if (rc != 1) {
printlog(1, "Proxy error: %i", rc);
return(ERR_TIMESTAMP);
}
}
if (! SSL_set_fd(conn, server_s)) {
printlog(1, "TLS error1");
return(ERR_TIMESTAMP);
} else {
if (SSL_connect(conn) != 1) {
printlog(1, "TLS error2");
return(ERR_TIMESTAMP);
}
}
}
#endif
long long offset = 0, first_offset = 0, prev_offset = 0;
long nap = 1000000000;
long latency = 0;
long when = nap >> precision;
do {
if (debug > 1)
printlog(0, "bisect: %i, when: %09li", polls, when);
/* Initialize timer */
clock_gettime(CLOCK_REALTIME, &now);
/* Initialize RTT (start of measurement) */
long rtt = now.tv_sec;
/* Wait till we reach the desired time, "when" */
sleepspec.tv_sec = 0;
if (when - latency >= now.tv_nsec) {
sleepspec.tv_nsec = when - now.tv_nsec - latency;
} else {
sleepspec.tv_nsec = 1000000000 + when - now.tv_nsec - latency;
rtt++;
}
nanosleep(&sleepspec, NULL);
/* Send HEAD request */
#ifdef ENABLE_HTTPS
if (scheme)
rc = sendHEADTLS(conn, headrequest, buffer);
else
#endif
rc = sendHEAD(server_s, headrequest, buffer);
if (!rc) {
printlog(1, "error from %s:%s", host, port );
offset = LLONG_MAX;
break;
} else {
clock_gettime(CLOCK_REALTIME, &now);
/* rtt contains round trip time in nanoseconds */
rtt = (now.tv_sec - rtt) * 1000000000 + now.tv_nsec - when + latency;
/* Obtain rtt/latency first */
if (latency == 0) {
latency = rtt / 2;
continue;
}
latency = rtt / 2;
/* Look for the line that contains [dD]ate: */
if ((pdate = strcasestr(buffer, "date: ")) != NULL && strlen(pdate) >= 35) {
if (debug > 2) printlog(0, "%s", buffer);
char remote_time[25] = {'\0'};
strncpy(remote_time, pdate + 11, 24);
polls++;
offset = getoffset(remote_time);
nap >>= 1;
if (polls > 1) {
if (offset != prev_offset) nap = -nap;
} else {
first_offset=offset;
}
prev_offset=offset;
/* Print host, raw timestamp, round trip time */
if (debug)
printlog(0, "%-25s %s, %s (%li ms) => %li", host, port,
remote_time, rtt / (long)1e6, offset);
} else {
printlog(1, "%s no timestamp", host);
offset = LLONG_MAX;
break;
}
} /* bytes received */
precision--;
when += nap;
} while (precision >= 1);
close(server_s);
#ifdef ENABLE_HTTPS
if (scheme) SSL_shutdown(conn);
SSL_CTX_free(tls_ctx);
SSL_free(conn);
#endif
/* Rounding */
if (debug) printlog(0, "when: %ld, nap: %ld", when, nap);
if (offset == LLONG_MAX) return(ERR_TIMESTAMP);
if (when + nap == 1000000000 && offset == 0) return 0;
/* Return the time delta between web server time (timevalue)
and system time (now)
*/
if (first_offset < 0) {
return((double)-first_offset + (1000000000-(double)when)/1000000000);
} else {
return((double)-first_offset + 1 - ((double)when/1000000000));
}
}
static int setstatus() {
struct timex txc = {0};
txc.modes = MOD_STATUS | MOD_ESTERROR | MOD_MAXERROR;
txc.status &= ~STA_UNSYNC;
printlog(0, "Set clock synchronized");
return(adjtimex(&txc));
}
static int setclock(double timedelta, int setmode) {
struct timespec now;
struct timeval timeofday;
char buffer[32] = {'\0'};
if (timedelta == 0) {
printlog(0, "No time correction needed");
return(0);
}
switch (setmode) {
case 0: /* No time adjustment, just print time */
printlog(0, "Offset %.1f ms", timedelta * 1e3);
return(0);
case 1: /* Adjust time smoothly */
timeofday.tv_sec = (long)timedelta;
timeofday.tv_usec = (long)((timedelta - (double)timeofday.tv_sec) * 1e6);
printlog(0, "Adjusting %.1f ms", timedelta * 1e3);
/* Become root */
swuid(0);
return(adjtime(&timeofday, NULL));
case 2: /* Set time */
printlog(0, "Setting %.3f seconds", timedelta);
clock_gettime(CLOCK_REALTIME, &now);
timedelta += (double)now.tv_sec + (double)now.tv_nsec * 1e-9;
now.tv_sec = (long)timedelta;
now.tv_nsec = (long)((timedelta - (double)now.tv_sec) * 1e9);
strftime(buffer, sizeof(buffer), "%c", localtime(&now.tv_sec));
printlog(0, "Set time: %s", buffer);
/* Become root */
swuid(0);
return(clock_settime(CLOCK_REALTIME, &now));
case 3: /* Set frequency, but first an adjust */
return(setclock(timedelta, 1));
default:
return(-1);
}
}
static int init_frequency(char *driftfile) {
struct timex tmx;
FILE *fp;
fp = fopen(driftfile, "r");
if (fp != NULL) {
if (fscanf(fp, "%li", &tmx.freq)) {
printlog(0, "Reading frequency from file %li", tmx.freq);
fclose(fp);
} else {
printlog(1, "Error reading frequency from %s", driftfile);
fclose(fp);
return -1;
}
} else {
printlog(1, "Error reading frequency from %s", driftfile);
return -1;
}
if ((tmx.freq < -MAX_DRIFT) || (tmx.freq > MAX_DRIFT))
tmx.freq = sign(tmx.freq) * MAX_DRIFT;
printlog(0, "Set frequency: %li", tmx.freq);
tmx.modes = MOD_FREQUENCY;
/* Become root */
swuid(0);
return(adjtimex(&tmx));
}
static int htpdate_adjtimex(double drift, char *driftfile, float confidence) {
struct timex tmx;
FILE *fp;
/* Read current clock frequency */
tmx.modes = 0;
adjtimex(&tmx);
/* Weighted average of current and new frequency */
tmx.freq = tmx.freq + (long int)(65536e6 * drift * confidence);
if ((tmx.freq < -MAX_DRIFT) || (tmx.freq > MAX_DRIFT))
tmx.freq = sign(tmx.freq) * MAX_DRIFT;
printlog(0, "Set frequency %li", tmx.freq);
tmx.modes = MOD_FREQUENCY;
if (driftfile) {
fp = fopen(driftfile, "w");
if (fp != NULL) {
printlog(0, "Update %s", driftfile);
fprintf(fp, "%li", tmx.freq);
fclose(fp);
} else {
printlog(1, "Error writing frequency to %s", driftfile);
}
}
/* Become root */
swuid(0);
return(adjtimex(&tmx));
}
static void showhelp() {
puts("htpdate version "VERSION"\n\
Usage: htpdate [-046acdhlnqstvxDF] [-f driftfile] [-i pidfile] [-m minpoll]\n\
[-M maxpoll] [-p precision] [-P <proxyserver>[:port]]\n\
[-u user[:group]] <URL> ...\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\
-c verify server certificate\n\
-d debug mode\n\
-D daemon mode\n\
-f drift/frequency file\n\
-F run daemon in foreground\n\
-h help\n\
-i pidfile\n\
-l use syslog for output\n\
-m minimum poll interval\n\
-M maximum poll interval\n\
-n no proxy (ignore http_proxy environment variable)\n\
-p precision (1..9, default 4)\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\
-v version\n\
-x adjust system clock frequency\n\
URL one of more URLs (max. 16), e.g. www.example.com\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, "%d\n", pid);
fclose(pid_file);
}
exit(0);
}
}
int main(int argc, char *argv[]) {
char *host = NULL, *proxy = NULL, *proxyport = NULL;
char *port = NULL;
char *path = NULL;
char *scheme = NULL;
char *httpversion = DEFAULT_HTTP_VERSION;
char *pidfile = DEFAULT_PID_FILE;
char *user = NULL, *userstr = NULL, *group = NULL;
double timeavg, drift = 0;
double timedelta[MAX_HTTP_HOSTS-1];
int numservers;
int precision = DEFAULT_PRECISION;
int setmode = 0;
int i, param;
int daemonize = 0, foreground = 0;
int noproxyenv = 0;
int ipversion = DEFAULT_IP_VERSION;
long long timelimit = DEFAULT_TIME_LIMIT;
unsigned int minsleep = DEFAULT_MIN_SLEEP;
unsigned int maxsleep = DEFAULT_MAX_SLEEP;
unsigned int sleeptime = minsleep;
unsigned int sw_gid = 0, sw_uid = 0;
time_t starttime = 0;
struct passwd *pw;
struct group *gr;
extern char *optarg;
extern int optind;
char *driftfile = NULL;
/* Parse the command line switches and arguments */
while ((param = getopt(argc, argv, "046acdf:hi:lm:np:qstu:vxDFM: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 'c': /* server certificate verification */
verifycert = 1;
break;
case 'd': /* turn debug on */
if (debug <= 3) debug++;
break;
case 'f': /* drift file */
driftfile = (char *)optarg;
init_frequency(driftfile);
break;
case 'h': /* show help */
showhelp();
exit(0);
case 'i': /* pid file */
pidfile = (char *)optarg;
break;
case 'l': /* log mode */
logmode = 1;
openlog("htpdate",LOG_NDELAY||LOG_PID,LOG_DAEMON);
break;
case 'm': /* minimum poll interval */
if ((minsleep = (unsigned int)atoi(optarg)) <= 0) {
fputs("Invalid sleep time\n", stderr);
exit(1);
}
sleeptime = minsleep;
break;
case 'n': /* don't get proxy from environment */
noproxyenv = 1;
break;
case 'p': /* precision */
precision = atoi(optarg) ;
if ((precision < 1) || (precision > 9)) {
fputs("Invalid precision\n", stderr);
exit(1);
}
break;
case 'q': /* query only (default) */
break;
case 's': /* set time */
setmode = 2;
break;
case 't': /* disable "sanity" time check */
timelimit = NO_TIME_LIMIT;
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 {
printlog(1, "Unknown user %s\n", user);
exit(1);
}
if (group != NULL) {
if ((gr = getgrnam(group)) != NULL) {
sw_gid = gr->gr_gid;
} else {
printlog(1, "Unknown group %s\n", group);
exit(1);
}
}
break;
case 'v': /* print version */
puts("htpdate version "VERSION"\n"LICENSE"");
exit(0);
case 'x': /* adjust time and clock frequency */
setmode = 3;
if (maxsleep > 14400) maxsleep = 14400;
if (precision < 7) precision = 7;
break;
case 'D': /* run as daemon */
daemonize = 1;
logmode = 1;
break;
case 'F': /* run daemon in foreground, don't fork */
foreground = 1;
logmode = 2;
break;
case 'M': /* maximum poll interval */
if ((maxsleep = (unsigned int)atoi(optarg)) <= 0) {
fputs("Invalid sleep time\n", stderr);
exit(1);
}
break;
case 'P':
proxyport = DEFAULT_PROXY_PORT;
char *proxywithport = strdup((char *)optarg);
proxy = proxywithport;
splitURL(&scheme, &proxy, &proxyport, &path);
break;
default:
exit(1);
}
/* 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);
}
/* Use http_proxy environment variable */
if (getenv("http_proxy") && !noproxyenv) {
if ((proxy = strstr(getenv("http_proxy"), "http://")) == NULL) {
printlog(1, "Invalid proxy specified: %s", getenv("http_proxy"));
exit(1);
}
if (debug) printlog(0, "Proxy: %s", proxy);
proxy += 7;
proxyport = DEFAULT_PROXY_PORT;
splitURL(&scheme, &proxy, &proxyport, &path);
}
/* One must be "root" to change the system time */
if ((getuid() != 0) && (setmode || daemonize || foreground)) {
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 or foreground mode */
if (daemonize || foreground) {
printlog(0, "htpdate version "VERSION" started");
if (!setmode) setmode = 1;
}
/* Now we are root, we drop the privileges (if specified) */
if (sw_gid) swgid(sw_gid);
if (sw_uid) swuid(sw_uid);
#ifdef ENABLE_HTTPS
SSL_library_init();
#endif
/* Infinite poll cycle loop in daemonize or foreground mode */
do {
/* Initialize number of received valid timestamps, good timestamps
and the average of the good timestamps
*/
int validtimes = 0, goodtimes = 0;
double sumtimes = 0, mean = 0;
/* Loop through the time sources (web servers); poll cycle */
for (i = optind; i < argc; i++) {
/* host:port is stored in argv[i] */
char *hostport = strdup(argv[i]);
host = hostport;
port = DEFAULT_HTTP_PORT;
splitURL(&scheme, &host, &port, &path);
double offset = getHTTPdate(scheme, host, port, path,
proxy, proxyport, httpversion, ipversion, precision);
free(hostport);
if (debug && offset != ERR_TIMESTAMP) {
printlog(0, "offset: %.6f", offset);
}
/* Only include valid responses in timedelta[] */
if ((timelimit == NO_TIME_LIMIT && offset != ERR_TIMESTAMP) || (fabs(offset) < timelimit)) {
timedelta[validtimes] = offset;
validtimes++;
}
}
/* 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 second 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) < .5 && (timedelta[i]-mean) > -.5) {
sumtimes += timedelta[i];
goodtimes++;
}
}
/* Check if we have at least one valid response */
if (goodtimes) {
timeavg = sumtimes / goodtimes;
/* Avoid bouncing between upper/lower limit when (almost) in sync */
if (timeavg < 1 && timeavg > -1) timeavg /= 2;
if (debug > 1)
printlog(0, "#: %d, mean: %.3f, average: %.3f", goodtimes, mean, timeavg);
/* Do I really need to change the time? */
if (sumtimes || !(daemonize || foreground)) {
if (setclock(timeavg, setmode) < 0)
printlog(1, "Time change failed");
/* Drop root privileges again */
if (sw_uid) swuid(sw_uid);
if (daemonize || foreground) {
if (starttime) {
/* Calculate systematic clock drift */
drift = timeavg / (double)(time(NULL) - starttime);
printlog(0, "Drift %.2f PPM, %.2f s/day", drift*1e6, drift*86400);
/* Adjust system clock */
if (setmode == 3) {
/* Adjust the clock frequency */
if (htpdate_adjtimex(drift, driftfile, (float)sleeptime / (float)maxsleep) < 0)
printlog(1, "Frequency change failed");
/* Drop root privileges again */
if (sw_uid) swuid(sw_uid);
}
}