lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Wed,  2 Apr 2014 09:19:00 -0700
From:	David Decotigny <decot@...glers.com>
To:	netdev@...r.kernel.org
Cc:	David Decotigny <decot@...glers.com>
Subject: [PATCH iproute2 v1] iproute2: show counter of carrier on<->off transitions

This patch allows to display the current counter of carrier on<->off
transitions (IFLA_CARRIER_CHANGES, see kernel commit "expose number of
carrier on/off changes"):

  ip -s -s link show dev eth0
  ...
  2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 etc.
    link/ether ............ brd ff:ff:ff:ff:ff:ff
    RX: bytes  packets  errors  dropped overrun mcast
    134705     758      0       0       0       0
    RX errors: length  crc     frame   fifo    missed
               0        0       0       0       0
    TX: bytes  packets  errors  dropped carrier collsns
    77374      731      0       0       0       0
    TX errors: aborted fifo    window  heartbeat
               0        0       0       0
    link: carrier_changes 4

Tested:
  - kernel with patch "net-sysfs: expose number of carrier on/off
    changes": see above
  - kernel wthout the patch: line "link:" not displayed (as expected)

Signed-off-by: David Decotigny <decot@...glers.com>
---
 include/linux/if_link.h | 1 +
 ip/ipaddress.c          | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/include/linux/if_link.h b/include/linux/if_link.h
index f08505c..84fca1e 100644
--- a/include/linux/if_link.h
+++ b/include/linux/if_link.h
@@ -144,6 +144,7 @@ enum {
 	IFLA_NUM_RX_QUEUES,
 	IFLA_CARRIER,
 	IFLA_PHYS_PORT_ID,
+	IFLA_CARRIER_CHANGES,
 	__IFLA_MAX
 };
 
diff --git a/ip/ipaddress.c b/ip/ipaddress.c
index 14d1720..78b80ee 100644
--- a/ip/ipaddress.c
+++ b/ip/ipaddress.c
@@ -527,6 +527,11 @@ int print_linkinfo(const struct sockaddr_nl *who,
 			print_link_stats(fp, RTA_DATA(tb[IFLA_STATS]));
 	}
 
+	if (do_link && (show_stats > 1) && tb[IFLA_CARRIER_CHANGES]) {
+		fprintf(fp, "%s    link: carrier_changes %u", _SL_,
+			*(int*)RTA_DATA(tb[IFLA_CARRIER_CHANGES]));
+	}
+
 	if (do_link && tb[IFLA_VFINFO_LIST] && tb[IFLA_NUM_VF]) {
 		struct rtattr *i, *vflist = tb[IFLA_VFINFO_LIST];
 		int rem = RTA_PAYLOAD(vflist);
-- 
1.9.1.423.g4596e3a

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ