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