2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009 - 2013 Daniel Borkmann.
4 * Copyright 2013 Tobias Klauser
5 * Subject to the GPL, version 2.
13 #include <sys/socket.h>
14 #include <sys/fsuid.h>
28 int16_t link_qual
, link_qual_max
;
29 int signal_level
/*, noise_level*/;
33 long long unsigned int rx_bytes
, rx_packets
, rx_drops
, rx_errors
;
34 long long unsigned int rx_fifo
, rx_frame
, rx_multi
;
35 long long unsigned int tx_bytes
, tx_packets
, tx_drops
, tx_errors
;
36 long long unsigned int tx_fifo
, tx_colls
, tx_carrier
;
37 uint64_t mem_free
, mem_total
;
38 uint32_t irq_nr
, procs_run
, procs_iow
, cswitch
, forks
;
39 struct wifi_stat wifi
;
41 * Pointer members need to be last in order for stats_zero() to work
44 long long unsigned int *irqs
, *irqs_srx
, *irqs_stx
;
45 uint64_t *cpu_user
, *cpu_sys
, *cpu_nice
, *cpu_idle
, *cpu_iow
;
51 long long unsigned int irqs_rel
, irqs_abs
;
54 volatile sig_atomic_t sigint
= 0;
56 static struct ifstat stats_old
, stats_new
, stats_delta
;
58 static struct cpu_hit
*cpu_hits
;
60 static int stats_loop
= 0;
62 static WINDOW
*stats_screen
= NULL
;
64 static const char *short_options
= "d:t:n:vhclp";
65 static const struct option long_options
[] = {
66 {"dev", required_argument
, NULL
, 'd'},
67 {"interval", required_argument
, NULL
, 't'},
68 {"num-cpus", required_argument
, NULL
, 'n'},
69 {"promisc", no_argument
, NULL
, 'p'},
70 {"csv", no_argument
, NULL
, 'c'},
71 {"loop", no_argument
, NULL
, 'l'},
72 {"version", no_argument
, NULL
, 'v'},
73 {"help", no_argument
, NULL
, 'h'},
77 static void signal_handler(int number
)
89 static inline int iswireless(const struct ifstat
*stats
)
91 return stats
->wifi
.bitrate
> 0;
94 static void __noreturn
help(void)
96 printf("\nifpps %s, top-like kernel networking and system statistics\n",
98 puts("http://www.netsniff-ng.org\n\n"
99 "Usage: ifpps [options] || ifpps <netdev>\n"
101 " -d|--dev <netdev> Device to fetch statistics for e.g., eth0\n"
102 " -t|--interval <time> Refresh time in ms (default 1000 ms)\n"
103 " -n|--num-cpus <num> Number of top hitter CPUs to display\n"
104 " in ncurses mode (default 10)\n"
105 " -p|--promisc Promiscuous mode\n"
106 " -c|--csv Output to terminal as Gnuplot-ready data\n"
107 " -l|--loop Continuous CSV output\n"
108 " -v|--version Print version and exit\n"
109 " -h|--help Print this help and exit\n\n"
113 " ifpps -lpcd wlan0 > plot.dat\n\n"
115 " On 10G cards, RX/TX statistics are usually accumulated each > 1sec.\n"
116 " Thus, in those situations, it's good to use a -t of 10sec.\n\n"
117 "Please report bugs to <bugs@netsniff-ng.org>\n"
118 "Copyright (C) 2009-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
119 "Swiss federal institute of technology (ETH Zurich)\n"
120 "Copyright (C) 2013 Tobias Klauser <tklauser@distanz.ch>\n"
121 "License: GNU GPL version 2.0\n"
122 "This is free software: you are free to change and redistribute it.\n"
123 "There is NO WARRANTY, to the extent permitted by law.\n");
127 static void __noreturn
version(void)
129 printf("\nifpps %s, top-like kernel networking and system statistics\n",
131 puts("http://www.netsniff-ng.org\n\n"
132 "Please report bugs to <bugs@netsniff-ng.org>\n"
133 "Copyright (C) 2009-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
134 "Swiss federal institute of technology (ETH Zurich)\n"
135 "Copyright (C) 2013 Tobias Klauser <tklauser@distanz.ch>\n"
136 "License: GNU GPL version 2.0\n"
137 "This is free software: you are free to change and redistribute it.\n"
138 "There is NO WARRANTY, to the extent permitted by law.\n");
142 static inline int padding_from_num(int n
)
146 while ((n
/= 10) > 0);
150 #define STATS_ALLOC1(member) \
151 do { stats->member = xzmalloc(cpus * sizeof(*(stats->member))); } while (0)
153 static void stats_alloc(struct ifstat
*stats
, int cpus
)
156 STATS_ALLOC1(irqs_srx
);
157 STATS_ALLOC1(irqs_stx
);
159 STATS_ALLOC1(cpu_user
);
160 STATS_ALLOC1(cpu_sys
);
161 STATS_ALLOC1(cpu_nice
);
162 STATS_ALLOC1(cpu_idle
);
163 STATS_ALLOC1(cpu_iow
);
166 #define STATS_ZERO1(member) \
167 do { memset(stats->member, 0, cpus * sizeof(*(stats->member))); } while (0)
169 static void stats_zero(struct ifstat
*stats
, int cpus
)
171 /* Only clear the non-pointer members */
172 memset(stats
, 0, offsetof(struct ifstat
, irqs
));
175 STATS_ZERO1(irqs_srx
);
176 STATS_ZERO1(irqs_stx
);
178 STATS_ZERO1(cpu_user
);
179 STATS_ZERO1(cpu_sys
);
180 STATS_ZERO1(cpu_nice
);
181 STATS_ZERO1(cpu_idle
);
182 STATS_ZERO1(cpu_iow
);
185 static int stats_proc_net_dev(const char *ifname
, struct ifstat
*stats
)
191 fp
= fopen("/proc/net/dev", "r");
193 panic("Cannot open /proc/net/dev!\n");
195 if (fgets(buff
, sizeof(buff
), fp
)) { ; }
196 if (fgets(buff
, sizeof(buff
), fp
)) { ; }
198 memset(buff
, 0, sizeof(buff
));
200 while (fgets(buff
, sizeof(buff
), fp
) != NULL
) {
201 buff
[sizeof(buff
) -1] = 0;
203 if (strstr(buff
, ifname
) == NULL
)
206 if (sscanf(buff
, "%*[a-z0-9 .-]:%llu%llu%llu%llu%llu%llu"
207 "%llu%*u%llu%llu%llu%llu%llu%llu%llu",
208 &stats
->rx_bytes
, &stats
->rx_packets
,
209 &stats
->rx_errors
, &stats
->rx_drops
,
210 &stats
->rx_fifo
, &stats
->rx_frame
,
211 &stats
->rx_multi
, &stats
->tx_bytes
,
212 &stats
->tx_packets
, &stats
->tx_errors
,
213 &stats
->tx_drops
, &stats
->tx_fifo
,
214 &stats
->tx_colls
, &stats
->tx_carrier
) == 14) {
219 memset(buff
, 0, sizeof(buff
));
226 static int stats_proc_interrupts(char *ifname
, struct ifstat
*stats
)
228 int ret
= -EINVAL
, i
, cpus
, try = 0;
232 struct ethtool_drvinfo drvinf
;
235 fp
= fopen("/proc/interrupts", "r");
237 panic("Cannot open /proc/interrupts!\n");
239 cpus
= get_number_cpus();
240 buff_len
= cpus
* 128;
241 buff
= xmalloc(buff_len
);
243 fseek(fp
, 0, SEEK_SET
);
244 memset(buff
, 0, buff_len
);
246 while (fgets(buff
, buff_len
, fp
) != NULL
) {
247 buff
[buff_len
- 1] = 0;
250 if (strstr(buff
, ifname
) == NULL
)
253 /* XXX: remove this one here */
254 stats
->irq_nr
= strtol(ptr
, &ptr
, 10);
255 bug_on(stats
->irq_nr
== 0);
259 for (i
= 0; i
< cpus
&& ptr
; ++i
) {
261 stats
->irqs
[i
] += strtol(ptr
, &ptr
, 10);
263 stats
->irqs
[i
] = strtol(ptr
, &ptr
, 10);
270 memset(buff
, 0, buff_len
);
273 if (ret
== -EINVAL
&& try == 0) {
274 memset(&drvinf
, 0, sizeof(drvinf
));
275 if (ethtool_drvinf(ifname
, &drvinf
) < 0)
278 ifname
= drvinf
.driver
;
289 static int stats_proc_softirqs(struct ifstat
*stats
)
300 fp
= fopen("/proc/softirqs", "r");
302 panic("Cannot open /proc/softirqs!\n");
304 cpus
= get_number_cpus();
305 buff_len
= cpus
* 128;
306 buff
= xmalloc(buff_len
);
308 memset(buff
, 0, buff_len
);
310 while (fgets(buff
, buff_len
, fp
) != NULL
) {
311 buff
[buff_len
- 1] = 0;
313 if ((ptr
= strstr(buff
, "NET_TX:")))
314 net_type
= softirqs_net_tx
;
315 else if ((ptr
= strstr(buff
, "NET_RX:")))
316 net_type
= softirqs_net_rx
;
320 for (ptr
+= strlen("NET_xX:"), i
= 0; i
< cpus
; ++i
) {
322 case softirqs_net_tx
:
323 stats
->irqs_stx
[i
] = strtol(ptr
, &ptr
, 10);
325 case softirqs_net_rx
:
326 stats
->irqs_srx
[i
] = strtol(ptr
, &ptr
, 10);
331 memset(buff
, 0, buff_len
);
339 static int stats_proc_memory(struct ifstat
*stats
)
341 char *ptr
, buff
[256];
344 fp
= fopen("/proc/meminfo", "r");
346 panic("Cannot open /proc/meminfo!\n");
348 memset(buff
, 0, sizeof(buff
));
350 while (fgets(buff
, sizeof(buff
), fp
) != NULL
) {
351 buff
[sizeof(buff
) - 1] = 0;
353 if ((ptr
= strstr(buff
, "MemTotal:"))) {
354 ptr
+= strlen("MemTotal:");
355 stats
->mem_total
= strtoul(ptr
, &ptr
, 10);
356 } else if ((ptr
= strstr(buff
, "MemFree:"))) {
357 ptr
+= strlen("MemFree:");
358 stats
->mem_free
= strtoul(ptr
, &ptr
, 10);
361 memset(buff
, 0, sizeof(buff
));
368 static int stats_proc_system(struct ifstat
*stats
)
371 char *ptr
, buff
[256];
374 fp
= fopen("/proc/stat", "r");
376 panic("Cannot open /proc/stat!\n");
378 cpus
= get_number_cpus();
380 memset(buff
, 0, sizeof(buff
));
382 while (fgets(buff
, sizeof(buff
), fp
) != NULL
) {
383 buff
[sizeof(buff
) - 1] = 0;
385 if ((ptr
= strstr(buff
, "cpu"))) {
386 ptr
+= strlen("cpu");
390 cpu
= strtol(ptr
, &ptr
, 10);
393 if (sscanf(ptr
, "%lu%lu%lu%lu%lu",
394 &stats
->cpu_user
[cpu
],
395 &stats
->cpu_nice
[cpu
],
396 &stats
->cpu_sys
[cpu
],
397 &stats
->cpu_idle
[cpu
],
398 &stats
->cpu_iow
[cpu
]) != 5)
400 } else if ((ptr
= strstr(buff
, "ctxt"))) {
401 ptr
+= strlen("ctxt");
402 stats
->cswitch
= strtoul(ptr
, &ptr
, 10);
403 } else if ((ptr
= strstr(buff
, "processes"))) {
404 ptr
+= strlen("processes");
405 stats
->forks
= strtoul(ptr
, &ptr
, 10);
406 } else if ((ptr
= strstr(buff
, "procs_running"))) {
407 ptr
+= strlen("procs_running");
408 stats
->procs_run
= strtoul(ptr
, &ptr
, 10);
409 } else if ((ptr
= strstr(buff
, "procs_blocked"))) {
410 ptr
+= strlen("procs_blocked");
411 stats
->procs_iow
= strtoul(ptr
, &ptr
, 10);
414 memset(buff
, 0, sizeof(buff
));
421 static int adjust_dbm_level(int in_dbm
, int dbm_val
)
426 return dbm_val
- 0x100;
429 static int stats_wireless(const char *ifname
, struct ifstat
*stats
)
432 struct iw_statistics ws
;
434 ret
= wireless_sigqual(ifname
, &ws
);
436 stats
->wifi
.bitrate
= 0;
440 stats
->wifi
.bitrate
= wireless_bitrate(ifname
);
442 stats
->wifi
.signal_level
=
443 adjust_dbm_level(ws
.qual
.updated
& IW_QUAL_DBM
, ws
.qual
.level
);
445 stats
->wifi
.link_qual
= ws
.qual
.qual
;
446 stats
->wifi
.link_qual_max
= wireless_rangemax_sigqual(ifname
);
451 #define DIFF1(member) do { diff->member = new->member - old->member; } while (0)
452 #define DIFF(member) do { \
453 if (sizeof(diff->member) != sizeof(new->member) || \
454 sizeof(diff->member) != sizeof(old->member)) \
456 bug_on((new->member - old->member) > (new->member)); \
460 static void stats_diff(struct ifstat
*old
, struct ifstat
*new,
485 DIFF1(wifi
.signal_level
);
486 DIFF1(wifi
.link_qual
);
491 cpus
= get_number_cpus();
493 for (i
= 0; i
< cpus
; ++i
) {
506 static void stats_fetch(const char *ifname
, struct ifstat
*stats
)
508 if (stats_proc_net_dev(ifname
, stats
) < 0)
509 panic("Cannot fetch device stats!\n");
510 if (stats_proc_softirqs(stats
) < 0)
511 panic("Cannot fetch software interrupts!\n");
512 if (stats_proc_memory(stats
) < 0)
513 panic("Cannot fetch memory stats!\n");
514 if (stats_proc_system(stats
) < 0)
515 panic("Cannot fetch system stats!\n");
517 stats_proc_interrupts((char *) ifname
, stats
);
519 stats_wireless(ifname
, stats
);
522 static void stats_sample_generic(const char *ifname
, uint64_t ms_interval
)
524 int cpus
= get_number_cpus();
526 stats_zero(&stats_old
, cpus
);
527 stats_zero(&stats_new
, cpus
);
528 stats_zero(&stats_delta
, cpus
);
530 stats_fetch(ifname
, &stats_old
);
531 usleep(ms_interval
* 1000);
532 stats_fetch(ifname
, &stats_new
);
534 stats_diff(&stats_old
, &stats_new
, &stats_delta
);
537 static int cmp_hits(const void *p1
, const void *p2
)
539 const struct cpu_hit
*h1
= p1
, *h2
= p2
;
542 * We want the hits sorted in descending order, thus reverse the return
545 if (h1
->hit
== h2
->hit
)
547 else if (h1
->hit
< h2
->hit
)
553 static int cmp_irqs_rel(const void *p1
, const void *p2
)
555 const struct cpu_hit
*h1
= p1
, *h2
= p2
;
558 * We want the hits sorted in descending order, thus reverse the return
561 if (h1
->irqs_rel
== h2
->irqs_rel
)
563 else if (h1
->irqs_rel
< h2
->irqs_rel
)
569 static int cmp_irqs_abs(const void *p1
, const void *p2
)
571 const struct cpu_hit
*h1
= p1
, *h2
= p2
;
574 * We want the hits sorted in descending order, thus reverse the return
577 if (h1
->irqs_abs
== h2
->irqs_abs
)
579 else if (h1
->irqs_abs
< h2
->irqs_abs
)
585 static void stats_top(const struct ifstat
*rel
, const struct ifstat
*abs
,
590 for (i
= 0; i
< cpus
; ++i
) {
592 cpu_hits
[i
].hit
= rel
->cpu_user
[i
] + rel
->cpu_nice
[i
] + rel
->cpu_sys
[i
];
593 cpu_hits
[i
].irqs_rel
= rel
->irqs
[i
];
594 cpu_hits
[i
].irqs_abs
= abs
->irqs
[i
];
598 static void screen_init(WINDOW
**screen
)
600 (*screen
) = initscr();
605 nodelay((*screen
), TRUE
);
607 keypad(stdscr
, TRUE
);
613 static void screen_header(WINDOW
*screen
, const char *ifname
, int *voff
,
614 uint64_t ms_interval
, unsigned int top_cpus
)
618 struct ethtool_drvinfo drvinf
;
619 u32 rate
= device_bitrate(ifname
);
620 int link
= ethtool_link(ifname
);
622 memset(&drvinf
, 0, sizeof(drvinf
));
623 ethtool_drvinf(ifname
, &drvinf
);
625 memset(buff
, 0, sizeof(buff
));
627 len
+= snprintf(buff
+ len
, sizeof(buff
) - len
, " %uMbit/s", rate
);
629 len
+= snprintf(buff
+ len
, sizeof(buff
) - len
, " link:%s",
630 link
== 0 ? "no" : "yes");
632 mvwprintw(screen
, (*voff
)++, 2,
633 "Kernel net/sys statistics for %s (%s%s), t=%lums, cpus=%u/%u"
635 ifname
, drvinf
.driver
, buff
, ms_interval
, top_cpus
, get_number_cpus());
638 static void screen_net_dev_rel(WINDOW
*screen
, const struct ifstat
*rel
,
643 mvwprintw(screen
, (*voff
)++, 0,
644 " rx: %16.3llf MiB/t "
648 ((long double) rel
->rx_bytes
) / (1LLU << 20),
649 rel
->rx_packets
, rel
->rx_drops
, rel
->rx_errors
);
651 mvwprintw(screen
, (*voff
)++, 0,
652 " tx: %16.3llf MiB/t "
656 ((long double) rel
->tx_bytes
) / (1LLU << 20),
657 rel
->tx_packets
, rel
->tx_drops
, rel
->tx_errors
);
662 static void screen_net_dev_abs(WINDOW
*screen
, const struct ifstat
*abs
,
665 mvwprintw(screen
, (*voff
)++, 2,
670 ((long double) abs
->rx_bytes
) / (1LLU << 20),
671 abs
->rx_packets
, abs
->rx_drops
, abs
->rx_errors
);
673 mvwprintw(screen
, (*voff
)++, 2,
678 ((long double) abs
->tx_bytes
) / (1LLU << 20),
679 abs
->tx_packets
, abs
->tx_drops
, abs
->tx_errors
);
682 static void screen_sys_mem(WINDOW
*screen
, const struct ifstat
*rel
,
683 const struct ifstat
*abs
, int *voff
)
685 mvwprintw(screen
, (*voff
)++, 2,
691 (100.0 * (abs
->mem_total
- abs
->mem_free
)) / abs
->mem_total
,
692 abs
->procs_run
, abs
->procs_iow
);
695 static void screen_percpu_states(WINDOW
*screen
, const struct ifstat
*rel
,
700 int max_padd
= padding_from_num(get_number_cpus());
702 for (i
= 0; i
< cpus
; ++i
) {
703 unsigned int idx
= cpu_hits
[i
].idx
;
705 all
= rel
->cpu_user
[idx
] + rel
->cpu_nice
[idx
] + rel
->cpu_sys
[idx
] +
706 rel
->cpu_idle
[idx
] + rel
->cpu_iow
[idx
];
708 mvwprintw(screen
, (*voff
)++, 2,
709 "cpu%*d: %13.1lf%% usr/t "
712 "%11.1lf%% iow/t ", max_padd
, idx
,
713 100.0 * (rel
->cpu_user
[idx
] + rel
->cpu_nice
[idx
]) / all
,
714 100.0 * rel
->cpu_sys
[idx
] / all
,
715 100.0 * rel
->cpu_idle
[idx
] / all
,
716 100.0 * rel
->cpu_iow
[idx
] / all
);
720 static void screen_percpu_irqs_rel(WINDOW
*screen
, const struct ifstat
*rel
,
724 int max_padd
= padding_from_num(get_number_cpus());
726 for (i
= 0; i
< cpus
; ++i
) {
727 unsigned int idx
= cpu_hits
[i
].idx
;
729 mvwprintw(screen
, (*voff
)++, 2,
730 "cpu%*d: %14llu irqs/t "
732 "%15llu sirq tx/t ", max_padd
, idx
,
739 static void screen_percpu_irqs_abs(WINDOW
*screen
, const struct ifstat
*abs
,
743 int max_padd
= padding_from_num(get_number_cpus());
745 for (i
= 0; i
< cpus
; ++i
) {
746 unsigned int idx
= cpu_hits
[i
].idx
;
748 mvwprintw(screen
, (*voff
)++, 2,
749 "cpu%*d: %14llu irqs", max_padd
, idx
,
754 static void screen_wireless(WINDOW
*screen
, const struct ifstat
*rel
,
755 const struct ifstat
*abs
, int *voff
)
757 if (iswireless(abs
)) {
758 mvwprintw(screen
, (*voff
)++, 2,
759 "linkqual: %7d/%d (%d/t) ",
761 abs
->wifi
.link_qual_max
,
762 rel
->wifi
.link_qual
);
764 mvwprintw(screen
, (*voff
)++, 2,
765 "signal: %8d dBm (%d dBm/t) ",
766 abs
->wifi
.signal_level
,
767 rel
->wifi
.signal_level
);
771 static void screen_update(WINDOW
*screen
, const char *ifname
, const struct ifstat
*rel
,
772 const struct ifstat
*abs
, int *first
, uint64_t ms_interval
,
773 unsigned int top_cpus
)
775 int cpus
, top
, voff
= 1, cvoff
= 2;
779 cpus
= get_number_cpus();
780 top
= min(cpus
, top_cpus
);
782 stats_top(rel
, abs
, cpus
);
784 qsort(cpu_hits
, cpus
, sizeof(*cpu_hits
), cmp_hits
);
786 screen_header(screen
, ifname
, &voff
, ms_interval
, top_cpus
);
789 screen_net_dev_rel(screen
, rel
, &voff
);
792 screen_net_dev_abs(screen
, abs
, &voff
);
795 screen_sys_mem(screen
, rel
, abs
, &voff
);
798 screen_percpu_states(screen
, rel
, top
, &voff
);
800 qsort(cpu_hits
, cpus
, sizeof(*cpu_hits
), cmp_irqs_rel
);
803 screen_percpu_irqs_rel(screen
, rel
, top
, &voff
);
805 qsort(cpu_hits
, cpus
, sizeof(*cpu_hits
), cmp_irqs_abs
);
808 screen_percpu_irqs_abs(screen
, abs
, top
, &voff
);
811 screen_wireless(screen
, rel
, abs
, &voff
);
814 mvwprintw(screen
, cvoff
, 2, "Collecting data ...");
817 mvwprintw(screen
, cvoff
, 2, " ");
824 static void screen_end(void)
829 static int screen_main(const char *ifname
, uint64_t ms_interval
,
830 unsigned int top_cpus
)
834 screen_init(&stats_screen
);
838 if (key
== 'q' || key
== 0x1b || key
== KEY_F(10))
841 screen_update(stats_screen
, ifname
, &stats_delta
, &stats_new
,
842 &first
, ms_interval
, top_cpus
);
844 stats_sample_generic(ifname
, ms_interval
);
852 static void term_csv(const char *ifname
, const struct ifstat
*rel
,
853 const struct ifstat
*abs
, uint64_t ms_interval
)
857 printf("%ld ", time(0));
859 printf("%llu ", rel
->rx_bytes
);
860 printf("%llu ", rel
->rx_packets
);
861 printf("%llu ", rel
->rx_drops
);
862 printf("%llu ", rel
->rx_errors
);
864 printf("%llu ", abs
->rx_bytes
);
865 printf("%llu ", abs
->rx_packets
);
866 printf("%llu ", abs
->rx_drops
);
867 printf("%llu ", abs
->rx_errors
);
869 printf("%llu ", rel
->tx_bytes
);
870 printf("%llu ", rel
->tx_packets
);
871 printf("%llu ", rel
->tx_drops
);
872 printf("%llu ", rel
->tx_errors
);
874 printf("%llu ", abs
->tx_bytes
);
875 printf("%llu ", abs
->tx_packets
);
876 printf("%llu ", abs
->tx_drops
);
877 printf("%llu ", abs
->tx_errors
);
879 printf("%u ", rel
->cswitch
);
880 printf("%lu ", abs
->mem_free
);
881 printf("%lu ", abs
->mem_total
- abs
->mem_free
);
882 printf("%lu ", abs
->mem_total
);
883 printf("%u ", abs
->procs_run
);
884 printf("%u ", abs
->procs_iow
);
886 cpus
= get_number_cpus();
888 for (i
= 0; i
< cpus
; ++i
) {
889 printf("%lu ", rel
->cpu_user
[i
]);
890 printf("%lu ", rel
->cpu_nice
[i
]);
891 printf("%lu ", rel
->cpu_sys
[i
]);
892 printf("%lu ", rel
->cpu_idle
[i
]);
893 printf("%lu ", rel
->cpu_iow
[i
]);
895 printf("%llu ", rel
->irqs
[i
]);
896 printf("%llu ", abs
->irqs
[i
]);
898 printf("%llu ", rel
->irqs_srx
[i
]);
899 printf("%llu ", abs
->irqs_srx
[i
]);
901 printf("%llu ", rel
->irqs_stx
[i
]);
902 printf("%llu ", abs
->irqs_stx
[i
]);
905 if (iswireless(abs
)) {
906 printf("%u ", rel
->wifi
.link_qual
);
907 printf("%u ", abs
->wifi
.link_qual
);
908 printf("%u ", abs
->wifi
.link_qual_max
);
910 printf("%d ", rel
->wifi
.signal_level
);
911 printf("%d ", abs
->wifi
.signal_level
);
918 static void term_csv_header(const char *ifname
, const struct ifstat
*abs
,
919 uint64_t ms_interval
)
923 printf("# gnuplot dump (#col:description)\n");
924 printf("# networking interface: %s\n", ifname
);
925 printf("# sampling interval (t): %lu ms\n", ms_interval
);
926 printf("# %d:unixtime ", j
++);
928 printf("%d:rx-bytes-per-t ", j
++);
929 printf("%d:rx-pkts-per-t ", j
++);
930 printf("%d:rx-drops-per-t ", j
++);
931 printf("%d:rx-errors-per-t ", j
++);
933 printf("%d:rx-bytes ", j
++);
934 printf("%d:rx-pkts ", j
++);
935 printf("%d:rx-drops ", j
++);
936 printf("%d:rx-errors ", j
++);
938 printf("%d:tx-bytes-per-t ", j
++);
939 printf("%d:tx-pkts-per-t ", j
++);
940 printf("%d:tx-drops-per-t ", j
++);
941 printf("%d:tx-errors-per-t ", j
++);
943 printf("%d:tx-bytes ", j
++);
944 printf("%d:tx-pkts ", j
++);
945 printf("%d:tx-drops ", j
++);
946 printf("%d:tx-errors ", j
++);
948 printf("%d:context-switches-per-t ", j
++);
949 printf("%d:mem-free ", j
++);
950 printf("%d:mem-used ", j
++);
951 printf("%d:mem-total ", j
++);
952 printf("%d:procs-in-run ", j
++);
953 printf("%d:procs-in-iow ", j
++);
955 cpus
= get_number_cpus();
957 for (i
= 0, j
= 22; i
< cpus
; ++i
) {
958 printf("%d:cpu%i-usr-per-t ", j
++, i
);
959 printf("%d:cpu%i-nice-per-t ", j
++, i
);
960 printf("%d:cpu%i-sys-per-t ", j
++, i
);
961 printf("%d:cpu%i-idle-per-t ", j
++, i
);
962 printf("%d:cpu%i-iow-per-t ", j
++, i
);
964 printf("%d:cpu%i-net-irqs-per-t ", j
++, i
);
965 printf("%d:cpu%i-net-irqs ", j
++, i
);
967 printf("%d:cpu%i-net-rx-soft-irqs-per-t ", j
++, i
);
968 printf("%d:cpu%i-net-rx-soft-irqs ", j
++, i
);
969 printf("%d:cpu%i-net-tx-soft-irqs-per-t ", j
++, i
);
970 printf("%d:cpu%i-net-tx-soft-irqs ", j
++, i
);
973 if (iswireless(abs
)) {
974 printf("%d:wifi-link-qual-per-t ", j
++);
975 printf("%d:wifi-link-qual ", j
++);
976 printf("%d:wifi-link-qual-max ", j
++);
978 printf("%d:wifi-signal-dbm-per-t ", j
++);
979 printf("%d:wifi-signal-dbm ", j
++);
987 static int term_main(const char *ifname
, uint64_t ms_interval
,
988 unsigned int top_cpus __maybe_unused
)
993 stats_sample_generic(ifname
, ms_interval
);
997 term_csv_header(ifname
, &stats_new
, ms_interval
);
1000 term_csv(ifname
, &stats_delta
, &stats_new
, ms_interval
);
1001 } while (stats_loop
&& !sigint
);
1006 int main(int argc
, char **argv
)
1009 int c
, opt_index
, ret
, cpus
, promisc
= 0;
1010 unsigned int top_cpus
= 10;
1011 uint64_t interval
= 1000;
1012 char *ifname
= NULL
;
1013 int (*func_main
)(const char *ifname
, uint64_t ms_interval
,
1014 unsigned int top_cpus
) = screen_main
;
1019 while ((c
= getopt_long(argc
, argv
, short_options
, long_options
,
1020 &opt_index
)) != EOF
) {
1029 ifname
= xstrndup(optarg
, IFNAMSIZ
);
1032 interval
= strtoul(optarg
, NULL
, 10);
1035 top_cpus
= strtoul(optarg
, NULL
, 10);
1044 func_main
= term_main
;
1050 panic("Option -%c requires an argument!\n",
1053 if (isprint(optopt
))
1054 printf("Unknown option character `0x%X\'!\n", optopt
);
1066 ifname
= xstrndup(argv
[1], IFNAMSIZ
);
1068 panic("No networking device given!\n");
1070 if (!strncmp("lo", ifname
, IFNAMSIZ
))
1071 panic("lo is not supported!\n");
1072 if (device_mtu(ifname
) == 0)
1073 panic("This is no networking device!\n");
1075 register_signal(SIGINT
, signal_handler
);
1076 register_signal(SIGHUP
, signal_handler
);
1078 cpus
= get_number_cpus();
1079 top_cpus
= min(top_cpus
, cpus
);
1081 stats_alloc(&stats_old
, cpus
);
1082 stats_alloc(&stats_new
, cpus
);
1083 stats_alloc(&stats_delta
, cpus
);
1085 cpu_hits
= xzmalloc(cpus
* sizeof(*cpu_hits
));
1088 ifflags
= enter_promiscuous_mode(ifname
);
1089 ret
= func_main(ifname
, interval
, top_cpus
);
1091 leave_promiscuous_mode(ifname
, ifflags
);