blob: e9aa2c23635618430267fdc4a3115a7ac845fcde [file] [log] [blame]
Björn Töpeldac091492018-05-18 14:00:21 +02001/* SPDX-License-Identifier: GPL-2.0 */
2/* XDP user-space ring structure
Magnus Karlsson423f3832018-05-02 13:01:24 +02003 * Copyright(c) 2018 Intel Corporation.
Magnus Karlsson423f3832018-05-02 13:01:24 +02004 */
5
6#ifndef _LINUX_XSK_QUEUE_H
7#define _LINUX_XSK_QUEUE_H
8
9#include <linux/types.h>
10#include <linux/if_xdp.h>
Björn Töpele61e62b92018-06-04 14:05:51 +020011#include <net/xdp_sock.h>
Björn Töpel2b434702020-05-20 21:20:53 +020012#include <net/xsk_buff_pool.h>
Magnus Karlsson423f3832018-05-02 13:01:24 +020013
Björn Töpel89e4a372020-05-20 21:20:52 +020014#include "xsk.h"
15
Björn Töpelb3a9e0b2018-05-22 09:34:59 +020016struct xdp_ring {
17 u32 producer ____cacheline_aligned_in_smp;
Magnus Karlssonc3f01fd2020-10-08 16:12:18 +020018 /* Hinder the adjacent cache prefetcher to prefetch the consumer
19 * pointer if the producer pointer is touched and vice versa.
20 */
Magnus Karlssonb8c7aec2020-11-16 12:12:45 +010021 u32 pad1 ____cacheline_aligned_in_smp;
Björn Töpelb3a9e0b2018-05-22 09:34:59 +020022 u32 consumer ____cacheline_aligned_in_smp;
Magnus Karlssonb8c7aec2020-11-16 12:12:45 +010023 u32 pad2 ____cacheline_aligned_in_smp;
Magnus Karlsson77cd0d72019-08-14 09:27:17 +020024 u32 flags;
Magnus Karlssonb8c7aec2020-11-16 12:12:45 +010025 u32 pad3 ____cacheline_aligned_in_smp;
Björn Töpelb3a9e0b2018-05-22 09:34:59 +020026};
27
28/* Used for the RX and TX queues for packets */
29struct xdp_rxtx_ring {
30 struct xdp_ring ptrs;
Gustavo A. R. Silva95e486f2020-02-28 07:19:07 -060031 struct xdp_desc desc[] ____cacheline_aligned_in_smp;
Björn Töpelb3a9e0b2018-05-22 09:34:59 +020032};
33
34/* Used for the fill and completion queues for buffers */
35struct xdp_umem_ring {
36 struct xdp_ring ptrs;
Gustavo A. R. Silva95e486f2020-02-28 07:19:07 -060037 u64 desc[] ____cacheline_aligned_in_smp;
Björn Töpelb3a9e0b2018-05-22 09:34:59 +020038};
39
Magnus Karlsson423f3832018-05-02 13:01:24 +020040struct xsk_queue {
Magnus Karlsson423f3832018-05-02 13:01:24 +020041 u32 ring_mask;
42 u32 nentries;
Magnus Karlssond7012f02019-12-19 13:39:22 +010043 u32 cached_prod;
Magnus Karlssonc5ed924b2019-12-19 13:39:26 +010044 u32 cached_cons;
Magnus Karlsson423f3832018-05-02 13:01:24 +020045 struct xdp_ring *ring;
46 u64 invalid_descs;
Ciara Loftus8aa5a332020-07-08 07:28:33 +000047 u64 queue_empty_descs;
Magnus Karlsson423f3832018-05-02 13:01:24 +020048};
49
Björn Töpela23b3f52021-03-05 10:41:12 +010050/* The structure of the shared state of the rings are a simple
51 * circular buffer, as outlined in
52 * Documentation/core-api/circular-buffers.rst. For the Rx and
53 * completion ring, the kernel is the producer and user space is the
54 * consumer. For the Tx and fill rings, the kernel is the consumer and
55 * user space is the producer.
Magnus Karlssonf63666de2019-04-16 14:58:08 +020056 *
57 * producer consumer
58 *
Björn Töpela23b3f52021-03-05 10:41:12 +010059 * if (LOAD ->consumer) { (A) LOAD.acq ->producer (C)
Magnus Karlssonf63666de2019-04-16 14:58:08 +020060 * STORE $data LOAD $data
Björn Töpela23b3f52021-03-05 10:41:12 +010061 * STORE.rel ->producer (B) STORE.rel ->consumer (D)
Magnus Karlssonf63666de2019-04-16 14:58:08 +020062 * }
63 *
64 * (A) pairs with (D), and (B) pairs with (C).
65 *
66 * Starting with (B), it protects the data from being written after
67 * the producer pointer. If this barrier was missing, the consumer
68 * could observe the producer pointer being set and thus load the data
69 * before the producer has written the new data. The consumer would in
70 * this case load the old data.
71 *
72 * (C) protects the consumer from speculatively loading the data before
73 * the producer pointer actually has been read. If we do not have this
74 * barrier, some architectures could load old data as speculative loads
75 * are not discarded as the CPU does not know there is a dependency
76 * between ->producer and data.
77 *
78 * (A) is a control dependency that separates the load of ->consumer
79 * from the stores of $data. In case ->consumer indicates there is no
Björn Töpela23b3f52021-03-05 10:41:12 +010080 * room in the buffer to store $data we do not. The dependency will
81 * order both of the stores after the loads. So no barrier is needed.
Magnus Karlssonf63666de2019-04-16 14:58:08 +020082 *
83 * (D) protects the load of the data to be observed to happen after the
84 * store of the consumer pointer. If we did not have this memory
85 * barrier, the producer could observe the consumer pointer being set
86 * and overwrite the data with a new value before the consumer got the
87 * chance to read the old value. The consumer would thus miss reading
88 * the old entry and very likely read the new entry twice, once right
89 * now and again after circling through the ring.
90 */
91
Magnus Karlsson15d8c912019-12-19 13:39:30 +010092/* The operations on the rings are the following:
93 *
94 * producer consumer
95 *
96 * RESERVE entries PEEK in the ring for entries
97 * WRITE data into the ring READ data from the ring
98 * SUBMIT entries RELEASE entries
99 *
100 * The producer reserves one or more entries in the ring. It can then
101 * fill in these entries and finally submit them so that they can be
102 * seen and read by the consumer.
103 *
104 * The consumer peeks into the ring to see if the producer has written
Ciara Loftusf1fc8ec2020-09-28 08:23:44 +0000105 * any new entries. If so, the consumer can then read these entries
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100106 * and when it is done reading them release them back to the producer
107 * so that the producer can use these slots to fill in new entries.
108 *
109 * The function names below reflect these operations.
110 */
Björn Töpelc4971762018-05-02 13:01:27 +0200111
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100112/* Functions that read and validate content from consumer rings. */
Björn Töpelc4971762018-05-02 13:01:27 +0200113
Magnus Karlsson47e40752021-09-22 09:56:02 +0200114static inline void __xskq_cons_read_addr_unchecked(struct xsk_queue *q, u32 cached_cons, u64 *addr)
Björn Töpel2b434702020-05-20 21:20:53 +0200115{
116 struct xdp_umem_ring *ring = (struct xdp_umem_ring *)q->ring;
Magnus Karlsson47e40752021-09-22 09:56:02 +0200117 u32 idx = cached_cons & q->ring_mask;
Björn Töpel2b434702020-05-20 21:20:53 +0200118
Magnus Karlsson47e40752021-09-22 09:56:02 +0200119 *addr = ring->desc[idx];
120}
121
122static inline bool xskq_cons_read_addr_unchecked(struct xsk_queue *q, u64 *addr)
123{
Björn Töpel2b434702020-05-20 21:20:53 +0200124 if (q->cached_cons != q->cached_prod) {
Magnus Karlsson47e40752021-09-22 09:56:02 +0200125 __xskq_cons_read_addr_unchecked(q, q->cached_cons, addr);
Björn Töpel2b434702020-05-20 21:20:53 +0200126 return true;
127 }
128
129 return false;
130}
131
Björn Töpel26062b12020-05-20 21:21:02 +0200132static inline bool xp_aligned_validate_desc(struct xsk_buff_pool *pool,
133 struct xdp_desc *desc)
134{
Magnus Karlssonf654fae2021-06-18 09:58:05 +0200135 u64 chunk, chunk_end;
Björn Töpel26062b12020-05-20 21:21:02 +0200136
Xuan Zhuoac315652021-04-28 17:44:24 +0800137 chunk = xp_aligned_extract_addr(pool, desc->addr);
Magnus Karlssonf654fae2021-06-18 09:58:05 +0200138 if (likely(desc->len)) {
139 chunk_end = xp_aligned_extract_addr(pool, desc->addr + desc->len - 1);
140 if (chunk != chunk_end)
141 return false;
142 }
143
Björn Töpel26062b12020-05-20 21:21:02 +0200144 if (chunk >= pool->addrs_cnt)
145 return false;
146
147 if (desc->options)
148 return false;
149 return true;
150}
151
152static inline bool xp_unaligned_validate_desc(struct xsk_buff_pool *pool,
153 struct xdp_desc *desc)
154{
155 u64 addr, base_addr;
156
157 base_addr = xp_unaligned_extract_addr(desc->addr);
158 addr = xp_unaligned_add_offset_to_addr(desc->addr);
159
160 if (desc->len > pool->chunk_size)
161 return false;
162
163 if (base_addr >= pool->addrs_cnt || addr >= pool->addrs_cnt ||
164 xp_desc_crosses_non_contig_pg(pool, addr, desc->len))
165 return false;
166
167 if (desc->options)
168 return false;
169 return true;
170}
171
172static inline bool xp_validate_desc(struct xsk_buff_pool *pool,
173 struct xdp_desc *desc)
174{
175 return pool->unaligned ? xp_unaligned_validate_desc(pool, desc) :
176 xp_aligned_validate_desc(pool, desc);
177}
178
Magnus Karlsson03896ef2019-12-19 13:39:27 +0100179static inline bool xskq_cons_is_valid_desc(struct xsk_queue *q,
180 struct xdp_desc *d,
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200181 struct xsk_buff_pool *pool)
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200182{
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200183 if (!xp_validate_desc(pool, d)) {
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200184 q->invalid_descs++;
185 return false;
186 }
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200187 return true;
188}
189
Magnus Karlsson03896ef2019-12-19 13:39:27 +0100190static inline bool xskq_cons_read_desc(struct xsk_queue *q,
191 struct xdp_desc *desc,
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200192 struct xsk_buff_pool *pool)
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200193{
Magnus Karlssonc5ed924b2019-12-19 13:39:26 +0100194 while (q->cached_cons != q->cached_prod) {
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200195 struct xdp_rxtx_ring *ring = (struct xdp_rxtx_ring *)q->ring;
Magnus Karlssonc5ed924b2019-12-19 13:39:26 +0100196 u32 idx = q->cached_cons & q->ring_mask;
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200197
Magnus Karlssonc34787f2019-12-19 13:39:29 +0100198 *desc = ring->desc[idx];
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200199 if (xskq_cons_is_valid_desc(q, desc, pool))
Magnus Karlsson03896ef2019-12-19 13:39:27 +0100200 return true;
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200201
Magnus Karlssonc5ed924b2019-12-19 13:39:26 +0100202 q->cached_cons++;
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200203 }
204
Magnus Karlsson03896ef2019-12-19 13:39:27 +0100205 return false;
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200206}
207
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100208static inline u32 xskq_cons_read_desc_batch(struct xsk_queue *q,
209 struct xdp_desc *descs,
210 struct xsk_buff_pool *pool, u32 max)
211{
212 u32 cached_cons = q->cached_cons, nb_entries = 0;
213
214 while (cached_cons != q->cached_prod && nb_entries < max) {
215 struct xdp_rxtx_ring *ring = (struct xdp_rxtx_ring *)q->ring;
216 u32 idx = cached_cons & q->ring_mask;
217
218 descs[nb_entries] = ring->desc[idx];
219 if (unlikely(!xskq_cons_is_valid_desc(q, &descs[nb_entries], pool))) {
220 /* Skip the entry */
221 cached_cons++;
222 continue;
223 }
224
225 nb_entries++;
226 cached_cons++;
227 }
228
229 return nb_entries;
230}
231
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100232/* Functions for consumers */
233
234static inline void __xskq_cons_release(struct xsk_queue *q)
235{
Björn Töpela23b3f52021-03-05 10:41:12 +0100236 smp_store_release(&q->ring->consumer, q->cached_cons); /* D, matchees A */
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100237}
238
239static inline void __xskq_cons_peek(struct xsk_queue *q)
240{
241 /* Refresh the local pointer */
Björn Töpela23b3f52021-03-05 10:41:12 +0100242 q->cached_prod = smp_load_acquire(&q->ring->producer); /* C, matches B */
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100243}
244
245static inline void xskq_cons_get_entries(struct xsk_queue *q)
246{
247 __xskq_cons_release(q);
248 __xskq_cons_peek(q);
249}
250
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100251static inline u32 xskq_cons_nb_entries(struct xsk_queue *q, u32 max)
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100252{
253 u32 entries = q->cached_prod - q->cached_cons;
254
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100255 if (entries >= max)
256 return max;
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100257
258 __xskq_cons_peek(q);
259 entries = q->cached_prod - q->cached_cons;
260
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100261 return entries >= max ? max : entries;
262}
263
264static inline bool xskq_cons_has_entries(struct xsk_queue *q, u32 cnt)
265{
266 return xskq_cons_nb_entries(q, cnt) >= cnt ? true : false;
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100267}
268
Björn Töpel2b434702020-05-20 21:20:53 +0200269static inline bool xskq_cons_peek_addr_unchecked(struct xsk_queue *q, u64 *addr)
270{
271 if (q->cached_prod == q->cached_cons)
272 xskq_cons_get_entries(q);
273 return xskq_cons_read_addr_unchecked(q, addr);
274}
275
Magnus Karlsson03896ef2019-12-19 13:39:27 +0100276static inline bool xskq_cons_peek_desc(struct xsk_queue *q,
277 struct xdp_desc *desc,
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200278 struct xsk_buff_pool *pool)
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200279{
Magnus Karlssonc5ed924b2019-12-19 13:39:26 +0100280 if (q->cached_prod == q->cached_cons)
281 xskq_cons_get_entries(q);
Magnus Karlsson1c1efc22020-08-28 10:26:17 +0200282 return xskq_cons_read_desc(q, desc, pool);
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200283}
284
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100285static inline u32 xskq_cons_peek_desc_batch(struct xsk_queue *q, struct xdp_desc *descs,
286 struct xsk_buff_pool *pool, u32 max)
287{
288 u32 entries = xskq_cons_nb_entries(q, max);
289
290 return xskq_cons_read_desc_batch(q, descs, pool, entries);
291}
292
293/* To improve performance in the xskq_cons_release functions, only update local state here.
294 * Reflect this to global state when we get new entries from the ring in
295 * xskq_cons_get_entries() and whenever Rx or Tx processing are completed in the NAPI loop.
296 */
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100297static inline void xskq_cons_release(struct xsk_queue *q)
298{
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100299 q->cached_cons++;
300}
301
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100302static inline void xskq_cons_release_n(struct xsk_queue *q, u32 cnt)
303{
304 q->cached_cons += cnt;
305}
306
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100307static inline bool xskq_cons_is_full(struct xsk_queue *q)
308{
309 /* No barriers needed since data is not accessed */
310 return READ_ONCE(q->ring->producer) - READ_ONCE(q->ring->consumer) ==
311 q->nentries;
312}
313
Xuan Zhuo3413f042020-12-01 21:56:58 +0800314static inline u32 xskq_cons_present_entries(struct xsk_queue *q)
315{
316 /* No barriers needed since data is not accessed */
317 return READ_ONCE(q->ring->producer) - READ_ONCE(q->ring->consumer);
318}
319
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100320/* Functions for producers */
321
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100322static inline u32 xskq_prod_nb_free(struct xsk_queue *q, u32 max)
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100323{
324 u32 free_entries = q->nentries - (q->cached_prod - q->cached_cons);
325
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100326 if (free_entries >= max)
327 return max;
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100328
329 /* Refresh the local tail pointer */
330 q->cached_cons = READ_ONCE(q->ring->consumer);
331 free_entries = q->nentries - (q->cached_prod - q->cached_cons);
332
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100333 return free_entries >= max ? max : free_entries;
334}
335
336static inline bool xskq_prod_is_full(struct xsk_queue *q)
337{
338 return xskq_prod_nb_free(q, 1) ? false : true;
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100339}
340
Magnus Karlssonb1b95cb2020-12-18 14:45:25 +0100341static inline void xskq_prod_cancel(struct xsk_queue *q)
342{
343 q->cached_prod--;
344}
345
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100346static inline int xskq_prod_reserve(struct xsk_queue *q)
347{
348 if (xskq_prod_is_full(q))
349 return -ENOSPC;
350
351 /* A, matches D */
352 q->cached_prod++;
353 return 0;
354}
355
356static inline int xskq_prod_reserve_addr(struct xsk_queue *q, u64 addr)
357{
358 struct xdp_umem_ring *ring = (struct xdp_umem_ring *)q->ring;
359
360 if (xskq_prod_is_full(q))
361 return -ENOSPC;
362
363 /* A, matches D */
364 ring->desc[q->cached_prod++ & q->ring_mask] = addr;
365 return 0;
366}
367
Magnus Karlsson9349eb32020-11-16 12:12:46 +0100368static inline u32 xskq_prod_reserve_addr_batch(struct xsk_queue *q, struct xdp_desc *descs,
369 u32 max)
370{
371 struct xdp_umem_ring *ring = (struct xdp_umem_ring *)q->ring;
372 u32 nb_entries, i, cached_prod;
373
374 nb_entries = xskq_prod_nb_free(q, max);
375
376 /* A, matches D */
377 cached_prod = q->cached_prod;
378 for (i = 0; i < nb_entries; i++)
379 ring->desc[cached_prod++ & q->ring_mask] = descs[i].addr;
380 q->cached_prod = cached_prod;
381
382 return nb_entries;
383}
384
Magnus Karlsson59e35e52019-12-19 13:39:23 +0100385static inline int xskq_prod_reserve_desc(struct xsk_queue *q,
386 u64 addr, u32 len)
Björn Töpelc4971762018-05-02 13:01:27 +0200387{
388 struct xdp_rxtx_ring *ring = (struct xdp_rxtx_ring *)q->ring;
Magnus Karlsson59e35e52019-12-19 13:39:23 +0100389 u32 idx;
Björn Töpelc4971762018-05-02 13:01:27 +0200390
Magnus Karlssondf0ae6f2019-12-19 13:39:25 +0100391 if (xskq_prod_is_full(q))
Björn Töpelc4971762018-05-02 13:01:27 +0200392 return -ENOSPC;
393
Magnus Karlssonf63666de2019-04-16 14:58:08 +0200394 /* A, matches D */
Magnus Karlssond7012f02019-12-19 13:39:22 +0100395 idx = q->cached_prod++ & q->ring_mask;
Björn Töpelbbff2f32018-06-04 13:57:13 +0200396 ring->desc[idx].addr = addr;
Björn Töpelc4971762018-05-02 13:01:27 +0200397 ring->desc[idx].len = len;
Björn Töpelc4971762018-05-02 13:01:27 +0200398
399 return 0;
400}
401
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100402static inline void __xskq_prod_submit(struct xsk_queue *q, u32 idx)
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200403{
Björn Töpela23b3f52021-03-05 10:41:12 +0100404 smp_store_release(&q->ring->producer, idx); /* B, matches C */
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100405}
406
407static inline void xskq_prod_submit(struct xsk_queue *q)
408{
409 __xskq_prod_submit(q, q->cached_prod);
410}
411
412static inline void xskq_prod_submit_addr(struct xsk_queue *q, u64 addr)
413{
414 struct xdp_umem_ring *ring = (struct xdp_umem_ring *)q->ring;
415 u32 idx = q->ring->producer;
416
417 ring->desc[idx++ & q->ring_mask] = addr;
418
419 __xskq_prod_submit(q, idx);
420}
421
422static inline void xskq_prod_submit_n(struct xsk_queue *q, u32 nb_entries)
423{
424 __xskq_prod_submit(q, q->ring->producer + nb_entries);
Magnus Karlsson35fcde72018-05-02 13:01:34 +0200425}
426
Magnus Karlsson59e35e52019-12-19 13:39:23 +0100427static inline bool xskq_prod_is_empty(struct xsk_queue *q)
Björn Töpelc4971762018-05-02 13:01:27 +0200428{
Magnus Karlsson11cc2d22019-12-19 13:39:21 +0100429 /* No barriers needed since data is not accessed */
430 return READ_ONCE(q->ring->consumer) == READ_ONCE(q->ring->producer);
Björn Töpelc4971762018-05-02 13:01:27 +0200431}
432
Magnus Karlsson15d8c912019-12-19 13:39:30 +0100433/* For both producers and consumers */
434
435static inline u64 xskq_nb_invalid_descs(struct xsk_queue *q)
436{
437 return q ? q->invalid_descs : 0;
438}
439
Ciara Loftus8aa5a332020-07-08 07:28:33 +0000440static inline u64 xskq_nb_queue_empty_descs(struct xsk_queue *q)
441{
442 return q ? q->queue_empty_descs : 0;
443}
444
Björn Töpelb9b6b682018-05-02 13:01:25 +0200445struct xsk_queue *xskq_create(u32 nentries, bool umem_queue);
Björn Töpelc4971762018-05-02 13:01:27 +0200446void xskq_destroy(struct xsk_queue *q_ops);
Magnus Karlsson423f3832018-05-02 13:01:24 +0200447
Magnus Karlsson423f3832018-05-02 13:01:24 +0200448#endif /* _LINUX_XSK_QUEUE_H */