rtcwake.c 5.6 KB

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