blob: 9e7bdba35abe38ac33d929f3239f37cc33a58734 [file] [log] [blame]
Eric Andersen6ab22022000-08-21 23:04:00 +00001/* 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 *
Rob Landley1b751c82005-10-28 09:24:33 +00008 * Licensed under GPL v2 or later, see file License for details.
Eric Andersen6ab22022000-08-21 23:04:00 +00009*/
10
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000011#include "libbb.h"
Eric Andersen6ab22022000-08-21 23:04:00 +000012
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000013enum { RFC_868_BIAS = 2208988800UL };
Eric Andersen6ab22022000-08-21 23:04:00 +000014
Denis Vlasenko68404f12008-03-17 09:00:54 +000015static void socket_timeout(int sig ATTRIBUTE_UNUSED)
Eric Andersene15138a2003-09-12 05:50:51 +000016{
Eric Andersen7f2935b2003-09-12 08:32:24 +000017 bb_error_msg_and_die("timeout connecting to time server");
Eric Andersene15138a2003-09-12 05:50:51 +000018}
19
Eric Andersen40eaa9f2001-03-19 19:41:54 +000020static time_t askremotedate(const char *host)
Eric Andersen6ab22022000-08-21 23:04:00 +000021{
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000022 uint32_t nett;
Eric Andersen6ab22022000-08-21 23:04:00 +000023 int fd;
24
Rob Landley1b751c82005-10-28 09:24:33 +000025 /* Add a timeout for dead or inaccessible servers */
Eric Andersene15138a2003-09-12 05:50:51 +000026 alarm(10);
27 signal(SIGALRM, socket_timeout);
28
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000029 fd = create_and_connect_stream_or_die(host, bb_lookup_port("time", "tcp", 37));
Eric Andersen40eaa9f2001-03-19 19:41:54 +000030
Eric Andersen725db192003-07-22 08:26:05 +000031 if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 bb_error_msg_and_die("%s did not send the complete time", host);
Eric Andersen6ab22022000-08-21 23:04:00 +000033 close(fd);
34
35 /* convert from network byte order to local byte order.
36 * RFC 868 time is the number of seconds
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000037 * since 00:00 (midnight) 1 January 1900 GMT
38 * the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT
39 * Subtract the RFC 868 time to get Linux epoch
Eric Andersen6ab22022000-08-21 23:04:00 +000040 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000041
Denis Vlasenko079f8af2006-11-27 16:49:31 +000042 return ntohl(nett) - RFC_868_BIAS;
Eric Andersen6ab22022000-08-21 23:04:00 +000043}
44
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int rdate_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +000046int rdate_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersen6ab22022000-08-21 23:04:00 +000047{
Eric Andersen1ca20a72001-03-21 07:34:27 +000048 time_t remote_time;
"Vladimir N. Oleynik"ea972822005-10-28 15:43:41 +000049 unsigned long flags;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000050
Denis Vlasenko67b23e62006-10-03 21:00:06 +000051 opt_complementary = "-1";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000052 flags = getopt32(argv, "sp");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000053
Eric Andersen1ca20a72001-03-21 07:34:27 +000054 remote_time = askremotedate(argv[optind]);
Eric Andersen40eaa9f2001-03-19 19:41:54 +000055
Bernhard Reutner-Fischer5c0ae062006-06-03 10:24:20 +000056 if ((flags & 2) == 0) {
Eric Andersen89f10bc2003-12-19 11:29:29 +000057 time_t current_time;
58
59 time(&current_time);
60 if (current_time == remote_time)
Denis Vlasenko000b9ba2006-10-05 23:12:49 +000061 bb_error_msg("current time matches remote time");
Eric Andersen89f10bc2003-12-19 11:29:29 +000062 else
63 if (stime(&remote_time) < 0)
Denis Vlasenko000b9ba2006-10-05 23:12:49 +000064 bb_perror_msg_and_die("cannot set time of day");
Bernhard Reutner-Fischer5c0ae062006-06-03 10:24:20 +000065 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000066
Bernhard Reutner-Fischer5c0ae062006-06-03 10:24:20 +000067 if ((flags & 1) == 0)
68 printf("%s", ctime(&remote_time));
Eric Andersen6ab22022000-08-21 23:04:00 +000069
Matt Kraai3e856ce2000-12-01 02:55:13 +000070 return EXIT_SUCCESS;
Eric Andersen6ab22022000-08-21 23:04:00 +000071}