blob: f7c73ae62b7a49f7c6d1cf9c702b332e9b62d0ea [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM xdp
4
5#if !defined(_TRACE_XDP_H) || defined(TRACE_HEADER_MULTI_READ)
6#define _TRACE_XDP_H
7
8#include <linux/netdevice.h>
9#include <linux/filter.h>
10#include <linux/tracepoint.h>
11#include <linux/bpf.h>
12
13#define __XDP_ACT_MAP(FN) \
14 FN(ABORTED) \
15 FN(DROP) \
16 FN(PASS) \
17 FN(TX) \
18 FN(REDIRECT)
19
20#define __XDP_ACT_TP_FN(x) \
21 TRACE_DEFINE_ENUM(XDP_##x);
22#define __XDP_ACT_SYM_FN(x) \
23 { XDP_##x, #x },
24#define __XDP_ACT_SYM_TAB \
25 __XDP_ACT_MAP(__XDP_ACT_SYM_FN) { -1, 0 }
26__XDP_ACT_MAP(__XDP_ACT_TP_FN)
27
28TRACE_EVENT(xdp_exception,
29
30 TP_PROTO(const struct net_device *dev,
31 const struct bpf_prog *xdp, u32 act),
32
33 TP_ARGS(dev, xdp, act),
34
35 TP_STRUCT__entry(
36 __field(int, prog_id)
37 __field(u32, act)
38 __field(int, ifindex)
39 ),
40
41 TP_fast_assign(
42 __entry->prog_id = xdp->aux->id;
43 __entry->act = act;
44 __entry->ifindex = dev->ifindex;
45 ),
46
47 TP_printk("prog_id=%d action=%s ifindex=%d",
48 __entry->prog_id,
49 __print_symbolic(__entry->act, __XDP_ACT_SYM_TAB),
50 __entry->ifindex)
51);
52
53DECLARE_EVENT_CLASS(xdp_redirect_template,
54
55 TP_PROTO(const struct net_device *dev,
56 const struct bpf_prog *xdp,
57 int to_ifindex, int err,
58 const struct bpf_map *map, u32 map_index),
59
60 TP_ARGS(dev, xdp, to_ifindex, err, map, map_index),
61
62 TP_STRUCT__entry(
63 __field(int, prog_id)
64 __field(u32, act)
65 __field(int, ifindex)
66 __field(int, err)
67 __field(int, to_ifindex)
68 __field(u32, map_id)
69 __field(int, map_index)
70 ),
71
72 TP_fast_assign(
73 __entry->prog_id = xdp->aux->id;
74 __entry->act = XDP_REDIRECT;
75 __entry->ifindex = dev->ifindex;
76 __entry->err = err;
77 __entry->to_ifindex = to_ifindex;
78 __entry->map_id = map ? map->id : 0;
79 __entry->map_index = map_index;
80 ),
81
82 TP_printk("prog_id=%d action=%s ifindex=%d to_ifindex=%d err=%d",
83 __entry->prog_id,
84 __print_symbolic(__entry->act, __XDP_ACT_SYM_TAB),
85 __entry->ifindex, __entry->to_ifindex,
86 __entry->err)
87);
88
89DEFINE_EVENT(xdp_redirect_template, xdp_redirect,
90 TP_PROTO(const struct net_device *dev,
91 const struct bpf_prog *xdp,
92 int to_ifindex, int err,
93 const struct bpf_map *map, u32 map_index),
94 TP_ARGS(dev, xdp, to_ifindex, err, map, map_index)
95);
96
97DEFINE_EVENT(xdp_redirect_template, xdp_redirect_err,
98 TP_PROTO(const struct net_device *dev,
99 const struct bpf_prog *xdp,
100 int to_ifindex, int err,
101 const struct bpf_map *map, u32 map_index),
102 TP_ARGS(dev, xdp, to_ifindex, err, map, map_index)
103);
104
105#define _trace_xdp_redirect(dev, xdp, to) \
106 trace_xdp_redirect(dev, xdp, to, 0, NULL, 0);
107
108#define _trace_xdp_redirect_err(dev, xdp, to, err) \
109 trace_xdp_redirect_err(dev, xdp, to, err, NULL, 0);
110
111DEFINE_EVENT_PRINT(xdp_redirect_template, xdp_redirect_map,
112 TP_PROTO(const struct net_device *dev,
113 const struct bpf_prog *xdp,
114 int to_ifindex, int err,
115 const struct bpf_map *map, u32 map_index),
116 TP_ARGS(dev, xdp, to_ifindex, err, map, map_index),
117 TP_printk("prog_id=%d action=%s ifindex=%d to_ifindex=%d err=%d"
118 " map_id=%d map_index=%d",
119 __entry->prog_id,
120 __print_symbolic(__entry->act, __XDP_ACT_SYM_TAB),
121 __entry->ifindex, __entry->to_ifindex,
122 __entry->err,
123 __entry->map_id, __entry->map_index)
124);
125
126DEFINE_EVENT_PRINT(xdp_redirect_template, xdp_redirect_map_err,
127 TP_PROTO(const struct net_device *dev,
128 const struct bpf_prog *xdp,
129 int to_ifindex, int err,
130 const struct bpf_map *map, u32 map_index),
131 TP_ARGS(dev, xdp, to_ifindex, err, map, map_index),
132 TP_printk("prog_id=%d action=%s ifindex=%d to_ifindex=%d err=%d"
133 " map_id=%d map_index=%d",
134 __entry->prog_id,
135 __print_symbolic(__entry->act, __XDP_ACT_SYM_TAB),
136 __entry->ifindex, __entry->to_ifindex,
137 __entry->err,
138 __entry->map_id, __entry->map_index)
139);
140
141#define _trace_xdp_redirect_map(dev, xdp, fwd, map, idx) \
142 trace_xdp_redirect_map(dev, xdp, fwd ? fwd->ifindex : 0, \
143 0, map, idx)
144
145#define _trace_xdp_redirect_map_err(dev, xdp, fwd, map, idx, err) \
146 trace_xdp_redirect_map_err(dev, xdp, fwd ? fwd->ifindex : 0, \
147 err, map, idx)
148
149#endif /* _TRACE_XDP_H */
150
151#include <trace/define_trace.h>