Commit dee1efb3 authored by Jakub Kicinski's avatar Jakub Kicinski

Merge branch 'tools-ynl-fill-in-some-gaps-of-ethtool-spec'

Stanislav Fomichev says:

====================
tools: ynl: fill in some gaps of ethtool spec

I was trying to fill in the spec while exploring ethtool API for some
related work. I don't think I'll have the patience to fill in the rest,
so decided to share whatever I currently have.

Patches 1-2 add the be16 + spec.
Patches 3-4 implement an ethtool-like python tool to test the spec.

Patches 3-4 are there because it felt more fun do the tool instead
of writing the actual tests; feel free to drop it; sharing mostly
to show that the spec is not a complete nonsense.

The spec is not 100% complete, see patch 2 for what's missing.
I was hoping to finish the stats-get message, but I'm too dump
to implement bitmask marshaling (multi-attr).
====================

Link: https://lore.kernel.org/r/20230329221655.708489-1-sdf@google.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parents 709d0b88 f3d07b02
This diff is collapsed.
This diff is collapsed.
...@@ -163,6 +163,7 @@ class SpecAttr(SpecElement): ...@@ -163,6 +163,7 @@ class SpecAttr(SpecElement):
self.is_multi = yaml.get('multi-attr', False) self.is_multi = yaml.get('multi-attr', False)
self.struct_name = yaml.get('struct') self.struct_name = yaml.get('struct')
self.sub_type = yaml.get('sub-type') self.sub_type = yaml.get('sub-type')
self.byte_order = yaml.get('byte-order')
class SpecAttrSet(SpecElement): class SpecAttrSet(SpecElement):
...@@ -443,6 +444,15 @@ class SpecFamily(SpecElement): ...@@ -443,6 +444,15 @@ class SpecFamily(SpecElement):
self.msgs[op.name] = op self.msgs[op.name] = op
def find_operation(self, name):
"""
For a given operation name, find and return operation spec.
"""
for op in self.yaml['operations']['list']:
if name == op['name']:
return op
return None
def resolve(self): def resolve(self):
self.resolve_up(super()) self.resolve_up(super())
......
...@@ -67,6 +67,14 @@ class Netlink: ...@@ -67,6 +67,14 @@ class Netlink:
NLMSGERR_ATTR_MISS_NEST = 6 NLMSGERR_ATTR_MISS_NEST = 6
class NlError(Exception):
def __init__(self, nl_msg):
self.nl_msg = nl_msg
def __str__(self):
return f"Netlink error: {os.strerror(-self.nl_msg.error)}\n{self.nl_msg}"
class NlAttr: class NlAttr:
type_formats = { 'u8' : ('B', 1), 's8' : ('b', 1), type_formats = { 'u8' : ('B', 1), 's8' : ('b', 1),
'u16': ('H', 2), 's16': ('h', 2), 'u16': ('H', 2), 's16': ('h', 2),
...@@ -80,17 +88,25 @@ class NlAttr: ...@@ -80,17 +88,25 @@ class NlAttr:
self.full_len = (self.payload_len + 3) & ~3 self.full_len = (self.payload_len + 3) & ~3
self.raw = raw[offset + 4:offset + self.payload_len] self.raw = raw[offset + 4:offset + self.payload_len]
def format_byte_order(byte_order):
if byte_order:
return ">" if byte_order == "big-endian" else "<"
return ""
def as_u8(self): def as_u8(self):
return struct.unpack("B", self.raw)[0] return struct.unpack("B", self.raw)[0]
def as_u16(self): def as_u16(self, byte_order=None):
return struct.unpack("H", self.raw)[0] endian = NlAttr.format_byte_order(byte_order)
return struct.unpack(f"{endian}H", self.raw)[0]
def as_u32(self): def as_u32(self, byte_order=None):
return struct.unpack("I", self.raw)[0] endian = NlAttr.format_byte_order(byte_order)
return struct.unpack(f"{endian}I", self.raw)[0]
def as_u64(self): def as_u64(self, byte_order=None):
return struct.unpack("Q", self.raw)[0] endian = NlAttr.format_byte_order(byte_order)
return struct.unpack(f"{endian}Q", self.raw)[0]
def as_strz(self): def as_strz(self):
return self.raw.decode('ascii')[:-1] return self.raw.decode('ascii')[:-1]
...@@ -365,11 +381,14 @@ class YnlFamily(SpecFamily): ...@@ -365,11 +381,14 @@ class YnlFamily(SpecFamily):
elif attr["type"] == 'u8': elif attr["type"] == 'u8':
attr_payload = struct.pack("B", int(value)) attr_payload = struct.pack("B", int(value))
elif attr["type"] == 'u16': elif attr["type"] == 'u16':
attr_payload = struct.pack("H", int(value)) endian = NlAttr.format_byte_order(attr.byte_order)
attr_payload = struct.pack(f"{endian}H", int(value))
elif attr["type"] == 'u32': elif attr["type"] == 'u32':
attr_payload = struct.pack("I", int(value)) endian = NlAttr.format_byte_order(attr.byte_order)
attr_payload = struct.pack(f"{endian}I", int(value))
elif attr["type"] == 'u64': elif attr["type"] == 'u64':
attr_payload = struct.pack("Q", int(value)) endian = NlAttr.format_byte_order(attr.byte_order)
attr_payload = struct.pack(f"{endian}Q", int(value))
elif attr["type"] == 'string': elif attr["type"] == 'string':
attr_payload = str(value).encode('ascii') + b'\x00' attr_payload = str(value).encode('ascii') + b'\x00'
elif attr["type"] == 'binary': elif attr["type"] == 'binary':
...@@ -415,11 +434,11 @@ class YnlFamily(SpecFamily): ...@@ -415,11 +434,11 @@ class YnlFamily(SpecFamily):
elif attr_spec['type'] == 'u8': elif attr_spec['type'] == 'u8':
decoded = attr.as_u8() decoded = attr.as_u8()
elif attr_spec['type'] == 'u16': elif attr_spec['type'] == 'u16':
decoded = attr.as_u16() decoded = attr.as_u16(attr_spec.byte_order)
elif attr_spec['type'] == 'u32': elif attr_spec['type'] == 'u32':
decoded = attr.as_u32() decoded = attr.as_u32(attr_spec.byte_order)
elif attr_spec['type'] == 'u64': elif attr_spec['type'] == 'u64':
decoded = attr.as_u64() decoded = attr.as_u64(attr_spec.byte_order)
elif attr_spec["type"] == 'string': elif attr_spec["type"] == 'string':
decoded = attr.as_strz() decoded = attr.as_strz()
elif attr_spec["type"] == 'binary': elif attr_spec["type"] == 'binary':
...@@ -508,6 +527,17 @@ class YnlFamily(SpecFamily): ...@@ -508,6 +527,17 @@ class YnlFamily(SpecFamily):
self.handle_ntf(nl_msg, gm) self.handle_ntf(nl_msg, gm)
def operation_do_attributes(self, name):
"""
For a given operation name, find and return a supported
set of attributes (as a dict).
"""
op = self.find_operation(name)
if not op:
return None
return op['do']['request']['attributes'].copy()
def _op(self, method, vals, dump=False): def _op(self, method, vals, dump=False):
op = self.ops[method] op = self.ops[method]
...@@ -540,9 +570,7 @@ class YnlFamily(SpecFamily): ...@@ -540,9 +570,7 @@ class YnlFamily(SpecFamily):
self._decode_extack(msg, op.attr_set, nl_msg.extack) self._decode_extack(msg, op.attr_set, nl_msg.extack)
if nl_msg.error: if nl_msg.error:
print("Netlink error:", os.strerror(-nl_msg.error)) raise NlError(nl_msg)
print(nl_msg)
return
if nl_msg.done: if nl_msg.done:
if nl_msg.extack: if nl_msg.extack:
print("Netlink warning:") print("Netlink warning:")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment