Message ID | 20240917023525.2571082-2-mohan.prasad@microchip.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | nic_basic_tests: Add selftest for doing basic tests of NIC driver | expand |
On Tue, Sep 17, 2024 at 08:04:07AM +0530, Mohan Prasad J wrote: > Add selftest file to test basic features of a NIC driver. > Tests for link modes, auto-negotiation are placed. > Selftest makes use of ksft modules and ethtool. > Add selftest file in the Makefile. Thanks for reworking this. > +++ b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > @@ -0,0 +1,145 @@ > +#!/usr/bin/env python3 > +# SPDX-License-Identifier: GPL-2.0 > + > +#Introduction: > +#This file has basic tests for generic NIC drivers. > +#The test comprises of auto-negotiation, speed and duplex checks. > +#Also has tests to check the throughput > +# > +#Setup: > +#Connect the DUT PC with NIC card to partner pc back via ethernet medium of your choice(RJ45, T1) > +# > +# DUT PC Partner PC > +#┌───────────────────────┐ ┌──────────────────────────┐ > +#│ │ │ │ > +#│ │ │ │ > +#│ ┌───────────┐ │ │ > +#│ │DUT NIC │ Eth │ │ > +#│ │Interface ─┼─────────────────────────┼─ any eth Interface │ > +#│ └───────────┘ │ │ > +#│ │ │ │ > +#│ │ │ │ > +#└───────────────────────┘ └──────────────────────────┘ > +# > +#Configurations: > +# Change the below configuration based on your hw needs. > +# """Default values""" > +sleep_time = 5 #time taken to wait for transitions to happen, in seconds. > +test_duration = 5 #performance test duration for the throughput check, in seconds. > +throughput_threshold = 0.8 #percentage of throughput required to pass the throughput > + > +import time > +import os > +import re > +import configparser > +import json > +from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_eq > +from lib.py import KsftFailEx, KsftSkipEx > +from lib.py import NetDrvEpEnv > +from lib.py import cmd > +from lib.py import ethtool > + > +"""Global variables""" > +common_link_modes = [] > + > +def get_ethtool_content(ifname: str, field: str): > + capture = False > + content = [] > + > + """Get the ethtool content for the interface""" > + process = ethtool(f"{ifname}") > + if process.ret != 0: > + raise KsftSkipEx(f"Error while getting the ethtool content for interface {ifname}") > + lines = process.stdout.splitlines() > + > + """Retrieve the content of the field""" > + for line in lines: > + if field in line: > + capture = True > + data = line.split(":")[1].strip() > + content.extend(data.split()) > + continue Since you have batteries included python: ethtool --json enp2s0 [sudo] password for andrew: [ { "ifname": "enp2s0", "supported-ports": [ "TP","MII" ], "supported-link-modes": [ "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Full" ], "supported-pause-frame-use": "Symmetric Receive-only", "supports-auto-negotiation": true, "supported-fec-modes": [ ], "advertised-link-modes": [ "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Full" ], "advertised-pause-frame-use": "Symmetric Receive-only", "advertised-auto-negotiation": true, "advertised-fec-modes": [ ], "auto-negotiation": false, "master-slave-cfg": "preferred slave", "master-slave-status": "unknown", "port": "Twisted Pair", "phyad": 0, "transceiver": "external", "supports-wake-on": "pumbg", "wake-on": "d", "link-detected": false } ] You can use a json library to do all the parsing for you. > +def get_speed_duplex(content): > + speed = [] > + duplex = [] > + """Check the link modes""" > + for data in content: > + parts = data.split('/') > + speed_value = re.match(r'\d+', parts[0]) > + if speed_value: > + speed.append(speed_value.group()) > + else: > + raise KsftSkipEx(f"No speed value found for interface {ifname}") > + duplex.append(parts[1].lower()) > + return speed, duplex > + > +def verify_link_up(ifname: str) -> None: > + """Verify whether the link is up""" > + with open(f"/sys/class/net/{ifname}/operstate", "r") as fp: > + link_state = fp.read().strip() > + > + if link_state == "down": > + raise KsftSkipEx(f"Link state of interface {ifname} is DOWN") > + > +def set_autonegotiation_state(ifname: str, state: str) -> None: > + content = get_ethtool_content(ifname, "Supported link modes:") > + speeds, duplex_modes = get_speed_duplex(content) > + speed = speeds[0] > + duplex = duplex_modes[0] > + if not speed or not duplex: > + KsftSkipEx("No speed or duplex modes found") > + """Set the autonegotiation state for the interface""" > + process = ethtool(f"-s {ifname} speed {speed} duplex {duplex} autoneg {state}") > + if process.ret != 0: > + raise KsftFailEx(f"Not able to set autoneg parameter for {ifname}") > + ksft_pr(f"Autoneg set as {state} for {ifname}") > + > +def verify_autonegotiation(ifname: str, expected_state: str) -> None: > + verify_link_up(ifname) > + """Verifying the autonegotiation state""" > + output = get_ethtool_content(ifname, "Auto-negotiation:") > + actual_state = output[0] > + > + ksft_eq(actual_state, expected_state) > + > +def test_link_modes(cfg) -> None: > + global common_link_modes > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link partner advertised link modes:") > + > + if link_modes and partner_link_modes: > + for idx1 in range(len(link_modes)): > + for idx2 in range(len(partner_link_modes)): > + if link_modes[idx1] == partner_link_modes[idx2]: > + common_link_modes.append(link_modes[idx1]) > + break > + else: > + raise KsftFailEx("No link modes available") > + > +def test_autonegotiation(cfg) -> None: > + autoneg = get_ethtool_content(cfg.ifname, "Supports auto-negotiation:") > + if autoneg[0] == "Yes": > + for state in ["off", "on"]: > + set_autonegotiation_state(cfg.ifname, state) > + time.sleep(sleep_time) One thing you could do here is look at "advertised-link-modes". You would expect it to list a single mode, matching the speed/duplex you requested. Andrew
> +def verify_link_up(ifname: str) -> None: > + """Verify whether the link is up""" > + with open(f"/sys/class/net/{ifname}/operstate", "r") as fp: > + link_state = fp.read().strip() > + > + if link_state == "down": > + raise KsftSkipEx(f"Link state of interface {ifname} is DOWN") > + > +def set_autonegotiation_state(ifname: str, state: str) -> None: > + content = get_ethtool_content(ifname, "Supported link modes:") > + speeds, duplex_modes = get_speed_duplex(content) > + speed = speeds[0] > + duplex = duplex_modes[0] > + if not speed or not duplex: > + KsftSkipEx("No speed or duplex modes found") > + """Set the autonegotiation state for the interface""" > + process = ethtool(f"-s {ifname} speed {speed} duplex {duplex} autoneg {state}") > +def verify_autonegotiation(ifname: str, expected_state: str) -> None: > + verify_link_up(ifname) > + """Verifying the autonegotiation state""" > + output = get_ethtool_content(ifname, "Auto-negotiation:") > + actual_state = output[0] > + > + ksft_eq(actual_state, expected_state) > + > +def test_link_modes(cfg) -> None: > + global common_link_modes > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link partner advertised link modes:") > + > + if link_modes and partner_link_modes: > + for idx1 in range(len(link_modes)): > + for idx2 in range(len(partner_link_modes)): > + if link_modes[idx1] == partner_link_modes[idx2]: > + common_link_modes.append(link_modes[idx1]) > + break > + else: > + raise KsftFailEx("No link modes available") > + > +def test_autonegotiation(cfg) -> None: > + autoneg = get_ethtool_content(cfg.ifname, "Supports auto-negotiation:") > + if autoneg[0] == "Yes": > + for state in ["off", "on"]: > + set_autonegotiation_state(cfg.ifname, state) > + time.sleep(sleep_time) > + verify_autonegotiation(cfg.ifname, state) If i'm understanding this correctly, you test with autoneg off, and expect the link to come up. That only works reliably if the link peer also has autoneg off, and is using the same speed/duplex. What i guess is happening in your test setup is that the link peer is failing autoneg and defaulting to 10/Half. But i don't think that is guaranteed by 802.3. There are also a small number of devices which no longer support 10/Half, they are likely to default to something higher. This is especially true for datacenter NICs, they may start at 10G and go up from there. So i don't think this is a valid test. To really test autoneg off, you need to configure both ends of the link. Andrew
On Tue, Sep 17, 2024 at 08:04:07AM +0530, Mohan Prasad J wrote: > Add selftest file to test basic features of a NIC driver. > Tests for link modes, auto-negotiation are placed. > Selftest makes use of ksft modules and ethtool. > Add selftest file in the Makefile. > > Signed-off-by: Mohan Prasad J <mohan.prasad@microchip.com> > --- > .../testing/selftests/drivers/net/hw/Makefile | 1 + > .../drivers/net/hw/nic_basic_tests.py | 145 ++++++++++++++++++ > 2 files changed, 146 insertions(+) > create mode 100644 tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > diff --git a/tools/testing/selftests/drivers/net/hw/Makefile b/tools/testing/selftests/drivers/net/hw/Makefile > index c9f2f48fc..9f105227c 100644 > --- a/tools/testing/selftests/drivers/net/hw/Makefile > +++ b/tools/testing/selftests/drivers/net/hw/Makefile > @@ -10,6 +10,7 @@ TEST_PROGS = \ > hw_stats_l3.sh \ > hw_stats_l3_gre.sh \ > loopback.sh \ > + nic_basic_tests.py \ > pp_alloc_fail.py \ > rss_ctx.py \ > # > diff --git a/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > new file mode 100644 > index 000000000..27f780032 > --- /dev/null > +++ b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > @@ -0,0 +1,145 @@ > +#!/usr/bin/env python3 > +# SPDX-License-Identifier: GPL-2.0 > + > +#Introduction: > +#This file has basic tests for generic NIC drivers. > +#The test comprises of auto-negotiation, speed and duplex checks. > +#Also has tests to check the throughput > +# > +#Setup: > +#Connect the DUT PC with NIC card to partner pc back via ethernet medium of your choice(RJ45, T1) > +# > +# DUT PC Partner PC > +#┌───────────────────────┐ ┌──────────────────────────┐ > +#│ │ │ │ > +#│ │ │ │ > +#│ ┌───────────┐ │ │ > +#│ │DUT NIC │ Eth │ │ > +#│ │Interface ─┼─────────────────────────┼─ any eth Interface │ > +#│ └───────────┘ │ │ > +#│ │ │ │ > +#│ │ │ │ > +#└───────────────────────┘ └──────────────────────────┘ > +# > +#Configurations: > +# Change the below configuration based on your hw needs. > +# """Default values""" > +sleep_time = 5 #time taken to wait for transitions to happen, in seconds. > +test_duration = 5 #performance test duration for the throughput check, in seconds. > +throughput_threshold = 0.8 #percentage of throughput required to pass the throughput > + > +import time > +import os > +import re > +import configparser > +import json > +from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_eq > +from lib.py import KsftFailEx, KsftSkipEx > +from lib.py import NetDrvEpEnv > +from lib.py import cmd > +from lib.py import ethtool > + > +"""Global variables""" > +common_link_modes = [] Software engineers have a dislike for global variables. In this patch, it is not even used. Please consider replacing it by passing it as a parameter, or turn the code into a class and make it part of self. > +def test_link_modes(cfg) -> None: > + global common_link_modes > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link partner advertised link modes:") > + > + if link_modes and partner_link_modes: > + for idx1 in range(len(link_modes)): > + for idx2 in range(len(partner_link_modes)): > + if link_modes[idx1] == partner_link_modes[idx2]: > + common_link_modes.append(link_modes[idx1]) You can use the power of python here. "supported-link-modes": [ "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Full" ], "link-partner-modes": [ "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/Full" ], convert the list into a set, and then use 'and'. common_modes = set(josn['supported-link-modes']) and set(json['link-partner-modes']) Andrew
Hello Andrew, Thanks for the review comments. > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > On Tue, Sep 17, 2024 at 08:04:07AM +0530, Mohan Prasad J wrote: > > Add selftest file to test basic features of a NIC driver. > > Tests for link modes, auto-negotiation are placed. > > Selftest makes use of ksft modules and ethtool. > > Add selftest file in the Makefile. > > Thanks for reworking this. > > > +++ b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > @@ -0,0 +1,145 @@ > > +#!/usr/bin/env python3 > > +# SPDX-License-Identifier: GPL-2.0 > > + > > +#Introduction: > > +#This file has basic tests for generic NIC drivers. > > +#The test comprises of auto-negotiation, speed and duplex checks. > > +#Also has tests to check the throughput # > > +#Setup: > > +#Connect the DUT PC with NIC card to partner pc back via ethernet > > +medium of your choice(RJ45, T1) # > > +# DUT PC Partner PC > > +#┌───────────────────────┐ > ┌──────────────────────────┐ > > +#│ │ │ │ > > +#│ │ │ │ > > +#│ ┌───────────┐ │ │ > > +#│ │DUT NIC │ Eth │ │ > > +#│ │Interface ─┼─────────────────────────┼─ any eth > Interface │ > > +#│ └───────────┘ │ │ > > +#│ │ │ │ > > +#│ │ │ │ > > +#└───────────────────────┘ > └──────────────────────────┘ > > +# > > +#Configurations: > > +# Change the below configuration based on your hw needs. > > +# """Default values""" > > +sleep_time = 5 #time taken to wait for transitions to happen, in seconds. > > +test_duration = 5 #performance test duration for the throughput check, in > seconds. > > +throughput_threshold = 0.8 #percentage of throughput required to pass > > +the throughput > > + > > +import time > > +import os > > +import re > > +import configparser > > +import json > > +from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_eq from lib.py > > +import KsftFailEx, KsftSkipEx from lib.py import NetDrvEpEnv from > > +lib.py import cmd from lib.py import ethtool > > + > > +"""Global variables""" > > +common_link_modes = [] > > + > > +def get_ethtool_content(ifname: str, field: str): > > + capture = False > > + content = [] > > + > > + """Get the ethtool content for the interface""" > > + process = ethtool(f"{ifname}") > > + if process.ret != 0: > > + raise KsftSkipEx(f"Error while getting the ethtool content for interface > {ifname}") > > + lines = process.stdout.splitlines() > > + > > + """Retrieve the content of the field""" > > + for line in lines: > > + if field in line: > > + capture = True > > + data = line.split(":")[1].strip() > > + content.extend(data.split()) > > + continue > > Since you have batteries included python: > > ethtool --json enp2s0 > [sudo] password for andrew: > [ { > "ifname": "enp2s0", > "supported-ports": [ "TP","MII" ], > "supported-link-modes": [ > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > Full" ], > "supported-pause-frame-use": "Symmetric Receive-only", > "supports-auto-negotiation": true, > "supported-fec-modes": [ ], > "advertised-link-modes": [ > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > Full" ], > "advertised-pause-frame-use": "Symmetric Receive-only", > "advertised-auto-negotiation": true, > "advertised-fec-modes": [ ], > "auto-negotiation": false, > "master-slave-cfg": "preferred slave", > "master-slave-status": "unknown", > "port": "Twisted Pair", > "phyad": 0, > "transceiver": "external", > "supports-wake-on": "pumbg", > "wake-on": "d", > "link-detected": false > } ] > > You can use a json library to do all the parsing for you. I tried running the --json option with the ethtool ("ethtool --json enp9s0"), however I am not getting the above output. Instead it always throws "ethtool: bad command line argument(s)" I am figuring out what might be missing (or any suggestions would be helpful). > > > +def get_speed_duplex(content): > > + speed = [] > > + duplex = [] > > + """Check the link modes""" > > + for data in content: > > + parts = data.split('/') > > + speed_value = re.match(r'\d+', parts[0]) > > + if speed_value: > > + speed.append(speed_value.group()) > > + else: > > + raise KsftSkipEx(f"No speed value found for interface {ifname}") > > + duplex.append(parts[1].lower()) > > + return speed, duplex > > + > > +def verify_link_up(ifname: str) -> None: > > + """Verify whether the link is up""" > > + with open(f"/sys/class/net/{ifname}/operstate", "r") as fp: > > + link_state = fp.read().strip() > > + > > + if link_state == "down": > > + raise KsftSkipEx(f"Link state of interface {ifname} is DOWN") > > + > > +def set_autonegotiation_state(ifname: str, state: str) -> None: > > + content = get_ethtool_content(ifname, "Supported link modes:") > > + speeds, duplex_modes = get_speed_duplex(content) > > + speed = speeds[0] > > + duplex = duplex_modes[0] > > + if not speed or not duplex: > > + KsftSkipEx("No speed or duplex modes found") > > + """Set the autonegotiation state for the interface""" > > + process = ethtool(f"-s {ifname} speed {speed} duplex {duplex} autoneg > {state}") > > + if process.ret != 0: > > + raise KsftFailEx(f"Not able to set autoneg parameter for {ifname}") > > + ksft_pr(f"Autoneg set as {state} for {ifname}") > > + > > +def verify_autonegotiation(ifname: str, expected_state: str) -> None: > > + verify_link_up(ifname) > > + """Verifying the autonegotiation state""" > > + output = get_ethtool_content(ifname, "Auto-negotiation:") > > + actual_state = output[0] > > + > > + ksft_eq(actual_state, expected_state) > > + > > +def test_link_modes(cfg) -> None: > > + global common_link_modes > > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link > > +partner advertised link modes:") > > + > > + if link_modes and partner_link_modes: > > + for idx1 in range(len(link_modes)): > > + for idx2 in range(len(partner_link_modes)): > > + if link_modes[idx1] == partner_link_modes[idx2]: > > + common_link_modes.append(link_modes[idx1]) > > + break > > + else: > > + raise KsftFailEx("No link modes available") > > + > > +def test_autonegotiation(cfg) -> None: > > + autoneg = get_ethtool_content(cfg.ifname, "Supports auto- > negotiation:") > > + if autoneg[0] == "Yes": > > + for state in ["off", "on"]: > > + set_autonegotiation_state(cfg.ifname, state) > > + time.sleep(sleep_time) > > One thing you could do here is look at "advertised-link-modes". You would > expect it to list a single mode, matching the speed/duplex you requested. I will change it in the next version.
Hi Andrew, Thanks for the review comments. > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > > +def verify_link_up(ifname: str) -> None: > > + """Verify whether the link is up""" > > + with open(f"/sys/class/net/{ifname}/operstate", "r") as fp: > > + link_state = fp.read().strip() > > + > > + if link_state == "down": > > + raise KsftSkipEx(f"Link state of interface {ifname} is DOWN") > > + > > +def set_autonegotiation_state(ifname: str, state: str) -> None: > > + content = get_ethtool_content(ifname, "Supported link modes:") > > + speeds, duplex_modes = get_speed_duplex(content) > > + speed = speeds[0] > > + duplex = duplex_modes[0] > > + if not speed or not duplex: > > + KsftSkipEx("No speed or duplex modes found") > > + """Set the autonegotiation state for the interface""" > > + process = ethtool(f"-s {ifname} speed {speed} duplex {duplex} > > +autoneg {state}") > > > +def verify_autonegotiation(ifname: str, expected_state: str) -> None: > > + verify_link_up(ifname) > > + """Verifying the autonegotiation state""" > > + output = get_ethtool_content(ifname, "Auto-negotiation:") > > + actual_state = output[0] > > + > > + ksft_eq(actual_state, expected_state) > > + > > +def test_link_modes(cfg) -> None: > > + global common_link_modes > > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link > > +partner advertised link modes:") > > + > > + if link_modes and partner_link_modes: > > + for idx1 in range(len(link_modes)): > > + for idx2 in range(len(partner_link_modes)): > > + if link_modes[idx1] == partner_link_modes[idx2]: > > + common_link_modes.append(link_modes[idx1]) > > + break > > + else: > > + raise KsftFailEx("No link modes available") > > + > > +def test_autonegotiation(cfg) -> None: > > + autoneg = get_ethtool_content(cfg.ifname, "Supports auto- > negotiation:") > > + if autoneg[0] == "Yes": > > + for state in ["off", "on"]: > > + set_autonegotiation_state(cfg.ifname, state) > > + time.sleep(sleep_time) > > + verify_autonegotiation(cfg.ifname, state) > > If i'm understanding this correctly, you test with autoneg off, and expect the > link to come up. That only works reliably if the link peer also has autoneg off, > and is using the same speed/duplex. > > What i guess is happening in your test setup is that the link peer is failing > autoneg and defaulting to 10/Half. But i don't think that is guaranteed by > 802.3. There are also a small number of devices which no longer support > 10/Half, they are likely to default to something higher. This is especially true > for datacenter NICs, they may start at 10G and go up from there. > > So i don't think this is a valid test. To really test autoneg off, you need to > configure both ends of the link. I will change the implementation to configure both the ends of the link appropriately in the next version.
Hi Andrew, Thank you for the review comments. > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > On Tue, Sep 17, 2024 at 08:04:07AM +0530, Mohan Prasad J wrote: > > Add selftest file to test basic features of a NIC driver. > > Tests for link modes, auto-negotiation are placed. > > Selftest makes use of ksft modules and ethtool. > > Add selftest file in the Makefile. > > > > Signed-off-by: Mohan Prasad J <mohan.prasad@microchip.com> > > --- > > .../testing/selftests/drivers/net/hw/Makefile | 1 + > > .../drivers/net/hw/nic_basic_tests.py | 145 ++++++++++++++++++ > > 2 files changed, 146 insertions(+) > > create mode 100644 > > tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > > > diff --git a/tools/testing/selftests/drivers/net/hw/Makefile > > b/tools/testing/selftests/drivers/net/hw/Makefile > > index c9f2f48fc..9f105227c 100644 > > --- a/tools/testing/selftests/drivers/net/hw/Makefile > > +++ b/tools/testing/selftests/drivers/net/hw/Makefile > > @@ -10,6 +10,7 @@ TEST_PROGS = \ > > hw_stats_l3.sh \ > > hw_stats_l3_gre.sh \ > > loopback.sh \ > > + nic_basic_tests.py \ > > pp_alloc_fail.py \ > > rss_ctx.py \ > > # > > diff --git a/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > new file mode 100644 > > index 000000000..27f780032 > > --- /dev/null > > +++ b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py > > @@ -0,0 +1,145 @@ > > +#!/usr/bin/env python3 > > +# SPDX-License-Identifier: GPL-2.0 > > + > > +#Introduction: > > +#This file has basic tests for generic NIC drivers. > > +#The test comprises of auto-negotiation, speed and duplex checks. > > +#Also has tests to check the throughput # > > +#Setup: > > +#Connect the DUT PC with NIC card to partner pc back via ethernet > > +medium of your choice(RJ45, T1) # > > +# DUT PC Partner PC > > +#┌───────────────────────┐ > ┌──────────────────────────┐ > > +#│ │ │ │ > > +#│ │ │ │ > > +#│ ┌───────────┐ │ │ > > +#│ │DUT NIC │ Eth │ │ > > +#│ │Interface ─┼─────────────────────────┼─ any eth > Interface │ > > +#│ └───────────┘ │ │ > > +#│ │ │ │ > > +#│ │ │ │ > > +#└───────────────────────┘ > └──────────────────────────┘ > > +# > > +#Configurations: > > +# Change the below configuration based on your hw needs. > > +# """Default values""" > > +sleep_time = 5 #time taken to wait for transitions to happen, in seconds. > > +test_duration = 5 #performance test duration for the throughput check, in > seconds. > > +throughput_threshold = 0.8 #percentage of throughput required to pass > > +the throughput > > + > > +import time > > +import os > > +import re > > +import configparser > > +import json > > +from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_eq from lib.py > > +import KsftFailEx, KsftSkipEx from lib.py import NetDrvEpEnv from > > +lib.py import cmd from lib.py import ethtool > > + > > +"""Global variables""" > > +common_link_modes = [] > > Software engineers have a dislike for global variables. In this patch, it is not > even used. Please consider replacing it by passing it as a parameter, or turn > the code into a class and make it part of self. I will change this in the next version. > > > +def test_link_modes(cfg) -> None: > > + global common_link_modes > > + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") > > + partner_link_modes = get_ethtool_content(cfg.ifname, "Link > > +partner advertised link modes:") > > + > > + if link_modes and partner_link_modes: > > + for idx1 in range(len(link_modes)): > > + for idx2 in range(len(partner_link_modes)): > > + if link_modes[idx1] == partner_link_modes[idx2]: > > + common_link_modes.append(link_modes[idx1]) > > You can use the power of python here. > > "supported-link-modes": [ > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > Full" ], > "link-partner-modes": [ > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > Full" ], > > convert the list into a set, and then use 'and'. > > common_modes = set(josn['supported-link-modes']) and set(json['link- > partner-modes']) I am figuring out the way to get the ethtool output in json format. Once successful, I will change this implementation as suggested in next version.
> > Since you have batteries included python: > > > > ethtool --json enp2s0 > > [sudo] password for andrew: > > [ { > > "ifname": "enp2s0", > > "supported-ports": [ "TP","MII" ], > > "supported-link-modes": [ > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > > Full" ], > > "supported-pause-frame-use": "Symmetric Receive-only", > > "supports-auto-negotiation": true, > > "supported-fec-modes": [ ], > > "advertised-link-modes": [ > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000baseT/ > > Full" ], > > "advertised-pause-frame-use": "Symmetric Receive-only", > > "advertised-auto-negotiation": true, > > "advertised-fec-modes": [ ], > > "auto-negotiation": false, > > "master-slave-cfg": "preferred slave", > > "master-slave-status": "unknown", > > "port": "Twisted Pair", > > "phyad": 0, > > "transceiver": "external", > > "supports-wake-on": "pumbg", > > "wake-on": "d", > > "link-detected": false > > } ] > > > > You can use a json library to do all the parsing for you. > > I tried running the --json option with the ethtool ("ethtool --json enp9s0"), however I am not getting the above output. > Instead it always throws "ethtool: bad command line argument(s)" > I am figuring out what might be missing (or any suggestions would be helpful). Are you using real ethtool, or busybox? What version of ethtool? I'm using 6.10, but it looks like JSON support was added somewhere around 5.10. Andrew
> > So i don't think this is a valid test. To really test autoneg off, you need to > > configure both ends of the link. > > I will change the implementation to configure both the ends of the link appropriately in the next version. That would be good, but it does make the test and the test setup a lot more complex. I would suggest keeping such two target tests separate. Also, look to see if there are other such tests using two targets, and keep the basic configuration the same, IP address configuration, how to SSH between them etc. I'm not too familiar with the test framework. Maybe this is all a solved problem and there are helpers to use? Andrew
Hello Andrew, Thank you for the suggestion. > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > > > Since you have batteries included python: > > > > > > ethtool --json enp2s0 > > > [sudo] password for andrew: > > > [ { > > > "ifname": "enp2s0", > > > "supported-ports": [ "TP","MII" ], > > > "supported-link-modes": [ > > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000b > > > aseT/ > > > Full" ], > > > "supported-pause-frame-use": "Symmetric Receive-only", > > > "supports-auto-negotiation": true, > > > "supported-fec-modes": [ ], > > > "advertised-link-modes": [ > > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000b > > > aseT/ > > > Full" ], > > > "advertised-pause-frame-use": "Symmetric Receive-only", > > > "advertised-auto-negotiation": true, > > > "advertised-fec-modes": [ ], > > > "auto-negotiation": false, > > > "master-slave-cfg": "preferred slave", > > > "master-slave-status": "unknown", > > > "port": "Twisted Pair", > > > "phyad": 0, > > > "transceiver": "external", > > > "supports-wake-on": "pumbg", > > > "wake-on": "d", > > > "link-detected": false > > > } ] > > > > > > You can use a json library to do all the parsing for you. > > > > I tried running the --json option with the ethtool ("ethtool --json enp9s0"), > however I am not getting the above output. > > Instead it always throws "ethtool: bad command line argument(s)" > > I am figuring out what might be missing (or any suggestions would be > helpful). > > Are you using real ethtool, or busybox? What version of ethtool? I'm using > 6.10, but it looks like JSON support was added somewhere around 5.10. I have been using ethtool 6.7, updating to ethtool 6.10 solved the problem.
On Thu, Sep 19, 2024 at 10:44:11AM +0000, Mohan.Prasad@microchip.com wrote: > Hello Andrew, > > Thank you for the suggestion. > > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > > content is safe > > > > > > Since you have batteries included python: > > > > > > > > ethtool --json enp2s0 > > > > [sudo] password for andrew: > > > > [ { > > > > "ifname": "enp2s0", > > > > "supported-ports": [ "TP","MII" ], > > > > "supported-link-modes": [ > > > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000b > > > > aseT/ > > > > Full" ], > > > > "supported-pause-frame-use": "Symmetric Receive-only", > > > > "supports-auto-negotiation": true, > > > > "supported-fec-modes": [ ], > > > > "advertised-link-modes": [ > > > > "10baseT/Half","10baseT/Full","100baseT/Half","100baseT/Full","1000b > > > > aseT/ > > > > Full" ], > > > > "advertised-pause-frame-use": "Symmetric Receive-only", > > > > "advertised-auto-negotiation": true, > > > > "advertised-fec-modes": [ ], > > > > "auto-negotiation": false, > > > > "master-slave-cfg": "preferred slave", > > > > "master-slave-status": "unknown", > > > > "port": "Twisted Pair", > > > > "phyad": 0, > > > > "transceiver": "external", > > > > "supports-wake-on": "pumbg", > > > > "wake-on": "d", > > > > "link-detected": false > > > > } ] > > > > > > > > You can use a json library to do all the parsing for you. > > > > > > I tried running the --json option with the ethtool ("ethtool --json enp9s0"), > > however I am not getting the above output. > > > Instead it always throws "ethtool: bad command line argument(s)" > > > I am figuring out what might be missing (or any suggestions would be > > helpful). > > > > Are you using real ethtool, or busybox? What version of ethtool? I'm using > > 6.10, but it looks like JSON support was added somewhere around 5.10. > > I have been using ethtool 6.7, updating to ethtool 6.10 solved the problem. It would be good to gracefully handle this. Have the test fail with a human readable error indicating ethtool is too old, rather than just throwing an exception etc. Digging through the git history, it seems like 6.10 was actually the first version that supported this: commit bd1341cd2146bfb89e1239546299102339acbf4d Author: Fabian Pfitzner <f.pfitzner@pengutronix.de> Date: Fri Jul 19 10:55:44 2024 +0200 add json support for base command Most subcommands already implement json support for their output. The base command (without supplying any subcommand) still lacks this option. This patch implments the needed changes to get json output, which is printed via "ethtool --json [iface]" The following design decision were made during implementation: - json values like Yes/No are printed as true/false - values that are "Unknown" are not printed at all - all other json values are not changed - keys are printed in lowercase with dashes in between Signed-off-by: Fabian Pfitzner <f.pfitzner@pengutronix.de> Andrew
diff --git a/tools/testing/selftests/drivers/net/hw/Makefile b/tools/testing/selftests/drivers/net/hw/Makefile index c9f2f48fc..9f105227c 100644 --- a/tools/testing/selftests/drivers/net/hw/Makefile +++ b/tools/testing/selftests/drivers/net/hw/Makefile @@ -10,6 +10,7 @@ TEST_PROGS = \ hw_stats_l3.sh \ hw_stats_l3_gre.sh \ loopback.sh \ + nic_basic_tests.py \ pp_alloc_fail.py \ rss_ctx.py \ # diff --git a/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py new file mode 100644 index 000000000..27f780032 --- /dev/null +++ b/tools/testing/selftests/drivers/net/hw/nic_basic_tests.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: GPL-2.0 + +#Introduction: +#This file has basic tests for generic NIC drivers. +#The test comprises of auto-negotiation, speed and duplex checks. +#Also has tests to check the throughput +# +#Setup: +#Connect the DUT PC with NIC card to partner pc back via ethernet medium of your choice(RJ45, T1) +# +# DUT PC Partner PC +#┌───────────────────────┐ ┌──────────────────────────┐ +#│ │ │ │ +#│ │ │ │ +#│ ┌───────────┐ │ │ +#│ │DUT NIC │ Eth │ │ +#│ │Interface ─┼─────────────────────────┼─ any eth Interface │ +#│ └───────────┘ │ │ +#│ │ │ │ +#│ │ │ │ +#└───────────────────────┘ └──────────────────────────┘ +# +#Configurations: +# Change the below configuration based on your hw needs. +# """Default values""" +sleep_time = 5 #time taken to wait for transitions to happen, in seconds. +test_duration = 5 #performance test duration for the throughput check, in seconds. +throughput_threshold = 0.8 #percentage of throughput required to pass the throughput + +import time +import os +import re +import configparser +import json +from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_eq +from lib.py import KsftFailEx, KsftSkipEx +from lib.py import NetDrvEpEnv +from lib.py import cmd +from lib.py import ethtool + +"""Global variables""" +common_link_modes = [] + +def get_ethtool_content(ifname: str, field: str): + capture = False + content = [] + + """Get the ethtool content for the interface""" + process = ethtool(f"{ifname}") + if process.ret != 0: + raise KsftSkipEx(f"Error while getting the ethtool content for interface {ifname}") + lines = process.stdout.splitlines() + + """Retrieve the content of the field""" + for line in lines: + if field in line: + capture = True + data = line.split(":")[1].strip() + content.extend(data.split()) + continue + + if capture: + if ":" in line: + break; + if line.strip(): + content.extend(line.strip().split()) + if capture == False: + raise KsftSkipEx(f"Field \"{field}\" not found in ethtool output") + return content + +def get_speed_duplex(content): + speed = [] + duplex = [] + """Check the link modes""" + for data in content: + parts = data.split('/') + speed_value = re.match(r'\d+', parts[0]) + if speed_value: + speed.append(speed_value.group()) + else: + raise KsftSkipEx(f"No speed value found for interface {ifname}") + duplex.append(parts[1].lower()) + return speed, duplex + +def verify_link_up(ifname: str) -> None: + """Verify whether the link is up""" + with open(f"/sys/class/net/{ifname}/operstate", "r") as fp: + link_state = fp.read().strip() + + if link_state == "down": + raise KsftSkipEx(f"Link state of interface {ifname} is DOWN") + +def set_autonegotiation_state(ifname: str, state: str) -> None: + content = get_ethtool_content(ifname, "Supported link modes:") + speeds, duplex_modes = get_speed_duplex(content) + speed = speeds[0] + duplex = duplex_modes[0] + if not speed or not duplex: + KsftSkipEx("No speed or duplex modes found") + """Set the autonegotiation state for the interface""" + process = ethtool(f"-s {ifname} speed {speed} duplex {duplex} autoneg {state}") + if process.ret != 0: + raise KsftFailEx(f"Not able to set autoneg parameter for {ifname}") + ksft_pr(f"Autoneg set as {state} for {ifname}") + +def verify_autonegotiation(ifname: str, expected_state: str) -> None: + verify_link_up(ifname) + """Verifying the autonegotiation state""" + output = get_ethtool_content(ifname, "Auto-negotiation:") + actual_state = output[0] + + ksft_eq(actual_state, expected_state) + +def test_link_modes(cfg) -> None: + global common_link_modes + link_modes = get_ethtool_content(cfg.ifname, "Supported link modes:") + partner_link_modes = get_ethtool_content(cfg.ifname, "Link partner advertised link modes:") + + if link_modes and partner_link_modes: + for idx1 in range(len(link_modes)): + for idx2 in range(len(partner_link_modes)): + if link_modes[idx1] == partner_link_modes[idx2]: + common_link_modes.append(link_modes[idx1]) + break + else: + raise KsftFailEx("No link modes available") + +def test_autonegotiation(cfg) -> None: + autoneg = get_ethtool_content(cfg.ifname, "Supports auto-negotiation:") + if autoneg[0] == "Yes": + for state in ["off", "on"]: + set_autonegotiation_state(cfg.ifname, state) + time.sleep(sleep_time) + verify_autonegotiation(cfg.ifname, state) + else: + raise KsftSkipEx(f"Auto-Negotiation is not supported for interface {cfg.ifname}") + +def main() -> None: + with NetDrvEpEnv(__file__) as cfg: + ksft_run(globs=globals(), case_pfx={"test_"}, args=(cfg,)) + ksft_exit() + +if __name__ == "__main__": + main()
Add selftest file to test basic features of a NIC driver. Tests for link modes, auto-negotiation are placed. Selftest makes use of ksft modules and ethtool. Add selftest file in the Makefile. Signed-off-by: Mohan Prasad J <mohan.prasad@microchip.com> --- .../testing/selftests/drivers/net/hw/Makefile | 1 + .../drivers/net/hw/nic_basic_tests.py | 145 ++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 tools/testing/selftests/drivers/net/hw/nic_basic_tests.py