New upstream version 18.11.2
[deb_dpdk.git] / lib / librte_eal / common / eal_common_memory.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #include <fcntl.h>
6 #include <errno.h>
7 #include <stdio.h>
8 #include <stdint.h>
9 #include <stdlib.h>
10 #include <stdarg.h>
11 #include <string.h>
12 #include <unistd.h>
13 #include <inttypes.h>
14 #include <sys/mman.h>
15 #include <sys/queue.h>
16
17 #include <rte_fbarray.h>
18 #include <rte_memory.h>
19 #include <rte_eal.h>
20 #include <rte_eal_memconfig.h>
21 #include <rte_errno.h>
22 #include <rte_log.h>
23
24 #include "eal_memalloc.h"
25 #include "eal_private.h"
26 #include "eal_internal_cfg.h"
27
28 /*
29  * Try to mmap *size bytes in /dev/zero. If it is successful, return the
30  * pointer to the mmap'd area and keep *size unmodified. Else, retry
31  * with a smaller zone: decrease *size by hugepage_sz until it reaches
32  * 0. In this case, return NULL. Note: this function returns an address
33  * which is a multiple of hugepage size.
34  */
35
36 #define MEMSEG_LIST_FMT "memseg-%" PRIu64 "k-%i-%i"
37
38 static void *next_baseaddr;
39 static uint64_t system_page_sz;
40
41 #ifdef RTE_ARCH_64
42 /*
43  * Linux kernel uses a really high address as starting address for serving
44  * mmaps calls. If there exists addressing limitations and IOVA mode is VA,
45  * this starting address is likely too high for those devices. However, it
46  * is possible to use a lower address in the process virtual address space
47  * as with 64 bits there is a lot of available space.
48  *
49  * Current known limitations are 39 or 40 bits. Setting the starting address
50  * at 4GB implies there are 508GB or 1020GB for mapping the available
51  * hugepages. This is likely enough for most systems, although a device with
52  * addressing limitations should call rte_mem_check_dma_mask for ensuring all
53  * memory is within supported range.
54  */
55 static uint64_t baseaddr = 0x100000000;
56 #endif
57
58 #define MAX_MMAP_WITH_DEFINED_ADDR_TRIES 5
59 void *
60 eal_get_virtual_area(void *requested_addr, size_t *size,
61                 size_t page_sz, int flags, int mmap_flags)
62 {
63         bool addr_is_hint, allow_shrink, unmap, no_align;
64         uint64_t map_sz;
65         void *mapped_addr, *aligned_addr;
66         uint8_t try = 0;
67
68         if (system_page_sz == 0)
69                 system_page_sz = sysconf(_SC_PAGESIZE);
70
71         mmap_flags |= MAP_PRIVATE | MAP_ANONYMOUS;
72
73         RTE_LOG(DEBUG, EAL, "Ask a virtual area of 0x%zx bytes\n", *size);
74
75         addr_is_hint = (flags & EAL_VIRTUAL_AREA_ADDR_IS_HINT) > 0;
76         allow_shrink = (flags & EAL_VIRTUAL_AREA_ALLOW_SHRINK) > 0;
77         unmap = (flags & EAL_VIRTUAL_AREA_UNMAP) > 0;
78
79         if (next_baseaddr == NULL && internal_config.base_virtaddr != 0 &&
80                         rte_eal_process_type() == RTE_PROC_PRIMARY)
81                 next_baseaddr = (void *) internal_config.base_virtaddr;
82
83 #ifdef RTE_ARCH_64
84         if (next_baseaddr == NULL && internal_config.base_virtaddr == 0 &&
85                         rte_eal_process_type() == RTE_PROC_PRIMARY)
86                 next_baseaddr = (void *) baseaddr;
87 #endif
88         if (requested_addr == NULL && next_baseaddr != NULL) {
89                 requested_addr = next_baseaddr;
90                 requested_addr = RTE_PTR_ALIGN(requested_addr, page_sz);
91                 addr_is_hint = true;
92         }
93
94         /* we don't need alignment of resulting pointer in the following cases:
95          *
96          * 1. page size is equal to system size
97          * 2. we have a requested address, and it is page-aligned, and we will
98          *    be discarding the address if we get a different one.
99          *
100          * for all other cases, alignment is potentially necessary.
101          */
102         no_align = (requested_addr != NULL &&
103                 requested_addr == RTE_PTR_ALIGN(requested_addr, page_sz) &&
104                 !addr_is_hint) ||
105                 page_sz == system_page_sz;
106
107         do {
108                 map_sz = no_align ? *size : *size + page_sz;
109                 if (map_sz > SIZE_MAX) {
110                         RTE_LOG(ERR, EAL, "Map size too big\n");
111                         rte_errno = E2BIG;
112                         return NULL;
113                 }
114
115                 mapped_addr = mmap(requested_addr, (size_t)map_sz, PROT_READ,
116                                 mmap_flags, -1, 0);
117                 if (mapped_addr == MAP_FAILED && allow_shrink)
118                         *size -= page_sz;
119
120                 if (mapped_addr != MAP_FAILED && addr_is_hint &&
121                     mapped_addr != requested_addr) {
122                         try++;
123                         next_baseaddr = RTE_PTR_ADD(next_baseaddr, page_sz);
124                         if (try <= MAX_MMAP_WITH_DEFINED_ADDR_TRIES) {
125                                 /* hint was not used. Try with another offset */
126                                 munmap(mapped_addr, map_sz);
127                                 mapped_addr = MAP_FAILED;
128                                 requested_addr = next_baseaddr;
129                         }
130                 }
131         } while ((allow_shrink || addr_is_hint) &&
132                  mapped_addr == MAP_FAILED && *size > 0);
133
134         /* align resulting address - if map failed, we will ignore the value
135          * anyway, so no need to add additional checks.
136          */
137         aligned_addr = no_align ? mapped_addr :
138                         RTE_PTR_ALIGN(mapped_addr, page_sz);
139
140         if (*size == 0) {
141                 RTE_LOG(ERR, EAL, "Cannot get a virtual area of any size: %s\n",
142                         strerror(errno));
143                 rte_errno = errno;
144                 return NULL;
145         } else if (mapped_addr == MAP_FAILED) {
146                 RTE_LOG(ERR, EAL, "Cannot get a virtual area: %s\n",
147                         strerror(errno));
148                 /* pass errno up the call chain */
149                 rte_errno = errno;
150                 return NULL;
151         } else if (requested_addr != NULL && !addr_is_hint &&
152                         aligned_addr != requested_addr) {
153                 RTE_LOG(ERR, EAL, "Cannot get a virtual area at requested address: %p (got %p)\n",
154                         requested_addr, aligned_addr);
155                 munmap(mapped_addr, map_sz);
156                 rte_errno = EADDRNOTAVAIL;
157                 return NULL;
158         } else if (requested_addr != NULL && addr_is_hint &&
159                         aligned_addr != requested_addr) {
160                 RTE_LOG(WARNING, EAL, "WARNING! Base virtual address hint (%p != %p) not respected!\n",
161                         requested_addr, aligned_addr);
162                 RTE_LOG(WARNING, EAL, "   This may cause issues with mapping memory into secondary processes\n");
163         } else if (next_baseaddr != NULL) {
164                 next_baseaddr = RTE_PTR_ADD(aligned_addr, *size);
165         }
166
167         RTE_LOG(DEBUG, EAL, "Virtual area found at %p (size = 0x%zx)\n",
168                 aligned_addr, *size);
169
170         if (unmap) {
171                 munmap(mapped_addr, map_sz);
172         } else if (!no_align) {
173                 void *map_end, *aligned_end;
174                 size_t before_len, after_len;
175
176                 /* when we reserve space with alignment, we add alignment to
177                  * mapping size. On 32-bit, if 1GB alignment was requested, this
178                  * would waste 1GB of address space, which is a luxury we cannot
179                  * afford. so, if alignment was performed, check if any unneeded
180                  * address space can be unmapped back.
181                  */
182
183                 map_end = RTE_PTR_ADD(mapped_addr, (size_t)map_sz);
184                 aligned_end = RTE_PTR_ADD(aligned_addr, *size);
185
186                 /* unmap space before aligned mmap address */
187                 before_len = RTE_PTR_DIFF(aligned_addr, mapped_addr);
188                 if (before_len > 0)
189                         munmap(mapped_addr, before_len);
190
191                 /* unmap space after aligned end mmap address */
192                 after_len = RTE_PTR_DIFF(map_end, aligned_end);
193                 if (after_len > 0)
194                         munmap(aligned_end, after_len);
195         }
196
197         return aligned_addr;
198 }
199
200 static struct rte_memseg *
201 virt2memseg(const void *addr, const struct rte_memseg_list *msl)
202 {
203         const struct rte_fbarray *arr;
204         void *start, *end;
205         int ms_idx;
206
207         if (msl == NULL)
208                 return NULL;
209
210         /* a memseg list was specified, check if it's the right one */
211         start = msl->base_va;
212         end = RTE_PTR_ADD(start, msl->len);
213
214         if (addr < start || addr >= end)
215                 return NULL;
216
217         /* now, calculate index */
218         arr = &msl->memseg_arr;
219         ms_idx = RTE_PTR_DIFF(addr, msl->base_va) / msl->page_sz;
220         return rte_fbarray_get(arr, ms_idx);
221 }
222
223 static struct rte_memseg_list *
224 virt2memseg_list(const void *addr)
225 {
226         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
227         struct rte_memseg_list *msl;
228         int msl_idx;
229
230         for (msl_idx = 0; msl_idx < RTE_MAX_MEMSEG_LISTS; msl_idx++) {
231                 void *start, *end;
232                 msl = &mcfg->memsegs[msl_idx];
233
234                 start = msl->base_va;
235                 end = RTE_PTR_ADD(start, msl->len);
236                 if (addr >= start && addr < end)
237                         break;
238         }
239         /* if we didn't find our memseg list */
240         if (msl_idx == RTE_MAX_MEMSEG_LISTS)
241                 return NULL;
242         return msl;
243 }
244
245 __rte_experimental struct rte_memseg_list *
246 rte_mem_virt2memseg_list(const void *addr)
247 {
248         return virt2memseg_list(addr);
249 }
250
251 struct virtiova {
252         rte_iova_t iova;
253         void *virt;
254 };
255 static int
256 find_virt(const struct rte_memseg_list *msl __rte_unused,
257                 const struct rte_memseg *ms, void *arg)
258 {
259         struct virtiova *vi = arg;
260         if (vi->iova >= ms->iova && vi->iova < (ms->iova + ms->len)) {
261                 size_t offset = vi->iova - ms->iova;
262                 vi->virt = RTE_PTR_ADD(ms->addr, offset);
263                 /* stop the walk */
264                 return 1;
265         }
266         return 0;
267 }
268 static int
269 find_virt_legacy(const struct rte_memseg_list *msl __rte_unused,
270                 const struct rte_memseg *ms, size_t len, void *arg)
271 {
272         struct virtiova *vi = arg;
273         if (vi->iova >= ms->iova && vi->iova < (ms->iova + len)) {
274                 size_t offset = vi->iova - ms->iova;
275                 vi->virt = RTE_PTR_ADD(ms->addr, offset);
276                 /* stop the walk */
277                 return 1;
278         }
279         return 0;
280 }
281
282 __rte_experimental void *
283 rte_mem_iova2virt(rte_iova_t iova)
284 {
285         struct virtiova vi;
286
287         memset(&vi, 0, sizeof(vi));
288
289         vi.iova = iova;
290         /* for legacy mem, we can get away with scanning VA-contiguous segments,
291          * as we know they are PA-contiguous as well
292          */
293         if (internal_config.legacy_mem)
294                 rte_memseg_contig_walk(find_virt_legacy, &vi);
295         else
296                 rte_memseg_walk(find_virt, &vi);
297
298         return vi.virt;
299 }
300
301 __rte_experimental struct rte_memseg *
302 rte_mem_virt2memseg(const void *addr, const struct rte_memseg_list *msl)
303 {
304         return virt2memseg(addr, msl != NULL ? msl :
305                         rte_mem_virt2memseg_list(addr));
306 }
307
308 static int
309 physmem_size(const struct rte_memseg_list *msl, void *arg)
310 {
311         uint64_t *total_len = arg;
312
313         if (msl->external)
314                 return 0;
315
316         *total_len += msl->memseg_arr.count * msl->page_sz;
317
318         return 0;
319 }
320
321 /* get the total size of memory */
322 uint64_t
323 rte_eal_get_physmem_size(void)
324 {
325         uint64_t total_len = 0;
326
327         rte_memseg_list_walk(physmem_size, &total_len);
328
329         return total_len;
330 }
331
332 static int
333 dump_memseg(const struct rte_memseg_list *msl, const struct rte_memseg *ms,
334                 void *arg)
335 {
336         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
337         int msl_idx, ms_idx, fd;
338         FILE *f = arg;
339
340         msl_idx = msl - mcfg->memsegs;
341         if (msl_idx < 0 || msl_idx >= RTE_MAX_MEMSEG_LISTS)
342                 return -1;
343
344         ms_idx = rte_fbarray_find_idx(&msl->memseg_arr, ms);
345         if (ms_idx < 0)
346                 return -1;
347
348         fd = eal_memalloc_get_seg_fd(msl_idx, ms_idx);
349         fprintf(f, "Segment %i-%i: IOVA:0x%"PRIx64", len:%zu, "
350                         "virt:%p, socket_id:%"PRId32", "
351                         "hugepage_sz:%"PRIu64", nchannel:%"PRIx32", "
352                         "nrank:%"PRIx32" fd:%i\n",
353                         msl_idx, ms_idx,
354                         ms->iova,
355                         ms->len,
356                         ms->addr,
357                         ms->socket_id,
358                         ms->hugepage_sz,
359                         ms->nchannel,
360                         ms->nrank,
361                         fd);
362
363         return 0;
364 }
365
366 /*
367  * Defining here because declared in rte_memory.h, but the actual implementation
368  * is in eal_common_memalloc.c, like all other memalloc internals.
369  */
370 int __rte_experimental
371 rte_mem_event_callback_register(const char *name, rte_mem_event_callback_t clb,
372                 void *arg)
373 {
374         /* FreeBSD boots with legacy mem enabled by default */
375         if (internal_config.legacy_mem) {
376                 RTE_LOG(DEBUG, EAL, "Registering mem event callbacks not supported\n");
377                 rte_errno = ENOTSUP;
378                 return -1;
379         }
380         return eal_memalloc_mem_event_callback_register(name, clb, arg);
381 }
382
383 int __rte_experimental
384 rte_mem_event_callback_unregister(const char *name, void *arg)
385 {
386         /* FreeBSD boots with legacy mem enabled by default */
387         if (internal_config.legacy_mem) {
388                 RTE_LOG(DEBUG, EAL, "Registering mem event callbacks not supported\n");
389                 rte_errno = ENOTSUP;
390                 return -1;
391         }
392         return eal_memalloc_mem_event_callback_unregister(name, arg);
393 }
394
395 int __rte_experimental
396 rte_mem_alloc_validator_register(const char *name,
397                 rte_mem_alloc_validator_t clb, int socket_id, size_t limit)
398 {
399         /* FreeBSD boots with legacy mem enabled by default */
400         if (internal_config.legacy_mem) {
401                 RTE_LOG(DEBUG, EAL, "Registering mem alloc validators not supported\n");
402                 rte_errno = ENOTSUP;
403                 return -1;
404         }
405         return eal_memalloc_mem_alloc_validator_register(name, clb, socket_id,
406                         limit);
407 }
408
409 int __rte_experimental
410 rte_mem_alloc_validator_unregister(const char *name, int socket_id)
411 {
412         /* FreeBSD boots with legacy mem enabled by default */
413         if (internal_config.legacy_mem) {
414                 RTE_LOG(DEBUG, EAL, "Registering mem alloc validators not supported\n");
415                 rte_errno = ENOTSUP;
416                 return -1;
417         }
418         return eal_memalloc_mem_alloc_validator_unregister(name, socket_id);
419 }
420
421 /* Dump the physical memory layout on console */
422 void
423 rte_dump_physmem_layout(FILE *f)
424 {
425         rte_memseg_walk(dump_memseg, f);
426 }
427
428 static int
429 check_iova(const struct rte_memseg_list *msl __rte_unused,
430                 const struct rte_memseg *ms, void *arg)
431 {
432         uint64_t *mask = arg;
433         rte_iova_t iova;
434
435         /* higher address within segment */
436         iova = (ms->iova + ms->len) - 1;
437         if (!(iova & *mask))
438                 return 0;
439
440         RTE_LOG(DEBUG, EAL, "memseg iova %"PRIx64", len %zx, out of range\n",
441                             ms->iova, ms->len);
442
443         RTE_LOG(DEBUG, EAL, "\tusing dma mask %"PRIx64"\n", *mask);
444         return 1;
445 }
446
447 #define MAX_DMA_MASK_BITS 63
448
449 /* check memseg iovas are within the required range based on dma mask */
450 static int __rte_experimental
451 check_dma_mask(uint8_t maskbits, bool thread_unsafe)
452 {
453         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
454         uint64_t mask;
455         int ret;
456
457         /* Sanity check. We only check width can be managed with 64 bits
458          * variables. Indeed any higher value is likely wrong. */
459         if (maskbits > MAX_DMA_MASK_BITS) {
460                 RTE_LOG(ERR, EAL, "wrong dma mask size %u (Max: %u)\n",
461                                    maskbits, MAX_DMA_MASK_BITS);
462                 return -1;
463         }
464
465         /* create dma mask */
466         mask = ~((1ULL << maskbits) - 1);
467
468         if (thread_unsafe)
469                 ret = rte_memseg_walk_thread_unsafe(check_iova, &mask);
470         else
471                 ret = rte_memseg_walk(check_iova, &mask);
472
473         if (ret)
474                 /*
475                  * Dma mask precludes hugepage usage.
476                  * This device can not be used and we do not need to keep
477                  * the dma mask.
478                  */
479                 return 1;
480
481         /*
482          * we need to keep the more restricted maskbit for checking
483          * potential dynamic memory allocation in the future.
484          */
485         mcfg->dma_maskbits = mcfg->dma_maskbits == 0 ? maskbits :
486                              RTE_MIN(mcfg->dma_maskbits, maskbits);
487
488         return 0;
489 }
490
491 int __rte_experimental
492 rte_mem_check_dma_mask(uint8_t maskbits)
493 {
494         return check_dma_mask(maskbits, false);
495 }
496
497 int __rte_experimental
498 rte_mem_check_dma_mask_thread_unsafe(uint8_t maskbits)
499 {
500         return check_dma_mask(maskbits, true);
501 }
502
503 /*
504  * Set dma mask to use when memory initialization is done.
505  *
506  * This function should ONLY be used by code executed before the memory
507  * initialization. PMDs should use rte_mem_check_dma_mask if addressing
508  * limitations by the device.
509  */
510 void __rte_experimental
511 rte_mem_set_dma_mask(uint8_t maskbits)
512 {
513         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
514
515         mcfg->dma_maskbits = mcfg->dma_maskbits == 0 ? maskbits :
516                              RTE_MIN(mcfg->dma_maskbits, maskbits);
517 }
518
519 /* return the number of memory channels */
520 unsigned rte_memory_get_nchannel(void)
521 {
522         return rte_eal_get_configuration()->mem_config->nchannel;
523 }
524
525 /* return the number of memory rank */
526 unsigned rte_memory_get_nrank(void)
527 {
528         return rte_eal_get_configuration()->mem_config->nrank;
529 }
530
531 static int
532 rte_eal_memdevice_init(void)
533 {
534         struct rte_config *config;
535
536         if (rte_eal_process_type() == RTE_PROC_SECONDARY)
537                 return 0;
538
539         config = rte_eal_get_configuration();
540         config->mem_config->nchannel = internal_config.force_nchannel;
541         config->mem_config->nrank = internal_config.force_nrank;
542
543         return 0;
544 }
545
546 /* Lock page in physical memory and prevent from swapping. */
547 int
548 rte_mem_lock_page(const void *virt)
549 {
550         unsigned long virtual = (unsigned long)virt;
551         int page_size = getpagesize();
552         unsigned long aligned = (virtual & ~(page_size - 1));
553         return mlock((void *)aligned, page_size);
554 }
555
556 int __rte_experimental
557 rte_memseg_contig_walk_thread_unsafe(rte_memseg_contig_walk_t func, void *arg)
558 {
559         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
560         int i, ms_idx, ret = 0;
561
562         for (i = 0; i < RTE_MAX_MEMSEG_LISTS; i++) {
563                 struct rte_memseg_list *msl = &mcfg->memsegs[i];
564                 const struct rte_memseg *ms;
565                 struct rte_fbarray *arr;
566
567                 if (msl->memseg_arr.count == 0)
568                         continue;
569
570                 arr = &msl->memseg_arr;
571
572                 ms_idx = rte_fbarray_find_next_used(arr, 0);
573                 while (ms_idx >= 0) {
574                         int n_segs;
575                         size_t len;
576
577                         ms = rte_fbarray_get(arr, ms_idx);
578
579                         /* find how many more segments there are, starting with
580                          * this one.
581                          */
582                         n_segs = rte_fbarray_find_contig_used(arr, ms_idx);
583                         len = n_segs * msl->page_sz;
584
585                         ret = func(msl, ms, len, arg);
586                         if (ret)
587                                 return ret;
588                         ms_idx = rte_fbarray_find_next_used(arr,
589                                         ms_idx + n_segs);
590                 }
591         }
592         return 0;
593 }
594
595 int __rte_experimental
596 rte_memseg_contig_walk(rte_memseg_contig_walk_t func, void *arg)
597 {
598         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
599         int ret = 0;
600
601         /* do not allow allocations/frees/init while we iterate */
602         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
603         ret = rte_memseg_contig_walk_thread_unsafe(func, arg);
604         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
605
606         return ret;
607 }
608
609 int __rte_experimental
610 rte_memseg_walk_thread_unsafe(rte_memseg_walk_t func, void *arg)
611 {
612         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
613         int i, ms_idx, ret = 0;
614
615         for (i = 0; i < RTE_MAX_MEMSEG_LISTS; i++) {
616                 struct rte_memseg_list *msl = &mcfg->memsegs[i];
617                 const struct rte_memseg *ms;
618                 struct rte_fbarray *arr;
619
620                 if (msl->memseg_arr.count == 0)
621                         continue;
622
623                 arr = &msl->memseg_arr;
624
625                 ms_idx = rte_fbarray_find_next_used(arr, 0);
626                 while (ms_idx >= 0) {
627                         ms = rte_fbarray_get(arr, ms_idx);
628                         ret = func(msl, ms, arg);
629                         if (ret)
630                                 return ret;
631                         ms_idx = rte_fbarray_find_next_used(arr, ms_idx + 1);
632                 }
633         }
634         return 0;
635 }
636
637 int __rte_experimental
638 rte_memseg_walk(rte_memseg_walk_t func, void *arg)
639 {
640         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
641         int ret = 0;
642
643         /* do not allow allocations/frees/init while we iterate */
644         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
645         ret = rte_memseg_walk_thread_unsafe(func, arg);
646         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
647
648         return ret;
649 }
650
651 int __rte_experimental
652 rte_memseg_list_walk_thread_unsafe(rte_memseg_list_walk_t func, void *arg)
653 {
654         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
655         int i, ret = 0;
656
657         for (i = 0; i < RTE_MAX_MEMSEG_LISTS; i++) {
658                 struct rte_memseg_list *msl = &mcfg->memsegs[i];
659
660                 if (msl->base_va == NULL)
661                         continue;
662
663                 ret = func(msl, arg);
664                 if (ret)
665                         return ret;
666         }
667         return 0;
668 }
669
670 int __rte_experimental
671 rte_memseg_list_walk(rte_memseg_list_walk_t func, void *arg)
672 {
673         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
674         int ret = 0;
675
676         /* do not allow allocations/frees/init while we iterate */
677         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
678         ret = rte_memseg_list_walk_thread_unsafe(func, arg);
679         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
680
681         return ret;
682 }
683
684 int __rte_experimental
685 rte_memseg_get_fd_thread_unsafe(const struct rte_memseg *ms)
686 {
687         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
688         struct rte_memseg_list *msl;
689         struct rte_fbarray *arr;
690         int msl_idx, seg_idx, ret;
691
692         if (ms == NULL) {
693                 rte_errno = EINVAL;
694                 return -1;
695         }
696
697         msl = rte_mem_virt2memseg_list(ms->addr);
698         if (msl == NULL) {
699                 rte_errno = EINVAL;
700                 return -1;
701         }
702         arr = &msl->memseg_arr;
703
704         msl_idx = msl - mcfg->memsegs;
705         seg_idx = rte_fbarray_find_idx(arr, ms);
706
707         if (!rte_fbarray_is_used(arr, seg_idx)) {
708                 rte_errno = ENOENT;
709                 return -1;
710         }
711
712         /* segment fd API is not supported for external segments */
713         if (msl->external) {
714                 rte_errno = ENOTSUP;
715                 return -1;
716         }
717
718         ret = eal_memalloc_get_seg_fd(msl_idx, seg_idx);
719         if (ret < 0) {
720                 rte_errno = -ret;
721                 ret = -1;
722         }
723         return ret;
724 }
725
726 int __rte_experimental
727 rte_memseg_get_fd(const struct rte_memseg *ms)
728 {
729         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
730         int ret;
731
732         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
733         ret = rte_memseg_get_fd_thread_unsafe(ms);
734         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
735
736         return ret;
737 }
738
739 int __rte_experimental
740 rte_memseg_get_fd_offset_thread_unsafe(const struct rte_memseg *ms,
741                 size_t *offset)
742 {
743         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
744         struct rte_memseg_list *msl;
745         struct rte_fbarray *arr;
746         int msl_idx, seg_idx, ret;
747
748         if (ms == NULL || offset == NULL) {
749                 rte_errno = EINVAL;
750                 return -1;
751         }
752
753         msl = rte_mem_virt2memseg_list(ms->addr);
754         if (msl == NULL) {
755                 rte_errno = EINVAL;
756                 return -1;
757         }
758         arr = &msl->memseg_arr;
759
760         msl_idx = msl - mcfg->memsegs;
761         seg_idx = rte_fbarray_find_idx(arr, ms);
762
763         if (!rte_fbarray_is_used(arr, seg_idx)) {
764                 rte_errno = ENOENT;
765                 return -1;
766         }
767
768         /* segment fd API is not supported for external segments */
769         if (msl->external) {
770                 rte_errno = ENOTSUP;
771                 return -1;
772         }
773
774         ret = eal_memalloc_get_seg_fd_offset(msl_idx, seg_idx, offset);
775         if (ret < 0) {
776                 rte_errno = -ret;
777                 ret = -1;
778         }
779         return ret;
780 }
781
782 int __rte_experimental
783 rte_memseg_get_fd_offset(const struct rte_memseg *ms, size_t *offset)
784 {
785         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
786         int ret;
787
788         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
789         ret = rte_memseg_get_fd_offset_thread_unsafe(ms, offset);
790         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
791
792         return ret;
793 }
794
795 /* init memory subsystem */
796 int
797 rte_eal_memory_init(void)
798 {
799         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
800         int retval;
801         RTE_LOG(DEBUG, EAL, "Setting up physically contiguous memory...\n");
802
803         if (!mcfg)
804                 return -1;
805
806         /* lock mem hotplug here, to prevent races while we init */
807         rte_rwlock_read_lock(&mcfg->memory_hotplug_lock);
808
809         if (rte_eal_memseg_init() < 0)
810                 goto fail;
811
812         if (eal_memalloc_init() < 0)
813                 goto fail;
814
815         retval = rte_eal_process_type() == RTE_PROC_PRIMARY ?
816                         rte_eal_hugepage_init() :
817                         rte_eal_hugepage_attach();
818         if (retval < 0)
819                 goto fail;
820
821         if (internal_config.no_shconf == 0 && rte_eal_memdevice_init() < 0)
822                 goto fail;
823
824         return 0;
825 fail:
826         rte_rwlock_read_unlock(&mcfg->memory_hotplug_lock);
827         return -1;
828 }