1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2010-2015 Intel Corporation.
9 The DPDK Kernel NIC Interface (KNI) allows userspace applications access to the Linux* control plane.
11 The benefits of using the DPDK KNI are:
13 * Faster than existing Linux TUN/TAP interfaces
14 (by eliminating system calls and copy_to_user()/copy_from_user() operations.
16 * Allows management of DPDK ports using standard Linux net tools such as ethtool, ifconfig and tcpdump.
18 * Allows an interface with the kernel network stack.
20 The components of an application using the DPDK Kernel NIC Interface are shown in :numref:`figure_kernel_nic_intf`.
22 .. _figure_kernel_nic_intf:
24 .. figure:: img/kernel_nic_intf.*
26 Components of a DPDK KNI Application
29 The DPDK KNI Kernel Module
30 --------------------------
32 The KNI kernel loadable module ``rte_kni`` provides the kernel interface
33 for DPDK applications.
35 When the ``rte_kni`` module is loaded, it will create a device ``/dev/kni``
36 that is used by the DPDK KNI API functions to control and communicate with
39 The ``rte_kni`` kernel module contains several optional parameters which
40 can be specified when the module is loaded to control its behavior:
42 .. code-block:: console
46 parm: lo_mode: KNI loopback mode (default=lo_mode_none):
47 lo_mode_none Kernel loopback disabled
48 lo_mode_fifo Enable kernel loopback with fifo
49 lo_mode_fifo_skb Enable kernel loopback with fifo and skb buffer
51 parm: kthread_mode: Kernel thread mode (default=single):
52 single Single kernel thread mode enabled.
53 multiple Multiple kernel thread mode enabled.
55 parm: carrier: Default carrier state for KNI interface (default=off):
56 off Interfaces will be created with carrier state set to off.
57 on Interfaces will be created with carrier state set to on.
59 parm: enable_bifurcated: Enable request processing support for
60 bifurcated drivers, which means releasing rtnl_lock before calling
61 userspace callback and supporting async requests (default=off):
62 on Enable request processing support for bifurcated drivers.
64 parm: min_scheduling_interval: KNI thread min scheduling interval (default=100 microseconds)
66 parm: max_scheduling_interval: KNI thread max scheduling interval (default=200 microseconds)
70 Loading the ``rte_kni`` kernel module without any optional parameters is
71 the typical way a DPDK application gets packets into and out of the kernel
72 network stack. Without any parameters, only one kernel thread is created
73 for all KNI devices for packet receiving in kernel side, loopback mode is
74 disabled, and the default carrier state of KNI interfaces is set to *off*.
76 .. code-block:: console
78 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko
80 .. _kni_loopback_mode:
85 For testing, the ``rte_kni`` kernel module can be loaded in loopback mode
86 by specifying the ``lo_mode`` parameter:
88 .. code-block:: console
90 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko lo_mode=lo_mode_fifo
92 The ``lo_mode_fifo`` loopback option will loop back ring enqueue/dequeue
93 operations in kernel space.
95 .. code-block:: console
97 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko lo_mode=lo_mode_fifo_skb
99 The ``lo_mode_fifo_skb`` loopback option will loop back ring enqueue/dequeue
100 operations and sk buffer copies in kernel space.
102 If the ``lo_mode`` parameter is not specified, loopback mode is disabled.
104 .. _kni_kernel_thread_mode:
109 To provide flexibility of performance, the ``rte_kni`` KNI kernel module
110 can be loaded with the ``kthread_mode`` parameter. The ``rte_kni`` kernel
111 module supports two options: "single kernel thread" mode and "multiple
114 Single kernel thread mode is enabled as follows:
116 .. code-block:: console
118 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko kthread_mode=single
120 This mode will create only one kernel thread for all KNI interfaces to
121 receive data on the kernel side. By default, this kernel thread is not
122 bound to any particular core, but the user can set the core affinity for
123 this kernel thread by setting the ``core_id`` and ``force_bind`` parameters
124 in ``struct rte_kni_conf`` when the first KNI interface is created:
126 For optimum performance, the kernel thread should be bound to a core in
127 on the same socket as the DPDK lcores used in the application.
129 The KNI kernel module can also be configured to start a separate kernel
130 thread for each KNI interface created by the DPDK application. Multiple
131 kernel thread mode is enabled as follows:
133 .. code-block:: console
135 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko kthread_mode=multiple
137 This mode will create a separate kernel thread for each KNI interface to
138 receive data on the kernel side. The core affinity of each ``kni_thread``
139 kernel thread can be specified by setting the ``core_id`` and ``force_bind``
140 parameters in ``struct rte_kni_conf`` when each KNI interface is created.
142 Multiple kernel thread mode can provide scalable higher performance if
143 sufficient unused cores are available on the host system.
145 If the ``kthread_mode`` parameter is not specified, the "single kernel
146 thread" mode is used.
148 .. _kni_default_carrier_state:
150 Default Carrier State
151 ~~~~~~~~~~~~~~~~~~~~~
153 The default carrier state of KNI interfaces created by the ``rte_kni``
154 kernel module is controlled via the ``carrier`` option when the module
157 If ``carrier=off`` is specified, the kernel module will leave the carrier
158 state of the interface *down* when the interface is management enabled.
159 The DPDK application can set the carrier state of the KNI interface using the
160 ``rte_kni_update_link()`` function. This is useful for DPDK applications
161 which require that the carrier state of the KNI interface reflect the
162 actual link state of the corresponding physical NIC port.
164 If ``carrier=on`` is specified, the kernel module will automatically set
165 the carrier state of the interface to *up* when the interface is management
166 enabled. This is useful for DPDK applications which use the KNI interface as
167 a purely virtual interface that does not correspond to any physical hardware
168 and do not wish to explicitly set the carrier state of the interface with
169 ``rte_kni_update_link()``. It is also useful for testing in loopback mode
170 where the NIC port may not be physically connected to anything.
172 To set the default carrier state to *on*:
174 .. code-block:: console
176 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko carrier=on
178 To set the default carrier state to *off*:
180 .. code-block:: console
182 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko carrier=off
184 If the ``carrier`` parameter is not specified, the default carrier state
185 of KNI interfaces will be set to *off*.
187 .. _kni_bifurcated_device_support:
189 Bifurcated Device Support
190 ~~~~~~~~~~~~~~~~~~~~~~~~~
192 User callbacks are executed while kernel module holds the ``rtnl`` lock, this
193 causes a deadlock when callbacks run control commands on another Linux kernel
196 Bifurcated devices has kernel network driver part and to prevent deadlock for
197 them ``enable_bifurcated`` is used.
199 To enable bifurcated device support:
201 .. code-block:: console
203 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko enable_bifurcated=on
205 Enabling bifurcated device support releases ``rtnl`` lock before calling
206 callback and locks it back after callback. Also enables asynchronous request to
207 support callbacks that requires rtnl lock to work (interface down).
209 KNI Kthread Scheduling
210 ~~~~~~~~~~~~~~~~~~~~~~
212 The ``min_scheduling_interval`` and ``max_scheduling_interval`` parameters
213 control the rescheduling interval of the KNI kthreads.
215 This might be useful if we have use cases in which we require improved
216 latency or performance for control plane traffic.
218 The implementation is backed by Linux High Precision Timers, and uses ``usleep_range``.
219 Hence, it will have the same granularity constraints as this Linux subsystem.
221 For Linux High Precision Timers, you can check the following resource: `Kernel Timers <http://www.kernel.org/doc/Documentation/timers/timers-howto.txt>`_
223 To set the ``min_scheduling_interval`` to a value of 100 microseconds:
225 .. code-block:: console
227 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko min_scheduling_interval=100
229 To set the ``max_scheduling_interval`` to a value of 200 microseconds:
231 .. code-block:: console
233 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko max_scheduling_interval=200
235 If the ``min_scheduling_interval`` and ``max_scheduling_interval`` parameters are
236 not specified, the default interval limits will be set to *100* and *200* respectively.
238 KNI Creation and Deletion
239 -------------------------
241 Before any KNI interfaces can be created, the ``rte_kni`` kernel module must
242 be loaded into the kernel and configured with the ``rte_kni_init()`` function.
244 The KNI interfaces are created by a DPDK application dynamically via the
245 ``rte_kni_alloc()`` function.
247 The ``struct rte_kni_conf`` structure contains fields which allow the
248 user to specify the interface name, set the MTU size, set an explicit or
249 random MAC address and control the affinity of the kernel Rx thread(s)
250 (both single and multi-threaded modes).
251 By default the KNI sample example gets the MTU from the matching device,
252 and in case of KNI PMD it is derived from mbuf buffer length.
254 The ``struct rte_kni_ops`` structure contains pointers to functions to
255 handle requests from the ``rte_kni`` kernel module. These functions
256 allow DPDK applications to perform actions when the KNI interfaces are
257 manipulated by control commands or functions external to the application.
259 For example, the DPDK application may wish to enabled/disable a physical
260 NIC port when a user enabled/disables a KNI interface with ``ip link set
261 [up|down] dev <ifaceX>``. The DPDK application can register a callback for
262 ``config_network_if`` which will be called when the interface management
265 There are currently four callbacks for which the user can register
266 application functions:
268 ``config_network_if``:
270 Called when the management state of the KNI interface changes.
271 For example, when the user runs ``ip link set [up|down] dev <ifaceX>``.
275 Called when the user changes the MTU size of the KNI
276 interface. For example, when the user runs ``ip link set mtu <size>
279 ``config_mac_address``:
281 Called when the user changes the MAC address of the KNI interface.
282 For example, when the user runs ``ip link set address <MAC>
283 dev <ifaceX>``. If the user sets this callback function to NULL,
284 but sets the ``port_id`` field to a value other than -1, a default
285 callback handler in the rte_kni library ``kni_config_mac_address()``
286 will be called which calls ``rte_eth_dev_default_mac_addr_set()``
287 on the specified ``port_id``.
289 ``config_promiscusity``:
291 Called when the user changes the promiscuity state of the KNI
292 interface. For example, when the user runs ``ip link set promisc
293 [on|off] dev <ifaceX>``. If the user sets this callback function to
294 NULL, but sets the ``port_id`` field to a value other than -1, a default
295 callback handler in the rte_kni library ``kni_config_promiscusity()``
296 will be called which calls ``rte_eth_promiscuous_<enable|disable>()``
297 on the specified ``port_id``.
299 ``config_allmulticast``:
301 Called when the user changes the allmulticast state of the KNI interface.
302 For example, when the user runs ``ifconfig <ifaceX> [-]allmulti``. If the
303 user sets this callback function to NULL, but sets the ``port_id`` field to
304 a value other than -1, a default callback handler in the rte_kni library
305 ``kni_config_allmulticast()`` will be called which calls
306 ``rte_eth_allmulticast_<enable|disable>()`` on the specified ``port_id``.
308 In order to run these callbacks, the application must periodically call
309 the ``rte_kni_handle_request()`` function. Any user callback function
310 registered will be called directly from ``rte_kni_handle_request()`` so
311 care must be taken to prevent deadlock and to not block any DPDK fastpath
312 tasks. Typically DPDK applications which use these callbacks will need
313 to create a separate thread or secondary process to periodically call
314 ``rte_kni_handle_request()``.
316 The KNI interfaces can be deleted by a DPDK application with
317 ``rte_kni_release()``. All KNI interfaces not explicitly deleted will be
318 deleted when the ``/dev/kni`` device is closed, either explicitly with
319 ``rte_kni_close()`` or when the DPDK application is closed.
324 To minimize the amount of DPDK code running in kernel space, the mbuf mempool is managed in userspace only.
325 The kernel module will be aware of mbufs,
326 but all mbuf allocation and free operations will be handled by the DPDK application only.
328 :numref:`figure_pkt_flow_kni` shows a typical scenario with packets sent in both directions.
330 .. _figure_pkt_flow_kni:
332 .. figure:: img/pkt_flow_kni.*
334 Packet Flow via mbufs in the DPDK KNI
340 On the DPDK RX side, the mbuf is allocated by the PMD in the RX thread context.
341 This thread will enqueue the mbuf in the rx_q FIFO,
342 and the next pointers in mbuf-chain will convert to physical address.
343 The KNI thread will poll all KNI active devices for the rx_q.
344 If an mbuf is dequeued, it will be converted to a sk_buff and sent to the net stack via netif_rx().
345 The dequeued mbuf must be freed, so the same pointer is sent back in the free_q FIFO,
346 and next pointers must convert back to virtual address if exists before put in the free_q FIFO.
348 The RX thread, in the same main loop, polls this FIFO and frees the mbuf after dequeuing it.
349 The address conversion of the next pointer is to prevent the chained mbuf
350 in different hugepage segments from causing kernel crash.
355 For packet egress the DPDK application must first enqueue several mbufs to create an mbuf cache on the kernel side.
357 The packet is received from the Linux net stack, by calling the kni_net_tx() callback.
358 The mbuf is dequeued (without waiting due the cache) and filled with data from sk_buff.
359 The sk_buff is then freed and the mbuf sent in the tx_q FIFO.
361 The DPDK TX thread dequeues the mbuf and sends it to the PMD via ``rte_eth_tx_burst()``.
362 It then puts the mbuf back in the cache.
367 KNI operates in IOVA_VA scheme when
369 - LINUX_VERSION_CODE >= KERNEL_VERSION(4, 10, 0) and
370 - EAL option `iova-mode=va` is passed or bus IOVA scheme in the DPDK is selected
373 Due to IOVA to KVA address translations, based on the KNI use case there
374 can be a performance impact. For mitigation, forcing IOVA to PA via EAL
375 "--iova-mode=pa" option can be used, IOVA_DC bus iommu scheme can also
376 result in IOVA as PA.
381 Ethtool is a Linux-specific tool with corresponding support in the kernel.
382 The current version of kni provides minimal ethtool functionality
383 including querying version and link state. It does not support link
384 control, statistics, or dumping device registers.