ps,top: add an option to show threads. +260 bytes of code
[platform/upstream/busybox.git] / procps / top.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * A tiny 'top' utility.
4  *
5  * 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.
11  *
12  * NOTES:
13  * - At startup this changes to /proc, all the reads are then
14  *   relative to that.
15  *
16  * (C) Eero Tamminen <oak at welho dot com>
17  *
18  * Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru>
19  *
20  * Sept 2008: Vineet Gupta <vineet.gupta@arc.com>
21  * Added Support for reporting SMP Information
22  * - CPU where Process was last seen running
23  *   (to see effect of sched_setaffinity() etc)
24  * - CPU Time Split (idle/IO/wait etc) PER CPU
25  *
26  * 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
30  *
31  * Licensed under GPLv2, see file LICENSE in this tarball for details.
32  */
33
34 #include "libbb.h"
35
36
37 typedef struct top_status_t {
38         unsigned long vsz;
39 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
40         unsigned long ticks;
41         unsigned pcpu; /* delta of ticks */
42 #endif
43         unsigned pid, ppid;
44         unsigned uid;
45         char state[4];
46         char comm[COMM_LEN];
47 #if ENABLE_FEATURE_TOP_SMP_PROCESS
48         int last_seen_on_cpu;
49 #endif
50 } top_status_t;
51
52 typedef struct jiffy_counts_t {
53         /* Linux 2.4.x has only first four */
54         unsigned long long usr, nic, sys, idle;
55         unsigned long long iowait, irq, softirq, steal;
56         unsigned long long total;
57         unsigned long long busy;
58 } jiffy_counts_t;
59
60 /* This structure stores some critical information from one frame to
61    the next. Used for finding deltas. */
62 typedef struct save_hist {
63         unsigned long ticks;
64         pid_t pid;
65 } save_hist;
66
67 typedef int (*cmp_funcp)(top_status_t *P, top_status_t *Q);
68
69
70 enum { SORT_DEPTH = 3 };
71
72
73 struct globals {
74         top_status_t *top;
75         int ntop;
76 #if ENABLE_FEATURE_TOPMEM
77         smallint sort_field;
78         smallint inverted;
79 #endif
80 #if ENABLE_FEATURE_TOP_SMP_CPU
81         smallint smp_cpu_info; /* one/many cpu info lines? */
82 #endif
83 #if ENABLE_FEATURE_USE_TERMIOS
84         struct termios initial_settings;
85 #endif
86 #if !ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
87         cmp_funcp sort_function[1];
88 #else
89         cmp_funcp sort_function[SORT_DEPTH];
90         struct save_hist *prev_hist;
91         int prev_hist_count;
92         jiffy_counts_t cur_jif, prev_jif;
93         /* int hist_iterations; */
94         unsigned total_pcpu;
95         /* unsigned long total_vsz; */
96 #endif
97 #if ENABLE_FEATURE_TOP_SMP_CPU
98         /* Per CPU samples: current and last */
99         jiffy_counts_t *cpu_jif, *cpu_prev_jif;
100         int num_cpus;
101 #endif
102         char line_buf[80];
103 };
104
105 enum { LINE_BUF_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line_buf) };
106
107 #define G (*(struct globals*)&bb_common_bufsiz1)
108 #define INIT_G() do { \
109         struct G_sizecheck { \
110                 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
111         }; \
112 } while (0)
113 #define top              (G.top               )
114 #define ntop             (G.ntop              )
115 #define sort_field       (G.sort_field        )
116 #define inverted         (G.inverted          )
117 #define smp_cpu_info     (G.smp_cpu_info      )
118 #define initial_settings (G.initial_settings  )
119 #define sort_function    (G.sort_function     )
120 #define prev_hist        (G.prev_hist         )
121 #define prev_hist_count  (G.prev_hist_count   )
122 #define cur_jif          (G.cur_jif           )
123 #define prev_jif         (G.prev_jif          )
124 #define cpu_jif          (G.cpu_jif           )
125 #define cpu_prev_jif     (G.cpu_prev_jif      )
126 #define num_cpus         (G.num_cpus          )
127 #define total_pcpu       (G.total_pcpu        )
128 #define line_buf         (G.line_buf          )
129
130 enum {
131         OPT_d = (1 << 0),
132         OPT_n = (1 << 1),
133         OPT_b = (1 << 2),
134         OPT_m = (1 << 3),
135         OPT_EOF = (1 << 4), /* pseudo: "we saw EOF in stdin" */
136 };
137 #define OPT_BATCH_MODE (option_mask32 & OPT_b)
138
139
140 #if ENABLE_FEATURE_USE_TERMIOS
141 static int pid_sort(top_status_t *P, top_status_t *Q)
142 {
143         /* Buggy wrt pids with high bit set */
144         /* (linux pids are in [1..2^15-1]) */
145         return (Q->pid - P->pid);
146 }
147 #endif
148
149 static int mem_sort(top_status_t *P, top_status_t *Q)
150 {
151         /* We want to avoid unsigned->signed and truncation errors */
152         if (Q->vsz < P->vsz) return -1;
153         return Q->vsz != P->vsz; /* 0 if ==, 1 if > */
154 }
155
156
157 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
158
159 static int pcpu_sort(top_status_t *P, top_status_t *Q)
160 {
161         /* Buggy wrt ticks with high bit set */
162         /* Affects only processes for which ticks overflow */
163         return (int)Q->pcpu - (int)P->pcpu;
164 }
165
166 static int time_sort(top_status_t *P, top_status_t *Q)
167 {
168         /* We want to avoid unsigned->signed and truncation errors */
169         if (Q->ticks < P->ticks) return -1;
170         return Q->ticks != P->ticks; /* 0 if ==, 1 if > */
171 }
172
173 static int mult_lvl_cmp(void* a, void* b)
174 {
175         int i, cmp_val;
176
177         for (i = 0; i < SORT_DEPTH; i++) {
178                 cmp_val = (*sort_function[i])(a, b);
179                 if (cmp_val != 0)
180                         return cmp_val;
181         }
182         return 0;
183 }
184
185 static NOINLINE int read_cpu_jiffy(FILE *fp, jiffy_counts_t *p_jif)
186 {
187 #if !ENABLE_FEATURE_TOP_SMP_CPU
188         static const char fmt[] = "cpu %llu %llu %llu %llu %llu %llu %llu %llu";
189 #else
190         static const char fmt[] = "cp%*s %llu %llu %llu %llu %llu %llu %llu %llu";
191 #endif
192         int ret;
193
194         if (!fgets(line_buf, LINE_BUF_SIZE, fp) || line_buf[0] != 'c' /* not "cpu" */)
195                 return 0;
196         ret = sscanf(line_buf, fmt,
197                         &p_jif->usr, &p_jif->nic, &p_jif->sys, &p_jif->idle,
198                         &p_jif->iowait, &p_jif->irq, &p_jif->softirq,
199                         &p_jif->steal);
200         if (ret >= 4) {
201                 p_jif->total = p_jif->usr + p_jif->nic + p_jif->sys + p_jif->idle
202                         + p_jif->iowait + p_jif->irq + p_jif->softirq + p_jif->steal;
203                 /* procps 2.x does not count iowait as busy time */
204                 p_jif->busy = p_jif->total - p_jif->idle - p_jif->iowait;
205         }
206
207         return ret;
208 }
209
210 static void get_jiffy_counts(void)
211 {
212         FILE* fp = xfopen_for_read("stat");
213
214         /* We need to parse cumulative counts even if SMP CPU display is on,
215          * they are used to calculate per process CPU% */
216         prev_jif = cur_jif;
217         if (read_cpu_jiffy(fp, &cur_jif) < 4)
218                 bb_error_msg_and_die("can't read /proc/stat");
219
220 #if !ENABLE_FEATURE_TOP_SMP_CPU
221         fclose(fp);
222         return;
223 #else
224         if (!smp_cpu_info) {
225                 fclose(fp);
226                 return;
227         }
228
229         if (!num_cpus) {
230                 /* First time here. How many CPUs?
231                  * There will be at least 1 /proc/stat line with cpu%d
232                  */
233                 while (1) {
234                         cpu_jif = xrealloc_vector(cpu_jif, 1, num_cpus);
235                         if (read_cpu_jiffy(fp, &cpu_jif[num_cpus]) <= 4)
236                                 break;
237                         num_cpus++;
238                 }
239                 if (num_cpus == 0) /* /proc/stat with only "cpu ..." line?! */
240                         smp_cpu_info = 0;
241
242                 cpu_prev_jif = xzalloc(sizeof(cpu_prev_jif[0]) * num_cpus);
243
244                 /* Otherwise the first per cpu display shows all 100% idles */
245                 usleep(50000);
246         } else { /* Non first time invocation */
247                 jiffy_counts_t *tmp;
248                 int i;
249
250                 /* First switch the sample pointers: no need to copy */
251                 tmp = cpu_prev_jif;
252                 cpu_prev_jif = cpu_jif;
253                 cpu_jif = tmp;
254
255                 /* Get the new samples */
256                 for (i = 0; i < num_cpus; i++)
257                         read_cpu_jiffy(fp, &cpu_jif[i]);
258         }
259 #endif
260         fclose(fp);
261 }
262
263 static void do_stats(void)
264 {
265         top_status_t *cur;
266         pid_t pid;
267         int i, last_i, n;
268         struct save_hist *new_hist;
269
270         get_jiffy_counts();
271         total_pcpu = 0;
272         /* total_vsz = 0; */
273         new_hist = xmalloc(sizeof(new_hist[0]) * ntop);
274         /*
275          * Make a pass through the data to get stats.
276          */
277         /* hist_iterations = 0; */
278         i = 0;
279         for (n = 0; n < ntop; n++) {
280                 cur = top + n;
281
282                 /*
283                  * Calculate time in cur process.  Time is sum of user time
284                  * and system time
285                  */
286                 pid = cur->pid;
287                 new_hist[n].ticks = cur->ticks;
288                 new_hist[n].pid = pid;
289
290                 /* find matching entry from previous pass */
291                 cur->pcpu = 0;
292                 /* do not start at index 0, continue at last used one
293                  * (brought hist_iterations from ~14000 down to 172) */
294                 last_i = i;
295                 if (prev_hist_count) do {
296                         if (prev_hist[i].pid == pid) {
297                                 cur->pcpu = cur->ticks - prev_hist[i].ticks;
298                                 total_pcpu += cur->pcpu;
299                                 break;
300                         }
301                         i = (i+1) % prev_hist_count;
302                         /* hist_iterations++; */
303                 } while (i != last_i);
304                 /* total_vsz += cur->vsz; */
305         }
306
307         /*
308          * Save cur frame's information.
309          */
310         free(prev_hist);
311         prev_hist = new_hist;
312         prev_hist_count = ntop;
313 }
314
315 #endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
316
317 #if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS && ENABLE_FEATURE_TOP_DECIMALS
318 /* formats 7 char string (8 with terminating NUL) */
319 static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total)
320 {
321         unsigned t;
322         if (value >= total) { /* 100% ? */
323                 strcpy(pbuf, "  100% ");
324                 return pbuf;
325         }
326         /* else generate " [N/space]N.N% " string */
327         value = 1000 * value / total;
328         t = value / 100;
329         value = value % 100;
330         pbuf[0] = ' ';
331         pbuf[1] = t ? t + '0' : ' ';
332         pbuf[2] = '0' + (value / 10);
333         pbuf[3] = '.';
334         pbuf[4] = '0' + (value % 10);
335         pbuf[5] = '%';
336         pbuf[6] = ' ';
337         pbuf[7] = '\0';
338         return pbuf;
339 }
340 #endif
341
342 #if ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS
343 static void display_cpus(int scr_width, char *scrbuf, int *lines_rem_p)
344 {
345         /*
346          * xxx% = (cur_jif.xxx - prev_jif.xxx) / (cur_jif.total - prev_jif.total) * 100%
347          */
348         unsigned total_diff;
349         jiffy_counts_t *p_jif, *p_prev_jif;
350         int i;
351 # if ENABLE_FEATURE_TOP_SMP_CPU
352         int n_cpu_lines;
353 # endif
354
355         /* using (unsigned) casts to make operations cheaper */
356 # define  CALC_TOTAL_DIFF do { \
357         total_diff = (unsigned)(p_jif->total - p_prev_jif->total); \
358         if (total_diff == 0) total_diff = 1; \
359 } while (0)
360
361 # if ENABLE_FEATURE_TOP_DECIMALS
362 #  define CALC_STAT(xxx) char xxx[8]
363 #  define SHOW_STAT(xxx) fmt_100percent_8(xxx, (unsigned)(p_jif->xxx - p_prev_jif->xxx), total_diff)
364 #  define FMT "%s"
365 # else
366 #  define CALC_STAT(xxx) unsigned xxx = 100 * (unsigned)(p_jif->xxx - p_prev_jif->xxx) / total_diff
367 #  define SHOW_STAT(xxx) xxx
368 #  define FMT "%4u%% "
369 # endif
370
371 # if !ENABLE_FEATURE_TOP_SMP_CPU
372         {
373                 i = 1;
374                 p_jif = &cur_jif;
375                 p_prev_jif = &prev_jif;
376 # else
377         /* Loop thru CPU(s) */
378         n_cpu_lines = smp_cpu_info ? num_cpus : 1;
379         if (n_cpu_lines > *lines_rem_p)
380                 n_cpu_lines = *lines_rem_p;
381
382         for (i = 0; i < n_cpu_lines; i++) {
383                 p_jif = &cpu_jif[i];
384                 p_prev_jif = &cpu_prev_jif[i];
385 # endif
386                 CALC_TOTAL_DIFF;
387
388                 { /* Need a block: CALC_STAT are declarations */
389                         CALC_STAT(usr);
390                         CALC_STAT(sys);
391                         CALC_STAT(nic);
392                         CALC_STAT(idle);
393                         CALC_STAT(iowait);
394                         CALC_STAT(irq);
395                         CALC_STAT(softirq);
396                         /*CALC_STAT(steal);*/
397
398                         snprintf(scrbuf, scr_width,
399                                 /* Barely fits in 79 chars when in "decimals" mode. */
400 # if ENABLE_FEATURE_TOP_SMP_CPU
401                                 "CPU%s:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
402                                 (smp_cpu_info ? utoa(i) : ""),
403 # else
404                                 "CPU:"FMT"usr"FMT"sys"FMT"nic"FMT"idle"FMT"io"FMT"irq"FMT"sirq",
405 # endif
406                                 SHOW_STAT(usr), SHOW_STAT(sys), SHOW_STAT(nic), SHOW_STAT(idle),
407                                 SHOW_STAT(iowait), SHOW_STAT(irq), SHOW_STAT(softirq)
408                                 /*, SHOW_STAT(steal) - what is this 'steal' thing? */
409                                 /* I doubt anyone wants to know it */
410                         );
411                         puts(scrbuf);
412                 }
413         }
414 # undef SHOW_STAT
415 # undef CALC_STAT
416 # undef FMT
417         *lines_rem_p -= i;
418 }
419 #else  /* !ENABLE_FEATURE_TOP_CPU_GLOBAL_PERCENTS */
420 # define display_cpus(scr_width, scrbuf, lines_rem) ((void)0)
421 #endif
422
423 static unsigned long display_header(int scr_width, int *lines_rem_p)
424 {
425         FILE *fp;
426         char buf[80];
427         char scrbuf[80];
428         unsigned long total, used, mfree, shared, buffers, cached;
429
430         /* read memory info */
431         fp = xfopen_for_read("meminfo");
432
433         /*
434          * Old kernels (such as 2.4.x) had a nice summary of memory info that
435          * we could parse, however this is gone entirely in 2.6. Try parsing
436          * the old way first, and if that fails, parse each field manually.
437          *
438          * First, we read in the first line. Old kernels will have bogus
439          * strings we don't care about, whereas new kernels will start right
440          * out with MemTotal:
441          *                              -- PFM.
442          */
443         if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) {
444                 fgets(buf, sizeof(buf), fp);    /* skip first line */
445
446                 fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu",
447                         &total, &used, &mfree, &shared, &buffers, &cached);
448                 /* convert to kilobytes */
449                 used /= 1024;
450                 mfree /= 1024;
451                 shared /= 1024;
452                 buffers /= 1024;
453                 cached /= 1024;
454                 total /= 1024;
455         } else {
456                 /*
457                  * Revert to manual parsing, which incidentally already has the
458                  * sizes in kilobytes. This should be safe for both 2.4 and
459                  * 2.6.
460                  */
461                 fscanf(fp, "MemFree: %lu %s\n", &mfree, buf);
462
463                 /*
464                  * MemShared: is no longer present in 2.6. Report this as 0,
465                  * to maintain consistent behavior with normal procps.
466                  */
467                 if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2)
468                         shared = 0;
469
470                 fscanf(fp, "Buffers: %lu %s\n", &buffers, buf);
471                 fscanf(fp, "Cached: %lu %s\n", &cached, buf);
472
473                 used = total - mfree;
474         }
475         fclose(fp);
476
477         /* output memory info */
478         if (scr_width > (int)sizeof(scrbuf))
479                 scr_width = sizeof(scrbuf);
480         snprintf(scrbuf, scr_width,
481                 "Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached",
482                 used, mfree, shared, buffers, cached);
483         /* clear screen & go to top */
484         printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf);
485         (*lines_rem_p)--;
486
487         /* Display CPU time split as percentage of total time
488          * This displays either a cumulative line or one line per CPU
489          */
490         display_cpus(scr_width, scrbuf, lines_rem_p);
491
492         /* read load average as a string */
493         buf[0] = '\0';
494         open_read_close("loadavg", buf, sizeof(buf) - 1);
495         buf[sizeof(buf) - 1] = '\n';
496         *strchr(buf, '\n') = '\0';
497         snprintf(scrbuf, scr_width, "Load average: %s", buf);
498         puts(scrbuf);
499         (*lines_rem_p)--;
500
501         return total;
502 }
503
504 static NOINLINE void display_process_list(int lines_rem, int scr_width)
505 {
506         enum {
507                 BITS_PER_INT = sizeof(int) * 8
508         };
509
510         top_status_t *s;
511         char vsz_str_buf[8];
512         unsigned long total_memory = display_header(scr_width, &lines_rem); /* or use total_vsz? */
513         /* xxx_shift and xxx_scale variables allow us to replace
514          * expensive divides with multiply and shift */
515         unsigned pmem_shift, pmem_scale, pmem_half;
516         unsigned tmp_unsigned;
517 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
518         unsigned pcpu_shift, pcpu_scale, pcpu_half;
519         unsigned busy_jifs;
520 #endif
521
522         /* what info of the processes is shown */
523         printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width,
524                 "  PID  PPID USER     STAT   VSZ %MEM"
525 #if ENABLE_FEATURE_TOP_SMP_PROCESS
526                 " CPU"
527 #endif
528 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
529                 " %CPU"
530 #endif
531                 " COMMAND");
532         lines_rem--;
533
534 #if ENABLE_FEATURE_TOP_DECIMALS
535 # define UPSCALE 1000
536 # define CALC_STAT(name, val) div_t name = div((val), 10)
537 # define SHOW_STAT(name) name.quot, '0'+name.rem
538 # define FMT "%3u.%c"
539 #else
540 # define UPSCALE 100
541 # define CALC_STAT(name, val) unsigned name = (val)
542 # define SHOW_STAT(name) name
543 # define FMT "%4u%%"
544 #endif
545         /*
546          * MEM% = s->vsz/MemTotal
547          */
548         pmem_shift = BITS_PER_INT-11;
549         pmem_scale = UPSCALE*(1U<<(BITS_PER_INT-11)) / total_memory;
550         /* s->vsz is in kb. we want (s->vsz * pmem_scale) to never overflow */
551         while (pmem_scale >= 512) {
552                 pmem_scale /= 4;
553                 pmem_shift -= 2;
554         }
555         pmem_half = (1U << pmem_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
556 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
557         busy_jifs = cur_jif.busy - prev_jif.busy;
558         /* This happens if there were lots of short-lived processes
559          * between two top updates (e.g. compilation) */
560         if (total_pcpu < busy_jifs) total_pcpu = busy_jifs;
561
562         /*
563          * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks
564          * (pcpu is delta of sys+user time between samples)
565          */
566         /* (cur_jif.xxx - prev_jif.xxx) and s->pcpu are
567          * in 0..~64000 range (HZ*update_interval).
568          * we assume that unsigned is at least 32-bit.
569          */
570         pcpu_shift = 6;
571         pcpu_scale = UPSCALE*64 * (uint16_t)busy_jifs;
572         if (pcpu_scale == 0)
573                 pcpu_scale = 1;
574         while (pcpu_scale < (1U << (BITS_PER_INT-2))) {
575                 pcpu_scale *= 4;
576                 pcpu_shift += 2;
577         }
578         tmp_unsigned = (uint16_t)(cur_jif.total - prev_jif.total) * total_pcpu;
579         if (tmp_unsigned != 0)
580                 pcpu_scale /= tmp_unsigned;
581         /* we want (s->pcpu * pcpu_scale) to never overflow */
582         while (pcpu_scale >= 1024) {
583                 pcpu_scale /= 4;
584                 pcpu_shift -= 2;
585         }
586         pcpu_half = (1U << pcpu_shift) / (ENABLE_FEATURE_TOP_DECIMALS? 20 : 2);
587         /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */
588 #endif
589
590         /* Ok, all preliminary data is ready, go through the list */
591         scr_width += 2; /* account for leading '\n' and trailing NUL */
592         if (lines_rem > ntop)
593                 lines_rem = ntop;
594         s = top;
595         while (--lines_rem >= 0) {
596                 unsigned col;
597                 CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift);
598 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
599                 CALC_STAT(pcpu, (s->pcpu*pcpu_scale + pcpu_half) >> pcpu_shift);
600 #endif
601
602                 if (s->vsz >= 100000)
603                         sprintf(vsz_str_buf, "%6ldm", s->vsz/1024);
604                 else
605                         sprintf(vsz_str_buf, "%7ld", s->vsz);
606                 /* PID PPID USER STAT VSZ %MEM [%CPU] COMMAND */
607                 col = snprintf(line_buf, scr_width,
608                                 "\n" "%5u%6u %-8.8s %s%s" FMT
609 #if ENABLE_FEATURE_TOP_SMP_PROCESS
610                                 " %3d"
611 #endif
612 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
613                                 FMT
614 #endif
615                                 " ",
616                                 s->pid, s->ppid, get_cached_username(s->uid),
617                                 s->state, vsz_str_buf,
618                                 SHOW_STAT(pmem)
619 #if ENABLE_FEATURE_TOP_SMP_PROCESS
620                                 , s->last_seen_on_cpu
621 #endif
622 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
623                                 , SHOW_STAT(pcpu)
624 #endif
625                 );
626                 if ((int)(col + 1) < scr_width)
627                         read_cmdline(line_buf + col, scr_width - col, s->pid, s->comm);
628                 fputs(line_buf, stdout);
629                 /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu,
630                         cur_jif.busy - prev_jif.busy, cur_jif.total - prev_jif.total); */
631                 s++;
632         }
633         /* printf(" %d", hist_iterations); */
634         bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
635         fflush(stdout);
636 }
637 #undef UPSCALE
638 #undef SHOW_STAT
639 #undef CALC_STAT
640 #undef FMT
641
642 static void clearmems(void)
643 {
644         clear_username_cache();
645         free(top);
646         top = NULL;
647         ntop = 0;
648 }
649
650 #if ENABLE_FEATURE_USE_TERMIOS
651
652 static void reset_term(void)
653 {
654         tcsetattr_stdin_TCSANOW(&initial_settings);
655         if (ENABLE_FEATURE_CLEAN_UP) {
656                 clearmems();
657 # if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
658                 free(prev_hist);
659 # endif
660         }
661 }
662
663 static void sig_catcher(int sig UNUSED_PARAM)
664 {
665         reset_term();
666         exit(EXIT_FAILURE);
667 }
668 #endif /* FEATURE_USE_TERMIOS */
669
670 /*
671  * TOPMEM support
672  */
673
674 typedef unsigned long mem_t;
675
676 typedef struct topmem_status_t {
677         unsigned pid;
678         char comm[COMM_LEN];
679         /* vsz doesn't count /dev/xxx mappings except /dev/zero */
680         mem_t vsz     ;
681         mem_t vszrw   ;
682         mem_t rss     ;
683         mem_t rss_sh  ;
684         mem_t dirty   ;
685         mem_t dirty_sh;
686         mem_t stack   ;
687 } topmem_status_t;
688
689 enum { NUM_SORT_FIELD = 7 };
690
691 #define topmem ((topmem_status_t*)top)
692
693 #if ENABLE_FEATURE_TOPMEM
694
695 static int topmem_sort(char *a, char *b)
696 {
697         int n;
698         mem_t l, r;
699
700         n = offsetof(topmem_status_t, vsz) + (sort_field * sizeof(mem_t));
701         l = *(mem_t*)(a + n);
702         r = *(mem_t*)(b + n);
703 //      if (l == r) {
704 //              l = a->mapped_rw;
705 //              r = b->mapped_rw;
706 //      }
707         /* We want to avoid unsigned->signed and truncation errors */
708         /* l>r: -1, l=r: 0, l<r: 1 */
709         n = (l > r) ? -1 : (l != r);
710         return inverted ? -n : n;
711 }
712
713 /* Cut "NNNN " out of "    NNNN kb" */
714 static char *grab_number(char *str, const char *match, unsigned sz)
715 {
716         if (strncmp(str, match, sz) == 0) {
717                 str = skip_whitespace(str + sz);
718                 (skip_non_whitespace(str))[1] = '\0';
719                 return xstrdup(str);
720         }
721         return NULL;
722 }
723
724 /* display header info (meminfo / loadavg) */
725 static void display_topmem_header(int scr_width, int *lines_rem_p)
726 {
727         char linebuf[128];
728         unsigned i;
729         FILE *fp;
730         union {
731                 struct {
732                         /*  1 */ char *total;
733                         /*  2 */ char *mfree;
734                         /*  3 */ char *buf;
735                         /*  4 */ char *cache;
736                         /*  5 */ char *swaptotal;
737                         /*  6 */ char *swapfree;
738                         /*  7 */ char *dirty;
739                         /*  8 */ char *mwrite;
740                         /*  9 */ char *anon;
741                         /* 10 */ char *map;
742                         /* 11 */ char *slab;
743                 } u;
744                 char *str[11];
745         } Z;
746 #define total     Z.u.total
747 #define mfree     Z.u.mfree
748 #define buf       Z.u.buf
749 #define cache     Z.u.cache
750 #define swaptotal Z.u.swaptotal
751 #define swapfree  Z.u.swapfree
752 #define dirty     Z.u.dirty
753 #define mwrite    Z.u.mwrite
754 #define anon      Z.u.anon
755 #define map       Z.u.map
756 #define slab      Z.u.slab
757 #define str       Z.str
758
759         memset(&Z, 0, sizeof(Z));
760
761         /* read memory info */
762         fp = xfopen_for_read("meminfo");
763         while (fgets(linebuf, sizeof(linebuf), fp)) {
764                 char *p;
765
766 #define SCAN(match, name) \
767                 p = grab_number(linebuf, match, sizeof(match)-1); \
768                 if (p) { name = p; continue; }
769
770                 SCAN("MemTotal:", total);
771                 SCAN("MemFree:", mfree);
772                 SCAN("Buffers:", buf);
773                 SCAN("Cached:", cache);
774                 SCAN("SwapTotal:", swaptotal);
775                 SCAN("SwapFree:", swapfree);
776                 SCAN("Dirty:", dirty);
777                 SCAN("Writeback:", mwrite);
778                 SCAN("AnonPages:", anon);
779                 SCAN("Mapped:", map);
780                 SCAN("Slab:", slab);
781 #undef SCAN
782         }
783         fclose(fp);
784
785 #define S(s) (s ? s : "0 ")
786         snprintf(linebuf, sizeof(linebuf),
787                 "Mem %stotal %sanon %smap %sfree",
788                 S(total), S(anon), S(map), S(mfree));
789         printf(OPT_BATCH_MODE ? "%.*s\n" : "\e[H\e[J%.*s\n", scr_width, linebuf);
790
791         snprintf(linebuf, sizeof(linebuf),
792                 " %sslab %sbuf %scache %sdirty %swrite",
793                 S(slab), S(buf), S(cache), S(dirty), S(mwrite));
794         printf("%.*s\n", scr_width, linebuf);
795
796         snprintf(linebuf, sizeof(linebuf),
797                 "Swap %stotal %sfree", // TODO: % used?
798                 S(swaptotal), S(swapfree));
799         printf("%.*s\n", scr_width, linebuf);
800
801         (*lines_rem_p) -= 3;
802 #undef S
803
804         for (i = 0; i < ARRAY_SIZE(str); i++)
805                 free(str[i]);
806 #undef total
807 #undef free
808 #undef buf
809 #undef cache
810 #undef swaptotal
811 #undef swapfree
812 #undef dirty
813 #undef write
814 #undef anon
815 #undef map
816 #undef slab
817 #undef str
818 }
819
820 static void ulltoa6_and_space(unsigned long long ul, char buf[6])
821 {
822         /* see http://en.wikipedia.org/wiki/Tera */
823         smart_ulltoa5(ul, buf, " mgtpezy");
824         buf[5] = ' ';
825 }
826
827 static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width)
828 {
829 #define HDR_STR "  PID   VSZ VSZRW   RSS (SHR) DIRTY (SHR) STACK"
830 #define MIN_WIDTH sizeof(HDR_STR)
831         const topmem_status_t *s = topmem;
832
833         display_topmem_header(scr_width, &lines_rem);
834         strcpy(line_buf, HDR_STR " COMMAND");
835         line_buf[5 + sort_field * 6] = '*';
836         printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, line_buf);
837         lines_rem--;
838
839         if (lines_rem > ntop)
840                 lines_rem = ntop;
841         while (--lines_rem >= 0) {
842                 /* PID VSZ VSZRW RSS (SHR) DIRTY (SHR) COMMAND */
843                 ulltoa6_and_space(s->pid     , &line_buf[0*6]);
844                 ulltoa6_and_space(s->vsz     , &line_buf[1*6]);
845                 ulltoa6_and_space(s->vszrw   , &line_buf[2*6]);
846                 ulltoa6_and_space(s->rss     , &line_buf[3*6]);
847                 ulltoa6_and_space(s->rss_sh  , &line_buf[4*6]);
848                 ulltoa6_and_space(s->dirty   , &line_buf[5*6]);
849                 ulltoa6_and_space(s->dirty_sh, &line_buf[6*6]);
850                 ulltoa6_and_space(s->stack   , &line_buf[7*6]);
851                 line_buf[8*6] = '\0';
852                 if (scr_width > (int)MIN_WIDTH) {
853                         read_cmdline(&line_buf[8*6], scr_width - MIN_WIDTH, s->pid, s->comm);
854                 }
855                 printf("\n""%.*s", scr_width, line_buf);
856                 s++;
857         }
858         bb_putchar(OPT_BATCH_MODE ? '\n' : '\r');
859         fflush(stdout);
860 #undef HDR_STR
861 #undef MIN_WIDTH
862 }
863
864 #else
865 void display_topmem_process_list(int lines_rem, int scr_width);
866 int topmem_sort(char *a, char *b);
867 #endif /* TOPMEM */
868
869 /*
870  * end TOPMEM support
871  */
872
873 enum {
874         TOP_MASK = 0
875                 | PSSCAN_PID
876                 | PSSCAN_PPID
877                 | PSSCAN_VSZ
878                 | PSSCAN_STIME
879                 | PSSCAN_UTIME
880                 | PSSCAN_STATE
881                 | PSSCAN_COMM
882                 | PSSCAN_CPU
883                 | PSSCAN_UIDGID,
884         TOPMEM_MASK = 0
885                 | PSSCAN_PID
886                 | PSSCAN_SMAPS
887                 | PSSCAN_COMM,
888 };
889
890 int top_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
891 int top_main(int argc UNUSED_PARAM, char **argv)
892 {
893         int iterations;
894         unsigned lines, col;
895         int lines_rem;
896         unsigned interval;
897         char *str_interval, *str_iterations;
898         IF_NOT_FEATURE_TOPMEM(const) unsigned scan_mask = TOP_MASK;
899 #if ENABLE_FEATURE_USE_TERMIOS
900         struct termios new_settings;
901         struct pollfd pfd[1];
902         unsigned char c;
903
904         pfd[0].fd = 0;
905         pfd[0].events = POLLIN;
906 #endif
907
908         INIT_G();
909
910         interval = 5; /* default update interval is 5 seconds */
911         iterations = 0; /* infinite */
912 #if ENABLE_FEATURE_TOP_SMP_CPU
913         /*num_cpus = 0;*/
914         /*smp_cpu_info = 0;*/  /* to start with show aggregate */
915         cpu_jif = &cur_jif;
916         cpu_prev_jif = &prev_jif;
917 #endif
918
919         /* all args are options; -n NUM */
920         opt_complementary = "-"; /* options can be specified w/o dash */
921         col = getopt32(argv, "d:n:b"IF_FEATURE_TOPMEM("m"), &str_interval, &str_iterations);
922 #if ENABLE_FEATURE_TOPMEM
923         if (col & OPT_m) /* -m (busybox specific) */
924                 scan_mask = TOPMEM_MASK;
925 #endif
926         if (col & OPT_d) {
927                 /* work around for "-d 1" -> "-d -1" done by getopt32
928                  * (opt_complementary == "-" does this) */
929                 if (str_interval[0] == '-')
930                         str_interval++;
931                 /* Need to limit it to not overflow poll timeout */
932                 interval = xatou16(str_interval);
933         }
934         if (col & OPT_n) {
935                 if (str_iterations[0] == '-')
936                         str_iterations++;
937                 iterations = xatou(str_iterations);
938         }
939
940         /* change to /proc */
941         xchdir("/proc");
942 #if ENABLE_FEATURE_USE_TERMIOS
943         tcgetattr(0, (void *) &initial_settings);
944         memcpy(&new_settings, &initial_settings, sizeof(new_settings));
945         /* unbuffered input, turn off echo */
946         new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL);
947
948         bb_signals(BB_FATAL_SIGS, sig_catcher);
949         tcsetattr_stdin_TCSANOW(&new_settings);
950 #endif
951
952 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
953         sort_function[0] = pcpu_sort;
954         sort_function[1] = mem_sort;
955         sort_function[2] = time_sort;
956 #else
957         sort_function[0] = mem_sort;
958 #endif
959
960         while (1) {
961                 procps_status_t *p = NULL;
962
963                 lines = 24; /* default */
964                 col = 79;
965 #if ENABLE_FEATURE_USE_TERMIOS
966                 /* We output to stdout, we need size of stdout (not stdin)! */
967                 get_terminal_width_height(STDOUT_FILENO, &col, &lines);
968                 if (lines < 5 || col < 10) {
969                         sleep(interval);
970                         continue;
971                 }
972 #endif
973                 if (col > LINE_BUF_SIZE-2) /* +2 bytes for '\n', NUL, */
974                         col = LINE_BUF_SIZE-2;
975
976                 /* read process IDs & status for all the processes */
977                 while ((p = procps_scan(p, scan_mask)) != NULL) {
978                         int n;
979 #if ENABLE_FEATURE_TOPMEM
980                         if (scan_mask != TOPMEM_MASK)
981 #endif
982                         {
983                                 n = ntop;
984                                 top = xrealloc_vector(top, 6, ntop++);
985                                 top[n].pid = p->pid;
986                                 top[n].ppid = p->ppid;
987                                 top[n].vsz = p->vsz;
988 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
989                                 top[n].ticks = p->stime + p->utime;
990 #endif
991                                 top[n].uid = p->uid;
992                                 strcpy(top[n].state, p->state);
993                                 strcpy(top[n].comm, p->comm);
994 #if ENABLE_FEATURE_TOP_SMP_PROCESS
995                                 top[n].last_seen_on_cpu = p->last_seen_on_cpu;
996 #endif
997                         }
998 #if ENABLE_FEATURE_TOPMEM
999                         else { /* TOPMEM */
1000                                 if (!(p->mapped_ro | p->mapped_rw))
1001                                         continue; /* kernel threads are ignored */
1002                                 n = ntop;
1003                                 /* No bug here - top and topmem are the same */
1004                                 top = xrealloc_vector(topmem, 6, ntop++);
1005                                 strcpy(topmem[n].comm, p->comm);
1006                                 topmem[n].pid      = p->pid;
1007                                 topmem[n].vsz      = p->mapped_rw + p->mapped_ro;
1008                                 topmem[n].vszrw    = p->mapped_rw;
1009                                 topmem[n].rss_sh   = p->shared_clean + p->shared_dirty;
1010                                 topmem[n].rss      = p->private_clean + p->private_dirty + topmem[n].rss_sh;
1011                                 topmem[n].dirty    = p->private_dirty + p->shared_dirty;
1012                                 topmem[n].dirty_sh = p->shared_dirty;
1013                                 topmem[n].stack    = p->stack;
1014                         }
1015 #endif
1016                 } /* end of "while we read /proc" */
1017                 if (ntop == 0) {
1018                         bb_error_msg("no process info in /proc");
1019                         break;
1020                 }
1021
1022                 if (scan_mask != TOPMEM_MASK) {
1023 #if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
1024                         if (!prev_hist_count) {
1025                                 do_stats();
1026                                 usleep(100000);
1027                                 clearmems();
1028                                 continue;
1029                         }
1030                         do_stats();
1031                         /* TODO: we don't need to sort all 10000 processes, we need to find top 24! */
1032                         qsort(top, ntop, sizeof(top_status_t), (void*)mult_lvl_cmp);
1033 #else
1034                         qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
1035 #endif
1036                 }
1037 #if ENABLE_FEATURE_TOPMEM
1038                 else { /* TOPMEM */
1039                         qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
1040                 }
1041 #endif
1042                 lines_rem = lines;
1043                 if (OPT_BATCH_MODE) {
1044                         lines_rem = INT_MAX;
1045                 }
1046                 if (scan_mask != TOPMEM_MASK)
1047                         display_process_list(lines_rem, col);
1048 #if ENABLE_FEATURE_TOPMEM
1049                 else
1050                         display_topmem_process_list(lines_rem, col);
1051 #endif
1052                 clearmems();
1053                 if (iterations >= 0 && !--iterations)
1054                         break;
1055 #if !ENABLE_FEATURE_USE_TERMIOS
1056                 sleep(interval);
1057 #else
1058                 if (option_mask32 & (OPT_b|OPT_EOF))
1059                          /* batch mode, or EOF on stdin ("top </dev/null") */
1060                         sleep(interval);
1061                 else if (safe_poll(pfd, 1, interval * 1000) > 0) {
1062                         if (safe_read(STDIN_FILENO, &c, 1) != 1) { /* error/EOF? */
1063                                 option_mask32 |= OPT_EOF;
1064                                 continue;
1065                         }
1066                         if (c == initial_settings.c_cc[VINTR])
1067                                 break;
1068                         c |= 0x20; /* lowercase */
1069                         if (c == 'q')
1070                                 break;
1071                         if (c == 'n') {
1072                                 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1073                                 sort_function[0] = pid_sort;
1074                         }
1075                         if (c == 'm') {
1076                                 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1077                                 sort_function[0] = mem_sort;
1078 # if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
1079                                 sort_function[1] = pcpu_sort;
1080                                 sort_function[2] = time_sort;
1081 # endif
1082                         }
1083 #if ENABLE_FEATURE_SHOW_THREADS
1084                         if (c == 'h'
1085                          IF_FEATURE_TOPMEM(&& scan_mask != TOPMEM_MASK)
1086                         ) {
1087                                 scan_mask ^= PSSCAN_TASKS;
1088                         }
1089 #endif
1090 # if ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE
1091                         if (c == 'p') {
1092                                 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1093                                 sort_function[0] = pcpu_sort;
1094                                 sort_function[1] = mem_sort;
1095                                 sort_function[2] = time_sort;
1096                         }
1097                         if (c == 't') {
1098                                 IF_FEATURE_TOPMEM(scan_mask = TOP_MASK;)
1099                                 sort_function[0] = time_sort;
1100                                 sort_function[1] = mem_sort;
1101                                 sort_function[2] = pcpu_sort;
1102                         }
1103 #  if ENABLE_FEATURE_TOPMEM
1104                         if (c == 's') {
1105                                 scan_mask = TOPMEM_MASK;
1106                                 free(prev_hist);
1107                                 prev_hist = NULL;
1108                                 prev_hist_count = 0;
1109                                 sort_field = (sort_field + 1) % NUM_SORT_FIELD;
1110                         }
1111                         if (c == 'r')
1112                                 inverted ^= 1;
1113 #  endif
1114 #  if ENABLE_FEATURE_TOP_SMP_CPU
1115                         /* procps-2.0.18 uses 'C', 3.2.7 uses '1' */
1116                         if (c == 'c' || c == '1') {
1117                                 /* User wants to toggle per cpu <> aggregate */
1118                                 if (smp_cpu_info) {
1119                                         free(cpu_prev_jif);
1120                                         free(cpu_jif);
1121                                         cpu_jif = &cur_jif;
1122                                         cpu_prev_jif = &prev_jif;
1123                                 } else {
1124                                         /* Prepare for xrealloc() */
1125                                         cpu_jif = cpu_prev_jif = NULL;
1126                                 }
1127                                 num_cpus = 0;
1128                                 smp_cpu_info = !smp_cpu_info;
1129                                 get_jiffy_counts();
1130                         }
1131 #  endif
1132 # endif
1133                 }
1134 #endif /* FEATURE_USE_TERMIOS */
1135         } /* end of "while (1)" */
1136
1137         bb_putchar('\n');
1138 #if ENABLE_FEATURE_USE_TERMIOS
1139         reset_term();
1140 #endif
1141         return EXIT_SUCCESS;
1142 }