1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM xdp
5 #if !defined(_TRACE_XDP_H) || defined(TRACE_HEADER_MULTI_READ)
8 #include <linux/netdevice.h>
9 #include <linux/filter.h>
10 #include <linux/tracepoint.h>
11 #include <linux/bpf.h>
13 #define __XDP_ACT_MAP(FN) \
20 #define __XDP_ACT_TP_FN(x) \
21 TRACE_DEFINE_ENUM(XDP_##x);
22 #define __XDP_ACT_SYM_FN(x) \
24 #define __XDP_ACT_SYM_TAB \
25 __XDP_ACT_MAP(__XDP_ACT_SYM_FN) { -1, NULL }
26 __XDP_ACT_MAP(__XDP_ACT_TP_FN
)
28 TRACE_EVENT(xdp_exception
,
30 TP_PROTO(const struct net_device
*dev
,
31 const struct bpf_prog
*xdp
, u32 act
),
33 TP_ARGS(dev
, xdp
, act
),
42 __entry
->prog_id
= xdp
->aux
->id
;
44 __entry
->ifindex
= dev
->ifindex
;
47 TP_printk("prog_id=%d action=%s ifindex=%d",
49 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
53 TRACE_EVENT(xdp_bulk_tx
,
55 TP_PROTO(const struct net_device
*dev
,
56 int sent
, int drops
, int err
),
58 TP_ARGS(dev
, sent
, drops
, err
),
69 __entry
->ifindex
= dev
->ifindex
;
70 __entry
->act
= XDP_TX
;
71 __entry
->drops
= drops
;
76 TP_printk("ifindex=%d action=%s sent=%d drops=%d err=%d",
78 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
79 __entry
->sent
, __entry
->drops
, __entry
->err
)
82 #ifndef __DEVMAP_OBJ_TYPE
83 #define __DEVMAP_OBJ_TYPE
84 struct _bpf_dtab_netdev
{
85 struct net_device
*dev
;
87 #endif /* __DEVMAP_OBJ_TYPE */
89 #define devmap_ifindex(tgt, map) \
90 (((map->map_type == BPF_MAP_TYPE_DEVMAP || \
91 map->map_type == BPF_MAP_TYPE_DEVMAP_HASH)) ? \
92 ((struct _bpf_dtab_netdev *)tgt)->dev->ifindex : 0)
94 DECLARE_EVENT_CLASS(xdp_redirect_template
,
96 TP_PROTO(const struct net_device
*dev
,
97 const struct bpf_prog
*xdp
,
98 const void *tgt
, int err
,
99 const struct bpf_map
*map
, u32 index
),
101 TP_ARGS(dev
, xdp
, tgt
, err
, map
, index
),
104 __field(int, prog_id
)
106 __field(int, ifindex
)
108 __field(int, to_ifindex
)
110 __field(int, map_index
)
114 __entry
->prog_id
= xdp
->aux
->id
;
115 __entry
->act
= XDP_REDIRECT
;
116 __entry
->ifindex
= dev
->ifindex
;
118 __entry
->to_ifindex
= map
? devmap_ifindex(tgt
, map
) :
120 __entry
->map_id
= map
? map
->id
: 0;
121 __entry
->map_index
= map
? index
: 0;
124 TP_printk("prog_id=%d action=%s ifindex=%d to_ifindex=%d err=%d"
125 " map_id=%d map_index=%d",
127 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
128 __entry
->ifindex
, __entry
->to_ifindex
,
129 __entry
->err
, __entry
->map_id
, __entry
->map_index
)
132 DEFINE_EVENT(xdp_redirect_template
, xdp_redirect
,
133 TP_PROTO(const struct net_device
*dev
,
134 const struct bpf_prog
*xdp
,
135 const void *tgt
, int err
,
136 const struct bpf_map
*map
, u32 index
),
137 TP_ARGS(dev
, xdp
, tgt
, err
, map
, index
)
140 DEFINE_EVENT(xdp_redirect_template
, xdp_redirect_err
,
141 TP_PROTO(const struct net_device
*dev
,
142 const struct bpf_prog
*xdp
,
143 const void *tgt
, int err
,
144 const struct bpf_map
*map
, u32 index
),
145 TP_ARGS(dev
, xdp
, tgt
, err
, map
, index
)
148 #define _trace_xdp_redirect(dev, xdp, to) \
149 trace_xdp_redirect(dev, xdp, NULL, 0, NULL, to);
151 #define _trace_xdp_redirect_err(dev, xdp, to, err) \
152 trace_xdp_redirect_err(dev, xdp, NULL, err, NULL, to);
154 #define _trace_xdp_redirect_map(dev, xdp, to, map, index) \
155 trace_xdp_redirect(dev, xdp, to, 0, map, index);
157 #define _trace_xdp_redirect_map_err(dev, xdp, to, map, index, err) \
158 trace_xdp_redirect_err(dev, xdp, to, err, map, index);
160 /* not used anymore, but kept around so as not to break old programs */
161 DEFINE_EVENT(xdp_redirect_template
, xdp_redirect_map
,
162 TP_PROTO(const struct net_device
*dev
,
163 const struct bpf_prog
*xdp
,
164 const void *tgt
, int err
,
165 const struct bpf_map
*map
, u32 index
),
166 TP_ARGS(dev
, xdp
, tgt
, err
, map
, index
)
169 DEFINE_EVENT(xdp_redirect_template
, xdp_redirect_map_err
,
170 TP_PROTO(const struct net_device
*dev
,
171 const struct bpf_prog
*xdp
,
172 const void *tgt
, int err
,
173 const struct bpf_map
*map
, u32 index
),
174 TP_ARGS(dev
, xdp
, tgt
, err
, map
, index
)
177 TRACE_EVENT(xdp_cpumap_kthread
,
179 TP_PROTO(int map_id
, unsigned int processed
, unsigned int drops
,
182 TP_ARGS(map_id
, processed
, drops
, sched
),
188 __field(unsigned int, drops
)
189 __field(unsigned int, processed
)
194 __entry
->map_id
= map_id
;
195 __entry
->act
= XDP_REDIRECT
;
196 __entry
->cpu
= smp_processor_id();
197 __entry
->drops
= drops
;
198 __entry
->processed
= processed
;
199 __entry
->sched
= sched
;
203 " cpu=%d map_id=%d action=%s"
204 " processed=%u drops=%u"
206 __entry
->cpu
, __entry
->map_id
,
207 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
208 __entry
->processed
, __entry
->drops
,
212 TRACE_EVENT(xdp_cpumap_enqueue
,
214 TP_PROTO(int map_id
, unsigned int processed
, unsigned int drops
,
217 TP_ARGS(map_id
, processed
, drops
, to_cpu
),
223 __field(unsigned int, drops
)
224 __field(unsigned int, processed
)
229 __entry
->map_id
= map_id
;
230 __entry
->act
= XDP_REDIRECT
;
231 __entry
->cpu
= smp_processor_id();
232 __entry
->drops
= drops
;
233 __entry
->processed
= processed
;
234 __entry
->to_cpu
= to_cpu
;
238 " cpu=%d map_id=%d action=%s"
239 " processed=%u drops=%u"
241 __entry
->cpu
, __entry
->map_id
,
242 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
243 __entry
->processed
, __entry
->drops
,
247 TRACE_EVENT(xdp_devmap_xmit
,
249 TP_PROTO(const struct net_device
*from_dev
,
250 const struct net_device
*to_dev
,
251 int sent
, int drops
, int err
),
253 TP_ARGS(from_dev
, to_dev
, sent
, drops
, err
),
256 __field(int, from_ifindex
)
258 __field(int, to_ifindex
)
265 __entry
->from_ifindex
= from_dev
->ifindex
;
266 __entry
->act
= XDP_REDIRECT
;
267 __entry
->to_ifindex
= to_dev
->ifindex
;
268 __entry
->drops
= drops
;
269 __entry
->sent
= sent
;
273 TP_printk("ndo_xdp_xmit"
274 " from_ifindex=%d to_ifindex=%d action=%s"
277 __entry
->from_ifindex
, __entry
->to_ifindex
,
278 __print_symbolic(__entry
->act
, __XDP_ACT_SYM_TAB
),
279 __entry
->sent
, __entry
->drops
,
283 /* Expect users already include <net/xdp.h>, but not xdp_priv.h */
284 #include <net/xdp_priv.h>
286 #define __MEM_TYPE_MAP(FN) \
292 #define __MEM_TYPE_TP_FN(x) \
293 TRACE_DEFINE_ENUM(MEM_TYPE_##x);
294 #define __MEM_TYPE_SYM_FN(x) \
295 { MEM_TYPE_##x, #x },
296 #define __MEM_TYPE_SYM_TAB \
297 __MEM_TYPE_MAP(__MEM_TYPE_SYM_FN) { -1, 0 }
298 __MEM_TYPE_MAP(__MEM_TYPE_TP_FN
)
300 TRACE_EVENT(mem_disconnect
,
302 TP_PROTO(const struct xdp_mem_allocator
*xa
),
307 __field(const struct xdp_mem_allocator
*, xa
)
309 __field(u32
, mem_type
)
310 __field(const void *, allocator
)
315 __entry
->mem_id
= xa
->mem
.id
;
316 __entry
->mem_type
= xa
->mem
.type
;
317 __entry
->allocator
= xa
->allocator
;
320 TP_printk("mem_id=%d mem_type=%s allocator=%p",
322 __print_symbolic(__entry
->mem_type
, __MEM_TYPE_SYM_TAB
),
327 TRACE_EVENT(mem_connect
,
329 TP_PROTO(const struct xdp_mem_allocator
*xa
,
330 const struct xdp_rxq_info
*rxq
),
335 __field(const struct xdp_mem_allocator
*, xa
)
337 __field(u32
, mem_type
)
338 __field(const void *, allocator
)
339 __field(const struct xdp_rxq_info
*, rxq
)
340 __field(int, ifindex
)
345 __entry
->mem_id
= xa
->mem
.id
;
346 __entry
->mem_type
= xa
->mem
.type
;
347 __entry
->allocator
= xa
->allocator
;
349 __entry
->ifindex
= rxq
->dev
->ifindex
;
352 TP_printk("mem_id=%d mem_type=%s allocator=%p"
355 __print_symbolic(__entry
->mem_type
, __MEM_TYPE_SYM_TAB
),
361 TRACE_EVENT(mem_return_failed
,
363 TP_PROTO(const struct xdp_mem_info
*mem
,
364 const struct page
*page
),
369 __field(const struct page
*, page
)
371 __field(u32
, mem_type
)
375 __entry
->page
= page
;
376 __entry
->mem_id
= mem
->id
;
377 __entry
->mem_type
= mem
->type
;
380 TP_printk("mem_id=%d mem_type=%s page=%p",
382 __print_symbolic(__entry
->mem_type
, __MEM_TYPE_SYM_TAB
),
387 #endif /* _TRACE_XDP_H */
389 #include <trace/define_trace.h>