hush/util-linux/rdate.c

72 lines
1.7 KiB
C
Raw Normal View History

2000-08-21 23:04:00 +00:00
/* 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>
*
* Licensed under GPL v2 or later, see file License for details.
2000-08-21 23:04:00 +00:00
*/
#include "libbb.h"
2000-08-21 23:04:00 +00:00
enum { RFC_868_BIAS = 2208988800UL };
2000-08-21 23:04:00 +00:00
2008-07-05 09:18:54 +00:00
static void socket_timeout(int sig UNUSED_PARAM)
{
2003-09-12 08:32:24 +00:00
bb_error_msg_and_die("timeout connecting to time server");
}
static time_t askremotedate(const char *host)
2000-08-21 23:04:00 +00:00
{
uint32_t nett;
2000-08-21 23:04:00 +00:00
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));
2003-07-22 08:26:05 +00:00
if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */
2003-03-19 09:13:01 +00:00
bb_error_msg_and_die("%s did not send the complete time", host);
2000-08-21 23:04:00 +00:00
close(fd);
/* convert from network byte order to local byte order.
* 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-21 23:04:00 +00:00
*/
2006-01-25 00:08:53 +00:00
return ntohl(nett) - RFC_868_BIAS;
2000-08-21 23:04:00 +00:00
}
int rdate_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2008-07-05 09:18:54 +00:00
int rdate_main(int argc UNUSED_PARAM, char **argv)
2000-08-21 23:04:00 +00:00
{
time_t remote_time;
unsigned long flags;
2006-01-25 00:08:53 +00:00
opt_complementary = "-1";
flags = getopt32(argv, "sp");
2006-01-25 00:08:53 +00:00
remote_time = askremotedate(argv[optind]);
if ((flags & 2) == 0) {
time_t current_time;
time(&current_time);
if (current_time == remote_time)
2006-10-05 23:12:49 +00:00
bb_error_msg("current time matches remote time");
else
if (stime(&remote_time) < 0)
2006-10-05 23:12:49 +00:00
bb_perror_msg_and_die("cannot set time of day");
}
2006-01-25 00:08:53 +00:00
if ((flags & 1) == 0)
printf("%s", ctime(&remote_time));
2000-08-21 23:04:00 +00:00
return EXIT_SUCCESS;
2000-08-21 23:04:00 +00:00
}