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