Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / procps / mpstat.c
blobaa5a5c73f2a8c96e926fa6b2fb421de7d3538948
1 /* vi: set sw=4 ts=4: */
2 /*
3 * Per-processor statistics, based on sysstat version 9.1.2 by Sebastien Godard
5 * Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>
7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */
10 //applet:IF_MPSTAT(APPLET(mpstat, BB_DIR_BIN, BB_SUID_DROP))
12 //kbuild:lib-$(CONFIG_MPSTAT) += mpstat.o
14 //config:config MPSTAT
15 //config: bool "mpstat"
16 //config: default y
17 //config: help
18 //config: Per-processor statistics
20 #include "libbb.h"
21 #include <sys/utsname.h> /* struct utsname */
23 //#define debug(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__)
24 #define debug(fmt, ...) ((void)0)
26 /* Size of /proc/interrupts line, CPU data excluded */
27 #define INTERRUPTS_LINE 64
28 /* Maximum number of interrupts */
29 #define NR_IRQS 256
30 #define NR_IRQCPU_PREALLOC 3
31 #define MAX_IRQNAME_LEN 16
32 #define MAX_PF_NAME 512
33 /* sysstat 9.0.6 uses width 8, but newer code which also prints /proc/softirqs
34 * data needs more: "interrupts" in /proc/softirqs have longer names,
35 * most are up to 8 chars, one (BLOCK_IOPOLL) is even longer.
36 * We are printing headers in the " IRQNAME/s" form, experimentally
37 * anything smaller than 10 chars looks ugly for /proc/softirqs stats.
39 #define INTRATE_SCRWIDTH 10
40 #define INTRATE_SCRWIDTH_STR "10"
42 /* System files */
43 #define PROCFS_STAT "/proc/stat"
44 #define PROCFS_INTERRUPTS "/proc/interrupts"
45 #define PROCFS_SOFTIRQS "/proc/softirqs"
46 #define PROCFS_UPTIME "/proc/uptime"
49 #if 1
50 typedef unsigned long long data_t;
51 typedef long long idata_t;
52 #define FMT_DATA "ll"
53 #define DATA_MAX ULLONG_MAX
54 #else
55 typedef unsigned long data_t;
56 typedef long idata_t;
57 #define FMT_DATA "l"
58 #define DATA_MAX ULONG_MAX
59 #endif
62 struct stats_irqcpu {
63 unsigned interrupts;
64 char irq_name[MAX_IRQNAME_LEN];
67 struct stats_cpu {
68 data_t cpu_user;
69 data_t cpu_nice;
70 data_t cpu_system;
71 data_t cpu_idle;
72 data_t cpu_iowait;
73 data_t cpu_steal;
74 data_t cpu_irq;
75 data_t cpu_softirq;
76 data_t cpu_guest;
79 struct stats_irq {
80 data_t irq_nr;
84 /* Globals. Sort by size and access frequency. */
85 struct globals {
86 int interval;
87 int count;
88 unsigned cpu_nr; /* Number of CPUs */
89 unsigned irqcpu_nr; /* Number of interrupts per CPU */
90 unsigned softirqcpu_nr; /* Number of soft interrupts per CPU */
91 unsigned options;
92 unsigned hz;
93 unsigned cpu_bitmap_len;
94 smallint p_option;
95 // 9.0.6 does not do it. Try "mpstat -A 1 2" - headers are repeated!
96 //smallint header_done;
97 //smallint avg_header_done;
98 unsigned char *cpu_bitmap; /* Bit 0: global, bit 1: 1st proc... */
99 data_t global_uptime[3];
100 data_t per_cpu_uptime[3];
101 struct stats_cpu *st_cpu[3];
102 struct stats_irq *st_irq[3];
103 struct stats_irqcpu *st_irqcpu[3];
104 struct stats_irqcpu *st_softirqcpu[3];
105 struct tm timestamp[3];
107 #define G (*ptr_to_globals)
108 #define INIT_G() do { \
109 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
110 } while (0)
112 /* The selected interrupts statistics (bits in G.options) */
113 enum {
114 D_CPU = 1 << 0,
115 D_IRQ_SUM = 1 << 1,
116 D_IRQ_CPU = 1 << 2,
117 D_SOFTIRQS = 1 << 3,
121 /* Is option on? */
122 static ALWAYS_INLINE int display_opt(int opt)
124 return (opt & G.options);
127 #if DATA_MAX > 0xffffffff
129 * Handle overflow conditions properly for counters which can have
130 * less bits than data_t, depending on the kernel version.
132 /* Surprisingly, on 32bit inlining is a size win */
133 static ALWAYS_INLINE data_t overflow_safe_sub(data_t prev, data_t curr)
135 data_t v = curr - prev;
137 if ((idata_t)v < 0 /* curr < prev - counter overflow? */
138 && prev <= 0xffffffff /* kernel uses 32bit value for the counter? */
140 /* Add 33th bit set to 1 to curr, compensating for the overflow */
141 /* double shift defeats "warning: left shift count >= width of type" */
142 v += ((data_t)1 << 16) << 16;
144 return v;
146 #else
147 static ALWAYS_INLINE data_t overflow_safe_sub(data_t prev, data_t curr)
149 return curr - prev;
151 #endif
153 static double percent_value(data_t prev, data_t curr, data_t itv)
155 return ((double)overflow_safe_sub(prev, curr)) / itv * 100;
158 static double hz_value(data_t prev, data_t curr, data_t itv)
160 //bb_error_msg("curr:%lld prev:%lld G.hz:%u", curr, prev, G.hz);
161 return ((double)overflow_safe_sub(prev, curr)) / itv * G.hz;
164 static ALWAYS_INLINE data_t jiffies_diff(data_t old, data_t new)
166 data_t diff = new - old;
167 return (diff == 0) ? 1 : diff;
170 static int is_cpu_in_bitmap(unsigned cpu)
172 return G.cpu_bitmap[cpu >> 3] & (1 << (cpu & 7));
175 static void write_irqcpu_stats(struct stats_irqcpu *per_cpu_stats[],
176 int total_irqs,
177 data_t itv,
178 int prev, int current,
179 const char *prev_str, const char *current_str)
181 int j;
182 int offset, cpu;
183 struct stats_irqcpu *p0, *q0;
185 /* Check if number of IRQs has changed */
186 if (G.interval != 0) {
187 for (j = 0; j <= total_irqs; j++) {
188 p0 = &per_cpu_stats[current][j];
189 if (p0->irq_name[0] != '\0') {
190 q0 = &per_cpu_stats[prev][j];
191 if (strcmp(p0->irq_name, q0->irq_name) != 0) {
192 /* Strings are different */
193 break;
199 /* Print header */
200 printf("\n%-11s CPU", prev_str);
202 /* A bit complex code to "buy back" space if one header is too wide.
203 * Here's how it looks like. BLOCK_IOPOLL eats too much space,
204 * and latter headers use smaller width to compensate:
205 * ...BLOCK/s BLOCK_IOPOLL/s TASKLET/s SCHED/s HRTIMER/s RCU/s
206 * ... 2.32 0.00 0.01 17.58 0.14 141.96
208 int expected_len = 0;
209 int printed_len = 0;
210 for (j = 0; j < total_irqs; j++) {
211 p0 = &per_cpu_stats[current][j];
212 if (p0->irq_name[0] != '\0') {
213 int n = (INTRATE_SCRWIDTH-3) - (printed_len - expected_len);
214 printed_len += printf(" %*s/s", n > 0 ? n : 0, skip_whitespace(p0->irq_name));
215 expected_len += INTRATE_SCRWIDTH;
219 bb_putchar('\n');
221 for (cpu = 1; cpu <= G.cpu_nr; cpu++) {
222 /* Check if we want stats about this CPU */
223 if (!is_cpu_in_bitmap(cpu) && G.p_option) {
224 continue;
227 printf("%-11s %4u", current_str, cpu - 1);
229 for (j = 0; j < total_irqs; j++) {
230 /* IRQ field set only for proc 0 */
231 p0 = &per_cpu_stats[current][j];
234 * An empty string for irq name means that
235 * interrupt is no longer used.
237 if (p0->irq_name[0] != '\0') {
238 offset = j;
239 q0 = &per_cpu_stats[prev][offset];
242 * If we want stats for the time since boot
243 * we have p0->irq != q0->irq.
245 if (strcmp(p0->irq_name, q0->irq_name) != 0
246 && G.interval != 0
248 if (j) {
249 offset = j - 1;
250 q0 = &per_cpu_stats[prev][offset];
252 if (strcmp(p0->irq_name, q0->irq_name) != 0
253 && (j + 1 < total_irqs)
255 offset = j + 1;
256 q0 = &per_cpu_stats[prev][offset];
260 if (strcmp(p0->irq_name, q0->irq_name) == 0
261 || G.interval == 0
263 struct stats_irqcpu *p, *q;
264 p = &per_cpu_stats[current][(cpu - 1) * total_irqs + j];
265 q = &per_cpu_stats[prev][(cpu - 1) * total_irqs + offset];
266 printf("%"INTRATE_SCRWIDTH_STR".2f",
267 (double)(p->interrupts - q->interrupts) / itv * G.hz);
268 } else {
269 printf(" N/A");
273 bb_putchar('\n');
277 static data_t get_per_cpu_interval(const struct stats_cpu *scc,
278 const struct stats_cpu *scp)
280 return ((scc->cpu_user + scc->cpu_nice +
281 scc->cpu_system + scc->cpu_iowait +
282 scc->cpu_idle + scc->cpu_steal +
283 scc->cpu_irq + scc->cpu_softirq) -
284 (scp->cpu_user + scp->cpu_nice +
285 scp->cpu_system + scp->cpu_iowait +
286 scp->cpu_idle + scp->cpu_steal +
287 scp->cpu_irq + scp->cpu_softirq));
290 static void print_stats_cpu_struct(const struct stats_cpu *p,
291 const struct stats_cpu *c,
292 data_t itv)
294 printf(" %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n",
295 percent_value(p->cpu_user - p->cpu_guest,
296 /**/ c->cpu_user - c->cpu_guest, itv),
297 percent_value(p->cpu_nice , c->cpu_nice , itv),
298 percent_value(p->cpu_system , c->cpu_system , itv),
299 percent_value(p->cpu_iowait , c->cpu_iowait , itv),
300 percent_value(p->cpu_irq , c->cpu_irq , itv),
301 percent_value(p->cpu_softirq, c->cpu_softirq, itv),
302 percent_value(p->cpu_steal , c->cpu_steal , itv),
303 percent_value(p->cpu_guest , c->cpu_guest , itv),
304 percent_value(p->cpu_idle , c->cpu_idle , itv)
308 static void write_stats_core(int prev, int current,
309 const char *prev_str, const char *current_str)
311 struct stats_cpu *scc, *scp;
312 data_t itv, global_itv;
313 int cpu;
315 /* Compute time interval */
316 itv = global_itv = jiffies_diff(G.global_uptime[prev], G.global_uptime[current]);
318 /* Reduce interval to one CPU */
319 if (G.cpu_nr > 1)
320 itv = jiffies_diff(G.per_cpu_uptime[prev], G.per_cpu_uptime[current]);
322 /* Print CPU stats */
323 if (display_opt(D_CPU)) {
325 ///* This is done exactly once */
326 //if (!G.header_done) {
327 printf("\n%-11s CPU %%usr %%nice %%sys %%iowait %%irq %%soft %%steal %%guest %%idle\n",
328 prev_str
330 // G.header_done = 1;
333 for (cpu = 0; cpu <= G.cpu_nr; cpu++) {
334 data_t per_cpu_itv;
336 /* Print stats about this particular CPU? */
337 if (!is_cpu_in_bitmap(cpu))
338 continue;
340 scc = &G.st_cpu[current][cpu];
341 scp = &G.st_cpu[prev][cpu];
342 per_cpu_itv = global_itv;
344 printf((cpu ? "%-11s %4u" : "%-11s all"), current_str, cpu - 1);
345 if (cpu) {
346 double idle;
348 * If the CPU is offline, then it isn't in /proc/stat,
349 * so all values are 0.
350 * NB: Guest time is already included in user time.
352 if ((scc->cpu_user | scc->cpu_nice | scc->cpu_system |
353 scc->cpu_iowait | scc->cpu_idle | scc->cpu_steal |
354 scc->cpu_irq | scc->cpu_softirq) == 0
357 * Set current struct fields to values from prev.
358 * iteration. Then their values won't jump from
359 * zero, when the CPU comes back online.
361 *scc = *scp;
362 idle = 0.0;
363 goto print_zeros;
365 /* Compute interval again for current proc */
366 per_cpu_itv = get_per_cpu_interval(scc, scp);
367 if (per_cpu_itv == 0) {
369 * If the CPU is tickless then there is no change in CPU values
370 * but the sum of values is not zero.
372 idle = 100.0;
373 print_zeros:
374 printf(" %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n",
375 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, idle);
376 continue;
379 print_stats_cpu_struct(scp, scc, per_cpu_itv);
383 /* Print total number of IRQs per CPU */
384 if (display_opt(D_IRQ_SUM)) {
386 ///* Print average header, this is done exactly once */
387 //if (!G.avg_header_done) {
388 printf("\n%-11s CPU intr/s\n", prev_str);
389 // G.avg_header_done = 1;
392 for (cpu = 0; cpu <= G.cpu_nr; cpu++) {
393 data_t per_cpu_itv;
395 /* Print stats about this CPU? */
396 if (!is_cpu_in_bitmap(cpu))
397 continue;
399 per_cpu_itv = itv;
400 printf((cpu ? "%-11s %4u" : "%-11s all"), current_str, cpu - 1);
401 if (cpu) {
402 scc = &G.st_cpu[current][cpu];
403 scp = &G.st_cpu[prev][cpu];
404 /* Compute interval again for current proc */
405 per_cpu_itv = get_per_cpu_interval(scc, scp);
406 if (per_cpu_itv == 0) {
407 printf(" %9.2f\n", 0.0);
408 continue;
411 //bb_error_msg("G.st_irq[%u][%u].irq_nr:%lld - G.st_irq[%u][%u].irq_nr:%lld",
412 // current, cpu, G.st_irq[prev][cpu].irq_nr, prev, cpu, G.st_irq[current][cpu].irq_nr);
413 printf(" %9.2f\n", hz_value(G.st_irq[prev][cpu].irq_nr, G.st_irq[current][cpu].irq_nr, per_cpu_itv));
417 if (display_opt(D_IRQ_CPU)) {
418 write_irqcpu_stats(G.st_irqcpu, G.irqcpu_nr,
419 itv,
420 prev, current,
421 prev_str, current_str
425 if (display_opt(D_SOFTIRQS)) {
426 write_irqcpu_stats(G.st_softirqcpu, G.softirqcpu_nr,
427 itv,
428 prev, current,
429 prev_str, current_str
435 * Print the statistics
437 static void write_stats(int current)
439 char prev_time[16];
440 char curr_time[16];
442 strftime(prev_time, sizeof(prev_time), "%X", &G.timestamp[!current]);
443 strftime(curr_time, sizeof(curr_time), "%X", &G.timestamp[current]);
445 write_stats_core(!current, current, prev_time, curr_time);
448 static void write_stats_avg(int current)
450 write_stats_core(2, current, "Average:", "Average:");
454 * Read CPU statistics
456 static void get_cpu_statistics(struct stats_cpu *cpu, data_t *up, data_t *up0)
458 FILE *fp;
459 char buf[1024];
461 fp = xfopen_for_read(PROCFS_STAT);
463 while (fgets(buf, sizeof(buf), fp)) {
464 data_t sum;
465 unsigned cpu_number;
466 struct stats_cpu *cp;
468 if (!starts_with_cpu(buf))
469 continue; /* not "cpu" */
471 cp = cpu; /* for "cpu " case */
472 if (buf[3] != ' ') {
473 /* "cpuN " */
474 if (G.cpu_nr == 0
475 || sscanf(buf + 3, "%u ", &cpu_number) != 1
476 || cpu_number >= G.cpu_nr
478 continue;
480 cp = &cpu[cpu_number + 1];
483 /* Read the counters, save them */
484 /* Not all fields have to be present */
485 memset(cp, 0, sizeof(*cp));
486 sscanf(buf, "%*s"
487 " %"FMT_DATA"u %"FMT_DATA"u %"FMT_DATA"u"
488 " %"FMT_DATA"u %"FMT_DATA"u %"FMT_DATA"u"
489 " %"FMT_DATA"u %"FMT_DATA"u %"FMT_DATA"u",
490 &cp->cpu_user, &cp->cpu_nice, &cp->cpu_system,
491 &cp->cpu_idle, &cp->cpu_iowait, &cp->cpu_irq,
492 &cp->cpu_softirq, &cp->cpu_steal, &cp->cpu_guest
495 * Compute uptime in jiffies (1/HZ), it'll be the sum of
496 * individual CPU's uptimes.
497 * NB: We have to omit cpu_guest, because cpu_user includes it.
499 sum = cp->cpu_user + cp->cpu_nice + cp->cpu_system +
500 cp->cpu_idle + cp->cpu_iowait + cp->cpu_irq +
501 cp->cpu_softirq + cp->cpu_steal;
503 if (buf[3] == ' ') {
504 /* "cpu " */
505 *up = sum;
506 } else {
507 /* "cpuN " */
508 if (cpu_number == 0 && *up0 != 0) {
509 /* Compute uptime of single CPU */
510 *up0 = sum;
514 fclose(fp);
518 * Read IRQs from /proc/stat
520 static void get_irqs_from_stat(struct stats_irq *irq)
522 FILE *fp;
523 char buf[1024];
525 fp = fopen_for_read(PROCFS_STAT);
526 if (!fp)
527 return;
529 while (fgets(buf, sizeof(buf), fp)) {
530 //bb_error_msg("/proc/stat:'%s'", buf);
531 if (strncmp(buf, "intr ", 5) == 0) {
532 /* Read total number of IRQs since system boot */
533 sscanf(buf + 5, "%"FMT_DATA"u", &irq->irq_nr);
537 fclose(fp);
541 * Read stats from /proc/interrupts or /proc/softirqs
543 static void get_irqs_from_interrupts(const char *fname,
544 struct stats_irqcpu *per_cpu_stats[],
545 int irqs_per_cpu, int current)
547 FILE *fp;
548 struct stats_irq *irq_i;
549 struct stats_irqcpu *ic;
550 char *buf;
551 unsigned buflen;
552 unsigned cpu;
553 unsigned irq;
554 int cpu_index[G.cpu_nr];
555 int iindex;
557 // Moved to caller.
558 // Otherwise reading of /proc/softirqs
559 // was resetting counts to 0 after we painstakingly collected them from
560 // /proc/interrupts. Which resulted in:
561 // 01:32:47 PM CPU intr/s
562 // 01:32:47 PM all 591.47
563 // 01:32:47 PM 0 0.00 <= ???
564 // 01:32:47 PM 1 0.00 <= ???
565 // for (cpu = 1; cpu <= G.cpu_nr; cpu++) {
566 // G.st_irq[current][cpu].irq_nr = 0;
567 // //bb_error_msg("G.st_irq[%u][%u].irq_nr=0", current, cpu);
568 // }
570 fp = fopen_for_read(fname);
571 if (!fp)
572 return;
574 buflen = INTERRUPTS_LINE + 16 * G.cpu_nr;
575 buf = xmalloc(buflen);
577 /* Parse header and determine, which CPUs are online */
578 iindex = 0;
579 while (fgets(buf, buflen, fp)) {
580 char *cp, *next;
581 next = buf;
582 while ((cp = strstr(next, "CPU")) != NULL
583 && iindex < G.cpu_nr
585 cpu = strtoul(cp + 3, &next, 10);
586 cpu_index[iindex++] = cpu;
588 if (iindex) /* We found header */
589 break;
592 irq = 0;
593 while (fgets(buf, buflen, fp)
594 && irq < irqs_per_cpu
596 int len;
597 char last_char;
598 char *cp;
600 /* Skip over "IRQNAME:" */
601 cp = strchr(buf, ':');
602 if (!cp)
603 continue;
604 last_char = cp[-1];
606 ic = &per_cpu_stats[current][irq];
607 len = cp - buf;
608 if (len >= sizeof(ic->irq_name)) {
609 len = sizeof(ic->irq_name) - 1;
611 safe_strncpy(ic->irq_name, buf, len + 1);
612 //bb_error_msg("%s: irq%d:'%s' buf:'%s'", fname, irq, ic->irq_name, buf);
613 cp++;
615 for (cpu = 0; cpu < iindex; cpu++) {
616 char *next;
617 ic = &per_cpu_stats[current][cpu_index[cpu] * irqs_per_cpu + irq];
618 irq_i = &G.st_irq[current][cpu_index[cpu] + 1];
619 ic->interrupts = strtoul(cp, &next, 10);
620 /* Count only numerical IRQs */
621 if (isdigit(last_char)) {
622 irq_i->irq_nr += ic->interrupts;
623 //bb_error_msg("G.st_irq[%u][%u].irq_nr + %u = %lld",
624 // current, cpu_index[cpu] + 1, ic->interrupts, irq_i->irq_nr);
626 cp = next;
628 irq++;
630 fclose(fp);
631 free(buf);
633 while (irq < irqs_per_cpu) {
634 /* Number of interrupts per CPU has changed */
635 ic = &per_cpu_stats[current][irq];
636 ic->irq_name[0] = '\0'; /* False interrupt */
637 irq++;
641 static void get_uptime(data_t *uptime)
643 FILE *fp;
644 char buf[sizeof(long)*3 * 2 + 4]; /* enough for long.long */
645 unsigned long uptime_sec, decimal;
647 fp = fopen_for_read(PROCFS_UPTIME);
648 if (!fp)
649 return;
650 if (fgets(buf, sizeof(buf), fp)) {
651 if (sscanf(buf, "%lu.%lu", &uptime_sec, &decimal) == 2) {
652 *uptime = (data_t)uptime_sec * G.hz + decimal * G.hz / 100;
656 fclose(fp);
659 static void get_localtime(struct tm *tm)
661 time_t timer;
662 time(&timer);
663 localtime_r(&timer, tm);
666 static void alarm_handler(int sig UNUSED_PARAM)
668 signal(SIGALRM, alarm_handler);
669 alarm(G.interval);
672 static void main_loop(void)
674 unsigned current;
675 unsigned cpus;
677 /* Read the stats */
678 if (G.cpu_nr > 1) {
679 G.per_cpu_uptime[0] = 0;
680 get_uptime(&G.per_cpu_uptime[0]);
683 get_cpu_statistics(G.st_cpu[0], &G.global_uptime[0], &G.per_cpu_uptime[0]);
685 if (display_opt(D_IRQ_SUM))
686 get_irqs_from_stat(G.st_irq[0]);
688 if (display_opt(D_IRQ_SUM | D_IRQ_CPU))
689 get_irqs_from_interrupts(PROCFS_INTERRUPTS, G.st_irqcpu,
690 G.irqcpu_nr, 0);
692 if (display_opt(D_SOFTIRQS))
693 get_irqs_from_interrupts(PROCFS_SOFTIRQS, G.st_softirqcpu,
694 G.softirqcpu_nr, 0);
696 if (G.interval == 0) {
697 /* Display since boot time */
698 cpus = G.cpu_nr + 1;
699 G.timestamp[1] = G.timestamp[0];
700 memset(G.st_cpu[1], 0, sizeof(G.st_cpu[1][0]) * cpus);
701 memset(G.st_irq[1], 0, sizeof(G.st_irq[1][0]) * cpus);
702 memset(G.st_irqcpu[1], 0, sizeof(G.st_irqcpu[1][0]) * cpus * G.irqcpu_nr);
703 memset(G.st_softirqcpu[1], 0, sizeof(G.st_softirqcpu[1][0]) * cpus * G.softirqcpu_nr);
705 write_stats(0);
707 /* And we're done */
708 return;
711 /* Set a handler for SIGALRM */
712 alarm_handler(0);
714 /* Save the stats we already have. We need them to compute the average */
715 G.timestamp[2] = G.timestamp[0];
716 G.global_uptime[2] = G.global_uptime[0];
717 G.per_cpu_uptime[2] = G.per_cpu_uptime[0];
718 cpus = G.cpu_nr + 1;
719 memcpy(G.st_cpu[2], G.st_cpu[0], sizeof(G.st_cpu[0][0]) * cpus);
720 memcpy(G.st_irq[2], G.st_irq[0], sizeof(G.st_irq[0][0]) * cpus);
721 memcpy(G.st_irqcpu[2], G.st_irqcpu[0], sizeof(G.st_irqcpu[0][0]) * cpus * G.irqcpu_nr);
722 if (display_opt(D_SOFTIRQS)) {
723 memcpy(G.st_softirqcpu[2], G.st_softirqcpu[0],
724 sizeof(G.st_softirqcpu[0][0]) * cpus * G.softirqcpu_nr);
727 current = 1;
728 while (1) {
729 /* Suspend until a signal is received */
730 pause();
732 /* Set structures to 0 to distinguish off/online CPUs */
733 memset(&G.st_cpu[current][/*cpu:*/ 1], 0, sizeof(G.st_cpu[0][0]) * G.cpu_nr);
735 get_localtime(&G.timestamp[current]);
737 /* Read stats */
738 if (G.cpu_nr > 1) {
739 G.per_cpu_uptime[current] = 0;
740 get_uptime(&G.per_cpu_uptime[current]);
742 get_cpu_statistics(G.st_cpu[current], &G.global_uptime[current], &G.per_cpu_uptime[current]);
744 if (display_opt(D_IRQ_SUM))
745 get_irqs_from_stat(G.st_irq[current]);
747 if (display_opt(D_IRQ_SUM | D_IRQ_CPU)) {
748 int cpu;
749 for (cpu = 1; cpu <= G.cpu_nr; cpu++) {
750 G.st_irq[current][cpu].irq_nr = 0;
752 /* accumulates .irq_nr */
753 get_irqs_from_interrupts(PROCFS_INTERRUPTS, G.st_irqcpu,
754 G.irqcpu_nr, current);
757 if (display_opt(D_SOFTIRQS))
758 get_irqs_from_interrupts(PROCFS_SOFTIRQS,
759 G.st_softirqcpu,
760 G.softirqcpu_nr, current);
762 write_stats(current);
764 if (G.count > 0) {
765 if (--G.count == 0)
766 break;
769 current ^= 1;
772 /* Print average statistics */
773 write_stats_avg(current);
776 /* Initialization */
778 /* Get number of clock ticks per sec */
779 static ALWAYS_INLINE unsigned get_hz(void)
781 return sysconf(_SC_CLK_TCK);
784 static void alloc_struct(int cpus)
786 int i;
787 for (i = 0; i < 3; i++) {
788 G.st_cpu[i] = xzalloc(sizeof(G.st_cpu[i][0]) * cpus);
789 G.st_irq[i] = xzalloc(sizeof(G.st_irq[i][0]) * cpus);
790 G.st_irqcpu[i] = xzalloc(sizeof(G.st_irqcpu[i][0]) * cpus * G.irqcpu_nr);
791 G.st_softirqcpu[i] = xzalloc(sizeof(G.st_softirqcpu[i][0]) * cpus * G.softirqcpu_nr);
793 G.cpu_bitmap_len = (cpus >> 3) + 1;
794 G.cpu_bitmap = xzalloc(G.cpu_bitmap_len);
797 static void print_header(struct tm *t)
799 char cur_date[16];
800 struct utsname uts;
802 /* Get system name, release number and hostname */
803 uname(&uts);
805 strftime(cur_date, sizeof(cur_date), "%x", t);
807 printf("%s %s (%s)\t%s\t_%s_\t(%u CPU)\n",
808 uts.sysname, uts.release, uts.nodename, cur_date, uts.machine, G.cpu_nr);
812 * Get number of interrupts available per processor
814 static int get_irqcpu_nr(const char *f, int max_irqs)
816 FILE *fp;
817 char *line;
818 unsigned linelen;
819 unsigned irq;
821 fp = fopen_for_read(f);
822 if (!fp) /* No interrupts file */
823 return 0;
825 linelen = INTERRUPTS_LINE + 16 * G.cpu_nr;
826 line = xmalloc(linelen);
828 irq = 0;
829 while (fgets(line, linelen, fp)
830 && irq < max_irqs
832 int p = strcspn(line, ":");
833 if ((p > 0) && (p < 16))
834 irq++;
837 fclose(fp);
838 free(line);
840 return irq;
843 //usage:#define mpstat_trivial_usage
844 //usage: "[-A] [-I SUM|CPU|ALL|SCPU] [-u] [-P num|ALL] [INTERVAL [COUNT]]"
845 //usage:#define mpstat_full_usage "\n\n"
846 //usage: "Per-processor statistics\n"
847 //usage: "\n -A Same as -I ALL -u -P ALL"
848 //usage: "\n -I SUM|CPU|ALL|SCPU Report interrupt statistics"
849 //usage: "\n -P num|ALL Processor to monitor"
850 //usage: "\n -u Report CPU utilization"
852 int mpstat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
853 int mpstat_main(int UNUSED_PARAM argc, char **argv)
855 char *opt_irq_fmt;
856 char *opt_set_cpu;
857 int i, opt;
858 enum {
859 OPT_ALL = 1 << 0, /* -A */
860 OPT_INTS = 1 << 1, /* -I */
861 OPT_SETCPU = 1 << 2, /* -P */
862 OPT_UTIL = 1 << 3, /* -u */
865 /* Dont buffer data if redirected to a pipe */
866 setbuf(stdout, NULL);
868 INIT_G();
870 G.interval = -1;
872 /* Get number of processors */
873 G.cpu_nr = get_cpu_count();
875 /* Get number of clock ticks per sec */
876 G.hz = get_hz();
878 /* Calculate number of interrupts per processor */
879 G.irqcpu_nr = get_irqcpu_nr(PROCFS_INTERRUPTS, NR_IRQS) + NR_IRQCPU_PREALLOC;
881 /* Calculate number of soft interrupts per processor */
882 G.softirqcpu_nr = get_irqcpu_nr(PROCFS_SOFTIRQS, NR_IRQS) + NR_IRQCPU_PREALLOC;
884 /* Allocate space for structures. + 1 for global structure. */
885 alloc_struct(G.cpu_nr + 1);
887 /* Parse and process arguments */
888 opt = getopt32(argv, "AI:P:u", &opt_irq_fmt, &opt_set_cpu);
889 argv += optind;
891 if (*argv) {
892 /* Get interval */
893 G.interval = xatoi_positive(*argv);
894 G.count = -1;
895 argv++;
896 if (*argv) {
897 /* Get count value */
898 if (G.interval == 0)
899 bb_show_usage();
900 G.count = xatoi_positive(*argv);
901 //if (*++argv)
902 // bb_show_usage();
905 if (G.interval < 0)
906 G.interval = 0;
908 if (opt & OPT_ALL) {
909 G.p_option = 1;
910 G.options |= D_CPU + D_IRQ_SUM + D_IRQ_CPU + D_SOFTIRQS;
911 /* Select every CPU */
912 memset(G.cpu_bitmap, 0xff, G.cpu_bitmap_len);
915 if (opt & OPT_INTS) {
916 static const char v[] = {
917 D_IRQ_CPU, D_IRQ_SUM, D_SOFTIRQS,
918 D_IRQ_SUM + D_IRQ_CPU + D_SOFTIRQS
920 i = index_in_strings("CPU\0SUM\0SCPU\0ALL\0", opt_irq_fmt);
921 if (i == -1)
922 bb_show_usage();
923 G.options |= v[i];
926 if ((opt & OPT_UTIL) /* -u? */
927 || G.options == 0 /* nothing? (use default then) */
929 G.options |= D_CPU;
932 if (opt & OPT_SETCPU) {
933 char *t;
934 G.p_option = 1;
936 for (t = strtok(opt_set_cpu, ","); t; t = strtok(NULL, ",")) {
937 if (strcmp(t, "ALL") == 0) {
938 /* Select every CPU */
939 memset(G.cpu_bitmap, 0xff, G.cpu_bitmap_len);
940 } else {
941 /* Get CPU number */
942 unsigned n = xatoi_positive(t);
943 if (n >= G.cpu_nr)
944 bb_error_msg_and_die("not that many processors");
945 n++;
946 G.cpu_bitmap[n >> 3] |= 1 << (n & 7);
951 if (!G.p_option)
952 /* Display global stats */
953 G.cpu_bitmap[0] = 1;
955 /* Get time */
956 get_localtime(&G.timestamp[0]);
958 /* Display header */
959 print_header(&G.timestamp[0]);
961 /* The main loop */
962 main_loop();
964 if (ENABLE_FEATURE_CLEAN_UP) {
965 /* Clean up */
966 for (i = 0; i < 3; i++) {
967 free(G.st_cpu[i]);
968 free(G.st_irq[i]);
969 free(G.st_irqcpu[i]);
970 free(G.st_softirqcpu[i]);
972 free(G.cpu_bitmap);
973 free(&G);
976 return EXIT_SUCCESS;