blob: 1a6b8abb27b53b41ef5422c34c9f5f887148e529 [file] [log] [blame]
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +00001/* vi: set sw=4 ts=4: */
Eric Andersen420b2082002-09-17 22:14:58 +00002/*
3 * A tiny 'top' utility.
4 *
Eric Andersen08a72202002-09-30 20:52:10 +00005 * This is written specifically for the linux /proc/<PID>/stat(m)
6 * files format.
7
8 * This reads the PIDs of all processes and their status and shows
9 * the status of processes (first ones that fit to screen) at given
10 * intervals.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000011 *
Eric Andersen420b2082002-09-17 22:14:58 +000012 * NOTES:
13 * - At startup this changes to /proc, all the reads are then
14 * relative to that.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 *
Eric Andersen420b2082002-09-17 22:14:58 +000016 * (C) Eero Tamminen <oak at welho dot com>
Eric Andersen08a72202002-09-30 20:52:10 +000017 *
Eric Andersenaff114c2004-04-14 17:51:38 +000018 * Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru>
Eric Andersen420b2082002-09-17 22:14:58 +000019 */
Eric Andersen08a72202002-09-30 20:52:10 +000020
21/* Original code Copyrights */
22/*
23 * Copyright (c) 1992 Branko Lankester
24 * Copyright (c) 1992 Roger Binns
25 * Copyright (C) 1994-1996 Charles L. Blake.
26 * Copyright (C) 1992-1998 Michael K. Johnson
27 * May be distributed under the conditions of the
28 * GNU Library General Public License
29 */
30
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000031#include "libbb.h"
Eric Andersen420b2082002-09-17 22:14:58 +000032
Eric Andersen08a72202002-09-30 20:52:10 +000033
Denis Vlasenko85818632007-04-19 14:47:11 +000034typedef struct top_status_t {
Mike Frysinger0aa6ba52007-02-08 08:21:58 +000035 unsigned long vsz;
Denis Vlasenko459e4d62006-11-05 00:43:51 +000036#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
37 unsigned long ticks;
38 unsigned pcpu; /* delta of ticks */
39#endif
40 unsigned pid, ppid;
41 unsigned uid;
42 char state[4];
Denis Vlasenko98ebab82007-06-30 14:47:41 +000043 char comm[COMM_LEN];
Denis Vlasenko459e4d62006-11-05 00:43:51 +000044} top_status_t;
Denis Vlasenko85818632007-04-19 14:47:11 +000045
Denis Vlasenko98ebab82007-06-30 14:47:41 +000046typedef struct jiffy_counts_t {
Denis Vlasenko85818632007-04-19 14:47:11 +000047 unsigned long long usr,nic,sys,idle,iowait,irq,softirq,steal;
48 unsigned long long total;
49 unsigned long long busy;
50} jiffy_counts_t;
51
Denis Vlasenko459e4d62006-11-05 00:43:51 +000052/* This structure stores some critical information from one frame to
53 the next. Used for finding deltas. */
Denis Vlasenko85818632007-04-19 14:47:11 +000054typedef struct save_hist {
Denis Vlasenko459e4d62006-11-05 00:43:51 +000055 unsigned long ticks;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +000056 pid_t pid;
Denis Vlasenko85818632007-04-19 14:47:11 +000057} save_hist;
58
59typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
60
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000061
Denis Vlasenko85818632007-04-19 14:47:11 +000062enum { SORT_DEPTH = 3 };
63
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000064
Denis Vlasenko85818632007-04-19 14:47:11 +000065struct globals {
66 top_status_t *top;
67 int ntop;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000068#if ENABLE_FEATURE_TOPMEM
69 smallint sort_field;
70 smallint inverted;
71#endif
Denis Vlasenko85818632007-04-19 14:47:11 +000072#if ENABLE_FEATURE_USE_TERMIOS
73 struct termios initial_settings;
74#endif
75#if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +000076 cmp_funcp sort_function[1];
Denis Vlasenko85818632007-04-19 14:47:11 +000077#else
78 cmp_funcp sort_function[SORT_DEPTH];
79 struct save_hist *prev_hist;
80 int prev_hist_count;
81 jiffy_counts_t jif, prev_jif;
82 /* int hist_iterations; */
83 unsigned total_pcpu;
84 /* unsigned long total_vsz; */
85#endif
Denis Vlasenko55761362007-10-16 22:53:05 +000086 char line_buf[80];
Denis Vlasenko459e4d62006-11-05 00:43:51 +000087};
Denis Vlasenko55761362007-10-16 22:53:05 +000088
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +000089enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
Denis Vlasenko55761362007-10-16 22:53:05 +000090
Denis Vlasenko85818632007-04-19 14:47:11 +000091#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +000092#define INIT_G() do { \
93 struct G_sizecheck { \
94 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
95 }; \
96} while (0)
Denis Vlasenko85818632007-04-19 14:47:11 +000097#define top (G.top )
98#define ntop (G.ntop )
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +000099#define sort_field (G.sort_field )
100#define inverted (G.inverted )
101#define initial_settings (G.initial_settings )
Denis Vlasenko85818632007-04-19 14:47:11 +0000102#define sort_function (G.sort_function )
Denis Vlasenko85818632007-04-19 14:47:11 +0000103#define prev_hist (G.prev_hist )
104#define prev_hist_count (G.prev_hist_count )
105#define jif (G.jif )
106#define prev_jif (G.prev_jif )
107#define total_pcpu (G.total_pcpu )
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000108#define line_buf (G.line_buf )
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000109
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000110enum {
111 OPT_d = (1 << 0),
112 OPT_n = (1 << 1),
113 OPT_b = (1 << 2),
114 OPT_EOF = (1 << 3), /* pseudo: "we saw EOF in stdin" */
115};
116#define OPT_BATCH_MODE (option_mask32 & OPT_b)
Eric Andersen08a72202002-09-30 20:52:10 +0000117
Denis Vlasenko85818632007-04-19 14:47:11 +0000118
Denis Vlasenkofa076802006-11-05 00:38:51 +0000119#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000120static int pid_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000121{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000122 /* Buggy wrt pids with high bit set */
123 /* (linux pids are in [1..2^15-1]) */
Rob Landleyb2804552006-02-13 22:04:27 +0000124 return (Q->pid - P->pid);
Eric Andersen08a72202002-09-30 20:52:10 +0000125}
Mike Frysinger223b8872005-07-30 09:42:05 +0000126#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000127
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000128static int mem_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000129{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000130 /* We want to avoid unsigned->signed and truncation errors */
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000131 if (Q->vsz < P->vsz) return -1;
132 return Q->vsz != P->vsz; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000133}
134
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000135
Denis Vlasenko85818632007-04-19 14:47:11 +0000136#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000137
138static int pcpu_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000139{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000140 /* Buggy wrt ticks with high bit set */
141 /* Affects only processes for which ticks overflow */
142 return (int)Q->pcpu - (int)P->pcpu;
Eric Andersen08a72202002-09-30 20:52:10 +0000143}
144
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000145static int time_sort(top_status_t *P, top_status_t *Q)
Eric Andersen08a72202002-09-30 20:52:10 +0000146{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000147 /* We want to avoid unsigned->signed and truncation errors */
148 if (Q->ticks < P->ticks) return -1;
149 return Q->ticks != P->ticks; /* 0 if ==, 1 if > */
Eric Andersen08a72202002-09-30 20:52:10 +0000150}
151
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000152static int mult_lvl_cmp(void* a, void* b)
153{
Rob Landleyb2804552006-02-13 22:04:27 +0000154 int i, cmp_val;
Eric Andersen08a72202002-09-30 20:52:10 +0000155
Denis Vlasenkofa076802006-11-05 00:38:51 +0000156 for (i = 0; i < SORT_DEPTH; i++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000157 cmp_val = (*sort_function[i])(a, b);
158 if (cmp_val != 0)
159 return cmp_val;
160 }
161 return 0;
Eric Andersen08a72202002-09-30 20:52:10 +0000162}
163
Eric Andersen08a72202002-09-30 20:52:10 +0000164
Rob Landley997650b2006-04-24 23:13:46 +0000165static void get_jiffy_counts(void)
Rob Landleyb2804552006-02-13 22:04:27 +0000166{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000167 FILE* fp = xfopen_for_read("stat");
Rob Landley997650b2006-04-24 23:13:46 +0000168 prev_jif = jif;
169 if (fscanf(fp, "cpu %lld %lld %lld %lld %lld %lld %lld %lld",
170 &jif.usr,&jif.nic,&jif.sys,&jif.idle,
171 &jif.iowait,&jif.irq,&jif.softirq,&jif.steal) < 4) {
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000172 bb_error_msg_and_die("can't read /proc/stat");
Rob Landleyb2804552006-02-13 22:04:27 +0000173 }
Rob Landley997650b2006-04-24 23:13:46 +0000174 fclose(fp);
175 jif.total = jif.usr + jif.nic + jif.sys + jif.idle
176 + jif.iowait + jif.irq + jif.softirq + jif.steal;
177 /* procps 2.x does not count iowait as busy time */
178 jif.busy = jif.total - jif.idle - jif.iowait;
Eric Andersen08a72202002-09-30 20:52:10 +0000179}
180
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000181
Eric Andersen08a72202002-09-30 20:52:10 +0000182static void do_stats(void)
183{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000184 top_status_t *cur;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000185 pid_t pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000186 int i, last_i, n;
Rob Landley997650b2006-04-24 23:13:46 +0000187 struct save_hist *new_hist;
Eric Andersen08a72202002-09-30 20:52:10 +0000188
Rob Landley997650b2006-04-24 23:13:46 +0000189 get_jiffy_counts();
190 total_pcpu = 0;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000191 /* total_vsz = 0; */
Rob Landley997650b2006-04-24 23:13:46 +0000192 new_hist = xmalloc(sizeof(struct save_hist)*ntop);
Rob Landleyb2804552006-02-13 22:04:27 +0000193 /*
194 * Make a pass through the data to get stats.
195 */
Rob Landley997650b2006-04-24 23:13:46 +0000196 /* hist_iterations = 0; */
197 i = 0;
198 for (n = 0; n < ntop; n++) {
Rob Landleyb2804552006-02-13 22:04:27 +0000199 cur = top + n;
200
201 /*
202 * Calculate time in cur process. Time is sum of user time
Rob Landley997650b2006-04-24 23:13:46 +0000203 * and system time
Rob Landleyb2804552006-02-13 22:04:27 +0000204 */
Rob Landleyb2804552006-02-13 22:04:27 +0000205 pid = cur->pid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000206 new_hist[n].ticks = cur->ticks;
Rob Landley997650b2006-04-24 23:13:46 +0000207 new_hist[n].pid = pid;
Rob Landleyb2804552006-02-13 22:04:27 +0000208
209 /* find matching entry from previous pass */
Rob Landley997650b2006-04-24 23:13:46 +0000210 cur->pcpu = 0;
211 /* do not start at index 0, continue at last used one
212 * (brought hist_iterations from ~14000 down to 172) */
213 last_i = i;
214 if (prev_hist_count) do {
215 if (prev_hist[i].pid == pid) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000216 cur->pcpu = cur->ticks - prev_hist[i].ticks;
217 total_pcpu += cur->pcpu;
Rob Landleyb2804552006-02-13 22:04:27 +0000218 break;
219 }
Rob Landley997650b2006-04-24 23:13:46 +0000220 i = (i+1) % prev_hist_count;
221 /* hist_iterations++; */
222 } while (i != last_i);
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000223 /* total_vsz += cur->vsz; */
Eric Andersen08a72202002-09-30 20:52:10 +0000224 }
225
226 /*
Rob Landleyb2804552006-02-13 22:04:27 +0000227 * Save cur frame's information.
Eric Andersen08a72202002-09-30 20:52:10 +0000228 */
Rob Landley997650b2006-04-24 23:13:46 +0000229 free(prev_hist);
230 prev_hist = new_hist;
231 prev_hist_count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000232}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000233#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Eric Andersen08a72202002-09-30 20:52:10 +0000234
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000235#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && ENABLE_FEATURE_TOP_DECIMALS
236/* formats 7 char string (8 with terminating NUL) */
237static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total)
238{
239 unsigned t;
240 if (value >= total) { /* 100% ? */
241 strcpy(pbuf, " 100% ");
242 return pbuf;
243 }
244 /* else generate " [N/space]N.N% " string */
245 value = 1000 * value / total;
246 t = value / 100;
247 value = value % 100;
248 pbuf[0] = ' ';
249 pbuf[1] = t ? t + '0' : ' ';
250 pbuf[2] = '0' + (value / 10);
251 pbuf[3] = '.';
252 pbuf[4] = '0' + (value % 10);
253 pbuf[5] = '%';
254 pbuf[6] = ' ';
255 pbuf[7] = '\0';
256 return pbuf;
257}
258#endif
259
Denis Vlasenko05241802007-08-29 18:34:26 +0000260static unsigned long display_header(int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000261{
262 FILE *fp;
263 char buf[80];
Rob Landley997650b2006-04-24 23:13:46 +0000264 char scrbuf[80];
Eric Andersen420b2082002-09-17 22:14:58 +0000265 unsigned long total, used, mfree, shared, buffers, cached;
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000266#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
Denis Vlasenko110967a2007-07-15 19:27:48 +0000267 unsigned total_diff;
Denis Vlasenko856be772007-08-17 08:29:48 +0000268#endif
Denis Vlasenko110967a2007-07-15 19:27:48 +0000269
Eric Andersen420b2082002-09-17 22:14:58 +0000270 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000271 fp = xfopen_for_read("meminfo");
Eric Andersen420b2082002-09-17 22:14:58 +0000272
Eric Andersen7857c032003-10-11 18:47:20 +0000273 /*
274 * Old kernels (such as 2.4.x) had a nice summary of memory info that
275 * we could parse, however this is gone entirely in 2.6. Try parsing
276 * the old way first, and if that fails, parse each field manually.
277 *
278 * First, we read in the first line. Old kernels will have bogus
279 * strings we don't care about, whereas new kernels will start right
280 * out with MemTotal:
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000281 * -- PFM.
Eric Andersen7857c032003-10-11 18:47:20 +0000282 */
283 if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
"Vladimir N. Oleynik"70678bc2005-11-29 12:32:33 +0000284 fgets(buf, sizeof(buf), fp); /* skip first line */
Eric Andersen7857c032003-10-11 18:47:20 +0000285
286 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
Denis Vlasenko5a654472007-06-10 17:11:59 +0000287 &total, &used, &mfree, &shared, &buffers, &cached);
288 /* convert to kilobytes */
289 used /= 1024;
290 mfree /= 1024;
291 shared /= 1024;
292 buffers /= 1024;
293 cached /= 1024;
294 total /= 1024;
Eric Andersen7857c032003-10-11 18:47:20 +0000295 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000296 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000297 * Revert to manual parsing, which incidentally already has the
298 * sizes in kilobytes. This should be safe for both 2.4 and
299 * 2.6.
300 */
Eric Andersen7857c032003-10-11 18:47:20 +0000301
302 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
303
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000304 /*
Eric Andersen7857c032003-10-11 18:47:20 +0000305 * MemShared: is no longer present in 2.6. Report this as 0,
306 * to maintain consistent behavior with normal procps.
307 */
308 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
309 shared = 0;
310
311 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
312 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
313
314 used = total - mfree;
Eric Andersen420b2082002-09-17 22:14:58 +0000315 }
316 fclose(fp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000317
Denis Vlasenko110967a2007-07-15 19:27:48 +0000318 /* output memory info */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000319 if (scr_width > (int)sizeof(scrbuf))
Rob Landley997650b2006-04-24 23:13:46 +0000320 scr_width = sizeof(scrbuf);
321 snprintf(scrbuf, scr_width,
Denis Vlasenkoc1166c32007-07-15 19:23:38 +0000322 "Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached",
Rob Landleyb2804552006-02-13 22:04:27 +0000323 used, mfree, shared, buffers, cached);
Denis Vlasenko110967a2007-07-15 19:27:48 +0000324 /* clear screen & go to top */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000325 printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf);
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000326
Denis Vlasenko856be772007-08-17 08:29:48 +0000327#if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
328 /*
329 * xxx% = (jif.xxx - prev_jif.xxx) / (jif.total - prev_jif.total) * 100%
330 */
331 /* using (unsigned) casts to make operations cheaper */
332 total_diff = ((unsigned)(jif.total - prev_jif.total) ? : 1);
Denis Vlasenko74511962007-06-11 16:31:55 +0000333#if ENABLE_FEATURE_TOP_DECIMALS
Denis Vlasenko110967a2007-07-15 19:27:48 +0000334/* Generated code is approx +0.3k */
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000335#define CALC_STAT(xxx) char xxx[8]
Denis Vlasenko6ee023c2007-08-23 10:52:52 +0000336#define SHOW_STAT(xxx) fmt_100percent_8(xxx, (unsigned)(jif.xxx - prev_jif.xxx), total_diff)
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000337#define FMT "%s"
Denis Vlasenko74511962007-06-11 16:31:55 +0000338#else
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000339#define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(jif.xxx - prev_jif.xxx) / total_diff
340#define SHOW_STAT(xxx) xxx
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000341#define FMT "%4u%% "
Denis Vlasenko74511962007-06-11 16:31:55 +0000342#endif
Denis Vlasenko856be772007-08-17 08:29:48 +0000343 { /* need block: CALC_STAT are declarations */
344 CALC_STAT(usr);
345 CALC_STAT(sys);
346 CALC_STAT(nic);
347 CALC_STAT(idle);
348 CALC_STAT(iowait);
349 CALC_STAT(irq);
350 CALC_STAT(softirq);
351 //CALC_STAT(steal);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000352
Denis Vlasenko856be772007-08-17 08:29:48 +0000353 snprintf(scrbuf, scr_width,
354 /* Barely fits in 79 chars when in "decimals" mode. */
355 "CPU:"FMT"usr"FMT"sys"FMT"nice"FMT"idle"FMT"io"FMT"irq"FMT"softirq",
356 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
357 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
358 //, SHOW_STAT(steal) - what is this 'steal' thing?
359 // I doubt anyone wants to know it
360 );
361 }
362 puts(scrbuf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000363#undef SHOW_STAT
364#undef CALC_STAT
Denis Vlasenkob1e5add2007-06-10 18:04:54 +0000365#undef FMT
Denis Vlasenko856be772007-08-17 08:29:48 +0000366#endif
Denis Vlasenko5a654472007-06-10 17:11:59 +0000367
Denis Vlasenko110967a2007-07-15 19:27:48 +0000368 /* read load average as a string */
369 buf[0] = '\0';
370 open_read_close("loadavg", buf, sizeof("N.NN N.NN N.NN")-1);
371 buf[sizeof("N.NN N.NN N.NN")-1] = '\0';
Denis Vlasenko25d80622006-10-27 09:34:22 +0000372 snprintf(scrbuf, scr_width, "Load average: %s", buf);
Denis Vlasenko5a654472007-06-10 17:11:59 +0000373 puts(scrbuf);
Rob Landley997650b2006-04-24 23:13:46 +0000374
Eric Andersen7857c032003-10-11 18:47:20 +0000375 return total;
Eric Andersen420b2082002-09-17 22:14:58 +0000376}
377
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000378static NOINLINE void display_process_list(int count, int scr_width)
Eric Andersen420b2082002-09-17 22:14:58 +0000379{
Rob Landley997650b2006-04-24 23:13:46 +0000380 enum {
Denis Vlasenko74511962007-06-11 16:31:55 +0000381 BITS_PER_INT = sizeof(int)*8
Rob Landley997650b2006-04-24 23:13:46 +0000382 };
383
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000384 top_status_t *s = top;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000385 char vsz_str_buf[8];
Denis Vlasenko05241802007-08-29 18:34:26 +0000386 unsigned long total_memory = display_header(scr_width); /* or use total_vsz? */
Denis Vlasenko74511962007-06-11 16:31:55 +0000387 /* xxx_shift and xxx_scale variables allow us to replace
388 * expensive divides with multiply and shift */
389 unsigned pmem_shift, pmem_scale, pmem_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000390#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko74511962007-06-11 16:31:55 +0000391 unsigned pcpu_shift, pcpu_scale, pcpu_half;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000392 unsigned busy_jifs;
Rob Landley997650b2006-04-24 23:13:46 +0000393
Eric Andersen420b2082002-09-17 22:14:58 +0000394 /* what info of the processes is shown */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000395 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
Denis Vlasenko74511962007-06-11 16:31:55 +0000396 " PID PPID USER STAT VSZ %MEM %CPU COMMAND");
Eric Andersen08a72202002-09-30 20:52:10 +0000397#else
Denis Vlasenko74511962007-06-11 16:31:55 +0000398
399 /* !CPU_USAGE_PERCENTAGE */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000400 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
Denis Vlasenko74511962007-06-11 16:31:55 +0000401 " PID PPID USER STAT VSZ %MEM COMMAND");
Rob Landley997650b2006-04-24 23:13:46 +0000402#endif
403
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000404#if ENABLE_FEATURE_TOP_DECIMALS
405#define UPSCALE 1000
406#define CALC_STAT(name, val) div_t name = div((val), 10)
407#define SHOW_STAT(name) name.quot, '0'+name.rem
408#define FMT "%3u.%c"
409#else
410#define UPSCALE 100
411#define CALC_STAT(name, val) unsigned name = (val)
412#define SHOW_STAT(name) name
413#define FMT "%4u%%"
414#endif
Rob Landley997650b2006-04-24 23:13:46 +0000415 /*
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000416 * MEM% = s->vsz/MemTotal
Rob Landley997650b2006-04-24 23:13:46 +0000417 */
Denis Vlasenko74511962007-06-11 16:31:55 +0000418 pmem_shift = BITS_PER_INT-11;
419 pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000420 /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
Rob Landley997650b2006-04-24 23:13:46 +0000421 while (pmem_scale >= 512) {
422 pmem_scale /= 4;
423 pmem_shift -= 2;
424 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000425 pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000426#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
427 busy_jifs = jif.busy - prev_jif.busy;
428 /* This happens if there were lots of short-lived processes
429 * between two top updates (e.g. compilation) */
430 if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
431
Rob Landley997650b2006-04-24 23:13:46 +0000432 /*
433 * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
434 * (pcpu is delta of sys+user time between samples)
435 */
436 /* (jif.xxx - prev_jif.xxx) and s->pcpu are
437 * in 0..~64000 range (HZ*update_interval).
438 * we assume that unsigned is at least 32-bit.
439 */
440 pcpu_shift = 6;
Denis Vlasenko74511962007-06-11 16:31:55 +0000441 pcpu_scale = (UPSCALE*64*(uint16_t)busy_jifs ? : 1);
442 while (pcpu_scale < (1U<<(BITS_PER_INT-2))) {
Rob Landley997650b2006-04-24 23:13:46 +0000443 pcpu_scale *= 4;
444 pcpu_shift += 2;
445 }
446 pcpu_scale /= ( (uint16_t)(jif.total-prev_jif.total)*total_pcpu ? : 1);
447 /* we want (s->pcpu * pcpu_scale) to never overflow */
448 while (pcpu_scale >= 1024) {
449 pcpu_scale /= 4;
450 pcpu_shift -= 2;
451 }
Denis Vlasenko74511962007-06-11 16:31:55 +0000452 pcpu_half = (1U << pcpu_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
Rob Landley997650b2006-04-24 23:13:46 +0000453 /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */
Eric Andersen08a72202002-09-30 20:52:10 +0000454#endif
Denis Vlasenko74511962007-06-11 16:31:55 +0000455
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000456 scr_width += 2; /* account for leading '\n' and trailing NUL */
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000457 /* Ok, all preliminary data is ready, go through the list */
Denis Vlasenko266bc172006-09-29 17:16:39 +0000458 while (count-- > 0) {
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000459 unsigned col;
Denis Vlasenko74511962007-06-11 16:31:55 +0000460 CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift);
461#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
462 CALC_STAT(pcpu, (s->pcpu*pcpu_scale + pcpu_half) >> pcpu_shift);
463#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000464
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000465 if (s->vsz >= 100000)
Denis Vlasenkob308d812007-08-28 19:35:34 +0000466 sprintf(vsz_str_buf, "%6ldm", s->vsz/1024);
Manuel Novoa III d4993302002-09-18 19:27:10 +0000467 else
Mike Frysinger0aa6ba52007-02-08 08:21:58 +0000468 sprintf(vsz_str_buf, "%7ld", s->vsz);
Denis Vlasenko74511962007-06-11 16:31:55 +0000469 // PID PPID USER STAT VSZ %MEM [%CPU] COMMAND
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000470 col = snprintf(line_buf, scr_width,
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000471 "\n" "%5u%6u %-8.8s %s%s" FMT
Denis Vlasenko74511962007-06-11 16:31:55 +0000472#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
473 FMT
474#endif
475 " ",
476 s->pid, s->ppid, get_cached_username(s->uid),
477 s->state, vsz_str_buf,
478 SHOW_STAT(pmem)
479#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
480 , SHOW_STAT(pcpu)
481#endif
482 );
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000483 if ((int)(col + 1) < scr_width)
Denis Vlasenko4d7605a2007-09-08 17:42:00 +0000484 read_cmdline(line_buf + col, scr_width - col - 1, s->pid, s->comm);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000485 fputs(line_buf, stdout);
Bernhard Reutner-Fischere2922e42006-05-19 12:48:56 +0000486 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
Rob Landley997650b2006-04-24 23:13:46 +0000487 jif.busy - prev_jif.busy, jif.total - prev_jif.total); */
Eric Andersen420b2082002-09-17 22:14:58 +0000488 s++;
Eric Andersen08a72202002-09-30 20:52:10 +0000489 }
Rob Landley997650b2006-04-24 23:13:46 +0000490 /* printf(" %d", hist_iterations); */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000491 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Rob Landley997650b2006-04-24 23:13:46 +0000492 fflush(stdout);
Eric Andersen44608e92002-10-22 12:21:15 +0000493}
Denis Vlasenko24c5fba2007-07-15 19:25:01 +0000494#undef UPSCALE
Denis Vlasenko74511962007-06-11 16:31:55 +0000495#undef SHOW_STAT
496#undef CALC_STAT
497#undef FMT
Eric Andersen44608e92002-10-22 12:21:15 +0000498
499static void clearmems(void)
500{
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000501 clear_username_cache();
Eric Andersen08a72202002-09-30 20:52:10 +0000502 free(top);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000503 top = NULL;
Eric Andersen08a72202002-09-30 20:52:10 +0000504 ntop = 0;
505}
506
Denis Vlasenkofa076802006-11-05 00:38:51 +0000507#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000508#include <termios.h>
Eric Andersen08a72202002-09-30 20:52:10 +0000509#include <signal.h>
510
Eric Andersen08a72202002-09-30 20:52:10 +0000511static void reset_term(void)
512{
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000513 tcsetattr(0, TCSANOW, &initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000514 if (ENABLE_FEATURE_CLEAN_UP) {
515 clearmems();
Denis Vlasenkofa076802006-11-05 00:38:51 +0000516#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000517 free(prev_hist);
Eric Andersen08a72202002-09-30 20:52:10 +0000518#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000519 }
Eric Andersen08a72202002-09-30 20:52:10 +0000520}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000521
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000522static void sig_catcher(int sig UNUSED_PARAM)
Eric Andersen08a72202002-09-30 20:52:10 +0000523{
524 reset_term();
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000525 exit(EXIT_FAILURE);
Eric Andersen08a72202002-09-30 20:52:10 +0000526}
Denis Vlasenkofa076802006-11-05 00:38:51 +0000527#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000528
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000529/*
530 * TOPMEM support
531 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000532
533typedef unsigned long mem_t;
534
535typedef struct topmem_status_t {
536 unsigned pid;
537 char comm[COMM_LEN];
538 /* vsz doesn't count /dev/xxx mappings except /dev/zero */
539 mem_t vsz ;
540 mem_t vszrw ;
541 mem_t rss ;
542 mem_t rss_sh ;
543 mem_t dirty ;
544 mem_t dirty_sh;
545 mem_t stack ;
546} topmem_status_t;
547
548enum { NUM_SORT_FIELD = 7 };
549
550#define topmem ((topmem_status_t*)top)
551
552#if ENABLE_FEATURE_TOPMEM
553static int topmem_sort(char *a, char *b)
554{
555 int n;
556 mem_t l, r;
557
558 n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
559 l = *(mem_t*)(a + n);
560 r = *(mem_t*)(b + n);
561// if (l == r) {
562// l = a->mapped_rw;
563// r = b->mapped_rw;
564// }
565 /* We want to avoid unsigned->signed and truncation errors */
566 /* l>r: -1, l=r: 0, l<r: 1 */
567 n = (l > r) ? -1 : (l != r);
568 return inverted ? -n : n;
569}
570
571/* Cut "NNNN " out of " NNNN kb" */
572static char *grab_number(char *str, const char *match, unsigned sz)
573{
574 if (strncmp(str, match, sz) == 0) {
575 str = skip_whitespace(str + sz);
576 (skip_non_whitespace(str))[1] = '\0';
577 return xstrdup(str);
578 }
579 return NULL;
580}
581
582/* display header info (meminfo / loadavg) */
583static void display_topmem_header(int scr_width)
584{
585 char linebuf[128];
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000586 unsigned i;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000587 FILE *fp;
588 union {
589 struct {
590 /* 1 */ char *total;
591 /* 2 */ char *mfree;
592 /* 3 */ char *buf;
593 /* 4 */ char *cache;
594 /* 5 */ char *swaptotal;
595 /* 6 */ char *swapfree;
596 /* 7 */ char *dirty;
597 /* 8 */ char *mwrite;
598 /* 9 */ char *anon;
599 /* 10 */ char *map;
600 /* 11 */ char *slab;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000601 } u;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000602 char *str[11];
603 } Z;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000604#define total Z.u.total
605#define mfree Z.u.mfree
606#define buf Z.u.buf
607#define cache Z.u.cache
608#define swaptotal Z.u.swaptotal
609#define swapfree Z.u.swapfree
610#define dirty Z.u.dirty
611#define mwrite Z.u.mwrite
612#define anon Z.u.anon
613#define map Z.u.map
614#define slab Z.u.slab
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000615#define str Z.str
616
617 memset(&Z, 0, sizeof(Z));
618
619 /* read memory info */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000620 fp = xfopen_for_read("meminfo");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000621 while (fgets(linebuf, sizeof(linebuf), fp)) {
622 char *p;
623
624#define SCAN(match, name) \
625 p = grab_number(linebuf, match, sizeof(match)-1); \
626 if (p) { name = p; continue; }
627
628 SCAN("MemTotal:", total);
629 SCAN("MemFree:", mfree);
630 SCAN("Buffers:", buf);
631 SCAN("Cached:", cache);
632 SCAN("SwapTotal:", swaptotal);
633 SCAN("SwapFree:", swapfree);
634 SCAN("Dirty:", dirty);
635 SCAN("Writeback:", mwrite);
636 SCAN("AnonPages:", anon);
637 SCAN("Mapped:", map);
638 SCAN("Slab:", slab);
639#undef SCAN
640 }
641 fclose(fp);
642
Denis Vlasenkofcfb5c02007-12-24 12:16:24 +0000643#define S(s) (s ? s : "0 ")
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000644 snprintf(linebuf, sizeof(linebuf),
645 "Mem %stotal %sanon %smap %sfree",
646 S(total), S(anon), S(map), S(mfree));
647 printf(OPT_BATCH_MODE ? "%.*s\n" : "\e[H\e[J%.*s\n", scr_width, linebuf);
648
649 snprintf(linebuf, sizeof(linebuf),
650 " %sslab %sbuf %scache %sdirty %swrite",
651 S(slab), S(buf), S(cache), S(dirty), S(mwrite));
652 printf("%.*s\n", scr_width, linebuf);
653
654 snprintf(linebuf, sizeof(linebuf),
655 "Swap %stotal %sfree", // TODO: % used?
656 S(swaptotal), S(swapfree));
657 printf("%.*s\n", scr_width, linebuf);
658#undef S
659
660 for (i = 0; i < ARRAY_SIZE(str); i++)
661 free(str[i]);
662#undef total
663#undef free
664#undef buf
665#undef cache
666#undef swaptotal
667#undef swapfree
668#undef dirty
669#undef write
670#undef anon
671#undef map
672#undef slab
673#undef str
674}
675
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000676static void ulltoa6_and_space(unsigned long long ul, char buf[6])
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000677{
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000678 /* see http://en.wikipedia.org/wiki/Tera */
679 smart_ulltoa5(ul, buf, " mgtpezy");
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000680 buf[5] = ' ';
681}
682
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000683static NOINLINE void display_topmem_process_list(int count, int scr_width)
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000684{
685#define HDR_STR " PID VSZ VSZRW RSS (SHR) DIRTY (SHR) STACK"
686#define MIN_WIDTH sizeof(HDR_STR)
687 const topmem_status_t *s = topmem;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000688
689 display_topmem_header(scr_width);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000690 strcpy(line_buf, HDR_STR " COMMAND");
691 line_buf[5 + sort_field * 6] = '*';
692 printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000693
694 while (--count >= 0) {
695 // PID VSZ VSZRW RSS (SHR) DIRTY (SHR) COMMAND
Denis Vlasenko56ea65c2008-01-06 03:26:53 +0000696 ulltoa6_and_space(s->pid , &line_buf[0*6]);
697 ulltoa6_and_space(s->vsz , &line_buf[1*6]);
698 ulltoa6_and_space(s->vszrw , &line_buf[2*6]);
699 ulltoa6_and_space(s->rss , &line_buf[3*6]);
700 ulltoa6_and_space(s->rss_sh , &line_buf[4*6]);
701 ulltoa6_and_space(s->dirty , &line_buf[5*6]);
702 ulltoa6_and_space(s->dirty_sh, &line_buf[6*6]);
703 ulltoa6_and_space(s->stack , &line_buf[7*6]);
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000704 line_buf[8*6] = '\0';
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000705 if (scr_width > (int)MIN_WIDTH) {
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000706 read_cmdline(&line_buf[8*6], scr_width - MIN_WIDTH, s->pid, s->comm);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000707 }
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000708 printf("\n""%.*s", scr_width, line_buf);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000709 s++;
710 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000711 bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000712 fflush(stdout);
713#undef HDR_STR
714#undef MIN_WIDTH
715}
716#else
717void display_topmem_process_list(int count, int scr_width);
718int topmem_sort(char *a, char *b);
719#endif /* TOPMEM */
720
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000721/*
722 * end TOPMEM support
723 */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000724
725enum {
726 TOP_MASK = 0
727 | PSSCAN_PID
728 | PSSCAN_PPID
729 | PSSCAN_VSZ
730 | PSSCAN_STIME
731 | PSSCAN_UTIME
732 | PSSCAN_STATE
733 | PSSCAN_COMM
734 | PSSCAN_UIDGID,
735 TOPMEM_MASK = 0
736 | PSSCAN_PID
737 | PSSCAN_SMAPS
738 | PSSCAN_COMM,
739};
740
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000741int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000742int top_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen420b2082002-09-17 22:14:58 +0000743{
Denis Vlasenko55995022008-05-18 22:28:26 +0000744 int count;
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000745 int iterations;
Denis Vlasenko55995022008-05-18 22:28:26 +0000746 unsigned lines, col;
747 unsigned interval;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000748 char *sinterval;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000749 SKIP_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000750#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000751 struct termios new_settings;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000752 struct pollfd pfd[1];
Eric Andersen08a72202002-09-30 20:52:10 +0000753 unsigned char c;
Denis Vlasenkob308d812007-08-28 19:35:34 +0000754
755 pfd[0].fd = 0;
756 pfd[0].events = POLLIN;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000757#endif /* FEATURE_USE_TERMIOS */
Eric Andersen08a72202002-09-30 20:52:10 +0000758
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000759 INIT_G();
760
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000761 interval = 5; /* default update interval is 5 seconds */
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000762 iterations = 0; /* infinite */
Denis Vlasenko85818632007-04-19 14:47:11 +0000763
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000764 /* all args are options; -n NUM */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000765 opt_complementary = "-:n+";
766 getopt32(argv, "d:n:b", &sinterval, &iterations);
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000767 if (option_mask32 & OPT_d) {
Denis Vlasenkob308d812007-08-28 19:35:34 +0000768 /* Need to limit it to not overflow poll timeout */
769 interval = xatou16(sinterval); // -d
770 }
Eric Andersen420b2082002-09-17 22:14:58 +0000771
Eric Andersen44608e92002-10-22 12:21:15 +0000772 /* change to /proc */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000773 xchdir("/proc");
Denis Vlasenkofa076802006-11-05 00:38:51 +0000774#if ENABLE_FEATURE_USE_TERMIOS
Eric Andersen08a72202002-09-30 20:52:10 +0000775 tcgetattr(0, (void *) &initial_settings);
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000776 memcpy(&new_settings, &initial_settings, sizeof(new_settings));
Denis Vlasenko42dfcd22006-09-09 12:55:02 +0000777 /* unbuffered input, turn off echo */
778 new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
Eric Andersen08a72202002-09-30 20:52:10 +0000779
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000780 bb_signals(BB_FATAL_SIGS, sig_catcher);
Eric Andersen08a72202002-09-30 20:52:10 +0000781 tcsetattr(0, TCSANOW, (void *) &new_settings);
Denis Vlasenkofa076802006-11-05 00:38:51 +0000782#endif /* FEATURE_USE_TERMIOS */
Mike Frysinger223b8872005-07-30 09:42:05 +0000783
Denis Vlasenkofa076802006-11-05 00:38:51 +0000784#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000785 sort_function[0] = pcpu_sort;
786 sort_function[1] = mem_sort;
787 sort_function[2] = time_sort;
788#else
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000789 sort_function[0] = mem_sort;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000790#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Mike Frysinger223b8872005-07-30 09:42:05 +0000791
Eric Andersen08a72202002-09-30 20:52:10 +0000792 while (1) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000793 procps_status_t *p = NULL;
Eric Andersen44608e92002-10-22 12:21:15 +0000794
Denis Vlasenkoe7c1ad12007-09-08 17:21:01 +0000795 lines = 24; /* default */
Rob Landley997650b2006-04-24 23:13:46 +0000796 col = 79;
Denis Vlasenkofa076802006-11-05 00:38:51 +0000797#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000798 /* We output to stdout, we need size of stdout (not stdin)! */
799 get_terminal_width_height(STDOUT_FILENO, &col, &lines);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000800 if (lines < 5 || col < 10) {
Rob Landley997650b2006-04-24 23:13:46 +0000801 sleep(interval);
802 continue;
803 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000804#endif /* FEATURE_USE_TERMIOS */
Denis Vlasenko4c1d88d2007-09-08 17:34:05 +0000805 if (col > LINE_BUF_SIZE-2) /* +2 bytes for '\n', NUL, */
806 col = LINE_BUF_SIZE-2;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000807 if (!ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && scan_mask == TOP_MASK)
808 lines -= 3;
809 else
810 lines -= 4;
Rob Landley997650b2006-04-24 23:13:46 +0000811
812 /* read process IDs & status for all the processes */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000813 while ((p = procps_scan(p, scan_mask)) != NULL) {
814 int n;
815 if (scan_mask == TOP_MASK) {
816 n = ntop;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000817 top = xrealloc_vector(top, 2, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000818 top[n].pid = p->pid;
819 top[n].ppid = p->ppid;
820 top[n].vsz = p->vsz;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000821#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000822 top[n].ticks = p->stime + p->utime;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000823#endif
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000824 top[n].uid = p->uid;
825 strcpy(top[n].state, p->state);
826 strcpy(top[n].comm, p->comm);
827 } else { /* TOPMEM */
828#if ENABLE_FEATURE_TOPMEM
829 if (!(p->mapped_ro | p->mapped_rw))
830 continue; /* kernel threads are ignored */
831 n = ntop;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000832 /* No bug here - top and topmem are the same */
833 top = xrealloc_vector(topmem, 2, ntop++);
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000834 strcpy(topmem[n].comm, p->comm);
835 topmem[n].pid = p->pid;
836 topmem[n].vsz = p->mapped_rw + p->mapped_ro;
837 topmem[n].vszrw = p->mapped_rw;
838 topmem[n].rss_sh = p->shared_clean + p->shared_dirty;
839 topmem[n].rss = p->private_clean + p->private_dirty + topmem[n].rss_sh;
840 topmem[n].dirty = p->private_dirty + p->shared_dirty;
841 topmem[n].dirty_sh = p->shared_dirty;
842 topmem[n].stack = p->stack;
843#endif
844 }
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000845 } /* end of "while we read /proc" */
Eric Andersen44608e92002-10-22 12:21:15 +0000846 if (ntop == 0) {
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000847 bb_error_msg("no process info in /proc");
848 break;
Rob Landleyb2804552006-02-13 22:04:27 +0000849 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000850
851 if (scan_mask == TOP_MASK) {
Denis Vlasenkofa076802006-11-05 00:38:51 +0000852#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000853 if (!prev_hist_count) {
854 do_stats();
855 usleep(100000);
856 clearmems();
857 continue;
858 }
Eric Andersen08a72202002-09-30 20:52:10 +0000859 do_stats();
Denis Vlasenkof7d07b12007-06-30 08:03:26 +0000860/* TODO: we don't need to sort all 10000 processes, we need to find top 24! */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000861 qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
Eric Andersen08a72202002-09-30 20:52:10 +0000862#else
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000863 qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
Denis Vlasenkofa076802006-11-05 00:38:51 +0000864#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +0000865 }
866#if ENABLE_FEATURE_TOPMEM
867 else { /* TOPMEM */
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000868 qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
869 }
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +0000870#endif
Denis Vlasenko266bc172006-09-29 17:16:39 +0000871 count = lines;
Denis Vlasenko25d80622006-10-27 09:34:22 +0000872 if (OPT_BATCH_MODE || count > ntop) {
Denis Vlasenko266bc172006-09-29 17:16:39 +0000873 count = ntop;
Eric Andersen08a72202002-09-30 20:52:10 +0000874 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000875 if (scan_mask == TOP_MASK)
876 display_process_list(count, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +0000877#if ENABLE_FEATURE_TOPMEM
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000878 else
879 display_topmem_process_list(count, col);
Denis Vlasenkoe96dcb42008-04-17 18:04:38 +0000880#endif
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000881 clearmems();
882 if (iterations >= 0 && !--iterations)
883 break;
884#if !ENABLE_FEATURE_USE_TERMIOS
885 sleep(interval);
886#else
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000887 if (option_mask32 & (OPT_b|OPT_EOF))
888 /* batch mode, or EOF on stdin ("top </dev/null") */
889 sleep(interval);
890 else if (safe_poll(pfd, 1, interval * 1000) > 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000891 if (safe_read(STDIN_FILENO, &c, 1) != 1) { /* error/EOF? */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000892 option_mask32 |= OPT_EOF;
893 continue;
894 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000895 if (c == initial_settings.c_cc[VINTR])
"Vladimir N. Oleynik"c218a292006-02-15 17:15:56 +0000896 break;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000897 c |= 0x20; /* lowercase */
898 if (c == 'q')
899 break;
900 if (c == 'n') {
901 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000902 sort_function[0] = pid_sort;
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000903 }
904 if (c == 'm') {
905 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +0000906 sort_function[0] = mem_sort;
Denis Vlasenko8bdba4d2007-08-29 18:18:08 +0000907#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen08a72202002-09-30 20:52:10 +0000908 sort_function[1] = pcpu_sort;
909 sort_function[2] = time_sort;
Eric Andersen08a72202002-09-30 20:52:10 +0000910#endif
911 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000912#if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000913 if (c == 'p') {
914 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +0000915 sort_function[0] = pcpu_sort;
916 sort_function[1] = mem_sort;
917 sort_function[2] = time_sort;
918 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000919 if (c == 't') {
920 USE_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
Eric Andersen08a72202002-09-30 20:52:10 +0000921 sort_function[0] = time_sort;
922 sort_function[1] = mem_sort;
923 sort_function[2] = pcpu_sort;
924 }
Denis Vlasenkoff6e8e22007-09-08 16:51:19 +0000925#if ENABLE_FEATURE_TOPMEM
926 if (c == 's') {
927 scan_mask = TOPMEM_MASK;
928 free(prev_hist);
929 prev_hist = NULL;
930 prev_hist_count = 0;
931 sort_field = (sort_field + 1) % NUM_SORT_FIELD;
932 }
933 if (c == 'r')
934 inverted ^= 1;
935#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000936#endif
Eric Andersen08a72202002-09-30 20:52:10 +0000937 }
Denis Vlasenkofa076802006-11-05 00:38:51 +0000938#endif /* FEATURE_USE_TERMIOS */
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000939 } /* end of "while (1)" */
940
Denis Vlasenko4daad902007-09-27 10:20:47 +0000941 bb_putchar('\n');
Paul Fox275b9292008-03-20 16:05:02 +0000942#if ENABLE_FEATURE_USE_TERMIOS
Denis Vlasenkocf7cf622008-03-19 19:38:46 +0000943 reset_term();
Paul Fox275b9292008-03-20 16:05:02 +0000944#endif
Eric Andersen420b2082002-09-17 22:14:58 +0000945 return EXIT_SUCCESS;
946}