diff options
| author | Stefano Brivio <sbrivio@redhat.com> | 2025-11-03 11:16:08 +0100 |
|---|---|---|
| committer | Stefano Brivio <sbrivio@redhat.com> | 2025-12-08 04:46:55 +0100 |
| commit | 1e519715240eb8b7ca5ae1b1b0a796a337aa1620 (patch) | |
| tree | 5ceb0d6291461c2d5ea0e47662dc4a7f0836a147 | |
| parent | 822ce0948656b6ff293b650c7aef900841193fa3 (diff) | |
| download | passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar.gz passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar.bz2 passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar.lz passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar.xz passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.tar.zst passt-1e519715240eb8b7ca5ae1b1b0a796a337aa1620.zip | |
tap: Pad non-batched frames to 802.3 minimum (60 bytes) if needed
IEEE 802.3 requires a minimum frame payload of 46 bytes, without a
802.1Q tag. Add padding for the simple tap_send_single() case using
a zero-filled 60-byte buffer and copying data to it if needed.
In theory, we could add a further element in the iovec array, say:
uint8_t padding[ETH_ZLEN] = { 0 };
struct iovec iov[3];
...
if (l2len < ETH_ZLEN) {
iov[iovcnt].iov_base = (void *)padding;
iov[iovcnt].iov_len = ETH_ZLEN - l2len;
iovcnt++;
}
and avoid a copy, but that would substantially complicate the
vhost-user path, and it's questionable whether passing a reference
to a further buffer actually causes lower overhead than the simple
copy.
Link: https://bugs.passt.top/show_bug.cgi?id=166
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
| -rw-r--r-- | tap.c | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -130,9 +130,18 @@ unsigned long tap_l2_max_len(const struct ctx *c) */ void tap_send_single(const struct ctx *c, const void *data, size_t l2len) { - uint32_t vnet_len = htonl(l2len); + uint8_t padded[ETH_ZLEN] = { 0 }; struct iovec iov[2]; size_t iovcnt = 0; + uint32_t vnet_len; + + if (l2len < ETH_ZLEN) { + memcpy(padded, data, l2len); + data = padded; + l2len = ETH_ZLEN; + } + + vnet_len = htonl(l2len); switch (c->mode) { case MODE_PASST: |
