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 | * |
Denis Vlasenko | db12d1d | 2008-12-07 00:52:58 +0000 | [diff] [blame] | 6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
| 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 | */ |
| 25 | |
| 26 | #include "libbb.h" |
| 27 | #include "rtc_.h" |
| 28 | |
| 29 | #define SYS_RTC_PATH "/sys/class/rtc/%s/device/power/wakeup" |
| 30 | #define SYS_POWER_PATH "/sys/power/state" |
Mike Frysinger | 1e93f3c | 2008-06-04 10:33:33 +0000 | [diff] [blame] | 31 | #define DEFAULT_MODE "standby" |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 32 | |
| 33 | static time_t rtc_time; |
| 34 | |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 35 | static bool may_wakeup(const char *rtcname) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 36 | { |
| 37 | ssize_t ret; |
| 38 | char buf[128]; |
| 39 | |
| 40 | /* strip the '/dev/' from the rtcname here */ |
| 41 | if (!strncmp(rtcname, "/dev/", 5)) |
| 42 | rtcname += 5; |
| 43 | |
| 44 | snprintf(buf, sizeof(buf), SYS_RTC_PATH, rtcname); |
| 45 | ret = open_read_close(buf, buf, sizeof(buf)); |
| 46 | if (ret < 0) |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 47 | return false; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 48 | |
| 49 | /* wakeup events could be disabled or not supported */ |
Mike Frysinger | 977bc6a | 2008-02-15 07:19:03 +0000 | [diff] [blame] | 50 | return strncmp(buf, "enabled\n", 8) == 0; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | static void setup_alarm(int fd, time_t *wakeup) |
| 54 | { |
| 55 | struct tm *tm; |
| 56 | struct linux_rtc_wkalrm wake; |
| 57 | |
| 58 | /* The wakeup time is in POSIX time (more or less UTC). |
| 59 | * Ideally RTCs use that same time; but PCs can't do that |
| 60 | * if they need to boot MS-Windows. Messy... |
| 61 | * |
| 62 | * When running in utc mode this process's timezone is UTC, |
| 63 | * so we'll pass a UTC date to the RTC. |
| 64 | * |
| 65 | * Else mode is local so the time given to the RTC |
| 66 | * will instead use the local time zone. |
| 67 | */ |
| 68 | tm = localtime(wakeup); |
| 69 | |
| 70 | wake.time.tm_sec = tm->tm_sec; |
| 71 | wake.time.tm_min = tm->tm_min; |
| 72 | wake.time.tm_hour = tm->tm_hour; |
| 73 | wake.time.tm_mday = tm->tm_mday; |
| 74 | wake.time.tm_mon = tm->tm_mon; |
| 75 | wake.time.tm_year = tm->tm_year; |
| 76 | /* wday, yday, and isdst fields are unused by Linux */ |
| 77 | wake.time.tm_wday = -1; |
| 78 | wake.time.tm_yday = -1; |
| 79 | wake.time.tm_isdst = -1; |
| 80 | |
| 81 | /* many rtc alarms only support up to 24 hours from 'now', |
| 82 | * so use the "more than 24 hours" request only if we must |
| 83 | */ |
| 84 | if ((rtc_time + (24 * 60 * 60)) > *wakeup) { |
| 85 | xioctl(fd, RTC_ALM_SET, &wake.time); |
| 86 | xioctl(fd, RTC_AIE_ON, 0); |
| 87 | } else { |
| 88 | /* avoid an extra AIE_ON call */ |
| 89 | wake.enabled = 1; |
| 90 | xioctl(fd, RTC_WKALM_SET, &wake); |
| 91 | } |
| 92 | } |
| 93 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 94 | #define RTCWAKE_OPT_AUTO 0x01 |
| 95 | #define RTCWAKE_OPT_LOCAL 0x02 |
| 96 | #define RTCWAKE_OPT_UTC 0x04 |
| 97 | #define RTCWAKE_OPT_DEVICE 0x08 |
| 98 | #define RTCWAKE_OPT_SUSPEND_MODE 0x10 |
| 99 | #define RTCWAKE_OPT_SECONDS 0x20 |
| 100 | #define RTCWAKE_OPT_TIME 0x40 |
| 101 | |
| 102 | int rtcwake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 103 | int rtcwake_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 104 | { |
| 105 | unsigned opt; |
| 106 | const char *rtcname = NULL; |
| 107 | const char *suspend; |
| 108 | const char *opt_seconds; |
| 109 | const char *opt_time; |
| 110 | |
| 111 | time_t sys_time; |
| 112 | time_t alarm_time = 0; |
| 113 | unsigned seconds = 0; |
| 114 | int utc = -1; |
| 115 | int fd; |
| 116 | |
| 117 | #if ENABLE_GETOPT_LONG |
Mike Frysinger | ea91536 | 2008-02-15 02:33:22 +0000 | [diff] [blame] | 118 | static const char rtcwake_longopts[] ALIGN1 = |
| 119 | "auto\0" No_argument "a" |
| 120 | "local\0" No_argument "l" |
| 121 | "utc\0" No_argument "u" |
| 122 | "device\0" Required_argument "d" |
| 123 | "mode\0" Required_argument "m" |
| 124 | "seconds\0" Required_argument "s" |
| 125 | "time\0" Required_argument "t" |
| 126 | ; |
| 127 | applet_long_options = rtcwake_longopts; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 128 | #endif |
| 129 | opt = getopt32(argv, "alud:m:s:t:", &rtcname, &suspend, &opt_seconds, &opt_time); |
| 130 | |
| 131 | /* this is the default |
| 132 | if (opt & RTCWAKE_OPT_AUTO) |
| 133 | utc = -1; |
| 134 | */ |
| 135 | if (opt & (RTCWAKE_OPT_UTC | RTCWAKE_OPT_LOCAL)) |
| 136 | utc = opt & RTCWAKE_OPT_UTC; |
| 137 | if (!(opt & RTCWAKE_OPT_SUSPEND_MODE)) |
| 138 | suspend = DEFAULT_MODE; |
| 139 | if (opt & RTCWAKE_OPT_SECONDS) |
| 140 | /* alarm time, seconds-to-sleep (relative) */ |
| 141 | seconds = xatoi(opt_seconds); |
| 142 | if (opt & RTCWAKE_OPT_TIME) |
| 143 | /* alarm time, time_t (absolute, seconds since 1/1 1970 UTC) */ |
| 144 | alarm_time = xatoi(opt_time); |
| 145 | |
| 146 | if (!alarm_time && !seconds) |
| 147 | bb_error_msg_and_die("must provide wake time"); |
| 148 | |
| 149 | if (utc == -1) |
| 150 | utc = rtc_adjtime_is_utc(); |
| 151 | |
| 152 | /* the rtcname is relative to /dev */ |
| 153 | xchdir("/dev"); |
| 154 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 155 | /* this RTC must exist and (if we'll sleep) be wakeup-enabled */ |
Mike Frysinger | 977bc6a | 2008-02-15 07:19:03 +0000 | [diff] [blame] | 156 | fd = rtc_xopen(&rtcname, O_RDONLY); |
| 157 | |
| 158 | if (strcmp(suspend, "on") && !may_wakeup(rtcname)) |
| 159 | bb_error_msg_and_die("%s not enabled for wakeup events", rtcname); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 160 | |
| 161 | /* relative or absolute alarm time, normalized to time_t */ |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame^] | 162 | sys_time = time(NULL); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 163 | if (sys_time == (time_t)-1) |
| 164 | bb_perror_msg_and_die("read system time"); |
| 165 | rtc_time = rtc_read_time(fd, utc); |
| 166 | |
| 167 | if (alarm_time) { |
| 168 | if (alarm_time < sys_time) |
| 169 | bb_error_msg_and_die("time doesn't go backward to %s", ctime(&alarm_time)); |
| 170 | alarm_time += sys_time - rtc_time; |
| 171 | } else |
| 172 | alarm_time = rtc_time + seconds + 1; |
| 173 | setup_alarm(fd, &alarm_time); |
| 174 | |
| 175 | sync(); |
| 176 | printf("wakeup from \"%s\" at %s", suspend, ctime(&alarm_time)); |
| 177 | fflush(stdout); |
| 178 | usleep(10 * 1000); |
| 179 | |
Mike Frysinger | 977bc6a | 2008-02-15 07:19:03 +0000 | [diff] [blame] | 180 | if (strcmp(suspend, "on")) |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 181 | xopen_xwrite_close(SYS_POWER_PATH, suspend); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 182 | else { |
| 183 | /* "fake" suspend ... we'll do the delay ourselves */ |
| 184 | unsigned long data; |
| 185 | |
| 186 | do { |
| 187 | ssize_t ret = safe_read(fd, &data, sizeof(data)); |
| 188 | if (ret < 0) { |
| 189 | bb_perror_msg("rtc read"); |
| 190 | break; |
| 191 | } |
| 192 | } while (!(data & RTC_AF)); |
| 193 | } |
| 194 | |
| 195 | xioctl(fd, RTC_AIE_OFF, 0); |
| 196 | |
| 197 | if (ENABLE_FEATURE_CLEAN_UP) |
| 198 | close(fd); |
| 199 | |
| 200 | return EXIT_SUCCESS; |
| 201 | } |