Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Denis Vlasenko | db12d1d | 2008-12-07 00:52:58 +0000 | [diff] [blame] | 7 | * |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 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 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 25 | //config:config RTCWAKE |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 26 | //config: bool "rtcwake (6.8 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 27 | //config: default y |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 28 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 29 | //config: Enter a system sleep state until specified wakeup time. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 30 | |
| 31 | //applet:IF_RTCWAKE(APPLET(rtcwake, BB_DIR_USR_SBIN, BB_SUID_DROP)) |
| 32 | |
| 33 | //kbuild:lib-$(CONFIG_RTCWAKE) += rtcwake.o |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 34 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 35 | //usage:#define rtcwake_trivial_usage |
| 36 | //usage: "[-a | -l | -u] [-d DEV] [-m MODE] [-s SEC | -t TIME]" |
| 37 | //usage:#define rtcwake_full_usage "\n\n" |
| 38 | //usage: "Enter a system sleep state until specified wakeup time\n" |
| 39 | //usage: IF_LONG_OPTS( |
| 40 | //usage: "\n -a,--auto Read clock mode from adjtime" |
| 41 | //usage: "\n -l,--local Clock is set to local time" |
| 42 | //usage: "\n -u,--utc Clock is set to UTC time" |
Denys Vlasenko | bbc7bee | 2017-01-21 02:49:58 +0100 | [diff] [blame] | 43 | //usage: "\n -d,--device DEV Specify the RTC device" |
| 44 | //usage: "\n -m,--mode MODE Set sleep state (default: standby)" |
| 45 | //usage: "\n -s,--seconds SEC Set timeout in SEC seconds from now" |
| 46 | //usage: "\n -t,--time TIME Set timeout to TIME seconds from epoch" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 47 | //usage: ) |
| 48 | //usage: IF_NOT_LONG_OPTS( |
| 49 | //usage: "\n -a Read clock mode from adjtime" |
| 50 | //usage: "\n -l Clock is set to local time" |
| 51 | //usage: "\n -u Clock is set to UTC time" |
| 52 | //usage: "\n -d DEV Specify the RTC device" |
Denys Vlasenko | 54e9585 | 2015-02-18 13:47:27 +0100 | [diff] [blame] | 53 | //usage: "\n -m MODE Set sleep state (default: standby)" |
| 54 | //usage: "\n -s SEC Set timeout in SEC seconds from now" |
| 55 | //usage: "\n -t TIME Set timeout to TIME seconds from epoch" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 56 | //usage: ) |
| 57 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 58 | #include "libbb.h" |
| 59 | #include "rtc_.h" |
| 60 | |
| 61 | #define SYS_RTC_PATH "/sys/class/rtc/%s/device/power/wakeup" |
| 62 | #define SYS_POWER_PATH "/sys/power/state" |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 63 | |
Denys Vlasenko | adf922e | 2009-10-08 14:35:37 +0200 | [diff] [blame] | 64 | static NOINLINE bool may_wakeup(const char *rtcname) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 65 | { |
| 66 | ssize_t ret; |
| 67 | char buf[128]; |
| 68 | |
Denys Vlasenko | f8d8aa1 | 2010-04-06 18:50:05 +0200 | [diff] [blame] | 69 | /* strip "/dev/" from the rtcname here */ |
| 70 | rtcname = skip_dev_pfx(rtcname); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 71 | |
| 72 | snprintf(buf, sizeof(buf), SYS_RTC_PATH, rtcname); |
| 73 | ret = open_read_close(buf, buf, sizeof(buf)); |
| 74 | if (ret < 0) |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 75 | return false; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 76 | |
| 77 | /* wakeup events could be disabled or not supported */ |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 78 | return is_prefixed_with(buf, "enabled\n") != NULL; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Denys Vlasenko | 784d095 | 2009-10-08 16:04:50 +0200 | [diff] [blame] | 81 | static NOINLINE void setup_alarm(int fd, time_t *wakeup, time_t rtc_time) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 82 | { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 83 | struct tm *ptm; |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 84 | struct linux_rtc_wkalrm wake; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 85 | |
| 86 | /* The wakeup time is in POSIX time (more or less UTC). |
| 87 | * Ideally RTCs use that same time; but PCs can't do that |
| 88 | * if they need to boot MS-Windows. Messy... |
| 89 | * |
| 90 | * When running in utc mode this process's timezone is UTC, |
| 91 | * so we'll pass a UTC date to the RTC. |
| 92 | * |
| 93 | * Else mode is local so the time given to the RTC |
| 94 | * will instead use the local time zone. |
| 95 | */ |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 96 | ptm = localtime(wakeup); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 97 | |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 98 | wake.time.tm_sec = ptm->tm_sec; |
| 99 | wake.time.tm_min = ptm->tm_min; |
| 100 | wake.time.tm_hour = ptm->tm_hour; |
| 101 | wake.time.tm_mday = ptm->tm_mday; |
| 102 | wake.time.tm_mon = ptm->tm_mon; |
| 103 | wake.time.tm_year = ptm->tm_year; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 104 | /* wday, yday, and isdst fields are unused by Linux */ |
| 105 | wake.time.tm_wday = -1; |
| 106 | wake.time.tm_yday = -1; |
| 107 | wake.time.tm_isdst = -1; |
| 108 | |
| 109 | /* many rtc alarms only support up to 24 hours from 'now', |
| 110 | * so use the "more than 24 hours" request only if we must |
| 111 | */ |
| 112 | if ((rtc_time + (24 * 60 * 60)) > *wakeup) { |
| 113 | xioctl(fd, RTC_ALM_SET, &wake.time); |
| 114 | xioctl(fd, RTC_AIE_ON, 0); |
| 115 | } else { |
| 116 | /* avoid an extra AIE_ON call */ |
| 117 | wake.enabled = 1; |
| 118 | xioctl(fd, RTC_WKALM_SET, &wake); |
| 119 | } |
| 120 | } |
| 121 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 122 | #define RTCWAKE_OPT_AUTO 0x01 |
| 123 | #define RTCWAKE_OPT_LOCAL 0x02 |
| 124 | #define RTCWAKE_OPT_UTC 0x04 |
| 125 | #define RTCWAKE_OPT_DEVICE 0x08 |
| 126 | #define RTCWAKE_OPT_SUSPEND_MODE 0x10 |
| 127 | #define RTCWAKE_OPT_SECONDS 0x20 |
| 128 | #define RTCWAKE_OPT_TIME 0x40 |
| 129 | |
| 130 | int rtcwake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 131 | int rtcwake_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 132 | { |
| 133 | unsigned opt; |
| 134 | const char *rtcname = NULL; |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 135 | const char *suspend = "standby"; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 136 | const char *opt_seconds; |
| 137 | const char *opt_time; |
| 138 | |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 139 | time_t rtc_time; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 140 | time_t sys_time; |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 141 | time_t alarm_time = alarm_time; |
| 142 | unsigned seconds = seconds; /* for compiler */ |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 143 | int utc = -1; |
| 144 | int fd; |
| 145 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 146 | #if ENABLE_LONG_OPTS |
Mike Frysinger | ea91536 | 2008-02-15 02:33:22 +0000 | [diff] [blame] | 147 | static const char rtcwake_longopts[] ALIGN1 = |
| 148 | "auto\0" No_argument "a" |
| 149 | "local\0" No_argument "l" |
| 150 | "utc\0" No_argument "u" |
| 151 | "device\0" Required_argument "d" |
| 152 | "mode\0" Required_argument "m" |
| 153 | "seconds\0" Required_argument "s" |
| 154 | "time\0" Required_argument "t" |
| 155 | ; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 156 | #endif |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 157 | opt = getopt32long(argv, |
| 158 | /* Must have -s or -t, exclusive */ |
| 159 | "^alud:m:s:t:" "\0" "s:t:s--t:t--s", rtcwake_longopts, |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 160 | &rtcname, &suspend, &opt_seconds, &opt_time); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 161 | |
| 162 | /* this is the default |
| 163 | if (opt & RTCWAKE_OPT_AUTO) |
| 164 | utc = -1; |
| 165 | */ |
| 166 | if (opt & (RTCWAKE_OPT_UTC | RTCWAKE_OPT_LOCAL)) |
| 167 | utc = opt & RTCWAKE_OPT_UTC; |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 168 | if (opt & RTCWAKE_OPT_SECONDS) { |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 169 | /* alarm time, seconds-to-sleep (relative) */ |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 170 | seconds = xatou(opt_seconds); |
| 171 | } else { |
| 172 | /* RTCWAKE_OPT_TIME */ |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 173 | /* alarm time, time_t (absolute, seconds since 1/1 1970 UTC) */ |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 174 | if (sizeof(alarm_time) <= sizeof(long)) |
| 175 | alarm_time = xatol(opt_time); |
| 176 | else |
| 177 | alarm_time = xatoll(opt_time); |
| 178 | } |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 179 | |
| 180 | if (utc == -1) |
| 181 | utc = rtc_adjtime_is_utc(); |
| 182 | |
| 183 | /* the rtcname is relative to /dev */ |
| 184 | xchdir("/dev"); |
| 185 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 186 | /* this RTC must exist and (if we'll sleep) be wakeup-enabled */ |
Mike Frysinger | 977bc6a | 2008-02-15 07:19:03 +0000 | [diff] [blame] | 187 | fd = rtc_xopen(&rtcname, O_RDONLY); |
| 188 | |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 189 | if (strcmp(suspend, "on") != 0) |
| 190 | if (!may_wakeup(rtcname)) |
| 191 | bb_error_msg_and_die("%s not enabled for wakeup events", rtcname); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 192 | |
| 193 | /* relative or absolute alarm time, normalized to time_t */ |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 194 | sys_time = time(NULL); |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 195 | { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 196 | struct tm tm_time; |
| 197 | rtc_read_tm(&tm_time, fd); |
| 198 | rtc_time = rtc_tm2time(&tm_time, utc); |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 199 | } |
| 200 | |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 201 | if (opt & RTCWAKE_OPT_TIME) { |
| 202 | /* Correct for RTC<->system clock difference */ |
| 203 | alarm_time += rtc_time - sys_time; |
| 204 | if (alarm_time < rtc_time) |
| 205 | /* |
| 206 | * Compat message text. |
| 207 | * I'd say "RTC time is already ahead of ..." instead. |
| 208 | */ |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 209 | bb_error_msg_and_die("time doesn't go backward to %s", ctime(&alarm_time)); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 210 | } else |
| 211 | alarm_time = rtc_time + seconds + 1; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 212 | |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 213 | setup_alarm(fd, &alarm_time, rtc_time); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 214 | sync(); |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 215 | #if 0 /*debug*/ |
| 216 | printf("sys_time: %s", ctime(&sys_time)); |
| 217 | printf("rtc_time: %s", ctime(&rtc_time)); |
| 218 | #endif |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 219 | printf("wakeup from \"%s\" at %s", suspend, ctime(&alarm_time)); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 220 | fflush_all(); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 221 | usleep(10 * 1000); |
| 222 | |
Denys Vlasenko | a4476eb | 2014-05-02 12:46:15 +0200 | [diff] [blame] | 223 | if (strcmp(suspend, "on") != 0) |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 224 | xopen_xwrite_close(SYS_POWER_PATH, suspend); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 225 | else { |
| 226 | /* "fake" suspend ... we'll do the delay ourselves */ |
| 227 | unsigned long data; |
| 228 | |
| 229 | do { |
| 230 | ssize_t ret = safe_read(fd, &data, sizeof(data)); |
| 231 | if (ret < 0) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 232 | bb_simple_perror_msg("rtc read"); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 233 | break; |
| 234 | } |
| 235 | } while (!(data & RTC_AF)); |
| 236 | } |
| 237 | |
| 238 | xioctl(fd, RTC_AIE_OFF, 0); |
| 239 | |
| 240 | if (ENABLE_FEATURE_CLEAN_UP) |
| 241 | close(fd); |
| 242 | |
| 243 | return EXIT_SUCCESS; |
| 244 | } |