]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ifstat: support 64 interface stats
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 29 Feb 2024 04:37:28 +0000 (20:37 -0800)
committerDavid Ahern <dsahern@kernel.org>
Wed, 6 Mar 2024 16:20:49 +0000 (16:20 +0000)
The 32 bit statistics are problematic since 32 bit value can
easily wraparound at high speed. Use 64 bit stats if available.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David Ahern <dsahern@kernel.org>
misc/ifstat.c

index 18171a2ca5d52a87e5411404663773b5c3508fc9..0eef8245fbf7c1c38249054df43abc0bbff01b89 100644 (file)
@@ -51,7 +51,7 @@ int sub_type;
 char info_source[128];
 int source_mismatch;
 
-#define MAXS (sizeof(struct rtnl_link_stats)/sizeof(__u32))
+#define MAXS (sizeof(struct rtnl_link_stats64)/sizeof(__u64))
 #define NO_SUB_TYPE 0xffff
 
 struct ifstat_ent {
@@ -60,7 +60,7 @@ struct ifstat_ent {
        int                     ifindex;
        unsigned long long      val[MAXS];
        double                  rate[MAXS];
-       __u32                   ival[MAXS];
+       __u64                   ival[MAXS];
 };
 
 static const char *stats[MAXS] = {
@@ -74,19 +74,25 @@ static const char *stats[MAXS] = {
        "tx_dropped",
        "multicast",
        "collisions",
+
        "rx_length_errors",
        "rx_over_errors",
        "rx_crc_errors",
        "rx_frame_errors",
        "rx_fifo_errors",
        "rx_missed_errors",
+
        "tx_aborted_errors",
        "tx_carrier_errors",
        "tx_fifo_errors",
        "tx_heartbeat_errors",
        "tx_window_errors",
+
        "rx_compressed",
-       "tx_compressed"
+       "tx_compressed",
+       "rx_nohandler",
+
+       "rx_otherhost_dropped",
 };
 
 struct ifstat_ent *kern_db;
@@ -174,7 +180,7 @@ static int get_nlmsg(struct nlmsghdr *m, void *arg)
                return 0;
 
        parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
-       if (tb[IFLA_IFNAME] == NULL || tb[IFLA_STATS] == NULL)
+       if (tb[IFLA_IFNAME] == NULL)
                return 0;
 
        n = malloc(sizeof(*n));
@@ -182,10 +188,31 @@ static int get_nlmsg(struct nlmsghdr *m, void *arg)
                errno = ENOMEM;
                return -1;
        }
+
        n->ifindex = ifi->ifi_index;
        n->name = strdup(RTA_DATA(tb[IFLA_IFNAME]));
-       memcpy(&n->ival, RTA_DATA(tb[IFLA_STATS]), sizeof(n->ival));
+       if (!n->name) {
+               free(n);
+               errno = ENOMEM;
+               return -1;
+       }
+
        memset(&n->rate, 0, sizeof(n->rate));
+
+       if (tb[IFLA_STATS64]) {
+               memcpy(&n->ival, RTA_DATA(tb[IFLA_STATS64]), sizeof(n->ival));
+       } else if (tb[IFLA_STATS]) {
+               __u32 *stats = RTA_DATA(tb[IFLA_STATS]);
+
+               /* expand 32 bit values to 64 bit */
+               for (i = 0; i < MAXS; i++)
+                       n->ival[i] = stats[i];
+       } else {
+               /* missing stats? */
+               free(n);
+               return 0;
+       }
+
        for (i = 0; i < MAXS; i++)
                n->val[i] = n->ival[i];
        n->next = kern_db;