168b8534bSLuigi Rizzo /* 217885a7bSLuigi Rizzo * Copyright (C) 2011-2014 Matteo Landi, Luigi Rizzo. All rights reserved. 368b8534bSLuigi Rizzo * 468b8534bSLuigi Rizzo * Redistribution and use in source and binary forms, with or without 568b8534bSLuigi Rizzo * modification, are permitted provided that the following conditions 668b8534bSLuigi Rizzo * are met: 768b8534bSLuigi Rizzo * 1. Redistributions of source code must retain the above copyright 868b8534bSLuigi Rizzo * notice, this list of conditions and the following disclaimer. 968b8534bSLuigi Rizzo * 2. Redistributions in binary form must reproduce the above copyright 1068b8534bSLuigi Rizzo * notice, this list of conditions and the following disclaimer in the 1168b8534bSLuigi Rizzo * documentation and/or other materials provided with the distribution. 1268b8534bSLuigi Rizzo * 1368b8534bSLuigi Rizzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1468b8534bSLuigi Rizzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1568b8534bSLuigi Rizzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1668b8534bSLuigi Rizzo * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 1768b8534bSLuigi Rizzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 1868b8534bSLuigi Rizzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 1968b8534bSLuigi Rizzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2068b8534bSLuigi Rizzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2168b8534bSLuigi Rizzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2268b8534bSLuigi Rizzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2368b8534bSLuigi Rizzo * SUCH DAMAGE. 2468b8534bSLuigi Rizzo */ 2568b8534bSLuigi Rizzo 26ce3ee1e7SLuigi Rizzo 2768b8534bSLuigi Rizzo /* 28f9790aebSLuigi Rizzo * $FreeBSD$ 29f9790aebSLuigi Rizzo * 3068b8534bSLuigi Rizzo * This module supports memory mapped access to network devices, 3168b8534bSLuigi Rizzo * see netmap(4). 3268b8534bSLuigi Rizzo * 3368b8534bSLuigi Rizzo * The module uses a large, memory pool allocated by the kernel 3468b8534bSLuigi Rizzo * and accessible as mmapped memory by multiple userspace threads/processes. 3568b8534bSLuigi Rizzo * The memory pool contains packet buffers and "netmap rings", 3668b8534bSLuigi Rizzo * i.e. user-accessible copies of the interface's queues. 3768b8534bSLuigi Rizzo * 3868b8534bSLuigi Rizzo * Access to the network card works like this: 3968b8534bSLuigi Rizzo * 1. a process/thread issues one or more open() on /dev/netmap, to create 4068b8534bSLuigi Rizzo * select()able file descriptor on which events are reported. 4168b8534bSLuigi Rizzo * 2. on each descriptor, the process issues an ioctl() to identify 4268b8534bSLuigi Rizzo * the interface that should report events to the file descriptor. 4368b8534bSLuigi Rizzo * 3. on each descriptor, the process issues an mmap() request to 4468b8534bSLuigi Rizzo * map the shared memory region within the process' address space. 4568b8534bSLuigi Rizzo * The list of interesting queues is indicated by a location in 4668b8534bSLuigi Rizzo * the shared memory region. 4768b8534bSLuigi Rizzo * 4. using the functions in the netmap(4) userspace API, a process 4868b8534bSLuigi Rizzo * can look up the occupation state of a queue, access memory buffers, 4968b8534bSLuigi Rizzo * and retrieve received packets or enqueue packets to transmit. 5068b8534bSLuigi Rizzo * 5. using some ioctl()s the process can synchronize the userspace view 5168b8534bSLuigi Rizzo * of the queue with the actual status in the kernel. This includes both 5268b8534bSLuigi Rizzo * receiving the notification of new packets, and transmitting new 5368b8534bSLuigi Rizzo * packets on the output interface. 5468b8534bSLuigi Rizzo * 6. select() or poll() can be used to wait for events on individual 5568b8534bSLuigi Rizzo * transmit or receive queues (or all queues for a given interface). 56ce3ee1e7SLuigi Rizzo * 57ce3ee1e7SLuigi Rizzo 58ce3ee1e7SLuigi Rizzo SYNCHRONIZATION (USER) 59ce3ee1e7SLuigi Rizzo 60ce3ee1e7SLuigi Rizzo The netmap rings and data structures may be shared among multiple 61ce3ee1e7SLuigi Rizzo user threads or even independent processes. 62ce3ee1e7SLuigi Rizzo Any synchronization among those threads/processes is delegated 63ce3ee1e7SLuigi Rizzo to the threads themselves. Only one thread at a time can be in 64ce3ee1e7SLuigi Rizzo a system call on the same netmap ring. The OS does not enforce 65ce3ee1e7SLuigi Rizzo this and only guarantees against system crashes in case of 66ce3ee1e7SLuigi Rizzo invalid usage. 67ce3ee1e7SLuigi Rizzo 68ce3ee1e7SLuigi Rizzo LOCKING (INTERNAL) 69ce3ee1e7SLuigi Rizzo 70ce3ee1e7SLuigi Rizzo Within the kernel, access to the netmap rings is protected as follows: 71ce3ee1e7SLuigi Rizzo 72ce3ee1e7SLuigi Rizzo - a spinlock on each ring, to handle producer/consumer races on 73ce3ee1e7SLuigi Rizzo RX rings attached to the host stack (against multiple host 74ce3ee1e7SLuigi Rizzo threads writing from the host stack to the same ring), 75ce3ee1e7SLuigi Rizzo and on 'destination' rings attached to a VALE switch 76ce3ee1e7SLuigi Rizzo (i.e. RX rings in VALE ports, and TX rings in NIC/host ports) 77ce3ee1e7SLuigi Rizzo protecting multiple active senders for the same destination) 78ce3ee1e7SLuigi Rizzo 79ce3ee1e7SLuigi Rizzo - an atomic variable to guarantee that there is at most one 80ce3ee1e7SLuigi Rizzo instance of *_*xsync() on the ring at any time. 81ce3ee1e7SLuigi Rizzo For rings connected to user file 82ce3ee1e7SLuigi Rizzo descriptors, an atomic_test_and_set() protects this, and the 83ce3ee1e7SLuigi Rizzo lock on the ring is not actually used. 84ce3ee1e7SLuigi Rizzo For NIC RX rings connected to a VALE switch, an atomic_test_and_set() 85ce3ee1e7SLuigi Rizzo is also used to prevent multiple executions (the driver might indeed 86ce3ee1e7SLuigi Rizzo already guarantee this). 87ce3ee1e7SLuigi Rizzo For NIC TX rings connected to a VALE switch, the lock arbitrates 88ce3ee1e7SLuigi Rizzo access to the queue (both when allocating buffers and when pushing 89ce3ee1e7SLuigi Rizzo them out). 90ce3ee1e7SLuigi Rizzo 91ce3ee1e7SLuigi Rizzo - *xsync() should be protected against initializations of the card. 92ce3ee1e7SLuigi Rizzo On FreeBSD most devices have the reset routine protected by 93ce3ee1e7SLuigi Rizzo a RING lock (ixgbe, igb, em) or core lock (re). lem is missing 94ce3ee1e7SLuigi Rizzo the RING protection on rx_reset(), this should be added. 95ce3ee1e7SLuigi Rizzo 96ce3ee1e7SLuigi Rizzo On linux there is an external lock on the tx path, which probably 97ce3ee1e7SLuigi Rizzo also arbitrates access to the reset routine. XXX to be revised 98ce3ee1e7SLuigi Rizzo 99ce3ee1e7SLuigi Rizzo - a per-interface core_lock protecting access from the host stack 100ce3ee1e7SLuigi Rizzo while interfaces may be detached from netmap mode. 101ce3ee1e7SLuigi Rizzo XXX there should be no need for this lock if we detach the interfaces 102ce3ee1e7SLuigi Rizzo only while they are down. 103ce3ee1e7SLuigi Rizzo 104ce3ee1e7SLuigi Rizzo 105ce3ee1e7SLuigi Rizzo --- VALE SWITCH --- 106ce3ee1e7SLuigi Rizzo 107ce3ee1e7SLuigi Rizzo NMG_LOCK() serializes all modifications to switches and ports. 108ce3ee1e7SLuigi Rizzo A switch cannot be deleted until all ports are gone. 109ce3ee1e7SLuigi Rizzo 110ce3ee1e7SLuigi Rizzo For each switch, an SX lock (RWlock on linux) protects 111ce3ee1e7SLuigi Rizzo deletion of ports. When configuring or deleting a new port, the 112ce3ee1e7SLuigi Rizzo lock is acquired in exclusive mode (after holding NMG_LOCK). 113ce3ee1e7SLuigi Rizzo When forwarding, the lock is acquired in shared mode (without NMG_LOCK). 114ce3ee1e7SLuigi Rizzo The lock is held throughout the entire forwarding cycle, 115ce3ee1e7SLuigi Rizzo during which the thread may incur in a page fault. 116ce3ee1e7SLuigi Rizzo Hence it is important that sleepable shared locks are used. 117ce3ee1e7SLuigi Rizzo 118ce3ee1e7SLuigi Rizzo On the rx ring, the per-port lock is grabbed initially to reserve 119ce3ee1e7SLuigi Rizzo a number of slot in the ring, then the lock is released, 120ce3ee1e7SLuigi Rizzo packets are copied from source to destination, and then 121ce3ee1e7SLuigi Rizzo the lock is acquired again and the receive ring is updated. 122ce3ee1e7SLuigi Rizzo (A similar thing is done on the tx ring for NIC and host stack 123ce3ee1e7SLuigi Rizzo ports attached to the switch) 124ce3ee1e7SLuigi Rizzo 12568b8534bSLuigi Rizzo */ 12668b8534bSLuigi Rizzo 1274bf50f18SLuigi Rizzo 1284bf50f18SLuigi Rizzo /* --- internals ---- 1294bf50f18SLuigi Rizzo * 1304bf50f18SLuigi Rizzo * Roadmap to the code that implements the above. 1314bf50f18SLuigi Rizzo * 1324bf50f18SLuigi Rizzo * > 1. a process/thread issues one or more open() on /dev/netmap, to create 1334bf50f18SLuigi Rizzo * > select()able file descriptor on which events are reported. 1344bf50f18SLuigi Rizzo * 1354bf50f18SLuigi Rizzo * Internally, we allocate a netmap_priv_d structure, that will be 1364bf50f18SLuigi Rizzo * initialized on ioctl(NIOCREGIF). 1374bf50f18SLuigi Rizzo * 1384bf50f18SLuigi Rizzo * os-specific: 1394bf50f18SLuigi Rizzo * FreeBSD: netmap_open (netmap_freebsd.c). The priv is 1404bf50f18SLuigi Rizzo * per-thread. 1414bf50f18SLuigi Rizzo * linux: linux_netmap_open (netmap_linux.c). The priv is 1424bf50f18SLuigi Rizzo * per-open. 1434bf50f18SLuigi Rizzo * 1444bf50f18SLuigi Rizzo * > 2. on each descriptor, the process issues an ioctl() to identify 1454bf50f18SLuigi Rizzo * > the interface that should report events to the file descriptor. 1464bf50f18SLuigi Rizzo * 1474bf50f18SLuigi Rizzo * Implemented by netmap_ioctl(), NIOCREGIF case, with nmr->nr_cmd==0. 1484bf50f18SLuigi Rizzo * Most important things happen in netmap_get_na() and 1494bf50f18SLuigi Rizzo * netmap_do_regif(), called from there. Additional details can be 1504bf50f18SLuigi Rizzo * found in the comments above those functions. 1514bf50f18SLuigi Rizzo * 1524bf50f18SLuigi Rizzo * In all cases, this action creates/takes-a-reference-to a 1534bf50f18SLuigi Rizzo * netmap_*_adapter describing the port, and allocates a netmap_if 1544bf50f18SLuigi Rizzo * and all necessary netmap rings, filling them with netmap buffers. 1554bf50f18SLuigi Rizzo * 1564bf50f18SLuigi Rizzo * In this phase, the sync callbacks for each ring are set (these are used 1574bf50f18SLuigi Rizzo * in steps 5 and 6 below). The callbacks depend on the type of adapter. 1584bf50f18SLuigi Rizzo * The adapter creation/initialization code puts them in the 1594bf50f18SLuigi Rizzo * netmap_adapter (fields na->nm_txsync and na->nm_rxsync). Then, they 1604bf50f18SLuigi Rizzo * are copied from there to the netmap_kring's during netmap_do_regif(), by 1614bf50f18SLuigi Rizzo * the nm_krings_create() callback. All the nm_krings_create callbacks 1624bf50f18SLuigi Rizzo * actually call netmap_krings_create() to perform this and the other 1634bf50f18SLuigi Rizzo * common stuff. netmap_krings_create() also takes care of the host rings, 1644bf50f18SLuigi Rizzo * if needed, by setting their sync callbacks appropriately. 1654bf50f18SLuigi Rizzo * 1664bf50f18SLuigi Rizzo * Additional actions depend on the kind of netmap_adapter that has been 1674bf50f18SLuigi Rizzo * registered: 1684bf50f18SLuigi Rizzo * 1694bf50f18SLuigi Rizzo * - netmap_hw_adapter: [netmap.c] 1704bf50f18SLuigi Rizzo * This is a system netdev/ifp with native netmap support. 1714bf50f18SLuigi Rizzo * The ifp is detached from the host stack by redirecting: 1724bf50f18SLuigi Rizzo * - transmissions (from the network stack) to netmap_transmit() 1734bf50f18SLuigi Rizzo * - receive notifications to the nm_notify() callback for 1744bf50f18SLuigi Rizzo * this adapter. The callback is normally netmap_notify(), unless 1754bf50f18SLuigi Rizzo * the ifp is attached to a bridge using bwrap, in which case it 1764bf50f18SLuigi Rizzo * is netmap_bwrap_intr_notify(). 1774bf50f18SLuigi Rizzo * 1784bf50f18SLuigi Rizzo * - netmap_generic_adapter: [netmap_generic.c] 1794bf50f18SLuigi Rizzo * A system netdev/ifp without native netmap support. 1804bf50f18SLuigi Rizzo * 1814bf50f18SLuigi Rizzo * (the decision about native/non native support is taken in 1824bf50f18SLuigi Rizzo * netmap_get_hw_na(), called by netmap_get_na()) 1834bf50f18SLuigi Rizzo * 1844bf50f18SLuigi Rizzo * - netmap_vp_adapter [netmap_vale.c] 1854bf50f18SLuigi Rizzo * Returned by netmap_get_bdg_na(). 1864bf50f18SLuigi Rizzo * This is a persistent or ephemeral VALE port. Ephemeral ports 1874bf50f18SLuigi Rizzo * are created on the fly if they don't already exist, and are 1884bf50f18SLuigi Rizzo * always attached to a bridge. 189*453130d9SPedro F. Giffuni * Persistent VALE ports must must be created separately, and i 1904bf50f18SLuigi Rizzo * then attached like normal NICs. The NIOCREGIF we are examining 1914bf50f18SLuigi Rizzo * will find them only if they had previosly been created and 1924bf50f18SLuigi Rizzo * attached (see VALE_CTL below). 1934bf50f18SLuigi Rizzo * 1944bf50f18SLuigi Rizzo * - netmap_pipe_adapter [netmap_pipe.c] 1954bf50f18SLuigi Rizzo * Returned by netmap_get_pipe_na(). 1964bf50f18SLuigi Rizzo * Both pipe ends are created, if they didn't already exist. 1974bf50f18SLuigi Rizzo * 1984bf50f18SLuigi Rizzo * - netmap_monitor_adapter [netmap_monitor.c] 1994bf50f18SLuigi Rizzo * Returned by netmap_get_monitor_na(). 2004bf50f18SLuigi Rizzo * If successful, the nm_sync callbacks of the monitored adapter 2014bf50f18SLuigi Rizzo * will be intercepted by the returned monitor. 2024bf50f18SLuigi Rizzo * 2034bf50f18SLuigi Rizzo * - netmap_bwrap_adapter [netmap_vale.c] 2044bf50f18SLuigi Rizzo * Cannot be obtained in this way, see VALE_CTL below 2054bf50f18SLuigi Rizzo * 2064bf50f18SLuigi Rizzo * 2074bf50f18SLuigi Rizzo * os-specific: 2084bf50f18SLuigi Rizzo * linux: we first go through linux_netmap_ioctl() to 2094bf50f18SLuigi Rizzo * adapt the FreeBSD interface to the linux one. 2104bf50f18SLuigi Rizzo * 2114bf50f18SLuigi Rizzo * 2124bf50f18SLuigi Rizzo * > 3. on each descriptor, the process issues an mmap() request to 2134bf50f18SLuigi Rizzo * > map the shared memory region within the process' address space. 2144bf50f18SLuigi Rizzo * > The list of interesting queues is indicated by a location in 2154bf50f18SLuigi Rizzo * > the shared memory region. 2164bf50f18SLuigi Rizzo * 2174bf50f18SLuigi Rizzo * os-specific: 2184bf50f18SLuigi Rizzo * FreeBSD: netmap_mmap_single (netmap_freebsd.c). 2194bf50f18SLuigi Rizzo * linux: linux_netmap_mmap (netmap_linux.c). 2204bf50f18SLuigi Rizzo * 2214bf50f18SLuigi Rizzo * > 4. using the functions in the netmap(4) userspace API, a process 2224bf50f18SLuigi Rizzo * > can look up the occupation state of a queue, access memory buffers, 2234bf50f18SLuigi Rizzo * > and retrieve received packets or enqueue packets to transmit. 2244bf50f18SLuigi Rizzo * 2254bf50f18SLuigi Rizzo * these actions do not involve the kernel. 2264bf50f18SLuigi Rizzo * 2274bf50f18SLuigi Rizzo * > 5. using some ioctl()s the process can synchronize the userspace view 2284bf50f18SLuigi Rizzo * > of the queue with the actual status in the kernel. This includes both 2294bf50f18SLuigi Rizzo * > receiving the notification of new packets, and transmitting new 2304bf50f18SLuigi Rizzo * > packets on the output interface. 2314bf50f18SLuigi Rizzo * 2324bf50f18SLuigi Rizzo * These are implemented in netmap_ioctl(), NIOCTXSYNC and NIOCRXSYNC 2334bf50f18SLuigi Rizzo * cases. They invoke the nm_sync callbacks on the netmap_kring 2344bf50f18SLuigi Rizzo * structures, as initialized in step 2 and maybe later modified 2354bf50f18SLuigi Rizzo * by a monitor. Monitors, however, will always call the original 2364bf50f18SLuigi Rizzo * callback before doing anything else. 2374bf50f18SLuigi Rizzo * 2384bf50f18SLuigi Rizzo * 2394bf50f18SLuigi Rizzo * > 6. select() or poll() can be used to wait for events on individual 2404bf50f18SLuigi Rizzo * > transmit or receive queues (or all queues for a given interface). 2414bf50f18SLuigi Rizzo * 2424bf50f18SLuigi Rizzo * Implemented in netmap_poll(). This will call the same nm_sync() 2434bf50f18SLuigi Rizzo * callbacks as in step 5 above. 2444bf50f18SLuigi Rizzo * 2454bf50f18SLuigi Rizzo * os-specific: 2464bf50f18SLuigi Rizzo * linux: we first go through linux_netmap_poll() to adapt 2474bf50f18SLuigi Rizzo * the FreeBSD interface to the linux one. 2484bf50f18SLuigi Rizzo * 2494bf50f18SLuigi Rizzo * 2504bf50f18SLuigi Rizzo * ---- VALE_CTL ----- 2514bf50f18SLuigi Rizzo * 2524bf50f18SLuigi Rizzo * VALE switches are controlled by issuing a NIOCREGIF with a non-null 2534bf50f18SLuigi Rizzo * nr_cmd in the nmreq structure. These subcommands are handled by 2544bf50f18SLuigi Rizzo * netmap_bdg_ctl() in netmap_vale.c. Persistent VALE ports are created 2554bf50f18SLuigi Rizzo * and destroyed by issuing the NETMAP_BDG_NEWIF and NETMAP_BDG_DELIF 2564bf50f18SLuigi Rizzo * subcommands, respectively. 2574bf50f18SLuigi Rizzo * 2584bf50f18SLuigi Rizzo * Any network interface known to the system (including a persistent VALE 2594bf50f18SLuigi Rizzo * port) can be attached to a VALE switch by issuing the 2604bf50f18SLuigi Rizzo * NETMAP_BDG_ATTACH subcommand. After the attachment, persistent VALE ports 2614bf50f18SLuigi Rizzo * look exactly like ephemeral VALE ports (as created in step 2 above). The 2624bf50f18SLuigi Rizzo * attachment of other interfaces, instead, requires the creation of a 2634bf50f18SLuigi Rizzo * netmap_bwrap_adapter. Moreover, the attached interface must be put in 2644bf50f18SLuigi Rizzo * netmap mode. This may require the creation of a netmap_generic_adapter if 2654bf50f18SLuigi Rizzo * we have no native support for the interface, or if generic adapters have 2664bf50f18SLuigi Rizzo * been forced by sysctl. 2674bf50f18SLuigi Rizzo * 2684bf50f18SLuigi Rizzo * Both persistent VALE ports and bwraps are handled by netmap_get_bdg_na(), 2694bf50f18SLuigi Rizzo * called by nm_bdg_ctl_attach(), and discriminated by the nm_bdg_attach() 2704bf50f18SLuigi Rizzo * callback. In the case of the bwrap, the callback creates the 2714bf50f18SLuigi Rizzo * netmap_bwrap_adapter. The initialization of the bwrap is then 2724bf50f18SLuigi Rizzo * completed by calling netmap_do_regif() on it, in the nm_bdg_ctl() 2734bf50f18SLuigi Rizzo * callback (netmap_bwrap_bdg_ctl in netmap_vale.c). 2744bf50f18SLuigi Rizzo * A generic adapter for the wrapped ifp will be created if needed, when 2754bf50f18SLuigi Rizzo * netmap_get_bdg_na() calls netmap_get_hw_na(). 2764bf50f18SLuigi Rizzo * 2774bf50f18SLuigi Rizzo * 2784bf50f18SLuigi Rizzo * ---- DATAPATHS ----- 2794bf50f18SLuigi Rizzo * 2804bf50f18SLuigi Rizzo * -= SYSTEM DEVICE WITH NATIVE SUPPORT =- 2814bf50f18SLuigi Rizzo * 2824bf50f18SLuigi Rizzo * na == NA(ifp) == netmap_hw_adapter created in DEVICE_netmap_attach() 2834bf50f18SLuigi Rizzo * 2844bf50f18SLuigi Rizzo * - tx from netmap userspace: 2854bf50f18SLuigi Rizzo * concurrently: 2864bf50f18SLuigi Rizzo * 1) ioctl(NIOCTXSYNC)/netmap_poll() in process context 2874bf50f18SLuigi Rizzo * kring->nm_sync() == DEVICE_netmap_txsync() 2884bf50f18SLuigi Rizzo * 2) device interrupt handler 2894bf50f18SLuigi Rizzo * na->nm_notify() == netmap_notify() 2904bf50f18SLuigi Rizzo * - rx from netmap userspace: 2914bf50f18SLuigi Rizzo * concurrently: 2924bf50f18SLuigi Rizzo * 1) ioctl(NIOCRXSYNC)/netmap_poll() in process context 2934bf50f18SLuigi Rizzo * kring->nm_sync() == DEVICE_netmap_rxsync() 2944bf50f18SLuigi Rizzo * 2) device interrupt handler 2954bf50f18SLuigi Rizzo * na->nm_notify() == netmap_notify() 296847bf383SLuigi Rizzo * - rx from host stack 2974bf50f18SLuigi Rizzo * concurrently: 2984bf50f18SLuigi Rizzo * 1) host stack 2994bf50f18SLuigi Rizzo * netmap_transmit() 3004bf50f18SLuigi Rizzo * na->nm_notify == netmap_notify() 3014bf50f18SLuigi Rizzo * 2) ioctl(NIOCRXSYNC)/netmap_poll() in process context 3024bf50f18SLuigi Rizzo * kring->nm_sync() == netmap_rxsync_from_host_compat 3034bf50f18SLuigi Rizzo * netmap_rxsync_from_host(na, NULL, NULL) 3044bf50f18SLuigi Rizzo * - tx to host stack 3054bf50f18SLuigi Rizzo * ioctl(NIOCTXSYNC)/netmap_poll() in process context 3064bf50f18SLuigi Rizzo * kring->nm_sync() == netmap_txsync_to_host_compat 3074bf50f18SLuigi Rizzo * netmap_txsync_to_host(na) 3084bf50f18SLuigi Rizzo * NM_SEND_UP() 3094bf50f18SLuigi Rizzo * FreeBSD: na->if_input() == ?? XXX 3104bf50f18SLuigi Rizzo * linux: netif_rx() with NM_MAGIC_PRIORITY_RX 3114bf50f18SLuigi Rizzo * 3124bf50f18SLuigi Rizzo * 3134bf50f18SLuigi Rizzo * 3144bf50f18SLuigi Rizzo * -= SYSTEM DEVICE WITH GENERIC SUPPORT =- 3154bf50f18SLuigi Rizzo * 316847bf383SLuigi Rizzo * na == NA(ifp) == generic_netmap_adapter created in generic_netmap_attach() 317847bf383SLuigi Rizzo * 318847bf383SLuigi Rizzo * - tx from netmap userspace: 319847bf383SLuigi Rizzo * concurrently: 320847bf383SLuigi Rizzo * 1) ioctl(NIOCTXSYNC)/netmap_poll() in process context 321847bf383SLuigi Rizzo * kring->nm_sync() == generic_netmap_txsync() 322847bf383SLuigi Rizzo * linux: dev_queue_xmit() with NM_MAGIC_PRIORITY_TX 323847bf383SLuigi Rizzo * generic_ndo_start_xmit() 324847bf383SLuigi Rizzo * orig. dev. start_xmit 325847bf383SLuigi Rizzo * FreeBSD: na->if_transmit() == orig. dev if_transmit 326847bf383SLuigi Rizzo * 2) generic_mbuf_destructor() 327847bf383SLuigi Rizzo * na->nm_notify() == netmap_notify() 328847bf383SLuigi Rizzo * - rx from netmap userspace: 329847bf383SLuigi Rizzo * 1) ioctl(NIOCRXSYNC)/netmap_poll() in process context 330847bf383SLuigi Rizzo * kring->nm_sync() == generic_netmap_rxsync() 331847bf383SLuigi Rizzo * mbq_safe_dequeue() 332847bf383SLuigi Rizzo * 2) device driver 333847bf383SLuigi Rizzo * generic_rx_handler() 334847bf383SLuigi Rizzo * mbq_safe_enqueue() 335847bf383SLuigi Rizzo * na->nm_notify() == netmap_notify() 336847bf383SLuigi Rizzo * - rx from host stack: 337847bf383SLuigi Rizzo * concurrently: 338847bf383SLuigi Rizzo * 1) host stack 339847bf383SLuigi Rizzo * linux: generic_ndo_start_xmit() 340847bf383SLuigi Rizzo * netmap_transmit() 341847bf383SLuigi Rizzo * FreeBSD: ifp->if_input() == netmap_transmit 342847bf383SLuigi Rizzo * both: 343847bf383SLuigi Rizzo * na->nm_notify() == netmap_notify() 344847bf383SLuigi Rizzo * 2) ioctl(NIOCRXSYNC)/netmap_poll() in process context 345847bf383SLuigi Rizzo * kring->nm_sync() == netmap_rxsync_from_host_compat 346847bf383SLuigi Rizzo * netmap_rxsync_from_host(na, NULL, NULL) 347847bf383SLuigi Rizzo * - tx to host stack: 348847bf383SLuigi Rizzo * ioctl(NIOCTXSYNC)/netmap_poll() in process context 349847bf383SLuigi Rizzo * kring->nm_sync() == netmap_txsync_to_host_compat 350847bf383SLuigi Rizzo * netmap_txsync_to_host(na) 351847bf383SLuigi Rizzo * NM_SEND_UP() 352847bf383SLuigi Rizzo * FreeBSD: na->if_input() == ??? XXX 353847bf383SLuigi Rizzo * linux: netif_rx() with NM_MAGIC_PRIORITY_RX 3544bf50f18SLuigi Rizzo * 3554bf50f18SLuigi Rizzo * 356847bf383SLuigi Rizzo * -= VALE =- 3574bf50f18SLuigi Rizzo * 358847bf383SLuigi Rizzo * INCOMING: 3594bf50f18SLuigi Rizzo * 360847bf383SLuigi Rizzo * - VALE ports: 361847bf383SLuigi Rizzo * ioctl(NIOCTXSYNC)/netmap_poll() in process context 362847bf383SLuigi Rizzo * kring->nm_sync() == netmap_vp_txsync() 3634bf50f18SLuigi Rizzo * 364847bf383SLuigi Rizzo * - system device with native support: 365847bf383SLuigi Rizzo * from cable: 366847bf383SLuigi Rizzo * interrupt 367847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_intr_notify(ring_nr != host ring) 368847bf383SLuigi Rizzo * kring->nm_sync() == DEVICE_netmap_rxsync() 369847bf383SLuigi Rizzo * netmap_vp_txsync() 370847bf383SLuigi Rizzo * kring->nm_sync() == DEVICE_netmap_rxsync() 371847bf383SLuigi Rizzo * from host stack: 372847bf383SLuigi Rizzo * netmap_transmit() 373847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_intr_notify(ring_nr == host ring) 374847bf383SLuigi Rizzo * kring->nm_sync() == netmap_rxsync_from_host_compat() 375847bf383SLuigi Rizzo * netmap_vp_txsync() 3764bf50f18SLuigi Rizzo * 377847bf383SLuigi Rizzo * - system device with generic support: 378847bf383SLuigi Rizzo * from device driver: 379847bf383SLuigi Rizzo * generic_rx_handler() 380847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_intr_notify(ring_nr != host ring) 381847bf383SLuigi Rizzo * kring->nm_sync() == generic_netmap_rxsync() 382847bf383SLuigi Rizzo * netmap_vp_txsync() 383847bf383SLuigi Rizzo * kring->nm_sync() == generic_netmap_rxsync() 384847bf383SLuigi Rizzo * from host stack: 385847bf383SLuigi Rizzo * netmap_transmit() 386847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_intr_notify(ring_nr == host ring) 387847bf383SLuigi Rizzo * kring->nm_sync() == netmap_rxsync_from_host_compat() 388847bf383SLuigi Rizzo * netmap_vp_txsync() 3894bf50f18SLuigi Rizzo * 390847bf383SLuigi Rizzo * (all cases) --> nm_bdg_flush() 391847bf383SLuigi Rizzo * dest_na->nm_notify() == (see below) 3924bf50f18SLuigi Rizzo * 393847bf383SLuigi Rizzo * OUTGOING: 3944bf50f18SLuigi Rizzo * 395847bf383SLuigi Rizzo * - VALE ports: 396847bf383SLuigi Rizzo * concurrently: 397847bf383SLuigi Rizzo * 1) ioctlNIOCRXSYNC)/netmap_poll() in process context 398847bf383SLuigi Rizzo * kring->nm_sync() == netmap_vp_rxsync() 399847bf383SLuigi Rizzo * 2) from nm_bdg_flush() 400847bf383SLuigi Rizzo * na->nm_notify() == netmap_notify() 4014bf50f18SLuigi Rizzo * 402847bf383SLuigi Rizzo * - system device with native support: 403847bf383SLuigi Rizzo * to cable: 404847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_notify() 405847bf383SLuigi Rizzo * netmap_vp_rxsync() 406847bf383SLuigi Rizzo * kring->nm_sync() == DEVICE_netmap_txsync() 407847bf383SLuigi Rizzo * netmap_vp_rxsync() 408847bf383SLuigi Rizzo * to host stack: 409847bf383SLuigi Rizzo * netmap_vp_rxsync() 410847bf383SLuigi Rizzo * kring->nm_sync() == netmap_txsync_to_host_compat 411847bf383SLuigi Rizzo * netmap_vp_rxsync_locked() 4124bf50f18SLuigi Rizzo * 413847bf383SLuigi Rizzo * - system device with generic adapter: 414847bf383SLuigi Rizzo * to device driver: 415847bf383SLuigi Rizzo * na->nm_notify() == netmap_bwrap_notify() 416847bf383SLuigi Rizzo * netmap_vp_rxsync() 417847bf383SLuigi Rizzo * kring->nm_sync() == generic_netmap_txsync() 418847bf383SLuigi Rizzo * netmap_vp_rxsync() 419847bf383SLuigi Rizzo * to host stack: 420847bf383SLuigi Rizzo * netmap_vp_rxsync() 421847bf383SLuigi Rizzo * kring->nm_sync() == netmap_txsync_to_host_compat 422847bf383SLuigi Rizzo * netmap_vp_rxsync() 4234bf50f18SLuigi Rizzo * 4244bf50f18SLuigi Rizzo */ 4254bf50f18SLuigi Rizzo 426ce3ee1e7SLuigi Rizzo /* 427ce3ee1e7SLuigi Rizzo * OS-specific code that is used only within this file. 428ce3ee1e7SLuigi Rizzo * Other OS-specific code that must be accessed by drivers 429ce3ee1e7SLuigi Rizzo * is present in netmap_kern.h 430ce3ee1e7SLuigi Rizzo */ 43101c7d25fSLuigi Rizzo 432ce3ee1e7SLuigi Rizzo #if defined(__FreeBSD__) 43368b8534bSLuigi Rizzo #include <sys/cdefs.h> /* prerequisite */ 43468b8534bSLuigi Rizzo #include <sys/types.h> 43568b8534bSLuigi Rizzo #include <sys/errno.h> 43668b8534bSLuigi Rizzo #include <sys/param.h> /* defines used in kernel.h */ 43768b8534bSLuigi Rizzo #include <sys/kernel.h> /* types used in module initialization */ 438f9790aebSLuigi Rizzo #include <sys/conf.h> /* cdevsw struct, UID, GID */ 43989e3fd52SLuigi Rizzo #include <sys/filio.h> /* FIONBIO */ 44068b8534bSLuigi Rizzo #include <sys/sockio.h> 44168b8534bSLuigi Rizzo #include <sys/socketvar.h> /* struct socket */ 44268b8534bSLuigi Rizzo #include <sys/malloc.h> 44368b8534bSLuigi Rizzo #include <sys/poll.h> 44489f6b863SAttilio Rao #include <sys/rwlock.h> 44568b8534bSLuigi Rizzo #include <sys/socket.h> /* sockaddrs */ 44668b8534bSLuigi Rizzo #include <sys/selinfo.h> 44768b8534bSLuigi Rizzo #include <sys/sysctl.h> 448339f59c0SGleb Smirnoff #include <sys/jail.h> 449339f59c0SGleb Smirnoff #include <net/vnet.h> 45068b8534bSLuigi Rizzo #include <net/if.h> 45176039bc8SGleb Smirnoff #include <net/if_var.h> 45268b8534bSLuigi Rizzo #include <net/bpf.h> /* BIOCIMMEDIATE */ 45368b8534bSLuigi Rizzo #include <machine/bus.h> /* bus_dmamap_* */ 454ce3ee1e7SLuigi Rizzo #include <sys/endian.h> 455ce3ee1e7SLuigi Rizzo #include <sys/refcount.h> 45668b8534bSLuigi Rizzo 45768b8534bSLuigi Rizzo 458f9790aebSLuigi Rizzo /* reduce conditional code */ 459f0ea3689SLuigi Rizzo // linux API, use for the knlist in FreeBSD 4600e73f29aSLuigi Rizzo /* use a private mutex for the knlist */ 4610e73f29aSLuigi Rizzo #define init_waitqueue_head(x) do { \ 4620e73f29aSLuigi Rizzo struct mtx *m = &(x)->m; \ 4630e73f29aSLuigi Rizzo mtx_init(m, "nm_kn_lock", NULL, MTX_DEF); \ 4640e73f29aSLuigi Rizzo knlist_init_mtx(&(x)->si.si_note, m); \ 4650e73f29aSLuigi Rizzo } while (0) 466ce3ee1e7SLuigi Rizzo 4670e73f29aSLuigi Rizzo #define OS_selrecord(a, b) selrecord(a, &((b)->si)) 468f0ea3689SLuigi Rizzo #define OS_selwakeup(a, b) freebsd_selwakeup(a, b) 469ce3ee1e7SLuigi Rizzo 470ce3ee1e7SLuigi Rizzo #elif defined(linux) 471ce3ee1e7SLuigi Rizzo 472ce3ee1e7SLuigi Rizzo #include "bsd_glue.h" 473ce3ee1e7SLuigi Rizzo 474ce3ee1e7SLuigi Rizzo 475ce3ee1e7SLuigi Rizzo 476ce3ee1e7SLuigi Rizzo #elif defined(__APPLE__) 477ce3ee1e7SLuigi Rizzo 478ce3ee1e7SLuigi Rizzo #warning OSX support is only partial 479ce3ee1e7SLuigi Rizzo #include "osx_glue.h" 480ce3ee1e7SLuigi Rizzo 481ce3ee1e7SLuigi Rizzo #else 482ce3ee1e7SLuigi Rizzo 483ce3ee1e7SLuigi Rizzo #error Unsupported platform 484ce3ee1e7SLuigi Rizzo 485ce3ee1e7SLuigi Rizzo #endif /* unsupported */ 486ce3ee1e7SLuigi Rizzo 487ce3ee1e7SLuigi Rizzo /* 488ce3ee1e7SLuigi Rizzo * common headers 489ce3ee1e7SLuigi Rizzo */ 4900b8ed8e0SLuigi Rizzo #include <net/netmap.h> 4910b8ed8e0SLuigi Rizzo #include <dev/netmap/netmap_kern.h> 492ce3ee1e7SLuigi Rizzo #include <dev/netmap/netmap_mem2.h> 4930b8ed8e0SLuigi Rizzo 494ce3ee1e7SLuigi Rizzo 495ce3ee1e7SLuigi Rizzo MALLOC_DEFINE(M_NETMAP, "netmap", "Network memory map"); 496ce3ee1e7SLuigi Rizzo 4975819da83SLuigi Rizzo /* user-controlled variables */ 4985819da83SLuigi Rizzo int netmap_verbose; 4995819da83SLuigi Rizzo 5005819da83SLuigi Rizzo static int netmap_no_timestamp; /* don't timestamp on rxsync */ 5015819da83SLuigi Rizzo 5025819da83SLuigi Rizzo SYSCTL_NODE(_dev, OID_AUTO, netmap, CTLFLAG_RW, 0, "Netmap args"); 5035819da83SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, verbose, 5045819da83SLuigi Rizzo CTLFLAG_RW, &netmap_verbose, 0, "Verbose mode"); 5055819da83SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, no_timestamp, 5065819da83SLuigi Rizzo CTLFLAG_RW, &netmap_no_timestamp, 0, "no_timestamp"); 5075819da83SLuigi Rizzo int netmap_mitigate = 1; 5085819da83SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, mitigate, CTLFLAG_RW, &netmap_mitigate, 0, ""); 509c85cb1a0SLuigi Rizzo int netmap_no_pendintr = 1; 5105819da83SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, no_pendintr, 5115819da83SLuigi Rizzo CTLFLAG_RW, &netmap_no_pendintr, 0, "Always look for new received packets."); 512f18be576SLuigi Rizzo int netmap_txsync_retry = 2; 513f18be576SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, txsync_retry, CTLFLAG_RW, 514f18be576SLuigi Rizzo &netmap_txsync_retry, 0 , "Number of txsync loops in bridge's flush."); 5155819da83SLuigi Rizzo 5164bf50f18SLuigi Rizzo int netmap_adaptive_io = 0; 5174bf50f18SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, adaptive_io, CTLFLAG_RW, 5184bf50f18SLuigi Rizzo &netmap_adaptive_io, 0 , "Adaptive I/O on paravirt"); 5194bf50f18SLuigi Rizzo 520f196ce38SLuigi Rizzo int netmap_flags = 0; /* debug flags */ 521091fd0abSLuigi Rizzo int netmap_fwd = 0; /* force transparent mode */ 522f196ce38SLuigi Rizzo 523f9790aebSLuigi Rizzo /* 524f9790aebSLuigi Rizzo * netmap_admode selects the netmap mode to use. 525f9790aebSLuigi Rizzo * Invalid values are reset to NETMAP_ADMODE_BEST 526f9790aebSLuigi Rizzo */ 527f9790aebSLuigi Rizzo enum { NETMAP_ADMODE_BEST = 0, /* use native, fallback to generic */ 528f9790aebSLuigi Rizzo NETMAP_ADMODE_NATIVE, /* either native or none */ 529f9790aebSLuigi Rizzo NETMAP_ADMODE_GENERIC, /* force generic */ 530f9790aebSLuigi Rizzo NETMAP_ADMODE_LAST }; 531f9790aebSLuigi Rizzo static int netmap_admode = NETMAP_ADMODE_BEST; 532f9790aebSLuigi Rizzo 533f9790aebSLuigi Rizzo int netmap_generic_mit = 100*1000; /* Generic mitigation interval in nanoseconds. */ 534f9790aebSLuigi Rizzo int netmap_generic_ringsize = 1024; /* Generic ringsize. */ 535f0ea3689SLuigi Rizzo int netmap_generic_rings = 1; /* number of queues in generic. */ 536f9790aebSLuigi Rizzo 537f196ce38SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, flags, CTLFLAG_RW, &netmap_flags, 0 , ""); 538091fd0abSLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, fwd, CTLFLAG_RW, &netmap_fwd, 0 , ""); 539f9790aebSLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, admode, CTLFLAG_RW, &netmap_admode, 0 , ""); 540f9790aebSLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, generic_mit, CTLFLAG_RW, &netmap_generic_mit, 0 , ""); 541f9790aebSLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, generic_ringsize, CTLFLAG_RW, &netmap_generic_ringsize, 0 , ""); 542f0ea3689SLuigi Rizzo SYSCTL_INT(_dev_netmap, OID_AUTO, generic_rings, CTLFLAG_RW, &netmap_generic_rings, 0 , ""); 543f196ce38SLuigi Rizzo 544ce3ee1e7SLuigi Rizzo NMG_LOCK_T netmap_global_lock; 545847adfb7SLuigi Rizzo int netmap_use_count = 0; /* number of active netmap instances */ 546ce3ee1e7SLuigi Rizzo 54717885a7bSLuigi Rizzo /* 54817885a7bSLuigi Rizzo * mark the ring as stopped, and run through the locks 54917885a7bSLuigi Rizzo * to make sure other users get to see it. 55017885a7bSLuigi Rizzo */ 5514bf50f18SLuigi Rizzo static void 552f9790aebSLuigi Rizzo netmap_disable_ring(struct netmap_kring *kr) 553ce3ee1e7SLuigi Rizzo { 554ce3ee1e7SLuigi Rizzo kr->nkr_stopped = 1; 555ce3ee1e7SLuigi Rizzo nm_kr_get(kr); 556ce3ee1e7SLuigi Rizzo mtx_lock(&kr->q_lock); 557ce3ee1e7SLuigi Rizzo mtx_unlock(&kr->q_lock); 558ce3ee1e7SLuigi Rizzo nm_kr_put(kr); 559ce3ee1e7SLuigi Rizzo } 560ce3ee1e7SLuigi Rizzo 561847bf383SLuigi Rizzo /* stop or enable a single ring */ 5624bf50f18SLuigi Rizzo void 563847bf383SLuigi Rizzo netmap_set_ring(struct netmap_adapter *na, u_int ring_id, enum txrx t, int stopped) 5644bf50f18SLuigi Rizzo { 5654bf50f18SLuigi Rizzo if (stopped) 566847bf383SLuigi Rizzo netmap_disable_ring(NMR(na, t) + ring_id); 5674bf50f18SLuigi Rizzo else 568847bf383SLuigi Rizzo NMR(na, t)[ring_id].nkr_stopped = 0; 5694bf50f18SLuigi Rizzo } 5704bf50f18SLuigi Rizzo 571f9790aebSLuigi Rizzo 57289cc2556SLuigi Rizzo /* stop or enable all the rings of na */ 5734bf50f18SLuigi Rizzo void 5744bf50f18SLuigi Rizzo netmap_set_all_rings(struct netmap_adapter *na, int stopped) 575ce3ee1e7SLuigi Rizzo { 576ce3ee1e7SLuigi Rizzo int i; 577847bf383SLuigi Rizzo enum txrx t; 578ce3ee1e7SLuigi Rizzo 5794bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) 580ce3ee1e7SLuigi Rizzo return; 581ce3ee1e7SLuigi Rizzo 582847bf383SLuigi Rizzo for_rx_tx(t) { 583847bf383SLuigi Rizzo for (i = 0; i < netmap_real_rings(na, t); i++) { 584847bf383SLuigi Rizzo netmap_set_ring(na, i, t, stopped); 585ce3ee1e7SLuigi Rizzo } 586ce3ee1e7SLuigi Rizzo } 587ce3ee1e7SLuigi Rizzo } 588ce3ee1e7SLuigi Rizzo 58989cc2556SLuigi Rizzo /* 59089cc2556SLuigi Rizzo * Convenience function used in drivers. Waits for current txsync()s/rxsync()s 59189cc2556SLuigi Rizzo * to finish and prevents any new one from starting. Call this before turning 592ddb13598SKevin Lo * netmap mode off, or before removing the hardware rings (e.g., on module 59389cc2556SLuigi Rizzo * onload). As a rule of thumb for linux drivers, this should be placed near 59489cc2556SLuigi Rizzo * each napi_disable(). 59589cc2556SLuigi Rizzo */ 596f9790aebSLuigi Rizzo void 597f9790aebSLuigi Rizzo netmap_disable_all_rings(struct ifnet *ifp) 598f9790aebSLuigi Rizzo { 5994bf50f18SLuigi Rizzo netmap_set_all_rings(NA(ifp), 1 /* stopped */); 600f9790aebSLuigi Rizzo } 601f9790aebSLuigi Rizzo 60289cc2556SLuigi Rizzo /* 60389cc2556SLuigi Rizzo * Convenience function used in drivers. Re-enables rxsync and txsync on the 60489cc2556SLuigi Rizzo * adapter's rings In linux drivers, this should be placed near each 60589cc2556SLuigi Rizzo * napi_enable(). 60689cc2556SLuigi Rizzo */ 607f9790aebSLuigi Rizzo void 608f9790aebSLuigi Rizzo netmap_enable_all_rings(struct ifnet *ifp) 609f9790aebSLuigi Rizzo { 6104bf50f18SLuigi Rizzo netmap_set_all_rings(NA(ifp), 0 /* enabled */); 611f9790aebSLuigi Rizzo } 612f9790aebSLuigi Rizzo 613f9790aebSLuigi Rizzo 614ce3ee1e7SLuigi Rizzo /* 615ce3ee1e7SLuigi Rizzo * generic bound_checking function 616ce3ee1e7SLuigi Rizzo */ 617ce3ee1e7SLuigi Rizzo u_int 618ce3ee1e7SLuigi Rizzo nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg) 619ce3ee1e7SLuigi Rizzo { 620ce3ee1e7SLuigi Rizzo u_int oldv = *v; 621ce3ee1e7SLuigi Rizzo const char *op = NULL; 622ce3ee1e7SLuigi Rizzo 623ce3ee1e7SLuigi Rizzo if (dflt < lo) 624ce3ee1e7SLuigi Rizzo dflt = lo; 625ce3ee1e7SLuigi Rizzo if (dflt > hi) 626ce3ee1e7SLuigi Rizzo dflt = hi; 627ce3ee1e7SLuigi Rizzo if (oldv < lo) { 628ce3ee1e7SLuigi Rizzo *v = dflt; 629ce3ee1e7SLuigi Rizzo op = "Bump"; 630ce3ee1e7SLuigi Rizzo } else if (oldv > hi) { 631ce3ee1e7SLuigi Rizzo *v = hi; 632ce3ee1e7SLuigi Rizzo op = "Clamp"; 633ce3ee1e7SLuigi Rizzo } 634ce3ee1e7SLuigi Rizzo if (op && msg) 635ce3ee1e7SLuigi Rizzo printf("%s %s to %d (was %d)\n", op, msg, *v, oldv); 636ce3ee1e7SLuigi Rizzo return *v; 637ce3ee1e7SLuigi Rizzo } 638ce3ee1e7SLuigi Rizzo 639f9790aebSLuigi Rizzo 640ce3ee1e7SLuigi Rizzo /* 641ce3ee1e7SLuigi Rizzo * packet-dump function, user-supplied or static buffer. 642ce3ee1e7SLuigi Rizzo * The destination buffer must be at least 30+4*len 643ce3ee1e7SLuigi Rizzo */ 644ce3ee1e7SLuigi Rizzo const char * 645ce3ee1e7SLuigi Rizzo nm_dump_buf(char *p, int len, int lim, char *dst) 646ce3ee1e7SLuigi Rizzo { 647ce3ee1e7SLuigi Rizzo static char _dst[8192]; 648ce3ee1e7SLuigi Rizzo int i, j, i0; 649ce3ee1e7SLuigi Rizzo static char hex[] ="0123456789abcdef"; 650ce3ee1e7SLuigi Rizzo char *o; /* output position */ 651ce3ee1e7SLuigi Rizzo 652ce3ee1e7SLuigi Rizzo #define P_HI(x) hex[((x) & 0xf0)>>4] 653ce3ee1e7SLuigi Rizzo #define P_LO(x) hex[((x) & 0xf)] 654ce3ee1e7SLuigi Rizzo #define P_C(x) ((x) >= 0x20 && (x) <= 0x7e ? (x) : '.') 655ce3ee1e7SLuigi Rizzo if (!dst) 656ce3ee1e7SLuigi Rizzo dst = _dst; 657ce3ee1e7SLuigi Rizzo if (lim <= 0 || lim > len) 658ce3ee1e7SLuigi Rizzo lim = len; 659ce3ee1e7SLuigi Rizzo o = dst; 660ce3ee1e7SLuigi Rizzo sprintf(o, "buf 0x%p len %d lim %d\n", p, len, lim); 661ce3ee1e7SLuigi Rizzo o += strlen(o); 662ce3ee1e7SLuigi Rizzo /* hexdump routine */ 663ce3ee1e7SLuigi Rizzo for (i = 0; i < lim; ) { 664ce3ee1e7SLuigi Rizzo sprintf(o, "%5d: ", i); 665ce3ee1e7SLuigi Rizzo o += strlen(o); 666ce3ee1e7SLuigi Rizzo memset(o, ' ', 48); 667ce3ee1e7SLuigi Rizzo i0 = i; 668ce3ee1e7SLuigi Rizzo for (j=0; j < 16 && i < lim; i++, j++) { 669ce3ee1e7SLuigi Rizzo o[j*3] = P_HI(p[i]); 670ce3ee1e7SLuigi Rizzo o[j*3+1] = P_LO(p[i]); 671ce3ee1e7SLuigi Rizzo } 672ce3ee1e7SLuigi Rizzo i = i0; 673ce3ee1e7SLuigi Rizzo for (j=0; j < 16 && i < lim; i++, j++) 674ce3ee1e7SLuigi Rizzo o[j + 48] = P_C(p[i]); 675ce3ee1e7SLuigi Rizzo o[j+48] = '\n'; 676ce3ee1e7SLuigi Rizzo o += j+49; 677ce3ee1e7SLuigi Rizzo } 678ce3ee1e7SLuigi Rizzo *o = '\0'; 679ce3ee1e7SLuigi Rizzo #undef P_HI 680ce3ee1e7SLuigi Rizzo #undef P_LO 681ce3ee1e7SLuigi Rizzo #undef P_C 682ce3ee1e7SLuigi Rizzo return dst; 683ce3ee1e7SLuigi Rizzo } 684f196ce38SLuigi Rizzo 685f18be576SLuigi Rizzo 686ae10d1afSLuigi Rizzo /* 687ae10d1afSLuigi Rizzo * Fetch configuration from the device, to cope with dynamic 688ae10d1afSLuigi Rizzo * reconfigurations after loading the module. 689ae10d1afSLuigi Rizzo */ 69089cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 691f9790aebSLuigi Rizzo int 692ae10d1afSLuigi Rizzo netmap_update_config(struct netmap_adapter *na) 693ae10d1afSLuigi Rizzo { 694ae10d1afSLuigi Rizzo u_int txr, txd, rxr, rxd; 695ae10d1afSLuigi Rizzo 696ae10d1afSLuigi Rizzo txr = txd = rxr = rxd = 0; 6976641c68bSLuigi Rizzo if (na->nm_config == NULL || 698847bf383SLuigi Rizzo na->nm_config(na, &txr, &txd, &rxr, &rxd)) 699847bf383SLuigi Rizzo { 700ae10d1afSLuigi Rizzo /* take whatever we had at init time */ 701ae10d1afSLuigi Rizzo txr = na->num_tx_rings; 702ae10d1afSLuigi Rizzo txd = na->num_tx_desc; 703ae10d1afSLuigi Rizzo rxr = na->num_rx_rings; 704ae10d1afSLuigi Rizzo rxd = na->num_rx_desc; 705ae10d1afSLuigi Rizzo } 706ae10d1afSLuigi Rizzo 707ae10d1afSLuigi Rizzo if (na->num_tx_rings == txr && na->num_tx_desc == txd && 708ae10d1afSLuigi Rizzo na->num_rx_rings == rxr && na->num_rx_desc == rxd) 709ae10d1afSLuigi Rizzo return 0; /* nothing changed */ 710f9790aebSLuigi Rizzo if (netmap_verbose || na->active_fds > 0) { 711ae10d1afSLuigi Rizzo D("stored config %s: txring %d x %d, rxring %d x %d", 7124bf50f18SLuigi Rizzo na->name, 713ae10d1afSLuigi Rizzo na->num_tx_rings, na->num_tx_desc, 714ae10d1afSLuigi Rizzo na->num_rx_rings, na->num_rx_desc); 715ae10d1afSLuigi Rizzo D("new config %s: txring %d x %d, rxring %d x %d", 7164bf50f18SLuigi Rizzo na->name, txr, txd, rxr, rxd); 717ae10d1afSLuigi Rizzo } 718f9790aebSLuigi Rizzo if (na->active_fds == 0) { 719ae10d1afSLuigi Rizzo D("configuration changed (but fine)"); 720ae10d1afSLuigi Rizzo na->num_tx_rings = txr; 721ae10d1afSLuigi Rizzo na->num_tx_desc = txd; 722ae10d1afSLuigi Rizzo na->num_rx_rings = rxr; 723ae10d1afSLuigi Rizzo na->num_rx_desc = rxd; 724ae10d1afSLuigi Rizzo return 0; 725ae10d1afSLuigi Rizzo } 726ae10d1afSLuigi Rizzo D("configuration changed while active, this is bad..."); 727ae10d1afSLuigi Rizzo return 1; 728ae10d1afSLuigi Rizzo } 729ae10d1afSLuigi Rizzo 7308fd44c93SLuigi Rizzo static void netmap_txsync_to_host(struct netmap_adapter *na); 7318fd44c93SLuigi Rizzo static int netmap_rxsync_from_host(struct netmap_adapter *na, struct thread *td, void *pwait); 7328fd44c93SLuigi Rizzo 73389cc2556SLuigi Rizzo /* kring->nm_sync callback for the host tx ring */ 734f0ea3689SLuigi Rizzo static int 735f0ea3689SLuigi Rizzo netmap_txsync_to_host_compat(struct netmap_kring *kring, int flags) 736f0ea3689SLuigi Rizzo { 73789cc2556SLuigi Rizzo (void)flags; /* unused */ 738f0ea3689SLuigi Rizzo netmap_txsync_to_host(kring->na); 739f0ea3689SLuigi Rizzo return 0; 740f0ea3689SLuigi Rizzo } 741f0ea3689SLuigi Rizzo 74289cc2556SLuigi Rizzo /* kring->nm_sync callback for the host rx ring */ 743f0ea3689SLuigi Rizzo static int 744f0ea3689SLuigi Rizzo netmap_rxsync_from_host_compat(struct netmap_kring *kring, int flags) 745f0ea3689SLuigi Rizzo { 74689cc2556SLuigi Rizzo (void)flags; /* unused */ 747f0ea3689SLuigi Rizzo netmap_rxsync_from_host(kring->na, NULL, NULL); 748f0ea3689SLuigi Rizzo return 0; 749f0ea3689SLuigi Rizzo } 750f0ea3689SLuigi Rizzo 751f0ea3689SLuigi Rizzo 752f0ea3689SLuigi Rizzo 753f0ea3689SLuigi Rizzo /* create the krings array and initialize the fields common to all adapters. 754f0ea3689SLuigi Rizzo * The array layout is this: 755f0ea3689SLuigi Rizzo * 756f0ea3689SLuigi Rizzo * +----------+ 757f0ea3689SLuigi Rizzo * na->tx_rings ----->| | \ 758f0ea3689SLuigi Rizzo * | | } na->num_tx_ring 759f0ea3689SLuigi Rizzo * | | / 760f0ea3689SLuigi Rizzo * +----------+ 761f0ea3689SLuigi Rizzo * | | host tx kring 762f0ea3689SLuigi Rizzo * na->rx_rings ----> +----------+ 763f0ea3689SLuigi Rizzo * | | \ 764f0ea3689SLuigi Rizzo * | | } na->num_rx_rings 765f0ea3689SLuigi Rizzo * | | / 766f0ea3689SLuigi Rizzo * +----------+ 767f0ea3689SLuigi Rizzo * | | host rx kring 768f0ea3689SLuigi Rizzo * +----------+ 769f0ea3689SLuigi Rizzo * na->tailroom ----->| | \ 770f0ea3689SLuigi Rizzo * | | } tailroom bytes 771f0ea3689SLuigi Rizzo * | | / 772f0ea3689SLuigi Rizzo * +----------+ 773f0ea3689SLuigi Rizzo * 774f0ea3689SLuigi Rizzo * Note: for compatibility, host krings are created even when not needed. 775f0ea3689SLuigi Rizzo * The tailroom space is currently used by vale ports for allocating leases. 776f0ea3689SLuigi Rizzo */ 77789cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 778f9790aebSLuigi Rizzo int 779f0ea3689SLuigi Rizzo netmap_krings_create(struct netmap_adapter *na, u_int tailroom) 780f9790aebSLuigi Rizzo { 781f9790aebSLuigi Rizzo u_int i, len, ndesc; 782f9790aebSLuigi Rizzo struct netmap_kring *kring; 783847bf383SLuigi Rizzo u_int n[NR_TXRX]; 784847bf383SLuigi Rizzo enum txrx t; 785f9790aebSLuigi Rizzo 786f0ea3689SLuigi Rizzo /* account for the (possibly fake) host rings */ 787847bf383SLuigi Rizzo n[NR_TX] = na->num_tx_rings + 1; 788847bf383SLuigi Rizzo n[NR_RX] = na->num_rx_rings + 1; 789f0ea3689SLuigi Rizzo 790847bf383SLuigi Rizzo len = (n[NR_TX] + n[NR_RX]) * sizeof(struct netmap_kring) + tailroom; 791f9790aebSLuigi Rizzo 792f9790aebSLuigi Rizzo na->tx_rings = malloc((size_t)len, M_DEVBUF, M_NOWAIT | M_ZERO); 793f9790aebSLuigi Rizzo if (na->tx_rings == NULL) { 794f9790aebSLuigi Rizzo D("Cannot allocate krings"); 795f9790aebSLuigi Rizzo return ENOMEM; 796f9790aebSLuigi Rizzo } 797847bf383SLuigi Rizzo na->rx_rings = na->tx_rings + n[NR_TX]; 798f9790aebSLuigi Rizzo 79917885a7bSLuigi Rizzo /* 80017885a7bSLuigi Rizzo * All fields in krings are 0 except the one initialized below. 80117885a7bSLuigi Rizzo * but better be explicit on important kring fields. 80217885a7bSLuigi Rizzo */ 803847bf383SLuigi Rizzo for_rx_tx(t) { 804847bf383SLuigi Rizzo ndesc = nma_get_ndesc(na, t); 805847bf383SLuigi Rizzo for (i = 0; i < n[t]; i++) { 806847bf383SLuigi Rizzo kring = &NMR(na, t)[i]; 807f9790aebSLuigi Rizzo bzero(kring, sizeof(*kring)); 808f9790aebSLuigi Rizzo kring->na = na; 80917885a7bSLuigi Rizzo kring->ring_id = i; 810847bf383SLuigi Rizzo kring->tx = t; 811f9790aebSLuigi Rizzo kring->nkr_num_slots = ndesc; 812847bf383SLuigi Rizzo if (i < nma_get_nrings(na, t)) { 813847bf383SLuigi Rizzo kring->nm_sync = (t == NR_TX ? na->nm_txsync : na->nm_rxsync); 814f0ea3689SLuigi Rizzo } else if (i == na->num_tx_rings) { 815847bf383SLuigi Rizzo kring->nm_sync = (t == NR_TX ? 816847bf383SLuigi Rizzo netmap_txsync_to_host_compat : 817847bf383SLuigi Rizzo netmap_rxsync_from_host_compat); 818f0ea3689SLuigi Rizzo } 819847bf383SLuigi Rizzo kring->nm_notify = na->nm_notify; 820847bf383SLuigi Rizzo kring->rhead = kring->rcur = kring->nr_hwcur = 0; 821f9790aebSLuigi Rizzo /* 82217885a7bSLuigi Rizzo * IMPORTANT: Always keep one slot empty. 823f9790aebSLuigi Rizzo */ 824847bf383SLuigi Rizzo kring->rtail = kring->nr_hwtail = (t == NR_TX ? ndesc - 1 : 0); 825847bf383SLuigi Rizzo snprintf(kring->name, sizeof(kring->name) - 1, "%s %s%d", na->name, 826847bf383SLuigi Rizzo nm_txrx2str(t), i); 827f0ea3689SLuigi Rizzo ND("ktx %s h %d c %d t %d", 828f0ea3689SLuigi Rizzo kring->name, kring->rhead, kring->rcur, kring->rtail); 829847bf383SLuigi Rizzo mtx_init(&kring->q_lock, (t == NR_TX ? "nm_txq_lock" : "nm_rxq_lock"), NULL, MTX_DEF); 830f9790aebSLuigi Rizzo init_waitqueue_head(&kring->si); 831f9790aebSLuigi Rizzo } 832847bf383SLuigi Rizzo init_waitqueue_head(&na->si[t]); 833f0ea3689SLuigi Rizzo } 834f9790aebSLuigi Rizzo 835847bf383SLuigi Rizzo na->tailroom = na->rx_rings + n[NR_RX]; 836f9790aebSLuigi Rizzo 837f9790aebSLuigi Rizzo return 0; 838f9790aebSLuigi Rizzo } 839f9790aebSLuigi Rizzo 840f9790aebSLuigi Rizzo 8410e73f29aSLuigi Rizzo #ifdef __FreeBSD__ 8420e73f29aSLuigi Rizzo static void 8430e73f29aSLuigi Rizzo netmap_knlist_destroy(NM_SELINFO_T *si) 8440e73f29aSLuigi Rizzo { 8450e73f29aSLuigi Rizzo /* XXX kqueue(9) needed; these will mirror knlist_init. */ 8460e73f29aSLuigi Rizzo knlist_delete(&si->si.si_note, curthread, 0 /* not locked */ ); 8470e73f29aSLuigi Rizzo knlist_destroy(&si->si.si_note); 8480e73f29aSLuigi Rizzo /* now we don't need the mutex anymore */ 8490e73f29aSLuigi Rizzo mtx_destroy(&si->m); 8500e73f29aSLuigi Rizzo } 8510e73f29aSLuigi Rizzo #endif /* __FreeBSD__ */ 8520e73f29aSLuigi Rizzo 8530e73f29aSLuigi Rizzo 854f0ea3689SLuigi Rizzo /* undo the actions performed by netmap_krings_create */ 85589cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 856f9790aebSLuigi Rizzo void 857f9790aebSLuigi Rizzo netmap_krings_delete(struct netmap_adapter *na) 858f9790aebSLuigi Rizzo { 859f0ea3689SLuigi Rizzo struct netmap_kring *kring = na->tx_rings; 860847bf383SLuigi Rizzo enum txrx t; 861847bf383SLuigi Rizzo 862847bf383SLuigi Rizzo for_rx_tx(t) 863847bf383SLuigi Rizzo netmap_knlist_destroy(&na->si[t]); 864f9790aebSLuigi Rizzo 865f0ea3689SLuigi Rizzo /* we rely on the krings layout described above */ 866f0ea3689SLuigi Rizzo for ( ; kring != na->tailroom; kring++) { 867f0ea3689SLuigi Rizzo mtx_destroy(&kring->q_lock); 8680e73f29aSLuigi Rizzo netmap_knlist_destroy(&kring->si); 869f9790aebSLuigi Rizzo } 870f9790aebSLuigi Rizzo free(na->tx_rings, M_DEVBUF); 871f9790aebSLuigi Rizzo na->tx_rings = na->rx_rings = na->tailroom = NULL; 872f9790aebSLuigi Rizzo } 873f9790aebSLuigi Rizzo 874f9790aebSLuigi Rizzo 87517885a7bSLuigi Rizzo /* 87617885a7bSLuigi Rizzo * Destructor for NIC ports. They also have an mbuf queue 87717885a7bSLuigi Rizzo * on the rings connected to the host so we need to purge 87817885a7bSLuigi Rizzo * them first. 87917885a7bSLuigi Rizzo */ 88089cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 88117885a7bSLuigi Rizzo static void 88217885a7bSLuigi Rizzo netmap_hw_krings_delete(struct netmap_adapter *na) 88317885a7bSLuigi Rizzo { 88417885a7bSLuigi Rizzo struct mbq *q = &na->rx_rings[na->num_rx_rings].rx_queue; 88517885a7bSLuigi Rizzo 88617885a7bSLuigi Rizzo ND("destroy sw mbq with len %d", mbq_len(q)); 88717885a7bSLuigi Rizzo mbq_purge(q); 88817885a7bSLuigi Rizzo mbq_safe_destroy(q); 88917885a7bSLuigi Rizzo netmap_krings_delete(na); 89017885a7bSLuigi Rizzo } 89117885a7bSLuigi Rizzo 89217885a7bSLuigi Rizzo 893f9790aebSLuigi Rizzo 89468b8534bSLuigi Rizzo /* 895847bf383SLuigi Rizzo * Undo everything that was done in netmap_do_regif(). In particular, 896847bf383SLuigi Rizzo * call nm_register(ifp,0) to stop netmap mode on the interface and 8974bf50f18SLuigi Rizzo * revert to normal operation. 89868b8534bSLuigi Rizzo */ 899ce3ee1e7SLuigi Rizzo /* call with NMG_LOCK held */ 900847bf383SLuigi Rizzo static void netmap_unset_ringid(struct netmap_priv_d *); 901847bf383SLuigi Rizzo static void netmap_rel_exclusive(struct netmap_priv_d *); 90268b8534bSLuigi Rizzo static void 903847bf383SLuigi Rizzo netmap_do_unregif(struct netmap_priv_d *priv) 90468b8534bSLuigi Rizzo { 905f9790aebSLuigi Rizzo struct netmap_adapter *na = priv->np_na; 90668b8534bSLuigi Rizzo 907ce3ee1e7SLuigi Rizzo NMG_LOCK_ASSERT(); 908f9790aebSLuigi Rizzo na->active_fds--; 909847bf383SLuigi Rizzo /* release exclusive use if it was requested on regif */ 910847bf383SLuigi Rizzo netmap_rel_exclusive(priv); 911f9790aebSLuigi Rizzo if (na->active_fds <= 0) { /* last instance */ 91268b8534bSLuigi Rizzo 913ae10d1afSLuigi Rizzo if (netmap_verbose) 9144bf50f18SLuigi Rizzo D("deleting last instance for %s", na->name); 915847bf383SLuigi Rizzo 916847bf383SLuigi Rizzo #ifdef WITH_MONITOR 917847bf383SLuigi Rizzo /* walk through all the rings and tell any monitor 918847bf383SLuigi Rizzo * that the port is going to exit netmap mode 919847bf383SLuigi Rizzo */ 920847bf383SLuigi Rizzo netmap_monitor_stop(na); 921847bf383SLuigi Rizzo #endif 92268b8534bSLuigi Rizzo /* 923f18be576SLuigi Rizzo * (TO CHECK) This function is only called 924f18be576SLuigi Rizzo * when the last reference to this file descriptor goes 925f18be576SLuigi Rizzo * away. This means we cannot have any pending poll() 926f18be576SLuigi Rizzo * or interrupt routine operating on the structure. 927ce3ee1e7SLuigi Rizzo * XXX The file may be closed in a thread while 928ce3ee1e7SLuigi Rizzo * another thread is using it. 929ce3ee1e7SLuigi Rizzo * Linux keeps the file opened until the last reference 930ce3ee1e7SLuigi Rizzo * by any outstanding ioctl/poll or mmap is gone. 931ce3ee1e7SLuigi Rizzo * FreeBSD does not track mmap()s (but we do) and 932ce3ee1e7SLuigi Rizzo * wakes up any sleeping poll(). Need to check what 933ce3ee1e7SLuigi Rizzo * happens if the close() occurs while a concurrent 934ce3ee1e7SLuigi Rizzo * syscall is running. 93568b8534bSLuigi Rizzo */ 936f9790aebSLuigi Rizzo na->nm_register(na, 0); /* off, clear flags */ 93768b8534bSLuigi Rizzo /* Wake up any sleeping threads. netmap_poll will 93868b8534bSLuigi Rizzo * then return POLLERR 939ce3ee1e7SLuigi Rizzo * XXX The wake up now must happen during *_down(), when 940ce3ee1e7SLuigi Rizzo * we order all activities to stop. -gl 94168b8534bSLuigi Rizzo */ 942f9790aebSLuigi Rizzo /* delete rings and buffers */ 943f9790aebSLuigi Rizzo netmap_mem_rings_delete(na); 944f9790aebSLuigi Rizzo na->nm_krings_delete(na); 94568b8534bSLuigi Rizzo } 946847bf383SLuigi Rizzo /* possibily decrement counter of tx_si/rx_si users */ 947847bf383SLuigi Rizzo netmap_unset_ringid(priv); 948f9790aebSLuigi Rizzo /* delete the nifp */ 949847bf383SLuigi Rizzo netmap_mem_if_delete(na, priv->np_nifp); 950847bf383SLuigi Rizzo /* drop the allocator */ 951847bf383SLuigi Rizzo netmap_mem_deref(na->nm_mem, na); 952847bf383SLuigi Rizzo /* mark the priv as unregistered */ 953847bf383SLuigi Rizzo priv->np_na = NULL; 954847bf383SLuigi Rizzo priv->np_nifp = NULL; 9555819da83SLuigi Rizzo } 95668b8534bSLuigi Rizzo 95789cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 958f0ea3689SLuigi Rizzo static __inline int 959847bf383SLuigi Rizzo nm_si_user(struct netmap_priv_d *priv, enum txrx t) 960f0ea3689SLuigi Rizzo { 961f0ea3689SLuigi Rizzo return (priv->np_na != NULL && 962847bf383SLuigi Rizzo (priv->np_qlast[t] - priv->np_qfirst[t] > 1)); 963f0ea3689SLuigi Rizzo } 964f0ea3689SLuigi Rizzo 965ce3ee1e7SLuigi Rizzo /* 9668fd44c93SLuigi Rizzo * Destructor of the netmap_priv_d, called when the fd is closed 9678fd44c93SLuigi Rizzo * Action: undo all the things done by NIOCREGIF, 9688fd44c93SLuigi Rizzo * On FreeBSD we need to track whether there are active mmap()s, 9698fd44c93SLuigi Rizzo * and we use np_active_mmaps for that. On linux, the field is always 0. 9708fd44c93SLuigi Rizzo * Return: 1 if we can free priv, 0 otherwise. 97189cc2556SLuigi Rizzo * 972ce3ee1e7SLuigi Rizzo */ 97389cc2556SLuigi Rizzo /* call with NMG_LOCK held */ 974f9790aebSLuigi Rizzo int 975ce3ee1e7SLuigi Rizzo netmap_dtor_locked(struct netmap_priv_d *priv) 976ce3ee1e7SLuigi Rizzo { 977f9790aebSLuigi Rizzo struct netmap_adapter *na = priv->np_na; 978ce3ee1e7SLuigi Rizzo 979847adfb7SLuigi Rizzo /* number of active references to this fd */ 9808fd44c93SLuigi Rizzo if (--priv->np_refs > 0) { 981ce3ee1e7SLuigi Rizzo return 0; 982ce3ee1e7SLuigi Rizzo } 983847adfb7SLuigi Rizzo netmap_use_count--; 984f9790aebSLuigi Rizzo if (!na) { 985f9790aebSLuigi Rizzo return 1; //XXX is it correct? 986ce3ee1e7SLuigi Rizzo } 987847bf383SLuigi Rizzo netmap_do_unregif(priv); 988f9790aebSLuigi Rizzo netmap_adapter_put(na); 989ce3ee1e7SLuigi Rizzo return 1; 990f196ce38SLuigi Rizzo } 9915819da83SLuigi Rizzo 992f9790aebSLuigi Rizzo 99389cc2556SLuigi Rizzo /* call with NMG_LOCK *not* held */ 994f9790aebSLuigi Rizzo void 9955819da83SLuigi Rizzo netmap_dtor(void *data) 9965819da83SLuigi Rizzo { 9975819da83SLuigi Rizzo struct netmap_priv_d *priv = data; 998ce3ee1e7SLuigi Rizzo int last_instance; 9995819da83SLuigi Rizzo 1000ce3ee1e7SLuigi Rizzo NMG_LOCK(); 1001ce3ee1e7SLuigi Rizzo last_instance = netmap_dtor_locked(priv); 1002ce3ee1e7SLuigi Rizzo NMG_UNLOCK(); 1003ce3ee1e7SLuigi Rizzo if (last_instance) { 1004ce3ee1e7SLuigi Rizzo bzero(priv, sizeof(*priv)); /* for safety */ 100568b8534bSLuigi Rizzo free(priv, M_DEVBUF); 100668b8534bSLuigi Rizzo } 1007ce3ee1e7SLuigi Rizzo } 100868b8534bSLuigi Rizzo 1009f18be576SLuigi Rizzo 101068b8534bSLuigi Rizzo 101168b8534bSLuigi Rizzo 101268b8534bSLuigi Rizzo /* 101302ad4083SLuigi Rizzo * Handlers for synchronization of the queues from/to the host. 1014091fd0abSLuigi Rizzo * Netmap has two operating modes: 1015091fd0abSLuigi Rizzo * - in the default mode, the rings connected to the host stack are 1016091fd0abSLuigi Rizzo * just another ring pair managed by userspace; 1017091fd0abSLuigi Rizzo * - in transparent mode (XXX to be defined) incoming packets 1018091fd0abSLuigi Rizzo * (from the host or the NIC) are marked as NS_FORWARD upon 1019091fd0abSLuigi Rizzo * arrival, and the user application has a chance to reset the 1020091fd0abSLuigi Rizzo * flag for packets that should be dropped. 1021091fd0abSLuigi Rizzo * On the RXSYNC or poll(), packets in RX rings between 1022091fd0abSLuigi Rizzo * kring->nr_kcur and ring->cur with NS_FORWARD still set are moved 1023091fd0abSLuigi Rizzo * to the other side. 1024091fd0abSLuigi Rizzo * The transfer NIC --> host is relatively easy, just encapsulate 1025091fd0abSLuigi Rizzo * into mbufs and we are done. The host --> NIC side is slightly 1026091fd0abSLuigi Rizzo * harder because there might not be room in the tx ring so it 1027091fd0abSLuigi Rizzo * might take a while before releasing the buffer. 1028091fd0abSLuigi Rizzo */ 1029091fd0abSLuigi Rizzo 1030f18be576SLuigi Rizzo 1031091fd0abSLuigi Rizzo /* 1032091fd0abSLuigi Rizzo * pass a chain of buffers to the host stack as coming from 'dst' 103317885a7bSLuigi Rizzo * We do not need to lock because the queue is private. 1034091fd0abSLuigi Rizzo */ 1035091fd0abSLuigi Rizzo static void 1036f9790aebSLuigi Rizzo netmap_send_up(struct ifnet *dst, struct mbq *q) 1037091fd0abSLuigi Rizzo { 1038091fd0abSLuigi Rizzo struct mbuf *m; 1039091fd0abSLuigi Rizzo 1040091fd0abSLuigi Rizzo /* send packets up, outside the lock */ 1041f9790aebSLuigi Rizzo while ((m = mbq_dequeue(q)) != NULL) { 1042091fd0abSLuigi Rizzo if (netmap_verbose & NM_VERB_HOST) 1043091fd0abSLuigi Rizzo D("sending up pkt %p size %d", m, MBUF_LEN(m)); 1044091fd0abSLuigi Rizzo NM_SEND_UP(dst, m); 1045091fd0abSLuigi Rizzo } 1046f9790aebSLuigi Rizzo mbq_destroy(q); 1047091fd0abSLuigi Rizzo } 1048091fd0abSLuigi Rizzo 1049f18be576SLuigi Rizzo 1050091fd0abSLuigi Rizzo /* 1051091fd0abSLuigi Rizzo * put a copy of the buffers marked NS_FORWARD into an mbuf chain. 105217885a7bSLuigi Rizzo * Take packets from hwcur to ring->head marked NS_FORWARD (or forced) 105317885a7bSLuigi Rizzo * and pass them up. Drop remaining packets in the unlikely event 105417885a7bSLuigi Rizzo * of an mbuf shortage. 1055091fd0abSLuigi Rizzo */ 1056091fd0abSLuigi Rizzo static void 1057091fd0abSLuigi Rizzo netmap_grab_packets(struct netmap_kring *kring, struct mbq *q, int force) 1058091fd0abSLuigi Rizzo { 105917885a7bSLuigi Rizzo u_int const lim = kring->nkr_num_slots - 1; 1060847bf383SLuigi Rizzo u_int const head = kring->rhead; 106117885a7bSLuigi Rizzo u_int n; 1062f9790aebSLuigi Rizzo struct netmap_adapter *na = kring->na; 1063091fd0abSLuigi Rizzo 106417885a7bSLuigi Rizzo for (n = kring->nr_hwcur; n != head; n = nm_next(n, lim)) { 106517885a7bSLuigi Rizzo struct mbuf *m; 1066091fd0abSLuigi Rizzo struct netmap_slot *slot = &kring->ring->slot[n]; 1067091fd0abSLuigi Rizzo 1068091fd0abSLuigi Rizzo if ((slot->flags & NS_FORWARD) == 0 && !force) 1069091fd0abSLuigi Rizzo continue; 10704bf50f18SLuigi Rizzo if (slot->len < 14 || slot->len > NETMAP_BUF_SIZE(na)) { 107117885a7bSLuigi Rizzo RD(5, "bad pkt at %d len %d", n, slot->len); 1072091fd0abSLuigi Rizzo continue; 1073091fd0abSLuigi Rizzo } 1074091fd0abSLuigi Rizzo slot->flags &= ~NS_FORWARD; // XXX needed ? 107517885a7bSLuigi Rizzo /* XXX TODO: adapt to the case of a multisegment packet */ 10764bf50f18SLuigi Rizzo m = m_devget(NMB(na, slot), slot->len, 0, na->ifp, NULL); 1077091fd0abSLuigi Rizzo 1078091fd0abSLuigi Rizzo if (m == NULL) 1079091fd0abSLuigi Rizzo break; 1080f9790aebSLuigi Rizzo mbq_enqueue(q, m); 1081091fd0abSLuigi Rizzo } 1082091fd0abSLuigi Rizzo } 1083091fd0abSLuigi Rizzo 1084f18be576SLuigi Rizzo 1085091fd0abSLuigi Rizzo /* 108617885a7bSLuigi Rizzo * Send to the NIC rings packets marked NS_FORWARD between 108717885a7bSLuigi Rizzo * kring->nr_hwcur and kring->rhead 108817885a7bSLuigi Rizzo * Called under kring->rx_queue.lock on the sw rx ring, 1089091fd0abSLuigi Rizzo */ 109017885a7bSLuigi Rizzo static u_int 1091091fd0abSLuigi Rizzo netmap_sw_to_nic(struct netmap_adapter *na) 1092091fd0abSLuigi Rizzo { 1093091fd0abSLuigi Rizzo struct netmap_kring *kring = &na->rx_rings[na->num_rx_rings]; 109417885a7bSLuigi Rizzo struct netmap_slot *rxslot = kring->ring->slot; 109517885a7bSLuigi Rizzo u_int i, rxcur = kring->nr_hwcur; 109617885a7bSLuigi Rizzo u_int const head = kring->rhead; 109717885a7bSLuigi Rizzo u_int const src_lim = kring->nkr_num_slots - 1; 109817885a7bSLuigi Rizzo u_int sent = 0; 1099ce3ee1e7SLuigi Rizzo 110017885a7bSLuigi Rizzo /* scan rings to find space, then fill as much as possible */ 110117885a7bSLuigi Rizzo for (i = 0; i < na->num_tx_rings; i++) { 110217885a7bSLuigi Rizzo struct netmap_kring *kdst = &na->tx_rings[i]; 110317885a7bSLuigi Rizzo struct netmap_ring *rdst = kdst->ring; 110417885a7bSLuigi Rizzo u_int const dst_lim = kdst->nkr_num_slots - 1; 1105ce3ee1e7SLuigi Rizzo 110617885a7bSLuigi Rizzo /* XXX do we trust ring or kring->rcur,rtail ? */ 110717885a7bSLuigi Rizzo for (; rxcur != head && !nm_ring_empty(rdst); 110817885a7bSLuigi Rizzo rxcur = nm_next(rxcur, src_lim) ) { 1109091fd0abSLuigi Rizzo struct netmap_slot *src, *dst, tmp; 111017885a7bSLuigi Rizzo u_int dst_cur = rdst->cur; 111117885a7bSLuigi Rizzo 111217885a7bSLuigi Rizzo src = &rxslot[rxcur]; 111317885a7bSLuigi Rizzo if ((src->flags & NS_FORWARD) == 0 && !netmap_fwd) 111417885a7bSLuigi Rizzo continue; 111517885a7bSLuigi Rizzo 111617885a7bSLuigi Rizzo sent++; 111717885a7bSLuigi Rizzo 111817885a7bSLuigi Rizzo dst = &rdst->slot[dst_cur]; 111917885a7bSLuigi Rizzo 1120091fd0abSLuigi Rizzo tmp = *src; 112117885a7bSLuigi Rizzo 1122091fd0abSLuigi Rizzo src->buf_idx = dst->buf_idx; 1123091fd0abSLuigi Rizzo src->flags = NS_BUF_CHANGED; 1124091fd0abSLuigi Rizzo 1125091fd0abSLuigi Rizzo dst->buf_idx = tmp.buf_idx; 1126091fd0abSLuigi Rizzo dst->len = tmp.len; 1127091fd0abSLuigi Rizzo dst->flags = NS_BUF_CHANGED; 1128091fd0abSLuigi Rizzo 11294bf50f18SLuigi Rizzo rdst->cur = nm_next(dst_cur, dst_lim); 1130091fd0abSLuigi Rizzo } 113117885a7bSLuigi Rizzo /* if (sent) XXX txsync ? */ 1132091fd0abSLuigi Rizzo } 113317885a7bSLuigi Rizzo return sent; 1134091fd0abSLuigi Rizzo } 1135091fd0abSLuigi Rizzo 1136f18be576SLuigi Rizzo 1137091fd0abSLuigi Rizzo /* 1138ce3ee1e7SLuigi Rizzo * netmap_txsync_to_host() passes packets up. We are called from a 113902ad4083SLuigi Rizzo * system call in user process context, and the only contention 114002ad4083SLuigi Rizzo * can be among multiple user threads erroneously calling 1141091fd0abSLuigi Rizzo * this routine concurrently. 114268b8534bSLuigi Rizzo */ 11438fd44c93SLuigi Rizzo static void 1144ce3ee1e7SLuigi Rizzo netmap_txsync_to_host(struct netmap_adapter *na) 114568b8534bSLuigi Rizzo { 1146d76bf4ffSLuigi Rizzo struct netmap_kring *kring = &na->tx_rings[na->num_tx_rings]; 114717885a7bSLuigi Rizzo u_int const lim = kring->nkr_num_slots - 1; 1148f0ea3689SLuigi Rizzo u_int const head = kring->rhead; 1149f9790aebSLuigi Rizzo struct mbq q; 115068b8534bSLuigi Rizzo 115117885a7bSLuigi Rizzo /* Take packets from hwcur to head and pass them up. 115217885a7bSLuigi Rizzo * force head = cur since netmap_grab_packets() stops at head 115368b8534bSLuigi Rizzo * In case of no buffers we give up. At the end of the loop, 115468b8534bSLuigi Rizzo * the queue is drained in all cases. 115568b8534bSLuigi Rizzo */ 1156f9790aebSLuigi Rizzo mbq_init(&q); 115717885a7bSLuigi Rizzo netmap_grab_packets(kring, &q, 1 /* force */); 115817885a7bSLuigi Rizzo ND("have %d pkts in queue", mbq_len(&q)); 115917885a7bSLuigi Rizzo kring->nr_hwcur = head; 116017885a7bSLuigi Rizzo kring->nr_hwtail = head + lim; 116117885a7bSLuigi Rizzo if (kring->nr_hwtail > lim) 116217885a7bSLuigi Rizzo kring->nr_hwtail -= lim + 1; 116368b8534bSLuigi Rizzo 1164f9790aebSLuigi Rizzo netmap_send_up(na->ifp, &q); 1165f18be576SLuigi Rizzo } 1166f18be576SLuigi Rizzo 1167f18be576SLuigi Rizzo 116868b8534bSLuigi Rizzo /* 116902ad4083SLuigi Rizzo * rxsync backend for packets coming from the host stack. 117017885a7bSLuigi Rizzo * They have been put in kring->rx_queue by netmap_transmit(). 117117885a7bSLuigi Rizzo * We protect access to the kring using kring->rx_queue.lock 117202ad4083SLuigi Rizzo * 11734bf50f18SLuigi Rizzo * This routine also does the selrecord if called from the poll handler 11744bf50f18SLuigi Rizzo * (we know because td != NULL). 11754bf50f18SLuigi Rizzo * 11764bf50f18SLuigi Rizzo * NOTE: on linux, selrecord() is defined as a macro and uses pwait 11774bf50f18SLuigi Rizzo * as an additional hidden argument. 117817885a7bSLuigi Rizzo * returns the number of packets delivered to tx queues in 117917885a7bSLuigi Rizzo * transparent mode, or a negative value if error 118068b8534bSLuigi Rizzo */ 11818fd44c93SLuigi Rizzo static int 1182ce3ee1e7SLuigi Rizzo netmap_rxsync_from_host(struct netmap_adapter *na, struct thread *td, void *pwait) 118368b8534bSLuigi Rizzo { 1184d76bf4ffSLuigi Rizzo struct netmap_kring *kring = &na->rx_rings[na->num_rx_rings]; 118568b8534bSLuigi Rizzo struct netmap_ring *ring = kring->ring; 118617885a7bSLuigi Rizzo u_int nm_i, n; 118717885a7bSLuigi Rizzo u_int const lim = kring->nkr_num_slots - 1; 1188f0ea3689SLuigi Rizzo u_int const head = kring->rhead; 118917885a7bSLuigi Rizzo int ret = 0; 1190847bf383SLuigi Rizzo struct mbq *q = &kring->rx_queue, fq; 119168b8534bSLuigi Rizzo 119201c7d25fSLuigi Rizzo (void)pwait; /* disable unused warnings */ 1193f0ea3689SLuigi Rizzo (void)td; 119417885a7bSLuigi Rizzo 1195847bf383SLuigi Rizzo mbq_init(&fq); /* fq holds packets to be freed */ 1196847bf383SLuigi Rizzo 1197997b054cSLuigi Rizzo mbq_lock(q); 119817885a7bSLuigi Rizzo 119917885a7bSLuigi Rizzo /* First part: import newly received packets */ 120017885a7bSLuigi Rizzo n = mbq_len(q); 120117885a7bSLuigi Rizzo if (n) { /* grab packets from the queue */ 120217885a7bSLuigi Rizzo struct mbuf *m; 120317885a7bSLuigi Rizzo uint32_t stop_i; 120417885a7bSLuigi Rizzo 120517885a7bSLuigi Rizzo nm_i = kring->nr_hwtail; 120617885a7bSLuigi Rizzo stop_i = nm_prev(nm_i, lim); 120717885a7bSLuigi Rizzo while ( nm_i != stop_i && (m = mbq_dequeue(q)) != NULL ) { 120817885a7bSLuigi Rizzo int len = MBUF_LEN(m); 120917885a7bSLuigi Rizzo struct netmap_slot *slot = &ring->slot[nm_i]; 121017885a7bSLuigi Rizzo 12114bf50f18SLuigi Rizzo m_copydata(m, 0, len, NMB(na, slot)); 121217885a7bSLuigi Rizzo ND("nm %d len %d", nm_i, len); 121317885a7bSLuigi Rizzo if (netmap_verbose) 12144bf50f18SLuigi Rizzo D("%s", nm_dump_buf(NMB(na, slot),len, 128, NULL)); 121517885a7bSLuigi Rizzo 121617885a7bSLuigi Rizzo slot->len = len; 121717885a7bSLuigi Rizzo slot->flags = kring->nkr_slot_flags; 121817885a7bSLuigi Rizzo nm_i = nm_next(nm_i, lim); 1219847bf383SLuigi Rizzo mbq_enqueue(&fq, m); 122064ae02c3SLuigi Rizzo } 122117885a7bSLuigi Rizzo kring->nr_hwtail = nm_i; 122264ae02c3SLuigi Rizzo } 122317885a7bSLuigi Rizzo 122417885a7bSLuigi Rizzo /* 122517885a7bSLuigi Rizzo * Second part: skip past packets that userspace has released. 122617885a7bSLuigi Rizzo */ 122717885a7bSLuigi Rizzo nm_i = kring->nr_hwcur; 122817885a7bSLuigi Rizzo if (nm_i != head) { /* something was released */ 122917885a7bSLuigi Rizzo if (netmap_fwd || kring->ring->flags & NR_FORWARD) 123017885a7bSLuigi Rizzo ret = netmap_sw_to_nic(na); 123117885a7bSLuigi Rizzo kring->nr_hwcur = head; 123264ae02c3SLuigi Rizzo } 123317885a7bSLuigi Rizzo 12344bf50f18SLuigi Rizzo /* access copies of cur,tail in the kring */ 12354bf50f18SLuigi Rizzo if (kring->rcur == kring->rtail && td) /* no bufs available */ 12360e73f29aSLuigi Rizzo OS_selrecord(td, &kring->si); 12374bf50f18SLuigi Rizzo 1238997b054cSLuigi Rizzo mbq_unlock(q); 1239847bf383SLuigi Rizzo 1240847bf383SLuigi Rizzo mbq_purge(&fq); 1241847bf383SLuigi Rizzo mbq_destroy(&fq); 1242847bf383SLuigi Rizzo 124317885a7bSLuigi Rizzo return ret; 124468b8534bSLuigi Rizzo } 124568b8534bSLuigi Rizzo 124668b8534bSLuigi Rizzo 1247f9790aebSLuigi Rizzo /* Get a netmap adapter for the port. 1248f9790aebSLuigi Rizzo * 1249f9790aebSLuigi Rizzo * If it is possible to satisfy the request, return 0 1250f9790aebSLuigi Rizzo * with *na containing the netmap adapter found. 1251f9790aebSLuigi Rizzo * Otherwise return an error code, with *na containing NULL. 1252f9790aebSLuigi Rizzo * 1253f9790aebSLuigi Rizzo * When the port is attached to a bridge, we always return 1254f9790aebSLuigi Rizzo * EBUSY. 1255f9790aebSLuigi Rizzo * Otherwise, if the port is already bound to a file descriptor, 1256f9790aebSLuigi Rizzo * then we unconditionally return the existing adapter into *na. 1257f9790aebSLuigi Rizzo * In all the other cases, we return (into *na) either native, 1258f9790aebSLuigi Rizzo * generic or NULL, according to the following table: 1259f9790aebSLuigi Rizzo * 1260f9790aebSLuigi Rizzo * native_support 1261f9790aebSLuigi Rizzo * active_fds dev.netmap.admode YES NO 1262f9790aebSLuigi Rizzo * ------------------------------------------------------- 1263f9790aebSLuigi Rizzo * >0 * NA(ifp) NA(ifp) 1264f9790aebSLuigi Rizzo * 1265f9790aebSLuigi Rizzo * 0 NETMAP_ADMODE_BEST NATIVE GENERIC 1266f9790aebSLuigi Rizzo * 0 NETMAP_ADMODE_NATIVE NATIVE NULL 1267f9790aebSLuigi Rizzo * 0 NETMAP_ADMODE_GENERIC GENERIC GENERIC 1268f9790aebSLuigi Rizzo * 1269f9790aebSLuigi Rizzo */ 1270f9790aebSLuigi Rizzo 1271f9790aebSLuigi Rizzo int 1272f9790aebSLuigi Rizzo netmap_get_hw_na(struct ifnet *ifp, struct netmap_adapter **na) 1273f9790aebSLuigi Rizzo { 1274f9790aebSLuigi Rizzo /* generic support */ 1275f9790aebSLuigi Rizzo int i = netmap_admode; /* Take a snapshot. */ 1276f9790aebSLuigi Rizzo struct netmap_adapter *prev_na; 1277847bf383SLuigi Rizzo #ifdef WITH_GENERIC 1278f9790aebSLuigi Rizzo struct netmap_generic_adapter *gna; 1279847bf383SLuigi Rizzo int error = 0; 1280847bf383SLuigi Rizzo #endif 1281f9790aebSLuigi Rizzo 1282f9790aebSLuigi Rizzo *na = NULL; /* default */ 1283f9790aebSLuigi Rizzo 1284f9790aebSLuigi Rizzo /* reset in case of invalid value */ 1285f9790aebSLuigi Rizzo if (i < NETMAP_ADMODE_BEST || i >= NETMAP_ADMODE_LAST) 1286f9790aebSLuigi Rizzo i = netmap_admode = NETMAP_ADMODE_BEST; 1287f9790aebSLuigi Rizzo 1288f9790aebSLuigi Rizzo if (NETMAP_CAPABLE(ifp)) { 12894bf50f18SLuigi Rizzo prev_na = NA(ifp); 1290f9790aebSLuigi Rizzo /* If an adapter already exists, return it if 1291f9790aebSLuigi Rizzo * there are active file descriptors or if 1292f9790aebSLuigi Rizzo * netmap is not forced to use generic 1293f9790aebSLuigi Rizzo * adapters. 1294f9790aebSLuigi Rizzo */ 12954bf50f18SLuigi Rizzo if (NETMAP_OWNED_BY_ANY(prev_na) 12964bf50f18SLuigi Rizzo || i != NETMAP_ADMODE_GENERIC 12974bf50f18SLuigi Rizzo || prev_na->na_flags & NAF_FORCE_NATIVE 12984bf50f18SLuigi Rizzo #ifdef WITH_PIPES 12994bf50f18SLuigi Rizzo /* ugly, but we cannot allow an adapter switch 13004bf50f18SLuigi Rizzo * if some pipe is referring to this one 13014bf50f18SLuigi Rizzo */ 13024bf50f18SLuigi Rizzo || prev_na->na_next_pipe > 0 13034bf50f18SLuigi Rizzo #endif 13044bf50f18SLuigi Rizzo ) { 13054bf50f18SLuigi Rizzo *na = prev_na; 1306f9790aebSLuigi Rizzo return 0; 1307f9790aebSLuigi Rizzo } 1308f9790aebSLuigi Rizzo } 1309f9790aebSLuigi Rizzo 1310f9790aebSLuigi Rizzo /* If there isn't native support and netmap is not allowed 1311f9790aebSLuigi Rizzo * to use generic adapters, we cannot satisfy the request. 1312f9790aebSLuigi Rizzo */ 1313f9790aebSLuigi Rizzo if (!NETMAP_CAPABLE(ifp) && i == NETMAP_ADMODE_NATIVE) 1314f2637526SLuigi Rizzo return EOPNOTSUPP; 1315f9790aebSLuigi Rizzo 1316847bf383SLuigi Rizzo #ifdef WITH_GENERIC 1317f9790aebSLuigi Rizzo /* Otherwise, create a generic adapter and return it, 1318f9790aebSLuigi Rizzo * saving the previously used netmap adapter, if any. 1319f9790aebSLuigi Rizzo * 1320f9790aebSLuigi Rizzo * Note that here 'prev_na', if not NULL, MUST be a 1321f9790aebSLuigi Rizzo * native adapter, and CANNOT be a generic one. This is 1322f9790aebSLuigi Rizzo * true because generic adapters are created on demand, and 1323f9790aebSLuigi Rizzo * destroyed when not used anymore. Therefore, if the adapter 1324f9790aebSLuigi Rizzo * currently attached to an interface 'ifp' is generic, it 1325f9790aebSLuigi Rizzo * must be that 1326f9790aebSLuigi Rizzo * (NA(ifp)->active_fds > 0 || NETMAP_OWNED_BY_KERN(NA(ifp))). 1327f9790aebSLuigi Rizzo * Consequently, if NA(ifp) is generic, we will enter one of 1328f9790aebSLuigi Rizzo * the branches above. This ensures that we never override 1329f9790aebSLuigi Rizzo * a generic adapter with another generic adapter. 1330f9790aebSLuigi Rizzo */ 1331f9790aebSLuigi Rizzo prev_na = NA(ifp); 1332f9790aebSLuigi Rizzo error = generic_netmap_attach(ifp); 1333f9790aebSLuigi Rizzo if (error) 1334f9790aebSLuigi Rizzo return error; 1335f9790aebSLuigi Rizzo 1336f9790aebSLuigi Rizzo *na = NA(ifp); 1337f9790aebSLuigi Rizzo gna = (struct netmap_generic_adapter*)NA(ifp); 1338f9790aebSLuigi Rizzo gna->prev = prev_na; /* save old na */ 1339f9790aebSLuigi Rizzo if (prev_na != NULL) { 1340f9790aebSLuigi Rizzo ifunit_ref(ifp->if_xname); 1341f9790aebSLuigi Rizzo // XXX add a refcount ? 1342f9790aebSLuigi Rizzo netmap_adapter_get(prev_na); 1343f9790aebSLuigi Rizzo } 134417885a7bSLuigi Rizzo ND("Created generic NA %p (prev %p)", gna, gna->prev); 1345f9790aebSLuigi Rizzo 1346f9790aebSLuigi Rizzo return 0; 1347847bf383SLuigi Rizzo #else /* !WITH_GENERIC */ 1348847bf383SLuigi Rizzo return EOPNOTSUPP; 1349847bf383SLuigi Rizzo #endif 1350f9790aebSLuigi Rizzo } 1351f9790aebSLuigi Rizzo 1352f9790aebSLuigi Rizzo 135368b8534bSLuigi Rizzo /* 1354ce3ee1e7SLuigi Rizzo * MUST BE CALLED UNDER NMG_LOCK() 1355ce3ee1e7SLuigi Rizzo * 1356f2637526SLuigi Rizzo * Get a refcounted reference to a netmap adapter attached 1357f2637526SLuigi Rizzo * to the interface specified by nmr. 1358ce3ee1e7SLuigi Rizzo * This is always called in the execution of an ioctl(). 1359ce3ee1e7SLuigi Rizzo * 1360f2637526SLuigi Rizzo * Return ENXIO if the interface specified by the request does 1361f2637526SLuigi Rizzo * not exist, ENOTSUP if netmap is not supported by the interface, 1362f2637526SLuigi Rizzo * EBUSY if the interface is already attached to a bridge, 1363f2637526SLuigi Rizzo * EINVAL if parameters are invalid, ENOMEM if needed resources 1364f2637526SLuigi Rizzo * could not be allocated. 1365f2637526SLuigi Rizzo * If successful, hold a reference to the netmap adapter. 1366f18be576SLuigi Rizzo * 1367f2637526SLuigi Rizzo * No reference is kept on the real interface, which may then 1368f2637526SLuigi Rizzo * disappear at any time. 136968b8534bSLuigi Rizzo */ 1370f9790aebSLuigi Rizzo int 1371f9790aebSLuigi Rizzo netmap_get_na(struct nmreq *nmr, struct netmap_adapter **na, int create) 137268b8534bSLuigi Rizzo { 1373f0ea3689SLuigi Rizzo struct ifnet *ifp = NULL; 1374f9790aebSLuigi Rizzo int error = 0; 1375f0ea3689SLuigi Rizzo struct netmap_adapter *ret = NULL; 1376f9790aebSLuigi Rizzo 1377f9790aebSLuigi Rizzo *na = NULL; /* default return value */ 1378f196ce38SLuigi Rizzo 1379ce3ee1e7SLuigi Rizzo NMG_LOCK_ASSERT(); 1380ce3ee1e7SLuigi Rizzo 1381*453130d9SPedro F. Giffuni /* we cascade through all possible types of netmap adapter. 13824bf50f18SLuigi Rizzo * All netmap_get_*_na() functions return an error and an na, 13834bf50f18SLuigi Rizzo * with the following combinations: 13844bf50f18SLuigi Rizzo * 13854bf50f18SLuigi Rizzo * error na 13864bf50f18SLuigi Rizzo * 0 NULL type doesn't match 13874bf50f18SLuigi Rizzo * !0 NULL type matches, but na creation/lookup failed 13884bf50f18SLuigi Rizzo * 0 !NULL type matches and na created/found 13894bf50f18SLuigi Rizzo * !0 !NULL impossible 13904bf50f18SLuigi Rizzo */ 13914bf50f18SLuigi Rizzo 13924bf50f18SLuigi Rizzo /* try to see if this is a monitor port */ 13934bf50f18SLuigi Rizzo error = netmap_get_monitor_na(nmr, na, create); 13944bf50f18SLuigi Rizzo if (error || *na != NULL) 13954bf50f18SLuigi Rizzo return error; 13964bf50f18SLuigi Rizzo 13974bf50f18SLuigi Rizzo /* try to see if this is a pipe port */ 1398f0ea3689SLuigi Rizzo error = netmap_get_pipe_na(nmr, na, create); 1399f0ea3689SLuigi Rizzo if (error || *na != NULL) 1400f9790aebSLuigi Rizzo return error; 1401ce3ee1e7SLuigi Rizzo 14024bf50f18SLuigi Rizzo /* try to see if this is a bridge port */ 1403f0ea3689SLuigi Rizzo error = netmap_get_bdg_na(nmr, na, create); 1404f0ea3689SLuigi Rizzo if (error) 1405f0ea3689SLuigi Rizzo return error; 1406f0ea3689SLuigi Rizzo 1407f0ea3689SLuigi Rizzo if (*na != NULL) /* valid match in netmap_get_bdg_na() */ 1408847bf383SLuigi Rizzo goto out; 1409f0ea3689SLuigi Rizzo 141089cc2556SLuigi Rizzo /* 141189cc2556SLuigi Rizzo * This must be a hardware na, lookup the name in the system. 141289cc2556SLuigi Rizzo * Note that by hardware we actually mean "it shows up in ifconfig". 141389cc2556SLuigi Rizzo * This may still be a tap, a veth/epair, or even a 141489cc2556SLuigi Rizzo * persistent VALE port. 141589cc2556SLuigi Rizzo */ 1416f9790aebSLuigi Rizzo ifp = ifunit_ref(nmr->nr_name); 1417f9790aebSLuigi Rizzo if (ifp == NULL) { 1418ce3ee1e7SLuigi Rizzo return ENXIO; 1419f196ce38SLuigi Rizzo } 1420ce3ee1e7SLuigi Rizzo 1421f9790aebSLuigi Rizzo error = netmap_get_hw_na(ifp, &ret); 1422f9790aebSLuigi Rizzo if (error) 1423f9790aebSLuigi Rizzo goto out; 1424f18be576SLuigi Rizzo 1425f9790aebSLuigi Rizzo *na = ret; 1426f9790aebSLuigi Rizzo netmap_adapter_get(ret); 1427f0ea3689SLuigi Rizzo 1428f9790aebSLuigi Rizzo out: 1429f0ea3689SLuigi Rizzo if (error && ret != NULL) 1430f0ea3689SLuigi Rizzo netmap_adapter_put(ret); 1431f0ea3689SLuigi Rizzo 1432f0ea3689SLuigi Rizzo if (ifp) 143389cc2556SLuigi Rizzo if_rele(ifp); /* allow live unloading of drivers modules */ 1434f18be576SLuigi Rizzo 14355ab0d24dSLuigi Rizzo return error; 14365ab0d24dSLuigi Rizzo } 1437ce3ee1e7SLuigi Rizzo 1438ce3ee1e7SLuigi Rizzo 1439f9790aebSLuigi Rizzo /* 1440f9790aebSLuigi Rizzo * validate parameters on entry for *_txsync() 1441f9790aebSLuigi Rizzo * Returns ring->cur if ok, or something >= kring->nkr_num_slots 144217885a7bSLuigi Rizzo * in case of error. 1443f9790aebSLuigi Rizzo * 144417885a7bSLuigi Rizzo * rhead, rcur and rtail=hwtail are stored from previous round. 144517885a7bSLuigi Rizzo * hwcur is the next packet to send to the ring. 1446f9790aebSLuigi Rizzo * 144717885a7bSLuigi Rizzo * We want 144817885a7bSLuigi Rizzo * hwcur <= *rhead <= head <= cur <= tail = *rtail <= hwtail 1449f9790aebSLuigi Rizzo * 145017885a7bSLuigi Rizzo * hwcur, rhead, rtail and hwtail are reliable 1451f9790aebSLuigi Rizzo */ 1452847bf383SLuigi Rizzo static u_int 145317885a7bSLuigi Rizzo nm_txsync_prologue(struct netmap_kring *kring) 1454f9790aebSLuigi Rizzo { 1455847bf383SLuigi Rizzo #define NM_ASSERT(t) if (t) { D("fail " #t); goto error; } 1456f9790aebSLuigi Rizzo struct netmap_ring *ring = kring->ring; 145717885a7bSLuigi Rizzo u_int head = ring->head; /* read only once */ 1458f9790aebSLuigi Rizzo u_int cur = ring->cur; /* read only once */ 1459f9790aebSLuigi Rizzo u_int n = kring->nkr_num_slots; 1460ce3ee1e7SLuigi Rizzo 146117885a7bSLuigi Rizzo ND(5, "%s kcur %d ktail %d head %d cur %d tail %d", 146217885a7bSLuigi Rizzo kring->name, 146317885a7bSLuigi Rizzo kring->nr_hwcur, kring->nr_hwtail, 146417885a7bSLuigi Rizzo ring->head, ring->cur, ring->tail); 146517885a7bSLuigi Rizzo #if 1 /* kernel sanity checks; but we can trust the kring. */ 146617885a7bSLuigi Rizzo if (kring->nr_hwcur >= n || kring->rhead >= n || 146717885a7bSLuigi Rizzo kring->rtail >= n || kring->nr_hwtail >= n) 1468f9790aebSLuigi Rizzo goto error; 1469f9790aebSLuigi Rizzo #endif /* kernel sanity checks */ 147017885a7bSLuigi Rizzo /* 147117885a7bSLuigi Rizzo * user sanity checks. We only use 'cur', 147217885a7bSLuigi Rizzo * A, B, ... are possible positions for cur: 147317885a7bSLuigi Rizzo * 147417885a7bSLuigi Rizzo * 0 A cur B tail C n-1 147517885a7bSLuigi Rizzo * 0 D tail E cur F n-1 147617885a7bSLuigi Rizzo * 147717885a7bSLuigi Rizzo * B, F, D are valid. A, C, E are wrong 147817885a7bSLuigi Rizzo */ 147917885a7bSLuigi Rizzo if (kring->rtail >= kring->rhead) { 148017885a7bSLuigi Rizzo /* want rhead <= head <= rtail */ 1481847bf383SLuigi Rizzo NM_ASSERT(head < kring->rhead || head > kring->rtail); 148217885a7bSLuigi Rizzo /* and also head <= cur <= rtail */ 1483847bf383SLuigi Rizzo NM_ASSERT(cur < head || cur > kring->rtail); 148417885a7bSLuigi Rizzo } else { /* here rtail < rhead */ 148517885a7bSLuigi Rizzo /* we need head outside rtail .. rhead */ 1486847bf383SLuigi Rizzo NM_ASSERT(head > kring->rtail && head < kring->rhead); 148717885a7bSLuigi Rizzo 148817885a7bSLuigi Rizzo /* two cases now: head <= rtail or head >= rhead */ 148917885a7bSLuigi Rizzo if (head <= kring->rtail) { 149017885a7bSLuigi Rizzo /* want head <= cur <= rtail */ 1491847bf383SLuigi Rizzo NM_ASSERT(cur < head || cur > kring->rtail); 149217885a7bSLuigi Rizzo } else { /* head >= rhead */ 149317885a7bSLuigi Rizzo /* cur must be outside rtail..head */ 1494847bf383SLuigi Rizzo NM_ASSERT(cur > kring->rtail && cur < head); 1495f18be576SLuigi Rizzo } 1496f9790aebSLuigi Rizzo } 149717885a7bSLuigi Rizzo if (ring->tail != kring->rtail) { 149817885a7bSLuigi Rizzo RD(5, "tail overwritten was %d need %d", 149917885a7bSLuigi Rizzo ring->tail, kring->rtail); 150017885a7bSLuigi Rizzo ring->tail = kring->rtail; 150117885a7bSLuigi Rizzo } 150217885a7bSLuigi Rizzo kring->rhead = head; 150317885a7bSLuigi Rizzo kring->rcur = cur; 150417885a7bSLuigi Rizzo return head; 1505f9790aebSLuigi Rizzo 1506f9790aebSLuigi Rizzo error: 1507847bf383SLuigi Rizzo RD(5, "%s kring error: head %d cur %d tail %d rhead %d rcur %d rtail %d hwcur %d hwtail %d", 150817885a7bSLuigi Rizzo kring->name, 1509847bf383SLuigi Rizzo head, cur, ring->tail, 1510847bf383SLuigi Rizzo kring->rhead, kring->rcur, kring->rtail, 1511847bf383SLuigi Rizzo kring->nr_hwcur, kring->nr_hwtail); 1512f9790aebSLuigi Rizzo return n; 1513847bf383SLuigi Rizzo #undef NM_ASSERT 151468b8534bSLuigi Rizzo } 151568b8534bSLuigi Rizzo 151668b8534bSLuigi Rizzo 151768b8534bSLuigi Rizzo /* 1518f9790aebSLuigi Rizzo * validate parameters on entry for *_rxsync() 151917885a7bSLuigi Rizzo * Returns ring->head if ok, kring->nkr_num_slots on error. 1520f9790aebSLuigi Rizzo * 152117885a7bSLuigi Rizzo * For a valid configuration, 152217885a7bSLuigi Rizzo * hwcur <= head <= cur <= tail <= hwtail 1523f9790aebSLuigi Rizzo * 152417885a7bSLuigi Rizzo * We only consider head and cur. 152517885a7bSLuigi Rizzo * hwcur and hwtail are reliable. 1526f9790aebSLuigi Rizzo * 1527f9790aebSLuigi Rizzo */ 1528847bf383SLuigi Rizzo static u_int 152917885a7bSLuigi Rizzo nm_rxsync_prologue(struct netmap_kring *kring) 1530f9790aebSLuigi Rizzo { 1531f9790aebSLuigi Rizzo struct netmap_ring *ring = kring->ring; 153217885a7bSLuigi Rizzo uint32_t const n = kring->nkr_num_slots; 153317885a7bSLuigi Rizzo uint32_t head, cur; 1534f9790aebSLuigi Rizzo 1535847bf383SLuigi Rizzo ND(5,"%s kc %d kt %d h %d c %d t %d", 153617885a7bSLuigi Rizzo kring->name, 153717885a7bSLuigi Rizzo kring->nr_hwcur, kring->nr_hwtail, 153817885a7bSLuigi Rizzo ring->head, ring->cur, ring->tail); 153917885a7bSLuigi Rizzo /* 154017885a7bSLuigi Rizzo * Before storing the new values, we should check they do not 154117885a7bSLuigi Rizzo * move backwards. However: 154217885a7bSLuigi Rizzo * - head is not an issue because the previous value is hwcur; 154317885a7bSLuigi Rizzo * - cur could in principle go back, however it does not matter 154417885a7bSLuigi Rizzo * because we are processing a brand new rxsync() 154517885a7bSLuigi Rizzo */ 154617885a7bSLuigi Rizzo cur = kring->rcur = ring->cur; /* read only once */ 154717885a7bSLuigi Rizzo head = kring->rhead = ring->head; /* read only once */ 1548f9790aebSLuigi Rizzo #if 1 /* kernel sanity checks */ 154917885a7bSLuigi Rizzo if (kring->nr_hwcur >= n || kring->nr_hwtail >= n) 1550f9790aebSLuigi Rizzo goto error; 1551f9790aebSLuigi Rizzo #endif /* kernel sanity checks */ 1552f9790aebSLuigi Rizzo /* user sanity checks */ 155317885a7bSLuigi Rizzo if (kring->nr_hwtail >= kring->nr_hwcur) { 155417885a7bSLuigi Rizzo /* want hwcur <= rhead <= hwtail */ 155517885a7bSLuigi Rizzo if (head < kring->nr_hwcur || head > kring->nr_hwtail) 1556f9790aebSLuigi Rizzo goto error; 155717885a7bSLuigi Rizzo /* and also rhead <= rcur <= hwtail */ 155817885a7bSLuigi Rizzo if (cur < head || cur > kring->nr_hwtail) 1559f9790aebSLuigi Rizzo goto error; 1560f9790aebSLuigi Rizzo } else { 156117885a7bSLuigi Rizzo /* we need rhead outside hwtail..hwcur */ 156217885a7bSLuigi Rizzo if (head < kring->nr_hwcur && head > kring->nr_hwtail) 1563f9790aebSLuigi Rizzo goto error; 156417885a7bSLuigi Rizzo /* two cases now: head <= hwtail or head >= hwcur */ 156517885a7bSLuigi Rizzo if (head <= kring->nr_hwtail) { 156617885a7bSLuigi Rizzo /* want head <= cur <= hwtail */ 156717885a7bSLuigi Rizzo if (cur < head || cur > kring->nr_hwtail) 1568f9790aebSLuigi Rizzo goto error; 156917885a7bSLuigi Rizzo } else { 157017885a7bSLuigi Rizzo /* cur must be outside hwtail..head */ 157117885a7bSLuigi Rizzo if (cur < head && cur > kring->nr_hwtail) 1572f9790aebSLuigi Rizzo goto error; 1573f9790aebSLuigi Rizzo } 1574f9790aebSLuigi Rizzo } 157517885a7bSLuigi Rizzo if (ring->tail != kring->rtail) { 157617885a7bSLuigi Rizzo RD(5, "%s tail overwritten was %d need %d", 157717885a7bSLuigi Rizzo kring->name, 157817885a7bSLuigi Rizzo ring->tail, kring->rtail); 157917885a7bSLuigi Rizzo ring->tail = kring->rtail; 158017885a7bSLuigi Rizzo } 158117885a7bSLuigi Rizzo return head; 1582f9790aebSLuigi Rizzo 1583f9790aebSLuigi Rizzo error: 158417885a7bSLuigi Rizzo RD(5, "kring error: hwcur %d rcur %d hwtail %d head %d cur %d tail %d", 1585f9790aebSLuigi Rizzo kring->nr_hwcur, 158617885a7bSLuigi Rizzo kring->rcur, kring->nr_hwtail, 158717885a7bSLuigi Rizzo kring->rhead, kring->rcur, ring->tail); 1588f9790aebSLuigi Rizzo return n; 1589f9790aebSLuigi Rizzo } 1590f9790aebSLuigi Rizzo 159117885a7bSLuigi Rizzo 1592f9790aebSLuigi Rizzo /* 159368b8534bSLuigi Rizzo * Error routine called when txsync/rxsync detects an error. 159417885a7bSLuigi Rizzo * Can't do much more than resetting head =cur = hwcur, tail = hwtail 159568b8534bSLuigi Rizzo * Return 1 on reinit. 1596506cc70cSLuigi Rizzo * 1597506cc70cSLuigi Rizzo * This routine is only called by the upper half of the kernel. 1598506cc70cSLuigi Rizzo * It only reads hwcur (which is changed only by the upper half, too) 159917885a7bSLuigi Rizzo * and hwtail (which may be changed by the lower half, but only on 1600506cc70cSLuigi Rizzo * a tx ring and only to increase it, so any error will be recovered 1601506cc70cSLuigi Rizzo * on the next call). For the above, we don't strictly need to call 1602506cc70cSLuigi Rizzo * it under lock. 160368b8534bSLuigi Rizzo */ 160468b8534bSLuigi Rizzo int 160568b8534bSLuigi Rizzo netmap_ring_reinit(struct netmap_kring *kring) 160668b8534bSLuigi Rizzo { 160768b8534bSLuigi Rizzo struct netmap_ring *ring = kring->ring; 160868b8534bSLuigi Rizzo u_int i, lim = kring->nkr_num_slots - 1; 160968b8534bSLuigi Rizzo int errors = 0; 161068b8534bSLuigi Rizzo 1611ce3ee1e7SLuigi Rizzo // XXX KASSERT nm_kr_tryget 16124bf50f18SLuigi Rizzo RD(10, "called for %s", kring->name); 161317885a7bSLuigi Rizzo // XXX probably wrong to trust userspace 161417885a7bSLuigi Rizzo kring->rhead = ring->head; 161517885a7bSLuigi Rizzo kring->rcur = ring->cur; 161617885a7bSLuigi Rizzo kring->rtail = ring->tail; 161717885a7bSLuigi Rizzo 161868b8534bSLuigi Rizzo if (ring->cur > lim) 161968b8534bSLuigi Rizzo errors++; 162017885a7bSLuigi Rizzo if (ring->head > lim) 162117885a7bSLuigi Rizzo errors++; 162217885a7bSLuigi Rizzo if (ring->tail > lim) 162317885a7bSLuigi Rizzo errors++; 162468b8534bSLuigi Rizzo for (i = 0; i <= lim; i++) { 162568b8534bSLuigi Rizzo u_int idx = ring->slot[i].buf_idx; 162668b8534bSLuigi Rizzo u_int len = ring->slot[i].len; 1627847bf383SLuigi Rizzo if (idx < 2 || idx >= kring->na->na_lut.objtotal) { 162817885a7bSLuigi Rizzo RD(5, "bad index at slot %d idx %d len %d ", i, idx, len); 162968b8534bSLuigi Rizzo ring->slot[i].buf_idx = 0; 163068b8534bSLuigi Rizzo ring->slot[i].len = 0; 16314bf50f18SLuigi Rizzo } else if (len > NETMAP_BUF_SIZE(kring->na)) { 163268b8534bSLuigi Rizzo ring->slot[i].len = 0; 163317885a7bSLuigi Rizzo RD(5, "bad len at slot %d idx %d len %d", i, idx, len); 163468b8534bSLuigi Rizzo } 163568b8534bSLuigi Rizzo } 163668b8534bSLuigi Rizzo if (errors) { 16378241616dSLuigi Rizzo RD(10, "total %d errors", errors); 163817885a7bSLuigi Rizzo RD(10, "%s reinit, cur %d -> %d tail %d -> %d", 163917885a7bSLuigi Rizzo kring->name, 164068b8534bSLuigi Rizzo ring->cur, kring->nr_hwcur, 164117885a7bSLuigi Rizzo ring->tail, kring->nr_hwtail); 164217885a7bSLuigi Rizzo ring->head = kring->rhead = kring->nr_hwcur; 164317885a7bSLuigi Rizzo ring->cur = kring->rcur = kring->nr_hwcur; 164417885a7bSLuigi Rizzo ring->tail = kring->rtail = kring->nr_hwtail; 164568b8534bSLuigi Rizzo } 164668b8534bSLuigi Rizzo return (errors ? 1 : 0); 164768b8534bSLuigi Rizzo } 164868b8534bSLuigi Rizzo 16494bf50f18SLuigi Rizzo /* interpret the ringid and flags fields of an nmreq, by translating them 16504bf50f18SLuigi Rizzo * into a pair of intervals of ring indices: 16514bf50f18SLuigi Rizzo * 16524bf50f18SLuigi Rizzo * [priv->np_txqfirst, priv->np_txqlast) and 16534bf50f18SLuigi Rizzo * [priv->np_rxqfirst, priv->np_rxqlast) 16544bf50f18SLuigi Rizzo * 165568b8534bSLuigi Rizzo */ 16564bf50f18SLuigi Rizzo int 16574bf50f18SLuigi Rizzo netmap_interp_ringid(struct netmap_priv_d *priv, uint16_t ringid, uint32_t flags) 165868b8534bSLuigi Rizzo { 1659f9790aebSLuigi Rizzo struct netmap_adapter *na = priv->np_na; 1660f0ea3689SLuigi Rizzo u_int j, i = ringid & NETMAP_RING_MASK; 1661f0ea3689SLuigi Rizzo u_int reg = flags & NR_REG_MASK; 1662847bf383SLuigi Rizzo enum txrx t; 166368b8534bSLuigi Rizzo 1664f0ea3689SLuigi Rizzo if (reg == NR_REG_DEFAULT) { 1665f0ea3689SLuigi Rizzo /* convert from old ringid to flags */ 166668b8534bSLuigi Rizzo if (ringid & NETMAP_SW_RING) { 1667f0ea3689SLuigi Rizzo reg = NR_REG_SW; 166868b8534bSLuigi Rizzo } else if (ringid & NETMAP_HW_RING) { 1669f0ea3689SLuigi Rizzo reg = NR_REG_ONE_NIC; 167068b8534bSLuigi Rizzo } else { 1671f0ea3689SLuigi Rizzo reg = NR_REG_ALL_NIC; 1672f0ea3689SLuigi Rizzo } 1673f0ea3689SLuigi Rizzo D("deprecated API, old ringid 0x%x -> ringid %x reg %d", ringid, i, reg); 1674f0ea3689SLuigi Rizzo } 1675f0ea3689SLuigi Rizzo switch (reg) { 1676f0ea3689SLuigi Rizzo case NR_REG_ALL_NIC: 1677f0ea3689SLuigi Rizzo case NR_REG_PIPE_MASTER: 1678f0ea3689SLuigi Rizzo case NR_REG_PIPE_SLAVE: 1679847bf383SLuigi Rizzo for_rx_tx(t) { 1680847bf383SLuigi Rizzo priv->np_qfirst[t] = 0; 1681847bf383SLuigi Rizzo priv->np_qlast[t] = nma_get_nrings(na, t); 1682847bf383SLuigi Rizzo } 1683f0ea3689SLuigi Rizzo ND("%s %d %d", "ALL/PIPE", 1684847bf383SLuigi Rizzo priv->np_qfirst[NR_RX], priv->np_qlast[NR_RX]); 1685f0ea3689SLuigi Rizzo break; 1686f0ea3689SLuigi Rizzo case NR_REG_SW: 1687f0ea3689SLuigi Rizzo case NR_REG_NIC_SW: 1688f0ea3689SLuigi Rizzo if (!(na->na_flags & NAF_HOST_RINGS)) { 1689f0ea3689SLuigi Rizzo D("host rings not supported"); 1690f0ea3689SLuigi Rizzo return EINVAL; 1691f0ea3689SLuigi Rizzo } 1692847bf383SLuigi Rizzo for_rx_tx(t) { 1693847bf383SLuigi Rizzo priv->np_qfirst[t] = (reg == NR_REG_SW ? 1694847bf383SLuigi Rizzo nma_get_nrings(na, t) : 0); 1695847bf383SLuigi Rizzo priv->np_qlast[t] = nma_get_nrings(na, t) + 1; 1696847bf383SLuigi Rizzo } 1697f0ea3689SLuigi Rizzo ND("%s %d %d", reg == NR_REG_SW ? "SW" : "NIC+SW", 1698847bf383SLuigi Rizzo priv->np_qfirst[NR_RX], priv->np_qlast[NR_RX]); 1699f0ea3689SLuigi Rizzo break; 1700f0ea3689SLuigi Rizzo case NR_REG_ONE_NIC: 1701f0ea3689SLuigi Rizzo if (i >= na->num_tx_rings && i >= na->num_rx_rings) { 1702f0ea3689SLuigi Rizzo D("invalid ring id %d", i); 1703f0ea3689SLuigi Rizzo return EINVAL; 1704f0ea3689SLuigi Rizzo } 1705847bf383SLuigi Rizzo for_rx_tx(t) { 1706f0ea3689SLuigi Rizzo /* if not enough rings, use the first one */ 1707f0ea3689SLuigi Rizzo j = i; 1708847bf383SLuigi Rizzo if (j >= nma_get_nrings(na, t)) 1709f0ea3689SLuigi Rizzo j = 0; 1710847bf383SLuigi Rizzo priv->np_qfirst[t] = j; 1711847bf383SLuigi Rizzo priv->np_qlast[t] = j + 1; 1712847bf383SLuigi Rizzo } 1713f0ea3689SLuigi Rizzo break; 1714f0ea3689SLuigi Rizzo default: 1715f0ea3689SLuigi Rizzo D("invalid regif type %d", reg); 1716f0ea3689SLuigi Rizzo return EINVAL; 171768b8534bSLuigi Rizzo } 1718f0ea3689SLuigi Rizzo priv->np_flags = (flags & ~NR_REG_MASK) | reg; 17194bf50f18SLuigi Rizzo 1720ae10d1afSLuigi Rizzo if (netmap_verbose) { 1721f0ea3689SLuigi Rizzo D("%s: tx [%d,%d) rx [%d,%d) id %d", 17224bf50f18SLuigi Rizzo na->name, 1723847bf383SLuigi Rizzo priv->np_qfirst[NR_TX], 1724847bf383SLuigi Rizzo priv->np_qlast[NR_TX], 1725847bf383SLuigi Rizzo priv->np_qfirst[NR_RX], 1726847bf383SLuigi Rizzo priv->np_qlast[NR_RX], 1727f0ea3689SLuigi Rizzo i); 1728ae10d1afSLuigi Rizzo } 172968b8534bSLuigi Rizzo return 0; 173068b8534bSLuigi Rizzo } 173168b8534bSLuigi Rizzo 17324bf50f18SLuigi Rizzo 17334bf50f18SLuigi Rizzo /* 17344bf50f18SLuigi Rizzo * Set the ring ID. For devices with a single queue, a request 17354bf50f18SLuigi Rizzo * for all rings is the same as a single ring. 17364bf50f18SLuigi Rizzo */ 17374bf50f18SLuigi Rizzo static int 17384bf50f18SLuigi Rizzo netmap_set_ringid(struct netmap_priv_d *priv, uint16_t ringid, uint32_t flags) 17394bf50f18SLuigi Rizzo { 17404bf50f18SLuigi Rizzo struct netmap_adapter *na = priv->np_na; 17414bf50f18SLuigi Rizzo int error; 1742847bf383SLuigi Rizzo enum txrx t; 17434bf50f18SLuigi Rizzo 17444bf50f18SLuigi Rizzo error = netmap_interp_ringid(priv, ringid, flags); 17454bf50f18SLuigi Rizzo if (error) { 17464bf50f18SLuigi Rizzo return error; 17474bf50f18SLuigi Rizzo } 17484bf50f18SLuigi Rizzo 17494bf50f18SLuigi Rizzo priv->np_txpoll = (ringid & NETMAP_NO_TX_POLL) ? 0 : 1; 17504bf50f18SLuigi Rizzo 17514bf50f18SLuigi Rizzo /* optimization: count the users registered for more than 17524bf50f18SLuigi Rizzo * one ring, which are the ones sleeping on the global queue. 17534bf50f18SLuigi Rizzo * The default netmap_notify() callback will then 17544bf50f18SLuigi Rizzo * avoid signaling the global queue if nobody is using it 17554bf50f18SLuigi Rizzo */ 1756847bf383SLuigi Rizzo for_rx_tx(t) { 1757847bf383SLuigi Rizzo if (nm_si_user(priv, t)) 1758847bf383SLuigi Rizzo na->si_users[t]++; 1759847bf383SLuigi Rizzo } 17604bf50f18SLuigi Rizzo return 0; 17614bf50f18SLuigi Rizzo } 17624bf50f18SLuigi Rizzo 1763847bf383SLuigi Rizzo static void 1764847bf383SLuigi Rizzo netmap_unset_ringid(struct netmap_priv_d *priv) 1765847bf383SLuigi Rizzo { 1766847bf383SLuigi Rizzo struct netmap_adapter *na = priv->np_na; 1767847bf383SLuigi Rizzo enum txrx t; 1768847bf383SLuigi Rizzo 1769847bf383SLuigi Rizzo for_rx_tx(t) { 1770847bf383SLuigi Rizzo if (nm_si_user(priv, t)) 1771847bf383SLuigi Rizzo na->si_users[t]--; 1772847bf383SLuigi Rizzo priv->np_qfirst[t] = priv->np_qlast[t] = 0; 1773847bf383SLuigi Rizzo } 1774847bf383SLuigi Rizzo priv->np_flags = 0; 1775847bf383SLuigi Rizzo priv->np_txpoll = 0; 1776847bf383SLuigi Rizzo } 1777847bf383SLuigi Rizzo 1778847bf383SLuigi Rizzo 1779847bf383SLuigi Rizzo /* check that the rings we want to bind are not exclusively owned by a previous 1780847bf383SLuigi Rizzo * bind. If exclusive ownership has been requested, we also mark the rings. 1781847bf383SLuigi Rizzo */ 1782847bf383SLuigi Rizzo static int 1783847bf383SLuigi Rizzo netmap_get_exclusive(struct netmap_priv_d *priv) 1784847bf383SLuigi Rizzo { 1785847bf383SLuigi Rizzo struct netmap_adapter *na = priv->np_na; 1786847bf383SLuigi Rizzo u_int i; 1787847bf383SLuigi Rizzo struct netmap_kring *kring; 1788847bf383SLuigi Rizzo int excl = (priv->np_flags & NR_EXCLUSIVE); 1789847bf383SLuigi Rizzo enum txrx t; 1790847bf383SLuigi Rizzo 1791847bf383SLuigi Rizzo ND("%s: grabbing tx [%d, %d) rx [%d, %d)", 1792847bf383SLuigi Rizzo na->name, 1793847bf383SLuigi Rizzo priv->np_qfirst[NR_TX], 1794847bf383SLuigi Rizzo priv->np_qlast[NR_TX], 1795847bf383SLuigi Rizzo priv->np_qfirst[NR_RX], 1796847bf383SLuigi Rizzo priv->np_qlast[NR_RX]); 1797847bf383SLuigi Rizzo 1798847bf383SLuigi Rizzo /* first round: check that all the requested rings 1799847bf383SLuigi Rizzo * are neither alread exclusively owned, nor we 1800847bf383SLuigi Rizzo * want exclusive ownership when they are already in use 1801847bf383SLuigi Rizzo */ 1802847bf383SLuigi Rizzo for_rx_tx(t) { 1803847bf383SLuigi Rizzo for (i = priv->np_qfirst[t]; i < priv->np_qlast[t]; i++) { 1804847bf383SLuigi Rizzo kring = &NMR(na, t)[i]; 1805847bf383SLuigi Rizzo if ((kring->nr_kflags & NKR_EXCLUSIVE) || 1806847bf383SLuigi Rizzo (kring->users && excl)) 1807847bf383SLuigi Rizzo { 1808847bf383SLuigi Rizzo ND("ring %s busy", kring->name); 1809847bf383SLuigi Rizzo return EBUSY; 1810847bf383SLuigi Rizzo } 1811847bf383SLuigi Rizzo } 1812847bf383SLuigi Rizzo } 1813847bf383SLuigi Rizzo 1814847bf383SLuigi Rizzo /* second round: increment usage cound and possibly 1815847bf383SLuigi Rizzo * mark as exclusive 1816847bf383SLuigi Rizzo */ 1817847bf383SLuigi Rizzo 1818847bf383SLuigi Rizzo for_rx_tx(t) { 1819847bf383SLuigi Rizzo for (i = priv->np_qfirst[t]; i < priv->np_qlast[t]; i++) { 1820847bf383SLuigi Rizzo kring = &NMR(na, t)[i]; 1821847bf383SLuigi Rizzo kring->users++; 1822847bf383SLuigi Rizzo if (excl) 1823847bf383SLuigi Rizzo kring->nr_kflags |= NKR_EXCLUSIVE; 1824847bf383SLuigi Rizzo } 1825847bf383SLuigi Rizzo } 1826847bf383SLuigi Rizzo 1827847bf383SLuigi Rizzo return 0; 1828847bf383SLuigi Rizzo 1829847bf383SLuigi Rizzo } 1830847bf383SLuigi Rizzo 1831847bf383SLuigi Rizzo /* undo netmap_get_ownership() */ 1832847bf383SLuigi Rizzo static void 1833847bf383SLuigi Rizzo netmap_rel_exclusive(struct netmap_priv_d *priv) 1834847bf383SLuigi Rizzo { 1835847bf383SLuigi Rizzo struct netmap_adapter *na = priv->np_na; 1836847bf383SLuigi Rizzo u_int i; 1837847bf383SLuigi Rizzo struct netmap_kring *kring; 1838847bf383SLuigi Rizzo int excl = (priv->np_flags & NR_EXCLUSIVE); 1839847bf383SLuigi Rizzo enum txrx t; 1840847bf383SLuigi Rizzo 1841847bf383SLuigi Rizzo ND("%s: releasing tx [%d, %d) rx [%d, %d)", 1842847bf383SLuigi Rizzo na->name, 1843847bf383SLuigi Rizzo priv->np_qfirst[NR_TX], 1844847bf383SLuigi Rizzo priv->np_qlast[NR_TX], 1845847bf383SLuigi Rizzo priv->np_qfirst[NR_RX], 1846847bf383SLuigi Rizzo priv->np_qlast[MR_RX]); 1847847bf383SLuigi Rizzo 1848847bf383SLuigi Rizzo 1849847bf383SLuigi Rizzo for_rx_tx(t) { 1850847bf383SLuigi Rizzo for (i = priv->np_qfirst[t]; i < priv->np_qlast[t]; i++) { 1851847bf383SLuigi Rizzo kring = &NMR(na, t)[i]; 1852847bf383SLuigi Rizzo if (excl) 1853847bf383SLuigi Rizzo kring->nr_kflags &= ~NKR_EXCLUSIVE; 1854847bf383SLuigi Rizzo kring->users--; 1855847bf383SLuigi Rizzo } 1856847bf383SLuigi Rizzo } 1857847bf383SLuigi Rizzo } 1858847bf383SLuigi Rizzo 1859f18be576SLuigi Rizzo /* 1860f18be576SLuigi Rizzo * possibly move the interface to netmap-mode. 1861f18be576SLuigi Rizzo * If success it returns a pointer to netmap_if, otherwise NULL. 1862ce3ee1e7SLuigi Rizzo * This must be called with NMG_LOCK held. 18634bf50f18SLuigi Rizzo * 18644bf50f18SLuigi Rizzo * The following na callbacks are called in the process: 18654bf50f18SLuigi Rizzo * 18664bf50f18SLuigi Rizzo * na->nm_config() [by netmap_update_config] 18674bf50f18SLuigi Rizzo * (get current number and size of rings) 18684bf50f18SLuigi Rizzo * 18694bf50f18SLuigi Rizzo * We have a generic one for linux (netmap_linux_config). 18704bf50f18SLuigi Rizzo * The bwrap has to override this, since it has to forward 18714bf50f18SLuigi Rizzo * the request to the wrapped adapter (netmap_bwrap_config). 18724bf50f18SLuigi Rizzo * 18734bf50f18SLuigi Rizzo * 1874847bf383SLuigi Rizzo * na->nm_krings_create() 18754bf50f18SLuigi Rizzo * (create and init the krings array) 18764bf50f18SLuigi Rizzo * 18774bf50f18SLuigi Rizzo * One of the following: 18784bf50f18SLuigi Rizzo * 18794bf50f18SLuigi Rizzo * * netmap_hw_krings_create, (hw ports) 18804bf50f18SLuigi Rizzo * creates the standard layout for the krings 18814bf50f18SLuigi Rizzo * and adds the mbq (used for the host rings). 18824bf50f18SLuigi Rizzo * 18834bf50f18SLuigi Rizzo * * netmap_vp_krings_create (VALE ports) 18844bf50f18SLuigi Rizzo * add leases and scratchpads 18854bf50f18SLuigi Rizzo * 18864bf50f18SLuigi Rizzo * * netmap_pipe_krings_create (pipes) 18874bf50f18SLuigi Rizzo * create the krings and rings of both ends and 18884bf50f18SLuigi Rizzo * cross-link them 18894bf50f18SLuigi Rizzo * 18904bf50f18SLuigi Rizzo * * netmap_monitor_krings_create (monitors) 18914bf50f18SLuigi Rizzo * avoid allocating the mbq 18924bf50f18SLuigi Rizzo * 18934bf50f18SLuigi Rizzo * * netmap_bwrap_krings_create (bwraps) 18944bf50f18SLuigi Rizzo * create both the brap krings array, 18954bf50f18SLuigi Rizzo * the krings array of the wrapped adapter, and 18964bf50f18SLuigi Rizzo * (if needed) the fake array for the host adapter 18974bf50f18SLuigi Rizzo * 18984bf50f18SLuigi Rizzo * na->nm_register(, 1) 18994bf50f18SLuigi Rizzo * (put the adapter in netmap mode) 19004bf50f18SLuigi Rizzo * 19014bf50f18SLuigi Rizzo * This may be one of the following: 19024bf50f18SLuigi Rizzo * (XXX these should be either all *_register or all *_reg 2014-03-15) 19034bf50f18SLuigi Rizzo * 19044bf50f18SLuigi Rizzo * * netmap_hw_register (hw ports) 19054bf50f18SLuigi Rizzo * checks that the ifp is still there, then calls 19064bf50f18SLuigi Rizzo * the hardware specific callback; 19074bf50f18SLuigi Rizzo * 19084bf50f18SLuigi Rizzo * * netmap_vp_reg (VALE ports) 19094bf50f18SLuigi Rizzo * If the port is connected to a bridge, 19104bf50f18SLuigi Rizzo * set the NAF_NETMAP_ON flag under the 19114bf50f18SLuigi Rizzo * bridge write lock. 19124bf50f18SLuigi Rizzo * 19134bf50f18SLuigi Rizzo * * netmap_pipe_reg (pipes) 19144bf50f18SLuigi Rizzo * inform the other pipe end that it is no 1915*453130d9SPedro F. Giffuni * longer responsible for the lifetime of this 19164bf50f18SLuigi Rizzo * pipe end 19174bf50f18SLuigi Rizzo * 19184bf50f18SLuigi Rizzo * * netmap_monitor_reg (monitors) 19194bf50f18SLuigi Rizzo * intercept the sync callbacks of the monitored 19204bf50f18SLuigi Rizzo * rings 19214bf50f18SLuigi Rizzo * 19224bf50f18SLuigi Rizzo * * netmap_bwrap_register (bwraps) 19234bf50f18SLuigi Rizzo * cross-link the bwrap and hwna rings, 19244bf50f18SLuigi Rizzo * forward the request to the hwna, override 19254bf50f18SLuigi Rizzo * the hwna notify callback (to get the frames 19264bf50f18SLuigi Rizzo * coming from outside go through the bridge). 19274bf50f18SLuigi Rizzo * 19284bf50f18SLuigi Rizzo * 1929f18be576SLuigi Rizzo */ 1930847bf383SLuigi Rizzo int 1931f9790aebSLuigi Rizzo netmap_do_regif(struct netmap_priv_d *priv, struct netmap_adapter *na, 1932847bf383SLuigi Rizzo uint16_t ringid, uint32_t flags) 1933f18be576SLuigi Rizzo { 1934f18be576SLuigi Rizzo struct netmap_if *nifp = NULL; 1935847bf383SLuigi Rizzo int error; 1936f18be576SLuigi Rizzo 1937ce3ee1e7SLuigi Rizzo NMG_LOCK_ASSERT(); 1938f18be576SLuigi Rizzo /* ring configuration may have changed, fetch from the card */ 1939f18be576SLuigi Rizzo netmap_update_config(na); 1940f9790aebSLuigi Rizzo priv->np_na = na; /* store the reference */ 1941f0ea3689SLuigi Rizzo error = netmap_set_ringid(priv, ringid, flags); 1942f18be576SLuigi Rizzo if (error) 1943847bf383SLuigi Rizzo goto err; 1944847bf383SLuigi Rizzo error = netmap_mem_finalize(na->nm_mem, na); 1945ce3ee1e7SLuigi Rizzo if (error) 1946847bf383SLuigi Rizzo goto err; 1947847bf383SLuigi Rizzo 1948847bf383SLuigi Rizzo if (na->active_fds == 0) { 1949847bf383SLuigi Rizzo /* 1950847bf383SLuigi Rizzo * If this is the first registration of the adapter, 1951847bf383SLuigi Rizzo * also create the netmap rings and their in-kernel view, 1952847bf383SLuigi Rizzo * the netmap krings. 1953847bf383SLuigi Rizzo */ 1954847bf383SLuigi Rizzo 1955847bf383SLuigi Rizzo /* 1956847bf383SLuigi Rizzo * Depending on the adapter, this may also create 1957847bf383SLuigi Rizzo * the netmap rings themselves 1958847bf383SLuigi Rizzo */ 1959847bf383SLuigi Rizzo error = na->nm_krings_create(na); 1960847bf383SLuigi Rizzo if (error) 1961847bf383SLuigi Rizzo goto err_drop_mem; 1962847bf383SLuigi Rizzo 1963847bf383SLuigi Rizzo /* create all missing netmap rings */ 1964847bf383SLuigi Rizzo error = netmap_mem_rings_create(na); 1965847bf383SLuigi Rizzo if (error) 1966847bf383SLuigi Rizzo goto err_del_krings; 1967ce3ee1e7SLuigi Rizzo } 1968847bf383SLuigi Rizzo 1969847bf383SLuigi Rizzo /* now the kring must exist and we can check whether some 1970847bf383SLuigi Rizzo * previous bind has exclusive ownership on them 1971847bf383SLuigi Rizzo */ 1972847bf383SLuigi Rizzo error = netmap_get_exclusive(priv); 1973847bf383SLuigi Rizzo if (error) 1974847bf383SLuigi Rizzo goto err_del_rings; 1975847bf383SLuigi Rizzo 1976847bf383SLuigi Rizzo /* in all cases, create a new netmap if */ 1977847bf383SLuigi Rizzo nifp = netmap_mem_if_new(na); 1978847bf383SLuigi Rizzo if (nifp == NULL) { 1979f18be576SLuigi Rizzo error = ENOMEM; 1980847bf383SLuigi Rizzo goto err_rel_excl; 1981ce3ee1e7SLuigi Rizzo } 1982847bf383SLuigi Rizzo 1983f9790aebSLuigi Rizzo na->active_fds++; 19844bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) { 19854bf50f18SLuigi Rizzo /* Netmap not active, set the card in netmap mode 1986f18be576SLuigi Rizzo * and make it use the shared buffers. 1987ce3ee1e7SLuigi Rizzo */ 198889cc2556SLuigi Rizzo /* cache the allocator info in the na */ 1989847bf383SLuigi Rizzo netmap_mem_get_lut(na->nm_mem, &na->na_lut); 1990847bf383SLuigi Rizzo ND("%p->na_lut == %p", na, na->na_lut.lut); 1991f9790aebSLuigi Rizzo error = na->nm_register(na, 1); /* mode on */ 1992847bf383SLuigi Rizzo if (error) 1993847bf383SLuigi Rizzo goto err_del_if; 1994f18be576SLuigi Rizzo } 1995847bf383SLuigi Rizzo 1996ce3ee1e7SLuigi Rizzo /* 1997847bf383SLuigi Rizzo * advertise that the interface is ready by setting np_nifp. 1998847bf383SLuigi Rizzo * The barrier is needed because readers (poll, *SYNC and mmap) 1999ce3ee1e7SLuigi Rizzo * check for priv->np_nifp != NULL without locking 2000ce3ee1e7SLuigi Rizzo */ 2001847bf383SLuigi Rizzo mb(); /* make sure previous writes are visible to all CPUs */ 2002ce3ee1e7SLuigi Rizzo priv->np_nifp = nifp; 2003847bf383SLuigi Rizzo 2004847bf383SLuigi Rizzo return 0; 2005847bf383SLuigi Rizzo 2006847bf383SLuigi Rizzo err_del_if: 2007847bf383SLuigi Rizzo memset(&na->na_lut, 0, sizeof(na->na_lut)); 2008847bf383SLuigi Rizzo na->active_fds--; 2009847bf383SLuigi Rizzo netmap_mem_if_delete(na, nifp); 2010847bf383SLuigi Rizzo err_rel_excl: 2011847bf383SLuigi Rizzo netmap_rel_exclusive(priv); 2012847bf383SLuigi Rizzo err_del_rings: 2013847bf383SLuigi Rizzo if (na->active_fds == 0) 2014847bf383SLuigi Rizzo netmap_mem_rings_delete(na); 2015847bf383SLuigi Rizzo err_del_krings: 2016847bf383SLuigi Rizzo if (na->active_fds == 0) 2017847bf383SLuigi Rizzo na->nm_krings_delete(na); 2018847bf383SLuigi Rizzo err_drop_mem: 2019847bf383SLuigi Rizzo netmap_mem_deref(na->nm_mem, na); 2020847bf383SLuigi Rizzo err: 2021847bf383SLuigi Rizzo priv->np_na = NULL; 2022847bf383SLuigi Rizzo return error; 2023ce3ee1e7SLuigi Rizzo } 2024847bf383SLuigi Rizzo 2025847bf383SLuigi Rizzo 2026847bf383SLuigi Rizzo /* 2027847bf383SLuigi Rizzo * update kring and ring at the end of txsync. 2028847bf383SLuigi Rizzo */ 2029847bf383SLuigi Rizzo static inline void 2030847bf383SLuigi Rizzo nm_txsync_finalize(struct netmap_kring *kring) 2031847bf383SLuigi Rizzo { 2032847bf383SLuigi Rizzo /* update ring tail to what the kernel knows */ 2033847bf383SLuigi Rizzo kring->ring->tail = kring->rtail = kring->nr_hwtail; 2034847bf383SLuigi Rizzo 2035847bf383SLuigi Rizzo /* note, head/rhead/hwcur might be behind cur/rcur 2036847bf383SLuigi Rizzo * if no carrier 2037847bf383SLuigi Rizzo */ 2038847bf383SLuigi Rizzo ND(5, "%s now hwcur %d hwtail %d head %d cur %d tail %d", 2039847bf383SLuigi Rizzo kring->name, kring->nr_hwcur, kring->nr_hwtail, 2040847bf383SLuigi Rizzo kring->rhead, kring->rcur, kring->rtail); 2041847bf383SLuigi Rizzo } 2042847bf383SLuigi Rizzo 2043847bf383SLuigi Rizzo 2044847bf383SLuigi Rizzo /* 2045847bf383SLuigi Rizzo * update kring and ring at the end of rxsync 2046847bf383SLuigi Rizzo */ 2047847bf383SLuigi Rizzo static inline void 2048847bf383SLuigi Rizzo nm_rxsync_finalize(struct netmap_kring *kring) 2049847bf383SLuigi Rizzo { 2050847bf383SLuigi Rizzo /* tell userspace that there might be new packets */ 2051847bf383SLuigi Rizzo //struct netmap_ring *ring = kring->ring; 2052847bf383SLuigi Rizzo ND("head %d cur %d tail %d -> %d", ring->head, ring->cur, ring->tail, 2053847bf383SLuigi Rizzo kring->nr_hwtail); 2054847bf383SLuigi Rizzo kring->ring->tail = kring->rtail = kring->nr_hwtail; 2055847bf383SLuigi Rizzo /* make a copy of the state for next round */ 2056847bf383SLuigi Rizzo kring->rhead = kring->ring->head; 2057847bf383SLuigi Rizzo kring->rcur = kring->ring->cur; 2058f18be576SLuigi Rizzo } 2059f18be576SLuigi Rizzo 2060f18be576SLuigi Rizzo 2061f18be576SLuigi Rizzo 206268b8534bSLuigi Rizzo /* 206368b8534bSLuigi Rizzo * ioctl(2) support for the "netmap" device. 206468b8534bSLuigi Rizzo * 206568b8534bSLuigi Rizzo * Following a list of accepted commands: 206668b8534bSLuigi Rizzo * - NIOCGINFO 206768b8534bSLuigi Rizzo * - SIOCGIFADDR just for convenience 206868b8534bSLuigi Rizzo * - NIOCREGIF 206968b8534bSLuigi Rizzo * - NIOCTXSYNC 207068b8534bSLuigi Rizzo * - NIOCRXSYNC 207168b8534bSLuigi Rizzo * 207268b8534bSLuigi Rizzo * Return 0 on success, errno otherwise. 207368b8534bSLuigi Rizzo */ 2074f9790aebSLuigi Rizzo int 20750b8ed8e0SLuigi Rizzo netmap_ioctl(struct cdev *dev, u_long cmd, caddr_t data, 20760b8ed8e0SLuigi Rizzo int fflag, struct thread *td) 207768b8534bSLuigi Rizzo { 207868b8534bSLuigi Rizzo struct netmap_priv_d *priv = NULL; 207968b8534bSLuigi Rizzo struct nmreq *nmr = (struct nmreq *) data; 2080ce3ee1e7SLuigi Rizzo struct netmap_adapter *na = NULL; 208168b8534bSLuigi Rizzo int error; 2082f0ea3689SLuigi Rizzo u_int i, qfirst, qlast; 208368b8534bSLuigi Rizzo struct netmap_if *nifp; 2084ce3ee1e7SLuigi Rizzo struct netmap_kring *krings; 2085847bf383SLuigi Rizzo enum txrx t; 208668b8534bSLuigi Rizzo 20870b8ed8e0SLuigi Rizzo (void)dev; /* UNUSED */ 20880b8ed8e0SLuigi Rizzo (void)fflag; /* UNUSED */ 2089f196ce38SLuigi Rizzo 209017885a7bSLuigi Rizzo if (cmd == NIOCGINFO || cmd == NIOCREGIF) { 209117885a7bSLuigi Rizzo /* truncate name */ 209217885a7bSLuigi Rizzo nmr->nr_name[sizeof(nmr->nr_name) - 1] = '\0'; 209317885a7bSLuigi Rizzo if (nmr->nr_version != NETMAP_API) { 209417885a7bSLuigi Rizzo D("API mismatch for %s got %d need %d", 209517885a7bSLuigi Rizzo nmr->nr_name, 209617885a7bSLuigi Rizzo nmr->nr_version, NETMAP_API); 209717885a7bSLuigi Rizzo nmr->nr_version = NETMAP_API; 2098f0ea3689SLuigi Rizzo } 2099f0ea3689SLuigi Rizzo if (nmr->nr_version < NETMAP_MIN_API || 2100f0ea3689SLuigi Rizzo nmr->nr_version > NETMAP_MAX_API) { 210117885a7bSLuigi Rizzo return EINVAL; 210217885a7bSLuigi Rizzo } 210317885a7bSLuigi Rizzo } 2104506cc70cSLuigi Rizzo CURVNET_SET(TD_TO_VNET(td)); 2105506cc70cSLuigi Rizzo 210668b8534bSLuigi Rizzo error = devfs_get_cdevpriv((void **)&priv); 21078241616dSLuigi Rizzo if (error) { 2108506cc70cSLuigi Rizzo CURVNET_RESTORE(); 21098241616dSLuigi Rizzo /* XXX ENOENT should be impossible, since the priv 21108241616dSLuigi Rizzo * is now created in the open */ 21118241616dSLuigi Rizzo return (error == ENOENT ? ENXIO : error); 2112506cc70cSLuigi Rizzo } 211368b8534bSLuigi Rizzo 211468b8534bSLuigi Rizzo switch (cmd) { 211568b8534bSLuigi Rizzo case NIOCGINFO: /* return capabilities etc */ 2116f18be576SLuigi Rizzo if (nmr->nr_cmd == NETMAP_BDG_LIST) { 2117f18be576SLuigi Rizzo error = netmap_bdg_ctl(nmr, NULL); 2118f18be576SLuigi Rizzo break; 2119f18be576SLuigi Rizzo } 2120ce3ee1e7SLuigi Rizzo 2121ce3ee1e7SLuigi Rizzo NMG_LOCK(); 2122ce3ee1e7SLuigi Rizzo do { 2123ce3ee1e7SLuigi Rizzo /* memsize is always valid */ 2124ce3ee1e7SLuigi Rizzo struct netmap_mem_d *nmd = &nm_mem; 2125ce3ee1e7SLuigi Rizzo u_int memflags; 2126ce3ee1e7SLuigi Rizzo 2127ce3ee1e7SLuigi Rizzo if (nmr->nr_name[0] != '\0') { 2128ce3ee1e7SLuigi Rizzo /* get a refcount */ 2129f9790aebSLuigi Rizzo error = netmap_get_na(nmr, &na, 1 /* create */); 21308241616dSLuigi Rizzo if (error) 21318241616dSLuigi Rizzo break; 2132f9790aebSLuigi Rizzo nmd = na->nm_mem; /* get memory allocator */ 2133ce3ee1e7SLuigi Rizzo } 2134ce3ee1e7SLuigi Rizzo 2135f0ea3689SLuigi Rizzo error = netmap_mem_get_info(nmd, &nmr->nr_memsize, &memflags, 2136f0ea3689SLuigi Rizzo &nmr->nr_arg2); 2137ce3ee1e7SLuigi Rizzo if (error) 2138ce3ee1e7SLuigi Rizzo break; 2139ce3ee1e7SLuigi Rizzo if (na == NULL) /* only memory info */ 2140ce3ee1e7SLuigi Rizzo break; 21418241616dSLuigi Rizzo nmr->nr_offset = 0; 21428241616dSLuigi Rizzo nmr->nr_rx_slots = nmr->nr_tx_slots = 0; 2143ae10d1afSLuigi Rizzo netmap_update_config(na); 2144d76bf4ffSLuigi Rizzo nmr->nr_rx_rings = na->num_rx_rings; 2145d76bf4ffSLuigi Rizzo nmr->nr_tx_rings = na->num_tx_rings; 214664ae02c3SLuigi Rizzo nmr->nr_rx_slots = na->num_rx_desc; 214764ae02c3SLuigi Rizzo nmr->nr_tx_slots = na->num_tx_desc; 2148f9790aebSLuigi Rizzo netmap_adapter_put(na); 2149ce3ee1e7SLuigi Rizzo } while (0); 2150ce3ee1e7SLuigi Rizzo NMG_UNLOCK(); 215168b8534bSLuigi Rizzo break; 215268b8534bSLuigi Rizzo 215368b8534bSLuigi Rizzo case NIOCREGIF: 2154f18be576SLuigi Rizzo /* possibly attach/detach NIC and VALE switch */ 2155f18be576SLuigi Rizzo i = nmr->nr_cmd; 2156f9790aebSLuigi Rizzo if (i == NETMAP_BDG_ATTACH || i == NETMAP_BDG_DETACH 21574bf50f18SLuigi Rizzo || i == NETMAP_BDG_VNET_HDR 21584bf50f18SLuigi Rizzo || i == NETMAP_BDG_NEWIF 21594bf50f18SLuigi Rizzo || i == NETMAP_BDG_DELIF) { 2160f18be576SLuigi Rizzo error = netmap_bdg_ctl(nmr, NULL); 2161f18be576SLuigi Rizzo break; 2162f18be576SLuigi Rizzo } else if (i != 0) { 2163f18be576SLuigi Rizzo D("nr_cmd must be 0 not %d", i); 2164f18be576SLuigi Rizzo error = EINVAL; 2165f18be576SLuigi Rizzo break; 2166f18be576SLuigi Rizzo } 2167f18be576SLuigi Rizzo 21688241616dSLuigi Rizzo /* protect access to priv from concurrent NIOCREGIF */ 2169ce3ee1e7SLuigi Rizzo NMG_LOCK(); 2170ce3ee1e7SLuigi Rizzo do { 2171ce3ee1e7SLuigi Rizzo u_int memflags; 2172ce3ee1e7SLuigi Rizzo 2173847bf383SLuigi Rizzo if (priv->np_nifp != NULL) { /* thread already registered */ 2174f0ea3689SLuigi Rizzo error = EBUSY; 2175506cc70cSLuigi Rizzo break; 2176506cc70cSLuigi Rizzo } 217768b8534bSLuigi Rizzo /* find the interface and a reference */ 2178f9790aebSLuigi Rizzo error = netmap_get_na(nmr, &na, 1 /* create */); /* keep reference */ 217968b8534bSLuigi Rizzo if (error) 2180ce3ee1e7SLuigi Rizzo break; 2181f9790aebSLuigi Rizzo if (NETMAP_OWNED_BY_KERN(na)) { 2182f9790aebSLuigi Rizzo netmap_adapter_put(na); 2183ce3ee1e7SLuigi Rizzo error = EBUSY; 2184ce3ee1e7SLuigi Rizzo break; 2185f196ce38SLuigi Rizzo } 2186847bf383SLuigi Rizzo error = netmap_do_regif(priv, na, nmr->nr_ringid, nmr->nr_flags); 2187847bf383SLuigi Rizzo if (error) { /* reg. failed, release priv and ref */ 2188f9790aebSLuigi Rizzo netmap_adapter_put(na); 2189ce3ee1e7SLuigi Rizzo break; 219068b8534bSLuigi Rizzo } 2191847bf383SLuigi Rizzo nifp = priv->np_nifp; 2192f0ea3689SLuigi Rizzo priv->np_td = td; // XXX kqueue, debugging only 219368b8534bSLuigi Rizzo 219468b8534bSLuigi Rizzo /* return the offset of the netmap_if object */ 2195d76bf4ffSLuigi Rizzo nmr->nr_rx_rings = na->num_rx_rings; 2196d76bf4ffSLuigi Rizzo nmr->nr_tx_rings = na->num_tx_rings; 219764ae02c3SLuigi Rizzo nmr->nr_rx_slots = na->num_rx_desc; 219864ae02c3SLuigi Rizzo nmr->nr_tx_slots = na->num_tx_desc; 2199f0ea3689SLuigi Rizzo error = netmap_mem_get_info(na->nm_mem, &nmr->nr_memsize, &memflags, 2200f0ea3689SLuigi Rizzo &nmr->nr_arg2); 2201ce3ee1e7SLuigi Rizzo if (error) { 2202847bf383SLuigi Rizzo netmap_do_unregif(priv); 2203f9790aebSLuigi Rizzo netmap_adapter_put(na); 2204ce3ee1e7SLuigi Rizzo break; 2205ce3ee1e7SLuigi Rizzo } 2206ce3ee1e7SLuigi Rizzo if (memflags & NETMAP_MEM_PRIVATE) { 22073d819cb6SLuigi Rizzo *(uint32_t *)(uintptr_t)&nifp->ni_flags |= NI_PRIV_MEM; 2208ce3ee1e7SLuigi Rizzo } 2209847bf383SLuigi Rizzo for_rx_tx(t) { 2210847bf383SLuigi Rizzo priv->np_si[t] = nm_si_user(priv, t) ? 2211847bf383SLuigi Rizzo &na->si[t] : &NMR(na, t)[priv->np_qfirst[t]].si; 2212847bf383SLuigi Rizzo } 2213f0ea3689SLuigi Rizzo 2214f0ea3689SLuigi Rizzo if (nmr->nr_arg3) { 2215f0ea3689SLuigi Rizzo D("requested %d extra buffers", nmr->nr_arg3); 2216f0ea3689SLuigi Rizzo nmr->nr_arg3 = netmap_extra_alloc(na, 2217f0ea3689SLuigi Rizzo &nifp->ni_bufs_head, nmr->nr_arg3); 2218f0ea3689SLuigi Rizzo D("got %d extra buffers", nmr->nr_arg3); 2219f0ea3689SLuigi Rizzo } 2220ce3ee1e7SLuigi Rizzo nmr->nr_offset = netmap_mem_if_offset(na->nm_mem, nifp); 2221ce3ee1e7SLuigi Rizzo } while (0); 2222ce3ee1e7SLuigi Rizzo NMG_UNLOCK(); 222368b8534bSLuigi Rizzo break; 222468b8534bSLuigi Rizzo 222568b8534bSLuigi Rizzo case NIOCTXSYNC: 222668b8534bSLuigi Rizzo case NIOCRXSYNC: 22278241616dSLuigi Rizzo nifp = priv->np_nifp; 22288241616dSLuigi Rizzo 22298241616dSLuigi Rizzo if (nifp == NULL) { 2230506cc70cSLuigi Rizzo error = ENXIO; 2231506cc70cSLuigi Rizzo break; 2232506cc70cSLuigi Rizzo } 22336641c68bSLuigi Rizzo mb(); /* make sure following reads are not from cache */ 22348241616dSLuigi Rizzo 2235f9790aebSLuigi Rizzo na = priv->np_na; /* we have a reference */ 22368241616dSLuigi Rizzo 2237f9790aebSLuigi Rizzo if (na == NULL) { 2238f9790aebSLuigi Rizzo D("Internal error: nifp != NULL && na == NULL"); 22398241616dSLuigi Rizzo error = ENXIO; 22408241616dSLuigi Rizzo break; 22418241616dSLuigi Rizzo } 22428241616dSLuigi Rizzo 22434bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) { 2244f9790aebSLuigi Rizzo error = ENXIO; 2245f9790aebSLuigi Rizzo break; 2246f9790aebSLuigi Rizzo } 2247f9790aebSLuigi Rizzo 2248847bf383SLuigi Rizzo t = (cmd == NIOCTXSYNC ? NR_TX : NR_RX); 2249847bf383SLuigi Rizzo krings = NMR(na, t); 2250847bf383SLuigi Rizzo qfirst = priv->np_qfirst[t]; 2251847bf383SLuigi Rizzo qlast = priv->np_qlast[t]; 225268b8534bSLuigi Rizzo 2253f0ea3689SLuigi Rizzo for (i = qfirst; i < qlast; i++) { 2254ce3ee1e7SLuigi Rizzo struct netmap_kring *kring = krings + i; 2255ce3ee1e7SLuigi Rizzo if (nm_kr_tryget(kring)) { 2256ce3ee1e7SLuigi Rizzo error = EBUSY; 2257ce3ee1e7SLuigi Rizzo goto out; 2258ce3ee1e7SLuigi Rizzo } 225968b8534bSLuigi Rizzo if (cmd == NIOCTXSYNC) { 226068b8534bSLuigi Rizzo if (netmap_verbose & NM_VERB_TXSYNC) 22613c0caf6cSLuigi Rizzo D("pre txsync ring %d cur %d hwcur %d", 226268b8534bSLuigi Rizzo i, kring->ring->cur, 226368b8534bSLuigi Rizzo kring->nr_hwcur); 226417885a7bSLuigi Rizzo if (nm_txsync_prologue(kring) >= kring->nkr_num_slots) { 226517885a7bSLuigi Rizzo netmap_ring_reinit(kring); 2266847bf383SLuigi Rizzo } else if (kring->nm_sync(kring, NAF_FORCE_RECLAIM) == 0) { 2267847bf383SLuigi Rizzo nm_txsync_finalize(kring); 226817885a7bSLuigi Rizzo } 226968b8534bSLuigi Rizzo if (netmap_verbose & NM_VERB_TXSYNC) 22703c0caf6cSLuigi Rizzo D("post txsync ring %d cur %d hwcur %d", 227168b8534bSLuigi Rizzo i, kring->ring->cur, 227268b8534bSLuigi Rizzo kring->nr_hwcur); 227368b8534bSLuigi Rizzo } else { 2274847bf383SLuigi Rizzo if (nm_rxsync_prologue(kring) >= kring->nkr_num_slots) { 2275847bf383SLuigi Rizzo netmap_ring_reinit(kring); 2276847bf383SLuigi Rizzo } else if (kring->nm_sync(kring, NAF_FORCE_READ) == 0) { 2277847bf383SLuigi Rizzo nm_rxsync_finalize(kring); 2278847bf383SLuigi Rizzo } 227968b8534bSLuigi Rizzo microtime(&na->rx_rings[i].ring->ts); 228068b8534bSLuigi Rizzo } 2281ce3ee1e7SLuigi Rizzo nm_kr_put(kring); 228268b8534bSLuigi Rizzo } 228368b8534bSLuigi Rizzo 228468b8534bSLuigi Rizzo break; 228568b8534bSLuigi Rizzo 2286847bf383SLuigi Rizzo #ifdef WITH_VALE 22874bf50f18SLuigi Rizzo case NIOCCONFIG: 22884bf50f18SLuigi Rizzo error = netmap_bdg_config(nmr); 22894bf50f18SLuigi Rizzo break; 2290847bf383SLuigi Rizzo #endif 2291f196ce38SLuigi Rizzo #ifdef __FreeBSD__ 229289e3fd52SLuigi Rizzo case FIONBIO: 229389e3fd52SLuigi Rizzo case FIOASYNC: 229489e3fd52SLuigi Rizzo ND("FIONBIO/FIOASYNC are no-ops"); 229589e3fd52SLuigi Rizzo break; 229689e3fd52SLuigi Rizzo 229768b8534bSLuigi Rizzo case BIOCIMMEDIATE: 229868b8534bSLuigi Rizzo case BIOCGHDRCMPLT: 229968b8534bSLuigi Rizzo case BIOCSHDRCMPLT: 230068b8534bSLuigi Rizzo case BIOCSSEESENT: 230168b8534bSLuigi Rizzo D("ignore BIOCIMMEDIATE/BIOCSHDRCMPLT/BIOCSHDRCMPLT/BIOCSSEESENT"); 230268b8534bSLuigi Rizzo break; 230368b8534bSLuigi Rizzo 2304babc7c12SLuigi Rizzo default: /* allow device-specific ioctls */ 230568b8534bSLuigi Rizzo { 2306b3d37588SLuigi Rizzo struct ifnet *ifp = ifunit_ref(nmr->nr_name); 2307b3d37588SLuigi Rizzo if (ifp == NULL) { 2308b3d37588SLuigi Rizzo error = ENXIO; 2309b3d37588SLuigi Rizzo } else { 231068b8534bSLuigi Rizzo struct socket so; 2311ce3ee1e7SLuigi Rizzo 231268b8534bSLuigi Rizzo bzero(&so, sizeof(so)); 231368b8534bSLuigi Rizzo so.so_vnet = ifp->if_vnet; 231468b8534bSLuigi Rizzo // so->so_proto not null. 231568b8534bSLuigi Rizzo error = ifioctl(&so, cmd, data, td); 2316b3d37588SLuigi Rizzo if_rele(ifp); 2317b3d37588SLuigi Rizzo } 2318babc7c12SLuigi Rizzo break; 231968b8534bSLuigi Rizzo } 2320f196ce38SLuigi Rizzo 2321f196ce38SLuigi Rizzo #else /* linux */ 2322f196ce38SLuigi Rizzo default: 2323f196ce38SLuigi Rizzo error = EOPNOTSUPP; 2324f196ce38SLuigi Rizzo #endif /* linux */ 232568b8534bSLuigi Rizzo } 2326ce3ee1e7SLuigi Rizzo out: 232768b8534bSLuigi Rizzo 2328506cc70cSLuigi Rizzo CURVNET_RESTORE(); 232968b8534bSLuigi Rizzo return (error); 233068b8534bSLuigi Rizzo } 233168b8534bSLuigi Rizzo 233268b8534bSLuigi Rizzo 233368b8534bSLuigi Rizzo /* 233468b8534bSLuigi Rizzo * select(2) and poll(2) handlers for the "netmap" device. 233568b8534bSLuigi Rizzo * 233668b8534bSLuigi Rizzo * Can be called for one or more queues. 233768b8534bSLuigi Rizzo * Return true the event mask corresponding to ready events. 233868b8534bSLuigi Rizzo * If there are no ready events, do a selrecord on either individual 2339ce3ee1e7SLuigi Rizzo * selinfo or on the global one. 234068b8534bSLuigi Rizzo * Device-dependent parts (locking and sync of tx/rx rings) 234168b8534bSLuigi Rizzo * are done through callbacks. 2342f196ce38SLuigi Rizzo * 234301c7d25fSLuigi Rizzo * On linux, arguments are really pwait, the poll table, and 'td' is struct file * 234401c7d25fSLuigi Rizzo * The first one is remapped to pwait as selrecord() uses the name as an 234501c7d25fSLuigi Rizzo * hidden argument. 234668b8534bSLuigi Rizzo */ 2347f9790aebSLuigi Rizzo int 234801c7d25fSLuigi Rizzo netmap_poll(struct cdev *dev, int events, struct thread *td) 234968b8534bSLuigi Rizzo { 235068b8534bSLuigi Rizzo struct netmap_priv_d *priv = NULL; 235168b8534bSLuigi Rizzo struct netmap_adapter *na; 235268b8534bSLuigi Rizzo struct netmap_kring *kring; 2353847bf383SLuigi Rizzo u_int i, check_all_tx, check_all_rx, want[NR_TXRX], revents = 0; 2354847bf383SLuigi Rizzo #define want_tx want[NR_TX] 2355847bf383SLuigi Rizzo #define want_rx want[NR_RX] 235617885a7bSLuigi Rizzo struct mbq q; /* packets from hw queues to host stack */ 235701c7d25fSLuigi Rizzo void *pwait = dev; /* linux compatibility */ 2358f0ea3689SLuigi Rizzo int is_kevent = 0; 2359847bf383SLuigi Rizzo enum txrx t; 236001c7d25fSLuigi Rizzo 2361f9790aebSLuigi Rizzo /* 2362f9790aebSLuigi Rizzo * In order to avoid nested locks, we need to "double check" 2363f9790aebSLuigi Rizzo * txsync and rxsync if we decide to do a selrecord(). 2364f9790aebSLuigi Rizzo * retry_tx (and retry_rx, later) prevent looping forever. 2365f9790aebSLuigi Rizzo */ 236617885a7bSLuigi Rizzo int retry_tx = 1, retry_rx = 1; 2367ce3ee1e7SLuigi Rizzo 236801c7d25fSLuigi Rizzo (void)pwait; 2369f9790aebSLuigi Rizzo mbq_init(&q); 237068b8534bSLuigi Rizzo 2371f0ea3689SLuigi Rizzo /* 2372f0ea3689SLuigi Rizzo * XXX kevent has curthread->tp_fop == NULL, 2373f0ea3689SLuigi Rizzo * so devfs_get_cdevpriv() fails. We circumvent this by passing 2374f0ea3689SLuigi Rizzo * priv as the first argument, which is also useful to avoid 2375f0ea3689SLuigi Rizzo * the selrecord() which are not necessary in that case. 2376f0ea3689SLuigi Rizzo */ 2377f0ea3689SLuigi Rizzo if (devfs_get_cdevpriv((void **)&priv) != 0) { 2378f0ea3689SLuigi Rizzo is_kevent = 1; 2379f0ea3689SLuigi Rizzo if (netmap_verbose) 2380f0ea3689SLuigi Rizzo D("called from kevent"); 2381f0ea3689SLuigi Rizzo priv = (struct netmap_priv_d *)dev; 2382f0ea3689SLuigi Rizzo } 2383f0ea3689SLuigi Rizzo if (priv == NULL) 238468b8534bSLuigi Rizzo return POLLERR; 238568b8534bSLuigi Rizzo 23868241616dSLuigi Rizzo if (priv->np_nifp == NULL) { 23878241616dSLuigi Rizzo D("No if registered"); 23888241616dSLuigi Rizzo return POLLERR; 23898241616dSLuigi Rizzo } 2390847bf383SLuigi Rizzo mb(); /* make sure following reads are not from cache */ 23918241616dSLuigi Rizzo 2392f9790aebSLuigi Rizzo na = priv->np_na; 2393f9790aebSLuigi Rizzo 23944bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) 239568b8534bSLuigi Rizzo return POLLERR; 239668b8534bSLuigi Rizzo 239768b8534bSLuigi Rizzo if (netmap_verbose & 0x8000) 23984bf50f18SLuigi Rizzo D("device %s events 0x%x", na->name, events); 239968b8534bSLuigi Rizzo want_tx = events & (POLLOUT | POLLWRNORM); 240068b8534bSLuigi Rizzo want_rx = events & (POLLIN | POLLRDNORM); 240168b8534bSLuigi Rizzo 2402091fd0abSLuigi Rizzo 240368b8534bSLuigi Rizzo /* 2404f9790aebSLuigi Rizzo * check_all_{tx|rx} are set if the card has more than one queue AND 2405f9790aebSLuigi Rizzo * the file descriptor is bound to all of them. If so, we sleep on 2406ce3ee1e7SLuigi Rizzo * the "global" selinfo, otherwise we sleep on individual selinfo 2407ce3ee1e7SLuigi Rizzo * (FreeBSD only allows two selinfo's per file descriptor). 2408ce3ee1e7SLuigi Rizzo * The interrupt routine in the driver wake one or the other 2409ce3ee1e7SLuigi Rizzo * (or both) depending on which clients are active. 241068b8534bSLuigi Rizzo * 241168b8534bSLuigi Rizzo * rxsync() is only called if we run out of buffers on a POLLIN. 241268b8534bSLuigi Rizzo * txsync() is called if we run out of buffers on POLLOUT, or 241368b8534bSLuigi Rizzo * there are pending packets to send. The latter can be disabled 241468b8534bSLuigi Rizzo * passing NETMAP_NO_TX_POLL in the NIOCREG call. 241568b8534bSLuigi Rizzo */ 2416847bf383SLuigi Rizzo check_all_tx = nm_si_user(priv, NR_TX); 2417847bf383SLuigi Rizzo check_all_rx = nm_si_user(priv, NR_RX); 241864ae02c3SLuigi Rizzo 241968b8534bSLuigi Rizzo /* 2420f9790aebSLuigi Rizzo * We start with a lock free round which is cheap if we have 2421f9790aebSLuigi Rizzo * slots available. If this fails, then lock and call the sync 242268b8534bSLuigi Rizzo * routines. 242368b8534bSLuigi Rizzo */ 2424847bf383SLuigi Rizzo for_rx_tx(t) { 2425847bf383SLuigi Rizzo for (i = priv->np_qfirst[t]; want[t] && i < priv->np_qlast[t]; i++) { 2426847bf383SLuigi Rizzo kring = &NMR(na, t)[i]; 242717885a7bSLuigi Rizzo /* XXX compare ring->cur and kring->tail */ 242817885a7bSLuigi Rizzo if (!nm_ring_empty(kring->ring)) { 2429847bf383SLuigi Rizzo revents |= want[t]; 2430847bf383SLuigi Rizzo want[t] = 0; /* also breaks the loop */ 243168b8534bSLuigi Rizzo } 243268b8534bSLuigi Rizzo } 243368b8534bSLuigi Rizzo } 243468b8534bSLuigi Rizzo 243568b8534bSLuigi Rizzo /* 243617885a7bSLuigi Rizzo * If we want to push packets out (priv->np_txpoll) or 243717885a7bSLuigi Rizzo * want_tx is still set, we must issue txsync calls 243817885a7bSLuigi Rizzo * (on all rings, to avoid that the tx rings stall). 2439f9790aebSLuigi Rizzo * XXX should also check cur != hwcur on the tx rings. 2440f9790aebSLuigi Rizzo * Fortunately, normal tx mode has np_txpoll set. 244168b8534bSLuigi Rizzo */ 244268b8534bSLuigi Rizzo if (priv->np_txpoll || want_tx) { 244317885a7bSLuigi Rizzo /* 244417885a7bSLuigi Rizzo * The first round checks if anyone is ready, if not 244517885a7bSLuigi Rizzo * do a selrecord and another round to handle races. 244617885a7bSLuigi Rizzo * want_tx goes to 0 if any space is found, and is 244717885a7bSLuigi Rizzo * used to skip rings with no pending transmissions. 2448ce3ee1e7SLuigi Rizzo */ 2449091fd0abSLuigi Rizzo flush_tx: 2450847bf383SLuigi Rizzo for (i = priv->np_qfirst[NR_TX]; i < priv->np_qlast[NR_RX]; i++) { 245117885a7bSLuigi Rizzo int found = 0; 245217885a7bSLuigi Rizzo 245368b8534bSLuigi Rizzo kring = &na->tx_rings[i]; 245468b8534bSLuigi Rizzo if (!want_tx && kring->ring->cur == kring->nr_hwcur) 245568b8534bSLuigi Rizzo continue; 245617885a7bSLuigi Rizzo /* only one thread does txsync */ 2457ce3ee1e7SLuigi Rizzo if (nm_kr_tryget(kring)) { 245889cc2556SLuigi Rizzo /* either busy or stopped 245989cc2556SLuigi Rizzo * XXX if the ring is stopped, sleeping would 246089cc2556SLuigi Rizzo * be better. In current code, however, we only 246189cc2556SLuigi Rizzo * stop the rings for brief intervals (2014-03-14) 246289cc2556SLuigi Rizzo */ 246389e3fd52SLuigi Rizzo if (netmap_verbose) 246489e3fd52SLuigi Rizzo RD(2, "%p lost race on txring %d, ok", 246589e3fd52SLuigi Rizzo priv, i); 246617885a7bSLuigi Rizzo continue; 246768b8534bSLuigi Rizzo } 246817885a7bSLuigi Rizzo if (nm_txsync_prologue(kring) >= kring->nkr_num_slots) { 246917885a7bSLuigi Rizzo netmap_ring_reinit(kring); 247017885a7bSLuigi Rizzo revents |= POLLERR; 247117885a7bSLuigi Rizzo } else { 2472f0ea3689SLuigi Rizzo if (kring->nm_sync(kring, 0)) 247368b8534bSLuigi Rizzo revents |= POLLERR; 2474847bf383SLuigi Rizzo else 2475847bf383SLuigi Rizzo nm_txsync_finalize(kring); 247617885a7bSLuigi Rizzo } 247768b8534bSLuigi Rizzo 247817885a7bSLuigi Rizzo /* 247917885a7bSLuigi Rizzo * If we found new slots, notify potential 248017885a7bSLuigi Rizzo * listeners on the same ring. 248117885a7bSLuigi Rizzo * Since we just did a txsync, look at the copies 248217885a7bSLuigi Rizzo * of cur,tail in the kring. 2483f9790aebSLuigi Rizzo */ 248417885a7bSLuigi Rizzo found = kring->rcur != kring->rtail; 248517885a7bSLuigi Rizzo nm_kr_put(kring); 248617885a7bSLuigi Rizzo if (found) { /* notify other listeners */ 248768b8534bSLuigi Rizzo revents |= want_tx; 248868b8534bSLuigi Rizzo want_tx = 0; 2489847bf383SLuigi Rizzo kring->nm_notify(kring, 0); 249068b8534bSLuigi Rizzo } 2491ce3ee1e7SLuigi Rizzo } 2492f0ea3689SLuigi Rizzo if (want_tx && retry_tx && !is_kevent) { 24930e73f29aSLuigi Rizzo OS_selrecord(td, check_all_tx ? 2494847bf383SLuigi Rizzo &na->si[NR_TX] : &na->tx_rings[priv->np_qfirst[NR_TX]].si); 2495ce3ee1e7SLuigi Rizzo retry_tx = 0; 2496ce3ee1e7SLuigi Rizzo goto flush_tx; 249768b8534bSLuigi Rizzo } 249868b8534bSLuigi Rizzo } 249968b8534bSLuigi Rizzo 250068b8534bSLuigi Rizzo /* 250117885a7bSLuigi Rizzo * If want_rx is still set scan receive rings. 250268b8534bSLuigi Rizzo * Do it on all rings because otherwise we starve. 250368b8534bSLuigi Rizzo */ 250468b8534bSLuigi Rizzo if (want_rx) { 250517885a7bSLuigi Rizzo int send_down = 0; /* transparent mode */ 250689cc2556SLuigi Rizzo /* two rounds here for race avoidance */ 2507ce3ee1e7SLuigi Rizzo do_retry_rx: 2508847bf383SLuigi Rizzo for (i = priv->np_qfirst[NR_RX]; i < priv->np_qlast[NR_RX]; i++) { 250917885a7bSLuigi Rizzo int found = 0; 251017885a7bSLuigi Rizzo 251168b8534bSLuigi Rizzo kring = &na->rx_rings[i]; 2512ce3ee1e7SLuigi Rizzo 2513ce3ee1e7SLuigi Rizzo if (nm_kr_tryget(kring)) { 251489e3fd52SLuigi Rizzo if (netmap_verbose) 251589e3fd52SLuigi Rizzo RD(2, "%p lost race on rxring %d, ok", 251689e3fd52SLuigi Rizzo priv, i); 251717885a7bSLuigi Rizzo continue; 251868b8534bSLuigi Rizzo } 2519ce3ee1e7SLuigi Rizzo 2520847bf383SLuigi Rizzo if (nm_rxsync_prologue(kring) >= kring->nkr_num_slots) { 2521847bf383SLuigi Rizzo netmap_ring_reinit(kring); 2522847bf383SLuigi Rizzo revents |= POLLERR; 2523847bf383SLuigi Rizzo } 2524847bf383SLuigi Rizzo /* now we can use kring->rcur, rtail */ 2525847bf383SLuigi Rizzo 252617885a7bSLuigi Rizzo /* 252717885a7bSLuigi Rizzo * transparent mode support: collect packets 252817885a7bSLuigi Rizzo * from the rxring(s). 25294bf50f18SLuigi Rizzo * XXX NR_FORWARD should only be read on 25304bf50f18SLuigi Rizzo * physical or NIC ports 2531ce3ee1e7SLuigi Rizzo */ 2532091fd0abSLuigi Rizzo if (netmap_fwd ||kring->ring->flags & NR_FORWARD) { 2533091fd0abSLuigi Rizzo ND(10, "forwarding some buffers up %d to %d", 2534091fd0abSLuigi Rizzo kring->nr_hwcur, kring->ring->cur); 2535091fd0abSLuigi Rizzo netmap_grab_packets(kring, &q, netmap_fwd); 2536091fd0abSLuigi Rizzo } 253768b8534bSLuigi Rizzo 2538f0ea3689SLuigi Rizzo if (kring->nm_sync(kring, 0)) 253968b8534bSLuigi Rizzo revents |= POLLERR; 2540847bf383SLuigi Rizzo else 2541847bf383SLuigi Rizzo nm_rxsync_finalize(kring); 25425819da83SLuigi Rizzo if (netmap_no_timestamp == 0 || 25435819da83SLuigi Rizzo kring->ring->flags & NR_TIMESTAMP) { 254468b8534bSLuigi Rizzo microtime(&kring->ring->ts); 25455819da83SLuigi Rizzo } 254617885a7bSLuigi Rizzo found = kring->rcur != kring->rtail; 254717885a7bSLuigi Rizzo nm_kr_put(kring); 254817885a7bSLuigi Rizzo if (found) { 254968b8534bSLuigi Rizzo revents |= want_rx; 2550ce3ee1e7SLuigi Rizzo retry_rx = 0; 2551847bf383SLuigi Rizzo kring->nm_notify(kring, 0); 255268b8534bSLuigi Rizzo } 255368b8534bSLuigi Rizzo } 255417885a7bSLuigi Rizzo 255517885a7bSLuigi Rizzo /* transparent mode XXX only during first pass ? */ 2556f0ea3689SLuigi Rizzo if (na->na_flags & NAF_HOST_RINGS) { 2557f0ea3689SLuigi Rizzo kring = &na->rx_rings[na->num_rx_rings]; 25584bf50f18SLuigi Rizzo if (check_all_rx 25594bf50f18SLuigi Rizzo && (netmap_fwd || kring->ring->flags & NR_FORWARD)) { 25604bf50f18SLuigi Rizzo /* XXX fix to use kring fields */ 25614bf50f18SLuigi Rizzo if (nm_ring_empty(kring->ring)) 256217885a7bSLuigi Rizzo send_down = netmap_rxsync_from_host(na, td, dev); 25634bf50f18SLuigi Rizzo if (!nm_ring_empty(kring->ring)) 25644bf50f18SLuigi Rizzo revents |= want_rx; 256517885a7bSLuigi Rizzo } 2566f0ea3689SLuigi Rizzo } 256717885a7bSLuigi Rizzo 2568f0ea3689SLuigi Rizzo if (retry_rx && !is_kevent) 25690e73f29aSLuigi Rizzo OS_selrecord(td, check_all_rx ? 2570847bf383SLuigi Rizzo &na->si[NR_RX] : &na->rx_rings[priv->np_qfirst[NR_RX]].si); 257117885a7bSLuigi Rizzo if (send_down > 0 || retry_rx) { 257217885a7bSLuigi Rizzo retry_rx = 0; 257317885a7bSLuigi Rizzo if (send_down) 257417885a7bSLuigi Rizzo goto flush_tx; /* and retry_rx */ 257517885a7bSLuigi Rizzo else 2576ce3ee1e7SLuigi Rizzo goto do_retry_rx; 2577ce3ee1e7SLuigi Rizzo } 257868b8534bSLuigi Rizzo } 2579091fd0abSLuigi Rizzo 258017885a7bSLuigi Rizzo /* 258117885a7bSLuigi Rizzo * Transparent mode: marked bufs on rx rings between 258217885a7bSLuigi Rizzo * kring->nr_hwcur and ring->head 258317885a7bSLuigi Rizzo * are passed to the other endpoint. 258417885a7bSLuigi Rizzo * 258517885a7bSLuigi Rizzo * In this mode we also scan the sw rxring, which in 258617885a7bSLuigi Rizzo * turn passes packets up. 258717885a7bSLuigi Rizzo * 258817885a7bSLuigi Rizzo * XXX Transparent mode at the moment requires to bind all 258917885a7bSLuigi Rizzo * rings to a single file descriptor. 2590ce3ee1e7SLuigi Rizzo */ 2591091fd0abSLuigi Rizzo 25924bf50f18SLuigi Rizzo if (q.head && na->ifp != NULL) 2593f9790aebSLuigi Rizzo netmap_send_up(na->ifp, &q); 259468b8534bSLuigi Rizzo 259568b8534bSLuigi Rizzo return (revents); 2596847bf383SLuigi Rizzo #undef want_tx 2597847bf383SLuigi Rizzo #undef want_rx 259868b8534bSLuigi Rizzo } 259968b8534bSLuigi Rizzo 260017885a7bSLuigi Rizzo 260117885a7bSLuigi Rizzo /*-------------------- driver support routines -------------------*/ 260268b8534bSLuigi Rizzo 2603f9790aebSLuigi Rizzo static int netmap_hw_krings_create(struct netmap_adapter *); 2604f9790aebSLuigi Rizzo 260589cc2556SLuigi Rizzo /* default notify callback */ 2606f9790aebSLuigi Rizzo static int 2607847bf383SLuigi Rizzo netmap_notify(struct netmap_kring *kring, int flags) 2608f9790aebSLuigi Rizzo { 2609847bf383SLuigi Rizzo struct netmap_adapter *na = kring->na; 2610847bf383SLuigi Rizzo enum txrx t = kring->tx; 2611f9790aebSLuigi Rizzo 2612f0ea3689SLuigi Rizzo OS_selwakeup(&kring->si, PI_NET); 261389cc2556SLuigi Rizzo /* optimization: avoid a wake up on the global 261489cc2556SLuigi Rizzo * queue if nobody has registered for more 261589cc2556SLuigi Rizzo * than one ring 261689cc2556SLuigi Rizzo */ 2617847bf383SLuigi Rizzo if (na->si_users[t] > 0) 2618847bf383SLuigi Rizzo OS_selwakeup(&na->si[t], PI_NET); 2619847bf383SLuigi Rizzo 2620f9790aebSLuigi Rizzo return 0; 2621f9790aebSLuigi Rizzo } 2622f9790aebSLuigi Rizzo 2623f9790aebSLuigi Rizzo 262489cc2556SLuigi Rizzo /* called by all routines that create netmap_adapters. 262589cc2556SLuigi Rizzo * Attach na to the ifp (if any) and provide defaults 262689cc2556SLuigi Rizzo * for optional callbacks. Defaults assume that we 262789cc2556SLuigi Rizzo * are creating an hardware netmap_adapter. 262889cc2556SLuigi Rizzo */ 2629f9790aebSLuigi Rizzo int 2630f9790aebSLuigi Rizzo netmap_attach_common(struct netmap_adapter *na) 2631f9790aebSLuigi Rizzo { 2632f9790aebSLuigi Rizzo struct ifnet *ifp = na->ifp; 2633f9790aebSLuigi Rizzo 2634f9790aebSLuigi Rizzo if (na->num_tx_rings == 0 || na->num_rx_rings == 0) { 2635f9790aebSLuigi Rizzo D("%s: invalid rings tx %d rx %d", 26364bf50f18SLuigi Rizzo na->name, na->num_tx_rings, na->num_rx_rings); 2637f9790aebSLuigi Rizzo return EINVAL; 2638f9790aebSLuigi Rizzo } 26394bf50f18SLuigi Rizzo /* ifp is NULL for virtual adapters (bwrap, non-persistent VALE ports, 26404bf50f18SLuigi Rizzo * pipes, monitors). For bwrap we actually have a non-null ifp for 26414bf50f18SLuigi Rizzo * use by the external modules, but that is set after this 26424bf50f18SLuigi Rizzo * function has been called. 26434bf50f18SLuigi Rizzo * XXX this is ugly, maybe split this function in two (2014-03-14) 26444bf50f18SLuigi Rizzo */ 26454bf50f18SLuigi Rizzo if (ifp != NULL) { 2646f9790aebSLuigi Rizzo WNA(ifp) = na; 264717885a7bSLuigi Rizzo 264817885a7bSLuigi Rizzo /* the following is only needed for na that use the host port. 264917885a7bSLuigi Rizzo * XXX do we have something similar for linux ? 265017885a7bSLuigi Rizzo */ 265117885a7bSLuigi Rizzo #ifdef __FreeBSD__ 265217885a7bSLuigi Rizzo na->if_input = ifp->if_input; /* for netmap_send_up */ 265317885a7bSLuigi Rizzo #endif /* __FreeBSD__ */ 265417885a7bSLuigi Rizzo 2655f9790aebSLuigi Rizzo NETMAP_SET_CAPABLE(ifp); 26564bf50f18SLuigi Rizzo } 2657f9790aebSLuigi Rizzo if (na->nm_krings_create == NULL) { 265889cc2556SLuigi Rizzo /* we assume that we have been called by a driver, 265989cc2556SLuigi Rizzo * since other port types all provide their own 266089cc2556SLuigi Rizzo * nm_krings_create 266189cc2556SLuigi Rizzo */ 2662f9790aebSLuigi Rizzo na->nm_krings_create = netmap_hw_krings_create; 266317885a7bSLuigi Rizzo na->nm_krings_delete = netmap_hw_krings_delete; 2664f9790aebSLuigi Rizzo } 2665f9790aebSLuigi Rizzo if (na->nm_notify == NULL) 2666f9790aebSLuigi Rizzo na->nm_notify = netmap_notify; 2667f9790aebSLuigi Rizzo na->active_fds = 0; 2668f9790aebSLuigi Rizzo 2669f9790aebSLuigi Rizzo if (na->nm_mem == NULL) 26704bf50f18SLuigi Rizzo /* use the global allocator */ 2671f9790aebSLuigi Rizzo na->nm_mem = &nm_mem; 2672847bf383SLuigi Rizzo netmap_mem_get(na->nm_mem); 2673847bf383SLuigi Rizzo #ifdef WITH_VALE 26744bf50f18SLuigi Rizzo if (na->nm_bdg_attach == NULL) 26754bf50f18SLuigi Rizzo /* no special nm_bdg_attach callback. On VALE 26764bf50f18SLuigi Rizzo * attach, we need to interpose a bwrap 26774bf50f18SLuigi Rizzo */ 26784bf50f18SLuigi Rizzo na->nm_bdg_attach = netmap_bwrap_attach; 2679847bf383SLuigi Rizzo #endif 2680f9790aebSLuigi Rizzo return 0; 2681f9790aebSLuigi Rizzo } 2682f9790aebSLuigi Rizzo 2683f9790aebSLuigi Rizzo 268489cc2556SLuigi Rizzo /* standard cleanup, called by all destructors */ 2685f9790aebSLuigi Rizzo void 2686f9790aebSLuigi Rizzo netmap_detach_common(struct netmap_adapter *na) 2687f9790aebSLuigi Rizzo { 268889cc2556SLuigi Rizzo if (na->ifp != NULL) 2689f9790aebSLuigi Rizzo WNA(na->ifp) = NULL; /* XXX do we need this? */ 2690f9790aebSLuigi Rizzo 2691f9790aebSLuigi Rizzo if (na->tx_rings) { /* XXX should not happen */ 2692f9790aebSLuigi Rizzo D("freeing leftover tx_rings"); 2693f9790aebSLuigi Rizzo na->nm_krings_delete(na); 2694f9790aebSLuigi Rizzo } 2695f0ea3689SLuigi Rizzo netmap_pipe_dealloc(na); 2696847bf383SLuigi Rizzo if (na->nm_mem) 2697847bf383SLuigi Rizzo netmap_mem_put(na->nm_mem); 2698f9790aebSLuigi Rizzo bzero(na, sizeof(*na)); 2699f9790aebSLuigi Rizzo free(na, M_DEVBUF); 2700f9790aebSLuigi Rizzo } 2701f9790aebSLuigi Rizzo 27024bf50f18SLuigi Rizzo /* Wrapper for the register callback provided hardware drivers. 27034bf50f18SLuigi Rizzo * na->ifp == NULL means the the driver module has been 27044bf50f18SLuigi Rizzo * unloaded, so we cannot call into it. 27054bf50f18SLuigi Rizzo * Note that module unloading, in our patched linux drivers, 27064bf50f18SLuigi Rizzo * happens under NMG_LOCK and after having stopped all the 27074bf50f18SLuigi Rizzo * nic rings (see netmap_detach). This provides sufficient 27084bf50f18SLuigi Rizzo * protection for the other driver-provied callbacks 27094bf50f18SLuigi Rizzo * (i.e., nm_config and nm_*xsync), that therefore don't need 27104bf50f18SLuigi Rizzo * to wrapped. 27114bf50f18SLuigi Rizzo */ 27124bf50f18SLuigi Rizzo static int 27134bf50f18SLuigi Rizzo netmap_hw_register(struct netmap_adapter *na, int onoff) 27144bf50f18SLuigi Rizzo { 27154bf50f18SLuigi Rizzo struct netmap_hw_adapter *hwna = 27164bf50f18SLuigi Rizzo (struct netmap_hw_adapter*)na; 27174bf50f18SLuigi Rizzo 27184bf50f18SLuigi Rizzo if (na->ifp == NULL) 27194bf50f18SLuigi Rizzo return onoff ? ENXIO : 0; 27204bf50f18SLuigi Rizzo 27214bf50f18SLuigi Rizzo return hwna->nm_hw_register(na, onoff); 27224bf50f18SLuigi Rizzo } 27234bf50f18SLuigi Rizzo 2724f18be576SLuigi Rizzo 272568b8534bSLuigi Rizzo /* 272668b8534bSLuigi Rizzo * Initialize a ``netmap_adapter`` object created by driver on attach. 272768b8534bSLuigi Rizzo * We allocate a block of memory with room for a struct netmap_adapter 272868b8534bSLuigi Rizzo * plus two sets of N+2 struct netmap_kring (where N is the number 272968b8534bSLuigi Rizzo * of hardware rings): 273068b8534bSLuigi Rizzo * krings 0..N-1 are for the hardware queues. 273168b8534bSLuigi Rizzo * kring N is for the host stack queue 273217885a7bSLuigi Rizzo * kring N+1 is only used for the selinfo for all queues. // XXX still true ? 273368b8534bSLuigi Rizzo * Return 0 on success, ENOMEM otherwise. 273468b8534bSLuigi Rizzo */ 273568b8534bSLuigi Rizzo int 2736f9790aebSLuigi Rizzo netmap_attach(struct netmap_adapter *arg) 273768b8534bSLuigi Rizzo { 2738f9790aebSLuigi Rizzo struct netmap_hw_adapter *hwna = NULL; 2739f9790aebSLuigi Rizzo // XXX when is arg == NULL ? 2740ae10d1afSLuigi Rizzo struct ifnet *ifp = arg ? arg->ifp : NULL; 274168b8534bSLuigi Rizzo 2742ae10d1afSLuigi Rizzo if (arg == NULL || ifp == NULL) 2743ae10d1afSLuigi Rizzo goto fail; 2744f9790aebSLuigi Rizzo hwna = malloc(sizeof(*hwna), M_DEVBUF, M_NOWAIT | M_ZERO); 2745f9790aebSLuigi Rizzo if (hwna == NULL) 2746ae10d1afSLuigi Rizzo goto fail; 2747f9790aebSLuigi Rizzo hwna->up = *arg; 2748847bf383SLuigi Rizzo hwna->up.na_flags |= NAF_HOST_RINGS | NAF_NATIVE; 27494bf50f18SLuigi Rizzo strncpy(hwna->up.name, ifp->if_xname, sizeof(hwna->up.name)); 27504bf50f18SLuigi Rizzo hwna->nm_hw_register = hwna->up.nm_register; 27514bf50f18SLuigi Rizzo hwna->up.nm_register = netmap_hw_register; 2752f9790aebSLuigi Rizzo if (netmap_attach_common(&hwna->up)) { 2753f9790aebSLuigi Rizzo free(hwna, M_DEVBUF); 2754f9790aebSLuigi Rizzo goto fail; 2755f9790aebSLuigi Rizzo } 2756f9790aebSLuigi Rizzo netmap_adapter_get(&hwna->up); 2757f9790aebSLuigi Rizzo 275864ae02c3SLuigi Rizzo #ifdef linux 2759f18be576SLuigi Rizzo if (ifp->netdev_ops) { 2760f18be576SLuigi Rizzo /* prepare a clone of the netdev ops */ 2761847bf383SLuigi Rizzo #ifndef NETMAP_LINUX_HAVE_NETDEV_OPS 2762f9790aebSLuigi Rizzo hwna->nm_ndo.ndo_start_xmit = ifp->netdev_ops; 2763f18be576SLuigi Rizzo #else 2764f9790aebSLuigi Rizzo hwna->nm_ndo = *ifp->netdev_ops; 2765f18be576SLuigi Rizzo #endif 2766f18be576SLuigi Rizzo } 2767f9790aebSLuigi Rizzo hwna->nm_ndo.ndo_start_xmit = linux_netmap_start_xmit; 27684bf50f18SLuigi Rizzo if (ifp->ethtool_ops) { 27694bf50f18SLuigi Rizzo hwna->nm_eto = *ifp->ethtool_ops; 27704bf50f18SLuigi Rizzo } 27714bf50f18SLuigi Rizzo hwna->nm_eto.set_ringparam = linux_netmap_set_ringparam; 2772847bf383SLuigi Rizzo #ifdef NETMAP_LINUX_HAVE_SET_CHANNELS 27734bf50f18SLuigi Rizzo hwna->nm_eto.set_channels = linux_netmap_set_channels; 27744bf50f18SLuigi Rizzo #endif 27754bf50f18SLuigi Rizzo if (arg->nm_config == NULL) { 27764bf50f18SLuigi Rizzo hwna->up.nm_config = netmap_linux_config; 27774bf50f18SLuigi Rizzo } 2778ce3ee1e7SLuigi Rizzo #endif /* linux */ 2779f9790aebSLuigi Rizzo 2780d82f9014SRui Paulo if_printf(ifp, "netmap queues/slots: TX %d/%d, RX %d/%d\n", 2781d82f9014SRui Paulo hwna->up.num_tx_rings, hwna->up.num_tx_desc, 2782d82f9014SRui Paulo hwna->up.num_rx_rings, hwna->up.num_rx_desc); 2783ae10d1afSLuigi Rizzo return 0; 278468b8534bSLuigi Rizzo 2785ae10d1afSLuigi Rizzo fail: 2786f9790aebSLuigi Rizzo D("fail, arg %p ifp %p na %p", arg, ifp, hwna); 2787441ab64fSLuigi Rizzo if (ifp) 2788849bec0eSLuigi Rizzo netmap_detach(ifp); 2789f9790aebSLuigi Rizzo return (hwna ? EINVAL : ENOMEM); 279068b8534bSLuigi Rizzo } 279168b8534bSLuigi Rizzo 279268b8534bSLuigi Rizzo 2793f9790aebSLuigi Rizzo void 2794f9790aebSLuigi Rizzo NM_DBG(netmap_adapter_get)(struct netmap_adapter *na) 2795f9790aebSLuigi Rizzo { 2796f9790aebSLuigi Rizzo if (!na) { 2797f9790aebSLuigi Rizzo return; 2798f9790aebSLuigi Rizzo } 2799f9790aebSLuigi Rizzo 2800f9790aebSLuigi Rizzo refcount_acquire(&na->na_refcount); 2801f9790aebSLuigi Rizzo } 2802f9790aebSLuigi Rizzo 2803f9790aebSLuigi Rizzo 2804f9790aebSLuigi Rizzo /* returns 1 iff the netmap_adapter is destroyed */ 2805f9790aebSLuigi Rizzo int 2806f9790aebSLuigi Rizzo NM_DBG(netmap_adapter_put)(struct netmap_adapter *na) 2807f9790aebSLuigi Rizzo { 2808f9790aebSLuigi Rizzo if (!na) 2809f9790aebSLuigi Rizzo return 1; 2810f9790aebSLuigi Rizzo 2811f9790aebSLuigi Rizzo if (!refcount_release(&na->na_refcount)) 2812f9790aebSLuigi Rizzo return 0; 2813f9790aebSLuigi Rizzo 2814f9790aebSLuigi Rizzo if (na->nm_dtor) 2815f9790aebSLuigi Rizzo na->nm_dtor(na); 2816f9790aebSLuigi Rizzo 2817f9790aebSLuigi Rizzo netmap_detach_common(na); 2818f9790aebSLuigi Rizzo 2819f9790aebSLuigi Rizzo return 1; 2820f9790aebSLuigi Rizzo } 2821f9790aebSLuigi Rizzo 282289cc2556SLuigi Rizzo /* nm_krings_create callback for all hardware native adapters */ 2823f9790aebSLuigi Rizzo int 2824f9790aebSLuigi Rizzo netmap_hw_krings_create(struct netmap_adapter *na) 2825f9790aebSLuigi Rizzo { 2826f0ea3689SLuigi Rizzo int ret = netmap_krings_create(na, 0); 282717885a7bSLuigi Rizzo if (ret == 0) { 282817885a7bSLuigi Rizzo /* initialize the mbq for the sw rx ring */ 282917885a7bSLuigi Rizzo mbq_safe_init(&na->rx_rings[na->num_rx_rings].rx_queue); 283017885a7bSLuigi Rizzo ND("initialized sw rx queue %d", na->num_rx_rings); 283117885a7bSLuigi Rizzo } 283217885a7bSLuigi Rizzo return ret; 2833f9790aebSLuigi Rizzo } 2834f9790aebSLuigi Rizzo 2835f9790aebSLuigi Rizzo 2836f9790aebSLuigi Rizzo 283768b8534bSLuigi Rizzo /* 283889cc2556SLuigi Rizzo * Called on module unload by the netmap-enabled drivers 283968b8534bSLuigi Rizzo */ 284068b8534bSLuigi Rizzo void 284168b8534bSLuigi Rizzo netmap_detach(struct ifnet *ifp) 284268b8534bSLuigi Rizzo { 284368b8534bSLuigi Rizzo struct netmap_adapter *na = NA(ifp); 284415b1492cSAdrian Chadd int skip; 284568b8534bSLuigi Rizzo 284668b8534bSLuigi Rizzo if (!na) 284768b8534bSLuigi Rizzo return; 284868b8534bSLuigi Rizzo 284915b1492cSAdrian Chadd skip = 0; 2850f9790aebSLuigi Rizzo NMG_LOCK(); 2851f9790aebSLuigi Rizzo netmap_disable_all_rings(ifp); 2852f9790aebSLuigi Rizzo na->ifp = NULL; 28534bf50f18SLuigi Rizzo na->na_flags &= ~NAF_NETMAP_ON; 2854847bf383SLuigi Rizzo /* 2855847bf383SLuigi Rizzo * if the netmap adapter is not native, somebody 2856847bf383SLuigi Rizzo * changed it, so we can not release it here. 2857847bf383SLuigi Rizzo * The NULL na->ifp will notify the new owner that 2858847bf383SLuigi Rizzo * the driver is gone. 2859847bf383SLuigi Rizzo */ 2860847bf383SLuigi Rizzo if (na->na_flags & NAF_NATIVE) { 286115b1492cSAdrian Chadd skip = netmap_adapter_put(na); 2862847bf383SLuigi Rizzo } 2863fb25194fSLuigi Rizzo /* give them a chance to notice */ 286415b1492cSAdrian Chadd if (skip == 0) 2865f9790aebSLuigi Rizzo netmap_enable_all_rings(ifp); 2866f9790aebSLuigi Rizzo NMG_UNLOCK(); 2867ae10d1afSLuigi Rizzo } 2868f18be576SLuigi Rizzo 2869f18be576SLuigi Rizzo 287068b8534bSLuigi Rizzo /* 287102ad4083SLuigi Rizzo * Intercept packets from the network stack and pass them 287202ad4083SLuigi Rizzo * to netmap as incoming packets on the 'software' ring. 287317885a7bSLuigi Rizzo * 287417885a7bSLuigi Rizzo * We only store packets in a bounded mbq and then copy them 287517885a7bSLuigi Rizzo * in the relevant rxsync routine. 287617885a7bSLuigi Rizzo * 2877ce3ee1e7SLuigi Rizzo * We rely on the OS to make sure that the ifp and na do not go 2878ce3ee1e7SLuigi Rizzo * away (typically the caller checks for IFF_DRV_RUNNING or the like). 2879ce3ee1e7SLuigi Rizzo * In nm_register() or whenever there is a reinitialization, 2880f9790aebSLuigi Rizzo * we make sure to make the mode change visible here. 288168b8534bSLuigi Rizzo */ 288268b8534bSLuigi Rizzo int 2883ce3ee1e7SLuigi Rizzo netmap_transmit(struct ifnet *ifp, struct mbuf *m) 288468b8534bSLuigi Rizzo { 288568b8534bSLuigi Rizzo struct netmap_adapter *na = NA(ifp); 2886ce3ee1e7SLuigi Rizzo struct netmap_kring *kring; 288717885a7bSLuigi Rizzo u_int len = MBUF_LEN(m); 288817885a7bSLuigi Rizzo u_int error = ENOBUFS; 288917885a7bSLuigi Rizzo struct mbq *q; 289017885a7bSLuigi Rizzo int space; 289168b8534bSLuigi Rizzo 2892847bf383SLuigi Rizzo kring = &na->rx_rings[na->num_rx_rings]; 2893ce3ee1e7SLuigi Rizzo // XXX [Linux] we do not need this lock 2894ce3ee1e7SLuigi Rizzo // if we follow the down/configure/up protocol -gl 2895ce3ee1e7SLuigi Rizzo // mtx_lock(&na->core_lock); 289617885a7bSLuigi Rizzo 28974bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) { 28984bf50f18SLuigi Rizzo D("%s not in netmap mode anymore", na->name); 2899ce3ee1e7SLuigi Rizzo error = ENXIO; 2900ce3ee1e7SLuigi Rizzo goto done; 2901ce3ee1e7SLuigi Rizzo } 2902ce3ee1e7SLuigi Rizzo 290317885a7bSLuigi Rizzo q = &kring->rx_queue; 290417885a7bSLuigi Rizzo 2905ce3ee1e7SLuigi Rizzo // XXX reconsider long packets if we handle fragments 29064bf50f18SLuigi Rizzo if (len > NETMAP_BUF_SIZE(na)) { /* too long for us */ 29074bf50f18SLuigi Rizzo D("%s from_host, drop packet size %d > %d", na->name, 29084bf50f18SLuigi Rizzo len, NETMAP_BUF_SIZE(na)); 2909ce3ee1e7SLuigi Rizzo goto done; 2910849bec0eSLuigi Rizzo } 291117885a7bSLuigi Rizzo 291217885a7bSLuigi Rizzo /* protect against rxsync_from_host(), netmap_sw_to_nic() 291317885a7bSLuigi Rizzo * and maybe other instances of netmap_transmit (the latter 291417885a7bSLuigi Rizzo * not possible on Linux). 291517885a7bSLuigi Rizzo * Also avoid overflowing the queue. 2916ce3ee1e7SLuigi Rizzo */ 2917997b054cSLuigi Rizzo mbq_lock(q); 291817885a7bSLuigi Rizzo 291917885a7bSLuigi Rizzo space = kring->nr_hwtail - kring->nr_hwcur; 292017885a7bSLuigi Rizzo if (space < 0) 292117885a7bSLuigi Rizzo space += kring->nkr_num_slots; 292217885a7bSLuigi Rizzo if (space + mbq_len(q) >= kring->nkr_num_slots - 1) { // XXX 292317885a7bSLuigi Rizzo RD(10, "%s full hwcur %d hwtail %d qlen %d len %d m %p", 29244bf50f18SLuigi Rizzo na->name, kring->nr_hwcur, kring->nr_hwtail, mbq_len(q), 292517885a7bSLuigi Rizzo len, m); 2926ce3ee1e7SLuigi Rizzo } else { 292717885a7bSLuigi Rizzo mbq_enqueue(q, m); 292817885a7bSLuigi Rizzo ND(10, "%s %d bufs in queue len %d m %p", 29294bf50f18SLuigi Rizzo na->name, mbq_len(q), len, m); 293017885a7bSLuigi Rizzo /* notify outside the lock */ 293117885a7bSLuigi Rizzo m = NULL; 293268b8534bSLuigi Rizzo error = 0; 2933ce3ee1e7SLuigi Rizzo } 2934997b054cSLuigi Rizzo mbq_unlock(q); 2935ce3ee1e7SLuigi Rizzo 293668b8534bSLuigi Rizzo done: 293717885a7bSLuigi Rizzo if (m) 293868b8534bSLuigi Rizzo m_freem(m); 293917885a7bSLuigi Rizzo /* unconditionally wake up listeners */ 2940847bf383SLuigi Rizzo kring->nm_notify(kring, 0); 294189cc2556SLuigi Rizzo /* this is normally netmap_notify(), but for nics 294289cc2556SLuigi Rizzo * connected to a bridge it is netmap_bwrap_intr_notify(), 294389cc2556SLuigi Rizzo * that possibly forwards the frames through the switch 294489cc2556SLuigi Rizzo */ 294568b8534bSLuigi Rizzo 294668b8534bSLuigi Rizzo return (error); 294768b8534bSLuigi Rizzo } 294868b8534bSLuigi Rizzo 294968b8534bSLuigi Rizzo 295068b8534bSLuigi Rizzo /* 295168b8534bSLuigi Rizzo * netmap_reset() is called by the driver routines when reinitializing 295268b8534bSLuigi Rizzo * a ring. The driver is in charge of locking to protect the kring. 2953f9790aebSLuigi Rizzo * If native netmap mode is not set just return NULL. 295468b8534bSLuigi Rizzo */ 295568b8534bSLuigi Rizzo struct netmap_slot * 2956ce3ee1e7SLuigi Rizzo netmap_reset(struct netmap_adapter *na, enum txrx tx, u_int n, 295768b8534bSLuigi Rizzo u_int new_cur) 295868b8534bSLuigi Rizzo { 295968b8534bSLuigi Rizzo struct netmap_kring *kring; 2960506cc70cSLuigi Rizzo int new_hwofs, lim; 296168b8534bSLuigi Rizzo 29624bf50f18SLuigi Rizzo if (!nm_native_on(na)) { 29634bf50f18SLuigi Rizzo ND("interface not in native netmap mode"); 296468b8534bSLuigi Rizzo return NULL; /* nothing to reinitialize */ 2965ce3ee1e7SLuigi Rizzo } 296668b8534bSLuigi Rizzo 2967ce3ee1e7SLuigi Rizzo /* XXX note- in the new scheme, we are not guaranteed to be 2968ce3ee1e7SLuigi Rizzo * under lock (e.g. when called on a device reset). 2969ce3ee1e7SLuigi Rizzo * In this case, we should set a flag and do not trust too 2970ce3ee1e7SLuigi Rizzo * much the values. In practice: TODO 2971ce3ee1e7SLuigi Rizzo * - set a RESET flag somewhere in the kring 2972ce3ee1e7SLuigi Rizzo * - do the processing in a conservative way 2973ce3ee1e7SLuigi Rizzo * - let the *sync() fixup at the end. 2974ce3ee1e7SLuigi Rizzo */ 297564ae02c3SLuigi Rizzo if (tx == NR_TX) { 29768241616dSLuigi Rizzo if (n >= na->num_tx_rings) 29778241616dSLuigi Rizzo return NULL; 297864ae02c3SLuigi Rizzo kring = na->tx_rings + n; 297917885a7bSLuigi Rizzo // XXX check whether we should use hwcur or rcur 2980506cc70cSLuigi Rizzo new_hwofs = kring->nr_hwcur - new_cur; 298164ae02c3SLuigi Rizzo } else { 29828241616dSLuigi Rizzo if (n >= na->num_rx_rings) 29838241616dSLuigi Rizzo return NULL; 298464ae02c3SLuigi Rizzo kring = na->rx_rings + n; 298517885a7bSLuigi Rizzo new_hwofs = kring->nr_hwtail - new_cur; 298664ae02c3SLuigi Rizzo } 298764ae02c3SLuigi Rizzo lim = kring->nkr_num_slots - 1; 2988506cc70cSLuigi Rizzo if (new_hwofs > lim) 2989506cc70cSLuigi Rizzo new_hwofs -= lim + 1; 2990506cc70cSLuigi Rizzo 2991ce3ee1e7SLuigi Rizzo /* Always set the new offset value and realign the ring. */ 299217885a7bSLuigi Rizzo if (netmap_verbose) 299317885a7bSLuigi Rizzo D("%s %s%d hwofs %d -> %d, hwtail %d -> %d", 29944bf50f18SLuigi Rizzo na->name, 299517885a7bSLuigi Rizzo tx == NR_TX ? "TX" : "RX", n, 2996ce3ee1e7SLuigi Rizzo kring->nkr_hwofs, new_hwofs, 299717885a7bSLuigi Rizzo kring->nr_hwtail, 299817885a7bSLuigi Rizzo tx == NR_TX ? lim : kring->nr_hwtail); 2999506cc70cSLuigi Rizzo kring->nkr_hwofs = new_hwofs; 300017885a7bSLuigi Rizzo if (tx == NR_TX) { 300117885a7bSLuigi Rizzo kring->nr_hwtail = kring->nr_hwcur + lim; 300217885a7bSLuigi Rizzo if (kring->nr_hwtail > lim) 300317885a7bSLuigi Rizzo kring->nr_hwtail -= lim + 1; 300417885a7bSLuigi Rizzo } 3005506cc70cSLuigi Rizzo 3006f196ce38SLuigi Rizzo #if 0 // def linux 3007f196ce38SLuigi Rizzo /* XXX check that the mappings are correct */ 3008f196ce38SLuigi Rizzo /* need ring_nr, adapter->pdev, direction */ 3009f196ce38SLuigi Rizzo buffer_info->dma = dma_map_single(&pdev->dev, addr, adapter->rx_buffer_len, DMA_FROM_DEVICE); 3010f196ce38SLuigi Rizzo if (dma_mapping_error(&adapter->pdev->dev, buffer_info->dma)) { 3011f196ce38SLuigi Rizzo D("error mapping rx netmap buffer %d", i); 3012f196ce38SLuigi Rizzo // XXX fix error handling 3013f196ce38SLuigi Rizzo } 3014f196ce38SLuigi Rizzo 3015f196ce38SLuigi Rizzo #endif /* linux */ 301668b8534bSLuigi Rizzo /* 3017ce3ee1e7SLuigi Rizzo * Wakeup on the individual and global selwait 3018506cc70cSLuigi Rizzo * We do the wakeup here, but the ring is not yet reconfigured. 3019506cc70cSLuigi Rizzo * However, we are under lock so there are no races. 302068b8534bSLuigi Rizzo */ 3021847bf383SLuigi Rizzo kring->nm_notify(kring, 0); 302268b8534bSLuigi Rizzo return kring->ring->slot; 302368b8534bSLuigi Rizzo } 302468b8534bSLuigi Rizzo 302568b8534bSLuigi Rizzo 3026ce3ee1e7SLuigi Rizzo /* 3027f9790aebSLuigi Rizzo * Dispatch rx/tx interrupts to the netmap rings. 3028ce3ee1e7SLuigi Rizzo * 3029ce3ee1e7SLuigi Rizzo * "work_done" is non-null on the RX path, NULL for the TX path. 3030ce3ee1e7SLuigi Rizzo * We rely on the OS to make sure that there is only one active 3031ce3ee1e7SLuigi Rizzo * instance per queue, and that there is appropriate locking. 3032849bec0eSLuigi Rizzo * 3033f9790aebSLuigi Rizzo * The 'notify' routine depends on what the ring is attached to. 3034f9790aebSLuigi Rizzo * - for a netmap file descriptor, do a selwakeup on the individual 3035f9790aebSLuigi Rizzo * waitqueue, plus one on the global one if needed 30364bf50f18SLuigi Rizzo * (see netmap_notify) 30374bf50f18SLuigi Rizzo * - for a nic connected to a switch, call the proper forwarding routine 30384bf50f18SLuigi Rizzo * (see netmap_bwrap_intr_notify) 3039f9790aebSLuigi Rizzo */ 3040f9790aebSLuigi Rizzo void 3041f9790aebSLuigi Rizzo netmap_common_irq(struct ifnet *ifp, u_int q, u_int *work_done) 3042f9790aebSLuigi Rizzo { 3043f9790aebSLuigi Rizzo struct netmap_adapter *na = NA(ifp); 3044f9790aebSLuigi Rizzo struct netmap_kring *kring; 3045847bf383SLuigi Rizzo enum txrx t = (work_done ? NR_RX : NR_TX); 3046f9790aebSLuigi Rizzo 3047f9790aebSLuigi Rizzo q &= NETMAP_RING_MASK; 3048f9790aebSLuigi Rizzo 3049f9790aebSLuigi Rizzo if (netmap_verbose) { 3050f9790aebSLuigi Rizzo RD(5, "received %s queue %d", work_done ? "RX" : "TX" , q); 3051f9790aebSLuigi Rizzo } 3052f9790aebSLuigi Rizzo 3053847bf383SLuigi Rizzo if (q >= nma_get_nrings(na, t)) 3054f9790aebSLuigi Rizzo return; // not a physical queue 3055847bf383SLuigi Rizzo 3056847bf383SLuigi Rizzo kring = NMR(na, t) + q; 3057847bf383SLuigi Rizzo 3058847bf383SLuigi Rizzo if (t == NR_RX) { 3059f9790aebSLuigi Rizzo kring->nr_kflags |= NKR_PENDINTR; // XXX atomic ? 3060f9790aebSLuigi Rizzo *work_done = 1; /* do not fire napi again */ 3061f9790aebSLuigi Rizzo } 3062847bf383SLuigi Rizzo kring->nm_notify(kring, 0); 3063f9790aebSLuigi Rizzo } 3064f9790aebSLuigi Rizzo 306517885a7bSLuigi Rizzo 3066f9790aebSLuigi Rizzo /* 3067f9790aebSLuigi Rizzo * Default functions to handle rx/tx interrupts from a physical device. 3068f9790aebSLuigi Rizzo * "work_done" is non-null on the RX path, NULL for the TX path. 3069f9790aebSLuigi Rizzo * 3070ce3ee1e7SLuigi Rizzo * If the card is not in netmap mode, simply return 0, 3071ce3ee1e7SLuigi Rizzo * so that the caller proceeds with regular processing. 3072f9790aebSLuigi Rizzo * Otherwise call netmap_common_irq() and return 1. 3073ce3ee1e7SLuigi Rizzo * 3074ce3ee1e7SLuigi Rizzo * If the card is connected to a netmap file descriptor, 3075ce3ee1e7SLuigi Rizzo * do a selwakeup on the individual queue, plus one on the global one 3076ce3ee1e7SLuigi Rizzo * if needed (multiqueue card _and_ there are multiqueue listeners), 3077ce3ee1e7SLuigi Rizzo * and return 1. 3078ce3ee1e7SLuigi Rizzo * 3079ce3ee1e7SLuigi Rizzo * Finally, if called on rx from an interface connected to a switch, 3080ce3ee1e7SLuigi Rizzo * calls the proper forwarding routine, and return 1. 30811a26580eSLuigi Rizzo */ 3082babc7c12SLuigi Rizzo int 3083ce3ee1e7SLuigi Rizzo netmap_rx_irq(struct ifnet *ifp, u_int q, u_int *work_done) 30841a26580eSLuigi Rizzo { 30854bf50f18SLuigi Rizzo struct netmap_adapter *na = NA(ifp); 30864bf50f18SLuigi Rizzo 30874bf50f18SLuigi Rizzo /* 30884bf50f18SLuigi Rizzo * XXX emulated netmap mode sets NAF_SKIP_INTR so 30894bf50f18SLuigi Rizzo * we still use the regular driver even though the previous 30904bf50f18SLuigi Rizzo * check fails. It is unclear whether we should use 30914bf50f18SLuigi Rizzo * nm_native_on() here. 30924bf50f18SLuigi Rizzo */ 30934bf50f18SLuigi Rizzo if (!nm_netmap_on(na)) 30941a26580eSLuigi Rizzo return 0; 3095849bec0eSLuigi Rizzo 30964bf50f18SLuigi Rizzo if (na->na_flags & NAF_SKIP_INTR) { 30978241616dSLuigi Rizzo ND("use regular interrupt"); 30988241616dSLuigi Rizzo return 0; 30998241616dSLuigi Rizzo } 31008241616dSLuigi Rizzo 3101f9790aebSLuigi Rizzo netmap_common_irq(ifp, q, work_done); 31021a26580eSLuigi Rizzo return 1; 31031a26580eSLuigi Rizzo } 31041a26580eSLuigi Rizzo 310564ae02c3SLuigi Rizzo 310601c7d25fSLuigi Rizzo /* 3107f9790aebSLuigi Rizzo * Module loader and unloader 3108f196ce38SLuigi Rizzo * 3109f9790aebSLuigi Rizzo * netmap_init() creates the /dev/netmap device and initializes 3110f9790aebSLuigi Rizzo * all global variables. Returns 0 on success, errno on failure 3111f9790aebSLuigi Rizzo * (but there is no chance) 3112f9790aebSLuigi Rizzo * 3113f9790aebSLuigi Rizzo * netmap_fini() destroys everything. 3114f196ce38SLuigi Rizzo */ 3115babc7c12SLuigi Rizzo 3116babc7c12SLuigi Rizzo static struct cdev *netmap_dev; /* /dev/netmap character device. */ 3117f9790aebSLuigi Rizzo extern struct cdevsw netmap_cdevsw; 3118babc7c12SLuigi Rizzo 311917885a7bSLuigi Rizzo 3120f9790aebSLuigi Rizzo void 312168b8534bSLuigi Rizzo netmap_fini(void) 312268b8534bSLuigi Rizzo { 3123847bf383SLuigi Rizzo netmap_uninit_bridges(); 3124f9790aebSLuigi Rizzo if (netmap_dev) 312568b8534bSLuigi Rizzo destroy_dev(netmap_dev); 3126ce3ee1e7SLuigi Rizzo netmap_mem_fini(); 3127ce3ee1e7SLuigi Rizzo NMG_LOCK_DESTROY(); 312868b8534bSLuigi Rizzo printf("netmap: unloaded module.\n"); 312968b8534bSLuigi Rizzo } 313068b8534bSLuigi Rizzo 313117885a7bSLuigi Rizzo 3132f9790aebSLuigi Rizzo int 3133f9790aebSLuigi Rizzo netmap_init(void) 313468b8534bSLuigi Rizzo { 3135f9790aebSLuigi Rizzo int error; 313668b8534bSLuigi Rizzo 3137f9790aebSLuigi Rizzo NMG_LOCK_INIT(); 313868b8534bSLuigi Rizzo 3139f9790aebSLuigi Rizzo error = netmap_mem_init(); 3140f9790aebSLuigi Rizzo if (error != 0) 3141f9790aebSLuigi Rizzo goto fail; 3142c929ca72SLuigi Rizzo /* 3143c929ca72SLuigi Rizzo * MAKEDEV_ETERNAL_KLD avoids an expensive check on syscalls 3144c929ca72SLuigi Rizzo * when the module is compiled in. 3145c929ca72SLuigi Rizzo * XXX could use make_dev_credv() to get error number 3146c929ca72SLuigi Rizzo */ 31470e73f29aSLuigi Rizzo netmap_dev = make_dev_credf(MAKEDEV_ETERNAL_KLD, 314811c0b69cSAdrian Chadd &netmap_cdevsw, 0, NULL, UID_ROOT, GID_WHEEL, 0600, 31490e73f29aSLuigi Rizzo "netmap"); 3150f9790aebSLuigi Rizzo if (!netmap_dev) 3151f9790aebSLuigi Rizzo goto fail; 3152f9790aebSLuigi Rizzo 3153847bf383SLuigi Rizzo error = netmap_init_bridges(); 3154847bf383SLuigi Rizzo if (error) 3155847bf383SLuigi Rizzo goto fail; 3156847bf383SLuigi Rizzo 31574bf50f18SLuigi Rizzo #ifdef __FreeBSD__ 31584bf50f18SLuigi Rizzo nm_vi_init_index(); 31594bf50f18SLuigi Rizzo #endif 3160847bf383SLuigi Rizzo 3161f9790aebSLuigi Rizzo printf("netmap: loaded module\n"); 3162f9790aebSLuigi Rizzo return (0); 3163f9790aebSLuigi Rizzo fail: 316468b8534bSLuigi Rizzo netmap_fini(); 3165f9790aebSLuigi Rizzo return (EINVAL); /* may be incorrect */ 316668b8534bSLuigi Rizzo } 3167