1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
#include <getopt.h>
#include <signal.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/time.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <unistd.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#define PROC_NET_DEV "/proc/net/dev"
struct iface {
char interface[IFNAMSIZ];
struct timeval timestamp;
unsigned long long rx_bytes;
unsigned long long tx_bytes;
};
volatile bool q = false;
bool use_bits = false;
struct iface *interfaces = NULL;
size_t no_iface = 0;
void endHandler(int signum) {
q = true;
}
void print_bps(double bytesPerSecond) {
const char* prefixes[] = { "", "k", "M", "G", "T", "P", "E", "Z", "Y" };
double value;
const char* unit;
unsigned prefix = 0;
// Calculate the value
if(use_bits) {
value = bytesPerSecond * 8;
unit = "b/s";
}
else {
value = bytesPerSecond;
unit = "B/s";
}
// Choose the prefix
while (prefix < (sizeof(prefixes) / sizeof(const char*)) && value > 1000.) {
value /= 1000.;
prefix++;
}
// Format the string
printf("%.2f %s%s", value, prefixes[prefix], unit);
}
void print_stats() {
// Open /proc/net/dev
FILE *dev = fopen(PROC_NET_DEV, "r");
if (!dev) {
fprintf(stderr, "cannot open %s - %s\n", PROC_NET_DEV, strerror(errno));
exit(EXIT_FAILURE);
}
// Read /proc/dev/net
while (!feof(dev)) {
char buf[512];
char *name, *stats;
long long unsigned rx_bytes, tx_bytes;
struct timezone unused_timezone;
struct timeval timestamp;
ptrdiff_t len = 0;
// Read a line
fgets(buf, sizeof(buf), dev);
// get timestamp
gettimeofday(×tamp, &unused_timezone);
// Find the colon separating the name from the statistics
stats = strchr(buf, ':');
if (!stats)
continue;
// Get a pointer to the statistics
*stats = 0;
stats++;
// Remove leading whitespace from the name
name = buf;
while (*name == ' ' || *name == '\t') {
name++;
}
len = name - buf;
// Parse the statistics, alls well, then get this shit going, otherwise f it.
if(sscanf(stats, "%Lu %*Lu %*Lu %*Lu %*Lu %*Lu %*Lu %*Lu %Lu",
&rx_bytes, &tx_bytes) == 2) {
size_t i = 0;
bool found = false;
if(interfaces == NULL) {
goto skip;
}
for(i = 0; i < no_iface; i++) {
// if it exists in our interfaces, great. reuse the iface struct
if(strncmp(name, interfaces[i].interface, len) == 0) {
found = true;
break;
}
}
skip:
if(found) {
double timeDelta, rx_speed, tx_speed = 0;
// print our new speeds
timeDelta = (timestamp.tv_sec - interfaces[i].timestamp.tv_sec) * 1.0 +
(timestamp.tv_usec - interfaces[i].timestamp.tv_usec) * .000001;
rx_speed = (rx_bytes - interfaces[i].rx_bytes) / timeDelta;
tx_speed = (tx_bytes - interfaces[i].tx_bytes) / timeDelta;
printf("%s (", interfaces[i].interface);
print_bps(rx_speed);
printf(", ");
print_bps(tx_speed);
printf(")\t");
// update our interface
strncpy(interfaces[i].interface, name, len);
interfaces[i].rx_bytes = rx_bytes;
interfaces[i].timestamp = timestamp;
interfaces[i].tx_bytes = tx_bytes;
}
else {
interfaces = realloc(interfaces, sizeof(struct iface) * (no_iface + 1));
if(interfaces == NULL) {
fprintf(stderr, "Error: %s\n", strerror(errno));
exit(1);
}
strcpy(interfaces[no_iface].interface, name);
interfaces[no_iface].rx_bytes = rx_bytes;
interfaces[no_iface].tx_bytes = tx_bytes;
no_iface++;
}
}
}
// Close the file
fclose(dev);
}
int main(int argc, char **argv) {
// parse the command line
int c;
int interval = 10 * 100000;
while ((c = getopt (argc, argv, "bd:hv")) != -1)
switch (c)
{
case 'b':
use_bits = true;
break;
case 'd':
// Magic numbers? fuck it that's not a magic number, that's a 'real' number.
interval = atoi(optarg) * 100000;
break;
case 'h':
printf("USAGE: fsbm, -b specifies bits, -d sets interval in 10ths of seconds, 1 sec default\n");
exit(EXIT_SUCCESS);
break;
case 'v':
printf("Version 1\n");
exit(EXIT_SUCCESS);
break;
case '?':
fprintf(stderr,"bad flag\n");
break;
default:
exit(EXIT_FAILURE);
}
// Catch SIGINT
signal(SIGINT, endHandler);
// populate first.
print_stats();
while (!q) {
print_stats();
printf("\n");
usleep(interval);
}
return EXIT_SUCCESS;
}
|