blob: c6efe2d773f6f042c03a687ec1b02e910cd75a4b [file] [log] [blame]
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +00001/* vi: set sw=4 ts=4: */
Eric Andersen420b2082002-09-17 22:14:58 +00002/*
3 * A tiny 'top' utility.
4 *
Eric Andersen08a72202002-09-30 20:52:10 +00005 * This is written specifically for the linux /proc/<PID>/stat(m)
6 * files format.
7
8 * This reads the PIDs of all processes and their status and shows
9 * the status of processes (first ones that fit to screen) at given
10 * intervals.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000011 *
Eric Andersen420b2082002-09-17 22:14:58 +000012 * NOTES:
13 * - At startup this changes to /proc, all the reads are then
14 * relative to that.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 *
Eric Andersen420b2082002-09-17 22:14:58 +000016 * (C) Eero Tamminen <oak at welho dot com>
Eric Andersen08a72202002-09-30 20:52:10 +000017 *
Eric Andersenaff114c2004-04-14 17:51:38 +000018 * Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru>
Eric Andersen420b2082002-09-17 22:14:58 +000019 */
Eric Andersen08a72202002-09-30 20:52:10 +000020
21/* Original code Copyrights */
22/*
23 * Copyright (c) 1992 Branko Lankester
24 * Copyright (c) 1992 Roger Binns
25 * Copyright (C) 1994-1996 Charles L. Blake.
26 * Copyright (C) 1992-1998 Michael K. Johnson
27 * May be distributed under the conditions of the
28 * GNU Library General Public License
29 */
30
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000031#include "libbb.h"
Eric Andersen420b2082002-09-17 22:14:58 +000032
Eric Andersen08a72202002-09-30 20:52:10 +000033
Denis Vlasenko85818632007-04-19 14:47:11 +000034typedef struct top_status_t {
Mike Frysinger0aa6ba52007-02-08 08:21:58 +000035 unsigned long vsz;
Denis Vlasenko459e4d62006-11-05 00:43:51 +000036#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
37 unsigned long ticks;
38 unsigned pcpu; /* delta of ticks */
39#endif
40 unsigned pid, ppid;
41 unsigned uid;
42 char state[4];
43 char comm[COMM_LEN];
44} top_status_t;
Denis Vlasenko85818632007-04-19 14:47:11 +000045
46typedef struct jiffy_counts_t{
47 unsigned long long usr,nic,sys,idle,iowait,irq,softirq,steal;
48 unsigned long long total;
49 unsigned long long busy;
50} jiffy_counts_t;
51
Denis Vlasenko459e4d62006-11-05 00:43:51 +000052/* This structure stores some critical information from one frame to
53 the next. Used for finding deltas. */
Denis Vlasenko85818632007-04-19 14:47:11 +000054typedef struct save_hist {
Denis Vlasenko459e4d62006-11-05 00:43:51 +000055 unsigned long ticks;
56 unsigned pid;
Denis Vlasenko85818632007-04-19 14:47:11 +000057} save_hist;
58
59typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
60
61enum { SORT_DEPTH = 3 };
62
63struct globals {
64 top_status_t *top;
65 int ntop;
66#if ENABLE_FEATURE_USE_TERMIOS
67 struct termios initial_settings;
68#endif
69#if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
70 cmp_funcp sort_function;
71#else
72 cmp_funcp sort_function[SORT_DEPTH];
73 struct save_hist *prev_hist;
74 int prev_hist_count;
75 jiffy_counts_t jif, prev_jif;
76 /* int hist_iterations; */
77 unsigned total_pcpu;
78 /* unsigned long total_vsz; */
79#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +000080};
Denis Vlasenko85818632007-04-19 14:47:11 +000081#define G (*(struct globals*)&bb_common_bufsiz1)
82#define top (G.top )
83#define ntop (G.ntop )
84#if ENABLE_FEATURE_USE_TERMIOS
85#define initial_settings (G. initial_settings )
86#endif
87#define sort_function (G.sort_function )
Denis Vlasenko3bba5452006-12-30 17:57:03 +000088#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko85818632007-04-19 14:47:11 +000089#define prev_hist (G.prev_hist )
90#define prev_hist_count (G.prev_hist_count )
91#define jif (G.jif )
92#define prev_jif (G.prev_jif )
93#define total_pcpu (G.total_pcpu )
Denis Vlasenko3bba5452006-12-30 17:57:03 +000094#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +000095
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000096#define OPT_BATCH_MODE (option_mask32 & 0x4)
Eric Andersen08a72202002-09-30 20:52:10 +000097
Denis Vlasenko85818632007-04-19 14:47:11 +000098
Denis Vlasenkofa076802006-11-05 00:38:51 +000099#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000100static int pid_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000101{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000102 /* Buggy wrt pids with high bit set */
103 /* (linux pids are in [1..2^15-1]) */
Rob Landleyb2804552006-02-13 22:04:27 +0000104 return (Q->pid - P->pid);
Eric Andersen08a72202002-09-30 20:52:10 +0000105}
Mike Frysinger223b8872005-07-30 09:42:05 +0000106#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000107
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000108static int mem_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000109{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000110 /* We want to avoid unsigned->signed and truncation errors */
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000111 if (Q->vsz < P->vsz) return -1;
112 return Q->vsz != P->vsz; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000113}
114
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000115
Denis Vlasenko85818632007-04-19 14:47:11 +0000116#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000117
118static int pcpu_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000119{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000120 /* Buggy wrt ticks with high bit set */
121 /* Affects only processes for which ticks overflow */
122 return (int)Q->pcpu - (int)P->pcpu;
Eric Andersen08a72202002-09-30 20:52:10 +0000123}
124
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000125static int time_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000126{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000127 /* We want to avoid unsigned->signed and truncation errors */
128 if (Q->ticks < P->ticks) return -1;
129 return Q->ticks != P->ticks; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000130}
131
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000132static int mult_lvl_cmp(void* a, void* b)
133{
Rob Landleyb2804552006-02-13 22:04:27 +0000134 int i, cmp_val;
Eric Andersen08a72202002-09-30 20:52:10 +0000135
Denis Vlasenkofa076802006-11-05 00:38:51 +0000136 for (i = 0; i < SORT_DEPTH; i++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000137 cmp_val = (*sort_function[i])(a, b);
138 if (cmp_val != 0)
139 return cmp_val;
140 }
141 return 0;
Eric Andersen08a72202002-09-30 20:52:10 +0000142}
143
Eric Andersen08a72202002-09-30 20:52:10 +0000144
Rob Landley997650b2006-04-24 23:13:46 +0000145static void get_jiffy_counts(void)
Rob Landleyb2804552006-02-13 22:04:27 +0000146{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000147 FILE* fp = xfopen("stat", "r");
Rob Landley997650b2006-04-24 23:13:46 +0000148 prev_jif = jif;
149 if (fscanf(fp, "cpu %lld %lld %lld %lld %lld %lld %lld %lld",
150 &jif.usr,&jif.nic,&jif.sys,&jif.idle,
151 &jif.iowait,&jif.irq,&jif.softirq,&jif.steal) < 4) {
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000152 bb_error_msg_and_die("failed to read /proc/stat");
Rob Landleyb2804552006-02-13 22:04:27 +0000153 }
Rob Landley997650b2006-04-24 23:13:46 +0000154 fclose(fp);
155 jif.total = jif.usr + jif.nic + jif.sys + jif.idle
156 + jif.iowait + jif.irq + jif.softirq + jif.steal;
157 /* procps 2.x does not count iowait as busy time */
158 jif.busy = jif.total - jif.idle - jif.iowait;
Eric Andersen08a72202002-09-30 20:52:10 +0000159}
160
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000161
Eric Andersen08a72202002-09-30 20:52:10 +0000162static void do_stats(void)
163{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000164 top_status_t *cur;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000165 pid_t pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000166 int i, last_i, n;
Rob Landley997650b2006-04-24 23:13:46 +0000167 struct save_hist *new_hist;
Eric Andersen08a72202002-09-30 20:52:10 +0000168
Rob Landley997650b2006-04-24 23:13:46 +0000169 get_jiffy_counts();
170 total_pcpu = 0;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000171 /* total_vsz = 0; */
Rob Landley997650b2006-04-24 23:13:46 +0000172 new_hist = xmalloc(sizeof(struct save_hist)*ntop);
Rob Landleyb2804552006-02-13 22:04:27 +0000173 /*
174 * Make a pass through the data to get stats.
175 */
Rob Landley997650b2006-04-24 23:13:46 +0000176 /* hist_iterations = 0; */
177 i = 0;
178 for (n = 0; n < ntop; n++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000179 cur = top + n;
180
181 /*
182 * Calculate time in cur process. Time is sum of user time
Rob Landley997650b2006-04-24 23:13:46 +0000183 * and system time
Rob Landleyb2804552006-02-13 22:04:27 +0000184 */
Rob Landleyb2804552006-02-13 22:04:27 +0000185 pid = cur->pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000186 new_hist[n].ticks = cur->ticks;
Rob Landley997650b2006-04-24 23:13:46 +0000187 new_hist[n].pid = pid;
Rob Landleyb2804552006-02-13 22:04:27 +0000188
189 /* find matching entry from previous pass */
Rob Landley997650b2006-04-24 23:13:46 +0000190 cur->pcpu = 0;
191 /* do not start at index 0, continue at last used one
192 * (brought hist_iterations from ~14000 down to 172) */
193 last_i = i;
194 if (prev_hist_count) do {
195 if (prev_hist[i].pid == pid) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000196 cur->pcpu = cur->ticks - prev_hist[i].ticks;
197 total_pcpu += cur->pcpu;
Rob Landleyb2804552006-02-13 22:04:27 +0000198 break;
199 }
Rob Landley997650b2006-04-24 23:13:46 +0000200 i = (i+1) % prev_hist_count;
201 /* hist_iterations++; */
202 } while (i != last_i);
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000203 /* total_vsz += cur->vsz; */
Eric Andersen08a72202002-09-30 20:52:10 +0000204 }
205
206 /*
Rob Landleyb2804552006-02-13 22:04:27 +0000207 * Save cur frame's information.
Eric Andersen08a72202002-09-30 20:52:10 +0000208 */
Rob Landley997650b2006-04-24 23:13:46 +0000209 free(prev_hist);
210 prev_hist = new_hist;
211 prev_hist_count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000212}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000213#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Eric Andersen08a72202002-09-30 20:52:10 +0000214
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000215
Eric Andersen420b2082002-09-17 22:14:58 +0000216/* display generic info (meminfo / loadavg) */
Rob Landley997650b2006-04-24 23:13:46 +0000217static unsigned long display_generic(int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000218{
219 FILE *fp;
220 char buf[80];
Rob Landley997650b2006-04-24 23:13:46 +0000221 char scrbuf[80];
222 char *end;
Eric Andersen420b2082002-09-17 22:14:58 +0000223 unsigned long total, used, mfree, shared, buffers, cached;
224
225 /* read memory info */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000226 fp = xfopen("meminfo", "r");
Eric Andersen420b2082002-09-17 22:14:58 +0000227
Eric Andersen7857c032003-10-11 18:47:20 +0000228 /*
229 * Old kernels (such as 2.4.x) had a nice summary of memory info that
230 * we could parse, however this is gone entirely in 2.6. Try parsing
231 * the old way first, and if that fails, parse each field manually.
232 *
233 * First, we read in the first line. Old kernels will have bogus
234 * strings we don't care about, whereas new kernels will start right
235 * out with MemTotal:
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000236 * -- PFM.
Eric Andersen7857c032003-10-11 18:47:20 +0000237 */
238 if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000239 fgets(buf, sizeof(buf), fp); /* skip first line */
Eric Andersen7857c032003-10-11 18:47:20 +0000240
241 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000242 &total, &used, &mfree, &shared, &buffers, &cached);
243 /* convert to kilobytes */
244 used /= 1024;
245 mfree /= 1024;
246 shared /= 1024;
247 buffers /= 1024;
248 cached /= 1024;
249 total /= 1024;
Eric Andersen7857c032003-10-11 18:47:20 +0000250 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000251 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000252 * Revert to manual parsing, which incidentally already has the
253 * sizes in kilobytes. This should be safe for both 2.4 and
254 * 2.6.
255 */
Eric Andersen7857c032003-10-11 18:47:20 +0000256
257 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
258
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000259 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000260 * MemShared: is no longer present in 2.6. Report this as 0,
261 * to maintain consistent behavior with normal procps.
262 */
263 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
264 shared = 0;
265
266 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
267 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
268
269 used = total - mfree;
Eric Andersen420b2082002-09-17 22:14:58 +0000270 }
271 fclose(fp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000272
Rob Landley997650b2006-04-24 23:13:46 +0000273 /* read load average as a string */
Rob Landley997650b2006-04-24 23:13:46 +0000274 buf[0] = '\0';
Denis Vlasenko25d80622006-10-27 09:34:22 +0000275 open_read_close("loadavg", buf, sizeof(buf));
Rob Landley997650b2006-04-24 23:13:46 +0000276 end = strchr(buf, ' ');
277 if (end) end = strchr(end+1, ' ');
278 if (end) end = strchr(end+1, ' ');
279 if (end) *end = '\0';
Eric Andersen420b2082002-09-17 22:14:58 +0000280
Eric Andersen420b2082002-09-17 22:14:58 +0000281 /* output memory info and load average */
Eric Andersen08a72202002-09-30 20:52:10 +0000282 /* clear screen & go to top */
Rob Landley997650b2006-04-24 23:13:46 +0000283 if (scr_width > sizeof(scrbuf))
284 scr_width = sizeof(scrbuf);
285 snprintf(scrbuf, scr_width,
286 "Mem: %ldK used, %ldK free, %ldK shrd, %ldK buff, %ldK cached",
Rob Landleyb2804552006-02-13 22:04:27 +0000287 used, mfree, shared, buffers, cached);
Denis Vlasenko266bc172006-09-29 17:16:39 +0000288
289 printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf);
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000290
Denis Vlasenko5a654472007-06-10 17:11:59 +0000291 if (ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS) {
292 /*
293 * xxx% = (jif.xxx - prev_jif.xxx) / (jif.total - prev_jif.total) * 100%
294 */
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000295 /* using (unsigned) cast to make multiplication cheaper: */
Denis Vlasenko74511962007-06-11 16:31:55 +0000296#if ENABLE_FEATURE_TOP_DECIMALS
297/* Generated code is approx +0.5k */
298#define CALC_STAT(xxx) div_t xxx = div(1000 * (unsigned)(jif.xxx - prev_jif.xxx) / total_diff, 10)
299#define SHOW_STAT(xxx) xxx.quot, '0'+xxx.rem
300#define FMT "%3u.%c%%"
301#else
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000302#define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(jif.xxx - prev_jif.xxx) / total_diff
303#define SHOW_STAT(xxx) xxx
304#define FMT "%3u%%"
Denis Vlasenko74511962007-06-11 16:31:55 +0000305#endif
Denis Vlasenko5a654472007-06-10 17:11:59 +0000306 unsigned total_diff = (jif.total - prev_jif.total ? : 1);
307 CALC_STAT(usr);
308 CALC_STAT(sys);
309 CALC_STAT(nic);
310 CALC_STAT(idle);
311 CALC_STAT(iowait);
312 CALC_STAT(irq);
313 CALC_STAT(softirq);
314 //CALC_STAT(steal);
315
316 snprintf(scrbuf, scr_width,
Denis Vlasenko74511962007-06-11 16:31:55 +0000317 /* Barely fits in 79 chars when in "decimals" mode.
318 * %3u in practice almost never displays "100"
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000319 * and thus has implicit leading space: " 99" */
Denis Vlasenko74511962007-06-11 16:31:55 +0000320 "CPU:"FMT" usr"FMT" sys"FMT" nice"FMT" idle"FMT" io"FMT" irq"FMT" softirq",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000321 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
322 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
Denis Vlasenko74511962007-06-11 16:31:55 +0000323 //, SHOW_STAT(steal) - what is this 'steal' thing?
324 // I doubt anyone wants to know it
Denis Vlasenko5a654472007-06-10 17:11:59 +0000325 );
326 puts(scrbuf);
327#undef SHOW_STAT
328#undef CALC_STAT
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000329#undef FMT
Denis Vlasenko5a654472007-06-10 17:11:59 +0000330 }
331
Denis Vlasenko25d80622006-10-27 09:34:22 +0000332 snprintf(scrbuf, scr_width, "Load average: %s", buf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000333 puts(scrbuf);
Rob Landley997650b2006-04-24 23:13:46 +0000334
Eric Andersen7857c032003-10-11 18:47:20 +0000335 return total;
Eric Andersen420b2082002-09-17 22:14:58 +0000336}
337
Denis Vlasenko74511962007-06-11 16:31:55 +0000338#if ENABLE_FEATURE_TOP_DECIMALS
339#define UPSCALE 1000
340#define CALC_STAT(name, val) div_t name = div((val), 10)
341#define SHOW_STAT(name) name.quot, '0'+name.rem
342#define FMT "%3u.%c"
343#else
344#define UPSCALE 100
345#define CALC_STAT(name, val) unsigned name = (val)
346#define SHOW_STAT(name) name
347#define FMT " %3u%%"
348#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000349/* display process statuses */
Rob Landley997650b2006-04-24 23:13:46 +0000350static void display_status(int count, int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000351{
Rob Landley997650b2006-04-24 23:13:46 +0000352 enum {
Denis Vlasenko74511962007-06-11 16:31:55 +0000353 BITS_PER_INT = sizeof(int)*8
Rob Landley997650b2006-04-24 23:13:46 +0000354 };
355
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000356 top_status_t *s = top;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000357 char vsz_str_buf[8];
358 unsigned long total_memory = display_generic(scr_width); /* or use total_vsz? */
Denis Vlasenko74511962007-06-11 16:31:55 +0000359 /* xxx_shift and xxx_scale variables allow us to replace
360 * expensive divides with multiply and shift */
361 unsigned pmem_shift, pmem_scale, pmem_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000362#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko74511962007-06-11 16:31:55 +0000363 unsigned pcpu_shift, pcpu_scale, pcpu_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000364 unsigned busy_jifs;
Rob Landley997650b2006-04-24 23:13:46 +0000365
Eric Andersen420b2082002-09-17 22:14:58 +0000366 /* what info of the processes is shown */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000367 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
Denis Vlasenko74511962007-06-11 16:31:55 +0000368 " PID PPID USER STAT VSZ %MEM %CPU COMMAND");
Rob Landley997650b2006-04-24 23:13:46 +0000369#define MIN_WIDTH \
Denis Vlasenko74511962007-06-11 16:31:55 +0000370 sizeof( " PID PPID USER STAT VSZ %MEM %CPU C")
Eric Andersen08a72202002-09-30 20:52:10 +0000371#else
Denis Vlasenko74511962007-06-11 16:31:55 +0000372
373 /* !CPU_USAGE_PERCENTAGE */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000374 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
Denis Vlasenko74511962007-06-11 16:31:55 +0000375 " PID PPID USER STAT VSZ %MEM COMMAND");
Rob Landley997650b2006-04-24 23:13:46 +0000376#define MIN_WIDTH \
Denis Vlasenko74511962007-06-11 16:31:55 +0000377 sizeof( " PID PPID USER STAT VSZ %MEM C")
Rob Landley997650b2006-04-24 23:13:46 +0000378#endif
379
380 /*
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000381 * MEM% = s->vsz/MemTotal
Rob Landley997650b2006-04-24 23:13:46 +0000382 */
Denis Vlasenko74511962007-06-11 16:31:55 +0000383 pmem_shift = BITS_PER_INT-11;
384 pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000385 /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
Rob Landley997650b2006-04-24 23:13:46 +0000386 while (pmem_scale >= 512) {
387 pmem_scale /= 4;
388 pmem_shift -= 2;
389 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000390 pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000391#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
392 busy_jifs = jif.busy - prev_jif.busy;
393 /* This happens if there were lots of short-lived processes
394 * between two top updates (e.g. compilation) */
395 if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
396
Rob Landley997650b2006-04-24 23:13:46 +0000397 /*
398 * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
399 * (pcpu is delta of sys+user time between samples)
400 */
401 /* (jif.xxx - prev_jif.xxx) and s->pcpu are
402 * in 0..~64000 range (HZ*update_interval).
403 * we assume that unsigned is at least 32-bit.
404 */
405 pcpu_shift = 6;
Denis Vlasenko74511962007-06-11 16:31:55 +0000406 pcpu_scale = (UPSCALE*64*(uint16_t)busy_jifs ? : 1);
407 while (pcpu_scale < (1U<<(BITS_PER_INT-2))) {
Rob Landley997650b2006-04-24 23:13:46 +0000408 pcpu_scale *= 4;
409 pcpu_shift += 2;
410 }
411 pcpu_scale /= ( (uint16_t)(jif.total-prev_jif.total)*total_pcpu ? : 1);
412 /* we want (s->pcpu * pcpu_scale) to never overflow */
413 while (pcpu_scale >= 1024) {
414 pcpu_scale /= 4;
415 pcpu_shift -= 2;
416 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000417 pcpu_half = (1U << pcpu_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Rob Landley997650b2006-04-24 23:13:46 +0000418 /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */
Eric Andersen08a72202002-09-30 20:52:10 +0000419#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000420
421 /* Ok, all prelim data is ready, go thru the list */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000422 while (count-- > 0) {
Rob Landley997650b2006-04-24 23:13:46 +0000423 int col = scr_width+1;
Denis Vlasenko74511962007-06-11 16:31:55 +0000424 CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift);
425#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
426 CALC_STAT(pcpu, (s->pcpu*pcpu_scale + pcpu_half) >> pcpu_shift);
427#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000428
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000429 if (s->vsz >= 100*1024)
430 sprintf(vsz_str_buf, "%6ldM", s->vsz/1024);
Manuel Novoa III d4993302002-09-18 19:27:10 +0000431 else
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000432 sprintf(vsz_str_buf, "%7ld", s->vsz);
Denis Vlasenko74511962007-06-11 16:31:55 +0000433 // PID PPID USER STAT VSZ %MEM [%CPU] COMMAND
434 col -= printf("\n" "%5u%6u %-8s %s%s" FMT
435#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
436 FMT
437#endif
438 " ",
439 s->pid, s->ppid, get_cached_username(s->uid),
440 s->state, vsz_str_buf,
441 SHOW_STAT(pmem)
442#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
443 , SHOW_STAT(pcpu)
444#endif
445 );
Denis Vlasenko25d80622006-10-27 09:34:22 +0000446 if (col > 0)
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000447 printf("%.*s", col, s->comm);
Bernhard Reutner-Fischere2922e42006-05-19 12:48:56 +0000448 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
Rob Landley997650b2006-04-24 23:13:46 +0000449 jif.busy - prev_jif.busy, jif.total - prev_jif.total); */
Eric Andersen420b2082002-09-17 22:14:58 +0000450 s++;
Eric Andersen08a72202002-09-30 20:52:10 +0000451 }
Rob Landley997650b2006-04-24 23:13:46 +0000452 /* printf(" %d", hist_iterations); */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000453 putchar(OPT_BATCH_MODE ? '\n' : '\r');
Rob Landley997650b2006-04-24 23:13:46 +0000454 fflush(stdout);
Eric Andersen44608e92002-10-22 12:21:15 +0000455}
Denis Vlasenko74511962007-06-11 16:31:55 +0000456#undef SHOW_STAT
457#undef CALC_STAT
458#undef FMT
Eric Andersen44608e92002-10-22 12:21:15 +0000459
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000460
Eric Andersen44608e92002-10-22 12:21:15 +0000461static void clearmems(void)
462{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000463 clear_username_cache();
Eric Andersen08a72202002-09-30 20:52:10 +0000464 free(top);
Eric Andersen08a72202002-09-30 20:52:10 +0000465 top = 0;
Eric Andersen08a72202002-09-30 20:52:10 +0000466 ntop = 0;
467}
468
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000469
Denis Vlasenkofa076802006-11-05 00:38:51 +0000470#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000471#include <termios.h>
Eric Andersen08a72202002-09-30 20:52:10 +0000472#include <signal.h>
473
Eric Andersen08a72202002-09-30 20:52:10 +0000474static void reset_term(void)
475{
476 tcsetattr(0, TCSANOW, (void *) &initial_settings);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000477#if ENABLE_FEATURE_CLEAN_UP
Eric Andersen08a72202002-09-30 20:52:10 +0000478 clearmems();
Denis Vlasenkofa076802006-11-05 00:38:51 +0000479#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Rob Landley997650b2006-04-24 23:13:46 +0000480 free(prev_hist);
Eric Andersen08a72202002-09-30 20:52:10 +0000481#endif
Denis Vlasenkofa076802006-11-05 00:38:51 +0000482#endif /* FEATURE_CLEAN_UP */
Eric Andersen08a72202002-09-30 20:52:10 +0000483}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000484
Rob Landleyb2804552006-02-13 22:04:27 +0000485static void sig_catcher(int sig ATTRIBUTE_UNUSED)
Eric Andersen08a72202002-09-30 20:52:10 +0000486{
487 reset_term();
Rob Landleydb1ab1a2006-06-28 14:11:25 +0000488 exit(1);
Eric Andersen08a72202002-09-30 20:52:10 +0000489}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000490#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000491
492
Denis Vlasenko06af2162007-02-03 17:28:39 +0000493int top_main(int argc, char **argv);
Eric Andersen420b2082002-09-17 22:14:58 +0000494int top_main(int argc, char **argv)
495{
Denis Vlasenko266bc172006-09-29 17:16:39 +0000496 int count, lines, col;
Denis Vlasenko13858992006-10-08 12:49:22 +0000497 unsigned interval = 5; /* default update rate is 5 seconds */
498 unsigned iterations = UINT_MAX; /* 2^32 iterations by default :) */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000499 char *sinterval, *siterations;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000500#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000501 struct termios new_settings;
502 struct timeval tv;
503 fd_set readfds;
504 unsigned char c;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000505#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000506
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000507 interval = 5;
Denis Vlasenko85818632007-04-19 14:47:11 +0000508
509 /* do normal option parsing */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000510 opt_complementary = "-";
Denis Vlasenkofa076802006-11-05 00:38:51 +0000511 getopt32(argc, argv, "d:n:b", &sinterval, &siterations);
Denis Vlasenko13858992006-10-08 12:49:22 +0000512 if (option_mask32 & 0x1) interval = xatou(sinterval); // -d
513 if (option_mask32 & 0x2) iterations = xatou(siterations); // -n
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000514 //if (option_mask32 & 0x4) // -b
Eric Andersen420b2082002-09-17 22:14:58 +0000515
Eric Andersen44608e92002-10-22 12:21:15 +0000516 /* change to /proc */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000517 xchdir("/proc");
Denis Vlasenkofa076802006-11-05 00:38:51 +0000518#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000519 tcgetattr(0, (void *) &initial_settings);
520 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000521 /* unbuffered input, turn off echo */
522 new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
Eric Andersen08a72202002-09-30 20:52:10 +0000523
Rob Landley997650b2006-04-24 23:13:46 +0000524 signal(SIGTERM, sig_catcher);
Rob Landleydb1ab1a2006-06-28 14:11:25 +0000525 signal(SIGINT, sig_catcher);
Eric Andersen08a72202002-09-30 20:52:10 +0000526 tcsetattr(0, TCSANOW, (void *) &new_settings);
527 atexit(reset_term);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000528#endif /* FEATURE_USE_TERMIOS */
Mike Frysinger223b8872005-07-30 09:42:05 +0000529
Denis Vlasenkofa076802006-11-05 00:38:51 +0000530#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000531 sort_function[0] = pcpu_sort;
532 sort_function[1] = mem_sort;
533 sort_function[2] = time_sort;
534#else
535 sort_function = mem_sort;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000536#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Mike Frysinger223b8872005-07-30 09:42:05 +0000537
Eric Andersen08a72202002-09-30 20:52:10 +0000538 while (1) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000539 procps_status_t *p = NULL;
Eric Andersen44608e92002-10-22 12:21:15 +0000540
Rob Landley997650b2006-04-24 23:13:46 +0000541 /* Default to 25 lines - 5 lines for status */
Denis Vlasenko5a654472007-06-10 17:11:59 +0000542 lines = 24 - 3 USE_FEATURE_TOP_CPU_GLOBAL_PERCENTS( - 1);
Rob Landley997650b2006-04-24 23:13:46 +0000543 col = 79;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000544#if ENABLE_FEATURE_USE_TERMIOS
Rob Landley997650b2006-04-24 23:13:46 +0000545 get_terminal_width_height(0, &col, &lines);
546 if (lines < 5 || col < MIN_WIDTH) {
547 sleep(interval);
548 continue;
549 }
Denis Vlasenko5a654472007-06-10 17:11:59 +0000550 lines -= 3 USE_FEATURE_TOP_CPU_GLOBAL_PERCENTS( + 1);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000551#endif /* FEATURE_USE_TERMIOS */
Rob Landley997650b2006-04-24 23:13:46 +0000552
553 /* read process IDs & status for all the processes */
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000554 while ((p = procps_scan(p, 0
555 | PSSCAN_PID
556 | PSSCAN_PPID
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000557 | PSSCAN_VSZ
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000558 | PSSCAN_STIME
559 | PSSCAN_UTIME
560 | PSSCAN_STATE
561 | PSSCAN_COMM
562 | PSSCAN_SID
563 | PSSCAN_UIDGID
564 ))) {
Eric Andersen44608e92002-10-22 12:21:15 +0000565 int n = ntop;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000566 top = xrealloc(top, (++ntop)*sizeof(top_status_t));
567 top[n].pid = p->pid;
568 top[n].ppid = p->ppid;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000569 top[n].vsz = p->vsz;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000570#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000571 top[n].ticks = p->stime + p->utime;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000572#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000573 top[n].uid = p->uid;
574 strcpy(top[n].state, p->state);
575 strcpy(top[n].comm, p->comm);
Eric Andersen44608e92002-10-22 12:21:15 +0000576 }
577 if (ntop == 0) {
Denis Vlasenko74511962007-06-11 16:31:55 +0000578 bb_error_msg_and_die("no process info in /proc");
Rob Landleyb2804552006-02-13 22:04:27 +0000579 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000580#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Rob Landley997650b2006-04-24 23:13:46 +0000581 if (!prev_hist_count) {
Eric Andersen08a72202002-09-30 20:52:10 +0000582 do_stats();
583 sleep(1);
584 clearmems();
585 continue;
Rob Landleyb2804552006-02-13 22:04:27 +0000586 }
Eric Andersen08a72202002-09-30 20:52:10 +0000587 do_stats();
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000588 qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
Eric Andersen08a72202002-09-30 20:52:10 +0000589#else
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000590 qsort(top, ntop, sizeof(top_status_t), (void*)sort_function);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000591#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000592 count = lines;
Denis Vlasenko25d80622006-10-27 09:34:22 +0000593 if (OPT_BATCH_MODE || count > ntop) {
Denis Vlasenko266bc172006-09-29 17:16:39 +0000594 count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000595 }
596 /* show status for each of the processes */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000597 display_status(count, col);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000598#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000599 tv.tv_sec = interval;
600 tv.tv_usec = 0;
Rob Landley997650b2006-04-24 23:13:46 +0000601 FD_ZERO(&readfds);
602 FD_SET(0, &readfds);
603 select(1, &readfds, NULL, NULL, &tv);
604 if (FD_ISSET(0, &readfds)) {
605 if (read(0, &c, 1) <= 0) { /* signal */
Mike Frysinger223b8872005-07-30 09:42:05 +0000606 return EXIT_FAILURE;
607 }
Rob Landley997650b2006-04-24 23:13:46 +0000608 if (c == 'q' || c == initial_settings.c_cc[VINTR])
"Vladimir N. Oleynik"c218a292006-02-15 17:15:56 +0000609 break;
Rob Landley997650b2006-04-24 23:13:46 +0000610 if (c == 'M') {
Denis Vlasenkofa076802006-11-05 00:38:51 +0000611#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000612 sort_function[0] = mem_sort;
613 sort_function[1] = pcpu_sort;
614 sort_function[2] = time_sort;
615#else
616 sort_function = mem_sort;
617#endif
618 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000619#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Rob Landley997650b2006-04-24 23:13:46 +0000620 if (c == 'P') {
Eric Andersen08a72202002-09-30 20:52:10 +0000621 sort_function[0] = pcpu_sort;
622 sort_function[1] = mem_sort;
623 sort_function[2] = time_sort;
624 }
Rob Landley997650b2006-04-24 23:13:46 +0000625 if (c == 'T') {
Eric Andersen08a72202002-09-30 20:52:10 +0000626 sort_function[0] = time_sort;
627 sort_function[1] = mem_sort;
628 sort_function[2] = pcpu_sort;
629 }
630#endif
Rob Landley997650b2006-04-24 23:13:46 +0000631 if (c == 'N') {
Denis Vlasenkofa076802006-11-05 00:38:51 +0000632#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000633 sort_function[0] = pid_sort;
634#else
635 sort_function = pid_sort;
636#endif
637 }
638 }
Denis Vlasenko266bc172006-09-29 17:16:39 +0000639 if (!--iterations)
640 break;
Eric Andersen08a72202002-09-30 20:52:10 +0000641#else
Eric Andersen420b2082002-09-17 22:14:58 +0000642 sleep(interval);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000643#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000644 clearmems();
Eric Andersen420b2082002-09-17 22:14:58 +0000645 }
Rob Landley997650b2006-04-24 23:13:46 +0000646 if (ENABLE_FEATURE_CLEAN_UP)
"Vladimir N. Oleynik"c218a292006-02-15 17:15:56 +0000647 clearmems();
648 putchar('\n');
Eric Andersen420b2082002-09-17 22:14:58 +0000649 return EXIT_SUCCESS;
650}