rdate.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. * Licensed under GPL v2 or later, see file License for details.
  9. */
  10. #include <sys/types.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <netdb.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <time.h>
  17. #include <stdlib.h>
  18. #include <unistd.h>
  19. #include <signal.h>
  20. #include "busybox.h"
  21. static const int RFC_868_BIAS = 2208988800UL;
  22. static void socket_timeout(int sig)
  23. {
  24. bb_error_msg_and_die("timeout connecting to time server");
  25. }
  26. static time_t askremotedate(const char *host)
  27. {
  28. unsigned long nett;
  29. struct sockaddr_in s_in;
  30. int fd;
  31. bb_lookup_host(&s_in, host);
  32. s_in.sin_port = bb_lookup_port("time", "tcp", 37);
  33. /* Add a timeout for dead or inaccessible servers */
  34. alarm(10);
  35. signal(SIGALRM, socket_timeout);
  36. fd = xconnect_tcp_v4(&s_in);
  37. if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */
  38. bb_error_msg_and_die("%s did not send the complete time", host);
  39. close(fd);
  40. /* convert from network byte order to local byte order.
  41. * RFC 868 time is the number of seconds
  42. * since 00:00 (midnight) 1 January 1900 GMT
  43. * the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT
  44. * Subtract the RFC 868 time to get Linux epoch
  45. */
  46. return ntohl(nett) - RFC_868_BIAS;
  47. }
  48. int rdate_main(int argc, char **argv)
  49. {
  50. time_t remote_time;
  51. unsigned long flags;
  52. opt_complementary = "-1";
  53. flags = getopt32(argc, argv, "sp");
  54. remote_time = askremotedate(argv[optind]);
  55. if ((flags & 2) == 0) {
  56. time_t current_time;
  57. time(&current_time);
  58. if (current_time == remote_time)
  59. bb_error_msg("current time matches remote time");
  60. else
  61. if (stime(&remote_time) < 0)
  62. bb_perror_msg_and_die("cannot set time of day");
  63. }
  64. if ((flags & 1) == 0)
  65. printf("%s", ctime(&remote_time));
  66. return EXIT_SUCCESS;
  67. }