mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 11:33:36 -04:00
Test setting hashing key via Netlink. # ./tools/testing/selftests/drivers/net/hw/rss_api.py TAP version 13 1..7 ok 1 rss_api.test_rxfh_nl_set_fail ok 2 rss_api.test_rxfh_nl_set_indir ok 3 rss_api.test_rxfh_nl_set_indir_ctx ok 4 rss_api.test_rxfh_indir_ntf ok 5 rss_api.test_rxfh_indir_ctx_ntf ok 6 rss_api.test_rxfh_nl_set_key ok 7 rss_api.test_rxfh_fields # Totals: pass:7 fail:0 xfail:0 xpass:0 skip:0 error:0 Link: https://patch.msgid.link/20250716000331.1378807-8-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
261 lines
8.0 KiB
Python
Executable File
261 lines
8.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
"""
|
|
API level tests for RSS (mostly Netlink vs IOCTL).
|
|
"""
|
|
|
|
import glob
|
|
import random
|
|
from lib.py import ksft_run, ksft_exit, ksft_eq, ksft_is, ksft_ne, ksft_raises
|
|
from lib.py import KsftSkipEx, KsftFailEx
|
|
from lib.py import defer, ethtool, CmdExitFailure
|
|
from lib.py import EthtoolFamily, NlError
|
|
from lib.py import NetDrvEnv
|
|
|
|
|
|
def _require_2qs(cfg):
|
|
qcnt = len(glob.glob(f"/sys/class/net/{cfg.ifname}/queues/rx-*"))
|
|
if qcnt < 2:
|
|
raise KsftSkipEx(f"Local has only {qcnt} queues")
|
|
return qcnt
|
|
|
|
|
|
def _ethtool_create(cfg, act, opts):
|
|
output = ethtool(f"{act} {cfg.ifname} {opts}").stdout
|
|
# Output will be something like: "New RSS context is 1" or
|
|
# "Added rule with ID 7", we want the integer from the end
|
|
return int(output.split()[-1])
|
|
|
|
|
|
def _ethtool_get_cfg(cfg, fl_type, to_nl=False):
|
|
descr = ethtool(f"-n {cfg.ifname} rx-flow-hash {fl_type}").stdout
|
|
|
|
if to_nl:
|
|
converter = {
|
|
"IP SA": "ip-src",
|
|
"IP DA": "ip-dst",
|
|
"L4 bytes 0 & 1 [TCP/UDP src port]": "l4-b-0-1",
|
|
"L4 bytes 2 & 3 [TCP/UDP dst port]": "l4-b-2-3",
|
|
}
|
|
|
|
ret = set()
|
|
else:
|
|
converter = {
|
|
"IP SA": "s",
|
|
"IP DA": "d",
|
|
"L3 proto": "t",
|
|
"L4 bytes 0 & 1 [TCP/UDP src port]": "f",
|
|
"L4 bytes 2 & 3 [TCP/UDP dst port]": "n",
|
|
}
|
|
|
|
ret = ""
|
|
|
|
for line in descr.split("\n")[1:-2]:
|
|
# if this raises we probably need to add more keys to converter above
|
|
if to_nl:
|
|
ret.add(converter[line])
|
|
else:
|
|
ret += converter[line]
|
|
return ret
|
|
|
|
|
|
def test_rxfh_nl_set_fail(cfg):
|
|
"""
|
|
Test error path of Netlink SET.
|
|
"""
|
|
_require_2qs(cfg)
|
|
|
|
ethnl = EthtoolFamily()
|
|
ethnl.ntf_subscribe("monitor")
|
|
|
|
with ksft_raises(NlError):
|
|
ethnl.rss_set({"header": {"dev-name": "lo"},
|
|
"indir": None})
|
|
|
|
with ksft_raises(NlError):
|
|
ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"indir": [100000]})
|
|
ntf = next(ethnl.poll_ntf(duration=0.2), None)
|
|
ksft_is(ntf, None)
|
|
|
|
|
|
def test_rxfh_nl_set_indir(cfg):
|
|
"""
|
|
Test setting indirection table via Netlink.
|
|
"""
|
|
qcnt = _require_2qs(cfg)
|
|
|
|
# Test some SETs with a value
|
|
reset = defer(cfg.ethnl.rss_set,
|
|
{"header": {"dev-index": cfg.ifindex}, "indir": None})
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"indir": [1]})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(set(rss.get("indir", [-1])), {1})
|
|
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"indir": [0, 1]})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(set(rss.get("indir", [-1])), {0, 1})
|
|
|
|
# Make sure we can't set the queue count below max queue used
|
|
with ksft_raises(CmdExitFailure):
|
|
ethtool(f"-L {cfg.ifname} combined 0 rx 1")
|
|
with ksft_raises(CmdExitFailure):
|
|
ethtool(f"-L {cfg.ifname} combined 1 rx 0")
|
|
|
|
# Test reset back to default
|
|
reset.exec()
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(set(rss.get("indir", [-1])), set(range(qcnt)))
|
|
|
|
|
|
def test_rxfh_nl_set_indir_ctx(cfg):
|
|
"""
|
|
Test setting indirection table for a custom context via Netlink.
|
|
"""
|
|
_require_2qs(cfg)
|
|
|
|
# Get setting for ctx 0, we'll make sure they don't get clobbered
|
|
dflt = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
|
|
# Create context
|
|
ctx_id = _ethtool_create(cfg, "-X", "context new")
|
|
defer(ethtool, f"-X {cfg.ifname} context {ctx_id} delete")
|
|
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"context": ctx_id, "indir": [1]})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex},
|
|
"context": ctx_id})
|
|
ksft_eq(set(rss.get("indir", [-1])), {1})
|
|
|
|
ctx0 = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(ctx0, dflt)
|
|
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"context": ctx_id, "indir": [0, 1]})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex},
|
|
"context": ctx_id})
|
|
ksft_eq(set(rss.get("indir", [-1])), {0, 1})
|
|
|
|
ctx0 = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(ctx0, dflt)
|
|
|
|
# Make sure we can't set the queue count below max queue used
|
|
with ksft_raises(CmdExitFailure):
|
|
ethtool(f"-L {cfg.ifname} combined 0 rx 1")
|
|
with ksft_raises(CmdExitFailure):
|
|
ethtool(f"-L {cfg.ifname} combined 1 rx 0")
|
|
|
|
|
|
def test_rxfh_indir_ntf(cfg):
|
|
"""
|
|
Check that Netlink notifications are generated when RSS indirection
|
|
table was modified.
|
|
"""
|
|
_require_2qs(cfg)
|
|
|
|
ethnl = EthtoolFamily()
|
|
ethnl.ntf_subscribe("monitor")
|
|
|
|
ethtool(f"--disable-netlink -X {cfg.ifname} weight 0 1")
|
|
reset = defer(ethtool, f"-X {cfg.ifname} default")
|
|
|
|
ntf = next(ethnl.poll_ntf(duration=0.2), None)
|
|
if ntf is None:
|
|
raise KsftFailEx("No notification received")
|
|
ksft_eq(ntf["name"], "rss-ntf")
|
|
ksft_eq(set(ntf["msg"]["indir"]), {1})
|
|
|
|
reset.exec()
|
|
ntf = next(ethnl.poll_ntf(duration=0.2), None)
|
|
if ntf is None:
|
|
raise KsftFailEx("No notification received after reset")
|
|
ksft_eq(ntf["name"], "rss-ntf")
|
|
ksft_is(ntf["msg"].get("context"), None)
|
|
ksft_ne(set(ntf["msg"]["indir"]), {1})
|
|
|
|
|
|
def test_rxfh_indir_ctx_ntf(cfg):
|
|
"""
|
|
Check that Netlink notifications are generated when RSS indirection
|
|
table was modified on an additional RSS context.
|
|
"""
|
|
_require_2qs(cfg)
|
|
|
|
ctx_id = _ethtool_create(cfg, "-X", "context new")
|
|
defer(ethtool, f"-X {cfg.ifname} context {ctx_id} delete")
|
|
|
|
ethnl = EthtoolFamily()
|
|
ethnl.ntf_subscribe("monitor")
|
|
|
|
ethtool(f"--disable-netlink -X {cfg.ifname} context {ctx_id} weight 0 1")
|
|
|
|
ntf = next(ethnl.poll_ntf(duration=0.2), None)
|
|
if ntf is None:
|
|
raise KsftFailEx("No notification received")
|
|
ksft_eq(ntf["name"], "rss-ntf")
|
|
ksft_eq(ntf["msg"].get("context"), ctx_id)
|
|
ksft_eq(set(ntf["msg"]["indir"]), {1})
|
|
|
|
|
|
def test_rxfh_nl_set_key(cfg):
|
|
"""
|
|
Test setting hashing key via Netlink.
|
|
"""
|
|
|
|
dflt = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
defer(cfg.ethnl.rss_set,
|
|
{"header": {"dev-index": cfg.ifindex},
|
|
"hkey": dflt["hkey"], "indir": None})
|
|
|
|
# Empty key should error out
|
|
with ksft_raises(NlError) as cm:
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"hkey": None})
|
|
ksft_eq(cm.exception.nl_msg.extack['bad-attr'], '.hkey')
|
|
|
|
# Set key to random
|
|
mod = random.randbytes(len(dflt["hkey"]))
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"hkey": mod})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(rss.get("hkey", [-1]), mod)
|
|
|
|
# Set key to random and indir tbl to something at once
|
|
mod = random.randbytes(len(dflt["hkey"]))
|
|
cfg.ethnl.rss_set({"header": {"dev-index": cfg.ifindex},
|
|
"indir": [0, 1], "hkey": mod})
|
|
rss = cfg.ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
ksft_eq(rss.get("hkey", [-1]), mod)
|
|
ksft_eq(set(rss.get("indir", [-1])), {0, 1})
|
|
|
|
|
|
def test_rxfh_fields(cfg):
|
|
"""
|
|
Test reading Rx Flow Hash over Netlink.
|
|
"""
|
|
|
|
flow_types = ["tcp4", "tcp6", "udp4", "udp6"]
|
|
ethnl = EthtoolFamily()
|
|
|
|
cfg_nl = ethnl.rss_get({"header": {"dev-index": cfg.ifindex}})
|
|
for fl_type in flow_types:
|
|
one = _ethtool_get_cfg(cfg, fl_type, to_nl=True)
|
|
ksft_eq(one, cfg_nl["flow-hash"][fl_type],
|
|
comment="Config for " + fl_type)
|
|
|
|
|
|
def main() -> None:
|
|
""" Ksft boiler plate main """
|
|
|
|
with NetDrvEnv(__file__, nsim_test=False) as cfg:
|
|
cfg.ethnl = EthtoolFamily()
|
|
ksft_run(globs=globals(), case_pfx={"test_"}, args=(cfg, ))
|
|
ksft_exit()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|