eal/linux: select IOVA as VA mode for default case
[dpdk.git] / doc / guides / prog_guide / env_abstraction_layer.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2010-2014 Intel Corporation.
3
4 .. _Environment_Abstraction_Layer:
5
6 Environment Abstraction Layer
7 =============================
8
9 The Environment Abstraction Layer (EAL) is responsible for gaining access to low-level resources such as hardware and memory space.
10 It provides a generic interface that hides the environment specifics from the applications and libraries.
11 It is the responsibility of the initialization routine to decide how to allocate these resources
12 (that is, memory space, devices, timers, consoles, and so on).
13
14 Typical services expected from the EAL are:
15
16 *   DPDK Loading and Launching:
17     The DPDK and its application are linked as a single application and must be loaded by some means.
18
19 *   Core Affinity/Assignment Procedures:
20     The EAL provides mechanisms for assigning execution units to specific cores as well as creating execution instances.
21
22 *   System Memory Reservation:
23     The EAL facilitates the reservation of different memory zones, for example, physical memory areas for device interactions.
24
25 *   Trace and Debug Functions: Logs, dump_stack, panic and so on.
26
27 *   Utility Functions: Spinlocks and atomic counters that are not provided in libc.
28
29 *   CPU Feature Identification: Determine at runtime if a particular feature, for example, IntelĀ® AVX is supported.
30     Determine if the current CPU supports the feature set that the binary was compiled for.
31
32 *   Interrupt Handling: Interfaces to register/unregister callbacks to specific interrupt sources.
33
34 *   Alarm Functions: Interfaces to set/remove callbacks to be run at a specific time.
35
36 EAL in a Linux-userland Execution Environment
37 ---------------------------------------------
38
39 In a Linux user space environment, the DPDK application runs as a user-space application using the pthread library.
40
41 The EAL performs physical memory allocation using mmap() in hugetlbfs (using huge page sizes to increase performance).
42 This memory is exposed to DPDK service layers such as the :ref:`Mempool Library <Mempool_Library>`.
43
44 At this point, the DPDK services layer will be initialized, then through pthread setaffinity calls,
45 each execution unit will be assigned to a specific logical core to run as a user-level thread.
46
47 The time reference is provided by the CPU Time-Stamp Counter (TSC) or by the HPET kernel API through a mmap() call.
48
49 Initialization and Core Launching
50 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
51
52 Part of the initialization is done by the start function of glibc.
53 A check is also performed at initialization time to ensure that the micro architecture type chosen in the config file is supported by the CPU.
54 Then, the main() function is called. The core initialization and launch is done in rte_eal_init() (see the API documentation).
55 It consist of calls to the pthread library (more specifically, pthread_self(), pthread_create(), and pthread_setaffinity_np()).
56
57 .. _figure_linux_launch:
58
59 .. figure:: img/linuxapp_launch.*
60
61    EAL Initialization in a Linux Application Environment
62
63
64 .. note::
65
66     Initialization of objects, such as memory zones, rings, memory pools, lpm tables and hash tables,
67     should be done as part of the overall application initialization on the master lcore.
68     The creation and initialization functions for these objects are not multi-thread safe.
69     However, once initialized, the objects themselves can safely be used in multiple threads simultaneously.
70
71 Shutdown and Cleanup
72 ~~~~~~~~~~~~~~~~~~~~
73
74 During the initialization of EAL resources such as hugepage backed memory can be
75 allocated by core components.  The memory allocated during ``rte_eal_init()``
76 can be released by calling the ``rte_eal_cleanup()`` function. Refer to the
77 API documentation for details.
78
79 Multi-process Support
80 ~~~~~~~~~~~~~~~~~~~~~
81
82 The Linux EAL allows a multi-process as well as a multi-threaded (pthread) deployment model.
83 See chapter
84 :ref:`Multi-process Support <Multi-process_Support>` for more details.
85
86 Memory Mapping Discovery and Memory Reservation
87 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88
89 The allocation of large contiguous physical memory is done using the hugetlbfs kernel filesystem.
90 The EAL provides an API to reserve named memory zones in this contiguous memory.
91 The physical address of the reserved memory for that memory zone is also returned to the user by the memory zone reservation API.
92
93 There are two modes in which DPDK memory subsystem can operate: dynamic mode,
94 and legacy mode. Both modes are explained below.
95
96 .. note::
97
98     Memory reservations done using the APIs provided by rte_malloc are also backed by pages from the hugetlbfs filesystem.
99
100 + Dynamic memory mode
101
102 Currently, this mode is only supported on Linux.
103
104 In this mode, usage of hugepages by DPDK application will grow and shrink based
105 on application's requests. Any memory allocation through ``rte_malloc()``,
106 ``rte_memzone_reserve()`` or other methods, can potentially result in more
107 hugepages being reserved from the system. Similarly, any memory deallocation can
108 potentially result in hugepages being released back to the system.
109
110 Memory allocated in this mode is not guaranteed to be IOVA-contiguous. If large
111 chunks of IOVA-contiguous are required (with "large" defined as "more than one
112 page"), it is recommended to either use VFIO driver for all physical devices (so
113 that IOVA and VA addresses can be the same, thereby bypassing physical addresses
114 entirely), or use legacy memory mode.
115
116 For chunks of memory which must be IOVA-contiguous, it is recommended to use
117 ``rte_memzone_reserve()`` function with ``RTE_MEMZONE_IOVA_CONTIG`` flag
118 specified. This way, memory allocator will ensure that, whatever memory mode is
119 in use, either reserved memory will satisfy the requirements, or the allocation
120 will fail.
121
122 There is no need to preallocate any memory at startup using ``-m`` or
123 ``--socket-mem`` command-line parameters, however it is still possible to do so,
124 in which case preallocate memory will be "pinned" (i.e. will never be released
125 by the application back to the system). It will be possible to allocate more
126 hugepages, and deallocate those, but any preallocated pages will not be freed.
127 If neither ``-m`` nor ``--socket-mem`` were specified, no memory will be
128 preallocated, and all memory will be allocated at runtime, as needed.
129
130 Another available option to use in dynamic memory mode is
131 ``--single-file-segments`` command-line option. This option will put pages in
132 single files (per memseg list), as opposed to creating a file per page. This is
133 normally not needed, but can be useful for use cases like userspace vhost, where
134 there is limited number of page file descriptors that can be passed to VirtIO.
135
136 If the application (or DPDK-internal code, such as device drivers) wishes to
137 receive notifications about newly allocated memory, it is possible to register
138 for memory event callbacks via ``rte_mem_event_callback_register()`` function.
139 This will call a callback function any time DPDK's memory map has changed.
140
141 If the application (or DPDK-internal code, such as device drivers) wishes to be
142 notified about memory allocations above specified threshold (and have a chance
143 to deny them), allocation validator callbacks are also available via
144 ``rte_mem_alloc_validator_callback_register()`` function.
145
146 A default validator callback is provided by EAL, which can be enabled with a
147 ``--socket-limit`` command-line option, for a simple way to limit maximum amount
148 of memory that can be used by DPDK application.
149
150 .. warning::
151     Memory subsystem uses DPDK IPC internally, so memory allocations/callbacks
152     and IPC must not be mixed: it is not safe to allocate/free memory inside
153     memory-related or IPC callbacks, and it is not safe to use IPC inside
154     memory-related callbacks. See chapter
155     :ref:`Multi-process Support <Multi-process_Support>` for more details about
156     DPDK IPC.
157
158 + Legacy memory mode
159
160 This mode is enabled by specifying ``--legacy-mem`` command-line switch to the
161 EAL. This switch will have no effect on FreeBSD as FreeBSD only supports
162 legacy mode anyway.
163
164 This mode mimics historical behavior of EAL. That is, EAL will reserve all
165 memory at startup, sort all memory into large IOVA-contiguous chunks, and will
166 not allow acquiring or releasing hugepages from the system at runtime.
167
168 If neither ``-m`` nor ``--socket-mem`` were specified, the entire available
169 hugepage memory will be preallocated.
170
171 + Hugepage allocation matching
172
173 This behavior is enabled by specifying the ``--match-allocations`` command-line
174 switch to the EAL. This switch is Linux-only and not supported with
175 ``--legacy-mem`` nor ``--no-huge``.
176
177 Some applications using memory event callbacks may require that hugepages be
178 freed exactly as they were allocated. These applications may also require
179 that any allocation from the malloc heap not span across allocations
180 associated with two different memory event callbacks. Hugepage allocation
181 matching can be used by these types of applications to satisfy both of these
182 requirements. This can result in some increased memory usage which is
183 very dependent on the memory allocation patterns of the application.
184
185 + 32-bit support
186
187 Additional restrictions are present when running in 32-bit mode. In dynamic
188 memory mode, by default maximum of 2 gigabytes of VA space will be preallocated,
189 and all of it will be on master lcore NUMA node unless ``--socket-mem`` flag is
190 used.
191
192 In legacy mode, VA space will only be preallocated for segments that were
193 requested (plus padding, to keep IOVA-contiguousness).
194
195 + Maximum amount of memory
196
197 All possible virtual memory space that can ever be used for hugepage mapping in
198 a DPDK process is preallocated at startup, thereby placing an upper limit on how
199 much memory a DPDK application can have. DPDK memory is stored in segment lists,
200 each segment is strictly one physical page. It is possible to change the amount
201 of virtual memory being preallocated at startup by editing the following config
202 variables:
203
204 * ``CONFIG_RTE_MAX_MEMSEG_LISTS`` controls how many segment lists can DPDK have
205 * ``CONFIG_RTE_MAX_MEM_MB_PER_LIST`` controls how much megabytes of memory each
206   segment list can address
207 * ``CONFIG_RTE_MAX_MEMSEG_PER_LIST`` controls how many segments each segment can
208   have
209 * ``CONFIG_RTE_MAX_MEMSEG_PER_TYPE`` controls how many segments each memory type
210   can have (where "type" is defined as "page size + NUMA node" combination)
211 * ``CONFIG_RTE_MAX_MEM_MB_PER_TYPE`` controls how much megabytes of memory each
212   memory type can address
213 * ``CONFIG_RTE_MAX_MEM_MB`` places a global maximum on the amount of memory
214   DPDK can reserve
215
216 Normally, these options do not need to be changed.
217
218 .. note::
219
220     Preallocated virtual memory is not to be confused with preallocated hugepage
221     memory! All DPDK processes preallocate virtual memory at startup. Hugepages
222     can later be mapped into that preallocated VA space (if dynamic memory mode
223     is enabled), and can optionally be mapped into it at startup.
224
225 + Segment file descriptors
226
227 On Linux, in most cases, EAL will store segment file descriptors in EAL. This
228 can become a problem when using smaller page sizes due to underlying limitations
229 of ``glibc`` library. For example, Linux API calls such as ``select()`` may not
230 work correctly because ``glibc`` does not support more than certain number of
231 file descriptors.
232
233 There are two possible solutions for this problem. The recommended solution is
234 to use ``--single-file-segments`` mode, as that mode will not use a file
235 descriptor per each page, and it will keep compatibility with Virtio with
236 vhost-user backend. This option is not available when using ``--legacy-mem``
237 mode.
238
239 Another option is to use bigger page sizes. Since fewer pages are required to
240 cover the same memory area, fewer file descriptors will be stored internally
241 by EAL.
242
243 Support for Externally Allocated Memory
244 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
245
246 It is possible to use externally allocated memory in DPDK. There are two ways in
247 which using externally allocated memory can work: the malloc heap API's, and
248 manual memory management.
249
250 + Using heap API's for externally allocated memory
251
252 Using using a set of malloc heap API's is the recommended way to use externally
253 allocated memory in DPDK. In this way, support for externally allocated memory
254 is implemented through overloading the socket ID - externally allocated heaps
255 will have socket ID's that would be considered invalid under normal
256 circumstances. Requesting an allocation to take place from a specified
257 externally allocated memory is a matter of supplying the correct socket ID to
258 DPDK allocator, either directly (e.g. through a call to ``rte_malloc``) or
259 indirectly (through data structure-specific allocation API's such as
260 ``rte_ring_create``). Using these API's also ensures that mapping of externally
261 allocated memory for DMA is also performed on any memory segment that is added
262 to a DPDK malloc heap.
263
264 Since there is no way DPDK can verify whether memory is available or valid, this
265 responsibility falls on the shoulders of the user. All multiprocess
266 synchronization is also user's responsibility, as well as ensuring  that all
267 calls to add/attach/detach/remove memory are done in the correct order. It is
268 not required to attach to a memory area in all processes - only attach to memory
269 areas as needed.
270
271 The expected workflow is as follows:
272
273 * Get a pointer to memory area
274 * Create a named heap
275 * Add memory area(s) to the heap
276     - If IOVA table is not specified, IOVA addresses will be assumed to be
277       unavailable, and DMA mappings will not be performed
278     - Other processes must attach to the memory area before they can use it
279 * Get socket ID used for the heap
280 * Use normal DPDK allocation procedures, using supplied socket ID
281 * If memory area is no longer needed, it can be removed from the heap
282     - Other processes must detach from this memory area before it can be removed
283 * If heap is no longer needed, remove it
284     - Socket ID will become invalid and will not be reused
285
286 For more information, please refer to ``rte_malloc`` API documentation,
287 specifically the ``rte_malloc_heap_*`` family of function calls.
288
289 + Using externally allocated memory without DPDK API's
290
291 While using heap API's is the recommended method of using externally allocated
292 memory in DPDK, there are certain use cases where the overhead of DPDK heap API
293 is undesirable - for example, when manual memory management is performed on an
294 externally allocated area. To support use cases where externally allocated
295 memory will not be used as part of normal DPDK workflow, there is also another
296 set of API's under the ``rte_extmem_*`` namespace.
297
298 These API's are (as their name implies) intended to allow registering or
299 unregistering externally allocated memory to/from DPDK's internal page table, to
300 allow API's like ``rte_virt2memseg`` etc. to work with externally allocated
301 memory. Memory added this way will not be available for any regular DPDK
302 allocators; DPDK will leave this memory for the user application to manage.
303
304 The expected workflow is as follows:
305
306 * Get a pointer to memory area
307 * Register memory within DPDK
308     - If IOVA table is not specified, IOVA addresses will be assumed to be
309       unavailable
310     - Other processes must attach to the memory area before they can use it
311 * Perform DMA mapping with ``rte_dev_dma_map`` if needed
312 * Use the memory area in your application
313 * If memory area is no longer needed, it can be unregistered
314     - If the area was mapped for DMA, unmapping must be performed before
315       unregistering memory
316     - Other processes must detach from the memory area before it can be
317       unregistered
318
319 Since these externally allocated memory areas will not be managed by DPDK, it is
320 therefore up to the user application to decide how to use them and what to do
321 with them once they're registered.
322
323 Per-lcore and Shared Variables
324 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
325
326 .. note::
327
328     lcore refers to a logical execution unit of the processor, sometimes called a hardware *thread*.
329
330 Shared variables are the default behavior.
331 Per-lcore variables are implemented using *Thread Local Storage* (TLS) to provide per-thread local storage.
332
333 Logs
334 ~~~~
335
336 A logging API is provided by EAL.
337 By default, in a Linux application, logs are sent to syslog and also to the console.
338 However, the log function can be overridden by the user to use a different logging mechanism.
339
340 Trace and Debug Functions
341 ^^^^^^^^^^^^^^^^^^^^^^^^^
342
343 There are some debug functions to dump the stack in glibc.
344 The rte_panic() function can voluntarily provoke a SIG_ABORT,
345 which can trigger the generation of a core file, readable by gdb.
346
347 CPU Feature Identification
348 ~~~~~~~~~~~~~~~~~~~~~~~~~~
349
350 The EAL can query the CPU at runtime (using the rte_cpu_get_features() function) to determine which CPU features are available.
351
352 User Space Interrupt Event
353 ~~~~~~~~~~~~~~~~~~~~~~~~~~
354
355 + User Space Interrupt and Alarm Handling in Host Thread
356
357 The EAL creates a host thread to poll the UIO device file descriptors to detect the interrupts.
358 Callbacks can be registered or unregistered by the EAL functions for a specific interrupt event
359 and are called in the host thread asynchronously.
360 The EAL also allows timed callbacks to be used in the same way as for NIC interrupts.
361
362 .. note::
363
364     In DPDK PMD, the only interrupts handled by the dedicated host thread are those for link status change
365     (link up and link down notification) and for sudden device removal.
366
367
368 + RX Interrupt Event
369
370 The receive and transmit routines provided by each PMD don't limit themselves to execute in polling thread mode.
371 To ease the idle polling with tiny throughput, it's useful to pause the polling and wait until the wake-up event happens.
372 The RX interrupt is the first choice to be such kind of wake-up event, but probably won't be the only one.
373
374 EAL provides the event APIs for this event-driven thread mode.
375 Taking Linux as an example, the implementation relies on epoll. Each thread can monitor an epoll instance
376 in which all the wake-up events' file descriptors are added. The event file descriptors are created and mapped to
377 the interrupt vectors according to the UIO/VFIO spec.
378 From FreeBSD's perspective, kqueue is the alternative way, but not implemented yet.
379
380 EAL initializes the mapping between event file descriptors and interrupt vectors, while each device initializes the mapping
381 between interrupt vectors and queues. In this way, EAL actually is unaware of the interrupt cause on the specific vector.
382 The eth_dev driver takes responsibility to program the latter mapping.
383
384 .. note::
385
386     Per queue RX interrupt event is only allowed in VFIO which supports multiple MSI-X vector. In UIO, the RX interrupt
387     together with other interrupt causes shares the same vector. In this case, when RX interrupt and LSC(link status change)
388     interrupt are both enabled(intr_conf.lsc == 1 && intr_conf.rxq == 1), only the former is capable.
389
390 The RX interrupt are controlled/enabled/disabled by ethdev APIs - 'rte_eth_dev_rx_intr_*'. They return failure if the PMD
391 hasn't support them yet. The intr_conf.rxq flag is used to turn on the capability of RX interrupt per device.
392
393 + Device Removal Event
394
395 This event is triggered by a device being removed at a bus level. Its
396 underlying resources may have been made unavailable (i.e. PCI mappings
397 unmapped). The PMD must make sure that on such occurrence, the application can
398 still safely use its callbacks.
399
400 This event can be subscribed to in the same way one would subscribe to a link
401 status change event. The execution context is thus the same, i.e. it is the
402 dedicated interrupt host thread.
403
404 Considering this, it is likely that an application would want to close a
405 device having emitted a Device Removal Event. In such case, calling
406 ``rte_eth_dev_close()`` can trigger it to unregister its own Device Removal Event
407 callback. Care must be taken not to close the device from the interrupt handler
408 context. It is necessary to reschedule such closing operation.
409
410 Blacklisting
411 ~~~~~~~~~~~~
412
413 The EAL PCI device blacklist functionality can be used to mark certain NIC ports as blacklisted,
414 so they are ignored by the DPDK.
415 The ports to be blacklisted are identified using the PCIe* description (Domain:Bus:Device.Function).
416
417 Misc Functions
418 ~~~~~~~~~~~~~~
419
420 Locks and atomic operations are per-architecture (i686 and x86_64).
421
422 IOVA Mode Detection
423 ~~~~~~~~~~~~~~~~~~~
424
425 IOVA Mode is selected by considering what the current usable Devices on the
426 system require and/or support.
427
428 Below is the 2-step heuristic for this choice.
429
430 For the first step, EAL asks each bus its requirement in terms of IOVA mode
431 and decides on a preferred IOVA mode.
432
433 - if all buses report RTE_IOVA_PA, then the preferred IOVA mode is RTE_IOVA_PA,
434 - if all buses report RTE_IOVA_VA, then the preferred IOVA mode is RTE_IOVA_VA,
435 - if all buses report RTE_IOVA_DC, no bus expressed a preferrence, then the
436   preferred mode is RTE_IOVA_DC,
437 - if the buses disagree (at least one wants RTE_IOVA_PA and at least one wants
438   RTE_IOVA_VA), then the preferred IOVA mode is RTE_IOVA_DC (see below with the
439   check on Physical Addresses availability),
440
441 The second step checks if the preferred mode complies with the Physical
442 Addresses availability since those are only available to root user in recent
443 kernels.
444
445 - if the preferred mode is RTE_IOVA_PA but there is no access to Physical
446   Addresses, then EAL init fails early, since later probing of the devices
447   would fail anyway,
448 - if the preferred mode is RTE_IOVA_DC then EAL selects the RTE_IOVA_VA mode.
449   In the case when the buses had disagreed on the IOVA Mode at the first step,
450   part of the buses won't work because of this decision.
451
452 .. note::
453
454     The RTE_IOVA_VA mode is selected as the default for the following reasons:
455
456     - All drivers are expected to work in RTE_IOVA_VA mode, irrespective of
457       physical address availability.
458     - By default, the mempool, first asks for IOVA-contiguous memory using
459       ``RTE_MEMZONE_IOVA_CONTIG``. This is slow in RTE_IOVA_PA mode and it may
460       affect the application boot time.
461     - It is easy to enable large amount of IOVA-contiguous memory use-cases
462       with IOVA in VA mode.
463
464     It is expected that all PCI drivers work in both RTE_IOVA_PA and
465     RTE_IOVA_VA modes.
466
467     If a PCI driver does not support RTE_IOVA_PA mode, the
468     ``RTE_PCI_DRV_NEED_IOVA_AS_VA`` flag is used to dictate that this PCI
469     driver can only work in RTE_IOVA_VA mode.
470
471 IOVA Mode Configuration
472 ~~~~~~~~~~~~~~~~~~~~~~~
473
474 Auto detection of the IOVA mode, based on probing the bus and IOMMU configuration, may not report
475 the desired addressing mode when virtual devices that are not directly attached to the bus are present.
476 To facilitate forcing the IOVA mode to a specific value the EAL command line option ``--iova-mode`` can
477 be used to select either physical addressing('pa') or virtual addressing('va').
478
479 Memory Segments and Memory Zones (memzone)
480 ------------------------------------------
481
482 The mapping of physical memory is provided by this feature in the EAL.
483 As physical memory can have gaps, the memory is described in a table of descriptors,
484 and each descriptor (called rte_memseg ) describes a physical page.
485
486 On top of this, the memzone allocator's role is to reserve contiguous portions of physical memory.
487 These zones are identified by a unique name when the memory is reserved.
488
489 The rte_memzone descriptors are also located in the configuration structure.
490 This structure is accessed using rte_eal_get_configuration().
491 The lookup (by name) of a memory zone returns a descriptor containing the physical address of the memory zone.
492
493 Memory zones can be reserved with specific start address alignment by supplying the align parameter
494 (by default, they are aligned to cache line size).
495 The alignment value should be a power of two and not less than the cache line size (64 bytes).
496 Memory zones can also be reserved from either 2 MB or 1 GB hugepages, provided that both are available on the system.
497
498 Both memsegs and memzones are stored using ``rte_fbarray`` structures. Please
499 refer to *DPDK API Reference* for more information.
500
501
502 Multiple pthread
503 ----------------
504
505 DPDK usually pins one pthread per core to avoid the overhead of task switching.
506 This allows for significant performance gains, but lacks flexibility and is not always efficient.
507
508 Power management helps to improve the CPU efficiency by limiting the CPU runtime frequency.
509 However, alternately it is possible to utilize the idle cycles available to take advantage of
510 the full capability of the CPU.
511
512 By taking advantage of cgroup, the CPU utilization quota can be simply assigned.
513 This gives another way to improve the CPU efficiency, however, there is a prerequisite;
514 DPDK must handle the context switching between multiple pthreads per core.
515
516 For further flexibility, it is useful to set pthread affinity not only to a CPU but to a CPU set.
517
518 EAL pthread and lcore Affinity
519 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
520
521 The term "lcore" refers to an EAL thread, which is really a Linux/FreeBSD pthread.
522 "EAL pthreads"  are created and managed by EAL and execute the tasks issued by *remote_launch*.
523 In each EAL pthread, there is a TLS (Thread Local Storage) called *_lcore_id* for unique identification.
524 As EAL pthreads usually bind 1:1 to the physical CPU, the *_lcore_id* is typically equal to the CPU ID.
525
526 When using multiple pthreads, however, the binding is no longer always 1:1 between an EAL pthread and a specified physical CPU.
527 The EAL pthread may have affinity to a CPU set, and as such the *_lcore_id* will not be the same as the CPU ID.
528 For this reason, there is an EAL long option '--lcores' defined to assign the CPU affinity of lcores.
529 For a specified lcore ID or ID group, the option allows setting the CPU set for that EAL pthread.
530
531 The format pattern:
532         --lcores='<lcore_set>[@cpu_set][,<lcore_set>[@cpu_set],...]'
533
534 'lcore_set' and 'cpu_set' can be a single number, range or a group.
535
536 A number is a "digit([0-9]+)"; a range is "<number>-<number>"; a group is "(<number|range>[,<number|range>,...])".
537
538 If a '\@cpu_set' value is not supplied, the value of 'cpu_set' will default to the value of 'lcore_set'.
539
540     ::
541
542         For example, "--lcores='1,2@(5-7),(3-5)@(0,2),(0,6),7-8'" which means start 9 EAL thread;
543             lcore 0 runs on cpuset 0x41 (cpu 0,6);
544             lcore 1 runs on cpuset 0x2 (cpu 1);
545             lcore 2 runs on cpuset 0xe0 (cpu 5,6,7);
546             lcore 3,4,5 runs on cpuset 0x5 (cpu 0,2);
547             lcore 6 runs on cpuset 0x41 (cpu 0,6);
548             lcore 7 runs on cpuset 0x80 (cpu 7);
549             lcore 8 runs on cpuset 0x100 (cpu 8).
550
551 Using this option, for each given lcore ID, the associated CPUs can be assigned.
552 It's also compatible with the pattern of corelist('-l') option.
553
554 non-EAL pthread support
555 ~~~~~~~~~~~~~~~~~~~~~~~
556
557 It is possible to use the DPDK execution context with any user pthread (aka. Non-EAL pthreads).
558 In a non-EAL pthread, the *_lcore_id* is always LCORE_ID_ANY which identifies that it is not an EAL thread with a valid, unique, *_lcore_id*.
559 Some libraries will use an alternative unique ID (e.g. TID), some will not be impacted at all, and some will work but with limitations (e.g. timer and mempool libraries).
560
561 All these impacts are mentioned in :ref:`known_issue_label` section.
562
563 Public Thread API
564 ~~~~~~~~~~~~~~~~~
565
566 There are two public APIs ``rte_thread_set_affinity()`` and ``rte_thread_get_affinity()`` introduced for threads.
567 When they're used in any pthread context, the Thread Local Storage(TLS) will be set/get.
568
569 Those TLS include *_cpuset* and *_socket_id*:
570
571 *       *_cpuset* stores the CPUs bitmap to which the pthread is affinitized.
572
573 *       *_socket_id* stores the NUMA node of the CPU set. If the CPUs in CPU set belong to different NUMA node, the *_socket_id* will be set to SOCKET_ID_ANY.
574
575
576 Control Thread API
577 ~~~~~~~~~~~~~~~~~~
578
579 It is possible to create Control Threads using the public API
580 ``rte_ctrl_thread_create()``.
581 Those threads can be used for management/infrastructure tasks and are used
582 internally by DPDK for multi process support and interrupt handling.
583
584 Those threads will be scheduled on CPUs part of the original process CPU
585 affinity from which the dataplane and service lcores are excluded.
586
587 For example, on a 8 CPUs system, starting a dpdk application with -l 2,3
588 (dataplane cores), then depending on the affinity configuration which can be
589 controlled with tools like taskset (Linux) or cpuset (FreeBSD),
590
591 - with no affinity configuration, the Control Threads will end up on
592   0-1,4-7 CPUs.
593 - with affinity restricted to 2-4, the Control Threads will end up on
594   CPU 4.
595 - with affinity restricted to 2-3, the Control Threads will end up on
596   CPU 2 (master lcore, which is the default when no CPU is available).
597
598 .. _known_issue_label:
599
600 Known Issues
601 ~~~~~~~~~~~~
602
603 + rte_mempool
604
605   The rte_mempool uses a per-lcore cache inside the mempool.
606   For non-EAL pthreads, ``rte_lcore_id()`` will not return a valid number.
607   So for now, when rte_mempool is used with non-EAL pthreads, the put/get operations will bypass the default mempool cache and there is a performance penalty because of this bypass.
608   Only user-owned external caches can be used in a non-EAL context in conjunction with ``rte_mempool_generic_put()`` and ``rte_mempool_generic_get()`` that accept an explicit cache parameter.
609
610 + rte_ring
611
612   rte_ring supports multi-producer enqueue and multi-consumer dequeue.
613   However, it is non-preemptive, this has a knock on effect of making rte_mempool non-preemptable.
614
615   .. note::
616
617     The "non-preemptive" constraint means:
618
619     - a pthread doing multi-producers enqueues on a given ring must not
620       be preempted by another pthread doing a multi-producer enqueue on
621       the same ring.
622     - a pthread doing multi-consumers dequeues on a given ring must not
623       be preempted by another pthread doing a multi-consumer dequeue on
624       the same ring.
625
626     Bypassing this constraint may cause the 2nd pthread to spin until the 1st one is scheduled again.
627     Moreover, if the 1st pthread is preempted by a context that has an higher priority, it may even cause a dead lock.
628
629   This means, use cases involving preemptible pthreads should consider using rte_ring carefully.
630
631   1. It CAN be used for preemptible single-producer and single-consumer use case.
632
633   2. It CAN be used for non-preemptible multi-producer and preemptible single-consumer use case.
634
635   3. It CAN be used for preemptible single-producer and non-preemptible multi-consumer use case.
636
637   4. It MAY be used by preemptible multi-producer and/or preemptible multi-consumer pthreads whose scheduling policy are all SCHED_OTHER(cfs), SCHED_IDLE or SCHED_BATCH. User SHOULD be aware of the performance penalty before using it.
638
639   5. It MUST not be used by multi-producer/consumer pthreads, whose scheduling policies are SCHED_FIFO or SCHED_RR.
640
641   Alternatively, applications can use the lock-free stack mempool handler. When
642   considering this handler, note that:
643
644   - It is currently limited to the x86_64 platform, because it uses an
645     instruction (16-byte compare-and-swap) that is not yet available on other
646     platforms.
647   - It has worse average-case performance than the non-preemptive rte_ring, but
648     software caching (e.g. the mempool cache) can mitigate this by reducing the
649     number of stack accesses.
650
651 + rte_timer
652
653   Running  ``rte_timer_manage()`` on a non-EAL pthread is not allowed. However, resetting/stopping the timer from a non-EAL pthread is allowed.
654
655 + rte_log
656
657   In non-EAL pthreads, there is no per thread loglevel and logtype, global loglevels are used.
658
659 + misc
660
661   The debug statistics of rte_ring, rte_mempool and rte_timer are not supported in a non-EAL pthread.
662
663 cgroup control
664 ~~~~~~~~~~~~~~
665
666 The following is a simple example of cgroup control usage, there are two pthreads(t0 and t1) doing packet I/O on the same core ($CPU).
667 We expect only 50% of CPU spend on packet IO.
668
669   .. code-block:: console
670
671     mkdir /sys/fs/cgroup/cpu/pkt_io
672     mkdir /sys/fs/cgroup/cpuset/pkt_io
673
674     echo $cpu > /sys/fs/cgroup/cpuset/cpuset.cpus
675
676     echo $t0 > /sys/fs/cgroup/cpu/pkt_io/tasks
677     echo $t0 > /sys/fs/cgroup/cpuset/pkt_io/tasks
678
679     echo $t1 > /sys/fs/cgroup/cpu/pkt_io/tasks
680     echo $t1 > /sys/fs/cgroup/cpuset/pkt_io/tasks
681
682     cd /sys/fs/cgroup/cpu/pkt_io
683     echo 100000 > pkt_io/cpu.cfs_period_us
684     echo  50000 > pkt_io/cpu.cfs_quota_us
685
686
687 Malloc
688 ------
689
690 The EAL provides a malloc API to allocate any-sized memory.
691
692 The objective of this API is to provide malloc-like functions to allow
693 allocation from hugepage memory and to facilitate application porting.
694 The *DPDK API Reference* manual describes the available functions.
695
696 Typically, these kinds of allocations should not be done in data plane
697 processing because they are slower than pool-based allocation and make
698 use of locks within the allocation and free paths.
699 However, they can be used in configuration code.
700
701 Refer to the rte_malloc() function description in the *DPDK API Reference*
702 manual for more information.
703
704 Cookies
705 ~~~~~~~
706
707 When CONFIG_RTE_MALLOC_DEBUG is enabled, the allocated memory contains
708 overwrite protection fields to help identify buffer overflows.
709
710 Alignment and NUMA Constraints
711 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
712
713 The rte_malloc() takes an align argument that can be used to request a memory
714 area that is aligned on a multiple of this value (which must be a power of two).
715
716 On systems with NUMA support, a call to the rte_malloc() function will return
717 memory that has been allocated on the NUMA socket of the core which made the call.
718 A set of APIs is also provided, to allow memory to be explicitly allocated on a
719 NUMA socket directly, or by allocated on the NUMA socket where another core is
720 located, in the case where the memory is to be used by a logical core other than
721 on the one doing the memory allocation.
722
723 Use Cases
724 ~~~~~~~~~
725
726 This API is meant to be used by an application that requires malloc-like
727 functions at initialization time.
728
729 For allocating/freeing data at runtime, in the fast-path of an application,
730 the memory pool library should be used instead.
731
732 Internal Implementation
733 ~~~~~~~~~~~~~~~~~~~~~~~
734
735 Data Structures
736 ^^^^^^^^^^^^^^^
737
738 There are two data structure types used internally in the malloc library:
739
740 *   struct malloc_heap - used to track free space on a per-socket basis
741
742 *   struct malloc_elem - the basic element of allocation and free-space
743     tracking inside the library.
744
745 Structure: malloc_heap
746 """"""""""""""""""""""
747
748 The malloc_heap structure is used to manage free space on a per-socket basis.
749 Internally, there is one heap structure per NUMA node, which allows us to
750 allocate memory to a thread based on the NUMA node on which this thread runs.
751 While this does not guarantee that the memory will be used on that NUMA node,
752 it is no worse than a scheme where the memory is always allocated on a fixed
753 or random node.
754
755 The key fields of the heap structure and their function are described below
756 (see also diagram above):
757
758 *   lock - the lock field is needed to synchronize access to the heap.
759     Given that the free space in the heap is tracked using a linked list,
760     we need a lock to prevent two threads manipulating the list at the same time.
761
762 *   free_head - this points to the first element in the list of free nodes for
763     this malloc heap.
764
765 *   first - this points to the first element in the heap.
766
767 *   last - this points to the last element in the heap.
768
769 .. _figure_malloc_heap:
770
771 .. figure:: img/malloc_heap.*
772
773    Example of a malloc heap and malloc elements within the malloc library
774
775
776 .. _malloc_elem:
777
778 Structure: malloc_elem
779 """"""""""""""""""""""
780
781 The malloc_elem structure is used as a generic header structure for various
782 blocks of memory.
783 It is used in two different ways - all shown in the diagram above:
784
785 #.  As a header on a block of free or allocated memory - normal case
786
787 #.  As a padding header inside a block of memory
788
789 The most important fields in the structure and how they are used are described below.
790
791 Malloc heap is a doubly-linked list, where each element keeps track of its
792 previous and next elements. Due to the fact that hugepage memory can come and
793 go, neighboring malloc elements may not necessarily be adjacent in memory.
794 Also, since a malloc element may span multiple pages, its contents may not
795 necessarily be IOVA-contiguous either - each malloc element is only guaranteed
796 to be virtually contiguous.
797
798 .. note::
799
800     If the usage of a particular field in one of the above three usages is not
801     described, the field can be assumed to have an undefined value in that
802     situation, for example, for padding headers only the "state" and "pad"
803     fields have valid values.
804
805 *   heap - this pointer is a reference back to the heap structure from which
806     this block was allocated.
807     It is used for normal memory blocks when they are being freed, to add the
808     newly-freed block to the heap's free-list.
809
810 *   prev - this pointer points to previous header element/block in memory. When
811     freeing a block, this pointer is used to reference the previous block to
812     check if that block is also free. If so, and the two blocks are immediately
813     adjacent to each other, then the two free blocks are merged to form a single
814     larger block.
815
816 *   next - this pointer points to next header element/block in memory. When
817     freeing a block, this pointer is used to reference the next block to check
818     if that block is also free. If so, and the two blocks are immediately
819     adjacent to each other, then the two free blocks are merged to form a single
820     larger block.
821
822 *   free_list - this is a structure pointing to previous and next elements in
823     this heap's free list.
824     It is only used in normal memory blocks; on ``malloc()`` to find a suitable
825     free block to allocate and on ``free()`` to add the newly freed element to
826     the free-list.
827
828 *   state - This field can have one of three values: ``FREE``, ``BUSY`` or
829     ``PAD``.
830     The former two are to indicate the allocation state of a normal memory block
831     and the latter is to indicate that the element structure is a dummy structure
832     at the end of the start-of-block padding, i.e. where the start of the data
833     within a block is not at the start of the block itself, due to alignment
834     constraints.
835     In that case, the pad header is used to locate the actual malloc element
836     header for the block.
837
838 *   pad - this holds the length of the padding present at the start of the block.
839     In the case of a normal block header, it is added to the address of the end
840     of the header to give the address of the start of the data area, i.e. the
841     value passed back to the application on a malloc.
842     Within a dummy header inside the padding, this same value is stored, and is
843     subtracted from the address of the dummy header to yield the address of the
844     actual block header.
845
846 *   size - the size of the data block, including the header itself.
847
848 Memory Allocation
849 ^^^^^^^^^^^^^^^^^
850
851 On EAL initialization, all preallocated memory segments are setup as part of the
852 malloc heap. This setup involves placing an :ref:`element header<malloc_elem>`
853 with ``FREE`` at the start of each virtually contiguous segment of memory.
854 The ``FREE`` element is then added to the ``free_list`` for the malloc heap.
855
856 This setup also happens whenever memory is allocated at runtime (if supported),
857 in which case newly allocated pages are also added to the heap, merging with any
858 adjacent free segments if there are any.
859
860 When an application makes a call to a malloc-like function, the malloc function
861 will first index the ``lcore_config`` structure for the calling thread, and
862 determine the NUMA node of that thread.
863 The NUMA node is used to index the array of ``malloc_heap`` structures which is
864 passed as a parameter to the ``heap_alloc()`` function, along with the
865 requested size, type, alignment and boundary parameters.
866
867 The ``heap_alloc()`` function will scan the free_list of the heap, and attempt
868 to find a free block suitable for storing data of the requested size, with the
869 requested alignment and boundary constraints.
870
871 When a suitable free element has been identified, the pointer to be returned
872 to the user is calculated.
873 The cache-line of memory immediately preceding this pointer is filled with a
874 struct malloc_elem header.
875 Because of alignment and boundary constraints, there could be free space at
876 the start and/or end of the element, resulting in the following behavior:
877
878 #. Check for trailing space.
879    If the trailing space is big enough, i.e. > 128 bytes, then the free element
880    is split.
881    If it is not, then we just ignore it (wasted space).
882
883 #. Check for space at the start of the element.
884    If the space at the start is small, i.e. <=128 bytes, then a pad header is
885    used, and the remaining space is wasted.
886    If, however, the remaining space is greater, then the free element is split.
887
888 The advantage of allocating the memory from the end of the existing element is
889 that no adjustment of the free list needs to take place - the existing element
890 on the free list just has its size value adjusted, and the next/previous elements
891 have their "prev"/"next" pointers redirected to the newly created element.
892
893 In case when there is not enough memory in the heap to satisfy allocation
894 request, EAL will attempt to allocate more memory from the system (if supported)
895 and, following successful allocation, will retry reserving the memory again. In
896 a multiprocessing scenario, all primary and secondary processes will synchronize
897 their memory maps to ensure that any valid pointer to DPDK memory is guaranteed
898 to be valid at all times in all currently running processes.
899
900 Failure to synchronize memory maps in one of the processes will cause allocation
901 to fail, even though some of the processes may have allocated the memory
902 successfully. The memory is not added to the malloc heap unless primary process
903 has ensured that all other processes have mapped this memory successfully.
904
905 Any successful allocation event will trigger a callback, for which user
906 applications and other DPDK subsystems can register. Additionally, validation
907 callbacks will be triggered before allocation if the newly allocated memory will
908 exceed threshold set by the user, giving a chance to allow or deny allocation.
909
910 .. note::
911
912     Any allocation of new pages has to go through primary process. If the
913     primary process is not active, no memory will be allocated even if it was
914     theoretically possible to do so. This is because primary's process map acts
915     as an authority on what should or should not be mapped, while each secondary
916     process has its own, local memory map. Secondary processes do not update the
917     shared memory map, they only copy its contents to their local memory map.
918
919 Freeing Memory
920 ^^^^^^^^^^^^^^
921
922 To free an area of memory, the pointer to the start of the data area is passed
923 to the free function.
924 The size of the ``malloc_elem`` structure is subtracted from this pointer to get
925 the element header for the block.
926 If this header is of type ``PAD`` then the pad length is further subtracted from
927 the pointer to get the proper element header for the entire block.
928
929 From this element header, we get pointers to the heap from which the block was
930 allocated and to where it must be freed, as well as the pointer to the previous
931 and next elements. These next and previous elements are then checked to see if
932 they are also ``FREE`` and are immediately adjacent to the current one, and if
933 so, they are merged with the current element. This means that we can never have
934 two ``FREE`` memory blocks adjacent to one another, as they are always merged
935 into a single block.
936
937 If deallocating pages at runtime is supported, and the free element encloses
938 one or more pages, those pages can be deallocated and be removed from the heap.
939 If DPDK was started with command-line parameters for preallocating memory
940 (``-m`` or ``--socket-mem``), then those pages that were allocated at startup
941 will not be deallocated.
942
943 Any successful deallocation event will trigger a callback, for which user
944 applications and other DPDK subsystems can register.