Major coreutils update.
[platform/upstream/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  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22 */
23
24 #include <sys/time.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28 #include <netdb.h>
29 #include <stdio.h>
30 #include <getopt.h>
31 #include <string.h>
32 #include <time.h>
33 #include <stdlib.h>
34 #include <unistd.h>
35 #include "busybox.h"
36
37
38 static const int RFC_868_BIAS = 2208988800UL;
39
40 static time_t askremotedate(const char *host)
41 {
42         unsigned long int nett, localt;
43         const char *port="37";
44         int fd;
45
46         if (getservbyname("time", "tcp") != NULL)
47                 port="time";
48
49         fd = xconnect(host, port);
50
51         if (read(fd, (void *)&nett, 4) != 4)    /* read time from server */
52                 bb_error_msg_and_die("%s did not send the complete time", host);
53
54         close(fd);
55
56         /* convert from network byte order to local byte order.
57          * RFC 868 time is the number of seconds
58          *  since 00:00 (midnight) 1 January 1900 GMT
59          *  the RFC 868 time 2,208,988,800 corresponds to 00:00  1 Jan 1970 GMT
60          * Subtract the RFC 868 time  to get Linux epoch
61          */
62         localt= ntohl(nett) - RFC_868_BIAS;
63
64         return(localt);
65 }
66
67 int rdate_main(int argc, char **argv)
68 {
69         time_t remote_time;
70         int opt;
71         int setdate = 1;
72         int printdate = 1;
73
74         /* Interpret command line args */
75         while ((opt = getopt(argc, argv, "sp")) > 0) {
76                 switch (opt) {
77                         case 's':
78                                 printdate = 0;
79                                 setdate = 1;
80                                 break;
81                         case 'p':
82                                 printdate = 1;
83                                 setdate = 0;
84                                 break;
85                         default:
86                                 bb_show_usage();
87                 }
88         }
89
90         if (optind == argc)
91                 bb_show_usage();
92
93         remote_time = askremotedate(argv[optind]);
94
95         if (setdate) {
96                 if (stime(&remote_time) < 0)
97                         bb_perror_msg_and_die("Could not set time of day");
98         }
99
100         if (printdate)
101                 printf("%s", ctime(&remote_time));
102
103         return EXIT_SUCCESS;
104 }