net, xdp: Allow metadata > 32
authorAleksander Lobakin <aleksander.lobakin@intel.com>
Wed, 6 Dec 2023 20:59:19 +0000 (21:59 +0100)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 11 Dec 2023 15:09:36 +0000 (16:09 +0100)
commit2ebe81c814355d000fe49d9c4213983844dcb32b
tree695a116c8cea02abc891dd2e3181e11adc48ba57
parent15c79c6507c0eab5ec0d4cd402ac52d42735a43e
net, xdp: Allow metadata > 32

32 bytes may be not enough for some custom metadata. Relax the restriction,
allow metadata larger than 32 bytes and make __skb_metadata_differs() work
with bigger lengths.

Now size of metadata is only limited by the fact it is stored as u8 in
skb_shared_info, so maximum possible value is 255. Size still has to be
aligned to 4, so the actual upper limit becomes 252. Most driver
implementations will offer less, none can offer more.

Other important conditions, such as having enough space for xdp_frame
building, are already checked in bpf_xdp_adjust_meta().

Signed-off-by: Aleksander Lobakin <aleksander.lobakin@intel.com>
Signed-off-by: Larysa Zaremba <larysa.zaremba@intel.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/eb87653c-8ff8-447d-a7a1-25961f60518a@kernel.org
Link: https://lore.kernel.org/bpf/20231206205919.404415-3-larysa.zaremba@intel.com
include/linux/skbuff.h
include/net/xdp.h