2000-08-22 04:34:00 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* The Rdate command will ask a time server for the RFC 868 time
|
|
|
|
* and optionally set the system time.
|
|
|
|
*
|
|
|
|
* by Sterling Huxley <sterling@europa.com>
|
|
|
|
*
|
2005-10-28 14:54:33 +05:30
|
|
|
* Licensed under GPL v2 or later, see file License for details.
|
2000-08-22 04:34:00 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-08-22 04:34:00 +05:30
|
|
|
|
2007-01-11 22:20:23 +05:30
|
|
|
enum { RFC_868_BIAS = 2208988800UL };
|
2000-08-22 04:34:00 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void socket_timeout(int sig UNUSED_PARAM)
|
2003-09-12 11:20:51 +05:30
|
|
|
{
|
2003-09-12 14:02:24 +05:30
|
|
|
bb_error_msg_and_die("timeout connecting to time server");
|
2003-09-12 11:20:51 +05:30
|
|
|
}
|
|
|
|
|
2001-03-20 01:11:54 +05:30
|
|
|
static time_t askremotedate(const char *host)
|
2000-08-22 04:34:00 +05:30
|
|
|
{
|
2007-01-11 22:20:23 +05:30
|
|
|
uint32_t nett;
|
2000-08-22 04:34:00 +05:30
|
|
|
int fd;
|
|
|
|
|
2005-10-28 14:54:33 +05:30
|
|
|
/* Add a timeout for dead or inaccessible servers */
|
2003-09-12 11:20:51 +05:30
|
|
|
alarm(10);
|
|
|
|
signal(SIGALRM, socket_timeout);
|
|
|
|
|
2007-01-11 22:20:23 +05:30
|
|
|
fd = create_and_connect_stream_or_die(host, bb_lookup_port("time", "tcp", 37));
|
2001-03-20 01:11:54 +05:30
|
|
|
|
2003-07-22 13:56:05 +05:30
|
|
|
if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("%s did not send the complete time", host);
|
2000-08-22 04:34:00 +05:30
|
|
|
close(fd);
|
|
|
|
|
|
|
|
/* convert from network byte order to local byte order.
|
|
|
|
* RFC 868 time is the number of seconds
|
2007-01-11 22:20:23 +05:30
|
|
|
* since 00:00 (midnight) 1 January 1900 GMT
|
|
|
|
* the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT
|
|
|
|
* Subtract the RFC 868 time to get Linux epoch
|
2000-08-22 04:34:00 +05:30
|
|
|
*/
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2006-11-27 22:19:31 +05:30
|
|
|
return ntohl(nett) - RFC_868_BIAS;
|
2000-08-22 04:34:00 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int rdate_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int rdate_main(int argc UNUSED_PARAM, char **argv)
|
2000-08-22 04:34:00 +05:30
|
|
|
{
|
2001-03-21 13:04:27 +05:30
|
|
|
time_t remote_time;
|
2005-10-28 21:13:41 +05:30
|
|
|
unsigned long flags;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2006-10-04 02:30:06 +05:30
|
|
|
opt_complementary = "-1";
|
2007-08-18 21:02:12 +05:30
|
|
|
flags = getopt32(argv, "sp");
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2001-03-21 13:04:27 +05:30
|
|
|
remote_time = askremotedate(argv[optind]);
|
2001-03-20 01:11:54 +05:30
|
|
|
|
2006-06-03 15:54:20 +05:30
|
|
|
if ((flags & 2) == 0) {
|
2003-12-19 16:59:29 +05:30
|
|
|
time_t current_time;
|
|
|
|
|
|
|
|
time(¤t_time);
|
|
|
|
if (current_time == remote_time)
|
2006-10-06 04:42:49 +05:30
|
|
|
bb_error_msg("current time matches remote time");
|
2003-12-19 16:59:29 +05:30
|
|
|
else
|
|
|
|
if (stime(&remote_time) < 0)
|
2006-10-06 04:42:49 +05:30
|
|
|
bb_perror_msg_and_die("cannot set time of day");
|
2006-06-03 15:54:20 +05:30
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2006-06-03 15:54:20 +05:30
|
|
|
if ((flags & 1) == 0)
|
|
|
|
printf("%s", ctime(&remote_time));
|
2000-08-22 04:34:00 +05:30
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-08-22 04:34:00 +05:30
|
|
|
}
|