2008-02-15 07:57:19 +05:30
|
|
|
/*
|
|
|
|
* rtcwake -- enter a system sleep state until specified wakeup time.
|
|
|
|
*
|
|
|
|
* This version was taken from util-linux and scrubbed down for busybox.
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
2008-02-15 07:57:19 +05:30
|
|
|
* This uses cross-platform Linux interfaces to enter a system sleep state,
|
|
|
|
* and leave it no later than a specified time. It uses any RTC framework
|
|
|
|
* driver that supports standard driver model wakeup flags.
|
|
|
|
*
|
|
|
|
* This is normally used like the old "apmsleep" utility, to wake from a
|
|
|
|
* suspend state like ACPI S1 (standby) or S3 (suspend-to-RAM). Most
|
|
|
|
* platforms can implement those without analogues of BIOS, APM, or ACPI.
|
|
|
|
*
|
|
|
|
* On some systems, this can also be used like "nvram-wakeup", waking
|
|
|
|
* from states like ACPI S4 (suspend to disk). Not all systems have
|
|
|
|
* persistent media that are appropriate for such suspend modes.
|
|
|
|
*
|
|
|
|
* The best way to set the system's RTC is so that it holds the current
|
|
|
|
* time in UTC. Use the "-l" flag to tell this program that the system
|
|
|
|
* RTC uses a local timezone instead (maybe you dual-boot MS-Windows).
|
|
|
|
* That flag should not be needed on systems with adjtime support.
|
|
|
|
*/
|
2016-11-23 16:16:32 +05:30
|
|
|
//config:config RTCWAKE
|
2018-12-28 07:50:17 +05:30
|
|
|
//config: bool "rtcwake (6.8 kb)"
|
2016-11-23 16:16:32 +05:30
|
|
|
//config: default y
|
|
|
|
//config: select PLATFORM_LINUX
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: Enter a system sleep state until specified wakeup time.
|
2016-11-23 16:16:32 +05:30
|
|
|
|
|
|
|
//applet:IF_RTCWAKE(APPLET(rtcwake, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_RTCWAKE) += rtcwake.o
|
2008-02-15 07:57:19 +05:30
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define rtcwake_trivial_usage
|
|
|
|
//usage: "[-a | -l | -u] [-d DEV] [-m MODE] [-s SEC | -t TIME]"
|
|
|
|
//usage:#define rtcwake_full_usage "\n\n"
|
|
|
|
//usage: "Enter a system sleep state until specified wakeup time\n"
|
|
|
|
//usage: IF_LONG_OPTS(
|
|
|
|
//usage: "\n -a,--auto Read clock mode from adjtime"
|
|
|
|
//usage: "\n -l,--local Clock is set to local time"
|
|
|
|
//usage: "\n -u,--utc Clock is set to UTC time"
|
2017-01-21 07:19:58 +05:30
|
|
|
//usage: "\n -d,--device DEV Specify the RTC device"
|
|
|
|
//usage: "\n -m,--mode MODE Set sleep state (default: standby)"
|
|
|
|
//usage: "\n -s,--seconds SEC Set timeout in SEC seconds from now"
|
|
|
|
//usage: "\n -t,--time TIME Set timeout to TIME seconds from epoch"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: )
|
|
|
|
//usage: IF_NOT_LONG_OPTS(
|
|
|
|
//usage: "\n -a Read clock mode from adjtime"
|
|
|
|
//usage: "\n -l Clock is set to local time"
|
|
|
|
//usage: "\n -u Clock is set to UTC time"
|
|
|
|
//usage: "\n -d DEV Specify the RTC device"
|
2015-02-18 18:17:27 +05:30
|
|
|
//usage: "\n -m MODE Set sleep state (default: standby)"
|
|
|
|
//usage: "\n -s SEC Set timeout in SEC seconds from now"
|
|
|
|
//usage: "\n -t TIME Set timeout to TIME seconds from epoch"
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage: )
|
|
|
|
|
2008-02-15 07:57:19 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
#include "rtc_.h"
|
|
|
|
|
|
|
|
#define SYS_RTC_PATH "/sys/class/rtc/%s/device/power/wakeup"
|
|
|
|
#define SYS_POWER_PATH "/sys/power/state"
|
|
|
|
|
2009-10-08 18:05:37 +05:30
|
|
|
static NOINLINE bool may_wakeup(const char *rtcname)
|
2008-02-15 07:57:19 +05:30
|
|
|
{
|
|
|
|
ssize_t ret;
|
|
|
|
char buf[128];
|
|
|
|
|
2010-04-06 22:20:05 +05:30
|
|
|
/* strip "/dev/" from the rtcname here */
|
|
|
|
rtcname = skip_dev_pfx(rtcname);
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), SYS_RTC_PATH, rtcname);
|
|
|
|
ret = open_read_close(buf, buf, sizeof(buf));
|
|
|
|
if (ret < 0)
|
2008-05-19 13:48:50 +05:30
|
|
|
return false;
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
/* wakeup events could be disabled or not supported */
|
2015-03-12 22:18:34 +05:30
|
|
|
return is_prefixed_with(buf, "enabled\n") != NULL;
|
2008-02-15 07:57:19 +05:30
|
|
|
}
|
|
|
|
|
2009-10-08 19:34:50 +05:30
|
|
|
static NOINLINE void setup_alarm(int fd, time_t *wakeup, time_t rtc_time)
|
2008-02-15 07:57:19 +05:30
|
|
|
{
|
2010-01-09 23:40:49 +05:30
|
|
|
struct tm *ptm;
|
2010-10-28 22:27:19 +05:30
|
|
|
struct linux_rtc_wkalrm wake;
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
/* The wakeup time is in POSIX time (more or less UTC).
|
|
|
|
* Ideally RTCs use that same time; but PCs can't do that
|
|
|
|
* if they need to boot MS-Windows. Messy...
|
|
|
|
*
|
|
|
|
* When running in utc mode this process's timezone is UTC,
|
|
|
|
* so we'll pass a UTC date to the RTC.
|
|
|
|
*
|
|
|
|
* Else mode is local so the time given to the RTC
|
|
|
|
* will instead use the local time zone.
|
|
|
|
*/
|
2010-01-09 23:40:49 +05:30
|
|
|
ptm = localtime(wakeup);
|
|
|
|
|
|
|
|
wake.time.tm_sec = ptm->tm_sec;
|
|
|
|
wake.time.tm_min = ptm->tm_min;
|
|
|
|
wake.time.tm_hour = ptm->tm_hour;
|
|
|
|
wake.time.tm_mday = ptm->tm_mday;
|
|
|
|
wake.time.tm_mon = ptm->tm_mon;
|
|
|
|
wake.time.tm_year = ptm->tm_year;
|
2008-02-15 07:57:19 +05:30
|
|
|
/* wday, yday, and isdst fields are unused by Linux */
|
|
|
|
wake.time.tm_wday = -1;
|
|
|
|
wake.time.tm_yday = -1;
|
|
|
|
wake.time.tm_isdst = -1;
|
|
|
|
|
|
|
|
/* many rtc alarms only support up to 24 hours from 'now',
|
|
|
|
* so use the "more than 24 hours" request only if we must
|
|
|
|
*/
|
|
|
|
if ((rtc_time + (24 * 60 * 60)) > *wakeup) {
|
|
|
|
xioctl(fd, RTC_ALM_SET, &wake.time);
|
|
|
|
xioctl(fd, RTC_AIE_ON, 0);
|
|
|
|
} else {
|
|
|
|
/* avoid an extra AIE_ON call */
|
|
|
|
wake.enabled = 1;
|
|
|
|
xioctl(fd, RTC_WKALM_SET, &wake);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RTCWAKE_OPT_AUTO 0x01
|
|
|
|
#define RTCWAKE_OPT_LOCAL 0x02
|
|
|
|
#define RTCWAKE_OPT_UTC 0x04
|
|
|
|
#define RTCWAKE_OPT_DEVICE 0x08
|
|
|
|
#define RTCWAKE_OPT_SUSPEND_MODE 0x10
|
|
|
|
#define RTCWAKE_OPT_SECONDS 0x20
|
|
|
|
#define RTCWAKE_OPT_TIME 0x40
|
|
|
|
|
|
|
|
int rtcwake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int rtcwake_main(int argc UNUSED_PARAM, char **argv)
|
2008-02-15 07:57:19 +05:30
|
|
|
{
|
|
|
|
unsigned opt;
|
|
|
|
const char *rtcname = NULL;
|
2014-05-02 16:16:15 +05:30
|
|
|
const char *suspend = "standby";
|
2008-02-15 07:57:19 +05:30
|
|
|
const char *opt_seconds;
|
|
|
|
const char *opt_time;
|
|
|
|
|
2014-05-02 16:16:15 +05:30
|
|
|
time_t rtc_time;
|
2008-02-15 07:57:19 +05:30
|
|
|
time_t sys_time;
|
2014-05-02 16:16:15 +05:30
|
|
|
time_t alarm_time = alarm_time;
|
|
|
|
unsigned seconds = seconds; /* for compiler */
|
2008-02-15 07:57:19 +05:30
|
|
|
int utc = -1;
|
|
|
|
int fd;
|
|
|
|
|
2009-06-19 15:40:38 +05:30
|
|
|
#if ENABLE_LONG_OPTS
|
2008-02-15 08:03:22 +05:30
|
|
|
static const char rtcwake_longopts[] ALIGN1 =
|
|
|
|
"auto\0" No_argument "a"
|
|
|
|
"local\0" No_argument "l"
|
|
|
|
"utc\0" No_argument "u"
|
|
|
|
"device\0" Required_argument "d"
|
|
|
|
"mode\0" Required_argument "m"
|
|
|
|
"seconds\0" Required_argument "s"
|
|
|
|
"time\0" Required_argument "t"
|
|
|
|
;
|
2008-02-15 07:57:19 +05:30
|
|
|
#endif
|
2017-08-09 01:25:02 +05:30
|
|
|
opt = getopt32long(argv,
|
|
|
|
/* Must have -s or -t, exclusive */
|
|
|
|
"^alud:m:s:t:" "\0" "s:t:s--t:t--s", rtcwake_longopts,
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
&rtcname, &suspend, &opt_seconds, &opt_time);
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
/* this is the default
|
|
|
|
if (opt & RTCWAKE_OPT_AUTO)
|
|
|
|
utc = -1;
|
|
|
|
*/
|
|
|
|
if (opt & (RTCWAKE_OPT_UTC | RTCWAKE_OPT_LOCAL))
|
|
|
|
utc = opt & RTCWAKE_OPT_UTC;
|
2014-05-02 16:16:15 +05:30
|
|
|
if (opt & RTCWAKE_OPT_SECONDS) {
|
2008-02-15 07:57:19 +05:30
|
|
|
/* alarm time, seconds-to-sleep (relative) */
|
2014-05-02 16:16:15 +05:30
|
|
|
seconds = xatou(opt_seconds);
|
|
|
|
} else {
|
|
|
|
/* RTCWAKE_OPT_TIME */
|
2008-02-15 07:57:19 +05:30
|
|
|
/* alarm time, time_t (absolute, seconds since 1/1 1970 UTC) */
|
2014-05-02 16:16:15 +05:30
|
|
|
if (sizeof(alarm_time) <= sizeof(long))
|
|
|
|
alarm_time = xatol(opt_time);
|
|
|
|
else
|
|
|
|
alarm_time = xatoll(opt_time);
|
|
|
|
}
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
if (utc == -1)
|
|
|
|
utc = rtc_adjtime_is_utc();
|
|
|
|
|
|
|
|
/* the rtcname is relative to /dev */
|
|
|
|
xchdir("/dev");
|
|
|
|
|
|
|
|
/* this RTC must exist and (if we'll sleep) be wakeup-enabled */
|
2008-02-15 12:49:03 +05:30
|
|
|
fd = rtc_xopen(&rtcname, O_RDONLY);
|
|
|
|
|
2014-05-02 16:16:15 +05:30
|
|
|
if (strcmp(suspend, "on") != 0)
|
|
|
|
if (!may_wakeup(rtcname))
|
|
|
|
bb_error_msg_and_die("%s not enabled for wakeup events", rtcname);
|
2008-02-15 07:57:19 +05:30
|
|
|
|
|
|
|
/* relative or absolute alarm time, normalized to time_t */
|
2009-02-02 16:18:06 +05:30
|
|
|
sys_time = time(NULL);
|
2010-01-07 03:13:39 +05:30
|
|
|
{
|
2010-01-09 23:40:49 +05:30
|
|
|
struct tm tm_time;
|
|
|
|
rtc_read_tm(&tm_time, fd);
|
|
|
|
rtc_time = rtc_tm2time(&tm_time, utc);
|
2010-01-07 03:13:39 +05:30
|
|
|
}
|
|
|
|
|
2014-05-02 16:16:15 +05:30
|
|
|
if (opt & RTCWAKE_OPT_TIME) {
|
|
|
|
/* Correct for RTC<->system clock difference */
|
|
|
|
alarm_time += rtc_time - sys_time;
|
|
|
|
if (alarm_time < rtc_time)
|
|
|
|
/*
|
|
|
|
* Compat message text.
|
|
|
|
* I'd say "RTC time is already ahead of ..." instead.
|
|
|
|
*/
|
2008-02-15 07:57:19 +05:30
|
|
|
bb_error_msg_and_die("time doesn't go backward to %s", ctime(&alarm_time));
|
|
|
|
} else
|
|
|
|
alarm_time = rtc_time + seconds + 1;
|
|
|
|
|
2014-05-02 16:16:15 +05:30
|
|
|
setup_alarm(fd, &alarm_time, rtc_time);
|
2008-02-15 07:57:19 +05:30
|
|
|
sync();
|
2014-05-02 16:16:15 +05:30
|
|
|
#if 0 /*debug*/
|
|
|
|
printf("sys_time: %s", ctime(&sys_time));
|
|
|
|
printf("rtc_time: %s", ctime(&rtc_time));
|
|
|
|
#endif
|
2008-02-15 07:57:19 +05:30
|
|
|
printf("wakeup from \"%s\" at %s", suspend, ctime(&alarm_time));
|
2009-11-02 18:49:51 +05:30
|
|
|
fflush_all();
|
2008-02-15 07:57:19 +05:30
|
|
|
usleep(10 * 1000);
|
|
|
|
|
2014-05-02 16:16:15 +05:30
|
|
|
if (strcmp(suspend, "on") != 0)
|
2008-05-19 13:48:50 +05:30
|
|
|
xopen_xwrite_close(SYS_POWER_PATH, suspend);
|
2008-02-15 07:57:19 +05:30
|
|
|
else {
|
|
|
|
/* "fake" suspend ... we'll do the delay ourselves */
|
|
|
|
unsigned long data;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ssize_t ret = safe_read(fd, &data, sizeof(data));
|
|
|
|
if (ret < 0) {
|
libbb: reduce the overhead of single parameter bb_error_msg() calls
Back in 2007, commit 0c97c9d43707 ("'simple' error message functions by
Loic Grenie") introduced bb_simple_perror_msg() to allow for a lower
overhead call to bb_perror_msg() when only a string was being printed
with no parameters. This saves space for some CPU architectures because
it avoids the overhead of a call to a variadic function. However there
has never been a simple version of bb_error_msg(), and since 2007 many
new calls to bb_perror_msg() have been added that only take a single
parameter and so could have been using bb_simple_perror_message().
This changeset introduces 'simple' versions of bb_info_msg(),
bb_error_msg(), bb_error_msg_and_die(), bb_herror_msg() and
bb_herror_msg_and_die(), and replaces all calls that only take a
single parameter, or use something like ("%s", arg), with calls to the
corresponding 'simple' version.
Since it is likely that single parameter calls to the variadic functions
may be accidentally reintroduced in the future a new debugging config
option WARN_SIMPLE_MSG has been introduced. This uses some macro magic
which will cause any such calls to generate a warning, but this is
turned off by default to avoid use of the unpleasant macros in normal
circumstances.
This is a large changeset due to the number of calls that have been
replaced. The only files that contain changes other than simple
substitution of function calls are libbb.h, libbb/herror_msg.c,
libbb/verror_msg.c and libbb/xfuncs_printf.c. In miscutils/devfsd.c,
networking/udhcp/common.h and util-linux/mdev.c additonal macros have
been added for logging so that single parameter and multiple parameter
logging variants exist.
The amount of space saved varies considerably by architecture, and was
found to be as follows (for 'defconfig' using GCC 7.4):
Arm: -92 bytes
MIPS: -52 bytes
PPC: -1836 bytes
x86_64: -938 bytes
Note that for the MIPS architecture only an exception had to be made
disabling the 'simple' calls for 'udhcp' (in networking/udhcp/common.h)
because it made these files larger on MIPS.
Signed-off-by: James Byrne <james.byrne@origamienergy.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2019-07-02 15:05:03 +05:30
|
|
|
bb_simple_perror_msg("rtc read");
|
2008-02-15 07:57:19 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (!(data & RTC_AF));
|
|
|
|
}
|
|
|
|
|
|
|
|
xioctl(fd, RTC_AIE_OFF, 0);
|
|
|
|
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|