rtcwake.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * rtcwake -- enter a system sleep state until specified wakeup time.
  3. *
  4. * This version was taken from util-linux and scrubbed down for busybox.
  5. *
  6. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  7. *
  8. * This uses cross-platform Linux interfaces to enter a system sleep state,
  9. * and leave it no later than a specified time. It uses any RTC framework
  10. * driver that supports standard driver model wakeup flags.
  11. *
  12. * This is normally used like the old "apmsleep" utility, to wake from a
  13. * suspend state like ACPI S1 (standby) or S3 (suspend-to-RAM). Most
  14. * platforms can implement those without analogues of BIOS, APM, or ACPI.
  15. *
  16. * On some systems, this can also be used like "nvram-wakeup", waking
  17. * from states like ACPI S4 (suspend to disk). Not all systems have
  18. * persistent media that are appropriate for such suspend modes.
  19. *
  20. * The best way to set the system's RTC is so that it holds the current
  21. * time in UTC. Use the "-l" flag to tell this program that the system
  22. * RTC uses a local timezone instead (maybe you dual-boot MS-Windows).
  23. * That flag should not be needed on systems with adjtime support.
  24. */
  25. #include "libbb.h"
  26. #include "rtc_.h"
  27. #define SYS_RTC_PATH "/sys/class/rtc/%s/device/power/wakeup"
  28. #define SYS_POWER_PATH "/sys/power/state"
  29. #define DEFAULT_MODE "standby"
  30. static time_t rtc_time;
  31. static bool may_wakeup(const char *rtcname)
  32. {
  33. ssize_t ret;
  34. char buf[128];
  35. /* strip the '/dev/' from the rtcname here */
  36. if (!strncmp(rtcname, "/dev/", 5))
  37. rtcname += 5;
  38. snprintf(buf, sizeof(buf), SYS_RTC_PATH, rtcname);
  39. ret = open_read_close(buf, buf, sizeof(buf));
  40. if (ret < 0)
  41. return false;
  42. /* wakeup events could be disabled or not supported */
  43. return strncmp(buf, "enabled\n", 8) == 0;
  44. }
  45. static void setup_alarm(int fd, time_t *wakeup)
  46. {
  47. struct tm *tm;
  48. struct linux_rtc_wkalrm wake;
  49. /* The wakeup time is in POSIX time (more or less UTC).
  50. * Ideally RTCs use that same time; but PCs can't do that
  51. * if they need to boot MS-Windows. Messy...
  52. *
  53. * When running in utc mode this process's timezone is UTC,
  54. * so we'll pass a UTC date to the RTC.
  55. *
  56. * Else mode is local so the time given to the RTC
  57. * will instead use the local time zone.
  58. */
  59. tm = localtime(wakeup);
  60. wake.time.tm_sec = tm->tm_sec;
  61. wake.time.tm_min = tm->tm_min;
  62. wake.time.tm_hour = tm->tm_hour;
  63. wake.time.tm_mday = tm->tm_mday;
  64. wake.time.tm_mon = tm->tm_mon;
  65. wake.time.tm_year = tm->tm_year;
  66. /* wday, yday, and isdst fields are unused by Linux */
  67. wake.time.tm_wday = -1;
  68. wake.time.tm_yday = -1;
  69. wake.time.tm_isdst = -1;
  70. /* many rtc alarms only support up to 24 hours from 'now',
  71. * so use the "more than 24 hours" request only if we must
  72. */
  73. if ((rtc_time + (24 * 60 * 60)) > *wakeup) {
  74. xioctl(fd, RTC_ALM_SET, &wake.time);
  75. xioctl(fd, RTC_AIE_ON, 0);
  76. } else {
  77. /* avoid an extra AIE_ON call */
  78. wake.enabled = 1;
  79. xioctl(fd, RTC_WKALM_SET, &wake);
  80. }
  81. }
  82. #define RTCWAKE_OPT_AUTO 0x01
  83. #define RTCWAKE_OPT_LOCAL 0x02
  84. #define RTCWAKE_OPT_UTC 0x04
  85. #define RTCWAKE_OPT_DEVICE 0x08
  86. #define RTCWAKE_OPT_SUSPEND_MODE 0x10
  87. #define RTCWAKE_OPT_SECONDS 0x20
  88. #define RTCWAKE_OPT_TIME 0x40
  89. int rtcwake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  90. int rtcwake_main(int argc UNUSED_PARAM, char **argv)
  91. {
  92. unsigned opt;
  93. const char *rtcname = NULL;
  94. const char *suspend;
  95. const char *opt_seconds;
  96. const char *opt_time;
  97. time_t sys_time;
  98. time_t alarm_time = 0;
  99. unsigned seconds = 0;
  100. int utc = -1;
  101. int fd;
  102. #if ENABLE_LONG_OPTS
  103. static const char rtcwake_longopts[] ALIGN1 =
  104. "auto\0" No_argument "a"
  105. "local\0" No_argument "l"
  106. "utc\0" No_argument "u"
  107. "device\0" Required_argument "d"
  108. "mode\0" Required_argument "m"
  109. "seconds\0" Required_argument "s"
  110. "time\0" Required_argument "t"
  111. ;
  112. applet_long_options = rtcwake_longopts;
  113. #endif
  114. opt = getopt32(argv, "alud:m:s:t:", &rtcname, &suspend, &opt_seconds, &opt_time);
  115. /* this is the default
  116. if (opt & RTCWAKE_OPT_AUTO)
  117. utc = -1;
  118. */
  119. if (opt & (RTCWAKE_OPT_UTC | RTCWAKE_OPT_LOCAL))
  120. utc = opt & RTCWAKE_OPT_UTC;
  121. if (!(opt & RTCWAKE_OPT_SUSPEND_MODE))
  122. suspend = DEFAULT_MODE;
  123. if (opt & RTCWAKE_OPT_SECONDS)
  124. /* alarm time, seconds-to-sleep (relative) */
  125. seconds = xatoi(opt_seconds);
  126. if (opt & RTCWAKE_OPT_TIME)
  127. /* alarm time, time_t (absolute, seconds since 1/1 1970 UTC) */
  128. alarm_time = xatoi(opt_time);
  129. if (!alarm_time && !seconds)
  130. bb_error_msg_and_die("must provide wake time");
  131. if (utc == -1)
  132. utc = rtc_adjtime_is_utc();
  133. /* the rtcname is relative to /dev */
  134. xchdir("/dev");
  135. /* this RTC must exist and (if we'll sleep) be wakeup-enabled */
  136. fd = rtc_xopen(&rtcname, O_RDONLY);
  137. if (strcmp(suspend, "on") && !may_wakeup(rtcname))
  138. bb_error_msg_and_die("%s not enabled for wakeup events", rtcname);
  139. /* relative or absolute alarm time, normalized to time_t */
  140. sys_time = time(NULL);
  141. if (sys_time == (time_t)-1)
  142. bb_perror_msg_and_die("read system time");
  143. rtc_time = rtc_read_time(fd, utc);
  144. if (alarm_time) {
  145. if (alarm_time < sys_time)
  146. bb_error_msg_and_die("time doesn't go backward to %s", ctime(&alarm_time));
  147. alarm_time += sys_time - rtc_time;
  148. } else
  149. alarm_time = rtc_time + seconds + 1;
  150. setup_alarm(fd, &alarm_time);
  151. sync();
  152. printf("wakeup from \"%s\" at %s", suspend, ctime(&alarm_time));
  153. fflush(stdout);
  154. usleep(10 * 1000);
  155. if (strcmp(suspend, "on"))
  156. xopen_xwrite_close(SYS_POWER_PATH, suspend);
  157. else {
  158. /* "fake" suspend ... we'll do the delay ourselves */
  159. unsigned long data;
  160. do {
  161. ssize_t ret = safe_read(fd, &data, sizeof(data));
  162. if (ret < 0) {
  163. bb_perror_msg("rtc read");
  164. break;
  165. }
  166. } while (!(data & RTC_AF));
  167. }
  168. xioctl(fd, RTC_AIE_OFF, 0);
  169. if (ENABLE_FEATURE_CLEAN_UP)
  170. close(fd);
  171. return EXIT_SUCCESS;
  172. }