blob: f514df78a9c7ed54436720eff88a3d7caa799c95 [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.
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00007 *
Eric Andersen08a72202002-09-30 20:52:10 +00008 * 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
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +000025 *
Eric Andersen08a72202002-09-30 20:52:10 +000026 * Copyright (c) 1992 Branko Lankester
27 * Copyright (c) 1992 Roger Binns
28 * Copyright (C) 1994-1996 Charles L. Blake.
29 * Copyright (C) 1992-1998 Michael K. Johnson
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +000030 *
31 * Licensed under GPLv2, see file LICENSE in this tarball for details.
Eric Andersen08a72202002-09-30 20:52:10 +000032 */
33
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000034#include "libbb.h"
Eric Andersen420b2082002-09-17 22:14:58 +000035
Eric Andersen08a72202002-09-30 20:52:10 +000036
Denis Vlasenko85818632007-04-19 14:47:11 +000037typedef struct top_status_t {
Mike Frysinger0aa6ba52007-02-08 08:21:58 +000038 unsigned long vsz;
Denis Vlasenko459e4d62006-11-05 00:43:51 +000039#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
40 unsigned long ticks;
41 unsigned pcpu; /* delta of ticks */
42#endif
43 unsigned pid, ppid;
44 unsigned uid;
45 char state[4];
Denis Vlasenko98ebab82007-06-30 14:47:41 +000046 char comm[COMM_LEN];
Denis Vlasenko17e7f042008-09-25 10:48:06 +000047#if ENABLE_FEATURE_TOP_SMP_PROCESS
48 int last_seen_on_cpu;
49#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +000050} top_status_t;
Denis Vlasenko85818632007-04-19 14:47:11 +000051
Denis Vlasenko98ebab82007-06-30 14:47:41 +000052typedef struct jiffy_counts_t {
Denis Vlasenko78862752009-03-03 11:55:31 +000053 /* Linux 2.4.x has only first four */
54 unsigned long long usr, nic, sys, idle;
55 unsigned long long iowait, irq, softirq, steal;
Denis Vlasenko85818632007-04-19 14:47:11 +000056 unsigned long long total;
57 unsigned long long busy;
58} jiffy_counts_t;
59
Denis Vlasenko459e4d62006-11-05 00:43:51 +000060/* This structure stores some critical information from one frame to
61 the next. Used for finding deltas. */
Denis Vlasenko85818632007-04-19 14:47:11 +000062typedef struct save_hist {
Denis Vlasenko459e4d62006-11-05 00:43:51 +000063 unsigned long ticks;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +000064 pid_t pid;
Denis Vlasenko85818632007-04-19 14:47:11 +000065} save_hist;
66
67typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
68
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000069
Denis Vlasenko85818632007-04-19 14:47:11 +000070enum { SORT_DEPTH = 3 };
71
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000072
Denis Vlasenko85818632007-04-19 14:47:11 +000073struct globals {
74 top_status_t *top;
75 int ntop;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000076#if ENABLE_FEATURE_TOPMEM
77 smallint sort_field;
78 smallint inverted;
79#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +000080#if ENABLE_FEATURE_TOP_SMP_CPU
81 smallint smp_cpu_info; /* one/many cpu info lines? */
82#endif
Denis Vlasenko85818632007-04-19 14:47:11 +000083#if ENABLE_FEATURE_USE_TERMIOS
84 struct termios initial_settings;
85#endif
86#if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +000087 cmp_funcp sort_function[1];
Denis Vlasenko85818632007-04-19 14:47:11 +000088#else
89 cmp_funcp sort_function[SORT_DEPTH];
90 struct save_hist *prev_hist;
91 int prev_hist_count;
Denis Vlasenko35840ab2008-09-25 11:11:37 +000092 jiffy_counts_t cur_jif, prev_jif;
Denis Vlasenko85818632007-04-19 14:47:11 +000093 /* int hist_iterations; */
94 unsigned total_pcpu;
95 /* unsigned long total_vsz; */
96#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +000097#if ENABLE_FEATURE_TOP_SMP_CPU
98 /* Per CPU samples: current and last */
99 jiffy_counts_t *cpu_jif, *cpu_prev_jif;
100 int num_cpus;
101#endif
Denis Vlasenko55761362007-10-16 22:53:05 +0000102 char line_buf[80];
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000103};
Denis Vlasenko55761362007-10-16 22:53:05 +0000104
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000105enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
Denis Vlasenko55761362007-10-16 22:53:05 +0000106
Denis Vlasenko85818632007-04-19 14:47:11 +0000107#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000108#define INIT_G() do { \
109 struct G_sizecheck { \
110 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
111 }; \
112} while (0)
Denis Vlasenko85818632007-04-19 14:47:11 +0000113#define top (G.top )
114#define ntop (G.ntop )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000115#define sort_field (G.sort_field )
116#define inverted (G.inverted )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000117#define smp_cpu_info (G.smp_cpu_info )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000118#define initial_settings (G.initial_settings )
Denis Vlasenko85818632007-04-19 14:47:11 +0000119#define sort_function (G.sort_function )
Denis Vlasenko85818632007-04-19 14:47:11 +0000120#define prev_hist (G.prev_hist )
121#define prev_hist_count (G.prev_hist_count )
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000122#define cur_jif (G.cur_jif )
Denis Vlasenko85818632007-04-19 14:47:11 +0000123#define prev_jif (G.prev_jif )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000124#define cpu_jif (G.cpu_jif )
125#define cpu_prev_jif (G.cpu_prev_jif )
126#define num_cpus (G.num_cpus )
Denis Vlasenko85818632007-04-19 14:47:11 +0000127#define total_pcpu (G.total_pcpu )
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000128#define line_buf (G.line_buf )
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000129
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000130enum {
131 OPT_d = (1 << 0),
132 OPT_n = (1 << 1),
133 OPT_b = (1 << 2),
Denys Vlasenko00528822009-09-11 23:26:42 +0200134 OPT_m = (1 << 3),
135 OPT_EOF = (1 << 4), /* pseudo: "we saw EOF in stdin" */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000136};
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 +0000185static NOINLINE int read_cpu_jiffy(FILE *fp, jiffy_counts_t *p_jif)
186{
187#if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko78862752009-03-03 11:55:31 +0000188 static const char fmt[] = "cpu %llu %llu %llu %llu %llu %llu %llu %llu";
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000189#else
Denis Vlasenko78862752009-03-03 11:55:31 +0000190 static const char fmt[] = "cp%*s %llu %llu %llu %llu %llu %llu %llu %llu";
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000191#endif
192 int ret;
193
194 if (!fgets(line_buf, LINE_BUF_SIZE, fp) || line_buf[0] != 'c' /* not "cpu" */)
195 return 0;
196 ret = sscanf(line_buf, fmt,
197 &p_jif->usr, &p_jif->nic, &p_jif->sys, &p_jif->idle,
198 &p_jif->iowait, &p_jif->irq, &p_jif->softirq,
199 &p_jif->steal);
Denis Vlasenko78862752009-03-03 11:55:31 +0000200 if (ret >= 4) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000201 p_jif->total = p_jif->usr + p_jif->nic + p_jif->sys + p_jif->idle
202 + p_jif->iowait + p_jif->irq + p_jif->softirq + p_jif->steal;
203 /* procps 2.x does not count iowait as busy time */
204 p_jif->busy = p_jif->total - p_jif->idle - p_jif->iowait;
205 }
206
207 return ret;
208}
Eric Andersen08a72202002-09-30 20:52:10 +0000209
Rob Landley997650b2006-04-24 23:13:46 +0000210static void get_jiffy_counts(void)
Rob Landleyb2804552006-02-13 22:04:27 +0000211{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000212 FILE* fp = xfopen_for_read("stat");
Eric Andersen08a72202002-09-30 20:52:10 +0000213
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000214 /* We need to parse cumulative counts even if SMP CPU display is on,
215 * they are used to calculate per process CPU% */
216 prev_jif = cur_jif;
217 if (read_cpu_jiffy(fp, &cur_jif) < 4)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000218 bb_error_msg_and_die("can't read /proc/stat");
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000219
220#if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000221 fclose(fp);
222 return;
223#else
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000224 if (!smp_cpu_info) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000225 fclose(fp);
226 return;
227 }
228
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000229 if (!num_cpus) {
230 /* First time here. How many CPUs?
231 * There will be at least 1 /proc/stat line with cpu%d
232 */
233 while (1) {
234 cpu_jif = xrealloc_vector(cpu_jif, 1, num_cpus);
235 if (read_cpu_jiffy(fp, &cpu_jif[num_cpus]) <= 4)
236 break;
237 num_cpus++;
238 }
239 if (num_cpus == 0) /* /proc/stat with only "cpu ..." line?! */
240 smp_cpu_info = 0;
241
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000242 cpu_prev_jif = xzalloc(sizeof(cpu_prev_jif[0]) * num_cpus);
243
244 /* Otherwise the first per cpu display shows all 100% idles */
245 usleep(50000);
246 } else { /* Non first time invocation */
247 jiffy_counts_t *tmp;
248 int i;
249
250 /* First switch the sample pointers: no need to copy */
251 tmp = cpu_prev_jif;
252 cpu_prev_jif = cpu_jif;
253 cpu_jif = tmp;
254
255 /* Get the new samples */
256 for (i = 0; i < num_cpus; i++)
257 read_cpu_jiffy(fp, &cpu_jif[i]);
258 }
259#endif
260 fclose(fp);
261}
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000262
Eric Andersen08a72202002-09-30 20:52:10 +0000263static void do_stats(void)
264{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000265 top_status_t *cur;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000266 pid_t pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000267 int i, last_i, n;
Rob Landley997650b2006-04-24 23:13:46 +0000268 struct save_hist *new_hist;
Eric Andersen08a72202002-09-30 20:52:10 +0000269
Rob Landley997650b2006-04-24 23:13:46 +0000270 get_jiffy_counts();
271 total_pcpu = 0;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000272 /* total_vsz = 0; */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000273 new_hist = xmalloc(sizeof(new_hist[0]) * ntop);
Rob Landleyb2804552006-02-13 22:04:27 +0000274 /*
275 * Make a pass through the data to get stats.
276 */
Rob Landley997650b2006-04-24 23:13:46 +0000277 /* hist_iterations = 0; */
278 i = 0;
279 for (n = 0; n < ntop; n++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000280 cur = top + n;
281
282 /*
283 * Calculate time in cur process. Time is sum of user time
Rob Landley997650b2006-04-24 23:13:46 +0000284 * and system time
Rob Landleyb2804552006-02-13 22:04:27 +0000285 */
Rob Landleyb2804552006-02-13 22:04:27 +0000286 pid = cur->pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000287 new_hist[n].ticks = cur->ticks;
Rob Landley997650b2006-04-24 23:13:46 +0000288 new_hist[n].pid = pid;
Rob Landleyb2804552006-02-13 22:04:27 +0000289
290 /* find matching entry from previous pass */
Rob Landley997650b2006-04-24 23:13:46 +0000291 cur->pcpu = 0;
292 /* do not start at index 0, continue at last used one
293 * (brought hist_iterations from ~14000 down to 172) */
294 last_i = i;
295 if (prev_hist_count) do {
296 if (prev_hist[i].pid == pid) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000297 cur->pcpu = cur->ticks - prev_hist[i].ticks;
298 total_pcpu += cur->pcpu;
Rob Landleyb2804552006-02-13 22:04:27 +0000299 break;
300 }
Rob Landley997650b2006-04-24 23:13:46 +0000301 i = (i+1) % prev_hist_count;
302 /* hist_iterations++; */
303 } while (i != last_i);
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000304 /* total_vsz += cur->vsz; */
Eric Andersen08a72202002-09-30 20:52:10 +0000305 }
306
307 /*
Rob Landleyb2804552006-02-13 22:04:27 +0000308 * Save cur frame's information.
Eric Andersen08a72202002-09-30 20:52:10 +0000309 */
Rob Landley997650b2006-04-24 23:13:46 +0000310 free(prev_hist);
311 prev_hist = new_hist;
312 prev_hist_count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000313}
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000314
Denis Vlasenkofa076802006-11-05 00:38:51 +0000315#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Eric Andersen08a72202002-09-30 20:52:10 +0000316
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000317#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && ENABLE_FEATURE_TOP_DECIMALS
318/* formats 7 char string (8 with terminating NUL) */
319static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total)
320{
321 unsigned t;
322 if (value >= total) { /* 100% ? */
323 strcpy(pbuf, " 100% ");
324 return pbuf;
325 }
326 /* else generate " [N/space]N.N% " string */
327 value = 1000 * value / total;
328 t = value / 100;
329 value = value % 100;
330 pbuf[0] = ' ';
331 pbuf[1] = t ? t + '0' : ' ';
332 pbuf[2] = '0' + (value / 10);
333 pbuf[3] = '.';
334 pbuf[4] = '0' + (value % 10);
335 pbuf[5] = '%';
336 pbuf[6] = ' ';
337 pbuf[7] = '\0';
338 return pbuf;
339}
340#endif
341
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000342#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
343static void display_cpus(int scr_width, char *scrbuf, int *lines_rem_p)
344{
345 /*
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000346 * xxx% = (cur_jif.xxx - prev_jif.xxx) / (cur_jif.total - prev_jif.total) * 100%
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000347 */
348 unsigned total_diff;
349 jiffy_counts_t *p_jif, *p_prev_jif;
350 int i;
Denys Vlasenko00528822009-09-11 23:26:42 +0200351# if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000352 int n_cpu_lines;
Denys Vlasenko00528822009-09-11 23:26:42 +0200353# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000354
355 /* using (unsigned) casts to make operations cheaper */
Denys Vlasenkofe737982009-09-12 15:11:50 +0200356# define CALC_TOTAL_DIFF do { \
357 total_diff = (unsigned)(p_jif->total - p_prev_jif->total); \
358 if (total_diff == 0) total_diff = 1; \
359} while (0)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000360
Denys Vlasenko00528822009-09-11 23:26:42 +0200361# if ENABLE_FEATURE_TOP_DECIMALS
362# define CALC_STAT(xxx) char xxx[8]
363# define SHOW_STAT(xxx) fmt_100percent_8(xxx, (unsigned)(p_jif->xxx - p_prev_jif->xxx), total_diff)
364# define FMT "%s"
365# else
366# define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(p_jif->xxx - p_prev_jif->xxx) / total_diff
367# define SHOW_STAT(xxx) xxx
368# define FMT "%4u%% "
369# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000370
Denys Vlasenko00528822009-09-11 23:26:42 +0200371# if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000372 {
373 i = 1;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000374 p_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000375 p_prev_jif = &prev_jif;
Denys Vlasenko00528822009-09-11 23:26:42 +0200376# else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000377 /* Loop thru CPU(s) */
378 n_cpu_lines = smp_cpu_info ? num_cpus : 1;
379 if (n_cpu_lines > *lines_rem_p)
380 n_cpu_lines = *lines_rem_p;
381
382 for (i = 0; i < n_cpu_lines; i++) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000383 p_jif = &cpu_jif[i];
384 p_prev_jif = &cpu_prev_jif[i];
Denys Vlasenko00528822009-09-11 23:26:42 +0200385# endif
Denys Vlasenkofe737982009-09-12 15:11:50 +0200386 CALC_TOTAL_DIFF;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000387
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000388 { /* Need a block: CALC_STAT are declarations */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000389 CALC_STAT(usr);
390 CALC_STAT(sys);
391 CALC_STAT(nic);
392 CALC_STAT(idle);
393 CALC_STAT(iowait);
394 CALC_STAT(irq);
395 CALC_STAT(softirq);
396 /*CALC_STAT(steal);*/
397
398 snprintf(scrbuf, scr_width,
399 /* Barely fits in 79 chars when in "decimals" mode. */
Denys Vlasenko00528822009-09-11 23:26:42 +0200400# if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000401 "CPU%s:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
402 (smp_cpu_info ? utoa(i) : ""),
Denys Vlasenko00528822009-09-11 23:26:42 +0200403# else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000404 "CPU:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
Denys Vlasenko00528822009-09-11 23:26:42 +0200405# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000406 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
407 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
408 /*, SHOW_STAT(steal) - what is this 'steal' thing? */
409 /* I doubt anyone wants to know it */
410 );
411 puts(scrbuf);
412 }
413 }
Denys Vlasenko00528822009-09-11 23:26:42 +0200414# undef SHOW_STAT
415# undef CALC_STAT
416# undef FMT
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000417 *lines_rem_p -= i;
418}
419#else /* !ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS */
Denys Vlasenko00528822009-09-11 23:26:42 +0200420# define display_cpus(scr_width, scrbuf, lines_rem) ((void)0)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000421#endif
422
423static unsigned long display_header(int scr_width, int *lines_rem_p)
Eric Andersen420b2082002-09-17 22:14:58 +0000424{
425 FILE *fp;
426 char buf[80];
Rob Landley997650b2006-04-24 23:13:46 +0000427 char scrbuf[80];
Eric Andersen420b2082002-09-17 22:14:58 +0000428 unsigned long total, used, mfree, shared, buffers, cached;
Denis Vlasenko110967a2007-07-15 19:27:48 +0000429
Eric Andersen420b2082002-09-17 22:14:58 +0000430 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000431 fp = xfopen_for_read("meminfo");
Eric Andersen420b2082002-09-17 22:14:58 +0000432
Eric Andersen7857c032003-10-11 18:47:20 +0000433 /*
434 * Old kernels (such as 2.4.x) had a nice summary of memory info that
435 * we could parse, however this is gone entirely in 2.6. Try parsing
436 * the old way first, and if that fails, parse each field manually.
437 *
438 * First, we read in the first line. Old kernels will have bogus
439 * strings we don't care about, whereas new kernels will start right
440 * out with MemTotal:
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000441 * -- PFM.
Eric Andersen7857c032003-10-11 18:47:20 +0000442 */
443 if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000444 fgets(buf, sizeof(buf), fp); /* skip first line */
Eric Andersen7857c032003-10-11 18:47:20 +0000445
446 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000447 &total, &used, &mfree, &shared, &buffers, &cached);
448 /* convert to kilobytes */
449 used /= 1024;
450 mfree /= 1024;
451 shared /= 1024;
452 buffers /= 1024;
453 cached /= 1024;
454 total /= 1024;
Eric Andersen7857c032003-10-11 18:47:20 +0000455 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000456 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000457 * Revert to manual parsing, which incidentally already has the
458 * sizes in kilobytes. This should be safe for both 2.4 and
459 * 2.6.
460 */
Eric Andersen7857c032003-10-11 18:47:20 +0000461 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
462
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000463 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000464 * MemShared: is no longer present in 2.6. Report this as 0,
465 * to maintain consistent behavior with normal procps.
466 */
467 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
468 shared = 0;
469
470 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
471 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
472
473 used = total - mfree;
Eric Andersen420b2082002-09-17 22:14:58 +0000474 }
475 fclose(fp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000476
Denis Vlasenko110967a2007-07-15 19:27:48 +0000477 /* output memory info */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000478 if (scr_width > (int)sizeof(scrbuf))
Rob Landley997650b2006-04-24 23:13:46 +0000479 scr_width = sizeof(scrbuf);
480 snprintf(scrbuf, scr_width,
Denis Vlasenkoc1166c32007-07-15 19:23:38 +0000481 "Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached",
Rob Landleyb2804552006-02-13 22:04:27 +0000482 used, mfree, shared, buffers, cached);
Denis Vlasenko110967a2007-07-15 19:27:48 +0000483 /* clear screen & go to top */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000484 printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000485 (*lines_rem_p)--;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000486
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000487 /* Display CPU time split as percentage of total time
488 * This displays either a cumulative line or one line per CPU
Denis Vlasenko856be772007-08-17 08:29:48 +0000489 */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000490 display_cpus(scr_width, scrbuf, lines_rem_p);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000491
Denis Vlasenko110967a2007-07-15 19:27:48 +0000492 /* read load average as a string */
493 buf[0] = '\0';
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000494 open_read_close("loadavg", buf, sizeof(buf) - 1);
495 buf[sizeof(buf) - 1] = '\n';
496 *strchr(buf, '\n') = '\0';
Denis Vlasenko25d80622006-10-27 09:34:22 +0000497 snprintf(scrbuf, scr_width, "Load average: %s", buf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000498 puts(scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000499 (*lines_rem_p)--;
Rob Landley997650b2006-04-24 23:13:46 +0000500
Eric Andersen7857c032003-10-11 18:47:20 +0000501 return total;
Eric Andersen420b2082002-09-17 22:14:58 +0000502}
503
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000504static NOINLINE void display_process_list(int lines_rem, int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000505{
Rob Landley997650b2006-04-24 23:13:46 +0000506 enum {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000507 BITS_PER_INT = sizeof(int) * 8
Rob Landley997650b2006-04-24 23:13:46 +0000508 };
509
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000510 top_status_t *s;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000511 char vsz_str_buf[8];
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000512 unsigned long total_memory = display_header(scr_width, &lines_rem); /* or use total_vsz? */
Denis Vlasenko74511962007-06-11 16:31:55 +0000513 /* xxx_shift and xxx_scale variables allow us to replace
514 * expensive divides with multiply and shift */
515 unsigned pmem_shift, pmem_scale, pmem_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000516#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denys Vlasenko36df0482009-10-19 16:07:28 +0200517 unsigned tmp_unsigned;
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"
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100525 IF_FEATURE_TOP_SMP_PROCESS(" CPU")
526 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(" %CPU")
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000527 " COMMAND");
528 lines_rem--;
Rob Landley997650b2006-04-24 23:13:46 +0000529
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000530#if ENABLE_FEATURE_TOP_DECIMALS
Denys Vlasenko00528822009-09-11 23:26:42 +0200531# define UPSCALE 1000
532# define CALC_STAT(name, val) div_t name = div((val), 10)
533# define SHOW_STAT(name) name.quot, '0'+name.rem
534# define FMT "%3u.%c"
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000535#else
Denys Vlasenko00528822009-09-11 23:26:42 +0200536# define UPSCALE 100
537# define CALC_STAT(name, val) unsigned name = (val)
538# define SHOW_STAT(name) name
539# define FMT "%4u%%"
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000540#endif
Rob Landley997650b2006-04-24 23:13:46 +0000541 /*
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000542 * MEM% = s->vsz/MemTotal
Rob Landley997650b2006-04-24 23:13:46 +0000543 */
Denis Vlasenko74511962007-06-11 16:31:55 +0000544 pmem_shift = BITS_PER_INT-11;
545 pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000546 /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
Rob Landley997650b2006-04-24 23:13:46 +0000547 while (pmem_scale >= 512) {
548 pmem_scale /= 4;
549 pmem_shift -= 2;
550 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000551 pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000552#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000553 busy_jifs = cur_jif.busy - prev_jif.busy;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000554 /* This happens if there were lots of short-lived processes
555 * between two top updates (e.g. compilation) */
556 if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
557
Rob Landley997650b2006-04-24 23:13:46 +0000558 /*
559 * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
560 * (pcpu is delta of sys+user time between samples)
561 */
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000562 /* (cur_jif.xxx - prev_jif.xxx) and s->pcpu are
Rob Landley997650b2006-04-24 23:13:46 +0000563 * in 0..~64000 range (HZ*update_interval).
564 * we assume that unsigned is at least 32-bit.
565 */
566 pcpu_shift = 6;
Denys Vlasenkofe737982009-09-12 15:11:50 +0200567 pcpu_scale = UPSCALE*64 * (uint16_t)busy_jifs;
568 if (pcpu_scale == 0)
569 pcpu_scale = 1;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000570 while (pcpu_scale < (1U << (BITS_PER_INT-2))) {
Rob Landley997650b2006-04-24 23:13:46 +0000571 pcpu_scale *= 4;
572 pcpu_shift += 2;
573 }
Denys Vlasenkofe737982009-09-12 15:11:50 +0200574 tmp_unsigned = (uint16_t)(cur_jif.total - prev_jif.total) * total_pcpu;
575 if (tmp_unsigned != 0)
576 pcpu_scale /= tmp_unsigned;
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
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100605 IF_FEATURE_TOP_SMP_PROCESS(" %3d")
606 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(FMT)
Denis Vlasenko74511962007-06-11 16:31:55 +0000607 " ",
608 s->pid, s->ppid, get_cached_username(s->uid),
609 s->state, vsz_str_buf,
610 SHOW_STAT(pmem)
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100611 IF_FEATURE_TOP_SMP_PROCESS(, s->last_seen_on_cpu)
612 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(, SHOW_STAT(pcpu))
Denis Vlasenko74511962007-06-11 16:31:55 +0000613 );
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000614 if ((int)(col + 1) < scr_width)
Denys Vlasenko3a0f6f22009-09-12 00:15:34 +0200615 read_cmdline(line_buf + col, scr_width - col, s->pid, s->comm);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000616 fputs(line_buf, stdout);
Bernhard Reutner-Fischere2922e42006-05-19 12:48:56 +0000617 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000618 cur_jif.busy - prev_jif.busy, cur_jif.total - prev_jif.total); */
Eric Andersen420b2082002-09-17 22:14:58 +0000619 s++;
Eric Andersen08a72202002-09-30 20:52:10 +0000620 }
Rob Landley997650b2006-04-24 23:13:46 +0000621 /* printf(" %d", hist_iterations); */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000622 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100623 fflush_all();
Eric Andersen44608e92002-10-22 12:21:15 +0000624}
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000625#undef UPSCALE
Denis Vlasenko74511962007-06-11 16:31:55 +0000626#undef SHOW_STAT
627#undef CALC_STAT
628#undef FMT
Eric Andersen44608e92002-10-22 12:21:15 +0000629
630static void clearmems(void)
631{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000632 clear_username_cache();
Eric Andersen08a72202002-09-30 20:52:10 +0000633 free(top);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000634 top = NULL;
Eric Andersen08a72202002-09-30 20:52:10 +0000635 ntop = 0;
636}
637
Denis Vlasenkofa076802006-11-05 00:38:51 +0000638#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000639
Eric Andersen08a72202002-09-30 20:52:10 +0000640static void reset_term(void)
641{
Denis Vlasenko202ac502008-11-05 13:20:58 +0000642 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000643 if (ENABLE_FEATURE_CLEAN_UP) {
644 clearmems();
Denys Vlasenko00528822009-09-11 23:26:42 +0200645# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000646 free(prev_hist);
Denys Vlasenko00528822009-09-11 23:26:42 +0200647# endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000648 }
Eric Andersen08a72202002-09-30 20:52:10 +0000649}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000650
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000651static void sig_catcher(int sig UNUSED_PARAM)
Eric Andersen08a72202002-09-30 20:52:10 +0000652{
653 reset_term();
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000654 exit(EXIT_FAILURE);
Eric Andersen08a72202002-09-30 20:52:10 +0000655}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000656#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000657
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000658/*
659 * TOPMEM support
660 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000661
662typedef unsigned long mem_t;
663
664typedef struct topmem_status_t {
665 unsigned pid;
666 char comm[COMM_LEN];
667 /* vsz doesn't count /dev/xxx mappings except /dev/zero */
668 mem_t vsz ;
669 mem_t vszrw ;
670 mem_t rss ;
671 mem_t rss_sh ;
672 mem_t dirty ;
673 mem_t dirty_sh;
674 mem_t stack ;
675} topmem_status_t;
676
677enum { NUM_SORT_FIELD = 7 };
678
679#define topmem ((topmem_status_t*)top)
680
681#if ENABLE_FEATURE_TOPMEM
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000682
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000683static int topmem_sort(char *a, char *b)
684{
685 int n;
686 mem_t l, r;
687
688 n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
689 l = *(mem_t*)(a + n);
690 r = *(mem_t*)(b + n);
691// if (l == r) {
692// l = a->mapped_rw;
693// r = b->mapped_rw;
694// }
695 /* We want to avoid unsigned->signed and truncation errors */
696 /* l>r: -1, l=r: 0, l<r: 1 */
697 n = (l > r) ? -1 : (l != r);
698 return inverted ? -n : n;
699}
700
701/* Cut "NNNN " out of " NNNN kb" */
702static char *grab_number(char *str, const char *match, unsigned sz)
703{
704 if (strncmp(str, match, sz) == 0) {
705 str = skip_whitespace(str + sz);
706 (skip_non_whitespace(str))[1] = '\0';
707 return xstrdup(str);
708 }
709 return NULL;
710}
711
712/* display header info (meminfo / loadavg) */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000713static void display_topmem_header(int scr_width, int *lines_rem_p)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000714{
715 char linebuf[128];
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000716 unsigned i;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000717 FILE *fp;
718 union {
719 struct {
720 /* 1 */ char *total;
721 /* 2 */ char *mfree;
722 /* 3 */ char *buf;
723 /* 4 */ char *cache;
724 /* 5 */ char *swaptotal;
725 /* 6 */ char *swapfree;
726 /* 7 */ char *dirty;
727 /* 8 */ char *mwrite;
728 /* 9 */ char *anon;
729 /* 10 */ char *map;
730 /* 11 */ char *slab;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000731 } u;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000732 char *str[11];
733 } Z;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000734#define total Z.u.total
735#define mfree Z.u.mfree
736#define buf Z.u.buf
737#define cache Z.u.cache
738#define swaptotal Z.u.swaptotal
739#define swapfree Z.u.swapfree
740#define dirty Z.u.dirty
741#define mwrite Z.u.mwrite
742#define anon Z.u.anon
743#define map Z.u.map
744#define slab Z.u.slab
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000745#define str Z.str
746
747 memset(&Z, 0, sizeof(Z));
748
749 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000750 fp = xfopen_for_read("meminfo");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000751 while (fgets(linebuf, sizeof(linebuf), fp)) {
752 char *p;
753
754#define SCAN(match, name) \
755 p = grab_number(linebuf, match, sizeof(match)-1); \
756 if (p) { name = p; continue; }
757
758 SCAN("MemTotal:", total);
759 SCAN("MemFree:", mfree);
760 SCAN("Buffers:", buf);
761 SCAN("Cached:", cache);
762 SCAN("SwapTotal:", swaptotal);
763 SCAN("SwapFree:", swapfree);
764 SCAN("Dirty:", dirty);
765 SCAN("Writeback:", mwrite);
766 SCAN("AnonPages:", anon);
767 SCAN("Mapped:", map);
768 SCAN("Slab:", slab);
769#undef SCAN
770 }
771 fclose(fp);
772
Denis Vlasenkofcfb5c02007-12-24 12:16:24 +0000773#define S(s) (s ? s : "0 ")
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000774 snprintf(linebuf, sizeof(linebuf),
775 "Mem %stotal %sanon %smap %sfree",
776 S(total), S(anon), S(map), S(mfree));
777 printf(OPT_BATCH_MODE ? "%.*s\n" : "\e[H\e[J%.*s\n", scr_width, linebuf);
778
779 snprintf(linebuf, sizeof(linebuf),
780 " %sslab %sbuf %scache %sdirty %swrite",
781 S(slab), S(buf), S(cache), S(dirty), S(mwrite));
782 printf("%.*s\n", scr_width, linebuf);
783
784 snprintf(linebuf, sizeof(linebuf),
785 "Swap %stotal %sfree", // TODO: % used?
786 S(swaptotal), S(swapfree));
787 printf("%.*s\n", scr_width, linebuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000788
789 (*lines_rem_p) -= 3;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000790#undef S
791
792 for (i = 0; i < ARRAY_SIZE(str); i++)
793 free(str[i]);
794#undef total
795#undef free
796#undef buf
797#undef cache
798#undef swaptotal
799#undef swapfree
800#undef dirty
801#undef write
802#undef anon
803#undef map
804#undef slab
805#undef str
806}
807
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000808static void ulltoa6_and_space(unsigned long long ul, char buf[6])
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000809{
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000810 /* see http://en.wikipedia.org/wiki/Tera */
811 smart_ulltoa5(ul, buf, " mgtpezy");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000812 buf[5] = ' ';
813}
814
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000815static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000816{
817#define HDR_STR " PID VSZ VSZRW RSS (SHR) DIRTY (SHR) STACK"
818#define MIN_WIDTH sizeof(HDR_STR)
819 const topmem_status_t *s = topmem;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000820
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000821 display_topmem_header(scr_width, &lines_rem);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000822 strcpy(line_buf, HDR_STR " COMMAND");
823 line_buf[5 + sort_field * 6] = '*';
824 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, line_buf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000825 lines_rem--;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000826
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000827 if (lines_rem > ntop)
828 lines_rem = ntop;
829 while (--lines_rem >= 0) {
830 /* PID VSZ VSZRW RSS (SHR) DIRTY (SHR) COMMAND */
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000831 ulltoa6_and_space(s->pid , &line_buf[0*6]);
832 ulltoa6_and_space(s->vsz , &line_buf[1*6]);
833 ulltoa6_and_space(s->vszrw , &line_buf[2*6]);
834 ulltoa6_and_space(s->rss , &line_buf[3*6]);
835 ulltoa6_and_space(s->rss_sh , &line_buf[4*6]);
836 ulltoa6_and_space(s->dirty , &line_buf[5*6]);
837 ulltoa6_and_space(s->dirty_sh, &line_buf[6*6]);
838 ulltoa6_and_space(s->stack , &line_buf[7*6]);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000839 line_buf[8*6] = '\0';
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000840 if (scr_width > (int)MIN_WIDTH) {
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000841 read_cmdline(&line_buf[8*6], scr_width - MIN_WIDTH, s->pid, s->comm);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000842 }
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000843 printf("\n""%.*s", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000844 s++;
845 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000846 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100847 fflush_all();
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000848#undef HDR_STR
849#undef MIN_WIDTH
850}
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000851
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000852#else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000853void display_topmem_process_list(int lines_rem, int scr_width);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000854int topmem_sort(char *a, char *b);
855#endif /* TOPMEM */
856
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000857/*
858 * end TOPMEM support
859 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000860
861enum {
862 TOP_MASK = 0
863 | PSSCAN_PID
864 | PSSCAN_PPID
865 | PSSCAN_VSZ
866 | PSSCAN_STIME
867 | PSSCAN_UTIME
868 | PSSCAN_STATE
869 | PSSCAN_COMM
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000870 | PSSCAN_CPU
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000871 | PSSCAN_UIDGID,
872 TOPMEM_MASK = 0
873 | PSSCAN_PID
874 | PSSCAN_SMAPS
875 | PSSCAN_COMM,
876};
877
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000878int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000879int top_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen420b2082002-09-17 22:14:58 +0000880{
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000881 int iterations;
Denis Vlasenko55995022008-05-18 22:28:26 +0000882 unsigned lines, col;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000883 int lines_rem;
Denis Vlasenko55995022008-05-18 22:28:26 +0000884 unsigned interval;
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000885 char *str_interval, *str_iterations;
Denys Vlasenkod75295c2009-09-21 23:58:43 +0200886 unsigned scan_mask = TOP_MASK;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000887#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000888 struct termios new_settings;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000889 struct pollfd pfd[1];
Eric Andersen08a72202002-09-30 20:52:10 +0000890 unsigned char c;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000891
892 pfd[0].fd = 0;
893 pfd[0].events = POLLIN;
Denys Vlasenko00528822009-09-11 23:26:42 +0200894#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000895
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000896 INIT_G();
897
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000898 interval = 5; /* default update interval is 5 seconds */
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000899 iterations = 0; /* infinite */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000900#if ENABLE_FEATURE_TOP_SMP_CPU
901 /*num_cpus = 0;*/
902 /*smp_cpu_info = 0;*/ /* to start with show aggregate */
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000903 cpu_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000904 cpu_prev_jif = &prev_jif;
905#endif
Denis Vlasenko85818632007-04-19 14:47:11 +0000906
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000907 /* all args are options; -n NUM */
Denys Vlasenko00528822009-09-11 23:26:42 +0200908 opt_complementary = "-"; /* options can be specified w/o dash */
909 col = getopt32(argv, "d:n:b"IF_FEATURE_TOPMEM("m"), &str_interval, &str_iterations);
910#if ENABLE_FEATURE_TOPMEM
911 if (col & OPT_m) /* -m (busybox specific) */
912 scan_mask = TOPMEM_MASK;
913#endif
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000914 if (col & OPT_d) {
Denys Vlasenko00528822009-09-11 23:26:42 +0200915 /* work around for "-d 1" -> "-d -1" done by getopt32
916 * (opt_complementary == "-" does this) */
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000917 if (str_interval[0] == '-')
918 str_interval++;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000919 /* Need to limit it to not overflow poll timeout */
Denis Vlasenkoc8842212008-09-25 11:42:10 +0000920 interval = xatou16(str_interval);
921 }
922 if (col & OPT_n) {
923 if (str_iterations[0] == '-')
924 str_iterations++;
925 iterations = xatou(str_iterations);
Denis Vlasenkob308d812007-08-28 19:35:34 +0000926 }
Eric Andersen420b2082002-09-17 22:14:58 +0000927
Eric Andersen44608e92002-10-22 12:21:15 +0000928 /* change to /proc */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000929 xchdir("/proc");
Denis Vlasenkofa076802006-11-05 00:38:51 +0000930#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000931 tcgetattr(0, (void *) &initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000932 memcpy(&new_settings, &initial_settings, sizeof(new_settings));
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000933 /* unbuffered input, turn off echo */
934 new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
Eric Andersen08a72202002-09-30 20:52:10 +0000935
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000936 bb_signals(BB_FATAL_SIGS, sig_catcher);
Denis Vlasenko202ac502008-11-05 13:20:58 +0000937 tcsetattr_stdin_TCSANOW(&new_settings);
Denys Vlasenko00528822009-09-11 23:26:42 +0200938#endif
Mike Frysinger223b8872005-07-30 09:42:05 +0000939
Denis Vlasenkofa076802006-11-05 00:38:51 +0000940#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000941 sort_function[0] = pcpu_sort;
942 sort_function[1] = mem_sort;
943 sort_function[2] = time_sort;
944#else
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000945 sort_function[0] = mem_sort;
Denys Vlasenko00528822009-09-11 23:26:42 +0200946#endif
Mike Frysinger223b8872005-07-30 09:42:05 +0000947
Eric Andersen08a72202002-09-30 20:52:10 +0000948 while (1) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000949 procps_status_t *p = NULL;
Eric Andersen44608e92002-10-22 12:21:15 +0000950
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000951 lines = 24; /* default */
Rob Landley997650b2006-04-24 23:13:46 +0000952 col = 79;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000953#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000954 /* We output to stdout, we need size of stdout (not stdin)! */
955 get_terminal_width_height(STDOUT_FILENO, &col, &lines);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000956 if (lines < 5 || col < 10) {
Rob Landley997650b2006-04-24 23:13:46 +0000957 sleep(interval);
958 continue;
959 }
Denys Vlasenko00528822009-09-11 23:26:42 +0200960#endif
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000961 if (col > LINE_BUF_SIZE-2) /* +2 bytes for '\n', NUL, */
962 col = LINE_BUF_SIZE-2;
Rob Landley997650b2006-04-24 23:13:46 +0000963
964 /* read process IDs & status for all the processes */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000965 while ((p = procps_scan(p, scan_mask)) != NULL) {
966 int n;
Denys Vlasenkob410d4a2009-09-19 22:29:42 +0200967#if ENABLE_FEATURE_TOPMEM
968 if (scan_mask != TOPMEM_MASK)
969#endif
970 {
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000971 n = ntop;
Denis Vlasenko27842282008-08-04 13:20:36 +0000972 top = xrealloc_vector(top, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000973 top[n].pid = p->pid;
974 top[n].ppid = p->ppid;
975 top[n].vsz = p->vsz;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000976#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000977 top[n].ticks = p->stime + p->utime;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000978#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000979 top[n].uid = p->uid;
980 strcpy(top[n].state, p->state);
981 strcpy(top[n].comm, p->comm);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000982#if ENABLE_FEATURE_TOP_SMP_PROCESS
983 top[n].last_seen_on_cpu = p->last_seen_on_cpu;
984#endif
Denys Vlasenkob410d4a2009-09-19 22:29:42 +0200985 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000986#if ENABLE_FEATURE_TOPMEM
Denys Vlasenkob410d4a2009-09-19 22:29:42 +0200987 else { /* TOPMEM */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000988 if (!(p->mapped_ro | p->mapped_rw))
989 continue; /* kernel threads are ignored */
990 n = ntop;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000991 /* No bug here - top and topmem are the same */
Denis Vlasenko27842282008-08-04 13:20:36 +0000992 top = xrealloc_vector(topmem, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000993 strcpy(topmem[n].comm, p->comm);
994 topmem[n].pid = p->pid;
995 topmem[n].vsz = p->mapped_rw + p->mapped_ro;
996 topmem[n].vszrw = p->mapped_rw;
997 topmem[n].rss_sh = p->shared_clean + p->shared_dirty;
998 topmem[n].rss = p->private_clean + p->private_dirty + topmem[n].rss_sh;
999 topmem[n].dirty = p->private_dirty + p->shared_dirty;
1000 topmem[n].dirty_sh = p->shared_dirty;
1001 topmem[n].stack = p->stack;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001002 }
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001003#endif
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001004 } /* end of "while we read /proc" */
Eric Andersen44608e92002-10-22 12:21:15 +00001005 if (ntop == 0) {
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001006 bb_error_msg("no process info in /proc");
1007 break;
Rob Landleyb2804552006-02-13 22:04:27 +00001008 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001009
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001010 if (scan_mask != TOPMEM_MASK) {
Denis Vlasenkofa076802006-11-05 00:38:51 +00001011#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001012 if (!prev_hist_count) {
1013 do_stats();
1014 usleep(100000);
1015 clearmems();
1016 continue;
1017 }
Eric Andersen08a72202002-09-30 20:52:10 +00001018 do_stats();
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001019 /* TODO: we don't need to sort all 10000 processes, we need to find top 24! */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001020 qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
Eric Andersen08a72202002-09-30 20:52:10 +00001021#else
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001022 qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
Denys Vlasenko00528822009-09-11 23:26:42 +02001023#endif
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001024 }
1025#if ENABLE_FEATURE_TOPMEM
1026 else { /* TOPMEM */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001027 qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
1028 }
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001029#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001030 lines_rem = lines;
1031 if (OPT_BATCH_MODE) {
1032 lines_rem = INT_MAX;
Eric Andersen08a72202002-09-30 20:52:10 +00001033 }
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001034 if (scan_mask != TOPMEM_MASK)
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001035 display_process_list(lines_rem, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001036#if ENABLE_FEATURE_TOPMEM
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001037 else
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001038 display_topmem_process_list(lines_rem, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001039#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001040 clearmems();
1041 if (iterations >= 0 && !--iterations)
1042 break;
1043#if !ENABLE_FEATURE_USE_TERMIOS
1044 sleep(interval);
1045#else
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001046 if (option_mask32 & (OPT_b|OPT_EOF))
1047 /* batch mode, or EOF on stdin ("top </dev/null") */
1048 sleep(interval);
1049 else if (safe_poll(pfd, 1, interval * 1000) > 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001050 if (safe_read(STDIN_FILENO, &c, 1) != 1) { /* error/EOF? */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001051 option_mask32 |= OPT_EOF;
1052 continue;
1053 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001054 if (c == initial_settings.c_cc[VINTR])
"Vladimir N. Oleynik"c218a292006-02-15 17:15:56 +00001055 break;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001056 c |= 0x20; /* lowercase */
1057 if (c == 'q')
1058 break;
1059 if (c == 'n') {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001060 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001061 sort_function[0] = pid_sort;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001062 }
1063 if (c == 'm') {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001064 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001065 sort_function[0] = mem_sort;
Denys Vlasenko00528822009-09-11 23:26:42 +02001066# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +00001067 sort_function[1] = pcpu_sort;
1068 sort_function[2] = time_sort;
Denys Vlasenko00528822009-09-11 23:26:42 +02001069# endif
Eric Andersen08a72202002-09-30 20:52:10 +00001070 }
Denys Vlasenkod75295c2009-09-21 23:58:43 +02001071# if ENABLE_FEATURE_SHOW_THREADS
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001072 if (c == 'h'
1073 IF_FEATURE_TOPMEM(&& scan_mask != TOPMEM_MASK)
1074 ) {
1075 scan_mask ^= PSSCAN_TASKS;
1076 }
Denys Vlasenkod75295c2009-09-21 23:58:43 +02001077# endif
Denys Vlasenko00528822009-09-11 23:26:42 +02001078# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001079 if (c == 'p') {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001080 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001081 sort_function[0] = pcpu_sort;
1082 sort_function[1] = mem_sort;
1083 sort_function[2] = time_sort;
1084 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001085 if (c == 't') {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001086 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +00001087 sort_function[0] = time_sort;
1088 sort_function[1] = mem_sort;
1089 sort_function[2] = pcpu_sort;
1090 }
Denys Vlasenko00528822009-09-11 23:26:42 +02001091# if ENABLE_FEATURE_TOPMEM
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001092 if (c == 's') {
1093 scan_mask = TOPMEM_MASK;
1094 free(prev_hist);
1095 prev_hist = NULL;
1096 prev_hist_count = 0;
1097 sort_field = (sort_field + 1) % NUM_SORT_FIELD;
1098 }
1099 if (c == 'r')
1100 inverted ^= 1;
Denys Vlasenko00528822009-09-11 23:26:42 +02001101# endif
1102# if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko35840ab2008-09-25 11:11:37 +00001103 /* procps-2.0.18 uses 'C', 3.2.7 uses '1' */
1104 if (c == 'c' || c == '1') {
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001105 /* User wants to toggle per cpu <> aggregate */
1106 if (smp_cpu_info) {
1107 free(cpu_prev_jif);
1108 free(cpu_jif);
Denis Vlasenko35840ab2008-09-25 11:11:37 +00001109 cpu_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001110 cpu_prev_jif = &prev_jif;
1111 } else {
1112 /* Prepare for xrealloc() */
1113 cpu_jif = cpu_prev_jif = NULL;
1114 }
1115 num_cpus = 0;
1116 smp_cpu_info = !smp_cpu_info;
1117 get_jiffy_counts();
1118 }
Denys Vlasenko00528822009-09-11 23:26:42 +02001119# endif
1120# endif
Eric Andersen08a72202002-09-30 20:52:10 +00001121 }
Denis Vlasenkofa076802006-11-05 00:38:51 +00001122#endif /* FEATURE_USE_TERMIOS */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001123 } /* end of "while (1)" */
1124
Denis Vlasenko4daad902007-09-27 10:20:47 +00001125 bb_putchar('\n');
Paul Fox275b9292008-03-20 16:05:02 +00001126#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001127 reset_term();
Paul Fox275b9292008-03-20 16:05:02 +00001128#endif
Eric Andersen420b2082002-09-17 22:14:58 +00001129 return EXIT_SUCCESS;
1130}