1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47#include "libbb.h"
48#include "rtc_.h"
49
50#define SYS_RTC_PATH "/sys/class/rtc/%s/device/power/wakeup"
51#define SYS_POWER_PATH "/sys/power/state"
52
53static NOINLINE bool may_wakeup(const char *rtcname)
54{
55 ssize_t ret;
56 char buf[128];
57
58
59 rtcname = skip_dev_pfx(rtcname);
60
61 snprintf(buf, sizeof(buf), SYS_RTC_PATH, rtcname);
62 ret = open_read_close(buf, buf, sizeof(buf));
63 if (ret < 0)
64 return false;
65
66
67 return is_prefixed_with(buf, "enabled\n") != NULL;
68}
69
70static NOINLINE void setup_alarm(int fd, time_t *wakeup, time_t rtc_time)
71{
72 struct tm *ptm;
73 struct linux_rtc_wkalrm wake;
74
75
76
77
78
79
80
81
82
83
84
85 ptm = localtime(wakeup);
86
87 wake.time.tm_sec = ptm->tm_sec;
88 wake.time.tm_min = ptm->tm_min;
89 wake.time.tm_hour = ptm->tm_hour;
90 wake.time.tm_mday = ptm->tm_mday;
91 wake.time.tm_mon = ptm->tm_mon;
92 wake.time.tm_year = ptm->tm_year;
93
94 wake.time.tm_wday = -1;
95 wake.time.tm_yday = -1;
96 wake.time.tm_isdst = -1;
97
98
99
100
101 if ((rtc_time + (24 * 60 * 60)) > *wakeup) {
102 xioctl(fd, RTC_ALM_SET, &wake.time);
103 xioctl(fd, RTC_AIE_ON, 0);
104 } else {
105
106 wake.enabled = 1;
107 xioctl(fd, RTC_WKALM_SET, &wake);
108 }
109}
110
111#define RTCWAKE_OPT_AUTO 0x01
112#define RTCWAKE_OPT_LOCAL 0x02
113#define RTCWAKE_OPT_UTC 0x04
114#define RTCWAKE_OPT_DEVICE 0x08
115#define RTCWAKE_OPT_SUSPEND_MODE 0x10
116#define RTCWAKE_OPT_SECONDS 0x20
117#define RTCWAKE_OPT_TIME 0x40
118
119int rtcwake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
120int rtcwake_main(int argc UNUSED_PARAM, char **argv)
121{
122 unsigned opt;
123 const char *rtcname = NULL;
124 const char *suspend = "standby";
125 const char *opt_seconds;
126 const char *opt_time;
127
128 time_t rtc_time;
129 time_t sys_time;
130 time_t alarm_time = alarm_time;
131 unsigned seconds = seconds;
132 int utc = -1;
133 int fd;
134
135#if ENABLE_LONG_OPTS
136 static const char rtcwake_longopts[] ALIGN1 =
137 "auto\0" No_argument "a"
138 "local\0" No_argument "l"
139 "utc\0" No_argument "u"
140 "device\0" Required_argument "d"
141 "mode\0" Required_argument "m"
142 "seconds\0" Required_argument "s"
143 "time\0" Required_argument "t"
144 ;
145#endif
146 opt = getopt32long(argv,
147
148 "^alud:m:s:t:" "\0" "s:t:s--t:t--s", rtcwake_longopts,
149 &rtcname, &suspend, &opt_seconds, &opt_time);
150
151
152
153
154
155 if (opt & (RTCWAKE_OPT_UTC | RTCWAKE_OPT_LOCAL))
156 utc = opt & RTCWAKE_OPT_UTC;
157 if (opt & RTCWAKE_OPT_SECONDS) {
158
159 seconds = xatou(opt_seconds);
160 } else {
161
162
163 if (sizeof(alarm_time) <= sizeof(long))
164 alarm_time = xatol(opt_time);
165 else
166 alarm_time = xatoll(opt_time);
167 }
168
169 if (utc == -1)
170 utc = rtc_adjtime_is_utc();
171
172
173 xchdir("/dev");
174
175
176 fd = rtc_xopen(&rtcname, O_RDONLY);
177
178 if (strcmp(suspend, "on") != 0)
179 if (!may_wakeup(rtcname))
180 bb_error_msg_and_die("%s not enabled for wakeup events", rtcname);
181
182
183 sys_time = time(NULL);
184 {
185 struct tm tm_time;
186 rtc_read_tm(&tm_time, fd);
187 rtc_time = rtc_tm2time(&tm_time, utc);
188 }
189
190 if (opt & RTCWAKE_OPT_TIME) {
191
192 alarm_time += rtc_time - sys_time;
193 if (alarm_time < rtc_time)
194
195
196
197
198 bb_error_msg_and_die("time doesn't go backward to %s", ctime(&alarm_time));
199 } else
200 alarm_time = rtc_time + seconds + 1;
201
202 setup_alarm(fd, &alarm_time, rtc_time);
203 sync();
204#if 0
205 printf("sys_time: %s", ctime(&sys_time));
206 printf("rtc_time: %s", ctime(&rtc_time));
207#endif
208 printf("wakeup from \"%s\" at %s", suspend, ctime(&alarm_time));
209 fflush_all();
210 usleep(10 * 1000);
211
212 if (strcmp(suspend, "on") != 0)
213 xopen_xwrite_close(SYS_POWER_PATH, suspend);
214 else {
215
216 unsigned long data;
217
218 do {
219 ssize_t ret = safe_read(fd, &data, sizeof(data));
220 if (ret < 0) {
221 bb_simple_perror_msg("rtc read");
222 break;
223 }
224 } while (!(data & RTC_AF));
225 }
226
227 xioctl(fd, RTC_AIE_OFF, 0);
228
229 if (ENABLE_FEATURE_CLEAN_UP)
230 close(fd);
231
232 return EXIT_SUCCESS;
233}
234