~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/xskxceiver.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0
  2  * Copyright(c) 2020 Intel Corporation.
  3  */
  4 
  5 #ifndef XSKXCEIVER_H_
  6 #define XSKXCEIVER_H_
  7 
  8 #include <limits.h>
  9 
 10 #include "xsk_xdp_progs.skel.h"
 11 #include "xsk_xdp_common.h"
 12 
 13 #ifndef SOL_XDP
 14 #define SOL_XDP 283
 15 #endif
 16 
 17 #ifndef AF_XDP
 18 #define AF_XDP 44
 19 #endif
 20 
 21 #ifndef PF_XDP
 22 #define PF_XDP AF_XDP
 23 #endif
 24 
 25 #ifndef SO_BUSY_POLL_BUDGET
 26 #define SO_BUSY_POLL_BUDGET 70
 27 #endif
 28 
 29 #ifndef SO_PREFER_BUSY_POLL
 30 #define SO_PREFER_BUSY_POLL 69
 31 #endif
 32 
 33 #define TEST_PASS 0
 34 #define TEST_FAILURE -1
 35 #define TEST_CONTINUE 1
 36 #define TEST_SKIP 2
 37 #define MAX_INTERFACES 2
 38 #define MAX_INTERFACE_NAME_CHARS 16
 39 #define MAX_TEST_NAME_SIZE 48
 40 #define MAX_TEARDOWN_ITER 10
 41 #define PKT_HDR_SIZE (sizeof(struct ethhdr) + 2) /* Just to align the data in the packet */
 42 #define MIN_PKT_SIZE 64
 43 #define MAX_ETH_PKT_SIZE 1518
 44 #define MAX_ETH_JUMBO_SIZE 9000
 45 #define USLEEP_MAX 10000
 46 #define SOCK_RECONF_CTR 10
 47 #define DEFAULT_BATCH_SIZE 64
 48 #define POLL_TMOUT 1000
 49 #define THREAD_TMOUT 3
 50 #define DEFAULT_PKT_CNT (4 * 1024)
 51 #define DEFAULT_UMEM_BUFFERS (DEFAULT_PKT_CNT / 4)
 52 #define RX_FULL_RXQSIZE 32
 53 #define UMEM_HEADROOM_TEST_SIZE 128
 54 #define XSK_UMEM__INVALID_FRAME_SIZE (MAX_ETH_JUMBO_SIZE + 1)
 55 #define XSK_UMEM__LARGE_FRAME_SIZE (3 * 1024)
 56 #define XSK_UMEM__MAX_FRAME_SIZE (4 * 1024)
 57 #define XSK_DESC__INVALID_OPTION (0xffff)
 58 #define XSK_DESC__MAX_SKB_FRAGS 18
 59 #define HUGEPAGE_SIZE (2 * 1024 * 1024)
 60 #define PKT_DUMP_NB_TO_PRINT 16
 61 #define RUN_ALL_TESTS UINT_MAX
 62 #define NUM_MAC_ADDRESSES 4
 63 
 64 #define print_verbose(x...) do { if (opt_verbose) ksft_print_msg(x); } while (0)
 65 
 66 enum test_mode {
 67         TEST_MODE_SKB,
 68         TEST_MODE_DRV,
 69         TEST_MODE_ZC,
 70         TEST_MODE_ALL
 71 };
 72 
 73 struct xsk_umem_info {
 74         struct xsk_ring_prod fq;
 75         struct xsk_ring_cons cq;
 76         struct xsk_umem *umem;
 77         u64 next_buffer;
 78         u32 num_frames;
 79         u32 frame_headroom;
 80         void *buffer;
 81         u32 frame_size;
 82         u32 base_addr;
 83         u32 fill_size;
 84         u32 comp_size;
 85         bool unaligned_mode;
 86 };
 87 
 88 struct xsk_socket_info {
 89         struct xsk_ring_cons rx;
 90         struct xsk_ring_prod tx;
 91         struct xsk_umem_info *umem;
 92         struct xsk_socket *xsk;
 93         struct pkt_stream *pkt_stream;
 94         u32 outstanding_tx;
 95         u32 rxqsize;
 96         u32 batch_size;
 97         u8 dst_mac[ETH_ALEN];
 98         u8 src_mac[ETH_ALEN];
 99 };
100 
101 struct pkt {
102         int offset;
103         u32 len;
104         u32 pkt_nb;
105         bool valid;
106         u16 options;
107 };
108 
109 struct pkt_stream {
110         u32 nb_pkts;
111         u32 current_pkt_nb;
112         struct pkt *pkts;
113         u32 max_pkt_len;
114         u32 nb_rx_pkts;
115         u32 nb_valid_entries;
116         bool verbatim;
117 };
118 
119 struct set_hw_ring {
120         u32 default_tx;
121         u32 default_rx;
122 };
123 
124 struct ifobject;
125 struct test_spec;
126 typedef int (*validation_func_t)(struct ifobject *ifobj);
127 typedef void *(*thread_func_t)(void *arg);
128 typedef int (*test_func_t)(struct test_spec *test);
129 
130 struct ifobject {
131         char ifname[MAX_INTERFACE_NAME_CHARS];
132         struct xsk_socket_info *xsk;
133         struct xsk_socket_info *xsk_arr;
134         struct xsk_umem_info *umem;
135         thread_func_t func_ptr;
136         validation_func_t validation_func;
137         struct xsk_xdp_progs *xdp_progs;
138         struct bpf_map *xskmap;
139         struct bpf_program *xdp_prog;
140         struct ethtool_ringparam ring;
141         struct set_hw_ring set_ring;
142         enum test_mode mode;
143         int ifindex;
144         int mtu;
145         u32 bind_flags;
146         u32 xdp_zc_max_segs;
147         bool tx_on;
148         bool rx_on;
149         bool use_poll;
150         bool busy_poll;
151         bool use_fill_ring;
152         bool release_rx;
153         bool shared_umem;
154         bool use_metadata;
155         bool unaligned_supp;
156         bool multi_buff_supp;
157         bool multi_buff_zc_supp;
158         bool hw_ring_size_supp;
159 };
160 
161 struct test_spec {
162         struct ifobject *ifobj_tx;
163         struct ifobject *ifobj_rx;
164         struct pkt_stream *tx_pkt_stream_default;
165         struct pkt_stream *rx_pkt_stream_default;
166         struct bpf_program *xdp_prog_rx;
167         struct bpf_program *xdp_prog_tx;
168         struct bpf_map *xskmap_rx;
169         struct bpf_map *xskmap_tx;
170         test_func_t test_func;
171         int mtu;
172         u16 total_steps;
173         u16 current_step;
174         u16 nb_sockets;
175         bool fail;
176         bool set_ring;
177         enum test_mode mode;
178         char name[MAX_TEST_NAME_SIZE];
179 };
180 
181 pthread_barrier_t barr;
182 pthread_mutex_t pacing_mutex = PTHREAD_MUTEX_INITIALIZER;
183 
184 int pkts_in_flight;
185 
186 static const u8 g_mac[ETH_ALEN] = {0x55, 0x44, 0x33, 0x22, 0x11, 0x00};
187 
188 #endif                          /* XSKXCEIVER_H_ */
189 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php