xref: /freebsd-13-stable/sys/net/netmap.h (revision 4b40a16f0d188422227478889b38cc341d50f88f)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (C) 2011-2014 Matteo Landi, Luigi Rizzo. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  *   1. Redistributions of source code must retain the above copyright
11  *      notice, this list of conditions and the following disclaimer.
12  *   2. Redistributions in binary form must reproduce the above copyright
13  *      notice, this list of conditions and the following disclaimer in the
14  *      documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``S IS''AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 /*
30  *
31  * Definitions of constants and the structures used by the netmap
32  * framework, for the part visible to both kernel and userspace.
33  * Detailed info on netmap is available with "man netmap" or at
34  *
35  *	http://info.iet.unipi.it/~luigi/netmap/
36  *
37  * This API is also used to communicate with the VALE software switch
38  */
39 
40 #ifndef _NET_NETMAP_H_
41 #define _NET_NETMAP_H_
42 
43 #define	NETMAP_API	14		/* current API version */
44 
45 #define	NETMAP_MIN_API	14		/* min and max versions accepted */
46 #define	NETMAP_MAX_API	15
47 /*
48  * Some fields should be cache-aligned to reduce contention.
49  * The alignment is architecture and OS dependent, but rather than
50  * digging into OS headers to find the exact value we use an estimate
51  * that should cover most architectures.
52  */
53 #define NM_CACHE_ALIGN	128
54 
55 /*
56  * --- Netmap data structures ---
57  *
58  * The userspace data structures used by netmap are shown below.
59  * They are allocated by the kernel and mmap()ed by userspace threads.
60  * Pointers are implemented as memory offsets or indexes,
61  * so that they can be easily dereferenced in kernel and userspace.
62 
63    KERNEL (opaque, obviously)
64 
65   ====================================================================
66                                           |
67    USERSPACE                              |      struct netmap_ring
68                                           +---->+---------------+
69                                               / | head,cur,tail |
70    struct netmap_if (nifp, 1 per fd)         /  | buf_ofs       |
71     +----------------+                      /   | other fields  |
72     | ni_tx_rings    |                     /    +===============+
73     | ni_rx_rings    |                    /     | buf_idx, len  | slot[0]
74     |                |                   /      | flags, ptr    |
75     |                |                  /       +---------------+
76     +================+                 /        | buf_idx, len  | slot[1]
77     | txring_ofs[0]  | (rel.to nifp)--'         | flags, ptr    |
78     | txring_ofs[1]  |                          +---------------+
79      (tx+htx entries)                           (num_slots entries)
80     | txring_ofs[t]  |                          | buf_idx, len  | slot[n-1]
81     +----------------+                          | flags, ptr    |
82     | rxring_ofs[0]  |                          +---------------+
83     | rxring_ofs[1]  |
84      (rx+hrx entries)
85     | rxring_ofs[r]  |
86     +----------------+
87 
88  * For each "interface" (NIC, host stack, PIPE, VALE switch port) bound to
89  * a file descriptor, the mmap()ed region contains a (logically readonly)
90  * struct netmap_if pointing to struct netmap_ring's.
91  *
92  * There is one netmap_ring per physical NIC ring, plus at least one tx/rx ring
93  * pair attached to the host stack (these pairs are unused for non-NIC ports).
94  *
95  * All physical/host stack ports share the same memory region,
96  * so that zero-copy can be implemented between them.
97  * VALE switch ports instead have separate memory regions.
98  *
99  * The netmap_ring is the userspace-visible replica of the NIC ring.
100  * Each slot has the index of a buffer (MTU-sized and residing in the
101  * mmapped region), its length and some flags. An extra 64-bit pointer
102  * is provided for user-supplied buffers in the tx path.
103  *
104  * In user space, the buffer address is computed as
105  *	(char *)ring + buf_ofs + index * NETMAP_BUF_SIZE
106  *
107  * Added in NETMAP_API 11:
108  *
109  * + NIOCREGIF can request the allocation of extra spare buffers from
110  *   the same memory pool. The desired number of buffers must be in
111  *   nr_arg3. The ioctl may return fewer buffers, depending on memory
112  *   availability. nr_arg3 will return the actual value, and, once
113  *   mapped, nifp->ni_bufs_head will be the index of the first buffer.
114  *
115  *   The buffers are linked to each other using the first uint32_t
116  *   as the index. On close, ni_bufs_head must point to the list of
117  *   buffers to be released.
118  *
119  * + NIOCREGIF can attach to PIPE rings sharing the same memory
120  *   space with a parent device. The ifname indicates the parent device,
121  *   which must already exist. Flags in nr_flags indicate if we want to
122  *   bind the master or slave side, the index (from nr_ringid)
123  *   is just a cookie and does not need to be sequential.
124  *
125  * + NIOCREGIF can also attach to 'monitor' rings that replicate
126  *   the content of specific rings, also from the same memory space.
127  *
128  *   Extra flags in nr_flags support the above functions.
129  *   Application libraries may use the following naming scheme:
130  *	netmap:foo			all NIC rings pairs
131  *	netmap:foo^			only host rings pairs
132  *	netmap:foo^k			the k-th host rings pair
133  *	netmap:foo+			all NIC rings + host rings pairs
134  *	netmap:foo-k			the k-th NIC rings pair
135  *	netmap:foo{k			PIPE rings pair k, master side
136  *	netmap:foo}k			PIPE rings pair k, slave side
137  *
138  * Some notes about host rings:
139  *
140  * + The RX host rings are used to store those packets that the host network
141  *   stack is trying to transmit through a NIC queue, but only if that queue
142  *   is currently in netmap mode. Netmap will not intercept host stack mbufs
143  *   designated to NIC queues that are not in netmap mode. As a consequence,
144  *   registering a netmap port with netmap:foo^ is not enough to intercept
145  *   mbufs in the RX host rings; the netmap port should be registered with
146  *   netmap:foo*, or another registration should be done to open at least a
147  *   NIC TX queue in netmap mode.
148  *
149  * + Netmap is not currently able to deal with intercepted transmit mbufs which
150  *   require offloadings like TSO, UFO, checksumming offloadings, etc. It is
151  *   responsibility of the user to disable those offloadings (e.g. using
152  *   ifconfig on FreeBSD or ethtool -K on Linux) for an interface that is being
153  *   used in netmap mode. If the offloadings are not disabled, GSO and/or
154  *   unchecksummed packets may be dropped immediately or end up in the host RX
155  *   rings, and will be dropped as soon as the packet reaches another netmap
156  *   adapter.
157  */
158 
159 /*
160  * struct netmap_slot is a buffer descriptor
161  */
162 struct netmap_slot {
163 	uint32_t buf_idx;	/* buffer index */
164 	uint16_t len;		/* length for this slot */
165 	uint16_t flags;		/* buf changed, etc. */
166 	uint64_t ptr;		/* pointer for indirect buffers */
167 };
168 
169 /*
170  * The following flags control how the slot is used
171  */
172 
173 #define	NS_BUF_CHANGED	0x0001	/* buf_idx changed */
174 	/*
175 	 * must be set whenever buf_idx is changed (as it might be
176 	 * necessary to recompute the physical address and mapping)
177 	 *
178 	 * It is also set by the kernel whenever the buf_idx is
179 	 * changed internally (e.g., by pipes). Applications may
180 	 * use this information to know when they can reuse the
181 	 * contents of previously prepared buffers.
182 	 */
183 
184 #define	NS_REPORT	0x0002	/* ask the hardware to report results */
185 	/*
186 	 * Request notification when slot is used by the hardware.
187 	 * Normally transmit completions are handled lazily and
188 	 * may be unreported. This flag lets us know when a slot
189 	 * has been sent (e.g. to terminate the sender).
190 	 */
191 
192 #define	NS_FORWARD	0x0004	/* pass packet 'forward' */
193 	/*
194 	 * (Only for physical ports, rx rings with NR_FORWARD set).
195 	 * Slot released to the kernel (i.e. before ring->head) with
196 	 * this flag set are passed to the peer ring (host/NIC),
197 	 * thus restoring the host-NIC connection for these slots.
198 	 * This supports efficient traffic monitoring or firewalling.
199 	 */
200 
201 #define	NS_NO_LEARN	0x0008	/* disable bridge learning */
202  	/*
203 	 * On a VALE switch, do not 'learn' the source port for
204  	 * this buffer.
205 	 */
206 
207 #define	NS_INDIRECT	0x0010	/* userspace buffer */
208  	/*
209 	 * (VALE tx rings only) data is in a userspace buffer,
210 	 * whose address is in the 'ptr' field in the slot.
211 	 */
212 
213 #define	NS_MOREFRAG	0x0020	/* packet has more fragments */
214  	/*
215 	 * (VALE ports, ptnetmap ports and some NIC ports, e.g.
216          * ixgbe and i40e on Linux)
217 	 * Set on all but the last slot of a multi-segment packet.
218 	 * The 'len' field refers to the individual fragment.
219 	 */
220 
221 #define NS_TXMON	0x0040
222 	/* (monitor ports only) the packet comes from the TX
223 	 * ring of the monitored port
224 	 */
225 
226 #define	NS_PORT_SHIFT	8
227 #define	NS_PORT_MASK	(0xff << NS_PORT_SHIFT)
228 	/*
229  	 * The high 8 bits of the flag, if not zero, indicate the
230 	 * destination port for the VALE switch, overriding
231  	 * the lookup table.
232  	 */
233 
234 #define	NS_RFRAGS(_slot)	( ((_slot)->flags >> 8) & 0xff)
235 	/*
236 	 * (VALE rx rings only) the high 8 bits
237 	 *  are the number of fragments.
238 	 */
239 
240 #define NETMAP_MAX_FRAGS	64	/* max number of fragments */
241 
242 /*
243  * struct netmap_ring
244  *
245  * Netmap representation of a TX or RX ring (also known as "queue").
246  * This is a queue implemented as a fixed-size circular array.
247  * At the software level the important fields are: head, cur, tail.
248  *
249  * In TX rings:
250  *
251  *	head	first slot available for transmission.
252  *	cur	wakeup point. select() and poll() will unblock
253  *		when 'tail' moves past 'cur'
254  *	tail	(readonly) first slot reserved to the kernel
255  *
256  *	[head .. tail-1] can be used for new packets to send;
257  *	'head' and 'cur' must be incremented as slots are filled
258  *	    with new packets to be sent;
259  *	'cur' can be moved further ahead if we need more space
260  *	for new transmissions. XXX todo (2014-03-12)
261  *
262  * In RX rings:
263  *
264  *	head	first valid received packet
265  *	cur	wakeup point. select() and poll() will unblock
266  *		when 'tail' moves past 'cur'
267  *	tail	(readonly) first slot reserved to the kernel
268  *
269  *	[head .. tail-1] contain received packets;
270  *	'head' and 'cur' must be incremented as slots are consumed
271  *		and can be returned to the kernel;
272  *	'cur' can be moved further ahead if we want to wait for
273  *		new packets without returning the previous ones.
274  *
275  * DATA OWNERSHIP/LOCKING:
276  *	The netmap_ring, and all slots and buffers in the range
277  *	[head .. tail-1] are owned by the user program;
278  *	the kernel only accesses them during a netmap system call
279  *	and in the user thread context.
280  *
281  *	Other slots and buffers are reserved for use by the kernel
282  */
283 struct netmap_ring {
284 	/*
285 	 * buf_ofs is meant to be used through macros.
286 	 * It contains the offset of the buffer region from this
287 	 * descriptor.
288 	 */
289 	const int64_t	buf_ofs;
290 	const uint32_t	num_slots;	/* number of slots in the ring. */
291 	const uint32_t	nr_buf_size;
292 	const uint16_t	ringid;
293 	const uint16_t	dir;		/* 0: tx, 1: rx */
294 
295 	uint32_t        head;		/* (u) first user slot */
296 	uint32_t        cur;		/* (u) wakeup point */
297 	uint32_t	tail;		/* (k) first kernel slot */
298 
299 	uint32_t	flags;
300 
301 	struct timeval	ts;		/* (k) time of last *sync() */
302 
303 	/* opaque room for a mutex or similar object */
304 #if !defined(_WIN32) || defined(__CYGWIN__)
305 	uint8_t	__attribute__((__aligned__(NM_CACHE_ALIGN))) sem[128];
306 #else
307 	uint8_t	__declspec(align(NM_CACHE_ALIGN)) sem[128];
308 #endif
309 
310 	/* the slots follow. This struct has variable size */
311 	struct netmap_slot slot[0];	/* array of slots. */
312 };
313 
314 /*
315  * RING FLAGS
316  */
317 #define	NR_TIMESTAMP	0x0002		/* set timestamp on *sync() */
318 	/*
319 	 * updates the 'ts' field on each netmap syscall. This saves
320 	 * saves a separate gettimeofday(), and is not much worse than
321 	 * software timestamps generated in the interrupt handler.
322 	 */
323 
324 #define	NR_FORWARD	0x0004		/* enable NS_FORWARD for ring */
325  	/*
326 	 * Enables the NS_FORWARD slot flag for the ring.
327 	 */
328 
329 /*
330  * Helper functions for kernel and userspace
331  */
332 
333 /*
334  * Check if space is available in the ring. We use ring->head, which
335  * points to the next netmap slot to be published to netmap. It is
336  * possible that the applications moves ring->cur ahead of ring->tail
337  * (e.g., by setting ring->cur <== ring->tail), if it wants more slots
338  * than the ones currently available, and it wants to be notified when
339  * more arrive. See netmap(4) for more details and examples.
340  */
341 static inline int
nm_ring_empty(struct netmap_ring * ring)342 nm_ring_empty(struct netmap_ring *ring)
343 {
344 	return (ring->head == ring->tail);
345 }
346 
347 /*
348  * Netmap representation of an interface and its queue(s).
349  * This is initialized by the kernel when binding a file
350  * descriptor to a port, and should be considered as readonly
351  * by user programs. The kernel never uses it.
352  *
353  * There is one netmap_if for each file descriptor on which we want
354  * to select/poll.
355  * select/poll operates on one or all pairs depending on the value of
356  * nmr_queueid passed on the ioctl.
357  */
358 struct netmap_if {
359 	char		ni_name[IFNAMSIZ]; /* name of the interface. */
360 	const uint32_t	ni_version;	/* API version, currently unused */
361 	const uint32_t	ni_flags;	/* properties */
362 #define	NI_PRIV_MEM	0x1		/* private memory region */
363 
364 	/*
365 	 * The number of packet rings available in netmap mode.
366 	 * Physical NICs can have different numbers of tx and rx rings.
367 	 * Physical NICs also have at least a 'host' rings pair.
368 	 * Additionally, clients can request additional ring pairs to
369 	 * be used for internal communication.
370 	 */
371 	const uint32_t	ni_tx_rings;	/* number of HW tx rings */
372 	const uint32_t	ni_rx_rings;	/* number of HW rx rings */
373 
374 	uint32_t	ni_bufs_head;	/* head index for extra bufs */
375 	const uint32_t	ni_host_tx_rings; /* number of SW tx rings */
376 	const uint32_t	ni_host_rx_rings; /* number of SW rx rings */
377 	uint32_t	ni_spare1[3];
378 	/*
379 	 * The following array contains the offset of each netmap ring
380 	 * from this structure, in the following order:
381 	 *     - NIC tx rings (ni_tx_rings);
382 	 *     - host tx rings (ni_host_tx_rings);
383 	 *     - NIC rx rings (ni_rx_rings);
384 	 *     - host rx ring (ni_host_rx_rings);
385 	 *
386 	 * The area is filled up by the kernel on NETMAP_REQ_REGISTER,
387 	 * and then only read by userspace code.
388 	 */
389 	const ssize_t	ring_ofs[0];
390 };
391 
392 /* Legacy interface to interact with a netmap control device.
393  * Included for backward compatibility. The user should not include this
394  * file directly. */
395 #include "netmap_legacy.h"
396 
397 /*
398  * New API to control netmap control devices. New applications should only use
399  * nmreq_xyz structs with the NIOCCTRL ioctl() command.
400  *
401  * NIOCCTRL takes a nmreq_header struct, which contains the required
402  * API version, the name of a netmap port, a command type, and pointers
403  * to request body and options.
404  *
405  *	nr_name	(in)
406  *		The name of the port (em0, valeXXX:YYY, eth0{pn1 etc.)
407  *
408  *	nr_version (in/out)
409  *		Must match NETMAP_API as used in the kernel, error otherwise.
410  *		Always returns the desired value on output.
411  *
412  *	nr_reqtype (in)
413  *		One of the NETMAP_REQ_* command types below
414  *
415  *	nr_body (in)
416  *		Pointer to a command-specific struct, described by one
417  *		of the struct nmreq_xyz below.
418  *
419  *	nr_options (in)
420  *		Command specific options, if any.
421  *
422  * A NETMAP_REQ_REGISTER command activates netmap mode on the netmap
423  * port (e.g. physical interface) specified by nmreq_header.nr_name.
424  * The request body (struct nmreq_register) has several arguments to
425  * specify how the port is to be registered.
426  *
427  *	nr_tx_slots, nr_tx_slots, nr_tx_rings, nr_rx_rings,
428  *	nr_host_tx_rings, nr_host_rx_rings (in/out)
429  *		On input, non-zero values may be used to reconfigure the port
430  *		according to the requested values, but this is not guaranteed.
431  *		On output the actual values in use are reported.
432  *
433  *	nr_mode (in)
434  *		Indicate what set of rings must be bound to the netmap
435  *		device (e.g. all NIC rings, host rings only, NIC and
436  *		host rings, ...). Values are in NR_REG_*.
437  *
438  *	nr_ringid (in)
439  *		If nr_mode == NR_REG_ONE_NIC (only a single couple of TX/RX
440  *		rings), indicate which NIC TX and/or RX ring is to be bound
441  *		(0..nr_*x_rings-1).
442  *
443  *	nr_flags (in)
444  *		Indicate special options for how to open the port.
445  *
446  *		NR_NO_TX_POLL can be OR-ed to make select()/poll() push
447  *			packets on tx rings only if POLLOUT is set.
448  *			The default is to push any pending packet.
449  *
450  *		NR_DO_RX_POLL can be OR-ed to make select()/poll() release
451  *			packets on rx rings also when POLLIN is NOT set.
452  *			The default is to touch the rx ring only with POLLIN.
453  *			Note that this is the opposite of TX because it
454  *			reflects the common usage.
455  *
456  *		Other options are NR_MONITOR_TX, NR_MONITOR_RX, NR_ZCOPY_MON,
457  *		NR_EXCLUSIVE, NR_RX_RINGS_ONLY, NR_TX_RINGS_ONLY and
458  *		NR_ACCEPT_VNET_HDR.
459  *
460  *	nr_mem_id (in/out)
461  *		The identity of the memory region used.
462  *		On input, 0 means the system decides autonomously,
463  *		other values may try to select a specific region.
464  *		On return the actual value is reported.
465  *		Region '1' is the global allocator, normally shared
466  *		by all interfaces. Other values are private regions.
467  *		If two ports the same region zero-copy is possible.
468  *
469  *	nr_extra_bufs (in/out)
470  *		Number of extra buffers to be allocated.
471  *
472  * The other NETMAP_REQ_* commands are described below.
473  *
474  */
475 
476 /* maximum size of a request, including all options */
477 #define NETMAP_REQ_MAXSIZE	4096
478 
479 /* Header common to all request options. */
480 struct nmreq_option {
481 	/* Pointer to the next option. */
482 	uint64_t		nro_next;
483 	/* Option type. */
484 	uint32_t		nro_reqtype;
485 	/* (out) status of the option:
486 	 * 0: recognized and processed
487 	 * !=0: errno value
488 	 */
489 	uint32_t		nro_status;
490 	/* Option size, used only for options that can have variable size
491 	 * (e.g. because they contain arrays). For fixed-size options this
492 	 * field should be set to zero. */
493 	uint64_t		nro_size;
494 };
495 
496 /* Header common to all requests. Do not reorder these fields, as we need
497  * the second one (nr_reqtype) to know how much to copy from/to userspace. */
498 struct nmreq_header {
499 	uint16_t		nr_version;	/* API version */
500 	uint16_t		nr_reqtype;	/* nmreq type (NETMAP_REQ_*) */
501 	uint32_t		nr_reserved;	/* must be zero */
502 #define NETMAP_REQ_IFNAMSIZ	64
503 	char			nr_name[NETMAP_REQ_IFNAMSIZ]; /* port name */
504 	uint64_t		nr_options;	/* command-specific options */
505 	uint64_t		nr_body;	/* ptr to nmreq_xyz struct */
506 };
507 
508 enum {
509 	/* Register a netmap port with the device. */
510 	NETMAP_REQ_REGISTER = 1,
511 	/* Get information from a netmap port. */
512 	NETMAP_REQ_PORT_INFO_GET,
513 	/* Attach a netmap port to a VALE switch. */
514 	NETMAP_REQ_VALE_ATTACH,
515 	/* Detach a netmap port from a VALE switch. */
516 	NETMAP_REQ_VALE_DETACH,
517 	/* List the ports attached to a VALE switch. */
518 	NETMAP_REQ_VALE_LIST,
519 	/* Set the port header length (was virtio-net header length). */
520 	NETMAP_REQ_PORT_HDR_SET,
521 	/* Get the port header length (was virtio-net header length). */
522 	NETMAP_REQ_PORT_HDR_GET,
523 	/* Create a new persistent VALE port. */
524 	NETMAP_REQ_VALE_NEWIF,
525 	/* Delete a persistent VALE port. */
526 	NETMAP_REQ_VALE_DELIF,
527 	/* Enable polling kernel thread(s) on an attached VALE port. */
528 	NETMAP_REQ_VALE_POLLING_ENABLE,
529 	/* Disable polling kernel thread(s) on an attached VALE port. */
530 	NETMAP_REQ_VALE_POLLING_DISABLE,
531 	/* Get info about the pools of a memory allocator. */
532 	NETMAP_REQ_POOLS_INFO_GET,
533 	/* Start an in-kernel loop that syncs the rings periodically or
534 	 * on notifications. The loop runs in the context of the ioctl
535 	 * syscall, and only stops on NETMAP_REQ_SYNC_KLOOP_STOP. */
536 	NETMAP_REQ_SYNC_KLOOP_START,
537 	/* Stops the thread executing the in-kernel loop. The thread
538 	 * returns from the ioctl syscall. */
539 	NETMAP_REQ_SYNC_KLOOP_STOP,
540 	/* Enable CSB mode on a registered netmap control device. */
541 	NETMAP_REQ_CSB_ENABLE,
542 };
543 
544 enum {
545 	/* On NETMAP_REQ_REGISTER, ask netmap to use memory allocated
546 	 * from user-space allocated memory pools (e.g. hugepages).
547 	 */
548 	NETMAP_REQ_OPT_EXTMEM = 1,
549 
550 	/* ON NETMAP_REQ_SYNC_KLOOP_START, ask netmap to use eventfd-based
551 	 * notifications to synchronize the kernel loop with the application.
552 	 */
553 	NETMAP_REQ_OPT_SYNC_KLOOP_EVENTFDS,
554 
555 	/* On NETMAP_REQ_REGISTER, ask netmap to work in CSB mode, where
556 	 * head, cur and tail pointers are not exchanged through the
557 	 * struct netmap_ring header, but rather using an user-provided
558 	 * memory area (see struct nm_csb_atok and struct nm_csb_ktoa).
559 	 */
560 	NETMAP_REQ_OPT_CSB,
561 
562 	/* An extension to NETMAP_REQ_OPT_SYNC_KLOOP_EVENTFDS, which specifies
563 	 * if the TX and/or RX rings are synced in the context of the VM exit.
564 	 * This requires the 'ioeventfd' fields to be valid (cannot be < 0).
565 	 */
566 	NETMAP_REQ_OPT_SYNC_KLOOP_MODE,
567 
568 	/* This is a marker to count the number of available options.
569 	 * New options must be added above it. */
570 	NETMAP_REQ_OPT_MAX,
571 };
572 
573 /*
574  * nr_reqtype: NETMAP_REQ_REGISTER
575  * Bind (register) a netmap port to this control device.
576  */
577 struct nmreq_register {
578 	uint64_t	nr_offset;	/* nifp offset in the shared region */
579 	uint64_t	nr_memsize;	/* size of the shared region */
580 	uint32_t	nr_tx_slots;	/* slots in tx rings */
581 	uint32_t	nr_rx_slots;	/* slots in rx rings */
582 	uint16_t	nr_tx_rings;	/* number of tx rings */
583 	uint16_t	nr_rx_rings;	/* number of rx rings */
584 	uint16_t	nr_host_tx_rings; /* number of host tx rings */
585 	uint16_t	nr_host_rx_rings; /* number of host rx rings */
586 
587 	uint16_t	nr_mem_id;	/* id of the memory allocator */
588 	uint16_t	nr_ringid;	/* ring(s) we care about */
589 	uint32_t	nr_mode;	/* specify NR_REG_* modes */
590 	uint32_t	nr_extra_bufs;	/* number of requested extra buffers */
591 
592 	uint64_t	nr_flags;	/* additional flags (see below) */
593 /* monitors use nr_ringid and nr_mode to select the rings to monitor */
594 #define NR_MONITOR_TX	0x100
595 #define NR_MONITOR_RX	0x200
596 #define NR_ZCOPY_MON	0x400
597 /* request exclusive access to the selected rings */
598 #define NR_EXCLUSIVE	0x800
599 /* 0x1000 unused */
600 #define NR_RX_RINGS_ONLY	0x2000
601 #define NR_TX_RINGS_ONLY	0x4000
602 /* Applications set this flag if they are able to deal with virtio-net headers,
603  * that is send/receive frames that start with a virtio-net header.
604  * If not set, NETMAP_REQ_REGISTER will fail with netmap ports that require
605  * applications to use those headers. If the flag is set, the application can
606  * use the NETMAP_VNET_HDR_GET command to figure out the header length. */
607 #define NR_ACCEPT_VNET_HDR	0x8000
608 /* The following two have the same meaning of NETMAP_NO_TX_POLL and
609  * NETMAP_DO_RX_POLL. */
610 #define NR_DO_RX_POLL		0x10000
611 #define NR_NO_TX_POLL		0x20000
612 };
613 
614 /* Valid values for nmreq_register.nr_mode (see above). */
615 enum {	NR_REG_DEFAULT	= 0,	/* backward compat, should not be used. */
616 	NR_REG_ALL_NIC	= 1,
617 	NR_REG_SW	= 2,
618 	NR_REG_NIC_SW	= 3,
619 	NR_REG_ONE_NIC	= 4,
620 	NR_REG_PIPE_MASTER = 5, /* deprecated, use "x{y" port name syntax */
621 	NR_REG_PIPE_SLAVE = 6,  /* deprecated, use "x}y" port name syntax */
622 	NR_REG_NULL     = 7,
623 	NR_REG_ONE_SW	= 8,
624 };
625 
626 /* A single ioctl number is shared by all the new API command.
627  * Demultiplexing is done using the hdr.nr_reqtype field.
628  * FreeBSD uses the size value embedded in the _IOWR to determine
629  * how much to copy in/out, so we define the ioctl() command
630  * specifying only nmreq_header, and copyin/copyout the rest. */
631 #define NIOCCTRL	_IOWR('i', 151, struct nmreq_header)
632 
633 /* The ioctl commands to sync TX/RX netmap rings.
634  * NIOCTXSYNC, NIOCRXSYNC synchronize tx or rx queues,
635  *	whose identity is set in NETMAP_REQ_REGISTER through nr_ringid.
636  *	These are non blocking and take no argument. */
637 #define NIOCTXSYNC	_IO('i', 148) /* sync tx queues */
638 #define NIOCRXSYNC	_IO('i', 149) /* sync rx queues */
639 
640 /*
641  * nr_reqtype: NETMAP_REQ_PORT_INFO_GET
642  * Get information about a netmap port, including number of rings.
643  * slots per ring, id of the memory allocator, etc. The netmap
644  * control device used for this operation does not need to be bound
645  * to a netmap port.
646  */
647 struct nmreq_port_info_get {
648 	uint64_t	nr_memsize;	/* size of the shared region */
649 	uint32_t	nr_tx_slots;	/* slots in tx rings */
650 	uint32_t	nr_rx_slots;	/* slots in rx rings */
651 	uint16_t	nr_tx_rings;	/* number of tx rings */
652 	uint16_t	nr_rx_rings;	/* number of rx rings */
653 	uint16_t	nr_host_tx_rings; /* number of host tx rings */
654 	uint16_t	nr_host_rx_rings; /* number of host rx rings */
655 	uint16_t	nr_mem_id;	/* memory allocator id (in/out) */
656 	uint16_t	pad[3];
657 };
658 
659 #define	NM_BDG_NAME		"vale"	/* prefix for bridge port name */
660 
661 /*
662  * nr_reqtype: NETMAP_REQ_VALE_ATTACH
663  * Attach a netmap port to a VALE switch. Both the name of the netmap
664  * port and the VALE switch are specified through the nr_name argument.
665  * The attach operation could need to register a port, so at least
666  * the same arguments are available.
667  * port_index will contain the index where the port has been attached.
668  */
669 struct nmreq_vale_attach {
670 	struct nmreq_register reg;
671 	uint32_t port_index;
672 	uint32_t pad1;
673 };
674 
675 /*
676  * nr_reqtype: NETMAP_REQ_VALE_DETACH
677  * Detach a netmap port from a VALE switch. Both the name of the netmap
678  * port and the VALE switch are specified through the nr_name argument.
679  * port_index will contain the index where the port was attached.
680  */
681 struct nmreq_vale_detach {
682 	uint32_t port_index;
683 	uint32_t pad1;
684 };
685 
686 /*
687  * nr_reqtype: NETMAP_REQ_VALE_LIST
688  * List the ports of a VALE switch.
689  */
690 struct nmreq_vale_list {
691 	/* Name of the VALE port (valeXXX:YYY) or empty. */
692 	uint16_t	nr_bridge_idx;
693 	uint16_t	pad1;
694 	uint32_t	nr_port_idx;
695 };
696 
697 /*
698  * nr_reqtype: NETMAP_REQ_PORT_HDR_SET or NETMAP_REQ_PORT_HDR_GET
699  * Set or get the port header length of the port identified by hdr.nr_name.
700  * The control device does not need to be bound to a netmap port.
701  */
702 struct nmreq_port_hdr {
703 	uint32_t	nr_hdr_len;
704 	uint32_t	pad1;
705 };
706 
707 /*
708  * nr_reqtype: NETMAP_REQ_VALE_NEWIF
709  * Create a new persistent VALE port.
710  */
711 struct nmreq_vale_newif {
712 	uint32_t	nr_tx_slots;	/* slots in tx rings */
713 	uint32_t	nr_rx_slots;	/* slots in rx rings */
714 	uint16_t	nr_tx_rings;	/* number of tx rings */
715 	uint16_t	nr_rx_rings;	/* number of rx rings */
716 	uint16_t	nr_mem_id;	/* id of the memory allocator */
717 	uint16_t	pad1;
718 };
719 
720 /*
721  * nr_reqtype: NETMAP_REQ_VALE_POLLING_ENABLE or NETMAP_REQ_VALE_POLLING_DISABLE
722  * Enable or disable polling kthreads on a VALE port.
723  */
724 struct nmreq_vale_polling {
725 	uint32_t	nr_mode;
726 #define NETMAP_POLLING_MODE_SINGLE_CPU 1
727 #define NETMAP_POLLING_MODE_MULTI_CPU 2
728 	uint32_t	nr_first_cpu_id;
729 	uint32_t	nr_num_polling_cpus;
730 	uint32_t	pad1;
731 };
732 
733 /*
734  * nr_reqtype: NETMAP_REQ_POOLS_INFO_GET
735  * Get info about the pools of the memory allocator of the netmap
736  * port specified by hdr.nr_name and nr_mem_id. The netmap control
737  * device used for this operation does not need to be bound to a netmap
738  * port.
739  */
740 struct nmreq_pools_info {
741 	uint64_t	nr_memsize;
742 	uint16_t	nr_mem_id; /* in/out argument */
743 	uint16_t	pad1[3];
744 	uint64_t	nr_if_pool_offset;
745 	uint32_t	nr_if_pool_objtotal;
746 	uint32_t	nr_if_pool_objsize;
747 	uint64_t	nr_ring_pool_offset;
748 	uint32_t	nr_ring_pool_objtotal;
749 	uint32_t	nr_ring_pool_objsize;
750 	uint64_t	nr_buf_pool_offset;
751 	uint32_t	nr_buf_pool_objtotal;
752 	uint32_t	nr_buf_pool_objsize;
753 };
754 
755 /*
756  * nr_reqtype: NETMAP_REQ_SYNC_KLOOP_START
757  * Start an in-kernel loop that syncs the rings periodically or on
758  * notifications. The loop runs in the context of the ioctl syscall,
759  * and only stops on NETMAP_REQ_SYNC_KLOOP_STOP.
760  * The registered netmap port must be open in CSB mode.
761  */
762 struct nmreq_sync_kloop_start {
763 	/* Sleeping is the default synchronization method for the kloop.
764 	 * The 'sleep_us' field specifies how many microseconds to sleep for
765 	 * when there is no work to do, before doing another kloop iteration.
766 	 */
767 	uint32_t	sleep_us;
768 	uint32_t	pad1;
769 };
770 
771 /* A CSB entry for the application --> kernel direction. */
772 struct nm_csb_atok {
773 	uint32_t head;		  /* AW+ KR+ the head of the appl netmap_ring */
774 	uint32_t cur;		  /* AW+ KR+ the cur of the appl netmap_ring */
775 	uint32_t appl_need_kick;  /* AW+ KR+ kern --> appl notification enable */
776 	uint32_t sync_flags;	  /* AW+ KR+ the flags of the appl [tx|rx]sync() */
777 	uint32_t pad[12];	  /* pad to a 64 bytes cacheline */
778 };
779 
780 /* A CSB entry for the application <-- kernel direction. */
781 struct nm_csb_ktoa {
782 	uint32_t hwcur;		  /* AR+ KW+ the hwcur of the kern netmap_kring */
783 	uint32_t hwtail;	  /* AR+ KW+ the hwtail of the kern netmap_kring */
784 	uint32_t kern_need_kick;  /* AR+ KW+ appl-->kern notification enable */
785 	uint32_t pad[13];
786 };
787 
788 #ifdef __linux__
789 
790 #ifdef __KERNEL__
791 #define nm_stst_barrier smp_wmb
792 #define nm_ldld_barrier smp_rmb
793 #define nm_stld_barrier smp_mb
794 #else  /* !__KERNEL__ */
nm_stst_barrier(void)795 static inline void nm_stst_barrier(void)
796 {
797 	/* A memory barrier with release semantic has the combined
798 	 * effect of a store-store barrier and a load-store barrier,
799 	 * which is fine for us. */
800 	__atomic_thread_fence(__ATOMIC_RELEASE);
801 }
nm_ldld_barrier(void)802 static inline void nm_ldld_barrier(void)
803 {
804 	/* A memory barrier with acquire semantic has the combined
805 	 * effect of a load-load barrier and a store-load barrier,
806 	 * which is fine for us. */
807 	__atomic_thread_fence(__ATOMIC_ACQUIRE);
808 }
809 #endif /* !__KERNEL__ */
810 
811 #elif defined(__FreeBSD__)
812 
813 #ifdef _KERNEL
814 #define nm_stst_barrier	atomic_thread_fence_rel
815 #define nm_ldld_barrier	atomic_thread_fence_acq
816 #define nm_stld_barrier	atomic_thread_fence_seq_cst
817 #else  /* !_KERNEL */
818 #include <stdatomic.h>
nm_stst_barrier(void)819 static inline void nm_stst_barrier(void)
820 {
821 	atomic_thread_fence(memory_order_release);
822 }
nm_ldld_barrier(void)823 static inline void nm_ldld_barrier(void)
824 {
825 	atomic_thread_fence(memory_order_acquire);
826 }
827 #endif /* !_KERNEL */
828 
829 #else  /* !__linux__ && !__FreeBSD__ */
830 #error "OS not supported"
831 #endif /* !__linux__ && !__FreeBSD__ */
832 
833 /* Application side of sync-kloop: Write ring pointers (cur, head) to the CSB.
834  * This routine is coupled with sync_kloop_kernel_read(). */
835 static inline void
nm_sync_kloop_appl_write(struct nm_csb_atok * atok,uint32_t cur,uint32_t head)836 nm_sync_kloop_appl_write(struct nm_csb_atok *atok, uint32_t cur,
837 			 uint32_t head)
838 {
839 	/* Issue a first store-store barrier to make sure writes to the
840 	 * netmap ring do not overcome updates on atok->cur and atok->head. */
841 	nm_stst_barrier();
842 
843 	/*
844 	 * We need to write cur and head to the CSB but we cannot do it atomically.
845 	 * There is no way we can prevent the host from reading the updated value
846 	 * of one of the two and the old value of the other. However, if we make
847 	 * sure that the host never reads a value of head more recent than the
848 	 * value of cur we are safe. We can allow the host to read a value of cur
849 	 * more recent than the value of head, since in the netmap ring cur can be
850 	 * ahead of head and cur cannot wrap around head because it must be behind
851 	 * tail. Inverting the order of writes below could instead result into the
852 	 * host to think head went ahead of cur, which would cause the sync
853 	 * prologue to fail.
854 	 *
855 	 * The following memory barrier scheme is used to make this happen:
856 	 *
857 	 *          Guest                Host
858 	 *
859 	 *          STORE(cur)           LOAD(head)
860 	 *          wmb() <----------->  rmb()
861 	 *          STORE(head)          LOAD(cur)
862 	 *
863 	 */
864 	atok->cur = cur;
865 	nm_stst_barrier();
866 	atok->head = head;
867 }
868 
869 /* Application side of sync-kloop: Read kring pointers (hwcur, hwtail) from
870  * the CSB. This routine is coupled with sync_kloop_kernel_write(). */
871 static inline void
nm_sync_kloop_appl_read(struct nm_csb_ktoa * ktoa,uint32_t * hwtail,uint32_t * hwcur)872 nm_sync_kloop_appl_read(struct nm_csb_ktoa *ktoa, uint32_t *hwtail,
873 			uint32_t *hwcur)
874 {
875 	/*
876 	 * We place a memory barrier to make sure that the update of hwtail never
877 	 * overtakes the update of hwcur.
878 	 * (see explanation in sync_kloop_kernel_write).
879 	 */
880 	*hwtail = ktoa->hwtail;
881 	nm_ldld_barrier();
882 	*hwcur = ktoa->hwcur;
883 
884 	/* Make sure that loads from ktoa->hwtail and ktoa->hwcur are not delayed
885 	 * after the loads from the netmap ring. */
886 	nm_ldld_barrier();
887 }
888 
889 /*
890  * data for NETMAP_REQ_OPT_* options
891  */
892 
893 struct nmreq_opt_sync_kloop_eventfds {
894 	struct nmreq_option	nro_opt;	/* common header */
895 	/* An array of N entries for bidirectional notifications between
896 	 * the kernel loop and the application. The number of entries and
897 	 * their order must agree with the CSB arrays passed in the
898 	 * NETMAP_REQ_OPT_CSB option. Each entry contains a file descriptor
899 	 * backed by an eventfd.
900 	 *
901 	 * If any of the 'ioeventfd' entries is < 0, the event loop uses
902 	 * the sleeping synchronization strategy (according to sleep_us),
903 	 * and keeps kern_need_kick always disabled.
904 	 * Each 'irqfd' can be < 0, and in that case the corresponding queue
905 	 * is never notified.
906 	 */
907 	struct {
908 		/* Notifier for the application --> kernel loop direction. */
909 		int32_t ioeventfd;
910 		/* Notifier for the kernel loop --> application direction. */
911 		int32_t irqfd;
912 	} eventfds[0];
913 };
914 
915 struct nmreq_opt_sync_kloop_mode {
916 	struct nmreq_option	nro_opt;	/* common header */
917 #define NM_OPT_SYNC_KLOOP_DIRECT_TX (1 << 0)
918 #define NM_OPT_SYNC_KLOOP_DIRECT_RX (1 << 1)
919 	uint32_t mode;
920 };
921 
922 struct nmreq_opt_extmem {
923 	struct nmreq_option	nro_opt;	/* common header */
924 	uint64_t		nro_usrptr;	/* (in) ptr to usr memory */
925 	struct nmreq_pools_info	nro_info;	/* (in/out) */
926 };
927 
928 struct nmreq_opt_csb {
929 	struct nmreq_option	nro_opt;
930 
931 	/* Array of CSB entries for application --> kernel communication
932 	 * (N entries). */
933 	uint64_t		csb_atok;
934 
935 	/* Array of CSB entries for kernel --> application communication
936 	 * (N entries). */
937 	uint64_t		csb_ktoa;
938 };
939 
940 #endif /* _NET_NETMAP_H_ */
941