busybox/util-linux/rdate.c

80 lines
2.0 KiB
C
Raw Normal View History

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.
2000-08-22 04:34:00 +05:30
*
* by Sterling Huxley <sterling@europa.com>
*
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
2000-08-22 04:34:00 +05:30
*/
//usage:#define rdate_trivial_usage
//usage: "[-sp] HOST"
//usage:#define rdate_full_usage "\n\n"
//usage: "Get and possibly set system time from a remote HOST\n"
//usage: "\n -s Set system time (default)"
//usage: "\n -p Print time"
#include "libbb.h"
2000-08-22 04:34:00 +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 14:02:24 +05:30
bb_error_msg_and_die("timeout connecting to time server");
}
static time_t askremotedate(const char *host)
2000-08-22 04:34:00 +05:30
{
uint32_t nett;
2000-08-22 04:34:00 +05:30
int fd;
/* Add a timeout for dead or inaccessible servers */
alarm(10);
signal(SIGALRM, socket_timeout);
fd = create_and_connect_stream_or_die(host, bb_lookup_port("time", "tcp", 37));
if (safe_read(fd, &nett, 4) != 4) /* read time from server */
bb_error_msg_and_die("%s: %s", host, "short read");
if (ENABLE_FEATURE_CLEAN_UP)
close(fd);
2000-08-22 04:34:00 +05:30
/* Convert from network byte order to local byte order.
2000-08-22 04:34:00 +05:30
* RFC 868 time is the number of seconds
* 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
return ntohl(nett) - RFC_868_BIAS;
2000-08-22 04:34:00 +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
{
time_t remote_time;
unsigned flags;
2006-01-25 05:38:53 +05:30
opt_complementary = "-1";
flags = getopt32(argv, "sp");
2006-01-25 05:38:53 +05:30
remote_time = askremotedate(argv[optind]);
if (!(flags & 2)) { /* no -p (-s may be present) */
time_t current_time;
time(&current_time);
if (current_time == remote_time)
2006-10-06 04:42:49 +05:30
bb_error_msg("current time matches remote time");
else
if (stime(&remote_time) < 0)
bb_perror_msg_and_die("can't set time of day");
}
2006-01-25 05:38:53 +05:30
if (flags != 1) /* not lone -s */
printf("%s", ctime(&remote_time));
2000-08-22 04:34:00 +05:30
return EXIT_SUCCESS;
2000-08-22 04:34:00 +05:30
}