1 /* vi: set sw=4 ts=4: */
3 * Mini uptime implementation for busybox
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2, see file LICENSE in this source tree.
10 /* 2011 Pere Orga <gotrunks@gmail.com>
12 * Added FEATURE_UPTIME_UTMP_SUPPORT flag.
14 //config:config UPTIME
15 //config: bool "uptime (632 bytes)"
17 //config: select PLATFORM_LINUX #sysinfo()
19 //config: uptime gives a one line display of the current time, how long
20 //config: the system has been running, how many users are currently logged
21 //config: on, and the system load averages for the past 1, 5, and 15 minutes.
23 //config:config FEATURE_UPTIME_UTMP_SUPPORT
24 //config: bool "Show the number of users"
26 //config: depends on UPTIME && FEATURE_UTMP
28 //config: Display the number of users currently logged on.
30 //applet:IF_UPTIME(APPLET_NOEXEC(uptime, uptime, BB_DIR_USR_BIN, BB_SUID_DROP, uptime))
32 //kbuild:lib-$(CONFIG_UPTIME) += uptime.o
34 //usage:#define uptime_trivial_usage
36 //usage:#define uptime_full_usage "\n\n"
37 //usage: "Display the time since the last boot"
39 //usage:#define uptime_example_usage
41 //usage: " 1:55pm up 2:30, load average: 0.09, 0.04, 0.00\n"
45 # include <sys/sysinfo.h>
49 # define FSHIFT 16 /* nr of bits of precision */
51 #define FIXED_1 (1 << FSHIFT) /* 1.0 as fixed-point */
52 #define LOAD_INT(x) (unsigned)((x) >> FSHIFT)
53 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1 - 1)) * 100)
55 int uptime_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
56 int uptime_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
58 unsigned updays, uphours, upminutes;
61 struct tm *current_time;
64 opts = getopt32(argv, "s");
70 current_secs -= info.uptime;
72 current_time = localtime(¤t_secs);
75 printf("%04u-%02u-%02u %02u:%02u:%02u\n",
76 current_time->tm_year + 1900, current_time->tm_mon + 1, current_time->tm_mday,
77 current_time->tm_hour, current_time->tm_min, current_time->tm_sec
79 /* The above way of calculating boot time is wobbly,
80 * info.uptime has only 1 second precision, which makes
81 * "uptime -s" wander +- one second.
82 * /proc/uptime may be better, it has 0.01s precision.
87 printf(" %02u:%02u:%02u up ",
88 current_time->tm_hour, current_time->tm_min, current_time->tm_sec
90 updays = (unsigned) info.uptime / (unsigned)(60*60*24);
92 printf("%u day%s, ", updays, (updays != 1) ? "s" : "");
93 upminutes = (unsigned) info.uptime / (unsigned)60;
94 uphours = (upminutes / (unsigned)60) % (unsigned)24;
97 printf("%2u:%02u", uphours, upminutes);
99 printf("%u min", upminutes);
101 #if ENABLE_FEATURE_UPTIME_UTMP_SUPPORT
105 while ((ut = getutxent()) != NULL) {
106 if ((ut->ut_type == USER_PROCESS) && (ut->ut_user[0] != '\0'))
109 printf(", %u users", users);
113 printf(", load average: %u.%02u, %u.%02u, %u.%02u\n",
114 LOAD_INT(info.loads[0]), LOAD_FRAC(info.loads[0]),
115 LOAD_INT(info.loads[1]), LOAD_FRAC(info.loads[1]),
116 LOAD_INT(info.loads[2]), LOAD_FRAC(info.loads[2]));