blob: 51f1c1aedf7c21a3073061d69514685400111814 [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
Denys Vlasenko9aa599d2011-01-25 12:48:47 +010022 * - CPU where process was last seen running
Denis Vlasenko17e7f042008-09-25 10:48:06 +000023 * (to see effect of sched_setaffinity() etc)
Denys Vlasenko9aa599d2011-01-25 12:48:47 +010024 * - 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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020031 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersen08a72202002-09-30 20:52:10 +000032 */
Denys Vlasenko9aa599d2011-01-25 12:48:47 +010033/* How to snapshot /proc for debugging top problems:
Denys Vlasenko444ff282011-01-25 01:57:31 +010034 * for f in /proc/[0-9]*""/stat; do
35 * n=${f#/proc/}
36 * n=${n%/stat}_stat
37 * cp $f $n
38 * done
Denys Vlasenko9aa599d2011-01-25 12:48:47 +010039 * cp /proc/stat /proc/meminfo /proc/loadavg .
Denys Vlasenko444ff282011-01-25 01:57:31 +010040 * top -bn1 >top.out
Denys Vlasenko9aa599d2011-01-25 12:48:47 +010041 *
42 * ...and how to run top on it on another machine:
43 * rm -rf proc; mkdir proc
44 * for f in [0-9]*_stat; do
45 * p=${f%_stat}
46 * mkdir -p proc/$p
47 * cp $f proc/$p/stat
48 * done
49 * cp stat meminfo loadavg proc
50 * chroot . ./top -bn1 >top1.out
Denys Vlasenko444ff282011-01-25 01:57:31 +010051 */
Eric Andersen08a72202002-09-30 20:52:10 +000052
Tanguy Pruvot823694d2012-11-18 13:20:29 +010053//config:config TOP
54//config: bool "top"
55//config: default y
56//config: help
57//config: The top program provides a dynamic real-time view of a running
58//config: system.
59//config:
60//config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE
61//config: bool "Show CPU per-process usage percentage"
62//config: default y
63//config: depends on TOP
64//config: help
65//config: Make top display CPU usage for each process.
66//config: This adds about 2k.
67//config:
68//config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS
69//config: bool "Show CPU global usage percentage"
70//config: default y
71//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
72//config: help
73//config: Makes top display "CPU: NN% usr NN% sys..." line.
74//config: This adds about 0.5k.
75//config:
76//config:config FEATURE_TOP_SMP_CPU
77//config: bool "SMP CPU usage display ('c' key)"
78//config: default y
79//config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
80//config: help
81//config: Allow 'c' key to switch between individual/cumulative CPU stats
82//config: This adds about 0.5k.
83//config:
84//config:config FEATURE_TOP_DECIMALS
85//config: bool "Show 1/10th of a percent in CPU/mem statistics"
86//config: default y
87//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
88//config: help
89//config: Show 1/10th of a percent in CPU/mem statistics.
90//config: This adds about 0.3k.
91//config:
92//config:config FEATURE_TOP_SMP_PROCESS
93//config: bool "Show CPU process runs on ('j' field)"
94//config: default y
95//config: depends on TOP
96//config: help
97//config: Show CPU where process was last found running on.
98//config: This is the 'j' field.
99//config:
100//config:config FEATURE_TOPMEM
101//config: bool "Topmem command ('s' key)"
102//config: default y
103//config: depends on TOP
104//config: help
105//config: Enable 's' in top (gives lots of memory info).
106
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000107#include "libbb.h"
Eric Andersen420b2082002-09-17 22:14:58 +0000108
Eric Andersen08a72202002-09-30 20:52:10 +0000109
Denis Vlasenko85818632007-04-19 14:47:11 +0000110typedef struct top_status_t {
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000111 unsigned long vsz;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000112#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
113 unsigned long ticks;
114 unsigned pcpu; /* delta of ticks */
115#endif
116 unsigned pid, ppid;
117 unsigned uid;
118 char state[4];
Denis Vlasenko98ebab82007-06-30 14:47:41 +0000119 char comm[COMM_LEN];
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000120#if ENABLE_FEATURE_TOP_SMP_PROCESS
121 int last_seen_on_cpu;
122#endif
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000123} top_status_t;
Denis Vlasenko85818632007-04-19 14:47:11 +0000124
Denis Vlasenko98ebab82007-06-30 14:47:41 +0000125typedef struct jiffy_counts_t {
Denis Vlasenko78862752009-03-03 11:55:31 +0000126 /* Linux 2.4.x has only first four */
127 unsigned long long usr, nic, sys, idle;
128 unsigned long long iowait, irq, softirq, steal;
Denis Vlasenko85818632007-04-19 14:47:11 +0000129 unsigned long long total;
130 unsigned long long busy;
131} jiffy_counts_t;
132
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000133/* This structure stores some critical information from one frame to
134 the next. Used for finding deltas. */
Denis Vlasenko85818632007-04-19 14:47:11 +0000135typedef struct save_hist {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000136 unsigned long ticks;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000137 pid_t pid;
Denis Vlasenko85818632007-04-19 14:47:11 +0000138} save_hist;
139
140typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
141
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000142
Denis Vlasenko85818632007-04-19 14:47:11 +0000143enum { SORT_DEPTH = 3 };
144
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000145
Denis Vlasenko85818632007-04-19 14:47:11 +0000146struct globals {
147 top_status_t *top;
148 int ntop;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200149 smallint inverted;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000150#if ENABLE_FEATURE_TOPMEM
151 smallint sort_field;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000152#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000153#if ENABLE_FEATURE_TOP_SMP_CPU
154 smallint smp_cpu_info; /* one/many cpu info lines? */
155#endif
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100156 unsigned lines; /* screen height */
Denis Vlasenko85818632007-04-19 14:47:11 +0000157#if ENABLE_FEATURE_USE_TERMIOS
158 struct termios initial_settings;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100159 int scroll_ofs;
160#define G_scroll_ofs G.scroll_ofs
161#else
162#define G_scroll_ofs 0
Denis Vlasenko85818632007-04-19 14:47:11 +0000163#endif
164#if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000165 cmp_funcp sort_function[1];
Denis Vlasenko85818632007-04-19 14:47:11 +0000166#else
167 cmp_funcp sort_function[SORT_DEPTH];
168 struct save_hist *prev_hist;
169 int prev_hist_count;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000170 jiffy_counts_t cur_jif, prev_jif;
Denis Vlasenko85818632007-04-19 14:47:11 +0000171 /* int hist_iterations; */
172 unsigned total_pcpu;
173 /* unsigned long total_vsz; */
174#endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000175#if ENABLE_FEATURE_TOP_SMP_CPU
176 /* Per CPU samples: current and last */
177 jiffy_counts_t *cpu_jif, *cpu_prev_jif;
178 int num_cpus;
179#endif
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100180#if ENABLE_FEATURE_USE_TERMIOS
181 char kbd_input[KEYCODE_BUFFER_SIZE];
182#endif
Denis Vlasenko55761362007-10-16 22:53:05 +0000183 char line_buf[80];
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100184}; //FIX_ALIASING; - large code growth
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000185enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
Denis Vlasenko85818632007-04-19 14:47:11 +0000186#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200187struct BUG_bad_size {
188 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
189 char BUG_line_buf_too_small[LINE_BUF_SIZE > 80 ? 1 : -1];
190};
Denis Vlasenko85818632007-04-19 14:47:11 +0000191#define top (G.top )
192#define ntop (G.ntop )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000193#define sort_field (G.sort_field )
194#define inverted (G.inverted )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000195#define smp_cpu_info (G.smp_cpu_info )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000196#define initial_settings (G.initial_settings )
Denis Vlasenko85818632007-04-19 14:47:11 +0000197#define sort_function (G.sort_function )
Denis Vlasenko85818632007-04-19 14:47:11 +0000198#define prev_hist (G.prev_hist )
199#define prev_hist_count (G.prev_hist_count )
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000200#define cur_jif (G.cur_jif )
Denis Vlasenko85818632007-04-19 14:47:11 +0000201#define prev_jif (G.prev_jif )
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000202#define cpu_jif (G.cpu_jif )
203#define cpu_prev_jif (G.cpu_prev_jif )
204#define num_cpus (G.num_cpus )
Denis Vlasenko85818632007-04-19 14:47:11 +0000205#define total_pcpu (G.total_pcpu )
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000206#define line_buf (G.line_buf )
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200207#define INIT_G() do { } while (0)
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000208
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000209enum {
210 OPT_d = (1 << 0),
211 OPT_n = (1 << 1),
212 OPT_b = (1 << 2),
Denys Vlasenko00528822009-09-11 23:26:42 +0200213 OPT_m = (1 << 3),
214 OPT_EOF = (1 << 4), /* pseudo: "we saw EOF in stdin" */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000215};
216#define OPT_BATCH_MODE (option_mask32 & OPT_b)
Eric Andersen08a72202002-09-30 20:52:10 +0000217
Denis Vlasenko85818632007-04-19 14:47:11 +0000218
Denis Vlasenkofa076802006-11-05 00:38:51 +0000219#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000220static int pid_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000221{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000222 /* Buggy wrt pids with high bit set */
223 /* (linux pids are in [1..2^15-1]) */
Rob Landleyb2804552006-02-13 22:04:27 +0000224 return (Q->pid - P->pid);
Eric Andersen08a72202002-09-30 20:52:10 +0000225}
Mike Frysinger223b8872005-07-30 09:42:05 +0000226#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000227
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000228static int mem_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000229{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000230 /* We want to avoid unsigned->signed and truncation errors */
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000231 if (Q->vsz < P->vsz) return -1;
232 return Q->vsz != P->vsz; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000233}
234
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000235
Denis Vlasenko85818632007-04-19 14:47:11 +0000236#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000237
238static int pcpu_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000239{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000240 /* Buggy wrt ticks with high bit set */
241 /* Affects only processes for which ticks overflow */
242 return (int)Q->pcpu - (int)P->pcpu;
Eric Andersen08a72202002-09-30 20:52:10 +0000243}
244
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000245static int time_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000246{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000247 /* We want to avoid unsigned->signed and truncation errors */
248 if (Q->ticks < P->ticks) return -1;
249 return Q->ticks != P->ticks; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000250}
251
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000252static int mult_lvl_cmp(void* a, void* b)
253{
Rob Landleyb2804552006-02-13 22:04:27 +0000254 int i, cmp_val;
Eric Andersen08a72202002-09-30 20:52:10 +0000255
Denis Vlasenkofa076802006-11-05 00:38:51 +0000256 for (i = 0; i < SORT_DEPTH; i++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000257 cmp_val = (*sort_function[i])(a, b);
258 if (cmp_val != 0)
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200259 break;
Rob Landleyb2804552006-02-13 22:04:27 +0000260 }
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200261 return inverted ? -cmp_val : cmp_val;
Eric Andersen08a72202002-09-30 20:52:10 +0000262}
263
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000264static NOINLINE int read_cpu_jiffy(FILE *fp, jiffy_counts_t *p_jif)
265{
266#if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko78862752009-03-03 11:55:31 +0000267 static const char fmt[] = "cpu %llu %llu %llu %llu %llu %llu %llu %llu";
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000268#else
Denis Vlasenko78862752009-03-03 11:55:31 +0000269 static const char fmt[] = "cp%*s %llu %llu %llu %llu %llu %llu %llu %llu";
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000270#endif
271 int ret;
272
273 if (!fgets(line_buf, LINE_BUF_SIZE, fp) || line_buf[0] != 'c' /* not "cpu" */)
274 return 0;
275 ret = sscanf(line_buf, fmt,
276 &p_jif->usr, &p_jif->nic, &p_jif->sys, &p_jif->idle,
277 &p_jif->iowait, &p_jif->irq, &p_jif->softirq,
278 &p_jif->steal);
Denis Vlasenko78862752009-03-03 11:55:31 +0000279 if (ret >= 4) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000280 p_jif->total = p_jif->usr + p_jif->nic + p_jif->sys + p_jif->idle
281 + p_jif->iowait + p_jif->irq + p_jif->softirq + p_jif->steal;
282 /* procps 2.x does not count iowait as busy time */
283 p_jif->busy = p_jif->total - p_jif->idle - p_jif->iowait;
284 }
285
286 return ret;
287}
Eric Andersen08a72202002-09-30 20:52:10 +0000288
Rob Landley997650b2006-04-24 23:13:46 +0000289static void get_jiffy_counts(void)
Rob Landleyb2804552006-02-13 22:04:27 +0000290{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000291 FILE* fp = xfopen_for_read("stat");
Eric Andersen08a72202002-09-30 20:52:10 +0000292
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000293 /* We need to parse cumulative counts even if SMP CPU display is on,
294 * they are used to calculate per process CPU% */
295 prev_jif = cur_jif;
296 if (read_cpu_jiffy(fp, &cur_jif) < 4)
maxwen27116ba2015-08-14 21:41:28 +0200297 bb_error_msg_and_die("can't read '%s'", "/proc/stat");
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000298
299#if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000300 fclose(fp);
301 return;
302#else
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000303 if (!smp_cpu_info) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000304 fclose(fp);
305 return;
306 }
307
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000308 if (!num_cpus) {
309 /* First time here. How many CPUs?
310 * There will be at least 1 /proc/stat line with cpu%d
311 */
312 while (1) {
313 cpu_jif = xrealloc_vector(cpu_jif, 1, num_cpus);
314 if (read_cpu_jiffy(fp, &cpu_jif[num_cpus]) <= 4)
315 break;
316 num_cpus++;
317 }
318 if (num_cpus == 0) /* /proc/stat with only "cpu ..." line?! */
319 smp_cpu_info = 0;
320
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000321 cpu_prev_jif = xzalloc(sizeof(cpu_prev_jif[0]) * num_cpus);
322
323 /* Otherwise the first per cpu display shows all 100% idles */
324 usleep(50000);
325 } else { /* Non first time invocation */
326 jiffy_counts_t *tmp;
327 int i;
328
329 /* First switch the sample pointers: no need to copy */
330 tmp = cpu_prev_jif;
331 cpu_prev_jif = cpu_jif;
332 cpu_jif = tmp;
333
334 /* Get the new samples */
335 for (i = 0; i < num_cpus; i++)
336 read_cpu_jiffy(fp, &cpu_jif[i]);
337 }
338#endif
339 fclose(fp);
340}
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000341
Eric Andersen08a72202002-09-30 20:52:10 +0000342static void do_stats(void)
343{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000344 top_status_t *cur;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000345 pid_t pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000346 int i, last_i, n;
Rob Landley997650b2006-04-24 23:13:46 +0000347 struct save_hist *new_hist;
Eric Andersen08a72202002-09-30 20:52:10 +0000348
Rob Landley997650b2006-04-24 23:13:46 +0000349 get_jiffy_counts();
350 total_pcpu = 0;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000351 /* total_vsz = 0; */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000352 new_hist = xmalloc(sizeof(new_hist[0]) * ntop);
Rob Landleyb2804552006-02-13 22:04:27 +0000353 /*
354 * Make a pass through the data to get stats.
355 */
Rob Landley997650b2006-04-24 23:13:46 +0000356 /* hist_iterations = 0; */
357 i = 0;
358 for (n = 0; n < ntop; n++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000359 cur = top + n;
360
361 /*
362 * Calculate time in cur process. Time is sum of user time
Rob Landley997650b2006-04-24 23:13:46 +0000363 * and system time
Rob Landleyb2804552006-02-13 22:04:27 +0000364 */
Rob Landleyb2804552006-02-13 22:04:27 +0000365 pid = cur->pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000366 new_hist[n].ticks = cur->ticks;
Rob Landley997650b2006-04-24 23:13:46 +0000367 new_hist[n].pid = pid;
Rob Landleyb2804552006-02-13 22:04:27 +0000368
369 /* find matching entry from previous pass */
Rob Landley997650b2006-04-24 23:13:46 +0000370 cur->pcpu = 0;
371 /* do not start at index 0, continue at last used one
372 * (brought hist_iterations from ~14000 down to 172) */
373 last_i = i;
374 if (prev_hist_count) do {
375 if (prev_hist[i].pid == pid) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000376 cur->pcpu = cur->ticks - prev_hist[i].ticks;
377 total_pcpu += cur->pcpu;
Rob Landleyb2804552006-02-13 22:04:27 +0000378 break;
379 }
Rob Landley997650b2006-04-24 23:13:46 +0000380 i = (i+1) % prev_hist_count;
381 /* hist_iterations++; */
382 } while (i != last_i);
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000383 /* total_vsz += cur->vsz; */
Eric Andersen08a72202002-09-30 20:52:10 +0000384 }
385
386 /*
Rob Landleyb2804552006-02-13 22:04:27 +0000387 * Save cur frame's information.
Eric Andersen08a72202002-09-30 20:52:10 +0000388 */
Rob Landley997650b2006-04-24 23:13:46 +0000389 free(prev_hist);
390 prev_hist = new_hist;
391 prev_hist_count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000392}
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000393
Denis Vlasenkofa076802006-11-05 00:38:51 +0000394#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Eric Andersen08a72202002-09-30 20:52:10 +0000395
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000396#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && ENABLE_FEATURE_TOP_DECIMALS
397/* formats 7 char string (8 with terminating NUL) */
398static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total)
399{
400 unsigned t;
401 if (value >= total) { /* 100% ? */
402 strcpy(pbuf, " 100% ");
403 return pbuf;
404 }
405 /* else generate " [N/space]N.N% " string */
406 value = 1000 * value / total;
407 t = value / 100;
408 value = value % 100;
409 pbuf[0] = ' ';
410 pbuf[1] = t ? t + '0' : ' ';
411 pbuf[2] = '0' + (value / 10);
412 pbuf[3] = '.';
413 pbuf[4] = '0' + (value % 10);
414 pbuf[5] = '%';
415 pbuf[6] = ' ';
416 pbuf[7] = '\0';
417 return pbuf;
418}
419#endif
420
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000421#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
422static void display_cpus(int scr_width, char *scrbuf, int *lines_rem_p)
423{
424 /*
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000425 * xxx% = (cur_jif.xxx - prev_jif.xxx) / (cur_jif.total - prev_jif.total) * 100%
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000426 */
427 unsigned total_diff;
428 jiffy_counts_t *p_jif, *p_prev_jif;
429 int i;
Denys Vlasenko00528822009-09-11 23:26:42 +0200430# if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000431 int n_cpu_lines;
Denys Vlasenko00528822009-09-11 23:26:42 +0200432# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000433
434 /* using (unsigned) casts to make operations cheaper */
Denys Vlasenkofe737982009-09-12 15:11:50 +0200435# define CALC_TOTAL_DIFF do { \
436 total_diff = (unsigned)(p_jif->total - p_prev_jif->total); \
437 if (total_diff == 0) total_diff = 1; \
438} while (0)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000439
Denys Vlasenko00528822009-09-11 23:26:42 +0200440# if ENABLE_FEATURE_TOP_DECIMALS
441# define CALC_STAT(xxx) char xxx[8]
442# define SHOW_STAT(xxx) fmt_100percent_8(xxx, (unsigned)(p_jif->xxx - p_prev_jif->xxx), total_diff)
443# define FMT "%s"
444# else
445# define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(p_jif->xxx - p_prev_jif->xxx) / total_diff
446# define SHOW_STAT(xxx) xxx
447# define FMT "%4u%% "
448# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000449
Denys Vlasenko00528822009-09-11 23:26:42 +0200450# if !ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000451 {
452 i = 1;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000453 p_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000454 p_prev_jif = &prev_jif;
Denys Vlasenko00528822009-09-11 23:26:42 +0200455# else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000456 /* Loop thru CPU(s) */
457 n_cpu_lines = smp_cpu_info ? num_cpus : 1;
458 if (n_cpu_lines > *lines_rem_p)
459 n_cpu_lines = *lines_rem_p;
460
461 for (i = 0; i < n_cpu_lines; i++) {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000462 p_jif = &cpu_jif[i];
463 p_prev_jif = &cpu_prev_jif[i];
Denys Vlasenko00528822009-09-11 23:26:42 +0200464# endif
Denys Vlasenkofe737982009-09-12 15:11:50 +0200465 CALC_TOTAL_DIFF;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000466
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000467 { /* Need a block: CALC_STAT are declarations */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000468 CALC_STAT(usr);
469 CALC_STAT(sys);
470 CALC_STAT(nic);
471 CALC_STAT(idle);
472 CALC_STAT(iowait);
473 CALC_STAT(irq);
474 CALC_STAT(softirq);
475 /*CALC_STAT(steal);*/
476
477 snprintf(scrbuf, scr_width,
478 /* Barely fits in 79 chars when in "decimals" mode. */
Denys Vlasenko00528822009-09-11 23:26:42 +0200479# if ENABLE_FEATURE_TOP_SMP_CPU
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000480 "CPU%s:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
481 (smp_cpu_info ? utoa(i) : ""),
Denys Vlasenko00528822009-09-11 23:26:42 +0200482# else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000483 "CPU:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
Denys Vlasenko00528822009-09-11 23:26:42 +0200484# endif
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000485 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
486 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
487 /*, SHOW_STAT(steal) - what is this 'steal' thing? */
488 /* I doubt anyone wants to know it */
489 );
490 puts(scrbuf);
491 }
492 }
Denys Vlasenko00528822009-09-11 23:26:42 +0200493# undef SHOW_STAT
494# undef CALC_STAT
495# undef FMT
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000496 *lines_rem_p -= i;
497}
498#else /* !ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS */
Denys Vlasenko00528822009-09-11 23:26:42 +0200499# define display_cpus(scr_width, scrbuf, lines_rem) ((void)0)
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000500#endif
501
502static unsigned long display_header(int scr_width, int *lines_rem_p)
Eric Andersen420b2082002-09-17 22:14:58 +0000503{
504 FILE *fp;
505 char buf[80];
Rob Landley997650b2006-04-24 23:13:46 +0000506 char scrbuf[80];
Eric Andersen420b2082002-09-17 22:14:58 +0000507 unsigned long total, used, mfree, shared, buffers, cached;
Denis Vlasenko110967a2007-07-15 19:27:48 +0000508
Eric Andersen420b2082002-09-17 22:14:58 +0000509 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000510 fp = xfopen_for_read("meminfo");
Eric Andersen420b2082002-09-17 22:14:58 +0000511
Eric Andersen7857c032003-10-11 18:47:20 +0000512 /*
513 * Old kernels (such as 2.4.x) had a nice summary of memory info that
514 * we could parse, however this is gone entirely in 2.6. Try parsing
515 * the old way first, and if that fails, parse each field manually.
516 *
517 * First, we read in the first line. Old kernels will have bogus
518 * strings we don't care about, whereas new kernels will start right
519 * out with MemTotal:
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000520 * -- PFM.
Eric Andersen7857c032003-10-11 18:47:20 +0000521 */
522 if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000523 fgets(buf, sizeof(buf), fp); /* skip first line */
Eric Andersen7857c032003-10-11 18:47:20 +0000524
525 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000526 &total, &used, &mfree, &shared, &buffers, &cached);
527 /* convert to kilobytes */
528 used /= 1024;
529 mfree /= 1024;
530 shared /= 1024;
531 buffers /= 1024;
532 cached /= 1024;
533 total /= 1024;
Eric Andersen7857c032003-10-11 18:47:20 +0000534 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000535 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000536 * Revert to manual parsing, which incidentally already has the
537 * sizes in kilobytes. This should be safe for both 2.4 and
538 * 2.6.
539 */
Eric Andersen7857c032003-10-11 18:47:20 +0000540 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
541
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000542 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000543 * MemShared: is no longer present in 2.6. Report this as 0,
544 * to maintain consistent behavior with normal procps.
545 */
546 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
547 shared = 0;
548
549 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
550 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
551
552 used = total - mfree;
Eric Andersen420b2082002-09-17 22:14:58 +0000553 }
554 fclose(fp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000555
Denis Vlasenko110967a2007-07-15 19:27:48 +0000556 /* output memory info */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000557 if (scr_width > (int)sizeof(scrbuf))
Rob Landley997650b2006-04-24 23:13:46 +0000558 scr_width = sizeof(scrbuf);
559 snprintf(scrbuf, scr_width,
Denis Vlasenkoc1166c32007-07-15 19:23:38 +0000560 "Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached",
Rob Landleyb2804552006-02-13 22:04:27 +0000561 used, mfree, shared, buffers, cached);
Denys Vlasenkod9a3e892010-05-16 23:42:13 +0200562 /* go to top & clear to the end of screen */
563 printf(OPT_BATCH_MODE ? "%s\n" : "\033[H\033[J%s\n", scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000564 (*lines_rem_p)--;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000565
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000566 /* Display CPU time split as percentage of total time
567 * This displays either a cumulative line or one line per CPU
Denis Vlasenko856be772007-08-17 08:29:48 +0000568 */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000569 display_cpus(scr_width, scrbuf, lines_rem_p);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000570
Denis Vlasenko110967a2007-07-15 19:27:48 +0000571 /* read load average as a string */
572 buf[0] = '\0';
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000573 open_read_close("loadavg", buf, sizeof(buf) - 1);
574 buf[sizeof(buf) - 1] = '\n';
575 *strchr(buf, '\n') = '\0';
Denis Vlasenko25d80622006-10-27 09:34:22 +0000576 snprintf(scrbuf, scr_width, "Load average: %s", buf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000577 puts(scrbuf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000578 (*lines_rem_p)--;
Rob Landley997650b2006-04-24 23:13:46 +0000579
Eric Andersen7857c032003-10-11 18:47:20 +0000580 return total;
Eric Andersen420b2082002-09-17 22:14:58 +0000581}
582
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000583static NOINLINE void display_process_list(int lines_rem, int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000584{
Rob Landley997650b2006-04-24 23:13:46 +0000585 enum {
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000586 BITS_PER_INT = sizeof(int) * 8
Rob Landley997650b2006-04-24 23:13:46 +0000587 };
588
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000589 top_status_t *s;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000590 char vsz_str_buf[8];
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000591 unsigned long total_memory = display_header(scr_width, &lines_rem); /* or use total_vsz? */
Denis Vlasenko74511962007-06-11 16:31:55 +0000592 /* xxx_shift and xxx_scale variables allow us to replace
593 * expensive divides with multiply and shift */
594 unsigned pmem_shift, pmem_scale, pmem_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000595#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denys Vlasenko36df0482009-10-19 16:07:28 +0200596 unsigned tmp_unsigned;
Denis Vlasenko74511962007-06-11 16:31:55 +0000597 unsigned pcpu_shift, pcpu_scale, pcpu_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000598 unsigned busy_jifs;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000599#endif
Rob Landley997650b2006-04-24 23:13:46 +0000600
Eric Andersen420b2082002-09-17 22:14:58 +0000601 /* what info of the processes is shown */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +0200602 printf(OPT_BATCH_MODE ? "%.*s" : "\033[7m%.*s\033[0m", scr_width,
Denys Vlasenko9aa599d2011-01-25 12:48:47 +0100603 " PID PPID USER STAT VSZ %VSZ"
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100604 IF_FEATURE_TOP_SMP_PROCESS(" CPU")
605 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(" %CPU")
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000606 " COMMAND");
607 lines_rem--;
Rob Landley997650b2006-04-24 23:13:46 +0000608
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000609#if ENABLE_FEATURE_TOP_DECIMALS
Denys Vlasenko00528822009-09-11 23:26:42 +0200610# define UPSCALE 1000
611# define CALC_STAT(name, val) div_t name = div((val), 10)
612# define SHOW_STAT(name) name.quot, '0'+name.rem
613# define FMT "%3u.%c"
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000614#else
Denys Vlasenko00528822009-09-11 23:26:42 +0200615# define UPSCALE 100
616# define CALC_STAT(name, val) unsigned name = (val)
617# define SHOW_STAT(name) name
618# define FMT "%4u%%"
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000619#endif
Rob Landley997650b2006-04-24 23:13:46 +0000620 /*
Denys Vlasenko9aa599d2011-01-25 12:48:47 +0100621 * %VSZ = s->vsz/MemTotal
Rob Landley997650b2006-04-24 23:13:46 +0000622 */
Denis Vlasenko74511962007-06-11 16:31:55 +0000623 pmem_shift = BITS_PER_INT-11;
624 pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000625 /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
Rob Landley997650b2006-04-24 23:13:46 +0000626 while (pmem_scale >= 512) {
627 pmem_scale /= 4;
628 pmem_shift -= 2;
629 }
Denys Vlasenko444ff282011-01-25 01:57:31 +0100630 pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS ? 20 : 2);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000631#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000632 busy_jifs = cur_jif.busy - prev_jif.busy;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000633 /* This happens if there were lots of short-lived processes
634 * between two top updates (e.g. compilation) */
635 if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
636
Rob Landley997650b2006-04-24 23:13:46 +0000637 /*
638 * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
639 * (pcpu is delta of sys+user time between samples)
640 */
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000641 /* (cur_jif.xxx - prev_jif.xxx) and s->pcpu are
Rob Landley997650b2006-04-24 23:13:46 +0000642 * in 0..~64000 range (HZ*update_interval).
643 * we assume that unsigned is at least 32-bit.
644 */
645 pcpu_shift = 6;
Denys Vlasenkofe737982009-09-12 15:11:50 +0200646 pcpu_scale = UPSCALE*64 * (uint16_t)busy_jifs;
647 if (pcpu_scale == 0)
648 pcpu_scale = 1;
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000649 while (pcpu_scale < (1U << (BITS_PER_INT-2))) {
Rob Landley997650b2006-04-24 23:13:46 +0000650 pcpu_scale *= 4;
651 pcpu_shift += 2;
652 }
Denys Vlasenkofe737982009-09-12 15:11:50 +0200653 tmp_unsigned = (uint16_t)(cur_jif.total - prev_jif.total) * total_pcpu;
654 if (tmp_unsigned != 0)
655 pcpu_scale /= tmp_unsigned;
Rob Landley997650b2006-04-24 23:13:46 +0000656 /* we want (s->pcpu * pcpu_scale) to never overflow */
657 while (pcpu_scale >= 1024) {
658 pcpu_scale /= 4;
659 pcpu_shift -= 2;
660 }
Denys Vlasenko444ff282011-01-25 01:57:31 +0100661 pcpu_half = (1U << pcpu_shift) / (ENABLE_FEATURE_TOP_DECIMALS ? 20 : 2);
Rob Landley997650b2006-04-24 23:13:46 +0000662 /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */
Eric Andersen08a72202002-09-30 20:52:10 +0000663#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000664
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000665 /* Ok, all preliminary data is ready, go through the list */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000666 scr_width += 2; /* account for leading '\n' and trailing NUL */
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100667 if (lines_rem > ntop - G_scroll_ofs)
668 lines_rem = ntop - G_scroll_ofs;
669 s = top + G_scroll_ofs;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000670 while (--lines_rem >= 0) {
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000671 unsigned col;
Denis Vlasenko74511962007-06-11 16:31:55 +0000672 CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift);
673#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
674 CALC_STAT(pcpu, (s->pcpu*pcpu_scale + pcpu_half) >> pcpu_shift);
675#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000676
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000677 if (s->vsz >= 100000)
Denis Vlasenkob308d812007-08-28 19:35:34 +0000678 sprintf(vsz_str_buf, "%6ldm", s->vsz/1024);
Manuel Novoa III d4993302002-09-18 19:27:10 +0000679 else
maxwen27116ba2015-08-14 21:41:28 +0200680 sprintf(vsz_str_buf, "%7lu", s->vsz);
Denys Vlasenko9aa599d2011-01-25 12:48:47 +0100681 /* PID PPID USER STAT VSZ %VSZ [%CPU] COMMAND */
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000682 col = snprintf(line_buf, scr_width,
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000683 "\n" "%5u%6u %-8.8s %s%s" FMT
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100684 IF_FEATURE_TOP_SMP_PROCESS(" %3d")
685 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(FMT)
Denis Vlasenko74511962007-06-11 16:31:55 +0000686 " ",
687 s->pid, s->ppid, get_cached_username(s->uid),
688 s->state, vsz_str_buf,
689 SHOW_STAT(pmem)
Denys Vlasenko9be4f312009-11-07 04:06:31 +0100690 IF_FEATURE_TOP_SMP_PROCESS(, s->last_seen_on_cpu)
691 IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE(, SHOW_STAT(pcpu))
Denis Vlasenko74511962007-06-11 16:31:55 +0000692 );
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000693 if ((int)(col + 1) < scr_width)
Denys Vlasenko3a0f6f22009-09-12 00:15:34 +0200694 read_cmdline(line_buf + col, scr_width - col, s->pid, s->comm);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000695 fputs(line_buf, stdout);
Bernhard Reutner-Fischere2922e42006-05-19 12:48:56 +0000696 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000697 cur_jif.busy - prev_jif.busy, cur_jif.total - prev_jif.total); */
Eric Andersen420b2082002-09-17 22:14:58 +0000698 s++;
Eric Andersen08a72202002-09-30 20:52:10 +0000699 }
Rob Landley997650b2006-04-24 23:13:46 +0000700 /* printf(" %d", hist_iterations); */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000701 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100702 fflush_all();
Eric Andersen44608e92002-10-22 12:21:15 +0000703}
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000704#undef UPSCALE
Denis Vlasenko74511962007-06-11 16:31:55 +0000705#undef SHOW_STAT
706#undef CALC_STAT
707#undef FMT
Eric Andersen44608e92002-10-22 12:21:15 +0000708
709static void clearmems(void)
710{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000711 clear_username_cache();
Eric Andersen08a72202002-09-30 20:52:10 +0000712 free(top);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000713 top = NULL;
Eric Andersen08a72202002-09-30 20:52:10 +0000714}
715
Denis Vlasenkofa076802006-11-05 00:38:51 +0000716#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000717
Eric Andersen08a72202002-09-30 20:52:10 +0000718static void reset_term(void)
719{
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100720 if (!OPT_BATCH_MODE)
721 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000722 if (ENABLE_FEATURE_CLEAN_UP) {
723 clearmems();
Denys Vlasenko00528822009-09-11 23:26:42 +0200724# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000725 free(prev_hist);
Denys Vlasenko00528822009-09-11 23:26:42 +0200726# endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000727 }
Eric Andersen08a72202002-09-30 20:52:10 +0000728}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000729
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100730static void sig_catcher(int sig)
Eric Andersen08a72202002-09-30 20:52:10 +0000731{
732 reset_term();
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100733 kill_myself_with_sig(sig);
Eric Andersen08a72202002-09-30 20:52:10 +0000734}
Marek Polacek3c99d592010-10-27 02:25:16 +0200735
Denis Vlasenkofa076802006-11-05 00:38:51 +0000736#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000737
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000738/*
739 * TOPMEM support
740 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000741
742typedef unsigned long mem_t;
743
744typedef struct topmem_status_t {
745 unsigned pid;
746 char comm[COMM_LEN];
747 /* vsz doesn't count /dev/xxx mappings except /dev/zero */
748 mem_t vsz ;
749 mem_t vszrw ;
750 mem_t rss ;
751 mem_t rss_sh ;
752 mem_t dirty ;
753 mem_t dirty_sh;
754 mem_t stack ;
755} topmem_status_t;
756
757enum { NUM_SORT_FIELD = 7 };
758
759#define topmem ((topmem_status_t*)top)
760
761#if ENABLE_FEATURE_TOPMEM
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000762
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000763static int topmem_sort(char *a, char *b)
764{
765 int n;
766 mem_t l, r;
767
768 n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
769 l = *(mem_t*)(a + n);
770 r = *(mem_t*)(b + n);
Denys Vlasenkoa95ce932010-07-13 12:13:04 +0200771 if (l == r) {
772 l = ((topmem_status_t*)a)->dirty;
773 r = ((topmem_status_t*)b)->dirty;
774 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000775 /* We want to avoid unsigned->signed and truncation errors */
776 /* l>r: -1, l=r: 0, l<r: 1 */
777 n = (l > r) ? -1 : (l != r);
778 return inverted ? -n : n;
779}
780
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000781/* display header info (meminfo / loadavg) */
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000782static void display_topmem_header(int scr_width, int *lines_rem_p)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000783{
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200784 enum {
785 TOTAL = 0, MFREE, BUF, CACHE,
786 SWAPTOTAL, SWAPFREE, DIRTY,
787 MWRITE, ANON, MAP, SLAB,
788 NUM_FIELDS
789 };
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200790 static const char match[NUM_FIELDS][12] = {
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200791 "\x09" "MemTotal:", // TOTAL
792 "\x08" "MemFree:", // MFREE
793 "\x08" "Buffers:", // BUF
794 "\x07" "Cached:", // CACHE
795 "\x0a" "SwapTotal:", // SWAPTOTAL
796 "\x09" "SwapFree:", // SWAPFREE
797 "\x06" "Dirty:", // DIRTY
798 "\x0a" "Writeback:", // MWRITE
799 "\x0a" "AnonPages:", // ANON
800 "\x07" "Mapped:", // MAP
801 "\x05" "Slab:", // SLAB
802 };
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200803 char meminfo_buf[4 * 1024];
804 const char *Z[NUM_FIELDS];
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000805 unsigned i;
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200806 int sz;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000807
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200808 for (i = 0; i < NUM_FIELDS; i++)
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200809 Z[i] = "?";
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000810
811 /* read memory info */
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200812 sz = open_read_close("meminfo", meminfo_buf, sizeof(meminfo_buf) - 1);
813 if (sz >= 0) {
814 char *p = meminfo_buf;
815 meminfo_buf[sz] = '\0';
816 /* Note that fields always appear in the match[] order */
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200817 for (i = 0; i < NUM_FIELDS; i++) {
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200818 char *found = strstr(p, match[i] + 1);
819 if (found) {
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200820 /* Cut "NNNN" out of " NNNN kb" */
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200821 char *s = skip_whitespace(found + match[i][0]);
822 p = skip_non_whitespace(s);
823 *p++ = '\0';
824 Z[i] = s;
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200825 }
826 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000827 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000828
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200829 snprintf(line_buf, LINE_BUF_SIZE,
Denys Vlasenko917693b2010-03-04 12:50:59 +0100830 "Mem total:%s anon:%s map:%s free:%s",
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200831 Z[TOTAL], Z[ANON], Z[MAP], Z[MFREE]);
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200832 printf(OPT_BATCH_MODE ? "%.*s\n" : "\033[H\033[J%.*s\n", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000833
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200834 snprintf(line_buf, LINE_BUF_SIZE,
Denys Vlasenko917693b2010-03-04 12:50:59 +0100835 " slab:%s buf:%s cache:%s dirty:%s write:%s",
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200836 Z[SLAB], Z[BUF], Z[CACHE], Z[DIRTY], Z[MWRITE]);
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200837 printf("%.*s\n", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000838
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200839 snprintf(line_buf, LINE_BUF_SIZE,
Denys Vlasenko917693b2010-03-04 12:50:59 +0100840 "Swap total:%s free:%s", // TODO: % used?
Maksym Kryzhanovskyy87496aa2010-06-06 08:24:39 +0200841 Z[SWAPTOTAL], Z[SWAPFREE]);
Denys Vlasenkod94332f2010-06-06 17:40:54 +0200842 printf("%.*s\n", scr_width, line_buf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000843
844 (*lines_rem_p) -= 3;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000845}
846
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000847static void ulltoa6_and_space(unsigned long long ul, char buf[6])
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000848{
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000849 /* see http://en.wikipedia.org/wiki/Tera */
maxwen27116ba2015-08-14 21:41:28 +0200850 smart_ulltoa5(ul, buf, " mgtpezy")[0] = ' ';
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000851}
852
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000853static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000854{
855#define HDR_STR " PID VSZ VSZRW RSS (SHR) DIRTY (SHR) STACK"
856#define MIN_WIDTH sizeof(HDR_STR)
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100857 const topmem_status_t *s = topmem + G_scroll_ofs;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000858
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000859 display_topmem_header(scr_width, &lines_rem);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000860 strcpy(line_buf, HDR_STR " COMMAND");
Denys Vlasenko24b71fd2011-05-18 12:11:19 +0200861 line_buf[11 + sort_field * 6] = "^_"[inverted];
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000862 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, line_buf);
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000863 lines_rem--;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000864
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100865 if (lines_rem > ntop - G_scroll_ofs)
866 lines_rem = ntop - G_scroll_ofs;
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000867 while (--lines_rem >= 0) {
868 /* PID VSZ VSZRW RSS (SHR) DIRTY (SHR) COMMAND */
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000869 ulltoa6_and_space(s->pid , &line_buf[0*6]);
870 ulltoa6_and_space(s->vsz , &line_buf[1*6]);
871 ulltoa6_and_space(s->vszrw , &line_buf[2*6]);
872 ulltoa6_and_space(s->rss , &line_buf[3*6]);
873 ulltoa6_and_space(s->rss_sh , &line_buf[4*6]);
874 ulltoa6_and_space(s->dirty , &line_buf[5*6]);
875 ulltoa6_and_space(s->dirty_sh, &line_buf[6*6]);
876 ulltoa6_and_space(s->stack , &line_buf[7*6]);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000877 line_buf[8*6] = '\0';
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000878 if (scr_width > (int)MIN_WIDTH) {
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000879 read_cmdline(&line_buf[8*6], scr_width - MIN_WIDTH, s->pid, s->comm);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000880 }
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000881 printf("\n""%.*s", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000882 s++;
883 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000884 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100885 fflush_all();
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000886#undef HDR_STR
887#undef MIN_WIDTH
888}
Denis Vlasenko35840ab2008-09-25 11:11:37 +0000889
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000890#else
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000891void display_topmem_process_list(int lines_rem, int scr_width);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000892int topmem_sort(char *a, char *b);
893#endif /* TOPMEM */
894
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000895/*
896 * end TOPMEM support
897 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000898
899enum {
900 TOP_MASK = 0
901 | PSSCAN_PID
902 | PSSCAN_PPID
903 | PSSCAN_VSZ
904 | PSSCAN_STIME
905 | PSSCAN_UTIME
906 | PSSCAN_STATE
907 | PSSCAN_COMM
Denis Vlasenko17e7f042008-09-25 10:48:06 +0000908 | PSSCAN_CPU
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000909 | PSSCAN_UIDGID,
910 TOPMEM_MASK = 0
911 | PSSCAN_PID
912 | PSSCAN_SMAPS
913 | PSSCAN_COMM,
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200914 EXIT_MASK = (unsigned)-1,
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000915};
916
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200917#if ENABLE_FEATURE_USE_TERMIOS
918static unsigned handle_input(unsigned scan_mask, unsigned interval)
919{
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200920 struct pollfd pfd[1];
921
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100922 if (option_mask32 & OPT_EOF) {
923 /* EOF on stdin ("top </dev/null") */
924 sleep(interval);
925 return scan_mask;
926 }
927
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200928 pfd[0].fd = 0;
929 pfd[0].events = POLLIN;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200930
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200931 while (1) {
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100932 int32_t c;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200933
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100934 c = read_key(STDIN_FILENO, G.kbd_input, interval * 1000);
935 if (c == -1 && errno != EAGAIN) {
936 /* error/EOF */
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200937 option_mask32 |= OPT_EOF;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100938 break;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200939 }
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100940 interval = 0;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200941
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200942 if (c == initial_settings.c_cc[VINTR])
943 return EXIT_MASK;
944 if (c == initial_settings.c_cc[VEOF])
945 return EXIT_MASK;
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100946
947 if (c == KEYCODE_UP) {
948 G_scroll_ofs--;
949 goto normalize_ofs;
950 }
951 if (c == KEYCODE_DOWN) {
952 G_scroll_ofs++;
953 goto normalize_ofs;
954 }
955 if (c == KEYCODE_HOME) {
956 G_scroll_ofs = 0;
957 break;
958 }
959 if (c == KEYCODE_END) {
960 G_scroll_ofs = ntop - G.lines / 2;
961 goto normalize_ofs;
962 }
963 if (c == KEYCODE_PAGEUP) {
964 G_scroll_ofs -= G.lines / 2;
965 goto normalize_ofs;
966 }
967 if (c == KEYCODE_PAGEDOWN) {
968 G_scroll_ofs += G.lines / 2;
969 normalize_ofs:
970 if (G_scroll_ofs >= ntop)
971 G_scroll_ofs = ntop - 1;
972 if (G_scroll_ofs < 0)
973 G_scroll_ofs = 0;
974 break;
975 }
976
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200977 c |= 0x20; /* lowercase */
978 if (c == 'q')
979 return EXIT_MASK;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200980
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200981 if (c == 'n') {
982 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
983 sort_function[0] = pid_sort;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200984 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200985 }
986 if (c == 'm') {
987 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
988 sort_function[0] = mem_sort;
989# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
990 sort_function[1] = pcpu_sort;
991 sort_function[2] = time_sort;
992# endif
Denys Vlasenko4d6059e2011-05-06 20:47:54 +0200993 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200994 }
995# if ENABLE_FEATURE_SHOW_THREADS
996 if (c == 'h'
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100997 IF_FEATURE_TOPMEM(&& scan_mask != TOPMEM_MASK)
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +0200998 ) {
999 scan_mask ^= PSSCAN_TASKS;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001000 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001001 }
1002# endif
1003# if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
1004 if (c == 'p') {
1005 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1006 sort_function[0] = pcpu_sort;
1007 sort_function[1] = mem_sort;
1008 sort_function[2] = time_sort;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001009 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001010 }
1011 if (c == 't') {
1012 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1013 sort_function[0] = time_sort;
1014 sort_function[1] = mem_sort;
1015 sort_function[2] = pcpu_sort;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001016 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001017 }
1018# if ENABLE_FEATURE_TOPMEM
1019 if (c == 's') {
1020 scan_mask = TOPMEM_MASK;
1021 free(prev_hist);
1022 prev_hist = NULL;
1023 prev_hist_count = 0;
1024 sort_field = (sort_field + 1) % NUM_SORT_FIELD;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001025 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001026 }
1027# endif
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001028 if (c == 'r') {
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001029 inverted ^= 1;
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001030 continue;
1031 }
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001032# if ENABLE_FEATURE_TOP_SMP_CPU
1033 /* procps-2.0.18 uses 'C', 3.2.7 uses '1' */
1034 if (c == 'c' || c == '1') {
1035 /* User wants to toggle per cpu <> aggregate */
1036 if (smp_cpu_info) {
1037 free(cpu_prev_jif);
1038 free(cpu_jif);
1039 cpu_jif = &cur_jif;
1040 cpu_prev_jif = &prev_jif;
1041 } else {
1042 /* Prepare for xrealloc() */
1043 cpu_jif = cpu_prev_jif = NULL;
1044 }
1045 num_cpus = 0;
1046 smp_cpu_info = !smp_cpu_info;
1047 get_jiffy_counts();
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001048 continue;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001049 }
1050# endif
1051# endif
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001052 break; /* unknown key -> force refresh */
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001053 }
1054
1055 return scan_mask;
1056}
1057#endif
1058
Denys Vlasenko06844462011-01-13 16:07:51 +01001059//usage:#if ENABLE_FEATURE_SHOW_THREADS || ENABLE_FEATURE_TOP_SMP_CPU
1060//usage:# define IF_SHOW_THREADS_OR_TOP_SMP(...) __VA_ARGS__
1061//usage:#else
1062//usage:# define IF_SHOW_THREADS_OR_TOP_SMP(...)
1063//usage:#endif
1064//usage:#define top_trivial_usage
1065//usage: "[-b] [-nCOUNT] [-dSECONDS]" IF_FEATURE_TOPMEM(" [-m]")
1066//usage:#define top_full_usage "\n\n"
1067//usage: "Provide a view of process activity in real time."
1068//usage: "\n""Read the status of all processes from /proc each SECONDS"
1069//usage: "\n""and display a screenful of them."
1070//usage: "\n""Keys:"
1071//usage: "\n"" N/M"
1072//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/P")
1073//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/T")
1074//usage: ": " IF_FEATURE_TOPMEM("show CPU usage, ") "sort by pid/mem"
1075//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/cpu")
1076//usage: IF_FEATURE_TOP_CPU_USAGE_PERCENTAGE("/time")
1077//usage: IF_FEATURE_TOPMEM(
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001078//usage: "\n"" S: show memory"
Denys Vlasenko06844462011-01-13 16:07:51 +01001079//usage: )
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001080//usage: "\n"" R: reverse sort"
Denys Vlasenko06844462011-01-13 16:07:51 +01001081//usage: IF_SHOW_THREADS_OR_TOP_SMP(
1082//usage: "\n"" "
1083//usage: IF_FEATURE_SHOW_THREADS("H: toggle threads")
1084//usage: IF_FEATURE_SHOW_THREADS(IF_FEATURE_TOP_SMP_CPU(", "))
1085//usage: IF_FEATURE_TOP_SMP_CPU("1: toggle SMP")
1086//usage: )
1087//usage: "\n"" Q,^C: exit"
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001088//usage: "\n"
1089//usage: "\n""Options:"
1090//usage: "\n"" -b Batch mode"
1091//usage: "\n"" -n N Exit after N iterations"
1092//usage: "\n"" -d N Delay between updates"
1093//usage: IF_FEATURE_TOPMEM(
1094//usage: "\n"" -m Same as 's' key"
1095//usage: )
1096
1097/* Interactive testing:
1098 * echo sss | ./busybox top
1099 * - shows memory screen
1100 * echo sss | ./busybox top -bn1 >mem
Denys Vlasenko4d6059e2011-05-06 20:47:54 +02001101 * - saves memory screen - the *whole* list, not first NROWS processes!
1102 * echo .m.s.s.s.s.s.s.q | ./busybox top -b >z
1103 * - saves several different screens, and exits
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001104 *
1105 * TODO: -i STRING param as a better alternative?
1106 */
Denys Vlasenko06844462011-01-13 16:07:51 +01001107
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001108int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001109int top_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen420b2082002-09-17 22:14:58 +00001110{
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +00001111 int iterations;
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001112 unsigned col;
Denis Vlasenko55995022008-05-18 22:28:26 +00001113 unsigned interval;
Denis Vlasenkoc8842212008-09-25 11:42:10 +00001114 char *str_interval, *str_iterations;
Denys Vlasenkod75295c2009-09-21 23:58:43 +02001115 unsigned scan_mask = TOP_MASK;
Denis Vlasenkofa076802006-11-05 00:38:51 +00001116#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +00001117 struct termios new_settings;
Denys Vlasenko00528822009-09-11 23:26:42 +02001118#endif
Eric Andersen08a72202002-09-30 20:52:10 +00001119
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +00001120 INIT_G();
1121
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001122 interval = 5; /* default update interval is 5 seconds */
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +00001123 iterations = 0; /* infinite */
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001124#if ENABLE_FEATURE_TOP_SMP_CPU
1125 /*num_cpus = 0;*/
1126 /*smp_cpu_info = 0;*/ /* to start with show aggregate */
Denis Vlasenko35840ab2008-09-25 11:11:37 +00001127 cpu_jif = &cur_jif;
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001128 cpu_prev_jif = &prev_jif;
1129#endif
Denis Vlasenko85818632007-04-19 14:47:11 +00001130
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001131 /* all args are options; -n NUM */
Denys Vlasenko00528822009-09-11 23:26:42 +02001132 opt_complementary = "-"; /* options can be specified w/o dash */
1133 col = getopt32(argv, "d:n:b"IF_FEATURE_TOPMEM("m"), &str_interval, &str_iterations);
1134#if ENABLE_FEATURE_TOPMEM
1135 if (col & OPT_m) /* -m (busybox specific) */
1136 scan_mask = TOPMEM_MASK;
1137#endif
Denis Vlasenkoc8842212008-09-25 11:42:10 +00001138 if (col & OPT_d) {
Denys Vlasenko00528822009-09-11 23:26:42 +02001139 /* work around for "-d 1" -> "-d -1" done by getopt32
1140 * (opt_complementary == "-" does this) */
Denis Vlasenkoc8842212008-09-25 11:42:10 +00001141 if (str_interval[0] == '-')
1142 str_interval++;
Denis Vlasenkob308d812007-08-28 19:35:34 +00001143 /* Need to limit it to not overflow poll timeout */
Denis Vlasenkoc8842212008-09-25 11:42:10 +00001144 interval = xatou16(str_interval);
1145 }
1146 if (col & OPT_n) {
1147 if (str_iterations[0] == '-')
1148 str_iterations++;
1149 iterations = xatou(str_iterations);
Denis Vlasenkob308d812007-08-28 19:35:34 +00001150 }
Eric Andersen420b2082002-09-17 22:14:58 +00001151
Eric Andersen44608e92002-10-22 12:21:15 +00001152 /* change to /proc */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001153 xchdir("/proc");
Mike Frysinger223b8872005-07-30 09:42:05 +00001154
Denis Vlasenkofa076802006-11-05 00:38:51 +00001155#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +00001156 sort_function[0] = pcpu_sort;
1157 sort_function[1] = mem_sort;
1158 sort_function[2] = time_sort;
1159#else
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001160 sort_function[0] = mem_sort;
Denys Vlasenko00528822009-09-11 23:26:42 +02001161#endif
Mike Frysinger223b8872005-07-30 09:42:05 +00001162
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001163 if (OPT_BATCH_MODE) {
1164 option_mask32 |= OPT_EOF;
1165 }
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001166#if ENABLE_FEATURE_USE_TERMIOS
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001167 else {
1168 tcgetattr(0, (void *) &initial_settings);
1169 memcpy(&new_settings, &initial_settings, sizeof(new_settings));
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001170 /* unbuffered input, turn off echo */
1171 new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
1172 tcsetattr_stdin_TCSANOW(&new_settings);
1173 }
1174
1175 bb_signals(BB_FATAL_SIGS, sig_catcher);
1176
1177 /* Eat initial input, if any */
1178 scan_mask = handle_input(scan_mask, 0);
1179#endif
1180
1181 while (scan_mask != EXIT_MASK) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +00001182 procps_status_t *p = NULL;
Eric Andersen44608e92002-10-22 12:21:15 +00001183
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001184 if (OPT_BATCH_MODE) {
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001185 G.lines = INT_MAX;
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001186 col = LINE_BUF_SIZE - 2; /* +2 bytes for '\n', NUL */
1187 } else {
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001188 G.lines = 24; /* default */
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001189 col = 79;
Denis Vlasenkofa076802006-11-05 00:38:51 +00001190#if ENABLE_FEATURE_USE_TERMIOS
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001191 /* We output to stdout, we need size of stdout (not stdin)! */
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001192 get_terminal_width_height(STDOUT_FILENO, &col, &G.lines);
1193 if (G.lines < 5 || col < 10) {
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001194 sleep(interval);
1195 continue;
1196 }
Denys Vlasenko00528822009-09-11 23:26:42 +02001197#endif
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001198 if (col > LINE_BUF_SIZE - 2)
1199 col = LINE_BUF_SIZE - 2;
1200 }
Rob Landley997650b2006-04-24 23:13:46 +00001201
1202 /* read process IDs & status for all the processes */
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001203 ntop = 0;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001204 while ((p = procps_scan(p, scan_mask)) != NULL) {
1205 int n;
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001206#if ENABLE_FEATURE_TOPMEM
1207 if (scan_mask != TOPMEM_MASK)
1208#endif
1209 {
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001210 n = ntop;
Denis Vlasenko27842282008-08-04 13:20:36 +00001211 top = xrealloc_vector(top, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001212 top[n].pid = p->pid;
1213 top[n].ppid = p->ppid;
1214 top[n].vsz = p->vsz;
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001215#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001216 top[n].ticks = p->stime + p->utime;
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001217#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001218 top[n].uid = p->uid;
1219 strcpy(top[n].state, p->state);
1220 strcpy(top[n].comm, p->comm);
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001221#if ENABLE_FEATURE_TOP_SMP_PROCESS
1222 top[n].last_seen_on_cpu = p->last_seen_on_cpu;
1223#endif
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001224 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001225#if ENABLE_FEATURE_TOPMEM
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001226 else { /* TOPMEM */
Alexander Shishkin0834a6d2010-08-28 23:20:34 +02001227 if (!(p->smaps.mapped_ro | p->smaps.mapped_rw))
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001228 continue; /* kernel threads are ignored */
1229 n = ntop;
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001230 /* No bug here - top and topmem are the same */
Denis Vlasenko27842282008-08-04 13:20:36 +00001231 top = xrealloc_vector(topmem, 6, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001232 strcpy(topmem[n].comm, p->comm);
1233 topmem[n].pid = p->pid;
Alexander Shishkin0834a6d2010-08-28 23:20:34 +02001234 topmem[n].vsz = p->smaps.mapped_rw + p->smaps.mapped_ro;
1235 topmem[n].vszrw = p->smaps.mapped_rw;
1236 topmem[n].rss_sh = p->smaps.shared_clean + p->smaps.shared_dirty;
1237 topmem[n].rss = p->smaps.private_clean + p->smaps.private_dirty + topmem[n].rss_sh;
1238 topmem[n].dirty = p->smaps.private_dirty + p->smaps.shared_dirty;
1239 topmem[n].dirty_sh = p->smaps.shared_dirty;
1240 topmem[n].stack = p->smaps.stack;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001241 }
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001242#endif
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001243 } /* end of "while we read /proc" */
Eric Andersen44608e92002-10-22 12:21:15 +00001244 if (ntop == 0) {
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001245 bb_error_msg("no process info in /proc");
1246 break;
Rob Landleyb2804552006-02-13 22:04:27 +00001247 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001248
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001249 if (scan_mask != TOPMEM_MASK) {
Denis Vlasenkofa076802006-11-05 00:38:51 +00001250#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001251 if (!prev_hist_count) {
1252 do_stats();
1253 usleep(100000);
1254 clearmems();
1255 continue;
1256 }
Eric Andersen08a72202002-09-30 20:52:10 +00001257 do_stats();
Denis Vlasenko17e7f042008-09-25 10:48:06 +00001258 /* TODO: we don't need to sort all 10000 processes, we need to find top 24! */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001259 qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
Eric Andersen08a72202002-09-30 20:52:10 +00001260#else
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001261 qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
Denys Vlasenko00528822009-09-11 23:26:42 +02001262#endif
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001263 }
1264#if ENABLE_FEATURE_TOPMEM
1265 else { /* TOPMEM */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001266 qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
1267 }
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001268#endif
Denys Vlasenkob410d4a2009-09-19 22:29:42 +02001269 if (scan_mask != TOPMEM_MASK)
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001270 display_process_list(G.lines, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001271#if ENABLE_FEATURE_TOPMEM
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +00001272 else
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001273 display_topmem_process_list(G.lines, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +00001274#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +00001275 clearmems();
1276 if (iterations >= 0 && !--iterations)
1277 break;
1278#if !ENABLE_FEATURE_USE_TERMIOS
1279 sleep(interval);
1280#else
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001281 scan_mask = handle_input(scan_mask, interval);
Denis Vlasenkofa076802006-11-05 00:38:51 +00001282#endif /* FEATURE_USE_TERMIOS */
Denys Vlasenko7d9a1d22011-05-06 20:34:04 +02001283 } /* end of "while (not Q)" */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001284
Denis Vlasenko4daad902007-09-27 10:20:47 +00001285 bb_putchar('\n');
Paul Fox275b9292008-03-20 16:05:02 +00001286#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +00001287 reset_term();
Paul Fox275b9292008-03-20 16:05:02 +00001288#endif
Eric Andersen420b2082002-09-17 22:14:58 +00001289 return EXIT_SUCCESS;
1290}