blob: 3262f41b4aa4e40931addfe6cb4bbefc644a3922 [file] [log] [blame]
Erik Andersen65fc1c72000-03-05 08:16:03 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini uptime implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Erik Andersen65fc1c72000-03-05 08:16:03 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Erik Andersen65fc1c72000-03-05 08:16:03 +00008 */
9
Pere Orgad91b1382011-08-09 04:09:17 +020010/* 2011 Pere Orga <gotrunks@gmail.com>
11 *
12 * Added FEATURE_UPTIME_UTMP_SUPPORT flag.
Erik Andersen65fc1c72000-03-05 08:16:03 +000013 */
Pere Orgad91b1382011-08-09 04:09:17 +020014//config:config UPTIME
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020015//config: bool "uptime (632 bytes)"
Pere Orgad91b1382011-08-09 04:09:17 +020016//config: default y
17//config: select PLATFORM_LINUX #sysinfo()
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//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.
Pere Orgad91b1382011-08-09 04:09:17 +020022//config:
23//config:config FEATURE_UPTIME_UTMP_SUPPORT
Denys Vlasenkof5604222017-01-10 14:58:54 +010024//config: bool "Show the number of users"
Pere Orgad91b1382011-08-09 04:09:17 +020025//config: default y
26//config: depends on UPTIME && FEATURE_UTMP
27//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020028//config: Display the number of users currently logged on.
Pere Orgad91b1382011-08-09 04:09:17 +020029
Denys Vlasenko1a1203f2017-08-07 16:47:34 +020030//applet:IF_UPTIME(APPLET_NOEXEC(uptime, uptime, BB_DIR_USR_BIN, BB_SUID_DROP, uptime))
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010031
32//kbuild:lib-$(CONFIG_UPTIME) += uptime.o
33
Pere Orga5bc8c002011-04-11 03:29:49 +020034//usage:#define uptime_trivial_usage
35//usage: ""
36//usage:#define uptime_full_usage "\n\n"
37//usage: "Display the time since the last boot"
38//usage:
39//usage:#define uptime_example_usage
40//usage: "$ uptime\n"
41//usage: " 1:55pm up 2:30, load average: 0.09, 0.04, 0.00\n"
42
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000043#include "libbb.h"
Denys Vlasenko67905e22011-07-26 13:42:12 +020044#ifdef __linux__
45# include <sys/sysinfo.h>
46#endif
47
Mike Frysinger038b0762005-08-27 18:18:06 +000048#ifndef FSHIFT
49# define FSHIFT 16 /* nr of bits of precision */
50#endif
Denys Vlasenko5845a062011-08-10 13:00:04 +020051#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)
Erik Andersen65fc1c72000-03-05 08:16:03 +000054
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000055int uptime_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000056int uptime_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Erik Andersen65fc1c72000-03-05 08:16:03 +000057{
Denys Vlasenko5845a062011-08-10 13:00:04 +020058 unsigned updays, uphours, upminutes;
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020059 unsigned opts;
Erik Andersen65fc1c72000-03-05 08:16:03 +000060 struct sysinfo info;
61 struct tm *current_time;
62 time_t current_secs;
63
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020064 opts = getopt32(argv, "s");
Erik Andersen65fc1c72000-03-05 08:16:03 +000065
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020066 time(&current_secs);
Erik Andersen65fc1c72000-03-05 08:16:03 +000067 sysinfo(&info);
68
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020069 if (opts) // -s
70 current_secs -= info.uptime;
71
72 current_time = localtime(&current_secs);
73
74 if (opts) { // -s
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
78 );
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.
83 */
84 return EXIT_SUCCESS;
85 }
86
Denys Vlasenko5845a062011-08-10 13:00:04 +020087 printf(" %02u:%02u:%02u up ",
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020088 current_time->tm_hour, current_time->tm_min, current_time->tm_sec
89 );
Denys Vlasenko5845a062011-08-10 13:00:04 +020090 updays = (unsigned) info.uptime / (unsigned)(60*60*24);
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020091 if (updays != 0)
Denys Vlasenko5845a062011-08-10 13:00:04 +020092 printf("%u day%s, ", updays, (updays != 1) ? "s" : "");
93 upminutes = (unsigned) info.uptime / (unsigned)60;
94 uphours = (upminutes / (unsigned)60) % (unsigned)24;
Erik Andersen65fc1c72000-03-05 08:16:03 +000095 upminutes %= 60;
Denys Vlasenko3f2e9632018-08-03 19:53:49 +020096 if (uphours != 0)
Denys Vlasenko5845a062011-08-10 13:00:04 +020097 printf("%2u:%02u", uphours, upminutes);
Erik Andersen65fc1c72000-03-05 08:16:03 +000098 else
Denys Vlasenko5845a062011-08-10 13:00:04 +020099 printf("%u min", upminutes);
Erik Andersen65fc1c72000-03-05 08:16:03 +0000100
Pere Orgad91b1382011-08-09 04:09:17 +0200101#if ENABLE_FEATURE_UPTIME_UTMP_SUPPORT
Denys Vlasenko5845a062011-08-10 13:00:04 +0200102 {
Bernhard Reutner-Fischer86a7f182015-04-02 23:03:46 +0200103 struct utmpx *ut;
Denys Vlasenko5845a062011-08-10 13:00:04 +0200104 unsigned users = 0;
Bernhard Reutner-Fischer86a7f182015-04-02 23:03:46 +0200105 while ((ut = getutxent()) != NULL) {
106 if ((ut->ut_type == USER_PROCESS) && (ut->ut_user[0] != '\0'))
Denys Vlasenko5845a062011-08-10 13:00:04 +0200107 users++;
108 }
109 printf(", %u users", users);
Pere Orgad91b1382011-08-09 04:09:17 +0200110 }
Pere Orgad91b1382011-08-09 04:09:17 +0200111#endif
112
Denys Vlasenko5845a062011-08-10 13:00:04 +0200113 printf(", load average: %u.%02u, %u.%02u, %u.%02u\n",
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000114 LOAD_INT(info.loads[0]), LOAD_FRAC(info.loads[0]),
115 LOAD_INT(info.loads[1]), LOAD_FRAC(info.loads[1]),
Erik Andersen65fc1c72000-03-05 08:16:03 +0000116 LOAD_INT(info.loads[2]), LOAD_FRAC(info.loads[2]));
117
Matt Kraai3e856ce2000-12-01 02:55:13 +0000118 return EXIT_SUCCESS;
Erik Andersen65fc1c72000-03-05 08:16:03 +0000119}