split dev_queue
[cor.git] / include / net / xdp_sock.h
blobe3780e4b74e1037d0047a1f3ac0ca449eb448eff
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* AF_XDP internal functions
3 * Copyright(c) 2018 Intel Corporation.
4 */
6 #ifndef _LINUX_XDP_SOCK_H
7 #define _LINUX_XDP_SOCK_H
9 #include <linux/workqueue.h>
10 #include <linux/if_xdp.h>
11 #include <linux/mutex.h>
12 #include <linux/spinlock.h>
13 #include <linux/mm.h>
14 #include <net/sock.h>
16 struct net_device;
17 struct xsk_queue;
19 /* Masks for xdp_umem_page flags.
20 * The low 12-bits of the addr will be 0 since this is the page address, so we
21 * can use them for flags.
23 #define XSK_NEXT_PG_CONTIG_SHIFT 0
24 #define XSK_NEXT_PG_CONTIG_MASK (1ULL << XSK_NEXT_PG_CONTIG_SHIFT)
26 struct xdp_umem_page {
27 void *addr;
28 dma_addr_t dma;
31 struct xdp_umem_fq_reuse {
32 u32 nentries;
33 u32 length;
34 u64 handles[];
37 /* Flags for the umem flags field.
39 * The NEED_WAKEUP flag is 1 due to the reuse of the flags field for public
40 * flags. See inlude/uapi/include/linux/if_xdp.h.
42 #define XDP_UMEM_USES_NEED_WAKEUP (1 << 1)
44 struct xdp_umem {
45 struct xsk_queue *fq;
46 struct xsk_queue *cq;
47 struct xdp_umem_page *pages;
48 u64 chunk_mask;
49 u64 size;
50 u32 headroom;
51 u32 chunk_size_nohr;
52 struct user_struct *user;
53 unsigned long address;
54 refcount_t users;
55 struct work_struct work;
56 struct page **pgs;
57 u32 npgs;
58 u16 queue_id;
59 u8 need_wakeup;
60 u8 flags;
61 int id;
62 struct net_device *dev;
63 struct xdp_umem_fq_reuse *fq_reuse;
64 bool zc;
65 spinlock_t xsk_list_lock;
66 struct list_head xsk_list;
69 /* Nodes are linked in the struct xdp_sock map_list field, and used to
70 * track which maps a certain socket reside in.
73 struct xsk_map {
74 struct bpf_map map;
75 struct list_head __percpu *flush_list;
76 spinlock_t lock; /* Synchronize map updates */
77 struct xdp_sock *xsk_map[];
80 struct xsk_map_node {
81 struct list_head node;
82 struct xsk_map *map;
83 struct xdp_sock **map_entry;
86 struct xdp_sock {
87 /* struct sock must be the first member of struct xdp_sock */
88 struct sock sk;
89 struct xsk_queue *rx;
90 struct net_device *dev;
91 struct xdp_umem *umem;
92 struct list_head flush_node;
93 u16 queue_id;
94 bool zc;
95 enum {
96 XSK_READY = 0,
97 XSK_BOUND,
98 XSK_UNBOUND,
99 } state;
100 /* Protects multiple processes in the control path */
101 struct mutex mutex;
102 struct xsk_queue *tx ____cacheline_aligned_in_smp;
103 struct list_head list;
104 /* Mutual exclusion of NAPI TX thread and sendmsg error paths
105 * in the SKB destructor callback.
107 spinlock_t tx_completion_lock;
108 /* Protects generic receive. */
109 spinlock_t rx_lock;
110 u64 rx_dropped;
111 struct list_head map_list;
112 /* Protects map_list */
113 spinlock_t map_list_lock;
116 struct xdp_buff;
117 #ifdef CONFIG_XDP_SOCKETS
118 int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp);
119 bool xsk_is_setup_for_bpf_map(struct xdp_sock *xs);
120 /* Used from netdev driver */
121 bool xsk_umem_has_addrs(struct xdp_umem *umem, u32 cnt);
122 u64 *xsk_umem_peek_addr(struct xdp_umem *umem, u64 *addr);
123 void xsk_umem_discard_addr(struct xdp_umem *umem);
124 void xsk_umem_complete_tx(struct xdp_umem *umem, u32 nb_entries);
125 bool xsk_umem_consume_tx(struct xdp_umem *umem, struct xdp_desc *desc);
126 void xsk_umem_consume_tx_done(struct xdp_umem *umem);
127 struct xdp_umem_fq_reuse *xsk_reuseq_prepare(u32 nentries);
128 struct xdp_umem_fq_reuse *xsk_reuseq_swap(struct xdp_umem *umem,
129 struct xdp_umem_fq_reuse *newq);
130 void xsk_reuseq_free(struct xdp_umem_fq_reuse *rq);
131 struct xdp_umem *xdp_get_umem_from_qid(struct net_device *dev, u16 queue_id);
132 void xsk_set_rx_need_wakeup(struct xdp_umem *umem);
133 void xsk_set_tx_need_wakeup(struct xdp_umem *umem);
134 void xsk_clear_rx_need_wakeup(struct xdp_umem *umem);
135 void xsk_clear_tx_need_wakeup(struct xdp_umem *umem);
136 bool xsk_umem_uses_need_wakeup(struct xdp_umem *umem);
138 void xsk_map_try_sock_delete(struct xsk_map *map, struct xdp_sock *xs,
139 struct xdp_sock **map_entry);
140 int xsk_map_inc(struct xsk_map *map);
141 void xsk_map_put(struct xsk_map *map);
142 int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
143 struct xdp_sock *xs);
144 void __xsk_map_flush(struct bpf_map *map);
146 static inline struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map,
147 u32 key)
149 struct xsk_map *m = container_of(map, struct xsk_map, map);
150 struct xdp_sock *xs;
152 if (key >= map->max_entries)
153 return NULL;
155 xs = READ_ONCE(m->xsk_map[key]);
156 return xs;
159 static inline u64 xsk_umem_extract_addr(u64 addr)
161 return addr & XSK_UNALIGNED_BUF_ADDR_MASK;
164 static inline u64 xsk_umem_extract_offset(u64 addr)
166 return addr >> XSK_UNALIGNED_BUF_OFFSET_SHIFT;
169 static inline u64 xsk_umem_add_offset_to_addr(u64 addr)
171 return xsk_umem_extract_addr(addr) + xsk_umem_extract_offset(addr);
174 static inline char *xdp_umem_get_data(struct xdp_umem *umem, u64 addr)
176 unsigned long page_addr;
178 addr = xsk_umem_add_offset_to_addr(addr);
179 page_addr = (unsigned long)umem->pages[addr >> PAGE_SHIFT].addr;
181 return (char *)(page_addr & PAGE_MASK) + (addr & ~PAGE_MASK);
184 static inline dma_addr_t xdp_umem_get_dma(struct xdp_umem *umem, u64 addr)
186 addr = xsk_umem_add_offset_to_addr(addr);
188 return umem->pages[addr >> PAGE_SHIFT].dma + (addr & ~PAGE_MASK);
191 /* Reuse-queue aware version of FILL queue helpers */
192 static inline bool xsk_umem_has_addrs_rq(struct xdp_umem *umem, u32 cnt)
194 struct xdp_umem_fq_reuse *rq = umem->fq_reuse;
196 if (rq->length >= cnt)
197 return true;
199 return xsk_umem_has_addrs(umem, cnt - rq->length);
202 static inline u64 *xsk_umem_peek_addr_rq(struct xdp_umem *umem, u64 *addr)
204 struct xdp_umem_fq_reuse *rq = umem->fq_reuse;
206 if (!rq->length)
207 return xsk_umem_peek_addr(umem, addr);
209 *addr = rq->handles[rq->length - 1];
210 return addr;
213 static inline void xsk_umem_discard_addr_rq(struct xdp_umem *umem)
215 struct xdp_umem_fq_reuse *rq = umem->fq_reuse;
217 if (!rq->length)
218 xsk_umem_discard_addr(umem);
219 else
220 rq->length--;
223 static inline void xsk_umem_fq_reuse(struct xdp_umem *umem, u64 addr)
225 struct xdp_umem_fq_reuse *rq = umem->fq_reuse;
227 rq->handles[rq->length++] = addr;
230 /* Handle the offset appropriately depending on aligned or unaligned mode.
231 * For unaligned mode, we store the offset in the upper 16-bits of the address.
232 * For aligned mode, we simply add the offset to the address.
234 static inline u64 xsk_umem_adjust_offset(struct xdp_umem *umem, u64 address,
235 u64 offset)
237 if (umem->flags & XDP_UMEM_UNALIGNED_CHUNK_FLAG)
238 return address + (offset << XSK_UNALIGNED_BUF_OFFSET_SHIFT);
239 else
240 return address + offset;
242 #else
243 static inline int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp)
245 return -ENOTSUPP;
248 static inline bool xsk_is_setup_for_bpf_map(struct xdp_sock *xs)
250 return false;
253 static inline bool xsk_umem_has_addrs(struct xdp_umem *umem, u32 cnt)
255 return false;
258 static inline u64 *xsk_umem_peek_addr(struct xdp_umem *umem, u64 *addr)
260 return NULL;
263 static inline void xsk_umem_discard_addr(struct xdp_umem *umem)
267 static inline void xsk_umem_complete_tx(struct xdp_umem *umem, u32 nb_entries)
271 static inline bool xsk_umem_consume_tx(struct xdp_umem *umem,
272 struct xdp_desc *desc)
274 return false;
277 static inline void xsk_umem_consume_tx_done(struct xdp_umem *umem)
281 static inline struct xdp_umem_fq_reuse *xsk_reuseq_prepare(u32 nentries)
283 return NULL;
286 static inline struct xdp_umem_fq_reuse *xsk_reuseq_swap(
287 struct xdp_umem *umem,
288 struct xdp_umem_fq_reuse *newq)
290 return NULL;
292 static inline void xsk_reuseq_free(struct xdp_umem_fq_reuse *rq)
296 static inline struct xdp_umem *xdp_get_umem_from_qid(struct net_device *dev,
297 u16 queue_id)
299 return NULL;
302 static inline u64 xsk_umem_extract_addr(u64 addr)
304 return 0;
307 static inline u64 xsk_umem_extract_offset(u64 addr)
309 return 0;
312 static inline u64 xsk_umem_add_offset_to_addr(u64 addr)
314 return 0;
317 static inline char *xdp_umem_get_data(struct xdp_umem *umem, u64 addr)
319 return NULL;
322 static inline dma_addr_t xdp_umem_get_dma(struct xdp_umem *umem, u64 addr)
324 return 0;
327 static inline bool xsk_umem_has_addrs_rq(struct xdp_umem *umem, u32 cnt)
329 return false;
332 static inline u64 *xsk_umem_peek_addr_rq(struct xdp_umem *umem, u64 *addr)
334 return NULL;
337 static inline void xsk_umem_discard_addr_rq(struct xdp_umem *umem)
341 static inline void xsk_umem_fq_reuse(struct xdp_umem *umem, u64 addr)
345 static inline void xsk_set_rx_need_wakeup(struct xdp_umem *umem)
349 static inline void xsk_set_tx_need_wakeup(struct xdp_umem *umem)
353 static inline void xsk_clear_rx_need_wakeup(struct xdp_umem *umem)
357 static inline void xsk_clear_tx_need_wakeup(struct xdp_umem *umem)
361 static inline bool xsk_umem_uses_need_wakeup(struct xdp_umem *umem)
363 return false;
366 static inline u64 xsk_umem_adjust_offset(struct xdp_umem *umem, u64 handle,
367 u64 offset)
369 return 0;
372 static inline int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
373 struct xdp_sock *xs)
375 return -EOPNOTSUPP;
378 static inline void __xsk_map_flush(struct bpf_map *map)
382 static inline struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map,
383 u32 key)
385 return NULL;
387 #endif /* CONFIG_XDP_SOCKETS */
389 #endif /* _LINUX_XDP_SOCK_H */