2 top.c -- Show real-time statistics from a running tincd
3 Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #undef KEY_EVENT /* There are conflicting declarations for KEY_EVENT in Windows wincon.h and curses.h. */
27 #include "control_common.h"
34 typedef struct nodestats_t {
41 float in_packets_rate;
43 float out_packets_rate;
48 static const char *const sortname[] = {
58 static int sortmode = 0;
59 static bool cumulative = false;
61 static list_t node_list;
62 static struct timeval cur, prev, diff;
63 static int delay = 1000;
64 static bool changed = true;
65 static const char *bunit = "bytes";
66 static float bscale = 1;
67 static const char *punit = "pkts";
68 static float pscale = 1;
70 static bool update(int fd) {
71 if(!sendline(fd, "%d %d", CONTROL, REQ_DUMP_TRAFFIC)) {
75 gettimeofday(&cur, NULL);
77 timersub(&cur, &prev, &diff);
79 float interval = diff.tv_sec + diff.tv_usec * 1e-6;
90 for list_each(nodestats_t, ns, &node_list) {
94 while(recvline(fd, line, sizeof(line))) {
95 int n = sscanf(line, "%d %d %4095s %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64, &code, &req, name, &in_packets, &in_bytes, &out_packets, &out_bytes);
105 nodestats_t *found = NULL;
107 for list_each(nodestats_t, ns, &node_list) {
108 int result = strcmp(name, ns->name);
118 found = xzalloc(sizeof(*found));
119 found->name = xstrdup(name);
120 list_insert_before(&node_list, node, found);
127 found = xzalloc(sizeof(*found));
128 found->name = xstrdup(name);
129 list_insert_tail(&node_list, found);
134 found->in_packets_rate = (in_packets - found->in_packets) / interval;
135 found->in_bytes_rate = (in_bytes - found->in_bytes) / interval;
136 found->out_packets_rate = (out_packets - found->out_packets) / interval;
137 found->out_bytes_rate = (out_bytes - found->out_bytes) / interval;
138 found->in_packets = in_packets;
139 found->in_bytes = in_bytes;
140 found->out_packets = out_packets;
141 found->out_bytes = out_bytes;
147 static int cmpfloat(float a, float b) {
157 static int cmpu64(uint64_t a, uint64_t b) {
167 static int sortfunc(const void *a, const void *b) {
168 const nodestats_t *na = *(const nodestats_t **)a;
169 const nodestats_t *nb = *(const nodestats_t **)b;
175 result = -cmpu64(na->in_packets, nb->in_packets);
177 result = -cmpfloat(na->in_packets_rate, nb->in_packets_rate);
184 result = -cmpu64(na->in_bytes, nb->in_bytes);
186 result = -cmpfloat(na->in_bytes_rate, nb->in_bytes_rate);
193 result = -cmpu64(na->out_packets, nb->out_packets);
195 result = -cmpfloat(na->out_packets_rate, nb->out_packets_rate);
202 result = -cmpu64(na->out_bytes, nb->out_bytes);
204 result = -cmpfloat(na->out_bytes_rate, nb->out_bytes_rate);
211 result = -cmpu64(na->in_packets + na->out_packets, nb->in_packets + nb->out_packets);
213 result = -cmpfloat(na->in_packets_rate + na->out_packets_rate, nb->in_packets_rate + nb->out_packets_rate);
220 result = -cmpu64(na->in_bytes + na->out_bytes, nb->in_bytes + nb->out_bytes);
222 result = -cmpfloat(na->in_bytes_rate + na->out_bytes_rate, nb->in_bytes_rate + nb->out_bytes_rate);
228 result = strcmp(na->name, nb->name);
235 return na->i - nb->i;
239 static void redraw(void) {
242 mvprintw(0, 0, "Tinc %-16s Nodes: %4d Sort: %-10s %s", netname ? netname : "", node_list.count, sortname[sortmode], cumulative ? "Cumulative" : "Current");
244 mvprintw(2, 0, "Node IN %s IN %s OUT %s OUT %s", punit, bunit, punit, bunit);
245 chgat(-1, A_REVERSE, 0, NULL);
247 static nodestats_t **sorted = 0;
252 sorted = xrealloc(sorted, node_list.count * sizeof(*sorted));
254 for list_each(nodestats_t, ns, &node_list) {
261 for(int i = 0; i < n; i++) {
266 qsort(sorted, n, sizeof(*sorted), sortfunc);
269 for(int i = 0, row = 3; i < n; i++, row++) {
270 nodestats_t *node = sorted[i];
273 if(node->in_packets_rate || node->out_packets_rate) {
282 mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f",
283 node->name, node->in_packets * pscale, node->in_bytes * bscale, node->out_packets * pscale, node->out_bytes * bscale);
285 mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f",
286 node->name, node->in_packets_rate * pscale, node->in_bytes_rate * bscale, node->out_packets_rate * pscale, node->out_bytes_rate * bscale);
310 float input = delay * 1e-3;
311 mvprintw(1, 0, "Change delay from %.1fs to: ", input);
324 cumulative = !cumulative;