]> git.ipfire.org Git - thirdparty/ipxe.git/commit
[efi] Pad transmit buffer length to work around vendor driver bugs 1177/head
authorMichael Brown <mcb30@ipxe.org>
Mon, 18 Mar 2024 15:21:04 +0000 (15:21 +0000)
committerMichael Brown <mcb30@ipxe.org>
Mon, 18 Mar 2024 22:52:05 +0000 (22:52 +0000)
commit926816c58fca5641b17c17379b52203458081668
tree38ce87537bad17468f7351ada5bea2179075e4ef
parentc11734eee0fcaaf49f6f3f0342f928e1e5232560
[efi] Pad transmit buffer length to work around vendor driver bugs

The Mellanox/Nvidia UEFI driver is built from the same codebase as the
iPXE driver, and appears to contain the bug that was fixed in commit
c11734e ("[golan] Use ETH_HLEN for inline header size").  This results
in identical failures when using the SNP or NII interface (via
e.g. snponly.efi) to drive a Mellanox card while EAPoL is enabled.

Work around the underlying UEFI driver bug by padding transmit I/O
buffers to the minimum Ethernet frame length before passing them to
the underlying driver's transmit function.

This padding is not technically necessary, since almost all modern
hardware will insert transmit padding as necessary (and where the
hardware does not support doing so, the underlying UEFI driver is
responsible for adding any necessary padding).  However, it is
guaranteed to be harmless (other than a miniscule performance impact):
the Ethernet specification requires zero padding up to the minimum
frame length for packets that are transmitted onto the wire, and so
the receiver will see the same packet whether or not we manually
insert this padding in software.

The additional padding causes the underlying Mellanox driver to avoid
its faulty code path, since it will never be asked to transmit a very
short packet.

Tested-by: Eric Hagberg <ehagberg@janestreet.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/drivers/net/efi/nii.c
src/drivers/net/efi/snpnet.c