1718cf2ccSPedro F. Giffuni /*- 2718cf2ccSPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3718cf2ccSPedro F. Giffuni * 437e3a6d3SLuigi Rizzo * Copyright (C) 2011-2014 Matteo Landi, Luigi Rizzo 537e3a6d3SLuigi Rizzo * Copyright (C) 2013-2016 Universita` di Pisa 637e3a6d3SLuigi Rizzo * All rights reserved. 768b8534bSLuigi Rizzo * 868b8534bSLuigi Rizzo * Redistribution and use in source and binary forms, with or without 968b8534bSLuigi Rizzo * modification, are permitted provided that the following conditions 1068b8534bSLuigi Rizzo * are met: 1168b8534bSLuigi Rizzo * 1. Redistributions of source code must retain the above copyright 1268b8534bSLuigi Rizzo * notice, this list of conditions and the following disclaimer. 1368b8534bSLuigi Rizzo * 2. Redistributions in binary form must reproduce the above copyright 1468b8534bSLuigi Rizzo * notice, this list of conditions and the following disclaimer in the 1568b8534bSLuigi Rizzo * documentation and/or other materials provided with the distribution. 1668b8534bSLuigi Rizzo * 1768b8534bSLuigi Rizzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1868b8534bSLuigi Rizzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1968b8534bSLuigi Rizzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2068b8534bSLuigi Rizzo * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 2168b8534bSLuigi Rizzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2268b8534bSLuigi Rizzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2368b8534bSLuigi Rizzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2468b8534bSLuigi Rizzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2568b8534bSLuigi Rizzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2668b8534bSLuigi Rizzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2768b8534bSLuigi Rizzo * SUCH DAMAGE. 2868b8534bSLuigi Rizzo */ 2968b8534bSLuigi Rizzo 3068b8534bSLuigi Rizzo /* 3168b8534bSLuigi Rizzo * $FreeBSD$ 3268b8534bSLuigi Rizzo * 3368b8534bSLuigi Rizzo * The header contains the definitions of constants and function 3468b8534bSLuigi Rizzo * prototypes used only in kernelspace. 3568b8534bSLuigi Rizzo */ 3668b8534bSLuigi Rizzo 3768b8534bSLuigi Rizzo #ifndef _NET_NETMAP_KERN_H_ 3868b8534bSLuigi Rizzo #define _NET_NETMAP_KERN_H_ 3968b8534bSLuigi Rizzo 40847bf383SLuigi Rizzo #if defined(linux) 41847bf383SLuigi Rizzo 424f80b14cSVincenzo Maffione #if defined(CONFIG_NETMAP_EXTMEM) 434f80b14cSVincenzo Maffione #define WITH_EXTMEM 444f80b14cSVincenzo Maffione #endif 45847bf383SLuigi Rizzo #if defined(CONFIG_NETMAP_VALE) 46847bf383SLuigi Rizzo #define WITH_VALE 47847bf383SLuigi Rizzo #endif 48847bf383SLuigi Rizzo #if defined(CONFIG_NETMAP_PIPE) 49847bf383SLuigi Rizzo #define WITH_PIPES 50847bf383SLuigi Rizzo #endif 51847bf383SLuigi Rizzo #if defined(CONFIG_NETMAP_MONITOR) 52847bf383SLuigi Rizzo #define WITH_MONITOR 53847bf383SLuigi Rizzo #endif 54847bf383SLuigi Rizzo #if defined(CONFIG_NETMAP_GENERIC) 55847bf383SLuigi Rizzo #define WITH_GENERIC 56847bf383SLuigi Rizzo #endif 5737e3a6d3SLuigi Rizzo #if defined(CONFIG_NETMAP_PTNETMAP_GUEST) 5837e3a6d3SLuigi Rizzo #define WITH_PTNETMAP_GUEST 5937e3a6d3SLuigi Rizzo #endif 6037e3a6d3SLuigi Rizzo #if defined(CONFIG_NETMAP_PTNETMAP_HOST) 6137e3a6d3SLuigi Rizzo #define WITH_PTNETMAP_HOST 62847bf383SLuigi Rizzo #endif 63c3e9b4dbSLuiz Otavio O Souza #if defined(CONFIG_NETMAP_SINK) 64c3e9b4dbSLuiz Otavio O Souza #define WITH_SINK 65c3e9b4dbSLuiz Otavio O Souza #endif 66847bf383SLuigi Rizzo 6737e3a6d3SLuigi Rizzo #elif defined (_WIN32) 68f9790aebSLuigi Rizzo #define WITH_VALE // comment out to disable VALE support 69f0ea3689SLuigi Rizzo #define WITH_PIPES 704bf50f18SLuigi Rizzo #define WITH_MONITOR 71039dd540SLuigi Rizzo #define WITH_GENERIC 72f9790aebSLuigi Rizzo 7337e3a6d3SLuigi Rizzo #else /* neither linux nor windows */ 7437e3a6d3SLuigi Rizzo #define WITH_VALE // comment out to disable VALE support 7537e3a6d3SLuigi Rizzo #define WITH_PIPES 7637e3a6d3SLuigi Rizzo #define WITH_MONITOR 7737e3a6d3SLuigi Rizzo #define WITH_GENERIC 7837e3a6d3SLuigi Rizzo #define WITH_PTNETMAP_HOST /* ptnetmap host support */ 7937e3a6d3SLuigi Rizzo #define WITH_PTNETMAP_GUEST /* ptnetmap guest support */ 80*2ff91c17SVincenzo Maffione #define WITH_EXTMEM 81847bf383SLuigi Rizzo #endif 82847bf383SLuigi Rizzo 831a26580eSLuigi Rizzo #if defined(__FreeBSD__) 84225d33ffSSean Bruno #include <sys/selinfo.h> 85d4b42e08SLuigi Rizzo 86ce3ee1e7SLuigi Rizzo #define likely(x) __builtin_expect((long)!!(x), 1L) 87ce3ee1e7SLuigi Rizzo #define unlikely(x) __builtin_expect((long)!!(x), 0L) 8837e3a6d3SLuigi Rizzo #define __user 89f196ce38SLuigi Rizzo 90847bf383SLuigi Rizzo #define NM_LOCK_T struct mtx /* low level spinlock, used to protect queues */ 91039dd540SLuigi Rizzo 92847bf383SLuigi Rizzo #define NM_MTX_T struct sx /* OS-specific mutex (sleepable) */ 93847bf383SLuigi Rizzo #define NM_MTX_INIT(m) sx_init(&(m), #m) 94847bf383SLuigi Rizzo #define NM_MTX_DESTROY(m) sx_destroy(&(m)) 95847bf383SLuigi Rizzo #define NM_MTX_LOCK(m) sx_xlock(&(m)) 964f80b14cSVincenzo Maffione #define NM_MTX_SPINLOCK(m) while (!sx_try_xlock(&(m))) ; 97847bf383SLuigi Rizzo #define NM_MTX_UNLOCK(m) sx_xunlock(&(m)) 98847bf383SLuigi Rizzo #define NM_MTX_ASSERT(m) sx_assert(&(m), SA_XLOCKED) 99f9790aebSLuigi Rizzo 1000e73f29aSLuigi Rizzo #define NM_SELINFO_T struct nm_selinfo 10137e3a6d3SLuigi Rizzo #define NM_SELRECORD_T struct thread 1021a26580eSLuigi Rizzo #define MBUF_LEN(m) ((m)->m_pkthdr.len) 10337e3a6d3SLuigi Rizzo #define MBUF_TXQ(m) ((m)->m_pkthdr.flowid) 10437e3a6d3SLuigi Rizzo #define MBUF_TRANSMIT(na, ifp, m) ((na)->if_transmit(ifp, m)) 10537e3a6d3SLuigi Rizzo #define GEN_TX_MBUF_IFP(m) ((m)->m_pkthdr.rcvif) 106d4b42e08SLuigi Rizzo 1074f80b14cSVincenzo Maffione #define NM_ATOMIC_T volatile int /* required by atomic/bitops.h */ 108f9790aebSLuigi Rizzo /* atomic operations */ 109f9790aebSLuigi Rizzo #include <machine/atomic.h> 110f9790aebSLuigi Rizzo #define NM_ATOMIC_TEST_AND_SET(p) (!atomic_cmpset_acq_int((p), 0, 1)) 111f9790aebSLuigi Rizzo #define NM_ATOMIC_CLEAR(p) atomic_store_rel_int((p), 0) 112f9790aebSLuigi Rizzo 1137f154b71SLuigi Rizzo #if __FreeBSD_version >= 1100030 1147f154b71SLuigi Rizzo #define WNA(_ifp) (_ifp)->if_netmap 1157f154b71SLuigi Rizzo #else /* older FreeBSD */ 1167f154b71SLuigi Rizzo #define WNA(_ifp) (_ifp)->if_pspare[0] 1177f154b71SLuigi Rizzo #endif /* older FreeBSD */ 1187f154b71SLuigi Rizzo 11946aa1303SLuigi Rizzo #if __FreeBSD_version >= 1100005 12046aa1303SLuigi Rizzo struct netmap_adapter *netmap_getna(if_t ifp); 12146aa1303SLuigi Rizzo #endif 122f9790aebSLuigi Rizzo 1234bf50f18SLuigi Rizzo #if __FreeBSD_version >= 1100027 12437e3a6d3SLuigi Rizzo #define MBUF_REFCNT(m) ((m)->m_ext.ext_count) 12537e3a6d3SLuigi Rizzo #define SET_MBUF_REFCNT(m, x) (m)->m_ext.ext_count = x 1264bf50f18SLuigi Rizzo #else 12737e3a6d3SLuigi Rizzo #define MBUF_REFCNT(m) ((m)->m_ext.ref_cnt ? *((m)->m_ext.ref_cnt) : -1) 1284bf50f18SLuigi Rizzo #define SET_MBUF_REFCNT(m, x) *((m)->m_ext.ref_cnt) = x 1294bf50f18SLuigi Rizzo #endif 1304bf50f18SLuigi Rizzo 13137e3a6d3SLuigi Rizzo #define MBUF_QUEUED(m) 1 132f9790aebSLuigi Rizzo 1330e73f29aSLuigi Rizzo struct nm_selinfo { 1340e73f29aSLuigi Rizzo struct selinfo si; 1350e73f29aSLuigi Rizzo struct mtx m; 1360e73f29aSLuigi Rizzo }; 1370e73f29aSLuigi Rizzo 1380e73f29aSLuigi Rizzo 139f9790aebSLuigi Rizzo struct hrtimer { 1404f80b14cSVincenzo Maffione /* Not used in FreeBSD. */ 141f9790aebSLuigi Rizzo }; 1424f80b14cSVincenzo Maffione 143847bf383SLuigi Rizzo #define NM_BNS_GET(b) 144847bf383SLuigi Rizzo #define NM_BNS_PUT(b) 145ce3ee1e7SLuigi Rizzo 14664ae02c3SLuigi Rizzo #elif defined (linux) 147d4b42e08SLuigi Rizzo 1482579e2d7SLuigi Rizzo #define NM_LOCK_T safe_spinlock_t // see bsd_glue.h 1491a26580eSLuigi Rizzo #define NM_SELINFO_T wait_queue_head_t 1501a26580eSLuigi Rizzo #define MBUF_LEN(m) ((m)->len) 15137e3a6d3SLuigi Rizzo #define MBUF_TRANSMIT(na, ifp, m) \ 15237e3a6d3SLuigi Rizzo ({ \ 15337e3a6d3SLuigi Rizzo /* Avoid infinite recursion with generic. */ \ 15437e3a6d3SLuigi Rizzo m->priority = NM_MAGIC_PRIORITY_TX; \ 15537e3a6d3SLuigi Rizzo (((struct net_device_ops *)(na)->if_transmit)->ndo_start_xmit(m, ifp)); \ 15637e3a6d3SLuigi Rizzo 0; \ 15737e3a6d3SLuigi Rizzo }) 15837e3a6d3SLuigi Rizzo 15937e3a6d3SLuigi Rizzo /* See explanation in nm_os_generic_xmit_frame. */ 16037e3a6d3SLuigi Rizzo #define GEN_TX_MBUF_IFP(m) ((struct ifnet *)skb_shinfo(m)->destructor_arg) 161f196ce38SLuigi Rizzo 162ce3ee1e7SLuigi Rizzo #define NM_ATOMIC_T volatile long unsigned int 163ce3ee1e7SLuigi Rizzo 164847bf383SLuigi Rizzo #define NM_MTX_T struct mutex /* OS-specific sleepable lock */ 165847bf383SLuigi Rizzo #define NM_MTX_INIT(m) mutex_init(&(m)) 166847bf383SLuigi Rizzo #define NM_MTX_DESTROY(m) do { (void)(m); } while (0) 167039dd540SLuigi Rizzo #define NM_MTX_LOCK(m) mutex_lock(&(m)) 168039dd540SLuigi Rizzo #define NM_MTX_UNLOCK(m) mutex_unlock(&(m)) 169847bf383SLuigi Rizzo #define NM_MTX_ASSERT(m) mutex_is_locked(&(m)) 170f9790aebSLuigi Rizzo 171f196ce38SLuigi Rizzo #ifndef DEV_NETMAP 172f196ce38SLuigi Rizzo #define DEV_NETMAP 173ce3ee1e7SLuigi Rizzo #endif /* DEV_NETMAP */ 174f196ce38SLuigi Rizzo 175f196ce38SLuigi Rizzo #elif defined (__APPLE__) 176d4b42e08SLuigi Rizzo 1778241616dSLuigi Rizzo #warning apple support is incomplete. 178f196ce38SLuigi Rizzo #define likely(x) __builtin_expect(!!(x), 1) 179f196ce38SLuigi Rizzo #define unlikely(x) __builtin_expect(!!(x), 0) 180f196ce38SLuigi Rizzo #define NM_LOCK_T IOLock * 181f196ce38SLuigi Rizzo #define NM_SELINFO_T struct selinfo 182f196ce38SLuigi Rizzo #define MBUF_LEN(m) ((m)->m_pkthdr.len) 18337e3a6d3SLuigi Rizzo 18437e3a6d3SLuigi Rizzo #elif defined (_WIN32) 18537e3a6d3SLuigi Rizzo #include "../../../WINDOWS/win_glue.h" 18637e3a6d3SLuigi Rizzo 18737e3a6d3SLuigi Rizzo #define NM_SELRECORD_T IO_STACK_LOCATION 18837e3a6d3SLuigi Rizzo #define NM_SELINFO_T win_SELINFO // see win_glue.h 18937e3a6d3SLuigi Rizzo #define NM_LOCK_T win_spinlock_t // see win_glue.h 19037e3a6d3SLuigi Rizzo #define NM_MTX_T KGUARDED_MUTEX /* OS-specific mutex (sleepable) */ 19137e3a6d3SLuigi Rizzo 19237e3a6d3SLuigi Rizzo #define NM_MTX_INIT(m) KeInitializeGuardedMutex(&m); 19337e3a6d3SLuigi Rizzo #define NM_MTX_DESTROY(m) do { (void)(m); } while (0) 19437e3a6d3SLuigi Rizzo #define NM_MTX_LOCK(m) KeAcquireGuardedMutex(&(m)) 19537e3a6d3SLuigi Rizzo #define NM_MTX_UNLOCK(m) KeReleaseGuardedMutex(&(m)) 19637e3a6d3SLuigi Rizzo #define NM_MTX_ASSERT(m) assert(&m.Count>0) 19737e3a6d3SLuigi Rizzo 19837e3a6d3SLuigi Rizzo //These linknames are for the NDIS driver 19937e3a6d3SLuigi Rizzo #define NETMAP_NDIS_LINKNAME_STRING L"\\DosDevices\\NMAPNDIS" 20037e3a6d3SLuigi Rizzo #define NETMAP_NDIS_NTDEVICE_STRING L"\\Device\\NMAPNDIS" 20137e3a6d3SLuigi Rizzo 20237e3a6d3SLuigi Rizzo //Definition of internal driver-to-driver ioctl codes 20337e3a6d3SLuigi Rizzo #define NETMAP_KERNEL_XCHANGE_POINTERS _IO('i', 180) 20437e3a6d3SLuigi Rizzo #define NETMAP_KERNEL_SEND_SHUTDOWN_SIGNAL _IO_direct('i', 195) 20537e3a6d3SLuigi Rizzo 20637e3a6d3SLuigi Rizzo typedef struct hrtimer{ 20737e3a6d3SLuigi Rizzo KTIMER timer; 20837e3a6d3SLuigi Rizzo BOOLEAN active; 20937e3a6d3SLuigi Rizzo KDPC deferred_proc; 21037e3a6d3SLuigi Rizzo }; 21137e3a6d3SLuigi Rizzo 21237e3a6d3SLuigi Rizzo /* MSVC does not have likely/unlikely support */ 21337e3a6d3SLuigi Rizzo #ifdef _MSC_VER 21437e3a6d3SLuigi Rizzo #define likely(x) (x) 21537e3a6d3SLuigi Rizzo #define unlikely(x) (x) 21637e3a6d3SLuigi Rizzo #else 21737e3a6d3SLuigi Rizzo #define likely(x) __builtin_expect((long)!!(x), 1L) 21837e3a6d3SLuigi Rizzo #define unlikely(x) __builtin_expect((long)!!(x), 0L) 21937e3a6d3SLuigi Rizzo #endif //_MSC_VER 220f196ce38SLuigi Rizzo 2211a26580eSLuigi Rizzo #else 222d4b42e08SLuigi Rizzo 2231a26580eSLuigi Rizzo #error unsupported platform 224d4b42e08SLuigi Rizzo 225d4b42e08SLuigi Rizzo #endif /* end - platform-specific code */ 2261a26580eSLuigi Rizzo 22737e3a6d3SLuigi Rizzo #ifndef _WIN32 /* support for emulated sysctl */ 22837e3a6d3SLuigi Rizzo #define SYSBEGIN(x) 22937e3a6d3SLuigi Rizzo #define SYSEND 23037e3a6d3SLuigi Rizzo #endif /* _WIN32 */ 23137e3a6d3SLuigi Rizzo 23237e3a6d3SLuigi Rizzo #define NM_ACCESS_ONCE(x) (*(volatile __typeof__(x) *)&(x)) 23337e3a6d3SLuigi Rizzo 234847bf383SLuigi Rizzo #define NMG_LOCK_T NM_MTX_T 235847bf383SLuigi Rizzo #define NMG_LOCK_INIT() NM_MTX_INIT(netmap_global_lock) 236847bf383SLuigi Rizzo #define NMG_LOCK_DESTROY() NM_MTX_DESTROY(netmap_global_lock) 237847bf383SLuigi Rizzo #define NMG_LOCK() NM_MTX_LOCK(netmap_global_lock) 238847bf383SLuigi Rizzo #define NMG_UNLOCK() NM_MTX_UNLOCK(netmap_global_lock) 239847bf383SLuigi Rizzo #define NMG_LOCK_ASSERT() NM_MTX_ASSERT(netmap_global_lock) 240847bf383SLuigi Rizzo 241c3e9b4dbSLuiz Otavio O Souza #if defined(__FreeBSD__) 242c3e9b4dbSLuiz Otavio O Souza #define nm_prerr printf 243c3e9b4dbSLuiz Otavio O Souza #define nm_prinf printf 244c3e9b4dbSLuiz Otavio O Souza #elif defined (_WIN32) 245c3e9b4dbSLuiz Otavio O Souza #define nm_prerr DbgPrint 246c3e9b4dbSLuiz Otavio O Souza #define nm_prinf DbgPrint 247c3e9b4dbSLuiz Otavio O Souza #elif defined(linux) 248c3e9b4dbSLuiz Otavio O Souza #define nm_prerr(fmt, arg...) printk(KERN_ERR fmt, ##arg) 249c3e9b4dbSLuiz Otavio O Souza #define nm_prinf(fmt, arg...) printk(KERN_INFO fmt, ##arg) 250c3e9b4dbSLuiz Otavio O Souza #endif 251c3e9b4dbSLuiz Otavio O Souza 25268b8534bSLuigi Rizzo #define ND(format, ...) 25368b8534bSLuigi Rizzo #define D(format, ...) \ 25468b8534bSLuigi Rizzo do { \ 25568b8534bSLuigi Rizzo struct timeval __xxts; \ 25668b8534bSLuigi Rizzo microtime(&__xxts); \ 257c3e9b4dbSLuiz Otavio O Souza nm_prerr("%03d.%06d [%4d] %-25s " format "\n", \ 25868b8534bSLuigi Rizzo (int)__xxts.tv_sec % 1000, (int)__xxts.tv_usec, \ 25917885a7bSLuigi Rizzo __LINE__, __FUNCTION__, ##__VA_ARGS__); \ 26068b8534bSLuigi Rizzo } while (0) 26168b8534bSLuigi Rizzo 2628241616dSLuigi Rizzo /* rate limited, lps indicates how many per second */ 2638241616dSLuigi Rizzo #define RD(lps, format, ...) \ 2648241616dSLuigi Rizzo do { \ 2658241616dSLuigi Rizzo static int t0, __cnt; \ 2668241616dSLuigi Rizzo if (t0 != time_second) { \ 2678241616dSLuigi Rizzo t0 = time_second; \ 2688241616dSLuigi Rizzo __cnt = 0; \ 2698241616dSLuigi Rizzo } \ 2708241616dSLuigi Rizzo if (__cnt++ < lps) \ 2718241616dSLuigi Rizzo D(format, ##__VA_ARGS__); \ 2728241616dSLuigi Rizzo } while (0) 2738241616dSLuigi Rizzo 27468b8534bSLuigi Rizzo struct netmap_adapter; 275f18be576SLuigi Rizzo struct nm_bdg_fwd; 276f18be576SLuigi Rizzo struct nm_bridge; 277f18be576SLuigi Rizzo struct netmap_priv_d; 27868b8534bSLuigi Rizzo 27937e3a6d3SLuigi Rizzo /* os-specific NM_SELINFO_T initialzation/destruction functions */ 28037e3a6d3SLuigi Rizzo void nm_os_selinfo_init(NM_SELINFO_T *); 28137e3a6d3SLuigi Rizzo void nm_os_selinfo_uninit(NM_SELINFO_T *); 28237e3a6d3SLuigi Rizzo 283ce3ee1e7SLuigi Rizzo const char *nm_dump_buf(char *p, int len, int lim, char *dst); 284ce3ee1e7SLuigi Rizzo 28537e3a6d3SLuigi Rizzo void nm_os_selwakeup(NM_SELINFO_T *si); 28637e3a6d3SLuigi Rizzo void nm_os_selrecord(NM_SELRECORD_T *sr, NM_SELINFO_T *si); 28737e3a6d3SLuigi Rizzo 28837e3a6d3SLuigi Rizzo int nm_os_ifnet_init(void); 28937e3a6d3SLuigi Rizzo void nm_os_ifnet_fini(void); 29037e3a6d3SLuigi Rizzo void nm_os_ifnet_lock(void); 29137e3a6d3SLuigi Rizzo void nm_os_ifnet_unlock(void); 29237e3a6d3SLuigi Rizzo 2934f80b14cSVincenzo Maffione unsigned nm_os_ifnet_mtu(struct ifnet *ifp); 2944f80b14cSVincenzo Maffione 29537e3a6d3SLuigi Rizzo void nm_os_get_module(void); 29637e3a6d3SLuigi Rizzo void nm_os_put_module(void); 29737e3a6d3SLuigi Rizzo 29837e3a6d3SLuigi Rizzo void netmap_make_zombie(struct ifnet *); 29937e3a6d3SLuigi Rizzo void netmap_undo_zombie(struct ifnet *); 30037e3a6d3SLuigi Rizzo 301c3e9b4dbSLuiz Otavio O Souza /* os independent alloc/realloc/free */ 302c3e9b4dbSLuiz Otavio O Souza void *nm_os_malloc(size_t); 3034f80b14cSVincenzo Maffione void *nm_os_vmalloc(size_t); 304c3e9b4dbSLuiz Otavio O Souza void *nm_os_realloc(void *, size_t new_size, size_t old_size); 305c3e9b4dbSLuiz Otavio O Souza void nm_os_free(void *); 3064f80b14cSVincenzo Maffione void nm_os_vfree(void *); 307c3e9b4dbSLuiz Otavio O Souza 30837e3a6d3SLuigi Rizzo /* passes a packet up to the host stack. 30937e3a6d3SLuigi Rizzo * If the packet is sent (or dropped) immediately it returns NULL, 31037e3a6d3SLuigi Rizzo * otherwise it links the packet to prev and returns m. 31137e3a6d3SLuigi Rizzo * In this case, a final call with m=NULL and prev != NULL will send up 31237e3a6d3SLuigi Rizzo * the entire chain to the host stack. 31337e3a6d3SLuigi Rizzo */ 31437e3a6d3SLuigi Rizzo void *nm_os_send_up(struct ifnet *, struct mbuf *m, struct mbuf *prev); 31537e3a6d3SLuigi Rizzo 31637e3a6d3SLuigi Rizzo int nm_os_mbuf_has_offld(struct mbuf *m); 31737e3a6d3SLuigi Rizzo 318f9790aebSLuigi Rizzo #include "netmap_mbq.h" 319f9790aebSLuigi Rizzo 320f9790aebSLuigi Rizzo extern NMG_LOCK_T netmap_global_lock; 321f9790aebSLuigi Rizzo 322847bf383SLuigi Rizzo enum txrx { NR_RX = 0, NR_TX = 1, NR_TXRX }; 323847bf383SLuigi Rizzo 324847bf383SLuigi Rizzo static __inline const char* 325847bf383SLuigi Rizzo nm_txrx2str(enum txrx t) 326847bf383SLuigi Rizzo { 327847bf383SLuigi Rizzo return (t== NR_RX ? "RX" : "TX"); 328847bf383SLuigi Rizzo } 329847bf383SLuigi Rizzo 330847bf383SLuigi Rizzo static __inline enum txrx 331847bf383SLuigi Rizzo nm_txrx_swap(enum txrx t) 332847bf383SLuigi Rizzo { 333847bf383SLuigi Rizzo return (t== NR_RX ? NR_TX : NR_RX); 334847bf383SLuigi Rizzo } 335847bf383SLuigi Rizzo 336847bf383SLuigi Rizzo #define for_rx_tx(t) for ((t) = 0; (t) < NR_TXRX; (t)++) 337847bf383SLuigi Rizzo 338c3e9b4dbSLuiz Otavio O Souza #ifdef WITH_MONITOR 339c3e9b4dbSLuiz Otavio O Souza struct netmap_zmon_list { 340c3e9b4dbSLuiz Otavio O Souza struct netmap_kring *next; 341c3e9b4dbSLuiz Otavio O Souza struct netmap_kring *prev; 342c3e9b4dbSLuiz Otavio O Souza }; 343c3e9b4dbSLuiz Otavio O Souza #endif /* WITH_MONITOR */ 344847bf383SLuigi Rizzo 34568b8534bSLuigi Rizzo /* 34664ae02c3SLuigi Rizzo * private, kernel view of a ring. Keeps track of the status of 34764ae02c3SLuigi Rizzo * a ring across system calls. 34864ae02c3SLuigi Rizzo * 34964ae02c3SLuigi Rizzo * nr_hwcur index of the next buffer to refill. 35017885a7bSLuigi Rizzo * It corresponds to ring->head 35117885a7bSLuigi Rizzo * at the time the system call returns. 35264ae02c3SLuigi Rizzo * 35317885a7bSLuigi Rizzo * nr_hwtail index of the first buffer owned by the kernel. 35417885a7bSLuigi Rizzo * On RX, hwcur->hwtail are receive buffers 35517885a7bSLuigi Rizzo * not yet released. hwcur is advanced following 35617885a7bSLuigi Rizzo * ring->head, hwtail is advanced on incoming packets, 35717885a7bSLuigi Rizzo * and a wakeup is generated when hwtail passes ring->cur 35817885a7bSLuigi Rizzo * On TX, hwcur->rcur have been filled by the sender 35917885a7bSLuigi Rizzo * but not sent yet to the NIC; rcur->hwtail are available 36017885a7bSLuigi Rizzo * for new transmissions, and hwtail->hwcur-1 are pending 36117885a7bSLuigi Rizzo * transmissions not yet acknowledged. 36268b8534bSLuigi Rizzo * 3631a26580eSLuigi Rizzo * The indexes in the NIC and netmap rings are offset by nkr_hwofs slots. 36468b8534bSLuigi Rizzo * This is so that, on a reset, buffers owned by userspace are not 36568b8534bSLuigi Rizzo * modified by the kernel. In particular: 36617885a7bSLuigi Rizzo * RX rings: the next empty buffer (hwtail + hwofs) coincides with 36768b8534bSLuigi Rizzo * the next empty buffer as known by the hardware (next_to_check or so). 36868b8534bSLuigi Rizzo * TX rings: hwcur + hwofs coincides with next_to_send 3691dce924dSLuigi Rizzo * 370ce3ee1e7SLuigi Rizzo * The following fields are used to implement lock-free copy of packets 371ce3ee1e7SLuigi Rizzo * from input to output ports in VALE switch: 372ce3ee1e7SLuigi Rizzo * nkr_hwlease buffer after the last one being copied. 373ce3ee1e7SLuigi Rizzo * A writer in nm_bdg_flush reserves N buffers 374ce3ee1e7SLuigi Rizzo * from nr_hwlease, advances it, then does the 375ce3ee1e7SLuigi Rizzo * copy outside the lock. 376ce3ee1e7SLuigi Rizzo * In RX rings (used for VALE ports), 37717885a7bSLuigi Rizzo * nkr_hwtail <= nkr_hwlease < nkr_hwcur+N-1 378ce3ee1e7SLuigi Rizzo * In TX rings (used for NIC or host stack ports) 37917885a7bSLuigi Rizzo * nkr_hwcur <= nkr_hwlease < nkr_hwtail 380ce3ee1e7SLuigi Rizzo * nkr_leases array of nkr_num_slots where writers can report 381ce3ee1e7SLuigi Rizzo * completion of their block. NR_NOSLOT (~0) indicates 382ce3ee1e7SLuigi Rizzo * that the writer has not finished yet 383ce3ee1e7SLuigi Rizzo * nkr_lease_idx index of next free slot in nr_leases, to be assigned 384ce3ee1e7SLuigi Rizzo * 385ce3ee1e7SLuigi Rizzo * The kring is manipulated by txsync/rxsync and generic netmap function. 38617885a7bSLuigi Rizzo * 38717885a7bSLuigi Rizzo * Concurrent rxsync or txsync on the same ring are prevented through 38889cc2556SLuigi Rizzo * by nm_kr_(try)lock() which in turn uses nr_busy. This is all we need 38917885a7bSLuigi Rizzo * for NIC rings, and for TX rings attached to the host stack. 39017885a7bSLuigi Rizzo * 39117885a7bSLuigi Rizzo * RX rings attached to the host stack use an mbq (rx_queue) on both 39217885a7bSLuigi Rizzo * rxsync_from_host() and netmap_transmit(). The mbq is protected 39317885a7bSLuigi Rizzo * by its internal lock. 39417885a7bSLuigi Rizzo * 3954bf50f18SLuigi Rizzo * RX rings attached to the VALE switch are accessed by both senders 39617885a7bSLuigi Rizzo * and receiver. They are protected through the q_lock on the RX ring. 39768b8534bSLuigi Rizzo */ 39868b8534bSLuigi Rizzo struct netmap_kring { 39968b8534bSLuigi Rizzo struct netmap_ring *ring; 40017885a7bSLuigi Rizzo 401*2ff91c17SVincenzo Maffione uint32_t nr_hwcur; /* should be nr_hwhead */ 40217885a7bSLuigi Rizzo uint32_t nr_hwtail; 40317885a7bSLuigi Rizzo 40417885a7bSLuigi Rizzo /* 40517885a7bSLuigi Rizzo * Copies of values in user rings, so we do not need to look 40617885a7bSLuigi Rizzo * at the ring (which could be modified). These are set in the 40717885a7bSLuigi Rizzo * *sync_prologue()/finalize() routines. 40817885a7bSLuigi Rizzo */ 40917885a7bSLuigi Rizzo uint32_t rhead; 41017885a7bSLuigi Rizzo uint32_t rcur; 41117885a7bSLuigi Rizzo uint32_t rtail; 41217885a7bSLuigi Rizzo 413ce3ee1e7SLuigi Rizzo uint32_t nr_kflags; /* private driver flags */ 4142157a17cSLuigi Rizzo #define NKR_PENDINTR 0x1 // Pending interrupt. 415847bf383SLuigi Rizzo #define NKR_EXCLUSIVE 0x2 /* exclusive binding */ 41637e3a6d3SLuigi Rizzo #define NKR_FORWARD 0x4 /* (host ring only) there are 41737e3a6d3SLuigi Rizzo packets to forward 41837e3a6d3SLuigi Rizzo */ 41937e3a6d3SLuigi Rizzo #define NKR_NEEDRING 0x8 /* ring needed even if users==0 42037e3a6d3SLuigi Rizzo * (used internally by pipes and 42137e3a6d3SLuigi Rizzo * by ptnetmap host ports) 42237e3a6d3SLuigi Rizzo */ 4234f80b14cSVincenzo Maffione #define NKR_NOINTR 0x10 /* don't use interrupts on this ring */ 424*2ff91c17SVincenzo Maffione #define NKR_FAKERING 0x20 /* don't allocate/free buffers */ 42537e3a6d3SLuigi Rizzo 42637e3a6d3SLuigi Rizzo uint32_t nr_mode; 42737e3a6d3SLuigi Rizzo uint32_t nr_pending_mode; 42837e3a6d3SLuigi Rizzo #define NKR_NETMAP_OFF 0x0 42937e3a6d3SLuigi Rizzo #define NKR_NETMAP_ON 0x1 43037e3a6d3SLuigi Rizzo 431ce3ee1e7SLuigi Rizzo uint32_t nkr_num_slots; 43217885a7bSLuigi Rizzo 43317885a7bSLuigi Rizzo /* 43417885a7bSLuigi Rizzo * On a NIC reset, the NIC ring indexes may be reset but the 43517885a7bSLuigi Rizzo * indexes in the netmap rings remain the same. nkr_hwofs 43617885a7bSLuigi Rizzo * keeps track of the offset between the two. 43717885a7bSLuigi Rizzo */ 43817885a7bSLuigi Rizzo int32_t nkr_hwofs; 43968b8534bSLuigi Rizzo 44017885a7bSLuigi Rizzo /* last_reclaim is opaque marker to help reduce the frequency 44117885a7bSLuigi Rizzo * of operations such as reclaiming tx buffers. A possible use 44217885a7bSLuigi Rizzo * is set it to ticks and do the reclaim only once per tick. 44317885a7bSLuigi Rizzo */ 44417885a7bSLuigi Rizzo uint64_t last_reclaim; 44517885a7bSLuigi Rizzo 446ce3ee1e7SLuigi Rizzo 4471a26580eSLuigi Rizzo NM_SELINFO_T si; /* poll/select wait queue */ 448ce3ee1e7SLuigi Rizzo NM_LOCK_T q_lock; /* protects kring and ring. */ 449ce3ee1e7SLuigi Rizzo NM_ATOMIC_T nr_busy; /* prevent concurrent syscalls */ 450ce3ee1e7SLuigi Rizzo 451*2ff91c17SVincenzo Maffione /* the adapter the owns this kring */ 45217885a7bSLuigi Rizzo struct netmap_adapter *na; 45317885a7bSLuigi Rizzo 454*2ff91c17SVincenzo Maffione /* the adapter that wants to be notified when this kring has 455*2ff91c17SVincenzo Maffione * new slots avaialable. This is usually the same as the above, 456*2ff91c17SVincenzo Maffione * but wrappers may let it point to themselves 457*2ff91c17SVincenzo Maffione */ 458*2ff91c17SVincenzo Maffione struct netmap_adapter *notify_na; 459*2ff91c17SVincenzo Maffione 4606435a0dcSLuigi Rizzo /* The following fields are for VALE switch support */ 46117885a7bSLuigi Rizzo struct nm_bdg_fwd *nkr_ft; 46217885a7bSLuigi Rizzo uint32_t *nkr_leases; 46317885a7bSLuigi Rizzo #define NR_NOSLOT ((uint32_t)~0) /* used in nkr_*lease* */ 46417885a7bSLuigi Rizzo uint32_t nkr_hwlease; 46517885a7bSLuigi Rizzo uint32_t nkr_lease_idx; 46617885a7bSLuigi Rizzo 4674bf50f18SLuigi Rizzo /* while nkr_stopped is set, no new [tr]xsync operations can 4684bf50f18SLuigi Rizzo * be started on this kring. 4694bf50f18SLuigi Rizzo * This is used by netmap_disable_all_rings() 4704bf50f18SLuigi Rizzo * to find a synchronization point where critical data 4714bf50f18SLuigi Rizzo * structures pointed to by the kring can be added or removed 4724bf50f18SLuigi Rizzo */ 4734bf50f18SLuigi Rizzo volatile int nkr_stopped; 474f9790aebSLuigi Rizzo 475f0ea3689SLuigi Rizzo /* Support for adapters without native netmap support. 476f9790aebSLuigi Rizzo * On tx rings we preallocate an array of tx buffers 477f9790aebSLuigi Rizzo * (same size as the netmap ring), on rx rings we 478f0ea3689SLuigi Rizzo * store incoming mbufs in a queue that is drained by 479f0ea3689SLuigi Rizzo * a rxsync. 480f9790aebSLuigi Rizzo */ 481f9790aebSLuigi Rizzo struct mbuf **tx_pool; 48237e3a6d3SLuigi Rizzo struct mbuf *tx_event; /* TX event used as a notification */ 48337e3a6d3SLuigi Rizzo NM_LOCK_T tx_event_lock; /* protects the tx_event mbuf */ 48417885a7bSLuigi Rizzo struct mbq rx_queue; /* intercepted rx mbufs. */ 48517885a7bSLuigi Rizzo 486847bf383SLuigi Rizzo uint32_t users; /* existing bindings for this ring */ 487847bf383SLuigi Rizzo 48837e3a6d3SLuigi Rizzo uint32_t ring_id; /* kring identifier */ 489847bf383SLuigi Rizzo enum txrx tx; /* kind of ring (tx or rx) */ 49017885a7bSLuigi Rizzo char name[64]; /* diagnostic */ 491f9790aebSLuigi Rizzo 4924bf50f18SLuigi Rizzo /* [tx]sync callback for this kring. 4934bf50f18SLuigi Rizzo * The default nm_kring_create callback (netmap_krings_create) 4944bf50f18SLuigi Rizzo * sets the nm_sync callback of each hardware tx(rx) kring to 4954bf50f18SLuigi Rizzo * the corresponding nm_txsync(nm_rxsync) taken from the 4964bf50f18SLuigi Rizzo * netmap_adapter; moreover, it sets the sync callback 4974bf50f18SLuigi Rizzo * of the host tx(rx) ring to netmap_txsync_to_host 4984bf50f18SLuigi Rizzo * (netmap_rxsync_from_host). 4994bf50f18SLuigi Rizzo * 5004bf50f18SLuigi Rizzo * Overrides: the above configuration is not changed by 5014bf50f18SLuigi Rizzo * any of the nm_krings_create callbacks. 5024bf50f18SLuigi Rizzo */ 503f0ea3689SLuigi Rizzo int (*nm_sync)(struct netmap_kring *kring, int flags); 504847bf383SLuigi Rizzo int (*nm_notify)(struct netmap_kring *kring, int flags); 505f0ea3689SLuigi Rizzo 506f0ea3689SLuigi Rizzo #ifdef WITH_PIPES 5074bf50f18SLuigi Rizzo struct netmap_kring *pipe; /* if this is a pipe ring, 5084bf50f18SLuigi Rizzo * pointer to the other end 5094bf50f18SLuigi Rizzo */ 510f0ea3689SLuigi Rizzo #endif /* WITH_PIPES */ 511f0ea3689SLuigi Rizzo 512847bf383SLuigi Rizzo #ifdef WITH_VALE 513847bf383SLuigi Rizzo int (*save_notify)(struct netmap_kring *kring, int flags); 514847bf383SLuigi Rizzo #endif 515847bf383SLuigi Rizzo 5164bf50f18SLuigi Rizzo #ifdef WITH_MONITOR 517847bf383SLuigi Rizzo /* array of krings that are monitoring this kring */ 518847bf383SLuigi Rizzo struct netmap_kring **monitors; 519847bf383SLuigi Rizzo uint32_t max_monitors; /* current size of the monitors array */ 520847bf383SLuigi Rizzo uint32_t n_monitors; /* next unused entry in the monitor array */ 521c3e9b4dbSLuiz Otavio O Souza uint32_t mon_pos[NR_TXRX]; /* index of this ring in the monitored ring array */ 522c3e9b4dbSLuiz Otavio O Souza uint32_t mon_tail; /* last seen slot on rx */ 523c3e9b4dbSLuiz Otavio O Souza 524c3e9b4dbSLuiz Otavio O Souza /* circular list of zero-copy monitors */ 525c3e9b4dbSLuiz Otavio O Souza struct netmap_zmon_list zmon_list[NR_TXRX]; 526c3e9b4dbSLuiz Otavio O Souza 5274bf50f18SLuigi Rizzo /* 528847bf383SLuigi Rizzo * Monitors work by intercepting the sync and notify callbacks of the 529847bf383SLuigi Rizzo * monitored krings. This is implemented by replacing the pointers 530847bf383SLuigi Rizzo * above and saving the previous ones in mon_* pointers below 5314bf50f18SLuigi Rizzo */ 532847bf383SLuigi Rizzo int (*mon_sync)(struct netmap_kring *kring, int flags); 533847bf383SLuigi Rizzo int (*mon_notify)(struct netmap_kring *kring, int flags); 534847bf383SLuigi Rizzo 5354bf50f18SLuigi Rizzo #endif 53637e3a6d3SLuigi Rizzo } 53737e3a6d3SLuigi Rizzo #ifdef _WIN32 53837e3a6d3SLuigi Rizzo __declspec(align(64)); 53937e3a6d3SLuigi Rizzo #else 54037e3a6d3SLuigi Rizzo __attribute__((__aligned__(64))); 54137e3a6d3SLuigi Rizzo #endif 54268b8534bSLuigi Rizzo 54337e3a6d3SLuigi Rizzo /* return 1 iff the kring needs to be turned on */ 54437e3a6d3SLuigi Rizzo static inline int 54537e3a6d3SLuigi Rizzo nm_kring_pending_on(struct netmap_kring *kring) 54637e3a6d3SLuigi Rizzo { 54737e3a6d3SLuigi Rizzo return kring->nr_pending_mode == NKR_NETMAP_ON && 54837e3a6d3SLuigi Rizzo kring->nr_mode == NKR_NETMAP_OFF; 54937e3a6d3SLuigi Rizzo } 55037e3a6d3SLuigi Rizzo 55137e3a6d3SLuigi Rizzo /* return 1 iff the kring needs to be turned off */ 55237e3a6d3SLuigi Rizzo static inline int 55337e3a6d3SLuigi Rizzo nm_kring_pending_off(struct netmap_kring *kring) 55437e3a6d3SLuigi Rizzo { 55537e3a6d3SLuigi Rizzo return kring->nr_pending_mode == NKR_NETMAP_OFF && 55637e3a6d3SLuigi Rizzo kring->nr_mode == NKR_NETMAP_ON; 55737e3a6d3SLuigi Rizzo } 558ce3ee1e7SLuigi Rizzo 559ce3ee1e7SLuigi Rizzo /* return the next index, with wraparound */ 560ce3ee1e7SLuigi Rizzo static inline uint32_t 561ce3ee1e7SLuigi Rizzo nm_next(uint32_t i, uint32_t lim) 562ce3ee1e7SLuigi Rizzo { 563ce3ee1e7SLuigi Rizzo return unlikely (i == lim) ? 0 : i + 1; 564ce3ee1e7SLuigi Rizzo } 565ce3ee1e7SLuigi Rizzo 56617885a7bSLuigi Rizzo 56717885a7bSLuigi Rizzo /* return the previous index, with wraparound */ 56817885a7bSLuigi Rizzo static inline uint32_t 56917885a7bSLuigi Rizzo nm_prev(uint32_t i, uint32_t lim) 57017885a7bSLuigi Rizzo { 57117885a7bSLuigi Rizzo return unlikely (i == 0) ? lim : i - 1; 57217885a7bSLuigi Rizzo } 57317885a7bSLuigi Rizzo 57417885a7bSLuigi Rizzo 575ce3ee1e7SLuigi Rizzo /* 576ce3ee1e7SLuigi Rizzo * 577ce3ee1e7SLuigi Rizzo * Here is the layout for the Rx and Tx rings. 578ce3ee1e7SLuigi Rizzo 579ce3ee1e7SLuigi Rizzo RxRING TxRING 580ce3ee1e7SLuigi Rizzo 581ce3ee1e7SLuigi Rizzo +-----------------+ +-----------------+ 582ce3ee1e7SLuigi Rizzo | | | | 5834f80b14cSVincenzo Maffione | free | | free | 584ce3ee1e7SLuigi Rizzo +-----------------+ +-----------------+ 58517885a7bSLuigi Rizzo head->| owned by user |<-hwcur | not sent to nic |<-hwcur 58617885a7bSLuigi Rizzo | | | yet | 58717885a7bSLuigi Rizzo +-----------------+ | | 58817885a7bSLuigi Rizzo cur->| available to | | | 58917885a7bSLuigi Rizzo | user, not read | +-----------------+ 59017885a7bSLuigi Rizzo | yet | cur->| (being | 59117885a7bSLuigi Rizzo | | | prepared) | 592ce3ee1e7SLuigi Rizzo | | | | 59317885a7bSLuigi Rizzo +-----------------+ + ------ + 59417885a7bSLuigi Rizzo tail->| |<-hwtail | |<-hwlease 59517885a7bSLuigi Rizzo | (being | ... | | ... 59617885a7bSLuigi Rizzo | prepared) | ... | | ... 59717885a7bSLuigi Rizzo +-----------------+ ... | | ... 59817885a7bSLuigi Rizzo | |<-hwlease +-----------------+ 59917885a7bSLuigi Rizzo | | tail->| |<-hwtail 600ce3ee1e7SLuigi Rizzo | | | | 601ce3ee1e7SLuigi Rizzo | | | | 602ce3ee1e7SLuigi Rizzo | | | | 603ce3ee1e7SLuigi Rizzo +-----------------+ +-----------------+ 604ce3ee1e7SLuigi Rizzo 60517885a7bSLuigi Rizzo * The cur/tail (user view) and hwcur/hwtail (kernel view) 606ce3ee1e7SLuigi Rizzo * are used in the normal operation of the card. 607ce3ee1e7SLuigi Rizzo * 608ce3ee1e7SLuigi Rizzo * When a ring is the output of a switch port (Rx ring for 609ce3ee1e7SLuigi Rizzo * a VALE port, Tx ring for the host stack or NIC), slots 610ce3ee1e7SLuigi Rizzo * are reserved in blocks through 'hwlease' which points 611ce3ee1e7SLuigi Rizzo * to the next unused slot. 61217885a7bSLuigi Rizzo * On an Rx ring, hwlease is always after hwtail, 61317885a7bSLuigi Rizzo * and completions cause hwtail to advance. 61417885a7bSLuigi Rizzo * On a Tx ring, hwlease is always between cur and hwtail, 615ce3ee1e7SLuigi Rizzo * and completions cause cur to advance. 616ce3ee1e7SLuigi Rizzo * 617ce3ee1e7SLuigi Rizzo * nm_kr_space() returns the maximum number of slots that 618ce3ee1e7SLuigi Rizzo * can be assigned. 619ce3ee1e7SLuigi Rizzo * nm_kr_lease() reserves the required number of buffers, 620ce3ee1e7SLuigi Rizzo * advances nkr_hwlease and also returns an entry in 621ce3ee1e7SLuigi Rizzo * a circular array where completions should be reported. 622ce3ee1e7SLuigi Rizzo */ 623ce3ee1e7SLuigi Rizzo 6244f80b14cSVincenzo Maffione struct lut_entry; 6254f80b14cSVincenzo Maffione #ifdef __FreeBSD__ 6264f80b14cSVincenzo Maffione #define plut_entry lut_entry 6274f80b14cSVincenzo Maffione #endif 628ce3ee1e7SLuigi Rizzo 629847bf383SLuigi Rizzo struct netmap_lut { 630847bf383SLuigi Rizzo struct lut_entry *lut; 6314f80b14cSVincenzo Maffione struct plut_entry *plut; 632847bf383SLuigi Rizzo uint32_t objtotal; /* max buffer index */ 633847bf383SLuigi Rizzo uint32_t objsize; /* buffer size */ 634847bf383SLuigi Rizzo }; 635ce3ee1e7SLuigi Rizzo 6364bf50f18SLuigi Rizzo struct netmap_vp_adapter; // forward 6374bf50f18SLuigi Rizzo 638*2ff91c17SVincenzo Maffione /* Struct to be filled by nm_config callbacks. */ 639*2ff91c17SVincenzo Maffione struct nm_config_info { 640*2ff91c17SVincenzo Maffione unsigned num_tx_rings; 641*2ff91c17SVincenzo Maffione unsigned num_rx_rings; 642*2ff91c17SVincenzo Maffione unsigned num_tx_descs; 643*2ff91c17SVincenzo Maffione unsigned num_rx_descs; 644*2ff91c17SVincenzo Maffione unsigned rx_buf_maxsize; 645*2ff91c17SVincenzo Maffione }; 646*2ff91c17SVincenzo Maffione 64768b8534bSLuigi Rizzo /* 648f9790aebSLuigi Rizzo * The "struct netmap_adapter" extends the "struct adapter" 649f9790aebSLuigi Rizzo * (or equivalent) device descriptor. 650f9790aebSLuigi Rizzo * It contains all base fields needed to support netmap operation. 651f9790aebSLuigi Rizzo * There are in fact different types of netmap adapters 652f9790aebSLuigi Rizzo * (native, generic, VALE switch...) so a netmap_adapter is 653f9790aebSLuigi Rizzo * just the first field in the derived type. 65468b8534bSLuigi Rizzo */ 65568b8534bSLuigi Rizzo struct netmap_adapter { 6568241616dSLuigi Rizzo /* 6578241616dSLuigi Rizzo * On linux we do not have a good way to tell if an interface 658f9790aebSLuigi Rizzo * is netmap-capable. So we always use the following trick: 6598241616dSLuigi Rizzo * NA(ifp) points here, and the first entry (which hopefully 6608241616dSLuigi Rizzo * always exists and is at least 32 bits) contains a magic 6618241616dSLuigi Rizzo * value which we can use to detect that the interface is good. 6628241616dSLuigi Rizzo */ 6638241616dSLuigi Rizzo uint32_t magic; 664f9790aebSLuigi Rizzo uint32_t na_flags; /* enabled, and other flags */ 6658241616dSLuigi Rizzo #define NAF_SKIP_INTR 1 /* use the regular interrupt handler. 6668241616dSLuigi Rizzo * useful during initialization 6678241616dSLuigi Rizzo */ 668f18be576SLuigi Rizzo #define NAF_SW_ONLY 2 /* forward packets only to sw adapter */ 669ce3ee1e7SLuigi Rizzo #define NAF_BDG_MAYSLEEP 4 /* the bridge is allowed to sleep when 670ce3ee1e7SLuigi Rizzo * forwarding packets coming from this 671ce3ee1e7SLuigi Rizzo * interface 672ce3ee1e7SLuigi Rizzo */ 673847bf383SLuigi Rizzo #define NAF_MEM_OWNER 8 /* the adapter uses its own memory area 674847bf383SLuigi Rizzo * that cannot be changed 675ce3ee1e7SLuigi Rizzo */ 676847bf383SLuigi Rizzo #define NAF_NATIVE 16 /* the adapter is native. 67785fe4e7cSLuigi Rizzo * Virtual ports (non persistent vale ports, 67885fe4e7cSLuigi Rizzo * pipes, monitors...) should never use 67985fe4e7cSLuigi Rizzo * this flag. 680f9790aebSLuigi Rizzo */ 681f9790aebSLuigi Rizzo #define NAF_NETMAP_ON 32 /* netmap is active (either native or 6824bf50f18SLuigi Rizzo * emulated). Where possible (e.g. FreeBSD) 683f9790aebSLuigi Rizzo * IFCAP_NETMAP also mirrors this flag. 684f9790aebSLuigi Rizzo */ 685f0ea3689SLuigi Rizzo #define NAF_HOST_RINGS 64 /* the adapter supports the host rings */ 6864bf50f18SLuigi Rizzo #define NAF_FORCE_NATIVE 128 /* the adapter is always NATIVE */ 68737e3a6d3SLuigi Rizzo #define NAF_PTNETMAP_HOST 256 /* the adapter supports ptnetmap in the host */ 6884f80b14cSVincenzo Maffione #define NAF_MOREFRAG 512 /* the adapter supports NS_MOREFRAG */ 68937e3a6d3SLuigi Rizzo #define NAF_ZOMBIE (1U<<30) /* the nic driver has been unloaded */ 6904bf50f18SLuigi Rizzo #define NAF_BUSY (1U<<31) /* the adapter is used internally and 6914bf50f18SLuigi Rizzo * cannot be registered from userspace 6924bf50f18SLuigi Rizzo */ 693f9790aebSLuigi Rizzo int active_fds; /* number of user-space descriptors using this 69468b8534bSLuigi Rizzo interface, which is equal to the number of 69568b8534bSLuigi Rizzo struct netmap_if objs in the mapped region. */ 69668b8534bSLuigi Rizzo 69724e57ec9SEd Maste u_int num_rx_rings; /* number of adapter receive rings */ 69824e57ec9SEd Maste u_int num_tx_rings; /* number of adapter transmit rings */ 69968b8534bSLuigi Rizzo 70068b8534bSLuigi Rizzo u_int num_tx_desc; /* number of descriptor in each queue */ 70168b8534bSLuigi Rizzo u_int num_rx_desc; 70268b8534bSLuigi Rizzo 70368b8534bSLuigi Rizzo /* tx_rings and rx_rings are private but allocated 70468b8534bSLuigi Rizzo * as a contiguous chunk of memory. Each array has 70568b8534bSLuigi Rizzo * N+1 entries, for the adapter queues and for the host queue. 70668b8534bSLuigi Rizzo */ 707*2ff91c17SVincenzo Maffione struct netmap_kring **tx_rings; /* array of TX rings. */ 708*2ff91c17SVincenzo Maffione struct netmap_kring **rx_rings; /* array of RX rings. */ 70917885a7bSLuigi Rizzo 710f9790aebSLuigi Rizzo void *tailroom; /* space below the rings array */ 711f9790aebSLuigi Rizzo /* (used for leases) */ 712f9790aebSLuigi Rizzo 71368b8534bSLuigi Rizzo 714847bf383SLuigi Rizzo NM_SELINFO_T si[NR_TXRX]; /* global wait queues */ 71564ae02c3SLuigi Rizzo 716f0ea3689SLuigi Rizzo /* count users of the global wait queues */ 717847bf383SLuigi Rizzo int si_users[NR_TXRX]; 718f0ea3689SLuigi Rizzo 7194bf50f18SLuigi Rizzo void *pdev; /* used to store pci device */ 7204bf50f18SLuigi Rizzo 72168b8534bSLuigi Rizzo /* copy of if_qflush and if_transmit pointers, to intercept 72268b8534bSLuigi Rizzo * packets from the network stack when netmap is active. 72368b8534bSLuigi Rizzo */ 72468b8534bSLuigi Rizzo int (*if_transmit)(struct ifnet *, struct mbuf *); 72568b8534bSLuigi Rizzo 72617885a7bSLuigi Rizzo /* copy of if_input for netmap_send_up() */ 72717885a7bSLuigi Rizzo void (*if_input)(struct ifnet *, struct mbuf *); 72817885a7bSLuigi Rizzo 7294f80b14cSVincenzo Maffione /* Back reference to the parent ifnet struct. Used for 7304f80b14cSVincenzo Maffione * hardware ports (emulated netmap included). */ 73168b8534bSLuigi Rizzo struct ifnet *ifp; /* adapter is ifp->if_softc */ 73268b8534bSLuigi Rizzo 73317885a7bSLuigi Rizzo /*---- callbacks for this netmap adapter -----*/ 73417885a7bSLuigi Rizzo /* 73517885a7bSLuigi Rizzo * nm_dtor() is the cleanup routine called when destroying 73617885a7bSLuigi Rizzo * the adapter. 73789cc2556SLuigi Rizzo * Called with NMG_LOCK held. 73817885a7bSLuigi Rizzo * 73917885a7bSLuigi Rizzo * nm_register() is called on NIOCREGIF and close() to enter 74017885a7bSLuigi Rizzo * or exit netmap mode on the NIC 7414bf50f18SLuigi Rizzo * Called with NNG_LOCK held. 74217885a7bSLuigi Rizzo * 74317885a7bSLuigi Rizzo * nm_txsync() pushes packets to the underlying hw/switch 74417885a7bSLuigi Rizzo * 74517885a7bSLuigi Rizzo * nm_rxsync() collects packets from the underlying hw/switch 74617885a7bSLuigi Rizzo * 74717885a7bSLuigi Rizzo * nm_config() returns configuration information from the OS 74889cc2556SLuigi Rizzo * Called with NMG_LOCK held. 74917885a7bSLuigi Rizzo * 7504bf50f18SLuigi Rizzo * nm_krings_create() create and init the tx_rings and 7514bf50f18SLuigi Rizzo * rx_rings arrays of kring structures. In particular, 7524bf50f18SLuigi Rizzo * set the nm_sync callbacks for each ring. 7534bf50f18SLuigi Rizzo * There is no need to also allocate the corresponding 7544bf50f18SLuigi Rizzo * netmap_rings, since netmap_mem_rings_create() will always 7554bf50f18SLuigi Rizzo * be called to provide the missing ones. 7564bf50f18SLuigi Rizzo * Called with NNG_LOCK held. 75717885a7bSLuigi Rizzo * 7584bf50f18SLuigi Rizzo * nm_krings_delete() cleanup and delete the tx_rings and rx_rings 7594bf50f18SLuigi Rizzo * arrays 7604bf50f18SLuigi Rizzo * Called with NMG_LOCK held. 76117885a7bSLuigi Rizzo * 76289cc2556SLuigi Rizzo * nm_notify() is used to act after data have become available 76389cc2556SLuigi Rizzo * (or the stopped state of the ring has changed) 76417885a7bSLuigi Rizzo * For hw devices this is typically a selwakeup(), 76517885a7bSLuigi Rizzo * but for NIC/host ports attached to a switch (or vice-versa) 76617885a7bSLuigi Rizzo * we also need to invoke the 'txsync' code downstream. 76737e3a6d3SLuigi Rizzo * This callback pointer is actually used only to initialize 76837e3a6d3SLuigi Rizzo * kring->nm_notify. 76937e3a6d3SLuigi Rizzo * Return values are the same as for netmap_rx_irq(). 77017885a7bSLuigi Rizzo */ 771f9790aebSLuigi Rizzo void (*nm_dtor)(struct netmap_adapter *); 7721a26580eSLuigi Rizzo 773f9790aebSLuigi Rizzo int (*nm_register)(struct netmap_adapter *, int onoff); 77437e3a6d3SLuigi Rizzo void (*nm_intr)(struct netmap_adapter *, int onoff); 775ce3ee1e7SLuigi Rizzo 7764bf50f18SLuigi Rizzo int (*nm_txsync)(struct netmap_kring *kring, int flags); 7774bf50f18SLuigi Rizzo int (*nm_rxsync)(struct netmap_kring *kring, int flags); 778847bf383SLuigi Rizzo int (*nm_notify)(struct netmap_kring *kring, int flags); 779ce3ee1e7SLuigi Rizzo #define NAF_FORCE_READ 1 780ce3ee1e7SLuigi Rizzo #define NAF_FORCE_RECLAIM 2 781c3e9b4dbSLuiz Otavio O Souza #define NAF_CAN_FORWARD_DOWN 4 782ae10d1afSLuigi Rizzo /* return configuration information */ 783*2ff91c17SVincenzo Maffione int (*nm_config)(struct netmap_adapter *, struct nm_config_info *info); 784f9790aebSLuigi Rizzo int (*nm_krings_create)(struct netmap_adapter *); 785f9790aebSLuigi Rizzo void (*nm_krings_delete)(struct netmap_adapter *); 7864bf50f18SLuigi Rizzo #ifdef WITH_VALE 7874bf50f18SLuigi Rizzo /* 7884bf50f18SLuigi Rizzo * nm_bdg_attach() initializes the na_vp field to point 7894bf50f18SLuigi Rizzo * to an adapter that can be attached to a VALE switch. If the 7904bf50f18SLuigi Rizzo * current adapter is already a VALE port, na_vp is simply a cast; 7914bf50f18SLuigi Rizzo * otherwise, na_vp points to a netmap_bwrap_adapter. 7924bf50f18SLuigi Rizzo * If applicable, this callback also initializes na_hostvp, 7934bf50f18SLuigi Rizzo * that can be used to connect the adapter host rings to the 7944bf50f18SLuigi Rizzo * switch. 7954bf50f18SLuigi Rizzo * Called with NMG_LOCK held. 7964bf50f18SLuigi Rizzo * 7974bf50f18SLuigi Rizzo * nm_bdg_ctl() is called on the actual attach/detach to/from 7984bf50f18SLuigi Rizzo * to/from the switch, to perform adapter-specific 7994bf50f18SLuigi Rizzo * initializations 8004bf50f18SLuigi Rizzo * Called with NMG_LOCK held. 8014bf50f18SLuigi Rizzo */ 8024bf50f18SLuigi Rizzo int (*nm_bdg_attach)(const char *bdg_name, struct netmap_adapter *); 803*2ff91c17SVincenzo Maffione int (*nm_bdg_ctl)(struct nmreq_header *, struct netmap_adapter *); 8044bf50f18SLuigi Rizzo 8054bf50f18SLuigi Rizzo /* adapter used to attach this adapter to a VALE switch (if any) */ 8064bf50f18SLuigi Rizzo struct netmap_vp_adapter *na_vp; 8074bf50f18SLuigi Rizzo /* adapter used to attach the host rings of this adapter 8084bf50f18SLuigi Rizzo * to a VALE switch (if any) */ 8094bf50f18SLuigi Rizzo struct netmap_vp_adapter *na_hostvp; 8104bf50f18SLuigi Rizzo #endif 811f9790aebSLuigi Rizzo 812f9790aebSLuigi Rizzo /* standard refcount to control the lifetime of the adapter 813f9790aebSLuigi Rizzo * (it should be equal to the lifetime of the corresponding ifp) 814f9790aebSLuigi Rizzo */ 815f9790aebSLuigi Rizzo int na_refcount; 816f9790aebSLuigi Rizzo 817f9790aebSLuigi Rizzo /* memory allocator (opaque) 818f9790aebSLuigi Rizzo * We also cache a pointer to the lut_entry for translating 81937e3a6d3SLuigi Rizzo * buffer addresses, the total number of buffers and the buffer size. 820f9790aebSLuigi Rizzo */ 821f9790aebSLuigi Rizzo struct netmap_mem_d *nm_mem; 8224f80b14cSVincenzo Maffione struct netmap_mem_d *nm_mem_prev; 823847bf383SLuigi Rizzo struct netmap_lut na_lut; 824f9790aebSLuigi Rizzo 8254bf50f18SLuigi Rizzo /* additional information attached to this adapter 8264bf50f18SLuigi Rizzo * by other netmap subsystems. Currently used by 82737e3a6d3SLuigi Rizzo * bwrap, LINUX/v1000 and ptnetmap 828f9790aebSLuigi Rizzo */ 829f9790aebSLuigi Rizzo void *na_private; 830f0ea3689SLuigi Rizzo 8314bf50f18SLuigi Rizzo /* array of pipes that have this adapter as a parent */ 832f0ea3689SLuigi Rizzo struct netmap_pipe_adapter **na_pipes; 8334bf50f18SLuigi Rizzo int na_next_pipe; /* next free slot in the array */ 8344bf50f18SLuigi Rizzo int na_max_pipes; /* size of the array */ 8354bf50f18SLuigi Rizzo 83637e3a6d3SLuigi Rizzo /* Offset of ethernet header for each packet. */ 83737e3a6d3SLuigi Rizzo u_int virt_hdr_len; 83837e3a6d3SLuigi Rizzo 839*2ff91c17SVincenzo Maffione /* Max number of bytes that the NIC can store in the buffer 840*2ff91c17SVincenzo Maffione * referenced by each RX descriptor. This translates to the maximum 841*2ff91c17SVincenzo Maffione * bytes that a single netmap slot can reference. Larger packets 842*2ff91c17SVincenzo Maffione * require NS_MOREFRAG support. */ 843*2ff91c17SVincenzo Maffione unsigned rx_buf_maxsize; 844*2ff91c17SVincenzo Maffione 845*2ff91c17SVincenzo Maffione char name[NETMAP_REQ_IFNAMSIZ]; /* used at least by pipes */ 846f9790aebSLuigi Rizzo }; 847f9790aebSLuigi Rizzo 848847bf383SLuigi Rizzo static __inline u_int 849847bf383SLuigi Rizzo nma_get_ndesc(struct netmap_adapter *na, enum txrx t) 850847bf383SLuigi Rizzo { 851847bf383SLuigi Rizzo return (t == NR_TX ? na->num_tx_desc : na->num_rx_desc); 852847bf383SLuigi Rizzo } 853847bf383SLuigi Rizzo 854847bf383SLuigi Rizzo static __inline void 855847bf383SLuigi Rizzo nma_set_ndesc(struct netmap_adapter *na, enum txrx t, u_int v) 856847bf383SLuigi Rizzo { 857847bf383SLuigi Rizzo if (t == NR_TX) 858847bf383SLuigi Rizzo na->num_tx_desc = v; 859847bf383SLuigi Rizzo else 860847bf383SLuigi Rizzo na->num_rx_desc = v; 861847bf383SLuigi Rizzo } 862847bf383SLuigi Rizzo 863847bf383SLuigi Rizzo static __inline u_int 864847bf383SLuigi Rizzo nma_get_nrings(struct netmap_adapter *na, enum txrx t) 865847bf383SLuigi Rizzo { 866847bf383SLuigi Rizzo return (t == NR_TX ? na->num_tx_rings : na->num_rx_rings); 867847bf383SLuigi Rizzo } 868847bf383SLuigi Rizzo 869847bf383SLuigi Rizzo static __inline void 870847bf383SLuigi Rizzo nma_set_nrings(struct netmap_adapter *na, enum txrx t, u_int v) 871847bf383SLuigi Rizzo { 872847bf383SLuigi Rizzo if (t == NR_TX) 873847bf383SLuigi Rizzo na->num_tx_rings = v; 874847bf383SLuigi Rizzo else 875847bf383SLuigi Rizzo na->num_rx_rings = v; 876847bf383SLuigi Rizzo } 877847bf383SLuigi Rizzo 878*2ff91c17SVincenzo Maffione static __inline struct netmap_kring** 879847bf383SLuigi Rizzo NMR(struct netmap_adapter *na, enum txrx t) 880847bf383SLuigi Rizzo { 881847bf383SLuigi Rizzo return (t == NR_TX ? na->tx_rings : na->rx_rings); 882847bf383SLuigi Rizzo } 88317885a7bSLuigi Rizzo 8844f80b14cSVincenzo Maffione int nma_intr_enable(struct netmap_adapter *na, int onoff); 8854f80b14cSVincenzo Maffione 886f9790aebSLuigi Rizzo /* 887f9790aebSLuigi Rizzo * If the NIC is owned by the kernel 888f9790aebSLuigi Rizzo * (i.e., bridge), neither another bridge nor user can use it; 889f9790aebSLuigi Rizzo * if the NIC is owned by a user, only users can share it. 890f9790aebSLuigi Rizzo * Evaluation must be done under NMG_LOCK(). 891f9790aebSLuigi Rizzo */ 8924bf50f18SLuigi Rizzo #define NETMAP_OWNED_BY_KERN(na) ((na)->na_flags & NAF_BUSY) 893f9790aebSLuigi Rizzo #define NETMAP_OWNED_BY_ANY(na) \ 8944bf50f18SLuigi Rizzo (NETMAP_OWNED_BY_KERN(na) || ((na)->active_fds > 0)) 895f9790aebSLuigi Rizzo 896f9790aebSLuigi Rizzo /* 897f9790aebSLuigi Rizzo * derived netmap adapters for various types of ports 898f9790aebSLuigi Rizzo */ 899f9790aebSLuigi Rizzo struct netmap_vp_adapter { /* VALE software port */ 900f9790aebSLuigi Rizzo struct netmap_adapter up; 901f196ce38SLuigi Rizzo 902849bec0eSLuigi Rizzo /* 903849bec0eSLuigi Rizzo * Bridge support: 904849bec0eSLuigi Rizzo * 905849bec0eSLuigi Rizzo * bdg_port is the port number used in the bridge; 906f18be576SLuigi Rizzo * na_bdg points to the bridge this NA is attached to. 907849bec0eSLuigi Rizzo */ 908f196ce38SLuigi Rizzo int bdg_port; 909f18be576SLuigi Rizzo struct nm_bridge *na_bdg; 910f9790aebSLuigi Rizzo int retry; 911c3e9b4dbSLuiz Otavio O Souza int autodelete; /* remove the ifp on last reference */ 912f9790aebSLuigi Rizzo 913f0ea3689SLuigi Rizzo /* Maximum Frame Size, used in bdg_mismatch_datapath() */ 914f0ea3689SLuigi Rizzo u_int mfs; 915847bf383SLuigi Rizzo /* Last source MAC on this port */ 916847bf383SLuigi Rizzo uint64_t last_smac; 917f9790aebSLuigi Rizzo }; 918f9790aebSLuigi Rizzo 91917885a7bSLuigi Rizzo 920f9790aebSLuigi Rizzo struct netmap_hw_adapter { /* physical device */ 921f9790aebSLuigi Rizzo struct netmap_adapter up; 922f9790aebSLuigi Rizzo 9234f80b14cSVincenzo Maffione #ifdef linux 9244f80b14cSVincenzo Maffione struct net_device_ops nm_ndo; 9254f80b14cSVincenzo Maffione struct ethtool_ops nm_eto; 9264f80b14cSVincenzo Maffione #endif 9274bf50f18SLuigi Rizzo const struct ethtool_ops* save_ethtool; 9284bf50f18SLuigi Rizzo 9294bf50f18SLuigi Rizzo int (*nm_hw_register)(struct netmap_adapter *, int onoff); 930f9790aebSLuigi Rizzo }; 931f9790aebSLuigi Rizzo 932039dd540SLuigi Rizzo #ifdef WITH_GENERIC 933f0ea3689SLuigi Rizzo /* Mitigation support. */ 934f0ea3689SLuigi Rizzo struct nm_generic_mit { 935f0ea3689SLuigi Rizzo struct hrtimer mit_timer; 936f0ea3689SLuigi Rizzo int mit_pending; 9374bf50f18SLuigi Rizzo int mit_ring_idx; /* index of the ring being mitigated */ 938f0ea3689SLuigi Rizzo struct netmap_adapter *mit_na; /* backpointer */ 939f0ea3689SLuigi Rizzo }; 94017885a7bSLuigi Rizzo 94117885a7bSLuigi Rizzo struct netmap_generic_adapter { /* emulated device */ 942f9790aebSLuigi Rizzo struct netmap_hw_adapter up; 943f9790aebSLuigi Rizzo 944f9790aebSLuigi Rizzo /* Pointer to a previously used netmap adapter. */ 945f9790aebSLuigi Rizzo struct netmap_adapter *prev; 946f9790aebSLuigi Rizzo 9474f80b14cSVincenzo Maffione /* Emulated netmap adapters support: 9484f80b14cSVincenzo Maffione * - save_if_input saves the if_input hook (FreeBSD); 9494f80b14cSVincenzo Maffione * - mit implements rx interrupt mitigation; 950f9790aebSLuigi Rizzo */ 951f9790aebSLuigi Rizzo void (*save_if_input)(struct ifnet *, struct mbuf *); 952f9790aebSLuigi Rizzo 953f0ea3689SLuigi Rizzo struct nm_generic_mit *mit; 95417885a7bSLuigi Rizzo #ifdef linux 95517885a7bSLuigi Rizzo netdev_tx_t (*save_start_xmit)(struct mbuf *, struct ifnet *); 95617885a7bSLuigi Rizzo #endif 95737e3a6d3SLuigi Rizzo /* Is the adapter able to use multiple RX slots to scatter 95837e3a6d3SLuigi Rizzo * each packet pushed up by the driver? */ 95937e3a6d3SLuigi Rizzo int rxsg; 96037e3a6d3SLuigi Rizzo 96137e3a6d3SLuigi Rizzo /* Is the transmission path controlled by a netmap-aware 96237e3a6d3SLuigi Rizzo * device queue (i.e. qdisc on linux)? */ 96337e3a6d3SLuigi Rizzo int txqdisc; 964f9790aebSLuigi Rizzo }; 965039dd540SLuigi Rizzo #endif /* WITH_GENERIC */ 966f9790aebSLuigi Rizzo 967f0ea3689SLuigi Rizzo static __inline int 968847bf383SLuigi Rizzo netmap_real_rings(struct netmap_adapter *na, enum txrx t) 969f0ea3689SLuigi Rizzo { 970847bf383SLuigi Rizzo return nma_get_nrings(na, t) + !!(na->na_flags & NAF_HOST_RINGS); 971f0ea3689SLuigi Rizzo } 972f0ea3689SLuigi Rizzo 973f9790aebSLuigi Rizzo #ifdef WITH_VALE 97437e3a6d3SLuigi Rizzo struct nm_bdg_polling_state; 97517885a7bSLuigi Rizzo /* 97617885a7bSLuigi Rizzo * Bridge wrapper for non VALE ports attached to a VALE switch. 977f9790aebSLuigi Rizzo * 97817885a7bSLuigi Rizzo * The real device must already have its own netmap adapter (hwna). 97917885a7bSLuigi Rizzo * The bridge wrapper and the hwna adapter share the same set of 98017885a7bSLuigi Rizzo * netmap rings and buffers, but they have two separate sets of 98117885a7bSLuigi Rizzo * krings descriptors, with tx/rx meanings swapped: 982f9790aebSLuigi Rizzo * 983f9790aebSLuigi Rizzo * netmap 984f9790aebSLuigi Rizzo * bwrap krings rings krings hwna 985f9790aebSLuigi Rizzo * +------+ +------+ +-----+ +------+ +------+ 986f9790aebSLuigi Rizzo * |tx_rings->| |\ /| |----| |<-tx_rings| 987f9790aebSLuigi Rizzo * | | +------+ \ / +-----+ +------+ | | 988f9790aebSLuigi Rizzo * | | X | | 989f9790aebSLuigi Rizzo * | | / \ | | 990f9790aebSLuigi Rizzo * | | +------+/ \+-----+ +------+ | | 991f9790aebSLuigi Rizzo * |rx_rings->| | | |----| |<-rx_rings| 992f9790aebSLuigi Rizzo * | | +------+ +-----+ +------+ | | 993f9790aebSLuigi Rizzo * +------+ +------+ 994f9790aebSLuigi Rizzo * 99517885a7bSLuigi Rizzo * - packets coming from the bridge go to the brwap rx rings, 99617885a7bSLuigi Rizzo * which are also the hwna tx rings. The bwrap notify callback 99717885a7bSLuigi Rizzo * will then complete the hwna tx (see netmap_bwrap_notify). 998f9790aebSLuigi Rizzo * 99917885a7bSLuigi Rizzo * - packets coming from the outside go to the hwna rx rings, 100017885a7bSLuigi Rizzo * which are also the bwrap tx rings. The (overwritten) hwna 100117885a7bSLuigi Rizzo * notify method will then complete the bridge tx 100217885a7bSLuigi Rizzo * (see netmap_bwrap_intr_notify). 1003f9790aebSLuigi Rizzo * 100417885a7bSLuigi Rizzo * The bridge wrapper may optionally connect the hwna 'host' rings 100517885a7bSLuigi Rizzo * to the bridge. This is done by using a second port in the 100617885a7bSLuigi Rizzo * bridge and connecting it to the 'host' netmap_vp_adapter 100717885a7bSLuigi Rizzo * contained in the netmap_bwrap_adapter. The brwap host adapter 100817885a7bSLuigi Rizzo * cross-links the hwna host rings in the same way as shown above. 100917885a7bSLuigi Rizzo * 101017885a7bSLuigi Rizzo * - packets coming from the bridge and directed to the host stack 101117885a7bSLuigi Rizzo * are handled by the bwrap host notify callback 101217885a7bSLuigi Rizzo * (see netmap_bwrap_host_notify) 101317885a7bSLuigi Rizzo * 101417885a7bSLuigi Rizzo * - packets coming from the host stack are still handled by the 101517885a7bSLuigi Rizzo * overwritten hwna notify callback (netmap_bwrap_intr_notify), 101617885a7bSLuigi Rizzo * but are diverted to the host adapter depending on the ring number. 1017f9790aebSLuigi Rizzo * 1018f9790aebSLuigi Rizzo */ 1019f9790aebSLuigi Rizzo struct netmap_bwrap_adapter { 1020f9790aebSLuigi Rizzo struct netmap_vp_adapter up; 1021f9790aebSLuigi Rizzo struct netmap_vp_adapter host; /* for host rings */ 1022f9790aebSLuigi Rizzo struct netmap_adapter *hwna; /* the underlying device */ 1023f9790aebSLuigi Rizzo 102417885a7bSLuigi Rizzo /* 102517885a7bSLuigi Rizzo * When we attach a physical interface to the bridge, we 1026f18be576SLuigi Rizzo * allow the controlling process to terminate, so we need 10274bf50f18SLuigi Rizzo * a place to store the n_detmap_priv_d data structure. 102817885a7bSLuigi Rizzo * This is only done when physical interfaces 102917885a7bSLuigi Rizzo * are attached to a bridge. 1030f18be576SLuigi Rizzo */ 1031f18be576SLuigi Rizzo struct netmap_priv_d *na_kpriv; 103237e3a6d3SLuigi Rizzo struct nm_bdg_polling_state *na_polling_state; 1033*2ff91c17SVincenzo Maffione /* we overwrite the hwna->na_vp pointer, so we save 1034*2ff91c17SVincenzo Maffione * here its original value, to be restored at detach 1035*2ff91c17SVincenzo Maffione */ 1036*2ff91c17SVincenzo Maffione struct netmap_vp_adapter *saved_na_vp; 103768b8534bSLuigi Rizzo }; 1038*2ff91c17SVincenzo Maffione int nm_bdg_ctl_attach(struct nmreq_header *hdr, void *auth_token); 1039*2ff91c17SVincenzo Maffione int nm_bdg_ctl_detach(struct nmreq_header *hdr, void *auth_token); 1040*2ff91c17SVincenzo Maffione int nm_bdg_polling(struct nmreq_header *hdr); 10414bf50f18SLuigi Rizzo int netmap_bwrap_attach(const char *name, struct netmap_adapter *); 1042*2ff91c17SVincenzo Maffione int netmap_vi_create(struct nmreq_header *hdr, int); 1043*2ff91c17SVincenzo Maffione int nm_vi_create(struct nmreq_header *); 1044*2ff91c17SVincenzo Maffione int nm_vi_destroy(const char *name); 1045*2ff91c17SVincenzo Maffione int netmap_bdg_list(struct nmreq_header *hdr); 104668b8534bSLuigi Rizzo 1047c3e9b4dbSLuiz Otavio O Souza #else /* !WITH_VALE */ 1048*2ff91c17SVincenzo Maffione #define netmap_vi_create(hdr, a) (EOPNOTSUPP) 104917885a7bSLuigi Rizzo #endif /* WITH_VALE */ 1050ce3ee1e7SLuigi Rizzo 1051f0ea3689SLuigi Rizzo #ifdef WITH_PIPES 1052f0ea3689SLuigi Rizzo 1053f0ea3689SLuigi Rizzo #define NM_MAXPIPES 64 /* max number of pipes per adapter */ 1054f0ea3689SLuigi Rizzo 1055f0ea3689SLuigi Rizzo struct netmap_pipe_adapter { 1056*2ff91c17SVincenzo Maffione /* pipe identifier is up.name */ 1057f0ea3689SLuigi Rizzo struct netmap_adapter up; 1058f0ea3689SLuigi Rizzo 1059*2ff91c17SVincenzo Maffione #define NM_PIPE_ROLE_MASTER 0x1 1060*2ff91c17SVincenzo Maffione #define NM_PIPE_ROLE_SLAVE 0x2 1061*2ff91c17SVincenzo Maffione int role; /* either NM_PIPE_ROLE_MASTER or NM_PIPE_ROLE_SLAVE */ 1062f0ea3689SLuigi Rizzo 1063f0ea3689SLuigi Rizzo struct netmap_adapter *parent; /* adapter that owns the memory */ 1064f0ea3689SLuigi Rizzo struct netmap_pipe_adapter *peer; /* the other end of the pipe */ 1065f0ea3689SLuigi Rizzo int peer_ref; /* 1 iff we are holding a ref to the peer */ 1066c3e9b4dbSLuiz Otavio O Souza struct ifnet *parent_ifp; /* maybe null */ 1067f0ea3689SLuigi Rizzo 1068f0ea3689SLuigi Rizzo u_int parent_slot; /* index in the parent pipe array */ 1069f0ea3689SLuigi Rizzo }; 1070f0ea3689SLuigi Rizzo 1071f0ea3689SLuigi Rizzo #endif /* WITH_PIPES */ 1072f0ea3689SLuigi Rizzo 107317885a7bSLuigi Rizzo 107417885a7bSLuigi Rizzo /* return slots reserved to rx clients; used in drivers */ 107517885a7bSLuigi Rizzo static inline uint32_t 107617885a7bSLuigi Rizzo nm_kr_rxspace(struct netmap_kring *k) 107717885a7bSLuigi Rizzo { 107817885a7bSLuigi Rizzo int space = k->nr_hwtail - k->nr_hwcur; 1079ce3ee1e7SLuigi Rizzo if (space < 0) 1080ce3ee1e7SLuigi Rizzo space += k->nkr_num_slots; 108117885a7bSLuigi Rizzo ND("preserving %d rx slots %d -> %d", space, k->nr_hwcur, k->nr_hwtail); 108217885a7bSLuigi Rizzo 1083ce3ee1e7SLuigi Rizzo return space; 1084ce3ee1e7SLuigi Rizzo } 1085ce3ee1e7SLuigi Rizzo 108637e3a6d3SLuigi Rizzo /* return slots reserved to tx clients */ 108737e3a6d3SLuigi Rizzo #define nm_kr_txspace(_k) nm_kr_rxspace(_k) 1088ce3ee1e7SLuigi Rizzo 108937e3a6d3SLuigi Rizzo 109037e3a6d3SLuigi Rizzo /* True if no space in the tx ring, only valid after txsync_prologue */ 109117885a7bSLuigi Rizzo static inline int 109217885a7bSLuigi Rizzo nm_kr_txempty(struct netmap_kring *kring) 1093ce3ee1e7SLuigi Rizzo { 109417885a7bSLuigi Rizzo return kring->rcur == kring->nr_hwtail; 1095f9790aebSLuigi Rizzo } 1096f9790aebSLuigi Rizzo 109737e3a6d3SLuigi Rizzo /* True if no more completed slots in the rx ring, only valid after 109837e3a6d3SLuigi Rizzo * rxsync_prologue */ 109937e3a6d3SLuigi Rizzo #define nm_kr_rxempty(_k) nm_kr_txempty(_k) 1100ce3ee1e7SLuigi Rizzo 1101ce3ee1e7SLuigi Rizzo /* 1102f9790aebSLuigi Rizzo * protect against multiple threads using the same ring. 110337e3a6d3SLuigi Rizzo * also check that the ring has not been stopped or locked 110468b8534bSLuigi Rizzo */ 110537e3a6d3SLuigi Rizzo #define NM_KR_BUSY 1 /* some other thread is syncing the ring */ 110637e3a6d3SLuigi Rizzo #define NM_KR_STOPPED 2 /* unbounded stop (ifconfig down or driver unload) */ 110737e3a6d3SLuigi Rizzo #define NM_KR_LOCKED 3 /* bounded, brief stop for mutual exclusion */ 110868b8534bSLuigi Rizzo 110917885a7bSLuigi Rizzo 111037e3a6d3SLuigi Rizzo /* release the previously acquired right to use the *sync() methods of the ring */ 1111f9790aebSLuigi Rizzo static __inline void nm_kr_put(struct netmap_kring *kr) 1112f9790aebSLuigi Rizzo { 1113f9790aebSLuigi Rizzo NM_ATOMIC_CLEAR(&kr->nr_busy); 1114f9790aebSLuigi Rizzo } 1115f9790aebSLuigi Rizzo 111617885a7bSLuigi Rizzo 111737e3a6d3SLuigi Rizzo /* true if the ifp that backed the adapter has disappeared (e.g., the 111837e3a6d3SLuigi Rizzo * driver has been unloaded) 111937e3a6d3SLuigi Rizzo */ 112037e3a6d3SLuigi Rizzo static inline int nm_iszombie(struct netmap_adapter *na); 112137e3a6d3SLuigi Rizzo 112237e3a6d3SLuigi Rizzo /* try to obtain exclusive right to issue the *sync() operations on the ring. 112337e3a6d3SLuigi Rizzo * The right is obtained and must be later relinquished via nm_kr_put() if and 112437e3a6d3SLuigi Rizzo * only if nm_kr_tryget() returns 0. 112537e3a6d3SLuigi Rizzo * If can_sleep is 1 there are only two other possible outcomes: 112637e3a6d3SLuigi Rizzo * - the function returns NM_KR_BUSY 112737e3a6d3SLuigi Rizzo * - the function returns NM_KR_STOPPED and sets the POLLERR bit in *perr 112837e3a6d3SLuigi Rizzo * (if non-null) 112937e3a6d3SLuigi Rizzo * In both cases the caller will typically skip the ring, possibly collecting 113037e3a6d3SLuigi Rizzo * errors along the way. 113137e3a6d3SLuigi Rizzo * If the calling context does not allow sleeping, the caller must pass 0 in can_sleep. 113237e3a6d3SLuigi Rizzo * In the latter case, the function may also return NM_KR_LOCKED and leave *perr 113337e3a6d3SLuigi Rizzo * untouched: ideally, the caller should try again at a later time. 113437e3a6d3SLuigi Rizzo */ 113537e3a6d3SLuigi Rizzo static __inline int nm_kr_tryget(struct netmap_kring *kr, int can_sleep, int *perr) 1136f9790aebSLuigi Rizzo { 113737e3a6d3SLuigi Rizzo int busy = 1, stopped; 1138f9790aebSLuigi Rizzo /* check a first time without taking the lock 1139f9790aebSLuigi Rizzo * to avoid starvation for nm_kr_get() 1140f9790aebSLuigi Rizzo */ 114137e3a6d3SLuigi Rizzo retry: 114237e3a6d3SLuigi Rizzo stopped = kr->nkr_stopped; 114337e3a6d3SLuigi Rizzo if (unlikely(stopped)) { 114437e3a6d3SLuigi Rizzo goto stop; 1145f9790aebSLuigi Rizzo } 114637e3a6d3SLuigi Rizzo busy = NM_ATOMIC_TEST_AND_SET(&kr->nr_busy); 114737e3a6d3SLuigi Rizzo /* we should not return NM_KR_BUSY if the ring was 114837e3a6d3SLuigi Rizzo * actually stopped, so check another time after 114937e3a6d3SLuigi Rizzo * the barrier provided by the atomic operation 115037e3a6d3SLuigi Rizzo */ 115137e3a6d3SLuigi Rizzo stopped = kr->nkr_stopped; 115237e3a6d3SLuigi Rizzo if (unlikely(stopped)) { 115337e3a6d3SLuigi Rizzo goto stop; 1154f9790aebSLuigi Rizzo } 115568b8534bSLuigi Rizzo 115637e3a6d3SLuigi Rizzo if (unlikely(nm_iszombie(kr->na))) { 115737e3a6d3SLuigi Rizzo stopped = NM_KR_STOPPED; 115837e3a6d3SLuigi Rizzo goto stop; 115937e3a6d3SLuigi Rizzo } 116037e3a6d3SLuigi Rizzo 116137e3a6d3SLuigi Rizzo return unlikely(busy) ? NM_KR_BUSY : 0; 116237e3a6d3SLuigi Rizzo 116337e3a6d3SLuigi Rizzo stop: 116437e3a6d3SLuigi Rizzo if (!busy) 116537e3a6d3SLuigi Rizzo nm_kr_put(kr); 116637e3a6d3SLuigi Rizzo if (stopped == NM_KR_STOPPED) { 116737e3a6d3SLuigi Rizzo /* if POLLERR is defined we want to use it to simplify netmap_poll(). 116837e3a6d3SLuigi Rizzo * Otherwise, any non-zero value will do. 116937e3a6d3SLuigi Rizzo */ 117037e3a6d3SLuigi Rizzo #ifdef POLLERR 117137e3a6d3SLuigi Rizzo #define NM_POLLERR POLLERR 117237e3a6d3SLuigi Rizzo #else 117337e3a6d3SLuigi Rizzo #define NM_POLLERR 1 117437e3a6d3SLuigi Rizzo #endif /* POLLERR */ 117537e3a6d3SLuigi Rizzo if (perr) 117637e3a6d3SLuigi Rizzo *perr |= NM_POLLERR; 117737e3a6d3SLuigi Rizzo #undef NM_POLLERR 117837e3a6d3SLuigi Rizzo } else if (can_sleep) { 117937e3a6d3SLuigi Rizzo tsleep(kr, 0, "NM_KR_TRYGET", 4); 118037e3a6d3SLuigi Rizzo goto retry; 118137e3a6d3SLuigi Rizzo } 118237e3a6d3SLuigi Rizzo return stopped; 118337e3a6d3SLuigi Rizzo } 118437e3a6d3SLuigi Rizzo 118537e3a6d3SLuigi Rizzo /* put the ring in the 'stopped' state and wait for the current user (if any) to 118637e3a6d3SLuigi Rizzo * notice. stopped must be either NM_KR_STOPPED or NM_KR_LOCKED 118737e3a6d3SLuigi Rizzo */ 118837e3a6d3SLuigi Rizzo static __inline void nm_kr_stop(struct netmap_kring *kr, int stopped) 1189847bf383SLuigi Rizzo { 119037e3a6d3SLuigi Rizzo kr->nkr_stopped = stopped; 1191847bf383SLuigi Rizzo while (NM_ATOMIC_TEST_AND_SET(&kr->nr_busy)) 1192847bf383SLuigi Rizzo tsleep(kr, 0, "NM_KR_GET", 4); 1193847bf383SLuigi Rizzo } 1194847bf383SLuigi Rizzo 119537e3a6d3SLuigi Rizzo /* restart a ring after a stop */ 119637e3a6d3SLuigi Rizzo static __inline void nm_kr_start(struct netmap_kring *kr) 119737e3a6d3SLuigi Rizzo { 119837e3a6d3SLuigi Rizzo kr->nkr_stopped = 0; 119937e3a6d3SLuigi Rizzo nm_kr_put(kr); 120037e3a6d3SLuigi Rizzo } 120137e3a6d3SLuigi Rizzo 1202847bf383SLuigi Rizzo 120368b8534bSLuigi Rizzo /* 120417885a7bSLuigi Rizzo * The following functions are used by individual drivers to 120568b8534bSLuigi Rizzo * support netmap operation. 120668b8534bSLuigi Rizzo * 120768b8534bSLuigi Rizzo * netmap_attach() initializes a struct netmap_adapter, allocating the 120868b8534bSLuigi Rizzo * struct netmap_ring's and the struct selinfo. 120968b8534bSLuigi Rizzo * 121068b8534bSLuigi Rizzo * netmap_detach() frees the memory allocated by netmap_attach(). 121168b8534bSLuigi Rizzo * 1212ce3ee1e7SLuigi Rizzo * netmap_transmit() replaces the if_transmit routine of the interface, 121368b8534bSLuigi Rizzo * and is used to intercept packets coming from the stack. 121468b8534bSLuigi Rizzo * 121568b8534bSLuigi Rizzo * netmap_load_map/netmap_reload_map are helper routines to set/reset 121668b8534bSLuigi Rizzo * the dmamap for a packet buffer 121768b8534bSLuigi Rizzo * 12184bf50f18SLuigi Rizzo * netmap_reset() is a helper routine to be called in the hw driver 12194bf50f18SLuigi Rizzo * when reinitializing a ring. It should not be called by 12204bf50f18SLuigi Rizzo * virtual ports (vale, pipes, monitor) 122168b8534bSLuigi Rizzo */ 1222f9790aebSLuigi Rizzo int netmap_attach(struct netmap_adapter *); 12234f80b14cSVincenzo Maffione int netmap_attach_ext(struct netmap_adapter *, size_t size, int override_reg); 122468b8534bSLuigi Rizzo void netmap_detach(struct ifnet *); 1225ce3ee1e7SLuigi Rizzo int netmap_transmit(struct ifnet *, struct mbuf *); 122668b8534bSLuigi Rizzo struct netmap_slot *netmap_reset(struct netmap_adapter *na, 1227ce3ee1e7SLuigi Rizzo enum txrx tx, u_int n, u_int new_cur); 122868b8534bSLuigi Rizzo int netmap_ring_reinit(struct netmap_kring *); 1229*2ff91c17SVincenzo Maffione int netmap_rings_config_get(struct netmap_adapter *, struct nm_config_info *); 123068b8534bSLuigi Rizzo 123137e3a6d3SLuigi Rizzo /* Return codes for netmap_*x_irq. */ 123237e3a6d3SLuigi Rizzo enum { 123337e3a6d3SLuigi Rizzo /* Driver should do normal interrupt processing, e.g. because 123437e3a6d3SLuigi Rizzo * the interface is not in netmap mode. */ 123537e3a6d3SLuigi Rizzo NM_IRQ_PASS = 0, 123637e3a6d3SLuigi Rizzo /* Port is in netmap mode, and the interrupt work has been 123737e3a6d3SLuigi Rizzo * completed. The driver does not have to notify netmap 123837e3a6d3SLuigi Rizzo * again before the next interrupt. */ 123937e3a6d3SLuigi Rizzo NM_IRQ_COMPLETED = -1, 124037e3a6d3SLuigi Rizzo /* Port is in netmap mode, but the interrupt work has not been 124137e3a6d3SLuigi Rizzo * completed. The driver has to make sure netmap will be 124237e3a6d3SLuigi Rizzo * notified again soon, even if no more interrupts come (e.g. 124337e3a6d3SLuigi Rizzo * on Linux the driver should not call napi_complete()). */ 124437e3a6d3SLuigi Rizzo NM_IRQ_RESCHED = -2, 124537e3a6d3SLuigi Rizzo }; 124637e3a6d3SLuigi Rizzo 124717885a7bSLuigi Rizzo /* default functions to handle rx/tx interrupts */ 124817885a7bSLuigi Rizzo int netmap_rx_irq(struct ifnet *, u_int, u_int *); 124917885a7bSLuigi Rizzo #define netmap_tx_irq(_n, _q) netmap_rx_irq(_n, _q, NULL) 125037e3a6d3SLuigi Rizzo int netmap_common_irq(struct netmap_adapter *, u_int, u_int *work_done); 125117885a7bSLuigi Rizzo 125217885a7bSLuigi Rizzo 12534bf50f18SLuigi Rizzo #ifdef WITH_VALE 12544bf50f18SLuigi Rizzo /* functions used by external modules to interface with VALE */ 12554bf50f18SLuigi Rizzo #define netmap_vp_to_ifp(_vp) ((_vp)->up.ifp) 12564bf50f18SLuigi Rizzo #define netmap_ifp_to_vp(_ifp) (NA(_ifp)->na_vp) 12574bf50f18SLuigi Rizzo #define netmap_ifp_to_host_vp(_ifp) (NA(_ifp)->na_hostvp) 12584bf50f18SLuigi Rizzo #define netmap_bdg_idx(_vp) ((_vp)->bdg_port) 12594bf50f18SLuigi Rizzo const char *netmap_bdg_name(struct netmap_vp_adapter *); 12604bf50f18SLuigi Rizzo #else /* !WITH_VALE */ 12614bf50f18SLuigi Rizzo #define netmap_vp_to_ifp(_vp) NULL 12624bf50f18SLuigi Rizzo #define netmap_ifp_to_vp(_ifp) NULL 12634bf50f18SLuigi Rizzo #define netmap_ifp_to_host_vp(_ifp) NULL 12644bf50f18SLuigi Rizzo #define netmap_bdg_idx(_vp) -1 12654bf50f18SLuigi Rizzo #define netmap_bdg_name(_vp) NULL 12664bf50f18SLuigi Rizzo #endif /* WITH_VALE */ 12674bf50f18SLuigi Rizzo 12684bf50f18SLuigi Rizzo static inline int 12694bf50f18SLuigi Rizzo nm_netmap_on(struct netmap_adapter *na) 12704bf50f18SLuigi Rizzo { 12714bf50f18SLuigi Rizzo return na && na->na_flags & NAF_NETMAP_ON; 12724bf50f18SLuigi Rizzo } 127317885a7bSLuigi Rizzo 1274847bf383SLuigi Rizzo static inline int 1275847bf383SLuigi Rizzo nm_native_on(struct netmap_adapter *na) 1276847bf383SLuigi Rizzo { 1277847bf383SLuigi Rizzo return nm_netmap_on(na) && (na->na_flags & NAF_NATIVE); 1278847bf383SLuigi Rizzo } 1279847bf383SLuigi Rizzo 128037e3a6d3SLuigi Rizzo static inline int 128137e3a6d3SLuigi Rizzo nm_iszombie(struct netmap_adapter *na) 128237e3a6d3SLuigi Rizzo { 128337e3a6d3SLuigi Rizzo return na == NULL || (na->na_flags & NAF_ZOMBIE); 128437e3a6d3SLuigi Rizzo } 128537e3a6d3SLuigi Rizzo 128637e3a6d3SLuigi Rizzo static inline void 128737e3a6d3SLuigi Rizzo nm_update_hostrings_mode(struct netmap_adapter *na) 128837e3a6d3SLuigi Rizzo { 128937e3a6d3SLuigi Rizzo /* Process nr_mode and nr_pending_mode for host rings. */ 1290*2ff91c17SVincenzo Maffione na->tx_rings[na->num_tx_rings]->nr_mode = 1291*2ff91c17SVincenzo Maffione na->tx_rings[na->num_tx_rings]->nr_pending_mode; 1292*2ff91c17SVincenzo Maffione na->rx_rings[na->num_rx_rings]->nr_mode = 1293*2ff91c17SVincenzo Maffione na->rx_rings[na->num_rx_rings]->nr_pending_mode; 129437e3a6d3SLuigi Rizzo } 129537e3a6d3SLuigi Rizzo 129617885a7bSLuigi Rizzo /* set/clear native flags and if_transmit/netdev_ops */ 1297f9790aebSLuigi Rizzo static inline void 1298f9790aebSLuigi Rizzo nm_set_native_flags(struct netmap_adapter *na) 1299f9790aebSLuigi Rizzo { 1300f9790aebSLuigi Rizzo struct ifnet *ifp = na->ifp; 1301ce3ee1e7SLuigi Rizzo 130237e3a6d3SLuigi Rizzo /* We do the setup for intercepting packets only if we are the 130337e3a6d3SLuigi Rizzo * first user of this adapapter. */ 130437e3a6d3SLuigi Rizzo if (na->active_fds > 0) { 130537e3a6d3SLuigi Rizzo return; 130637e3a6d3SLuigi Rizzo } 130737e3a6d3SLuigi Rizzo 1308847bf383SLuigi Rizzo na->na_flags |= NAF_NETMAP_ON; 1309f9790aebSLuigi Rizzo #ifdef IFCAP_NETMAP /* or FreeBSD ? */ 1310f9790aebSLuigi Rizzo ifp->if_capenable |= IFCAP_NETMAP; 1311f9790aebSLuigi Rizzo #endif 131237e3a6d3SLuigi Rizzo #if defined (__FreeBSD__) 1313f9790aebSLuigi Rizzo na->if_transmit = ifp->if_transmit; 1314f9790aebSLuigi Rizzo ifp->if_transmit = netmap_transmit; 131537e3a6d3SLuigi Rizzo #elif defined (_WIN32) 131637e3a6d3SLuigi Rizzo (void)ifp; /* prevent a warning */ 13174f80b14cSVincenzo Maffione #elif defined (linux) 1318f9790aebSLuigi Rizzo na->if_transmit = (void *)ifp->netdev_ops; 1319f9790aebSLuigi Rizzo ifp->netdev_ops = &((struct netmap_hw_adapter *)na)->nm_ndo; 13204bf50f18SLuigi Rizzo ((struct netmap_hw_adapter *)na)->save_ethtool = ifp->ethtool_ops; 13214bf50f18SLuigi Rizzo ifp->ethtool_ops = &((struct netmap_hw_adapter*)na)->nm_eto; 13224f80b14cSVincenzo Maffione #endif /* linux */ 132337e3a6d3SLuigi Rizzo nm_update_hostrings_mode(na); 1324f9790aebSLuigi Rizzo } 1325f9790aebSLuigi Rizzo 1326f9790aebSLuigi Rizzo static inline void 1327f9790aebSLuigi Rizzo nm_clear_native_flags(struct netmap_adapter *na) 1328f9790aebSLuigi Rizzo { 1329f9790aebSLuigi Rizzo struct ifnet *ifp = na->ifp; 1330f9790aebSLuigi Rizzo 133137e3a6d3SLuigi Rizzo /* We undo the setup for intercepting packets only if we are the 133237e3a6d3SLuigi Rizzo * last user of this adapapter. */ 133337e3a6d3SLuigi Rizzo if (na->active_fds > 0) { 133437e3a6d3SLuigi Rizzo return; 133537e3a6d3SLuigi Rizzo } 133637e3a6d3SLuigi Rizzo 133737e3a6d3SLuigi Rizzo nm_update_hostrings_mode(na); 133837e3a6d3SLuigi Rizzo 133937e3a6d3SLuigi Rizzo #if defined(__FreeBSD__) 1340f9790aebSLuigi Rizzo ifp->if_transmit = na->if_transmit; 134137e3a6d3SLuigi Rizzo #elif defined(_WIN32) 134237e3a6d3SLuigi Rizzo (void)ifp; /* prevent a warning */ 1343f9790aebSLuigi Rizzo #else 1344f9790aebSLuigi Rizzo ifp->netdev_ops = (void *)na->if_transmit; 13454bf50f18SLuigi Rizzo ifp->ethtool_ops = ((struct netmap_hw_adapter*)na)->save_ethtool; 1346f9790aebSLuigi Rizzo #endif 1347847bf383SLuigi Rizzo na->na_flags &= ~NAF_NETMAP_ON; 1348f9790aebSLuigi Rizzo #ifdef IFCAP_NETMAP /* or FreeBSD ? */ 1349f9790aebSLuigi Rizzo ifp->if_capenable &= ~IFCAP_NETMAP; 1350f9790aebSLuigi Rizzo #endif 1351f9790aebSLuigi Rizzo } 1352f9790aebSLuigi Rizzo 1353*2ff91c17SVincenzo Maffione #ifdef linux 1354*2ff91c17SVincenzo Maffione int netmap_linux_config(struct netmap_adapter *na, 1355*2ff91c17SVincenzo Maffione struct nm_config_info *info); 1356*2ff91c17SVincenzo Maffione #endif /* linux */ 1357*2ff91c17SVincenzo Maffione 135837e3a6d3SLuigi Rizzo /* 135937e3a6d3SLuigi Rizzo * nm_*sync_prologue() functions are used in ioctl/poll and ptnetmap 136037e3a6d3SLuigi Rizzo * kthreads. 136137e3a6d3SLuigi Rizzo * We need netmap_ring* parameter, because in ptnetmap it is decoupled 136237e3a6d3SLuigi Rizzo * from host kring. 136337e3a6d3SLuigi Rizzo * The user-space ring pointers (head/cur/tail) are shared through 136437e3a6d3SLuigi Rizzo * CSB between host and guest. 136537e3a6d3SLuigi Rizzo */ 136637e3a6d3SLuigi Rizzo 136737e3a6d3SLuigi Rizzo /* 136837e3a6d3SLuigi Rizzo * validates parameters in the ring/kring, returns a value for head 136937e3a6d3SLuigi Rizzo * If any error, returns ring_size to force a reinit. 137037e3a6d3SLuigi Rizzo */ 137137e3a6d3SLuigi Rizzo uint32_t nm_txsync_prologue(struct netmap_kring *, struct netmap_ring *); 137237e3a6d3SLuigi Rizzo 137337e3a6d3SLuigi Rizzo 137437e3a6d3SLuigi Rizzo /* 137537e3a6d3SLuigi Rizzo * validates parameters in the ring/kring, returns a value for head 137637e3a6d3SLuigi Rizzo * If any error, returns ring_size lim to force a reinit. 137737e3a6d3SLuigi Rizzo */ 137837e3a6d3SLuigi Rizzo uint32_t nm_rxsync_prologue(struct netmap_kring *, struct netmap_ring *); 137937e3a6d3SLuigi Rizzo 1380f9790aebSLuigi Rizzo 1381f9790aebSLuigi Rizzo /* check/fix address and len in tx rings */ 1382f9790aebSLuigi Rizzo #if 1 /* debug version */ 13834bf50f18SLuigi Rizzo #define NM_CHECK_ADDR_LEN(_na, _a, _l) do { \ 13844bf50f18SLuigi Rizzo if (_a == NETMAP_BUF_BASE(_na) || _l > NETMAP_BUF_SIZE(_na)) { \ 1385f9790aebSLuigi Rizzo RD(5, "bad addr/len ring %d slot %d idx %d len %d", \ 13864bf50f18SLuigi Rizzo kring->ring_id, nm_i, slot->buf_idx, len); \ 13874bf50f18SLuigi Rizzo if (_l > NETMAP_BUF_SIZE(_na)) \ 13884bf50f18SLuigi Rizzo _l = NETMAP_BUF_SIZE(_na); \ 1389f9790aebSLuigi Rizzo } } while (0) 1390f9790aebSLuigi Rizzo #else /* no debug version */ 13914bf50f18SLuigi Rizzo #define NM_CHECK_ADDR_LEN(_na, _a, _l) do { \ 13924bf50f18SLuigi Rizzo if (_l > NETMAP_BUF_SIZE(_na)) \ 13934bf50f18SLuigi Rizzo _l = NETMAP_BUF_SIZE(_na); \ 1394f9790aebSLuigi Rizzo } while (0) 1395f9790aebSLuigi Rizzo #endif 1396f9790aebSLuigi Rizzo 1397f9790aebSLuigi Rizzo 1398f9790aebSLuigi Rizzo /*---------------------------------------------------------------*/ 1399f9790aebSLuigi Rizzo /* 14004bf50f18SLuigi Rizzo * Support routines used by netmap subsystems 14014bf50f18SLuigi Rizzo * (native drivers, VALE, generic, pipes, monitors, ...) 14024bf50f18SLuigi Rizzo */ 14034bf50f18SLuigi Rizzo 14044bf50f18SLuigi Rizzo 14054bf50f18SLuigi Rizzo /* common routine for all functions that create a netmap adapter. It performs 14064bf50f18SLuigi Rizzo * two main tasks: 14074bf50f18SLuigi Rizzo * - if the na points to an ifp, mark the ifp as netmap capable 14084bf50f18SLuigi Rizzo * using na as its native adapter; 14094bf50f18SLuigi Rizzo * - provide defaults for the setup callbacks and the memory allocator 14104bf50f18SLuigi Rizzo */ 14114bf50f18SLuigi Rizzo int netmap_attach_common(struct netmap_adapter *); 14124bf50f18SLuigi Rizzo /* fill priv->np_[tr]xq{first,last} using the ringid and flags information 1413*2ff91c17SVincenzo Maffione * coming from a struct nmreq_register 14144bf50f18SLuigi Rizzo */ 1415*2ff91c17SVincenzo Maffione int netmap_interp_ringid(struct netmap_priv_d *priv, uint32_t nr_mode, 1416*2ff91c17SVincenzo Maffione uint16_t nr_ringid, uint64_t nr_flags); 14174bf50f18SLuigi Rizzo /* update the ring parameters (number and size of tx and rx rings). 14184bf50f18SLuigi Rizzo * It calls the nm_config callback, if available. 1419f9790aebSLuigi Rizzo */ 1420f9790aebSLuigi Rizzo int netmap_update_config(struct netmap_adapter *na); 14214bf50f18SLuigi Rizzo /* create and initialize the common fields of the krings array. 14224bf50f18SLuigi Rizzo * using the information that must be already available in the na. 14234bf50f18SLuigi Rizzo * tailroom can be used to request the allocation of additional 14244bf50f18SLuigi Rizzo * tailroom bytes after the krings array. This is used by 14254bf50f18SLuigi Rizzo * netmap_vp_adapter's (i.e., VALE ports) to make room for 14264bf50f18SLuigi Rizzo * leasing-related data structures 14274bf50f18SLuigi Rizzo */ 1428f0ea3689SLuigi Rizzo int netmap_krings_create(struct netmap_adapter *na, u_int tailroom); 14294bf50f18SLuigi Rizzo /* deletes the kring array of the adapter. The array must have 14304bf50f18SLuigi Rizzo * been created using netmap_krings_create 14314bf50f18SLuigi Rizzo */ 1432f9790aebSLuigi Rizzo void netmap_krings_delete(struct netmap_adapter *na); 143317885a7bSLuigi Rizzo 143437e3a6d3SLuigi Rizzo int netmap_hw_krings_create(struct netmap_adapter *na); 143537e3a6d3SLuigi Rizzo void netmap_hw_krings_delete(struct netmap_adapter *na); 143637e3a6d3SLuigi Rizzo 14374bf50f18SLuigi Rizzo /* set the stopped/enabled status of ring 14384bf50f18SLuigi Rizzo * When stopping, they also wait for all current activity on the ring to 14394bf50f18SLuigi Rizzo * terminate. The status change is then notified using the na nm_notify 14404bf50f18SLuigi Rizzo * callback. 14414bf50f18SLuigi Rizzo */ 1442847bf383SLuigi Rizzo void netmap_set_ring(struct netmap_adapter *, u_int ring_id, enum txrx, int stopped); 14434bf50f18SLuigi Rizzo /* set the stopped/enabled status of all rings of the adapter. */ 14444bf50f18SLuigi Rizzo void netmap_set_all_rings(struct netmap_adapter *, int stopped); 144537e3a6d3SLuigi Rizzo /* convenience wrappers for netmap_set_all_rings */ 14464bf50f18SLuigi Rizzo void netmap_disable_all_rings(struct ifnet *); 14474bf50f18SLuigi Rizzo void netmap_enable_all_rings(struct ifnet *); 14484bf50f18SLuigi Rizzo 14498fd44c93SLuigi Rizzo int netmap_do_regif(struct netmap_priv_d *priv, struct netmap_adapter *na, 1450*2ff91c17SVincenzo Maffione uint32_t nr_mode, uint16_t nr_ringid, uint64_t nr_flags); 145137e3a6d3SLuigi Rizzo void netmap_do_unregif(struct netmap_priv_d *priv); 1452f9790aebSLuigi Rizzo 1453f9790aebSLuigi Rizzo u_int nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg); 1454*2ff91c17SVincenzo Maffione int netmap_get_na(struct nmreq_header *hdr, struct netmap_adapter **na, 1455c3e9b4dbSLuiz Otavio O Souza struct ifnet **ifp, struct netmap_mem_d *nmd, int create); 145637e3a6d3SLuigi Rizzo void netmap_unget_na(struct netmap_adapter *na, struct ifnet *ifp); 1457c3e9b4dbSLuiz Otavio O Souza int netmap_get_hw_na(struct ifnet *ifp, 1458c3e9b4dbSLuiz Otavio O Souza struct netmap_mem_d *nmd, struct netmap_adapter **na); 1459f9790aebSLuigi Rizzo 146017885a7bSLuigi Rizzo 1461f9790aebSLuigi Rizzo #ifdef WITH_VALE 1462f18be576SLuigi Rizzo /* 146317885a7bSLuigi Rizzo * The following bridge-related functions are used by other 146417885a7bSLuigi Rizzo * kernel modules. 146517885a7bSLuigi Rizzo * 146617885a7bSLuigi Rizzo * VALE only supports unicast or broadcast. The lookup 1467f18be576SLuigi Rizzo * function can return 0 .. NM_BDG_MAXPORTS-1 for regular ports, 14684f80b14cSVincenzo Maffione * NM_BDG_MAXPORTS for broadcast, NM_BDG_MAXPORTS+1 to indicate 14694f80b14cSVincenzo Maffione * drop. 1470f18be576SLuigi Rizzo */ 1471*2ff91c17SVincenzo Maffione typedef uint32_t (*bdg_lookup_fn_t)(struct nm_bdg_fwd *ft, uint8_t *ring_nr, 1472*2ff91c17SVincenzo Maffione struct netmap_vp_adapter *, void *private_data); 14734bf50f18SLuigi Rizzo typedef int (*bdg_config_fn_t)(struct nm_ifreq *); 14744bf50f18SLuigi Rizzo typedef void (*bdg_dtor_fn_t)(const struct netmap_vp_adapter *); 1475*2ff91c17SVincenzo Maffione typedef void *(*bdg_update_private_data_fn_t)(void *private_data, void *callback_data, int *error); 14764bf50f18SLuigi Rizzo struct netmap_bdg_ops { 14774bf50f18SLuigi Rizzo bdg_lookup_fn_t lookup; 14784bf50f18SLuigi Rizzo bdg_config_fn_t config; 14794bf50f18SLuigi Rizzo bdg_dtor_fn_t dtor; 14804bf50f18SLuigi Rizzo }; 14814bf50f18SLuigi Rizzo 1482*2ff91c17SVincenzo Maffione uint32_t netmap_bdg_learning(struct nm_bdg_fwd *ft, uint8_t *dst_ring, 1483*2ff91c17SVincenzo Maffione struct netmap_vp_adapter *, void *private_data); 1484f9790aebSLuigi Rizzo 148537e3a6d3SLuigi Rizzo #define NM_BRIDGES 8 /* number of bridges */ 1486f9790aebSLuigi Rizzo #define NM_BDG_MAXPORTS 254 /* up to 254 */ 1487f18be576SLuigi Rizzo #define NM_BDG_BROADCAST NM_BDG_MAXPORTS 1488f18be576SLuigi Rizzo #define NM_BDG_NOPORT (NM_BDG_MAXPORTS+1) 1489f18be576SLuigi Rizzo 1490f9790aebSLuigi Rizzo /* these are redefined in case of no VALE support */ 1491*2ff91c17SVincenzo Maffione int netmap_get_bdg_na(struct nmreq_header *hdr, struct netmap_adapter **na, 1492c3e9b4dbSLuiz Otavio O Souza struct netmap_mem_d *nmd, int create); 1493847bf383SLuigi Rizzo struct nm_bridge *netmap_init_bridges2(u_int); 1494847bf383SLuigi Rizzo void netmap_uninit_bridges2(struct nm_bridge *, u_int); 1495847bf383SLuigi Rizzo int netmap_init_bridges(void); 1496847bf383SLuigi Rizzo void netmap_uninit_bridges(void); 1497*2ff91c17SVincenzo Maffione int netmap_bdg_regops(const char *name, struct netmap_bdg_ops *bdg_ops, void *private_data, void *auth_token); 1498*2ff91c17SVincenzo Maffione int nm_bdg_update_private_data(const char *name, bdg_update_private_data_fn_t callback, 1499*2ff91c17SVincenzo Maffione void *callback_data, void *auth_token); 1500*2ff91c17SVincenzo Maffione int netmap_bdg_config(struct nm_ifreq *nifr); 1501*2ff91c17SVincenzo Maffione void *netmap_bdg_create(const char *bdg_name, int *return_status); 1502*2ff91c17SVincenzo Maffione int netmap_bdg_destroy(const char *bdg_name, void *auth_token); 1503f9790aebSLuigi Rizzo 1504f9790aebSLuigi Rizzo #else /* !WITH_VALE */ 1505c3e9b4dbSLuiz Otavio O Souza #define netmap_get_bdg_na(_1, _2, _3, _4) 0 1506847bf383SLuigi Rizzo #define netmap_init_bridges(_1) 0 1507847bf383SLuigi Rizzo #define netmap_uninit_bridges() 1508*2ff91c17SVincenzo Maffione #define netmap_bdg_regops(_1, _2) EINVAL 1509f9790aebSLuigi Rizzo #endif /* !WITH_VALE */ 1510f9790aebSLuigi Rizzo 1511f0ea3689SLuigi Rizzo #ifdef WITH_PIPES 1512f0ea3689SLuigi Rizzo /* max number of pipes per device */ 15134f80b14cSVincenzo Maffione #define NM_MAXPIPES 64 /* XXX this should probably be a sysctl */ 1514f0ea3689SLuigi Rizzo void netmap_pipe_dealloc(struct netmap_adapter *); 1515*2ff91c17SVincenzo Maffione int netmap_get_pipe_na(struct nmreq_header *hdr, struct netmap_adapter **na, 1516c3e9b4dbSLuiz Otavio O Souza struct netmap_mem_d *nmd, int create); 1517f0ea3689SLuigi Rizzo #else /* !WITH_PIPES */ 1518f0ea3689SLuigi Rizzo #define NM_MAXPIPES 0 1519847bf383SLuigi Rizzo #define netmap_pipe_alloc(_1, _2) 0 1520f0ea3689SLuigi Rizzo #define netmap_pipe_dealloc(_1) 1521*2ff91c17SVincenzo Maffione #define netmap_get_pipe_na(hdr, _2, _3, _4) \ 1522*2ff91c17SVincenzo Maffione ((strchr(hdr->nr_name, '{') != NULL || strchr(hdr->nr_name, '}') != NULL) ? EOPNOTSUPP : 0) 1523f0ea3689SLuigi Rizzo #endif 1524f0ea3689SLuigi Rizzo 15254bf50f18SLuigi Rizzo #ifdef WITH_MONITOR 1526*2ff91c17SVincenzo Maffione int netmap_get_monitor_na(struct nmreq_header *hdr, struct netmap_adapter **na, 1527c3e9b4dbSLuiz Otavio O Souza struct netmap_mem_d *nmd, int create); 1528847bf383SLuigi Rizzo void netmap_monitor_stop(struct netmap_adapter *na); 15294bf50f18SLuigi Rizzo #else 1530*2ff91c17SVincenzo Maffione #define netmap_get_monitor_na(hdr, _2, _3, _4) \ 1531*2ff91c17SVincenzo Maffione (((struct nmreq_register *)hdr->nr_body)->nr_flags & (NR_MONITOR_TX | NR_MONITOR_RX) ? EOPNOTSUPP : 0) 1532847bf383SLuigi Rizzo #endif 1533847bf383SLuigi Rizzo 1534847bf383SLuigi Rizzo #ifdef CONFIG_NET_NS 1535847bf383SLuigi Rizzo struct net *netmap_bns_get(void); 1536847bf383SLuigi Rizzo void netmap_bns_put(struct net *); 1537847bf383SLuigi Rizzo void netmap_bns_getbridges(struct nm_bridge **, u_int *); 1538847bf383SLuigi Rizzo #else 1539847bf383SLuigi Rizzo #define netmap_bns_get() 1540847bf383SLuigi Rizzo #define netmap_bns_put(_1) 1541847bf383SLuigi Rizzo #define netmap_bns_getbridges(b, n) \ 1542847bf383SLuigi Rizzo do { *b = nm_bridges; *n = NM_BRIDGES; } while (0) 15434bf50f18SLuigi Rizzo #endif 15444bf50f18SLuigi Rizzo 1545f9790aebSLuigi Rizzo /* Various prototypes */ 154637e3a6d3SLuigi Rizzo int netmap_poll(struct netmap_priv_d *, int events, NM_SELRECORD_T *td); 1547f9790aebSLuigi Rizzo int netmap_init(void); 1548f9790aebSLuigi Rizzo void netmap_fini(void); 1549f9790aebSLuigi Rizzo int netmap_get_memory(struct netmap_priv_d* p); 1550f9790aebSLuigi Rizzo void netmap_dtor(void *data); 1551f9790aebSLuigi Rizzo 1552*2ff91c17SVincenzo Maffione int netmap_ioctl(struct netmap_priv_d *priv, u_long cmd, caddr_t data, 1553*2ff91c17SVincenzo Maffione struct thread *, int nr_body_is_user); 1554*2ff91c17SVincenzo Maffione int netmap_ioctl_legacy(struct netmap_priv_d *priv, u_long cmd, caddr_t data, 1555*2ff91c17SVincenzo Maffione struct thread *td); 1556*2ff91c17SVincenzo Maffione size_t nmreq_size_by_type(uint16_t nr_reqtype); 1557f9790aebSLuigi Rizzo 1558f9790aebSLuigi Rizzo /* netmap_adapter creation/destruction */ 155917885a7bSLuigi Rizzo 156017885a7bSLuigi Rizzo // #define NM_DEBUG_PUTGET 1 1561f9790aebSLuigi Rizzo 1562f9790aebSLuigi Rizzo #ifdef NM_DEBUG_PUTGET 1563f9790aebSLuigi Rizzo 1564f9790aebSLuigi Rizzo #define NM_DBG(f) __##f 1565f9790aebSLuigi Rizzo 1566f9790aebSLuigi Rizzo void __netmap_adapter_get(struct netmap_adapter *na); 1567f9790aebSLuigi Rizzo 1568f9790aebSLuigi Rizzo #define netmap_adapter_get(na) \ 1569f9790aebSLuigi Rizzo do { \ 1570f9790aebSLuigi Rizzo struct netmap_adapter *__na = na; \ 15714bf50f18SLuigi Rizzo D("getting %p:%s (%d)", __na, (__na)->name, (__na)->na_refcount); \ 1572f9790aebSLuigi Rizzo __netmap_adapter_get(__na); \ 1573f9790aebSLuigi Rizzo } while (0) 1574f9790aebSLuigi Rizzo 1575f9790aebSLuigi Rizzo int __netmap_adapter_put(struct netmap_adapter *na); 1576f9790aebSLuigi Rizzo 1577f9790aebSLuigi Rizzo #define netmap_adapter_put(na) \ 1578fb25194fSLuigi Rizzo ({ \ 1579f9790aebSLuigi Rizzo struct netmap_adapter *__na = na; \ 15804bf50f18SLuigi Rizzo D("putting %p:%s (%d)", __na, (__na)->name, (__na)->na_refcount); \ 1581f9790aebSLuigi Rizzo __netmap_adapter_put(__na); \ 1582fb25194fSLuigi Rizzo }) 1583f9790aebSLuigi Rizzo 1584f9790aebSLuigi Rizzo #else /* !NM_DEBUG_PUTGET */ 1585f9790aebSLuigi Rizzo 1586f9790aebSLuigi Rizzo #define NM_DBG(f) f 1587f9790aebSLuigi Rizzo void netmap_adapter_get(struct netmap_adapter *na); 1588f9790aebSLuigi Rizzo int netmap_adapter_put(struct netmap_adapter *na); 1589f9790aebSLuigi Rizzo 1590f9790aebSLuigi Rizzo #endif /* !NM_DEBUG_PUTGET */ 1591f9790aebSLuigi Rizzo 1592f9790aebSLuigi Rizzo 159317885a7bSLuigi Rizzo /* 159417885a7bSLuigi Rizzo * module variables 159517885a7bSLuigi Rizzo */ 159637e3a6d3SLuigi Rizzo #define NETMAP_BUF_BASE(_na) ((_na)->na_lut.lut[0].vaddr) 159737e3a6d3SLuigi Rizzo #define NETMAP_BUF_SIZE(_na) ((_na)->na_lut.objsize) 15985819da83SLuigi Rizzo extern int netmap_no_pendintr; 1599a2a74091SLuigi Rizzo extern int netmap_mitigate; 1600a2a74091SLuigi Rizzo extern int netmap_verbose; /* for debugging */ 160168b8534bSLuigi Rizzo enum { /* verbose flags */ 160268b8534bSLuigi Rizzo NM_VERB_ON = 1, /* generic verbose */ 160368b8534bSLuigi Rizzo NM_VERB_HOST = 0x2, /* verbose host stack */ 160468b8534bSLuigi Rizzo NM_VERB_RXSYNC = 0x10, /* verbose on rxsync/txsync */ 160568b8534bSLuigi Rizzo NM_VERB_TXSYNC = 0x20, 160668b8534bSLuigi Rizzo NM_VERB_RXINTR = 0x100, /* verbose on rx/tx intr (driver) */ 160768b8534bSLuigi Rizzo NM_VERB_TXINTR = 0x200, 160868b8534bSLuigi Rizzo NM_VERB_NIC_RXSYNC = 0x1000, /* verbose on rx/tx intr (driver) */ 160968b8534bSLuigi Rizzo NM_VERB_NIC_TXSYNC = 0x2000, 161068b8534bSLuigi Rizzo }; 161168b8534bSLuigi Rizzo 1612f9790aebSLuigi Rizzo extern int netmap_txsync_retry; 161337e3a6d3SLuigi Rizzo extern int netmap_flags; 1614f9790aebSLuigi Rizzo extern int netmap_generic_mit; 1615f9790aebSLuigi Rizzo extern int netmap_generic_ringsize; 1616f0ea3689SLuigi Rizzo extern int netmap_generic_rings; 16174f80b14cSVincenzo Maffione #ifdef linux 161837e3a6d3SLuigi Rizzo extern int netmap_generic_txqdisc; 16194f80b14cSVincenzo Maffione #endif 1620c3e9b4dbSLuiz Otavio O Souza extern int ptnetmap_tx_workers; 1621f9790aebSLuigi Rizzo 162268b8534bSLuigi Rizzo /* 1623d0c7b075SLuigi Rizzo * NA returns a pointer to the struct netmap adapter from the ifp, 1624d0c7b075SLuigi Rizzo * WNA is used to write it. 162568b8534bSLuigi Rizzo */ 1626d0c7b075SLuigi Rizzo #define NA(_ifp) ((struct netmap_adapter *)WNA(_ifp)) 162768b8534bSLuigi Rizzo 16288241616dSLuigi Rizzo /* 162937e3a6d3SLuigi Rizzo * On old versions of FreeBSD, NA(ifp) is a pspare. On linux we 163037e3a6d3SLuigi Rizzo * overload another pointer in the netdev. 163137e3a6d3SLuigi Rizzo * 163237e3a6d3SLuigi Rizzo * We check if NA(ifp) is set and its first element has a related 16338241616dSLuigi Rizzo * magic value. The capenable is within the struct netmap_adapter. 16348241616dSLuigi Rizzo */ 16358241616dSLuigi Rizzo #define NETMAP_MAGIC 0x52697a7a 16368241616dSLuigi Rizzo 163737e3a6d3SLuigi Rizzo #define NM_NA_VALID(ifp) (NA(ifp) && \ 16388241616dSLuigi Rizzo ((uint32_t)(uintptr_t)NA(ifp) ^ NA(ifp)->magic) == NETMAP_MAGIC ) 16398241616dSLuigi Rizzo 164037e3a6d3SLuigi Rizzo #define NM_ATTACH_NA(ifp, na) do { \ 164137e3a6d3SLuigi Rizzo WNA(ifp) = na; \ 164237e3a6d3SLuigi Rizzo if (NA(ifp)) \ 164337e3a6d3SLuigi Rizzo NA(ifp)->magic = \ 164437e3a6d3SLuigi Rizzo ((uint32_t)(uintptr_t)NA(ifp)) ^ NETMAP_MAGIC; \ 164537e3a6d3SLuigi Rizzo } while(0) 16468241616dSLuigi Rizzo 164737e3a6d3SLuigi Rizzo #define NM_IS_NATIVE(ifp) (NM_NA_VALID(ifp) && NA(ifp)->nm_dtor == netmap_hw_dtor) 164868b8534bSLuigi Rizzo 164937e3a6d3SLuigi Rizzo #if defined(__FreeBSD__) 1650f9790aebSLuigi Rizzo 16514bf50f18SLuigi Rizzo /* Assigns the device IOMMU domain to an allocator. 16524bf50f18SLuigi Rizzo * Returns -ENOMEM in case the domain is different */ 16534bf50f18SLuigi Rizzo #define nm_iommu_group_id(dev) (0) 16544bf50f18SLuigi Rizzo 165517885a7bSLuigi Rizzo /* Callback invoked by the dma machinery after a successful dmamap_load */ 16566dba29a2SLuigi Rizzo static void netmap_dmamap_cb(__unused void *arg, 16576dba29a2SLuigi Rizzo __unused bus_dma_segment_t * segs, __unused int nseg, __unused int error) 16586dba29a2SLuigi Rizzo { 16596dba29a2SLuigi Rizzo } 16606dba29a2SLuigi Rizzo 16616dba29a2SLuigi Rizzo /* bus_dmamap_load wrapper: call aforementioned function if map != NULL. 16626dba29a2SLuigi Rizzo * XXX can we do it without a callback ? 16636dba29a2SLuigi Rizzo */ 16644f80b14cSVincenzo Maffione static inline int 16654bf50f18SLuigi Rizzo netmap_load_map(struct netmap_adapter *na, 16664bf50f18SLuigi Rizzo bus_dma_tag_t tag, bus_dmamap_t map, void *buf) 16676dba29a2SLuigi Rizzo { 16686dba29a2SLuigi Rizzo if (map) 16694bf50f18SLuigi Rizzo bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE(na), 16706dba29a2SLuigi Rizzo netmap_dmamap_cb, NULL, BUS_DMA_NOWAIT); 16714f80b14cSVincenzo Maffione return 0; 16726dba29a2SLuigi Rizzo } 16736dba29a2SLuigi Rizzo 16744bf50f18SLuigi Rizzo static inline void 16754bf50f18SLuigi Rizzo netmap_unload_map(struct netmap_adapter *na, 16764bf50f18SLuigi Rizzo bus_dma_tag_t tag, bus_dmamap_t map) 16774bf50f18SLuigi Rizzo { 16784bf50f18SLuigi Rizzo if (map) 16794bf50f18SLuigi Rizzo bus_dmamap_unload(tag, map); 16804bf50f18SLuigi Rizzo } 16814bf50f18SLuigi Rizzo 16824f80b14cSVincenzo Maffione #define netmap_sync_map(na, tag, map, sz, t) 16834f80b14cSVincenzo Maffione 16846dba29a2SLuigi Rizzo /* update the map when a buffer changes. */ 16856dba29a2SLuigi Rizzo static inline void 16864bf50f18SLuigi Rizzo netmap_reload_map(struct netmap_adapter *na, 16874bf50f18SLuigi Rizzo bus_dma_tag_t tag, bus_dmamap_t map, void *buf) 16886dba29a2SLuigi Rizzo { 16896dba29a2SLuigi Rizzo if (map) { 16906dba29a2SLuigi Rizzo bus_dmamap_unload(tag, map); 16914bf50f18SLuigi Rizzo bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE(na), 16926dba29a2SLuigi Rizzo netmap_dmamap_cb, NULL, BUS_DMA_NOWAIT); 16936dba29a2SLuigi Rizzo } 16946dba29a2SLuigi Rizzo } 1695f9790aebSLuigi Rizzo 169637e3a6d3SLuigi Rizzo #elif defined(_WIN32) 169737e3a6d3SLuigi Rizzo 1698f196ce38SLuigi Rizzo #else /* linux */ 1699f196ce38SLuigi Rizzo 17004bf50f18SLuigi Rizzo int nm_iommu_group_id(bus_dma_tag_t dev); 17014bf50f18SLuigi Rizzo #include <linux/dma-mapping.h> 17024bf50f18SLuigi Rizzo 1703f196ce38SLuigi Rizzo /* 1704f196ce38SLuigi Rizzo * on linux we need 1705f196ce38SLuigi Rizzo * dma_map_single(&pdev->dev, virt_addr, len, direction) 17064f80b14cSVincenzo Maffione * dma_unmap_single(&adapter->pdev->dev, phys_addr, len, direction) 1707f196ce38SLuigi Rizzo */ 1708f196ce38SLuigi Rizzo #if 0 1709f196ce38SLuigi Rizzo struct e1000_buffer *buffer_info = &tx_ring->buffer_info[l]; 1710f196ce38SLuigi Rizzo /* set time_stamp *before* dma to help avoid a possible race */ 1711f196ce38SLuigi Rizzo buffer_info->time_stamp = jiffies; 1712f196ce38SLuigi Rizzo buffer_info->mapped_as_page = false; 1713f196ce38SLuigi Rizzo buffer_info->length = len; 1714f196ce38SLuigi Rizzo //buffer_info->next_to_watch = l; 1715f196ce38SLuigi Rizzo /* reload dma map */ 1716f196ce38SLuigi Rizzo dma_unmap_single(&adapter->pdev->dev, buffer_info->dma, 1717f196ce38SLuigi Rizzo NETMAP_BUF_SIZE, DMA_TO_DEVICE); 1718f196ce38SLuigi Rizzo buffer_info->dma = dma_map_single(&adapter->pdev->dev, 1719f196ce38SLuigi Rizzo addr, NETMAP_BUF_SIZE, DMA_TO_DEVICE); 1720f196ce38SLuigi Rizzo 1721f196ce38SLuigi Rizzo if (dma_mapping_error(&adapter->pdev->dev, buffer_info->dma)) { 1722f196ce38SLuigi Rizzo D("dma mapping error"); 1723f196ce38SLuigi Rizzo /* goto dma_error; See e1000_put_txbuf() */ 1724f196ce38SLuigi Rizzo /* XXX reset */ 1725f196ce38SLuigi Rizzo } 1726f196ce38SLuigi Rizzo tx_desc->buffer_addr = htole64(buffer_info->dma); //XXX 1727f196ce38SLuigi Rizzo 1728f196ce38SLuigi Rizzo #endif 1729f196ce38SLuigi Rizzo 17304f80b14cSVincenzo Maffione static inline int 17314f80b14cSVincenzo Maffione netmap_load_map(struct netmap_adapter *na, 17324f80b14cSVincenzo Maffione bus_dma_tag_t tag, bus_dmamap_t map, void *buf, u_int size) 17334f80b14cSVincenzo Maffione { 17344f80b14cSVincenzo Maffione if (map) { 17354f80b14cSVincenzo Maffione *map = dma_map_single(na->pdev, buf, size, 17364f80b14cSVincenzo Maffione DMA_BIDIRECTIONAL); 17374f80b14cSVincenzo Maffione if (dma_mapping_error(na->pdev, *map)) { 17384f80b14cSVincenzo Maffione *map = 0; 17394f80b14cSVincenzo Maffione return ENOMEM; 17404f80b14cSVincenzo Maffione } 17414f80b14cSVincenzo Maffione } 17424f80b14cSVincenzo Maffione return 0; 17434f80b14cSVincenzo Maffione } 17444f80b14cSVincenzo Maffione 17454f80b14cSVincenzo Maffione static inline void 17464f80b14cSVincenzo Maffione netmap_unload_map(struct netmap_adapter *na, 17474f80b14cSVincenzo Maffione bus_dma_tag_t tag, bus_dmamap_t map, u_int sz) 17484f80b14cSVincenzo Maffione { 17494f80b14cSVincenzo Maffione if (*map) { 17504f80b14cSVincenzo Maffione dma_unmap_single(na->pdev, *map, sz, 17514f80b14cSVincenzo Maffione DMA_BIDIRECTIONAL); 17524f80b14cSVincenzo Maffione } 17534f80b14cSVincenzo Maffione } 17544f80b14cSVincenzo Maffione 17554f80b14cSVincenzo Maffione static inline void 17564f80b14cSVincenzo Maffione netmap_sync_map(struct netmap_adapter *na, 17574f80b14cSVincenzo Maffione bus_dma_tag_t tag, bus_dmamap_t map, u_int sz, enum txrx t) 17584f80b14cSVincenzo Maffione { 17594f80b14cSVincenzo Maffione if (*map) { 17604f80b14cSVincenzo Maffione if (t == NR_RX) 17614f80b14cSVincenzo Maffione dma_sync_single_for_cpu(na->pdev, *map, sz, 17624f80b14cSVincenzo Maffione DMA_FROM_DEVICE); 17634f80b14cSVincenzo Maffione else 17644f80b14cSVincenzo Maffione dma_sync_single_for_device(na->pdev, *map, sz, 17654f80b14cSVincenzo Maffione DMA_TO_DEVICE); 17664f80b14cSVincenzo Maffione } 17674f80b14cSVincenzo Maffione } 17684f80b14cSVincenzo Maffione 17694f80b14cSVincenzo Maffione static inline void 17704f80b14cSVincenzo Maffione netmap_reload_map(struct netmap_adapter *na, 17714f80b14cSVincenzo Maffione bus_dma_tag_t tag, bus_dmamap_t map, void *buf) 17724f80b14cSVincenzo Maffione { 17734f80b14cSVincenzo Maffione u_int sz = NETMAP_BUF_SIZE(na); 17744f80b14cSVincenzo Maffione 17754f80b14cSVincenzo Maffione if (*map) { 17764f80b14cSVincenzo Maffione dma_unmap_single(na->pdev, *map, sz, 17774f80b14cSVincenzo Maffione DMA_BIDIRECTIONAL); 17784f80b14cSVincenzo Maffione } 17794f80b14cSVincenzo Maffione 17804f80b14cSVincenzo Maffione *map = dma_map_single(na->pdev, buf, sz, 17814f80b14cSVincenzo Maffione DMA_BIDIRECTIONAL); 17824f80b14cSVincenzo Maffione } 1783f196ce38SLuigi Rizzo 1784f196ce38SLuigi Rizzo #endif /* linux */ 17856dba29a2SLuigi Rizzo 1786ce3ee1e7SLuigi Rizzo 17875644ccecSLuigi Rizzo /* 17885644ccecSLuigi Rizzo * functions to map NIC to KRING indexes (n2k) and vice versa (k2n) 17895644ccecSLuigi Rizzo */ 17905644ccecSLuigi Rizzo static inline int 179164ae02c3SLuigi Rizzo netmap_idx_n2k(struct netmap_kring *kr, int idx) 17925644ccecSLuigi Rizzo { 179364ae02c3SLuigi Rizzo int n = kr->nkr_num_slots; 179464ae02c3SLuigi Rizzo idx += kr->nkr_hwofs; 179564ae02c3SLuigi Rizzo if (idx < 0) 179664ae02c3SLuigi Rizzo return idx + n; 179764ae02c3SLuigi Rizzo else if (idx < n) 179864ae02c3SLuigi Rizzo return idx; 17995644ccecSLuigi Rizzo else 180064ae02c3SLuigi Rizzo return idx - n; 18015644ccecSLuigi Rizzo } 18025644ccecSLuigi Rizzo 18035644ccecSLuigi Rizzo 18045644ccecSLuigi Rizzo static inline int 180564ae02c3SLuigi Rizzo netmap_idx_k2n(struct netmap_kring *kr, int idx) 18065644ccecSLuigi Rizzo { 180764ae02c3SLuigi Rizzo int n = kr->nkr_num_slots; 180864ae02c3SLuigi Rizzo idx -= kr->nkr_hwofs; 180964ae02c3SLuigi Rizzo if (idx < 0) 181064ae02c3SLuigi Rizzo return idx + n; 181164ae02c3SLuigi Rizzo else if (idx < n) 181264ae02c3SLuigi Rizzo return idx; 18135644ccecSLuigi Rizzo else 181464ae02c3SLuigi Rizzo return idx - n; 18155644ccecSLuigi Rizzo } 18165644ccecSLuigi Rizzo 18175644ccecSLuigi Rizzo 1818d76bf4ffSLuigi Rizzo /* Entries of the look-up table. */ 18194f80b14cSVincenzo Maffione #ifdef __FreeBSD__ 1820d76bf4ffSLuigi Rizzo struct lut_entry { 1821d76bf4ffSLuigi Rizzo void *vaddr; /* virtual address. */ 1822849bec0eSLuigi Rizzo vm_paddr_t paddr; /* physical address. */ 1823d76bf4ffSLuigi Rizzo }; 18244f80b14cSVincenzo Maffione #else /* linux & _WIN32 */ 18254f80b14cSVincenzo Maffione /* dma-mapping in linux can assign a buffer a different address 18264f80b14cSVincenzo Maffione * depending on the device, so we need to have a separate 18274f80b14cSVincenzo Maffione * physical-address look-up table for each na. 18284f80b14cSVincenzo Maffione * We can still share the vaddrs, though, therefore we split 18294f80b14cSVincenzo Maffione * the lut_entry structure. 18304f80b14cSVincenzo Maffione */ 18314f80b14cSVincenzo Maffione struct lut_entry { 18324f80b14cSVincenzo Maffione void *vaddr; /* virtual address. */ 18334f80b14cSVincenzo Maffione }; 18344f80b14cSVincenzo Maffione 18354f80b14cSVincenzo Maffione struct plut_entry { 18364f80b14cSVincenzo Maffione vm_paddr_t paddr; /* physical address. */ 18374f80b14cSVincenzo Maffione }; 18384f80b14cSVincenzo Maffione #endif /* linux & _WIN32 */ 1839d76bf4ffSLuigi Rizzo 1840d76bf4ffSLuigi Rizzo struct netmap_obj_pool; 1841d76bf4ffSLuigi Rizzo 184268b8534bSLuigi Rizzo /* 18436e10c8b8SLuigi Rizzo * NMB return the virtual address of a buffer (buffer 0 on bad index) 18446e10c8b8SLuigi Rizzo * PNMB also fills the physical address 184568b8534bSLuigi Rizzo */ 18466e10c8b8SLuigi Rizzo static inline void * 18474bf50f18SLuigi Rizzo NMB(struct netmap_adapter *na, struct netmap_slot *slot) 1848f9790aebSLuigi Rizzo { 1849847bf383SLuigi Rizzo struct lut_entry *lut = na->na_lut.lut; 1850f9790aebSLuigi Rizzo uint32_t i = slot->buf_idx; 1851847bf383SLuigi Rizzo return (unlikely(i >= na->na_lut.objtotal)) ? 1852f9790aebSLuigi Rizzo lut[0].vaddr : lut[i].vaddr; 1853f9790aebSLuigi Rizzo } 1854f9790aebSLuigi Rizzo 18554bf50f18SLuigi Rizzo static inline void * 18564bf50f18SLuigi Rizzo PNMB(struct netmap_adapter *na, struct netmap_slot *slot, uint64_t *pp) 18574bf50f18SLuigi Rizzo { 18584bf50f18SLuigi Rizzo uint32_t i = slot->buf_idx; 1859847bf383SLuigi Rizzo struct lut_entry *lut = na->na_lut.lut; 18604f80b14cSVincenzo Maffione struct plut_entry *plut = na->na_lut.plut; 1861847bf383SLuigi Rizzo void *ret = (i >= na->na_lut.objtotal) ? lut[0].vaddr : lut[i].vaddr; 18624bf50f18SLuigi Rizzo 18634f80b14cSVincenzo Maffione #ifdef _WIN32 18644f80b14cSVincenzo Maffione *pp = (i >= na->na_lut.objtotal) ? (uint64_t)plut[0].paddr.QuadPart : (uint64_t)plut[i].paddr.QuadPart; 186537e3a6d3SLuigi Rizzo #else 18664f80b14cSVincenzo Maffione *pp = (i >= na->na_lut.objtotal) ? plut[0].paddr : plut[i].paddr; 186737e3a6d3SLuigi Rizzo #endif 18684bf50f18SLuigi Rizzo return ret; 18694bf50f18SLuigi Rizzo } 18704bf50f18SLuigi Rizzo 1871f9790aebSLuigi Rizzo 187217885a7bSLuigi Rizzo /* 18738fd44c93SLuigi Rizzo * Structure associated to each netmap file descriptor. 18748fd44c93SLuigi Rizzo * It is created on open and left unbound (np_nifp == NULL). 18758fd44c93SLuigi Rizzo * A successful NIOCREGIF will set np_nifp and the first few fields; 18768fd44c93SLuigi Rizzo * this is protected by a global lock (NMG_LOCK) due to low contention. 1877f9790aebSLuigi Rizzo * 18788fd44c93SLuigi Rizzo * np_refs counts the number of references to the structure: one for the fd, 18798fd44c93SLuigi Rizzo * plus (on FreeBSD) one for each active mmap which we track ourselves 188085fe4e7cSLuigi Rizzo * (linux automatically tracks them, but FreeBSD does not). 18818fd44c93SLuigi Rizzo * np_refs is protected by NMG_LOCK. 188217885a7bSLuigi Rizzo * 18838fd44c93SLuigi Rizzo * Read access to the structure is lock free, because ni_nifp once set 18848fd44c93SLuigi Rizzo * can only go to 0 when nobody is using the entry anymore. Readers 18858fd44c93SLuigi Rizzo * must check that np_nifp != NULL before using the other fields. 1886f9790aebSLuigi Rizzo */ 1887f9790aebSLuigi Rizzo struct netmap_priv_d { 1888f9790aebSLuigi Rizzo struct netmap_if * volatile np_nifp; /* netmap if descriptor. */ 1889f9790aebSLuigi Rizzo 1890f9790aebSLuigi Rizzo struct netmap_adapter *np_na; 189137e3a6d3SLuigi Rizzo struct ifnet *np_ifp; 1892f0ea3689SLuigi Rizzo uint32_t np_flags; /* from the ioctl */ 1893847bf383SLuigi Rizzo u_int np_qfirst[NR_TXRX], 1894847bf383SLuigi Rizzo np_qlast[NR_TXRX]; /* range of tx/rx rings to scan */ 18954f80b14cSVincenzo Maffione uint16_t np_txpoll; 1896c3e9b4dbSLuiz Otavio O Souza int np_sync_flags; /* to be passed to nm_sync */ 1897f9790aebSLuigi Rizzo 18988fd44c93SLuigi Rizzo int np_refs; /* use with NMG_LOCK held */ 1899f0ea3689SLuigi Rizzo 1900f0ea3689SLuigi Rizzo /* pointers to the selinfo to be used for selrecord. 1901f0ea3689SLuigi Rizzo * Either the local or the global one depending on the 1902f0ea3689SLuigi Rizzo * number of rings. 1903f0ea3689SLuigi Rizzo */ 1904847bf383SLuigi Rizzo NM_SELINFO_T *np_si[NR_TXRX]; 1905f0ea3689SLuigi Rizzo struct thread *np_td; /* kqueue, just debugging */ 1906f9790aebSLuigi Rizzo }; 1907f9790aebSLuigi Rizzo 190837e3a6d3SLuigi Rizzo struct netmap_priv_d *netmap_priv_new(void); 190937e3a6d3SLuigi Rizzo void netmap_priv_delete(struct netmap_priv_d *); 191037e3a6d3SLuigi Rizzo 191137e3a6d3SLuigi Rizzo static inline int nm_kring_pending(struct netmap_priv_d *np) 191237e3a6d3SLuigi Rizzo { 191337e3a6d3SLuigi Rizzo struct netmap_adapter *na = np->np_na; 191437e3a6d3SLuigi Rizzo enum txrx t; 191537e3a6d3SLuigi Rizzo int i; 191637e3a6d3SLuigi Rizzo 191737e3a6d3SLuigi Rizzo for_rx_tx(t) { 191837e3a6d3SLuigi Rizzo for (i = np->np_qfirst[t]; i < np->np_qlast[t]; i++) { 1919*2ff91c17SVincenzo Maffione struct netmap_kring *kring = NMR(na, t)[i]; 192037e3a6d3SLuigi Rizzo if (kring->nr_mode != kring->nr_pending_mode) { 192137e3a6d3SLuigi Rizzo return 1; 192237e3a6d3SLuigi Rizzo } 192337e3a6d3SLuigi Rizzo } 192437e3a6d3SLuigi Rizzo } 192537e3a6d3SLuigi Rizzo return 0; 192637e3a6d3SLuigi Rizzo } 192737e3a6d3SLuigi Rizzo 1928c3e9b4dbSLuiz Otavio O Souza #ifdef WITH_PIPES 1929c3e9b4dbSLuiz Otavio O Souza int netmap_pipe_txsync(struct netmap_kring *txkring, int flags); 1930c3e9b4dbSLuiz Otavio O Souza int netmap_pipe_rxsync(struct netmap_kring *rxkring, int flags); 1931c3e9b4dbSLuiz Otavio O Souza #endif /* WITH_PIPES */ 1932c3e9b4dbSLuiz Otavio O Souza 19334bf50f18SLuigi Rizzo #ifdef WITH_MONITOR 19344bf50f18SLuigi Rizzo 19354bf50f18SLuigi Rizzo struct netmap_monitor_adapter { 19364bf50f18SLuigi Rizzo struct netmap_adapter up; 19374bf50f18SLuigi Rizzo 19384bf50f18SLuigi Rizzo struct netmap_priv_d priv; 19394bf50f18SLuigi Rizzo uint32_t flags; 19404bf50f18SLuigi Rizzo }; 19414bf50f18SLuigi Rizzo 19424bf50f18SLuigi Rizzo #endif /* WITH_MONITOR */ 19434bf50f18SLuigi Rizzo 1944f9790aebSLuigi Rizzo 1945039dd540SLuigi Rizzo #ifdef WITH_GENERIC 1946f9790aebSLuigi Rizzo /* 1947f9790aebSLuigi Rizzo * generic netmap emulation for devices that do not have 1948f9790aebSLuigi Rizzo * native netmap support. 1949f9790aebSLuigi Rizzo */ 1950f9790aebSLuigi Rizzo int generic_netmap_attach(struct ifnet *ifp); 195137e3a6d3SLuigi Rizzo int generic_rx_handler(struct ifnet *ifp, struct mbuf *m);; 1952f9790aebSLuigi Rizzo 195337e3a6d3SLuigi Rizzo int nm_os_catch_rx(struct netmap_generic_adapter *gna, int intercept); 195437e3a6d3SLuigi Rizzo int nm_os_catch_tx(struct netmap_generic_adapter *gna, int intercept); 195537e3a6d3SLuigi Rizzo 1956c3e9b4dbSLuiz Otavio O Souza int na_is_generic(struct netmap_adapter *na); 1957c3e9b4dbSLuiz Otavio O Souza 195837e3a6d3SLuigi Rizzo /* 195937e3a6d3SLuigi Rizzo * the generic transmit routine is passed a structure to optionally 196037e3a6d3SLuigi Rizzo * build a queue of descriptors, in an OS-specific way. 196137e3a6d3SLuigi Rizzo * The payload is at addr, if non-null, and the routine should send or queue 196237e3a6d3SLuigi Rizzo * the packet, returning 0 if successful, 1 on failure. 196337e3a6d3SLuigi Rizzo * 196437e3a6d3SLuigi Rizzo * At the end, if head is non-null, there will be an additional call 196537e3a6d3SLuigi Rizzo * to the function with addr = NULL; this should tell the OS-specific 196637e3a6d3SLuigi Rizzo * routine to send the queue and free any resources. Failure is ignored. 196737e3a6d3SLuigi Rizzo */ 196837e3a6d3SLuigi Rizzo struct nm_os_gen_arg { 196937e3a6d3SLuigi Rizzo struct ifnet *ifp; 197037e3a6d3SLuigi Rizzo void *m; /* os-specific mbuf-like object */ 197137e3a6d3SLuigi Rizzo void *head, *tail; /* tailq, if the OS-specific routine needs to build one */ 197237e3a6d3SLuigi Rizzo void *addr; /* payload of current packet */ 197337e3a6d3SLuigi Rizzo u_int len; /* packet length */ 197437e3a6d3SLuigi Rizzo u_int ring_nr; /* packet length */ 197537e3a6d3SLuigi Rizzo u_int qevent; /* in txqdisc mode, place an event on this mbuf */ 197637e3a6d3SLuigi Rizzo }; 197737e3a6d3SLuigi Rizzo 197837e3a6d3SLuigi Rizzo int nm_os_generic_xmit_frame(struct nm_os_gen_arg *); 197937e3a6d3SLuigi Rizzo int nm_os_generic_find_num_desc(struct ifnet *ifp, u_int *tx, u_int *rx); 198037e3a6d3SLuigi Rizzo void nm_os_generic_find_num_queues(struct ifnet *ifp, u_int *txq, u_int *rxq); 198137e3a6d3SLuigi Rizzo void nm_os_generic_set_features(struct netmap_generic_adapter *gna); 198237e3a6d3SLuigi Rizzo 1983847bf383SLuigi Rizzo static inline struct ifnet* 1984847bf383SLuigi Rizzo netmap_generic_getifp(struct netmap_generic_adapter *gna) 1985847bf383SLuigi Rizzo { 1986847bf383SLuigi Rizzo if (gna->prev) 1987847bf383SLuigi Rizzo return gna->prev->ifp; 1988847bf383SLuigi Rizzo 1989847bf383SLuigi Rizzo return gna->up.up.ifp; 1990847bf383SLuigi Rizzo } 1991f9790aebSLuigi Rizzo 199237e3a6d3SLuigi Rizzo void netmap_generic_irq(struct netmap_adapter *na, u_int q, u_int *work_done); 199337e3a6d3SLuigi Rizzo 19944bf50f18SLuigi Rizzo //#define RATE_GENERIC /* Enables communication statistics for generic. */ 19954bf50f18SLuigi Rizzo #ifdef RATE_GENERIC 19964bf50f18SLuigi Rizzo void generic_rate(int txp, int txs, int txi, int rxp, int rxs, int rxi); 19974bf50f18SLuigi Rizzo #else 19984bf50f18SLuigi Rizzo #define generic_rate(txp, txs, txi, rxp, rxs, rxi) 19994bf50f18SLuigi Rizzo #endif 20004bf50f18SLuigi Rizzo 2001f9790aebSLuigi Rizzo /* 2002f9790aebSLuigi Rizzo * netmap_mitigation API. This is used by the generic adapter 2003f9790aebSLuigi Rizzo * to reduce the number of interrupt requests/selwakeup 2004f9790aebSLuigi Rizzo * to clients on incoming packets. 2005f9790aebSLuigi Rizzo */ 200637e3a6d3SLuigi Rizzo void nm_os_mitigation_init(struct nm_generic_mit *mit, int idx, 20074bf50f18SLuigi Rizzo struct netmap_adapter *na); 200837e3a6d3SLuigi Rizzo void nm_os_mitigation_start(struct nm_generic_mit *mit); 200937e3a6d3SLuigi Rizzo void nm_os_mitigation_restart(struct nm_generic_mit *mit); 201037e3a6d3SLuigi Rizzo int nm_os_mitigation_active(struct nm_generic_mit *mit); 201137e3a6d3SLuigi Rizzo void nm_os_mitigation_cleanup(struct nm_generic_mit *mit); 201237e3a6d3SLuigi Rizzo #else /* !WITH_GENERIC */ 201337e3a6d3SLuigi Rizzo #define generic_netmap_attach(ifp) (EOPNOTSUPP) 2014c3e9b4dbSLuiz Otavio O Souza #define na_is_generic(na) (0) 2015039dd540SLuigi Rizzo #endif /* WITH_GENERIC */ 2016f0ea3689SLuigi Rizzo 2017f0ea3689SLuigi Rizzo /* Shared declarations for the VALE switch. */ 2018f0ea3689SLuigi Rizzo 2019f0ea3689SLuigi Rizzo /* 2020f0ea3689SLuigi Rizzo * Each transmit queue accumulates a batch of packets into 2021f0ea3689SLuigi Rizzo * a structure before forwarding. Packets to the same 2022f0ea3689SLuigi Rizzo * destination are put in a list using ft_next as a link field. 2023f0ea3689SLuigi Rizzo * ft_frags and ft_next are valid only on the first fragment. 2024f0ea3689SLuigi Rizzo */ 2025f0ea3689SLuigi Rizzo struct nm_bdg_fwd { /* forwarding entry for a bridge */ 2026f0ea3689SLuigi Rizzo void *ft_buf; /* netmap or indirect buffer */ 2027f0ea3689SLuigi Rizzo uint8_t ft_frags; /* how many fragments (only on 1st frag) */ 2028*2ff91c17SVincenzo Maffione uint16_t ft_offset; /* dst port (unused) */ 2029f0ea3689SLuigi Rizzo uint16_t ft_flags; /* flags, e.g. indirect */ 2030f0ea3689SLuigi Rizzo uint16_t ft_len; /* src fragment len */ 2031f0ea3689SLuigi Rizzo uint16_t ft_next; /* next packet to same destination */ 2032f0ea3689SLuigi Rizzo }; 2033f0ea3689SLuigi Rizzo 2034f0ea3689SLuigi Rizzo /* struct 'virtio_net_hdr' from linux. */ 2035f0ea3689SLuigi Rizzo struct nm_vnet_hdr { 2036f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_F_NEEDS_CSUM 1 /* Use csum_start, csum_offset */ 2037f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_F_DATA_VALID 2 /* Csum is valid */ 2038f0ea3689SLuigi Rizzo uint8_t flags; 2039f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_GSO_NONE 0 /* Not a GSO frame */ 2040f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_GSO_TCPV4 1 /* GSO frame, IPv4 TCP (TSO) */ 2041f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_GSO_UDP 3 /* GSO frame, IPv4 UDP (UFO) */ 2042f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_GSO_TCPV6 4 /* GSO frame, IPv6 TCP */ 2043f0ea3689SLuigi Rizzo #define VIRTIO_NET_HDR_GSO_ECN 0x80 /* TCP has ECN set */ 2044f0ea3689SLuigi Rizzo uint8_t gso_type; 2045f0ea3689SLuigi Rizzo uint16_t hdr_len; 2046f0ea3689SLuigi Rizzo uint16_t gso_size; 2047f0ea3689SLuigi Rizzo uint16_t csum_start; 2048f0ea3689SLuigi Rizzo uint16_t csum_offset; 2049f0ea3689SLuigi Rizzo }; 2050f0ea3689SLuigi Rizzo 2051f0ea3689SLuigi Rizzo #define WORST_CASE_GSO_HEADER (14+40+60) /* IPv6 + TCP */ 2052f0ea3689SLuigi Rizzo 2053f0ea3689SLuigi Rizzo /* Private definitions for IPv4, IPv6, UDP and TCP headers. */ 2054f0ea3689SLuigi Rizzo 2055f0ea3689SLuigi Rizzo struct nm_iphdr { 2056f0ea3689SLuigi Rizzo uint8_t version_ihl; 2057f0ea3689SLuigi Rizzo uint8_t tos; 2058f0ea3689SLuigi Rizzo uint16_t tot_len; 2059f0ea3689SLuigi Rizzo uint16_t id; 2060f0ea3689SLuigi Rizzo uint16_t frag_off; 2061f0ea3689SLuigi Rizzo uint8_t ttl; 2062f0ea3689SLuigi Rizzo uint8_t protocol; 2063f0ea3689SLuigi Rizzo uint16_t check; 2064f0ea3689SLuigi Rizzo uint32_t saddr; 2065f0ea3689SLuigi Rizzo uint32_t daddr; 2066f0ea3689SLuigi Rizzo /*The options start here. */ 2067f0ea3689SLuigi Rizzo }; 2068f0ea3689SLuigi Rizzo 2069f0ea3689SLuigi Rizzo struct nm_tcphdr { 2070f0ea3689SLuigi Rizzo uint16_t source; 2071f0ea3689SLuigi Rizzo uint16_t dest; 2072f0ea3689SLuigi Rizzo uint32_t seq; 2073f0ea3689SLuigi Rizzo uint32_t ack_seq; 2074f0ea3689SLuigi Rizzo uint8_t doff; /* Data offset + Reserved */ 2075f0ea3689SLuigi Rizzo uint8_t flags; 2076f0ea3689SLuigi Rizzo uint16_t window; 2077f0ea3689SLuigi Rizzo uint16_t check; 2078f0ea3689SLuigi Rizzo uint16_t urg_ptr; 2079f0ea3689SLuigi Rizzo }; 2080f0ea3689SLuigi Rizzo 2081f0ea3689SLuigi Rizzo struct nm_udphdr { 2082f0ea3689SLuigi Rizzo uint16_t source; 2083f0ea3689SLuigi Rizzo uint16_t dest; 2084f0ea3689SLuigi Rizzo uint16_t len; 2085f0ea3689SLuigi Rizzo uint16_t check; 2086f0ea3689SLuigi Rizzo }; 2087f0ea3689SLuigi Rizzo 2088f0ea3689SLuigi Rizzo struct nm_ipv6hdr { 2089f0ea3689SLuigi Rizzo uint8_t priority_version; 2090f0ea3689SLuigi Rizzo uint8_t flow_lbl[3]; 2091f0ea3689SLuigi Rizzo 2092f0ea3689SLuigi Rizzo uint16_t payload_len; 2093f0ea3689SLuigi Rizzo uint8_t nexthdr; 2094f0ea3689SLuigi Rizzo uint8_t hop_limit; 2095f0ea3689SLuigi Rizzo 2096f0ea3689SLuigi Rizzo uint8_t saddr[16]; 2097f0ea3689SLuigi Rizzo uint8_t daddr[16]; 2098f0ea3689SLuigi Rizzo }; 2099f0ea3689SLuigi Rizzo 2100f0ea3689SLuigi Rizzo /* Type used to store a checksum (in host byte order) that hasn't been 2101f0ea3689SLuigi Rizzo * folded yet. 2102f0ea3689SLuigi Rizzo */ 2103f0ea3689SLuigi Rizzo #define rawsum_t uint32_t 2104f0ea3689SLuigi Rizzo 210537e3a6d3SLuigi Rizzo rawsum_t nm_os_csum_raw(uint8_t *data, size_t len, rawsum_t cur_sum); 210637e3a6d3SLuigi Rizzo uint16_t nm_os_csum_ipv4(struct nm_iphdr *iph); 210737e3a6d3SLuigi Rizzo void nm_os_csum_tcpudp_ipv4(struct nm_iphdr *iph, void *data, 2108f0ea3689SLuigi Rizzo size_t datalen, uint16_t *check); 210937e3a6d3SLuigi Rizzo void nm_os_csum_tcpudp_ipv6(struct nm_ipv6hdr *ip6h, void *data, 2110f0ea3689SLuigi Rizzo size_t datalen, uint16_t *check); 211137e3a6d3SLuigi Rizzo uint16_t nm_os_csum_fold(rawsum_t cur_sum); 2112f0ea3689SLuigi Rizzo 2113f0ea3689SLuigi Rizzo void bdg_mismatch_datapath(struct netmap_vp_adapter *na, 2114f0ea3689SLuigi Rizzo struct netmap_vp_adapter *dst_na, 211537e3a6d3SLuigi Rizzo const struct nm_bdg_fwd *ft_p, 211637e3a6d3SLuigi Rizzo struct netmap_ring *dst_ring, 2117f0ea3689SLuigi Rizzo u_int *j, u_int lim, u_int *howmany); 21184bf50f18SLuigi Rizzo 21194bf50f18SLuigi Rizzo /* persistent virtual port routines */ 212037e3a6d3SLuigi Rizzo int nm_os_vi_persist(const char *, struct ifnet **); 212137e3a6d3SLuigi Rizzo void nm_os_vi_detach(struct ifnet *); 212237e3a6d3SLuigi Rizzo void nm_os_vi_init_index(void); 212337e3a6d3SLuigi Rizzo 212437e3a6d3SLuigi Rizzo /* 212537e3a6d3SLuigi Rizzo * kernel thread routines 212637e3a6d3SLuigi Rizzo */ 2127c3e9b4dbSLuiz Otavio O Souza struct nm_kctx; /* OS-specific kernel context - opaque */ 2128c3e9b4dbSLuiz Otavio O Souza typedef void (*nm_kctx_worker_fn_t)(void *data, int is_kthread); 2129c3e9b4dbSLuiz Otavio O Souza typedef void (*nm_kctx_notify_fn_t)(void *data); 213037e3a6d3SLuigi Rizzo 213137e3a6d3SLuigi Rizzo /* kthread configuration */ 2132c3e9b4dbSLuiz Otavio O Souza struct nm_kctx_cfg { 213337e3a6d3SLuigi Rizzo long type; /* kthread type/identifier */ 2134c3e9b4dbSLuiz Otavio O Souza nm_kctx_worker_fn_t worker_fn; /* worker function */ 213537e3a6d3SLuigi Rizzo void *worker_private;/* worker parameter */ 2136c3e9b4dbSLuiz Otavio O Souza nm_kctx_notify_fn_t notify_fn; /* notify function */ 213737e3a6d3SLuigi Rizzo int attach_user; /* attach kthread to user process */ 2138c3e9b4dbSLuiz Otavio O Souza int use_kthread; /* use a kthread for the context */ 213937e3a6d3SLuigi Rizzo }; 214037e3a6d3SLuigi Rizzo /* kthread configuration */ 2141c3e9b4dbSLuiz Otavio O Souza struct nm_kctx *nm_os_kctx_create(struct nm_kctx_cfg *cfg, 2142844a6f0cSLuigi Rizzo void *opaque); 2143c3e9b4dbSLuiz Otavio O Souza int nm_os_kctx_worker_start(struct nm_kctx *); 2144c3e9b4dbSLuiz Otavio O Souza void nm_os_kctx_worker_stop(struct nm_kctx *); 2145c3e9b4dbSLuiz Otavio O Souza void nm_os_kctx_destroy(struct nm_kctx *); 2146c3e9b4dbSLuiz Otavio O Souza void nm_os_kctx_worker_wakeup(struct nm_kctx *nmk); 2147c3e9b4dbSLuiz Otavio O Souza void nm_os_kctx_send_irq(struct nm_kctx *); 2148c3e9b4dbSLuiz Otavio O Souza void nm_os_kctx_worker_setaff(struct nm_kctx *, int); 214937e3a6d3SLuigi Rizzo u_int nm_os_ncpus(void); 215037e3a6d3SLuigi Rizzo 215137e3a6d3SLuigi Rizzo #ifdef WITH_PTNETMAP_HOST 215237e3a6d3SLuigi Rizzo /* 215337e3a6d3SLuigi Rizzo * netmap adapter for host ptnetmap ports 215437e3a6d3SLuigi Rizzo */ 215537e3a6d3SLuigi Rizzo struct netmap_pt_host_adapter { 215637e3a6d3SLuigi Rizzo struct netmap_adapter up; 215737e3a6d3SLuigi Rizzo 2158c3e9b4dbSLuiz Otavio O Souza /* the passed-through adapter */ 215937e3a6d3SLuigi Rizzo struct netmap_adapter *parent; 2160c3e9b4dbSLuiz Otavio O Souza /* parent->na_flags, saved at NETMAP_PT_HOST_CREATE time, 2161c3e9b4dbSLuiz Otavio O Souza * and restored at NETMAP_PT_HOST_DELETE time */ 2162c3e9b4dbSLuiz Otavio O Souza uint32_t parent_na_flags; 2163c3e9b4dbSLuiz Otavio O Souza 216437e3a6d3SLuigi Rizzo int (*parent_nm_notify)(struct netmap_kring *kring, int flags); 216537e3a6d3SLuigi Rizzo void *ptns; 216637e3a6d3SLuigi Rizzo }; 2167*2ff91c17SVincenzo Maffione 2168*2ff91c17SVincenzo Maffione /* ptnetmap host-side routines */ 2169*2ff91c17SVincenzo Maffione int netmap_get_pt_host_na(struct nmreq_header *hdr, struct netmap_adapter **na, 2170c3e9b4dbSLuiz Otavio O Souza struct netmap_mem_d * nmd, int create); 2171*2ff91c17SVincenzo Maffione int ptnetmap_ctl(const char *nr_name, int create, struct netmap_adapter *na); 2172*2ff91c17SVincenzo Maffione 217337e3a6d3SLuigi Rizzo static inline int 217437e3a6d3SLuigi Rizzo nm_ptnetmap_host_on(struct netmap_adapter *na) 217537e3a6d3SLuigi Rizzo { 217637e3a6d3SLuigi Rizzo return na && na->na_flags & NAF_PTNETMAP_HOST; 217737e3a6d3SLuigi Rizzo } 217837e3a6d3SLuigi Rizzo #else /* !WITH_PTNETMAP_HOST */ 2179*2ff91c17SVincenzo Maffione #define netmap_get_pt_host_na(hdr, _2, _3, _4) \ 2180*2ff91c17SVincenzo Maffione (((struct nmreq_register *)hdr->nr_body)->nr_flags & (NR_PTNETMAP_HOST) ? EOPNOTSUPP : 0) 2181*2ff91c17SVincenzo Maffione #define ptnetmap_ctl(_1, _2, _3) EINVAL 218237e3a6d3SLuigi Rizzo #define nm_ptnetmap_host_on(_1) EINVAL 218337e3a6d3SLuigi Rizzo #endif /* !WITH_PTNETMAP_HOST */ 218437e3a6d3SLuigi Rizzo 218537e3a6d3SLuigi Rizzo #ifdef WITH_PTNETMAP_GUEST 218637e3a6d3SLuigi Rizzo /* ptnetmap GUEST routines */ 218737e3a6d3SLuigi Rizzo 218837e3a6d3SLuigi Rizzo /* 218937e3a6d3SLuigi Rizzo * netmap adapter for guest ptnetmap ports 219037e3a6d3SLuigi Rizzo */ 219137e3a6d3SLuigi Rizzo struct netmap_pt_guest_adapter { 219237e3a6d3SLuigi Rizzo /* The netmap adapter to be used by netmap applications. 219337e3a6d3SLuigi Rizzo * This field must be the first, to allow upcast. */ 219437e3a6d3SLuigi Rizzo struct netmap_hw_adapter hwup; 219537e3a6d3SLuigi Rizzo 219637e3a6d3SLuigi Rizzo /* The netmap adapter to be used by the driver. */ 219737e3a6d3SLuigi Rizzo struct netmap_hw_adapter dr; 219837e3a6d3SLuigi Rizzo 219937e3a6d3SLuigi Rizzo /* Reference counter to track users of backend netmap port: the 220037e3a6d3SLuigi Rizzo * network stack and netmap clients. 220137e3a6d3SLuigi Rizzo * Used to decide when we need (de)allocate krings/rings and 220237e3a6d3SLuigi Rizzo * start (stop) ptnetmap kthreads. */ 220337e3a6d3SLuigi Rizzo int backend_regifs; 220437e3a6d3SLuigi Rizzo 220537e3a6d3SLuigi Rizzo }; 220637e3a6d3SLuigi Rizzo 220746023447SVincenzo Maffione int netmap_pt_guest_attach(struct netmap_adapter *na, 220846023447SVincenzo Maffione unsigned int nifp_offset, 220946023447SVincenzo Maffione unsigned int memid); 221046023447SVincenzo Maffione struct ptnet_csb_gh; 221146023447SVincenzo Maffione struct ptnet_csb_hg; 221246023447SVincenzo Maffione bool netmap_pt_guest_txsync(struct ptnet_csb_gh *ptgh, 221346023447SVincenzo Maffione struct ptnet_csb_hg *pthg, 221446023447SVincenzo Maffione struct netmap_kring *kring, 221537e3a6d3SLuigi Rizzo int flags); 221646023447SVincenzo Maffione bool netmap_pt_guest_rxsync(struct ptnet_csb_gh *ptgh, 221746023447SVincenzo Maffione struct ptnet_csb_hg *pthg, 221846023447SVincenzo Maffione struct netmap_kring *kring, int flags); 221937e3a6d3SLuigi Rizzo int ptnet_nm_krings_create(struct netmap_adapter *na); 222037e3a6d3SLuigi Rizzo void ptnet_nm_krings_delete(struct netmap_adapter *na); 222137e3a6d3SLuigi Rizzo void ptnet_nm_dtor(struct netmap_adapter *na); 222237e3a6d3SLuigi Rizzo #endif /* WITH_PTNETMAP_GUEST */ 22234bf50f18SLuigi Rizzo 2224*2ff91c17SVincenzo Maffione struct nmreq_option * nmreq_findoption(struct nmreq_option *, uint16_t); 2225*2ff91c17SVincenzo Maffione int nmreq_checkduplicate(struct nmreq_option *); 2226*2ff91c17SVincenzo Maffione 222768b8534bSLuigi Rizzo #endif /* _NET_NETMAP_KERN_H_ */ 2228