blob: 908ae81519b8d59ee8e9b755e51c405c1d930630 [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>
Denis Vlasenko17e7f042008-09-25 10:48:06 +000019 *
20 * Sept 2008: Vineet Gupta <vineet.gupta@arc.com>
21 * Added Support for reporting SMP Information
22 * - CPU where Process was last seen running
23 * (to see effect of sched_setaffinity() etc)
24 * - CPU Time Split (idle/IO/wait etc) PER CPU
Eric Andersen420b2082002-09-17 22:14:58 +000025 */
Eric Andersen08a72202002-09-30 20:52:10 +000026
27/* Original code Copyrights */
28/*
29 * Copyright (c) 1992 Branko Lankester
30 * Copyright (c) 1992 Roger Binns
31 * Copyright (C) 1994-1996 Charles L. Blake.
32 * Copyright (C) 1992-1998 Michael K. Johnson
33 * May be distributed under the conditions of the
34 * GNU Library General Public License
35 */
36
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Eric Andersen420b2082002-09-17 22:14:58 +000038
Eric Andersen08a72202002-09-30 20:52:10 +000039
Denis Vlasenko85818632007-04-19 14:47:11 +000040typedef struct top_status_t {
Mike Frysinger0aa6ba52007-02-08 08:21:58 +000041 unsigned long vsz;
Denis Vlasenko459e4d62006-11-05 00:43:51 +000042#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
43 unsigned long ticks;
44 unsigned pcpu; /* delta of ticks */
45#endif
46 unsigned pid, ppid;
47 unsigned uid;
48 char state[4];
Denis Vlasenko98ebab82007-06-30 14:47:41 +000049 char comm[COMM_LEN];
Denis Vlasenko17e7f042008-09-25 10:48:06 +000050#if ENABLE_FEATURE_TOP_SMP_PROCESS
51 int last_seen_on_cpu;
52#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +000053} top_status_t;
Denis Vlasenko85818632007-04-19 14:47:11 +000054
Denis Vlasenko98ebab82007-06-30 14:47:41 +000055typedef struct jiffy_counts_t {
Denis Vlasenko85818632007-04-19 14:47:11 +000056 unsigned long long usr,nic,sys,idle,iowait,irq,softirq,steal;
57 unsigned long long total;
58 unsigned long long busy;
59} jiffy_counts_t;
60
Denis Vlasenko459e4d62006-11-05 00:43:51 +000061/* This structure stores some critical information from one frame to
62 the next. Used for finding deltas. */
Denis Vlasenko85818632007-04-19 14:47:11 +000063typedef struct save_hist {
Denis Vlasenko459e4d62006-11-05 00:43:51 +000064 unsigned long ticks;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +000065 pid_t pid;
Denis Vlasenko85818632007-04-19 14:47:11 +000066} save_hist;
67
68typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
69
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000070
Denis Vlasenko85818632007-04-19 14:47:11 +000071enum { SORT_DEPTH = 3 };
72
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000073
Denis Vlasenko85818632007-04-19 14:47:11 +000074struct globals {
75 top_status_t *top;
76 int ntop;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000077#if ENABLE_FEATURE_TOPMEM
78 smallint sort_field;
79 smallint inverted;
80#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +000081#if ENABLE_FEATURE_TOP_SMP_CPU
82 smallint smp_cpu_info; /* one/many cpu info lines? */
83#endif
Denis Vlasenko85818632007-04-19 14:47:11 +000084#if ENABLE_FEATURE_USE_TERMIOS
85 struct termios initial_settings;
86#endif
87#if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +000088 cmp_funcp sort_function[1];
Denis Vlasenko85818632007-04-19 14:47:11 +000089#else
90 cmp_funcp sort_function[SORT_DEPTH];
91 struct save_hist *prev_hist;
92 int prev_hist_count;
Denis Vlasenko35840ab2008-09-25 11:11:37 +000093 jiffy_counts_t cur_jif, prev_jif;
Denis Vlasenko85818632007-04-19 14:47:11 +000094 /* int hist_iterations; */
95 unsigned total_pcpu;
96 /* unsigned long total_vsz; */
97#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +000098#if ENABLE_FEATURE_TOP_SMP_CPU
99 /* Per CPU samples: current and last */
100 jiffy_counts_t *cpu_jif, *cpu_prev_jif;
101 int num_cpus;
102#endif
Denis Vlasenko55761362007-10-16 22:53:05 +0000103 char line_buf[80];
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000104};
Denis Vlasenko55761362007-10-16 22:53:05 +0000105
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000106enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
Denis Vlasenko55761362007-10-16 22:53:05 +0000107
Denis Vlasenko85818632007-04-19 14:47:11 +0000108#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000109#define INIT_G() do { \
110 struct G_sizecheck { \
111 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
112 }; \
113} while (0)
Denis Vlasenko85818632007-04-19 14:47:11 +0000114#define top (G.top )
115#define ntop (G.ntop )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000116#define sort_field (G.sort_field )
117#define inverted (G.inverted )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000118#define smp_cpu_info (G.smp_cpu_info )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000119#define initial_settings (G.initial_settings )
Denis Vlasenko85818632007-04-19 14:47:11 +0000120#define sort_function (G.sort_function )
Denis Vlasenko85818632007-04-19 14:47:11 +0000121#define prev_hist (G.prev_hist )
122#define prev_hist_count (G.prev_hist_count )
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000123#define cur_jif (G.cur_jif )
Denis Vlasenko85818632007-04-19 14:47:11 +0000124#define prev_jif (G.prev_jif )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000125#define cpu_jif (G.cpu_jif )
126#define cpu_prev_jif (G.cpu_prev_jif )
127#define num_cpus (G.num_cpus )
Denis Vlasenko85818632007-04-19 14:47:11 +0000128#define total_pcpu (G.total_pcpu )
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000129#define line_buf (G.line_buf )
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000130
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000131enum {
132 OPT_d = (1 << 0),
133 OPT_n = (1 << 1),
134 OPT_b = (1 << 2),
135 OPT_EOF = (1 << 3), /* pseudo: "we saw EOF in stdin" */
136};
137#define OPT_BATCH_MODE (option_mask32 & OPT_b)
Eric Andersen08a72202002-09-30 20:52:10 +0000138
Denis Vlasenko85818632007-04-19 14:47:11 +0000139
Denis Vlasenkofa076802006-11-05 00:38:51 +0000140#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000141static int pid_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000142{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000143 /* Buggy wrt pids with high bit set */
144 /* (linux pids are in [1..2^15-1]) */
Rob Landleyb2804552006-02-13 22:04:27 +0000145 return (Q->pid - P->pid);
Eric Andersen08a72202002-09-30 20:52:10 +0000146}
Mike Frysinger223b8872005-07-30 09:42:05 +0000147#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000148
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000149static int mem_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000150{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000151 /* We want to avoid unsigned->signed and truncation errors */
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000152 if (Q->vsz < P->vsz) return -1;
153 return Q->vsz != P->vsz; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000154}
155
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000156
Denis Vlasenko85818632007-04-19 14:47:11 +0000157#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000158
159static int pcpu_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000160{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000161 /* Buggy wrt ticks with high bit set */
162 /* Affects only processes for which ticks overflow */
163 return (int)Q->pcpu - (int)P->pcpu;
Eric Andersen08a72202002-09-30 20:52:10 +0000164}
165
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000166static int time_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000167{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000168 /* We want to avoid unsigned->signed and truncation errors */
169 if (Q->ticks < P->ticks) return -1;
170 return Q->ticks != P->ticks; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000171}
172
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000173static int mult_lvl_cmp(void* a, void* b)
174{
Rob Landleyb2804552006-02-13 22:04:27 +0000175 int i, cmp_val;
Eric Andersen08a72202002-09-30 20:52:10 +0000176
Denis Vlasenkofa076802006-11-05 00:38:51 +0000177 for (i = 0; i < SORT_DEPTH; i++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000178 cmp_val = (*sort_function[i])(a, b);
179 if (cmp_val != 0)
180 return cmp_val;
181 }
182 return 0;
Eric Andersen08a72202002-09-30 20:52:10 +0000183}
184
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000185/* NOINLINE so that complier doesn't unfold the call
186 * causing multiple copies of the arithmatic instrns
187 */
188static NOINLINE int read_cpu_jiffy(FILE *fp, jiffy_counts_t *p_jif)
189{
190#if !ENABLE_FEATURE_TOP_SMP_CPU
191 static const char fmt[] = "cpu %lld %lld %lld %lld %lld %lld %lld %lld";
192#else
193 static const char fmt[] = "cp%*s %lld %lld %lld %lld %lld %lld %lld %lld";
194#endif
195 int ret;
196
197 if (!fgets(line_buf, LINE_BUF_SIZE, fp) || line_buf[0] != 'c' /* not "cpu" */)
198 return 0;
199 ret = sscanf(line_buf, fmt,
200 &p_jif->usr, &p_jif->nic, &p_jif->sys, &p_jif->idle,
201 &p_jif->iowait, &p_jif->irq, &p_jif->softirq,
202 &p_jif->steal);
203 if (ret > 4) {
204 p_jif->total = p_jif->usr + p_jif->nic + p_jif->sys + p_jif->idle
205 + p_jif->iowait + p_jif->irq + p_jif->softirq + p_jif->steal;
206 /* procps 2.x does not count iowait as busy time */
207 p_jif->busy = p_jif->total - p_jif->idle - p_jif->iowait;
208 }
209
210 return ret;
211}
Eric Andersen08a72202002-09-30 20:52:10 +0000212
Rob Landley997650b2006-04-24 23:13:46 +0000213static void get_jiffy_counts(void)
Rob Landleyb2804552006-02-13 22:04:27 +0000214{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000215 FILE* fp = xfopen_for_read("stat");
Eric Andersen08a72202002-09-30 20:52:10 +0000216
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000217 /* We need to parse cumulative counts even if SMP CPU display is on,
218 * they are used to calculate per process CPU% */
219 prev_jif = cur_jif;
220 if (read_cpu_jiffy(fp, &cur_jif) < 4)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000221 bb_error_msg_and_die("can't read /proc/stat");
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000222
223#if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000224 fclose(fp);
225 return;
226#else
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000227 if (!smp_cpu_info) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000228 fclose(fp);
229 return;
230 }
231
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000232 if (!num_cpus) {
233 /* First time here. How many CPUs?
234 * There will be at least 1 /proc/stat line with cpu%d
235 */
236 while (1) {
237 cpu_jif = xrealloc_vector(cpu_jif, 1, num_cpus);
238 if (read_cpu_jiffy(fp, &cpu_jif[num_cpus]) <= 4)
239 break;
240 num_cpus++;
241 }
242 if (num_cpus == 0) /* /proc/stat with only "cpu ..." line?! */
243 smp_cpu_info = 0;
244
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000245 cpu_prev_jif = xzalloc(sizeof(cpu_prev_jif[0]) * num_cpus);
246
247 /* Otherwise the first per cpu display shows all 100% idles */
248 usleep(50000);
249 } else { /* Non first time invocation */
250 jiffy_counts_t *tmp;
251 int i;
252
253 /* First switch the sample pointers: no need to copy */
254 tmp = cpu_prev_jif;
255 cpu_prev_jif = cpu_jif;
256 cpu_jif = tmp;
257
258 /* Get the new samples */
259 for (i = 0; i < num_cpus; i++)
260 read_cpu_jiffy(fp, &cpu_jif[i]);
261 }
262#endif
263 fclose(fp);
264}
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000265
Eric Andersen08a72202002-09-30 20:52:10 +0000266static void do_stats(void)
267{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000268 top_status_t *cur;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000269 pid_t pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000270 int i, last_i, n;
Rob Landley997650b2006-04-24 23:13:46 +0000271 struct save_hist *new_hist;
Eric Andersen08a72202002-09-30 20:52:10 +0000272
Rob Landley997650b2006-04-24 23:13:46 +0000273 get_jiffy_counts();
274 total_pcpu = 0;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000275 /* total_vsz = 0; */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000276 new_hist = xmalloc(sizeof(new_hist[0]) * ntop);
Rob Landleyb2804552006-02-13 22:04:27 +0000277 /*
278 * Make a pass through the data to get stats.
279 */
Rob Landley997650b2006-04-24 23:13:46 +0000280 /* hist_iterations = 0; */
281 i = 0;
282 for (n = 0; n < ntop; n++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000283 cur = top + n;
284
285 /*
286 * Calculate time in cur process. Time is sum of user time
Rob Landley997650b2006-04-24 23:13:46 +0000287 * and system time
Rob Landleyb2804552006-02-13 22:04:27 +0000288 */
Rob Landleyb2804552006-02-13 22:04:27 +0000289 pid = cur->pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000290 new_hist[n].ticks = cur->ticks;
Rob Landley997650b2006-04-24 23:13:46 +0000291 new_hist[n].pid = pid;
Rob Landleyb2804552006-02-13 22:04:27 +0000292
293 /* find matching entry from previous pass */
Rob Landley997650b2006-04-24 23:13:46 +0000294 cur->pcpu = 0;
295 /* do not start at index 0, continue at last used one
296 * (brought hist_iterations from ~14000 down to 172) */
297 last_i = i;
298 if (prev_hist_count) do {
299 if (prev_hist[i].pid == pid) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000300 cur->pcpu = cur->ticks - prev_hist[i].ticks;
301 total_pcpu += cur->pcpu;
Rob Landleyb2804552006-02-13 22:04:27 +0000302 break;
303 }
Rob Landley997650b2006-04-24 23:13:46 +0000304 i = (i+1) % prev_hist_count;
305 /* hist_iterations++; */
306 } while (i != last_i);
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000307 /* total_vsz += cur->vsz; */
Eric Andersen08a72202002-09-30 20:52:10 +0000308 }
309
310 /*
Rob Landleyb2804552006-02-13 22:04:27 +0000311 * Save cur frame's information.
Eric Andersen08a72202002-09-30 20:52:10 +0000312 */
Rob Landley997650b2006-04-24 23:13:46 +0000313 free(prev_hist);
314 prev_hist = new_hist;
315 prev_hist_count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000316}
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000317
Denis Vlasenkofa076802006-11-05 00:38:51 +0000318#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Eric Andersen08a72202002-09-30 20:52:10 +0000319
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000320#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && ENABLE_FEATURE_TOP_DECIMALS
321/* formats 7 char string (8 with terminating NUL) */
322static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total)
323{
324 unsigned t;
325 if (value >= total) { /* 100% ? */
326 strcpy(pbuf, " 100% ");
327 return pbuf;
328 }
329 /* else generate " [N/space]N.N% " string */
330 value = 1000 * value / total;
331 t = value / 100;
332 value = value % 100;
333 pbuf[0] = ' ';
334 pbuf[1] = t ? t + '0' : ' ';
335 pbuf[2] = '0' + (value / 10);
336 pbuf[3] = '.';
337 pbuf[4] = '0' + (value % 10);
338 pbuf[5] = '%';
339 pbuf[6] = ' ';
340 pbuf[7] = '\0';
341 return pbuf;
342}
343#endif
344
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000345#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
346static void display_cpus(int scr_width, char *scrbuf, int *lines_rem_p)
347{
348 /*
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000349 * xxx% = (cur_jif.xxx - prev_jif.xxx) / (cur_jif.total - prev_jif.total) * 100%
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000350 */
351 unsigned total_diff;
352 jiffy_counts_t *p_jif, *p_prev_jif;
353 int i;
354
355#if ENABLE_FEATURE_TOP_SMP_CPU
356 int n_cpu_lines;
357#endif
358
359 /* using (unsigned) casts to make operations cheaper */
360#define CALC_TOT_DIFF ((unsigned)(p_jif->total - p_prev_jif->total) ? : 1)
361
362#if ENABLE_FEATURE_TOP_DECIMALS
363#define CALC_STAT(xxx) char xxx[8]
364#define SHOW_STAT(xxx) fmt_100percent_8(xxx, (unsigned)(p_jif->xxx - p_prev_jif->xxx), total_diff)
365#define FMT "%s"
366#else
367#define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(p_jif->xxx - p_prev_jif->xxx) / total_diff
368#define SHOW_STAT(xxx) xxx
369#define FMT "%4u%% "
370#endif
371
372#if !ENABLE_FEATURE_TOP_SMP_CPU
373 {
374 i = 1;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000375 p_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000376 p_prev_jif = &prev_jif;
377#else
378 /* Loop thru CPU(s) */
379 n_cpu_lines = smp_cpu_info ? num_cpus : 1;
380 if (n_cpu_lines > *lines_rem_p)
381 n_cpu_lines = *lines_rem_p;
382
383 for (i = 0; i < n_cpu_lines; i++) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000384 p_jif = &cpu_jif[i];
385 p_prev_jif = &cpu_prev_jif[i];
386#endif
387 total_diff = CALC_TOT_DIFF;
388
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000389 { /* Need a block: CALC_STAT are declarations */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000390 CALC_STAT(usr);
391 CALC_STAT(sys);
392 CALC_STAT(nic);
393 CALC_STAT(idle);
394 CALC_STAT(iowait);
395 CALC_STAT(irq);
396 CALC_STAT(softirq);
397 /*CALC_STAT(steal);*/
398
399 snprintf(scrbuf, scr_width,
400 /* Barely fits in 79 chars when in "decimals" mode. */
401#if ENABLE_FEATURE_TOP_SMP_CPU
402 "CPU%s:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
403 (smp_cpu_info ? utoa(i) : ""),
404#else
405 "CPU:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
406#endif
407 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
408 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
409 /*, SHOW_STAT(steal) - what is this 'steal' thing? */
410 /* I doubt anyone wants to know it */
411 );
412 puts(scrbuf);
413 }
414 }
415#undef SHOW_STAT
416#undef CALC_STAT
417#undef FMT
418 *lines_rem_p -= i;
419}
420#else /* !ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS */
421#define display_cpus(scr_width, scrbuf, lines_rem) ((void)0)
422#endif
423
424static unsigned long display_header(int scr_width, int *lines_rem_p)
Eric Andersen420b2082002-09-17 22:14:58 +0000425{
426 FILE *fp;
427 char buf[80];
Rob Landley997650b2006-04-24 23:13:46 +0000428 char scrbuf[80];
Eric Andersen420b2082002-09-17 22:14:58 +0000429 unsigned long total, used, mfree, shared, buffers, cached;
Denis Vlasenko110967a2007-07-15 19:27:48 +0000430
Eric Andersen420b2082002-09-17 22:14:58 +0000431 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000432 fp = xfopen_for_read("meminfo");
Eric Andersen420b2082002-09-17 22:14:58 +0000433
Eric Andersen7857c032003-10-11 18:47:20 +0000434 /*
435 * Old kernels (such as 2.4.x) had a nice summary of memory info that
436 * we could parse, however this is gone entirely in 2.6. Try parsing
437 * the old way first, and if that fails, parse each field manually.
438 *
439 * First, we read in the first line. Old kernels will have bogus
440 * strings we don't care about, whereas new kernels will start right
441 * out with MemTotal:
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000442 * -- PFM.
Eric Andersen7857c032003-10-11 18:47:20 +0000443 */
444 if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000445 fgets(buf, sizeof(buf), fp); /* skip first line */
Eric Andersen7857c032003-10-11 18:47:20 +0000446
447 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000448 &total, &used, &mfree, &shared, &buffers, &cached);
449 /* convert to kilobytes */
450 used /= 1024;
451 mfree /= 1024;
452 shared /= 1024;
453 buffers /= 1024;
454 cached /= 1024;
455 total /= 1024;
Eric Andersen7857c032003-10-11 18:47:20 +0000456 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000457 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000458 * Revert to manual parsing, which incidentally already has the
459 * sizes in kilobytes. This should be safe for both 2.4 and
460 * 2.6.
461 */
Eric Andersen7857c032003-10-11 18:47:20 +0000462 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
463
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000464 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000465 * MemShared: is no longer present in 2.6. Report this as 0,
466 * to maintain consistent behavior with normal procps.
467 */
468 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
469 shared = 0;
470
471 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
472 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
473
474 used = total - mfree;
Eric Andersen420b2082002-09-17 22:14:58 +0000475 }
476 fclose(fp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000477
Denis Vlasenko110967a2007-07-15 19:27:48 +0000478 /* output memory info */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000479 if (scr_width > (int)sizeof(scrbuf))
Rob Landley997650b2006-04-24 23:13:46 +0000480 scr_width = sizeof(scrbuf);
481 snprintf(scrbuf, scr_width,
Denis Vlasenkoc1166c32007-07-15 19:23:38 +0000482 "Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached",
Rob Landleyb2804552006-02-13 22:04:27 +0000483 used, mfree, shared, buffers, cached);
Denis Vlasenko110967a2007-07-15 19:27:48 +0000484 /* clear screen & go to top */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000485 printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000486 (*lines_rem_p)--;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000487
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000488 /* Display CPU time split as percentage of total time
489 * This displays either a cumulative line or one line per CPU
Denis Vlasenko856be772007-08-17 08:29:48 +0000490 */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000491 display_cpus(scr_width, scrbuf, lines_rem_p);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000492
Denis Vlasenko110967a2007-07-15 19:27:48 +0000493 /* read load average as a string */
494 buf[0] = '\0';
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000495 open_read_close("loadavg", buf, sizeof(buf) - 1);
496 buf[sizeof(buf) - 1] = '\n';
497 *strchr(buf, '\n') = '\0';
Denis Vlasenko25d80622006-10-27 09:34:22 +0000498 snprintf(scrbuf, scr_width, "Load average: %s", buf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000499 puts(scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000500 (*lines_rem_p)--;
Rob Landley997650b2006-04-24 23:13:46 +0000501
Eric Andersen7857c032003-10-11 18:47:20 +0000502 return total;
Eric Andersen420b2082002-09-17 22:14:58 +0000503}
504
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000505static NOINLINE void display_process_list(int lines_rem, int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000506{
Rob Landley997650b2006-04-24 23:13:46 +0000507 enum {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000508 BITS_PER_INT = sizeof(int) * 8
Rob Landley997650b2006-04-24 23:13:46 +0000509 };
510
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000511 top_status_t *s;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000512 char vsz_str_buf[8];
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000513 unsigned long total_memory = display_header(scr_width, &lines_rem); /* or use total_vsz? */
Denis Vlasenko74511962007-06-11 16:31:55 +0000514 /* xxx_shift and xxx_scale variables allow us to replace
515 * expensive divides with multiply and shift */
516 unsigned pmem_shift, pmem_scale, pmem_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000517#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko74511962007-06-11 16:31:55 +0000518 unsigned pcpu_shift, pcpu_scale, pcpu_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000519 unsigned busy_jifs;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000520#endif
Rob Landley997650b2006-04-24 23:13:46 +0000521
Eric Andersen420b2082002-09-17 22:14:58 +0000522 /* what info of the processes is shown */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000523 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000524 " PID PPID USER STAT VSZ %MEM"
525#if ENABLE_FEATURE_TOP_SMP_PROCESS
526 " CPU"
Rob Landley997650b2006-04-24 23:13:46 +0000527#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000528#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
529 " %CPU"
530#endif
531 " COMMAND");
532 lines_rem--;
Rob Landley997650b2006-04-24 23:13:46 +0000533
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000534#if ENABLE_FEATURE_TOP_DECIMALS
535#define UPSCALE 1000
536#define CALC_STAT(name, val) div_t name = div((val), 10)
537#define SHOW_STAT(name) name.quot, '0'+name.rem
538#define FMT "%3u.%c"
539#else
540#define UPSCALE 100
541#define CALC_STAT(name, val) unsigned name = (val)
542#define SHOW_STAT(name) name
543#define FMT "%4u%%"
544#endif
Rob Landley997650b2006-04-24 23:13:46 +0000545 /*
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000546 * MEM% = s->vsz/MemTotal
Rob Landley997650b2006-04-24 23:13:46 +0000547 */
Denis Vlasenko74511962007-06-11 16:31:55 +0000548 pmem_shift = BITS_PER_INT-11;
549 pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000550 /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
Rob Landley997650b2006-04-24 23:13:46 +0000551 while (pmem_scale >= 512) {
552 pmem_scale /= 4;
553 pmem_shift -= 2;
554 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000555 pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000556#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000557 busy_jifs = cur_jif.busy - prev_jif.busy;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000558 /* This happens if there were lots of short-lived processes
559 * between two top updates (e.g. compilation) */
560 if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
561
Rob Landley997650b2006-04-24 23:13:46 +0000562 /*
563 * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
564 * (pcpu is delta of sys+user time between samples)
565 */
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000566 /* (cur_jif.xxx - prev_jif.xxx) and s->pcpu are
Rob Landley997650b2006-04-24 23:13:46 +0000567 * in 0..~64000 range (HZ*update_interval).
568 * we assume that unsigned is at least 32-bit.
569 */
570 pcpu_shift = 6;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000571 pcpu_scale = (UPSCALE*64 * (uint16_t)busy_jifs ? : 1);
572 while (pcpu_scale < (1U << (BITS_PER_INT-2))) {
Rob Landley997650b2006-04-24 23:13:46 +0000573 pcpu_scale *= 4;
574 pcpu_shift += 2;
575 }
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000576 pcpu_scale /= ( (uint16_t)(cur_jif.total - prev_jif.total) * total_pcpu ? : 1);
Rob Landley997650b2006-04-24 23:13:46 +0000577 /* we want (s->pcpu * pcpu_scale) to never overflow */
578 while (pcpu_scale >= 1024) {
579 pcpu_scale /= 4;
580 pcpu_shift -= 2;
581 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000582 pcpu_half = (1U << pcpu_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Rob Landley997650b2006-04-24 23:13:46 +0000583 /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */
Eric Andersen08a72202002-09-30 20:52:10 +0000584#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000585
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000586 /* Ok, all preliminary data is ready, go through the list */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000587 scr_width += 2; /* account for leading '\n' and trailing NUL */
588 if (lines_rem > ntop)
589 lines_rem = ntop;
590 s = top;
591 while (--lines_rem >= 0) {
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000592 unsigned col;
Denis Vlasenko74511962007-06-11 16:31:55 +0000593 CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift);
594#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
595 CALC_STAT(pcpu, (s->pcpu*pcpu_scale + pcpu_half) >> pcpu_shift);
596#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000597
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000598 if (s->vsz >= 100000)
Denis Vlasenkob308d812007-08-28 19:35:34 +0000599 sprintf(vsz_str_buf, "%6ldm", s->vsz/1024);
Manuel Novoa III d4993302002-09-18 19:27:10 +0000600 else
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000601 sprintf(vsz_str_buf, "%7ld", s->vsz);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000602 /* PID PPID USER STAT VSZ %MEM [%CPU] COMMAND */
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000603 col = snprintf(line_buf, scr_width,
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000604 "\n" "%5u%6u %-8.8s %s%s" FMT
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000605#if ENABLE_FEATURE_TOP_SMP_PROCESS
606 " %3d"
607#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000608#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
609 FMT
610#endif
611 " ",
612 s->pid, s->ppid, get_cached_username(s->uid),
613 s->state, vsz_str_buf,
614 SHOW_STAT(pmem)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000615#if ENABLE_FEATURE_TOP_SMP_PROCESS
616 , s->last_seen_on_cpu
617#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000618#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
619 , SHOW_STAT(pcpu)
620#endif
621 );
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000622 if ((int)(col + 1) < scr_width)
Denis Vlasenko4d7605a2007-09-08 17:42:00 +0000623 read_cmdline(line_buf + col, scr_width - col - 1, s->pid, s->comm);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000624 fputs(line_buf, stdout);
Bernhard Reutner-Fischere2922e42006-05-19 12:48:56 +0000625 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000626 cur_jif.busy - prev_jif.busy, cur_jif.total - prev_jif.total); */
Eric Andersen420b2082002-09-17 22:14:58 +0000627 s++;
Eric Andersen08a72202002-09-30 20:52:10 +0000628 }
Rob Landley997650b2006-04-24 23:13:46 +0000629 /* printf(" %d", hist_iterations); */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000630 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Rob Landley997650b2006-04-24 23:13:46 +0000631 fflush(stdout);
Eric Andersen44608e92002-10-22 12:21:15 +0000632}
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000633#undef UPSCALE
Denis Vlasenko74511962007-06-11 16:31:55 +0000634#undef SHOW_STAT
635#undef CALC_STAT
636#undef FMT
Eric Andersen44608e92002-10-22 12:21:15 +0000637
638static void clearmems(void)
639{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000640 clear_username_cache();
Eric Andersen08a72202002-09-30 20:52:10 +0000641 free(top);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000642 top = NULL;
Eric Andersen08a72202002-09-30 20:52:10 +0000643 ntop = 0;
644}
645
Denis Vlasenkofa076802006-11-05 00:38:51 +0000646#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000647#include <termios.h>
Eric Andersen08a72202002-09-30 20:52:10 +0000648#include <signal.h>
649
Eric Andersen08a72202002-09-30 20:52:10 +0000650static void reset_term(void)
651{
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000652 tcsetattr(0, TCSANOW, &initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000653 if (ENABLE_FEATURE_CLEAN_UP) {
654 clearmems();
Denis Vlasenkofa076802006-11-05 00:38:51 +0000655#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000656 free(prev_hist);
Eric Andersen08a72202002-09-30 20:52:10 +0000657#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000658 }
Eric Andersen08a72202002-09-30 20:52:10 +0000659}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000660
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000661static void sig_catcher(int sig UNUSED_PARAM)
Eric Andersen08a72202002-09-30 20:52:10 +0000662{
663 reset_term();
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000664 exit(EXIT_FAILURE);
Eric Andersen08a72202002-09-30 20:52:10 +0000665}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000666#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000667
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000668/*
669 * TOPMEM support
670 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000671
672typedef unsigned long mem_t;
673
674typedef struct topmem_status_t {
675 unsigned pid;
676 char comm[COMM_LEN];
677 /* vsz doesn't count /dev/xxx mappings except /dev/zero */
678 mem_t vsz ;
679 mem_t vszrw ;
680 mem_t rss ;
681 mem_t rss_sh ;
682 mem_t dirty ;
683 mem_t dirty_sh;
684 mem_t stack ;
685} topmem_status_t;
686
687enum { NUM_SORT_FIELD = 7 };
688
689#define topmem ((topmem_status_t*)top)
690
691#if ENABLE_FEATURE_TOPMEM
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000692
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000693static int topmem_sort(char *a, char *b)
694{
695 int n;
696 mem_t l, r;
697
698 n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
699 l = *(mem_t*)(a + n);
700 r = *(mem_t*)(b + n);
701// if (l == r) {
702// l = a->mapped_rw;
703// r = b->mapped_rw;
704// }
705 /* We want to avoid unsigned->signed and truncation errors */
706 /* l>r: -1, l=r: 0, l<r: 1 */
707 n = (l > r) ? -1 : (l != r);
708 return inverted ? -n : n;
709}
710
711/* Cut "NNNN " out of " NNNN kb" */
712static char *grab_number(char *str, const char *match, unsigned sz)
713{
714 if (strncmp(str, match, sz) == 0) {
715 str = skip_whitespace(str + sz);
716 (skip_non_whitespace(str))[1] = '\0';
717 return xstrdup(str);
718 }
719 return NULL;
720}
721
722/* display header info (meminfo / loadavg) */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000723static void display_topmem_header(int scr_width, int *lines_rem_p)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000724{
725 char linebuf[128];
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000726 unsigned i;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000727 FILE *fp;
728 union {
729 struct {
730 /* 1 */ char *total;
731 /* 2 */ char *mfree;
732 /* 3 */ char *buf;
733 /* 4 */ char *cache;
734 /* 5 */ char *swaptotal;
735 /* 6 */ char *swapfree;
736 /* 7 */ char *dirty;
737 /* 8 */ char *mwrite;
738 /* 9 */ char *anon;
739 /* 10 */ char *map;
740 /* 11 */ char *slab;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000741 } u;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000742 char *str[11];
743 } Z;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000744#define total Z.u.total
745#define mfree Z.u.mfree
746#define buf Z.u.buf
747#define cache Z.u.cache
748#define swaptotal Z.u.swaptotal
749#define swapfree Z.u.swapfree
750#define dirty Z.u.dirty
751#define mwrite Z.u.mwrite
752#define anon Z.u.anon
753#define map Z.u.map
754#define slab Z.u.slab
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000755#define str Z.str
756
757 memset(&Z, 0, sizeof(Z));
758
759 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000760 fp = xfopen_for_read("meminfo");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000761 while (fgets(linebuf, sizeof(linebuf), fp)) {
762 char *p;
763
764#define SCAN(match, name) \
765 p = grab_number(linebuf, match, sizeof(match)-1); \
766 if (p) { name = p; continue; }
767
768 SCAN("MemTotal:", total);
769 SCAN("MemFree:", mfree);
770 SCAN("Buffers:", buf);
771 SCAN("Cached:", cache);
772 SCAN("SwapTotal:", swaptotal);
773 SCAN("SwapFree:", swapfree);
774 SCAN("Dirty:", dirty);
775 SCAN("Writeback:", mwrite);
776 SCAN("AnonPages:", anon);
777 SCAN("Mapped:", map);
778 SCAN("Slab:", slab);
779#undef SCAN
780 }
781 fclose(fp);
782
Denis Vlasenkofcfb5c02007-12-24 12:16:24 +0000783#define S(s) (s ? s : "0 ")
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000784 snprintf(linebuf, sizeof(linebuf),
785 "Mem %stotal %sanon %smap %sfree",
786 S(total), S(anon), S(map), S(mfree));
787 printf(OPT_BATCH_MODE ? "%.*s\n" : "\e[H\e[J%.*s\n", scr_width, linebuf);
788
789 snprintf(linebuf, sizeof(linebuf),
790 " %sslab %sbuf %scache %sdirty %swrite",
791 S(slab), S(buf), S(cache), S(dirty), S(mwrite));
792 printf("%.*s\n", scr_width, linebuf);
793
794 snprintf(linebuf, sizeof(linebuf),
795 "Swap %stotal %sfree", // TODO: % used?
796 S(swaptotal), S(swapfree));
797 printf("%.*s\n", scr_width, linebuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000798
799 (*lines_rem_p) -= 3;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000800#undef S
801
802 for (i = 0; i < ARRAY_SIZE(str); i++)
803 free(str[i]);
804#undef total
805#undef free
806#undef buf
807#undef cache
808#undef swaptotal
809#undef swapfree
810#undef dirty
811#undef write
812#undef anon
813#undef map
814#undef slab
815#undef str
816}
817
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000818static void ulltoa6_and_space(unsigned long long ul, char buf[6])
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000819{
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000820 /* see http://en.wikipedia.org/wiki/Tera */
821 smart_ulltoa5(ul, buf, " mgtpezy");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000822 buf[5] = ' ';
823}
824
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000825static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000826{
827#define HDR_STR " PID VSZ VSZRW RSS (SHR) DIRTY (SHR) STACK"
828#define MIN_WIDTH sizeof(HDR_STR)
829 const topmem_status_t *s = topmem;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000830
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000831 display_topmem_header(scr_width, &lines_rem);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000832 strcpy(line_buf, HDR_STR " COMMAND");
833 line_buf[5 + sort_field * 6] = '*';
834 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, line_buf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000835 lines_rem--;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000836
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000837 if (lines_rem > ntop)
838 lines_rem = ntop;
839 while (--lines_rem >= 0) {
840 /* PID VSZ VSZRW RSS (SHR) DIRTY (SHR) COMMAND */
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000841 ulltoa6_and_space(s->pid , &line_buf[0*6]);
842 ulltoa6_and_space(s->vsz , &line_buf[1*6]);
843 ulltoa6_and_space(s->vszrw , &line_buf[2*6]);
844 ulltoa6_and_space(s->rss , &line_buf[3*6]);
845 ulltoa6_and_space(s->rss_sh , &line_buf[4*6]);
846 ulltoa6_and_space(s->dirty , &line_buf[5*6]);
847 ulltoa6_and_space(s->dirty_sh, &line_buf[6*6]);
848 ulltoa6_and_space(s->stack , &line_buf[7*6]);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000849 line_buf[8*6] = '\0';
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000850 if (scr_width > (int)MIN_WIDTH) {
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000851 read_cmdline(&line_buf[8*6], scr_width - MIN_WIDTH, s->pid, s->comm);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000852 }
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000853 printf("\n""%.*s", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000854 s++;
855 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000856 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000857 fflush(stdout);
858#undef HDR_STR
859#undef MIN_WIDTH
860}
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000861
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000862#else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000863void display_topmem_process_list(int lines_rem, int scr_width);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000864int topmem_sort(char *a, char *b);
865#endif /* TOPMEM */
866
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000867/*
868 * end TOPMEM support
869 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000870
871enum {
872 TOP_MASK = 0
873 | PSSCAN_PID
874 | PSSCAN_PPID
875 | PSSCAN_VSZ
876 | PSSCAN_STIME
877 | PSSCAN_UTIME
878 | PSSCAN_STATE
879 | PSSCAN_COMM
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000880#if ENABLE_FEATURE_TOP_SMP_PROCESS
881 | PSSCAN_CPU
882#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000883 | PSSCAN_UIDGID,
884 TOPMEM_MASK = 0
885 | PSSCAN_PID
886 | PSSCAN_SMAPS
887 | PSSCAN_COMM,
888};
889
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000890int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000891int top_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen420b2082002-09-17 22:14:58 +0000892{
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000893 int iterations;
Denis Vlasenko55995022008-05-18 22:28:26 +0000894 unsigned lines, col;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000895 int lines_rem;
Denis Vlasenko55995022008-05-18 22:28:26 +0000896 unsigned interval;
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000897 char *str_interval, *str_iterations;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000898 SKIP_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000899#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000900 struct termios new_settings;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000901 struct pollfd pfd[1];
Eric Andersen08a72202002-09-30 20:52:10 +0000902 unsigned char c;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000903
904 pfd[0].fd = 0;
905 pfd[0].events = POLLIN;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000906#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000907
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000908 INIT_G();
909
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000910 interval = 5; /* default update interval is 5 seconds */
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000911 iterations = 0; /* infinite */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000912#if ENABLE_FEATURE_TOP_SMP_CPU
913 /*num_cpus = 0;*/
914 /*smp_cpu_info = 0;*/ /* to start with show aggregate */
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000915 cpu_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000916 cpu_prev_jif = &prev_jif;
917#endif
Denis Vlasenko85818632007-04-19 14:47:11 +0000918
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000919 /* all args are options; -n NUM */
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000920 opt_complementary = "-";
921 col = getopt32(argv, "d:n:b", &str_interval, &str_iterations);
922 if (col & OPT_d) {
923 /* work around for "-d 1" -> "-d -1" done by getopt32 */
924 if (str_interval[0] == '-')
925 str_interval++;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000926 /* Need to limit it to not overflow poll timeout */
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000927 interval = xatou16(str_interval);
928 }
929 if (col & OPT_n) {
930 if (str_iterations[0] == '-')
931 str_iterations++;
932 iterations = xatou(str_iterations);
Denis Vlasenkob308d812007-08-28 19:35:34 +0000933 }
Eric Andersen420b2082002-09-17 22:14:58 +0000934
Eric Andersen44608e92002-10-22 12:21:15 +0000935 /* change to /proc */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000936 xchdir("/proc");
Denis Vlasenkofa076802006-11-05 00:38:51 +0000937#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000938 tcgetattr(0, (void *) &initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000939 memcpy(&new_settings, &initial_settings, sizeof(new_settings));
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000940 /* unbuffered input, turn off echo */
941 new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
Eric Andersen08a72202002-09-30 20:52:10 +0000942
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000943 bb_signals(BB_FATAL_SIGS, sig_catcher);
Eric Andersen08a72202002-09-30 20:52:10 +0000944 tcsetattr(0, TCSANOW, (void *) &new_settings);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000945#endif /* FEATURE_USE_TERMIOS */
Mike Frysinger223b8872005-07-30 09:42:05 +0000946
Denis Vlasenkofa076802006-11-05 00:38:51 +0000947#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000948 sort_function[0] = pcpu_sort;
949 sort_function[1] = mem_sort;
950 sort_function[2] = time_sort;
951#else
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000952 sort_function[0] = mem_sort;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000953#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Mike Frysinger223b8872005-07-30 09:42:05 +0000954
Eric Andersen08a72202002-09-30 20:52:10 +0000955 while (1) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000956 procps_status_t *p = NULL;
Eric Andersen44608e92002-10-22 12:21:15 +0000957
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000958 lines = 24; /* default */
Rob Landley997650b2006-04-24 23:13:46 +0000959 col = 79;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000960#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000961 /* We output to stdout, we need size of stdout (not stdin)! */
962 get_terminal_width_height(STDOUT_FILENO, &col, &lines);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000963 if (lines < 5 || col < 10) {
Rob Landley997650b2006-04-24 23:13:46 +0000964 sleep(interval);
965 continue;
966 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000967#endif /* FEATURE_USE_TERMIOS */
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000968 if (col > LINE_BUF_SIZE-2) /* +2 bytes for '\n', NUL, */
969 col = LINE_BUF_SIZE-2;
Rob Landley997650b2006-04-24 23:13:46 +0000970
971 /* read process IDs & status for all the processes */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000972 while ((p = procps_scan(p, scan_mask)) != NULL) {
973 int n;
974 if (scan_mask == TOP_MASK) {
975 n = ntop;
Denis Vlasenko27842282008-08-04 13:20:36 +0000976 top = xrealloc_vector(top, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000977 top[n].pid = p->pid;
978 top[n].ppid = p->ppid;
979 top[n].vsz = p->vsz;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000980#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000981 top[n].ticks = p->stime + p->utime;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000982#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000983 top[n].uid = p->uid;
984 strcpy(top[n].state, p->state);
985 strcpy(top[n].comm, p->comm);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000986#if ENABLE_FEATURE_TOP_SMP_PROCESS
987 top[n].last_seen_on_cpu = p->last_seen_on_cpu;
988#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000989 } else { /* TOPMEM */
990#if ENABLE_FEATURE_TOPMEM
991 if (!(p->mapped_ro | p->mapped_rw))
992 continue; /* kernel threads are ignored */
993 n = ntop;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000994 /* No bug here - top and topmem are the same */
Denis Vlasenko27842282008-08-04 13:20:36 +0000995 top = xrealloc_vector(topmem, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000996 strcpy(topmem[n].comm, p->comm);
997 topmem[n].pid = p->pid;
998 topmem[n].vsz = p->mapped_rw + p->mapped_ro;
999 topmem[n].vszrw = p->mapped_rw;
1000 topmem[n].rss_sh = p->shared_clean + p->shared_dirty;
1001 topmem[n].rss = p->private_clean + p->private_dirty + topmem[n].rss_sh;
1002 topmem[n].dirty = p->private_dirty + p->shared_dirty;
1003 topmem[n].dirty_sh = p->shared_dirty;
1004 topmem[n].stack = p->stack;
1005#endif
1006 }
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001007 } /* end of "while we read /proc" */
Eric Andersen44608e92002-10-22 12:21:15 +00001008 if (ntop == 0) {
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001009 bb_error_msg("no process info in /proc");
1010 break;
Rob Landleyb2804552006-02-13 22:04:27 +00001011 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001012
1013 if (scan_mask == TOP_MASK) {
Denis Vlasenkofa076802006-11-05 00:38:51 +00001014#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001015 if (!prev_hist_count) {
1016 do_stats();
1017 usleep(100000);
1018 clearmems();
1019 continue;
1020 }
Eric Andersen08a72202002-09-30 20:52:10 +00001021 do_stats();
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001022 /* TODO: we don't need to sort all 10000 processes, we need to find top 24! */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001023 qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
Eric Andersen08a72202002-09-30 20:52:10 +00001024#else
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001025 qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
Denis Vlasenkofa076802006-11-05 00:38:51 +00001026#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001027 }
1028#if ENABLE_FEATURE_TOPMEM
1029 else { /* TOPMEM */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001030 qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
1031 }
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001032#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001033 lines_rem = lines;
1034 if (OPT_BATCH_MODE) {
1035 lines_rem = INT_MAX;
Eric Andersen08a72202002-09-30 20:52:10 +00001036 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001037 if (scan_mask == TOP_MASK)
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001038 display_process_list(lines_rem, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001039#if ENABLE_FEATURE_TOPMEM
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001040 else
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001041 display_topmem_process_list(lines_rem, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001042#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001043 clearmems();
1044 if (iterations >= 0 && !--iterations)
1045 break;
1046#if !ENABLE_FEATURE_USE_TERMIOS
1047 sleep(interval);
1048#else
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001049 if (option_mask32 & (OPT_b|OPT_EOF))
1050 /* batch mode, or EOF on stdin ("top </dev/null") */
1051 sleep(interval);
1052 else if (safe_poll(pfd, 1, interval * 1000) > 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001053 if (safe_read(STDIN_FILENO, &c, 1) != 1) { /* error/EOF? */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001054 option_mask32 |= OPT_EOF;
1055 continue;
1056 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001057 if (c == initial_settings.c_cc[VINTR])
"Vladimir N. Oleynik"c218a292006-02-15 17:15:56 +00001058 break;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001059 c |= 0x20; /* lowercase */
1060 if (c == 'q')
1061 break;
1062 if (c == 'n') {
1063 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001064 sort_function[0] = pid_sort;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001065 }
1066 if (c == 'm') {
1067 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001068 sort_function[0] = mem_sort;
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001069#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +00001070 sort_function[1] = pcpu_sort;
1071 sort_function[2] = time_sort;
Eric Andersen08a72202002-09-30 20:52:10 +00001072#endif
1073 }
Denis Vlasenkofa076802006-11-05 00:38:51 +00001074#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001075 if (c == 'p') {
1076 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001077 sort_function[0] = pcpu_sort;
1078 sort_function[1] = mem_sort;
1079 sort_function[2] = time_sort;
1080 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001081 if (c == 't') {
1082 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001083 sort_function[0] = time_sort;
1084 sort_function[1] = mem_sort;
1085 sort_function[2] = pcpu_sort;
1086 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001087#if ENABLE_FEATURE_TOPMEM
1088 if (c == 's') {
1089 scan_mask = TOPMEM_MASK;
1090 free(prev_hist);
1091 prev_hist = NULL;
1092 prev_hist_count = 0;
1093 sort_field = (sort_field + 1) % NUM_SORT_FIELD;
1094 }
1095 if (c == 'r')
1096 inverted ^= 1;
1097#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001098#if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko35840ab2008-09-25 11:11:37 +00001099 /* procps-2.0.18 uses 'C', 3.2.7 uses '1' */
1100 if (c == 'c' || c == '1') {
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001101 /* User wants to toggle per cpu <> aggregate */
1102 if (smp_cpu_info) {
1103 free(cpu_prev_jif);
1104 free(cpu_jif);
Denis Vlasenko35840ab2008-09-25 11:11:37 +00001105 cpu_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001106 cpu_prev_jif = &prev_jif;
1107 } else {
1108 /* Prepare for xrealloc() */
1109 cpu_jif = cpu_prev_jif = NULL;
1110 }
1111 num_cpus = 0;
1112 smp_cpu_info = !smp_cpu_info;
1113 get_jiffy_counts();
1114 }
1115#endif
Eric Andersen08a72202002-09-30 20:52:10 +00001116#endif
Eric Andersen08a72202002-09-30 20:52:10 +00001117 }
Denis Vlasenkofa076802006-11-05 00:38:51 +00001118#endif /* FEATURE_USE_TERMIOS */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001119 } /* end of "while (1)" */
1120
Denis Vlasenko4daad902007-09-27 10:20:47 +00001121 bb_putchar('\n');
Paul Fox275b9292008-03-20 16:05:02 +00001122#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001123 reset_term();
Paul Fox275b9292008-03-20 16:05:02 +00001124#endif
Eric Andersen420b2082002-09-17 22:14:58 +00001125 return EXIT_SUCCESS;
1126}