bb_opt_complementally for rdate applet. Add losed record to util-linux/Makefile.in...
[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/time.h>
12 #include <sys/types.h>
13 #include <sys/socket.h>
14 #include <netinet/in.h>
15 #include <netdb.h>
16 #include <stdio.h>
17 #include <string.h>
18 #include <time.h>
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <signal.h>
22
23 #include "busybox.h"
24
25
26 static const int RFC_868_BIAS = 2208988800UL;
27
28 static void socket_timeout(int sig)
29 {
30         bb_error_msg_and_die("timeout connecting to time server");
31 }
32
33 static time_t askremotedate(const char *host)
34 {
35         unsigned long nett;
36         struct sockaddr_in s_in;
37         int fd;
38
39         bb_lookup_host(&s_in, host);
40         s_in.sin_port = bb_lookup_port("time", "tcp", 37);
41
42         /* Add a timeout for dead or inaccessible servers */
43         alarm(10);
44         signal(SIGALRM, socket_timeout);
45
46         fd = xconnect(&s_in);
47
48         if (safe_read(fd, (void *)&nett, 4) != 4)    /* read time from server */
49                 bb_error_msg_and_die("%s did not send the complete time", host);
50         close(fd);
51
52         /* convert from network byte order to local byte order.
53          * RFC 868 time is the number of seconds
54          *  since 00:00 (midnight) 1 January 1900 GMT
55          *  the RFC 868 time 2,208,988,800 corresponds to 00:00  1 Jan 1970 GMT
56          * Subtract the RFC 868 time  to get Linux epoch
57          */
58         
59         return(ntohl(nett) - RFC_868_BIAS);
60 }
61
62 int rdate_main(int argc, char **argv)
63 {
64         time_t remote_time;
65         unsigned long flags;
66         
67         bb_opt_complementally = "-1";
68         flags = bb_getopt_ulflags(argc, argv, "sp");
69         
70         remote_time = askremotedate(argv[optind]);
71
72         if (flags & 1) {
73                 time_t current_time;
74
75                 time(&current_time);
76                 if (current_time == remote_time)
77                         bb_error_msg("Current time matches remote time.");
78                 else
79                         if (stime(&remote_time) < 0)
80                                 bb_perror_msg_and_die("Could not set time of day");
81                 
82         /* No need to check for the -p flag as it's the only option left */
83                 
84         } else printf("%s", ctime(&remote_time));
85
86         return EXIT_SUCCESS;
87 }