ccbf969666773107a49d2899a154f91006cdb373
[oweals/busybox.git] / util-linux / rdate.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * The Rdate command will ask a time server for the RFC 868 time
4  *  and optionally set the system time.
5  *
6  * by Sterling Huxley <sterling@europa.com>
7  *
8  * Licensed under GPL v2 or later, see file License for details.
9 */
10
11 //#include <sys/socket.h>
12 //#include <netinet/in.h>
13 //#include <netdb.h>
14 //#include <signal.h>
15
16 #include "busybox.h"
17
18
19 enum { RFC_868_BIAS = 2208988800UL };
20
21 static void socket_timeout(int sig)
22 {
23         bb_error_msg_and_die("timeout connecting to time server");
24 }
25
26 static time_t askremotedate(const char *host)
27 {
28         uint32_t nett;
29         int fd;
30
31         /* Add a timeout for dead or inaccessible servers */
32         alarm(10);
33         signal(SIGALRM, socket_timeout);
34
35         fd = create_and_connect_stream_or_die(host, bb_lookup_port("time", "tcp", 37));
36
37         if (safe_read(fd, (void *)&nett, 4) != 4)    /* read time from server */
38                 bb_error_msg_and_die("%s did not send the complete time", host);
39         close(fd);
40
41         /* convert from network byte order to local byte order.
42          * RFC 868 time is the number of seconds
43          * since 00:00 (midnight) 1 January 1900 GMT
44          * the RFC 868 time 2,208,988,800 corresponds to 00:00  1 Jan 1970 GMT
45          * Subtract the RFC 868 time to get Linux epoch
46          */
47
48         return ntohl(nett) - RFC_868_BIAS;
49 }
50
51 int rdate_main(int argc, char **argv)
52 {
53         time_t remote_time;
54         unsigned long flags;
55
56         opt_complementary = "-1";
57         flags = getopt32(argc, argv, "sp");
58
59         remote_time = askremotedate(argv[optind]);
60
61         if ((flags & 2) == 0) {
62                 time_t current_time;
63
64                 time(&current_time);
65                 if (current_time == remote_time)
66                         bb_error_msg("current time matches remote time");
67                 else
68                         if (stime(&remote_time) < 0)
69                                 bb_perror_msg_and_die("cannot set time of day");
70         }
71
72         if ((flags & 1) == 0)
73                 printf("%s", ctime(&remote_time));
74
75         return EXIT_SUCCESS;
76 }