2018-05-19 00:31:33 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
2018-05-19 13:07:05 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-05-19 00:31:33 +02:00
|
|
|
const char *
|
|
|
|
netspeed_rx(const char *interface)
|
|
|
|
{
|
2018-05-19 13:07:05 +02:00
|
|
|
uint64_t oldrxbytes;
|
|
|
|
static uint64_t rxbytes = 0;
|
2018-05-19 00:31:33 +02:00
|
|
|
extern const unsigned int interval;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
oldrxbytes = rxbytes;
|
2018-05-19 13:07:05 +02:00
|
|
|
|
2018-05-19 19:33:04 +02:00
|
|
|
if (esnprintf(path, sizeof(path),
|
|
|
|
"/sys/class/net/%s/statistics/rx_bytes",
|
|
|
|
interface) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 00:31:33 +02:00
|
|
|
if (pscanf(path, "%llu", &rxbytes) != 1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:52:17 +02:00
|
|
|
if (oldrxbytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 00:31:33 +02:00
|
|
|
|
2018-05-19 22:52:17 +02:00
|
|
|
return fmt_human_2((rxbytes - oldrxbytes) *
|
|
|
|
1000 / interval, "B/s");
|
2018-05-19 00:31:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
netspeed_tx(const char *interface)
|
|
|
|
{
|
2018-05-19 13:07:05 +02:00
|
|
|
uint64_t oldtxbytes;
|
|
|
|
static uint64_t txbytes = 0;
|
2018-05-19 00:31:33 +02:00
|
|
|
extern const unsigned int interval;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
oldtxbytes = txbytes;
|
2018-05-19 13:07:05 +02:00
|
|
|
|
2018-05-19 19:33:04 +02:00
|
|
|
if (esnprintf(path, sizeof(path),
|
|
|
|
"/sys/class/net/%s/statistics/tx_bytes",
|
|
|
|
interface) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 00:31:33 +02:00
|
|
|
if (pscanf(path, "%llu", &txbytes) != 1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:52:17 +02:00
|
|
|
if (oldtxbytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 00:31:33 +02:00
|
|
|
|
2018-05-19 22:52:17 +02:00
|
|
|
return fmt_human_2((txbytes - oldtxbytes) *
|
|
|
|
1000 / interval, "B/s");
|
2018-05-19 00:31:33 +02:00
|
|
|
}
|
|
|
|
#elif defined(__OpenBSD__)
|
2018-05-19 01:29:20 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
|
|
|
|
const char *
|
|
|
|
netspeed_rx(const char *interface)
|
|
|
|
{
|
|
|
|
struct ifaddrs *ifal, *ifa;
|
|
|
|
struct if_data *ifd;
|
2018-05-19 13:07:05 +02:00
|
|
|
uint64_t oldrxbytes;
|
|
|
|
static uint64_t rxbytes = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
extern const unsigned int interval;
|
2018-05-19 13:29:21 +02:00
|
|
|
int if_ok = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
|
2018-05-19 13:19:53 +02:00
|
|
|
oldrxbytes = rxbytes;
|
|
|
|
|
2018-05-19 01:29:20 +02:00
|
|
|
if (getifaddrs(&ifal) == -1) {
|
|
|
|
warn("getifaddrs failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 13:19:53 +02:00
|
|
|
rxbytes = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
for (ifa = ifal; ifa; ifa = ifa->ifa_next) {
|
|
|
|
if (!strcmp(ifa->ifa_name, interface) &&
|
|
|
|
(ifd = (struct if_data *)ifa->ifa_data)) {
|
2018-05-19 11:23:16 +02:00
|
|
|
rxbytes += ifd->ifi_ibytes, if_ok = 1;
|
2018-05-19 01:29:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
freeifaddrs(ifal);
|
2018-05-19 11:23:16 +02:00
|
|
|
if (!if_ok) {
|
|
|
|
warn("reading 'if_data' failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:52:17 +02:00
|
|
|
if (oldrxbytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 01:29:20 +02:00
|
|
|
|
2018-05-19 22:52:17 +02:00
|
|
|
return fmt_human_2((rxbytes - oldrxbytes) *
|
|
|
|
1000 / interval, "B/s");
|
2018-05-19 01:29:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
netspeed_tx(const char *interface)
|
|
|
|
{
|
|
|
|
struct ifaddrs *ifal, *ifa;
|
|
|
|
struct if_data *ifd;
|
2018-05-19 13:07:05 +02:00
|
|
|
uint64_t oldtxbytes;
|
|
|
|
static uint64_t txbytes = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
extern const unsigned int interval;
|
2018-05-19 13:29:21 +02:00
|
|
|
int if_ok = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
|
2018-05-19 13:19:53 +02:00
|
|
|
oldtxbytes = txbytes;
|
|
|
|
|
2018-05-19 01:29:20 +02:00
|
|
|
if (getifaddrs(&ifal) == -1) {
|
|
|
|
warn("getifaddrs failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 13:19:53 +02:00
|
|
|
txbytes = 0;
|
2018-05-19 01:29:20 +02:00
|
|
|
for (ifa = ifal; ifa; ifa = ifa->ifa_next) {
|
|
|
|
if (!strcmp(ifa->ifa_name, interface) &&
|
|
|
|
(ifd = (struct if_data *)ifa->ifa_data)) {
|
2018-05-19 11:23:16 +02:00
|
|
|
txbytes += ifd->ifi_obytes, if_ok = 1;
|
2018-05-19 01:29:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
freeifaddrs(ifal);
|
2018-05-19 11:23:16 +02:00
|
|
|
if (!if_ok) {
|
|
|
|
warn("reading 'if_data' failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:52:17 +02:00
|
|
|
if (oldtxbytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 01:29:20 +02:00
|
|
|
|
2018-05-19 22:52:17 +02:00
|
|
|
return fmt_human_2((txbytes - oldtxbytes) *
|
|
|
|
1000 / interval, "B/s");
|
2018-05-19 01:29:20 +02:00
|
|
|
}
|
2018-05-19 00:31:33 +02:00
|
|
|
#endif
|