mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 22:59:12 +07:00
a873585587
There is too much overhead in the current trace_xdp_redirect tracepoint as it does strcpy and strlen on the net_device names. Besides, exposing the ifindex/index is actually the information that is needed in the tracepoint to diagnose issues. When a lookup fails (either ifindex or devmap index) then there is a need for saying which to_index that have issues. V2: Adjust args to be aligned with trace_xdp_exception. Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
86 lines
1.9 KiB
C
86 lines
1.9 KiB
C
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM xdp
|
|
|
|
#if !defined(_TRACE_XDP_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_XDP_H
|
|
|
|
#include <linux/netdevice.h>
|
|
#include <linux/filter.h>
|
|
#include <linux/tracepoint.h>
|
|
|
|
#define __XDP_ACT_MAP(FN) \
|
|
FN(ABORTED) \
|
|
FN(DROP) \
|
|
FN(PASS) \
|
|
FN(TX) \
|
|
FN(REDIRECT)
|
|
|
|
#define __XDP_ACT_TP_FN(x) \
|
|
TRACE_DEFINE_ENUM(XDP_##x);
|
|
#define __XDP_ACT_SYM_FN(x) \
|
|
{ XDP_##x, #x },
|
|
#define __XDP_ACT_SYM_TAB \
|
|
__XDP_ACT_MAP(__XDP_ACT_SYM_FN) { -1, 0 }
|
|
__XDP_ACT_MAP(__XDP_ACT_TP_FN)
|
|
|
|
TRACE_EVENT(xdp_exception,
|
|
|
|
TP_PROTO(const struct net_device *dev,
|
|
const struct bpf_prog *xdp, u32 act),
|
|
|
|
TP_ARGS(dev, xdp, act),
|
|
|
|
TP_STRUCT__entry(
|
|
__string(name, dev->name)
|
|
__array(u8, prog_tag, 8)
|
|
__field(u32, act)
|
|
),
|
|
|
|
TP_fast_assign(
|
|
BUILD_BUG_ON(sizeof(__entry->prog_tag) != sizeof(xdp->tag));
|
|
memcpy(__entry->prog_tag, xdp->tag, sizeof(xdp->tag));
|
|
__assign_str(name, dev->name);
|
|
__entry->act = act;
|
|
),
|
|
|
|
TP_printk("prog=%s device=%s action=%s",
|
|
__print_hex_str(__entry->prog_tag, 8),
|
|
__get_str(name),
|
|
__print_symbolic(__entry->act, __XDP_ACT_SYM_TAB))
|
|
);
|
|
|
|
TRACE_EVENT(xdp_redirect,
|
|
|
|
TP_PROTO(const struct net_device *dev,
|
|
const struct bpf_prog *xdp, u32 act,
|
|
int to_index, int err),
|
|
|
|
TP_ARGS(dev, xdp, act, to_index, err),
|
|
|
|
TP_STRUCT__entry(
|
|
__array(u8, prog_tag, 8)
|
|
__field(u32, act)
|
|
__field(int, ifindex)
|
|
__field(int, to_index)
|
|
__field(int, err)
|
|
),
|
|
|
|
TP_fast_assign(
|
|
BUILD_BUG_ON(sizeof(__entry->prog_tag) != sizeof(xdp->tag));
|
|
memcpy(__entry->prog_tag, xdp->tag, sizeof(xdp->tag));
|
|
__entry->act = act;
|
|
__entry->ifindex = dev->ifindex;
|
|
__entry->to_index = to_index;
|
|
__entry->err = err;
|
|
),
|
|
|
|
TP_printk("prog=%s action=%s ifindex=%d to_index=%d err=%d",
|
|
__print_hex_str(__entry->prog_tag, 8),
|
|
__print_symbolic(__entry->act, __XDP_ACT_SYM_TAB),
|
|
__entry->ifindex, __entry->to_index,
|
|
__entry->err)
|
|
);
|
|
#endif /* _TRACE_XDP_H */
|
|
|
|
#include <trace/define_trace.h>
|