lkml.org 
[lkml]   [2022]   [Jun]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH RFC bpf-next 25/52] net, xdp: add basic generic metadata accessors
    Date
    As all of the fields in the generic XDP metadata structure have
    explicit Endianness, it's worth to provide some basic helpers.
    Add get and set accessors for each field and get, set and rep
    accessors for each bitfield of ::{rx,tx}_flags. rep are for the
    cases when it's unknown whether a flags field is clear, so they
    effectively replace the value in a bitfield instead of just ORing.
    Also add a couple of helpers: to get a pointer to the generic
    metadata structure and check whether a given metadata is generic
    compatible.

    Signed-off-by: Alexander Lobakin <alexandr.lobakin@intel.com>
    ---
    include/net/xdp_meta.h | 238 +++++++++++++++++++++++++++++++++++++++++
    1 file changed, 238 insertions(+)

    diff --git a/include/net/xdp_meta.h b/include/net/xdp_meta.h
    index 3a40189d71c6..f61831e39eb0 100644
    --- a/include/net/xdp_meta.h
    +++ b/include/net/xdp_meta.h
    @@ -4,6 +4,7 @@
    #ifndef __LINUX_NET_XDP_META_H__
    #define __LINUX_NET_XDP_META_H__

    +#include <linux/bitfield.h>
    #include <net/xdp.h>
    #include <uapi/linux/bpf.h>

    @@ -45,4 +46,241 @@ static inline bool xdp_metalen_invalid(unsigned long metalen)
    return (metalen & (sizeof(u32) - 1)) || metalen > max;
    }

    +/* This builds _get(), _set() and _rep() for each bitfield.
    + * If you know for sure the field is empty (e.g. you zeroed the struct
    + * previously), use faster _set() op to save several cycles, otherwise
    + * use _rep() to avoid mixing values.
    + */
    +#define XDP_META_BUILD_FLAGS_ACC(dir, pfx, FLD) \
    +static inline u32 \
    +xdp_meta_##dir##_##pfx##_get(const struct xdp_meta_generic *md) \
    +{ \
    + static_assert(__same_type(md->dir##_flags, __le32)); \
    + \
    + return le32_get_bits(md->dir##_flags, XDP_META_##FLD); \
    +} \
    + \
    +static inline void \
    +xdp_meta_##dir##_##pfx##_set(struct xdp_meta_generic *md, u32 val) \
    +{ \
    + md->dir##_flags |= le32_encode_bits(val, XDP_META_##FLD); \
    +} \
    + \
    +static inline void \
    +xdp_meta_##dir##_##pfx##_rep(struct xdp_meta_generic *md, u32 val) \
    +{ \
    + le32p_replace_bits(&md->dir##_flags, val, XDP_META_##FLD); \
    +} \
    +
    +/* This builds _get() and _set() for each structure field -- those are just
    + * byteswap operations however.
    + * The second static assertion is due to that all of the fields in the
    + * structure should be naturally-aligned when ::magic_id starts at
    + * `XDP_PACKET_HEADROOM + 8n`, which is the default and recommended case.
    + * This check makes no sense for the efficient unaligned access platforms,
    + * but helps the rest.
    + */
    +#define XDP_META_BUILD_ACC(dir, pfx, sz) \
    +static inline u##sz \
    +xdp_meta_##dir##_##pfx##_get(const struct xdp_meta_generic *md) \
    +{ \
    + static_assert(__same_type(md->dir##_##pfx, __le##sz)); \
    + \
    + return le##sz##_to_cpu(md->dir##_##pfx); \
    +} \
    + \
    +static inline void \
    +xdp_meta_##dir##_##pfx##_set(struct xdp_meta_generic *md, u##sz val) \
    +{ \
    + static_assert((XDP_PACKET_HEADROOM - sizeof(*md) + \
    + sizeof_field(typeof(*md), magic_id) + \
    + offsetof(typeof(*md), dir##_##pfx)) % \
    + sizeof_field(typeof(*md), dir##_##pfx) == 0); \
    + \
    + md->dir##_##pfx = cpu_to_le##sz(val); \
    +}
    +
    +#if 0 /* For grepping/indexers */
    +u16 xdp_meta_tx_csum_action_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_csum_action_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_tx_csum_action_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_tx_vlan_type_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_vlan_type_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_tx_vlan_type_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_tx_tstamp_action_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_tstamp_action_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_tx_tstamp_action_rep(struct xdp_meta_generic *md, u16 val);
    +#endif
    +XDP_META_BUILD_FLAGS_ACC(tx, csum_action, TX_CSUM_ACT);
    +XDP_META_BUILD_FLAGS_ACC(tx, vlan_type, TX_VLAN_TYPE);
    +XDP_META_BUILD_FLAGS_ACC(tx, tstamp_action, TX_TSTAMP_ACT);
    +
    +#if 0
    +u16 xdp_meta_tx_csum_start_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_csum_start_set(struct xdp_meta_generic *md, u64 val);
    +u16 xdp_meta_tx_csum_off_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_csum_off_set(struct xdp_meta_generic *md, u64 val);
    +u16 xdp_meta_tx_vid_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_vid_set(struct xdp_meta_generic *md, u64 val);
    +u32 xdp_meta_tx_flags_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_flags_set(struct xdp_meta_generic *md, u32 val);
    +u64 xdp_meta_tx_tstamp_get(const struct xdp_meta_generic *md);
    +void xdp_meta_tx_tstamp_set(struct xdp_meta_generic *md, u64 val);
    +#endif
    +XDP_META_BUILD_ACC(tx, csum_start, 16);
    +XDP_META_BUILD_ACC(tx, csum_off, 16);
    +XDP_META_BUILD_ACC(tx, vid, 16);
    +XDP_META_BUILD_ACC(tx, flags, 32);
    +XDP_META_BUILD_ACC(tx, tstamp, 64);
    +
    +#if 0
    +u16 xdp_meta_rx_csum_status_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_csum_status_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_csum_status_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_csum_level_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_csum_level_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_csum_level_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_hash_type_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_hash_type_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_hash_type_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_vlan_type_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_vlan_type_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_vlan_type_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_tstamp_present_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_tstamp_present_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_tstamp_present_rep(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_qid_present_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_qid_present_set(struct xdp_meta_generic *md, u16 val);
    +void xdp_meta_rx_qid_present_rep(struct xdp_meta_generic *md, u16 val);
    +#endif
    +XDP_META_BUILD_FLAGS_ACC(rx, csum_status, RX_CSUM_STATUS);
    +XDP_META_BUILD_FLAGS_ACC(rx, csum_level, RX_CSUM_LEVEL);
    +XDP_META_BUILD_FLAGS_ACC(rx, hash_type, RX_HASH_TYPE);
    +XDP_META_BUILD_FLAGS_ACC(rx, vlan_type, RX_VLAN_TYPE);
    +XDP_META_BUILD_FLAGS_ACC(rx, tstamp_present, RX_TSTAMP_PRESENT);
    +XDP_META_BUILD_FLAGS_ACC(rx, qid_present, RX_QID_PRESENT);
    +
    +#if 0
    +u64 xdp_meta_rx_tstamp_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_tstamp_set(struct xdp_meta_generic *md, u64 val);
    +u32 xdp_meta_rx_hash_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_hash_set(struct xdp_meta_generic *md, u32 val);
    +u32 xdp_meta_rx_csum_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_csum_set(struct xdp_meta_generic *md, u32 val);
    +u16 xdp_meta_rx_vid_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_vid_set(struct xdp_meta_generic *md, u16 val);
    +u16 xdp_meta_rx_qid_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_qid_set(struct xdp_meta_generic *md, u16 val);
    +u32 xdp_meta_rx_flags_get(const struct xdp_meta_generic *md);
    +void xdp_meta_rx_flags_set(struct xdp_meta_generic *md, u32 val);
    +#endif
    +XDP_META_BUILD_ACC(rx, tstamp, 64);
    +XDP_META_BUILD_ACC(rx, hash, 32);
    +XDP_META_BUILD_ACC(rx, csum, 32);
    +XDP_META_BUILD_ACC(rx, vid, 16);
    +XDP_META_BUILD_ACC(rx, qid, 16);
    +XDP_META_BUILD_ACC(rx, flags, 32);
    +
    +#if 0
    +u32 xdp_meta_btf_id_get(const struct xdp_meta_generic *md);
    +void xdp_meta_btf_id_set(struct xdp_meta_generic *md, u32 val);
    +u32 xdp_meta_type_id_get(const struct xdp_meta_generic *md);
    +void xdp_meta_type_id_set(struct xdp_meta_generic *md, u32 val);
    +u64 xdp_meta_full_id_get(const struct xdp_meta_generic *md);
    +void xdp_meta_full_id_set(struct xdp_meta_generic *md, u64 val);
    +u16 xdp_meta_magic_id_get(const struct xdp_meta_generic *md);
    +void xdp_meta_magic_id_set(struct xdp_meta_generic *md, u16 val);
    +#endif
    +XDP_META_BUILD_ACC(btf, id, 32);
    +XDP_META_BUILD_ACC(type, id, 32);
    +XDP_META_BUILD_ACC(full, id, 64);
    +XDP_META_BUILD_ACC(magic, id, 16);
    +
    +/* This allows to jump from xdp_metadata_generic::{tx,rx_full,rx,id} to the
    + * parent if needed. For example, declare one of them on stack for convenience
    + * and still pass a generic pointer.
    + * No out-of-bound checks, a caller must sanitize it on its side.
    + */
    +#define _to_gen_md(ptr, locptr, locmd) ({ \
    + struct xdp_meta_generic *locmd; \
    + typeof(ptr) locptr = (ptr); \
    + \
    + if (__same_type(*locptr, typeof(locmd->tx))) \
    + locmd = (void *)locptr - offsetof(typeof(*locmd), tx); \
    + else if (__same_type(*locptr, typeof(locmd->rx_full))) \
    + locmd = (void *)locptr - offsetof(typeof(*locmd), rx_full); \
    + else if (__same_type(*locptr, typeof(locmd->rx))) \
    + locmd = (void *)locptr - offsetof(typeof(*locmd), rx); \
    + else if (__same_type(*locptr, typeof(locmd->id))) \
    + locmd = (void *)locptr - offsetof(typeof(*locmd), id); \
    + else if (__same_type(*locptr, typeof(locmd)) || \
    + __same_type(*locptr, void)) \
    + locmd = (void *)locptr; \
    + else \
    + BUILD_BUG(); \
    + \
    + locmd; \
    +})
    +#define to_gen_md(ptr) _to_gen_md((ptr), __UNIQUE_ID(ptr_), __UNIQUE_ID(md_))
    +
    +/* This allows to pass an xdp_meta_generic pointer instead of an
    + * xdp_meta_generic::rx{,_full} pointer for convenience.
    + */
    +#define _to_rx_md(ptr, locptr, locmd) ({ \
    + struct xdp_meta_generic_rx *locmd; \
    + typeof(ptr) locptr = (ptr); \
    + \
    + if (__same_type(*locptr, struct xdp_meta_generic_rx)) \
    + locmd = (struct xdp_meta_generic_rx *)locptr; \
    + else if (__same_type(*locptr, struct xdp_meta_generic) || \
    + __same_type(*locptr, void)) \
    + locmd = &((struct xdp_meta_generic *)locptr)->rx_full; \
    + else \
    + BUILD_BUG(); \
    + \
    + locmd; \
    +})
    +#define to_rx_md(ptr) _to_rx_md((ptr), __UNIQUE_ID(ptr_), __UNIQUE_ID(md_))
    +
    +/**
    + * xdp_meta_has_generic - get a pointer to the generic metadata before a frame
    + * @data: a pointer to the beginning of the frame
    + *
    + * Note: the function does not perform any access sanity checks, they should
    + * be done manually prior to calling it.
    + *
    + * Returns a pointer to the beginning of the generic metadata.
    + */
    +static inline struct xdp_meta_generic *xdp_meta_generic_ptr(const void *data)
    +{
    + BUILD_BUG_ON(xdp_metalen_invalid(sizeof(struct xdp_meta_generic)));
    +
    + return (void *)data - sizeof(struct xdp_meta_generic);
    +}
    +
    +/**
    + * xdp_meta_has_generic - check whether a frame has a generic meta in front
    + * @data: a pointer to the beginning of the frame
    + *
    + * Returns true if it does, false otherwise.
    + */
    +static inline bool xdp_meta_has_generic(const void *data)
    +{
    + return xdp_meta_generic_ptr(data)->magic_id ==
    + cpu_to_le16(XDP_META_GENERIC_MAGIC);
    +}
    +
    +/**
    + * xdp_meta_skb_has_generic - check whether an skb has a generic meta
    + * @skb: a pointer to the &sk_buff
    + *
    + * Note: must be called only when skb_mac_header_was_set(skb) == true.
    + *
    + * Returns true if it does, false otherwise.
    + */
    +static inline bool xdp_meta_skb_has_generic(const struct sk_buff *skb)
    +{
    + return xdp_meta_has_generic(skb_metadata_end(skb));
    +}
    +
    #endif /* __LINUX_NET_XDP_META_H__ */
    --
    2.36.1
    \
     
     \ /
      Last update: 2022-06-28 21:55    [W:2.926 / U:27.424 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site