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#include "libbb.h"
43#ifdef __linux__
44# include <sys/sysinfo.h>
45#endif
46
47#ifndef FSHIFT
48# define FSHIFT 16
49#endif
50#define FIXED_1 (1 << FSHIFT)
51#define LOAD_INT(x) (unsigned)((x) >> FSHIFT)
52#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1 - 1)) * 100)
53
54int uptime_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
55int uptime_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
56{
57 unsigned updays, uphours, upminutes;
58 unsigned opts;
59 struct sysinfo info;
60 struct tm *current_time;
61 time_t current_secs;
62
63 opts = getopt32(argv, "s");
64
65 time(¤t_secs);
66 sysinfo(&info);
67
68 if (opts)
69 current_secs -= info.uptime;
70
71 current_time = localtime(¤t_secs);
72
73 if (opts) {
74 printf("%04u-%02u-%02u %02u:%02u:%02u\n",
75 current_time->tm_year + 1900, current_time->tm_mon + 1, current_time->tm_mday,
76 current_time->tm_hour, current_time->tm_min, current_time->tm_sec
77 );
78
79
80
81
82
83 return EXIT_SUCCESS;
84 }
85
86 printf(" %02u:%02u:%02u up ",
87 current_time->tm_hour, current_time->tm_min, current_time->tm_sec
88 );
89 updays = (unsigned) info.uptime / (unsigned)(60*60*24);
90 if (updays != 0)
91 printf("%u day%s, ", updays, (updays != 1) ? "s" : "");
92 upminutes = (unsigned) info.uptime / (unsigned)60;
93 uphours = (upminutes / (unsigned)60) % (unsigned)24;
94 upminutes %= 60;
95 if (uphours != 0)
96 printf("%2u:%02u", uphours, upminutes);
97 else
98 printf("%u min", upminutes);
99
100#if ENABLE_FEATURE_UPTIME_UTMP_SUPPORT
101 {
102 struct utmpx *ut;
103 unsigned users = 0;
104 while ((ut = getutxent()) != NULL) {
105 if ((ut->ut_type == USER_PROCESS) && (ut->ut_user[0] != '\0'))
106 users++;
107 }
108 printf(", %u users", users);
109 }
110#endif
111
112 printf(", load average: %u.%02u, %u.%02u, %u.%02u\n",
113 LOAD_INT(info.loads[0]), LOAD_FRAC(info.loads[0]),
114 LOAD_INT(info.loads[1]), LOAD_FRAC(info.loads[1]),
115 LOAD_INT(info.loads[2]), LOAD_FRAC(info.loads[2]));
116
117 return EXIT_SUCCESS;
118}
119