1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017-2018 Intel Corporation
5 #define _FILE_OFFSET_BITS 64
15 #include <sys/types.h>
17 #include <sys/queue.h>
22 #include <sys/ioctl.h>
26 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
30 #include <linux/falloc.h>
31 #include <linux/mman.h> /* for hugetlb-related mmap flags */
33 #include <rte_common.h>
35 #include <rte_eal_memconfig.h>
37 #include <rte_errno.h>
38 #include <rte_memory.h>
39 #include <rte_spinlock.h>
41 #include "eal_filesystem.h"
42 #include "eal_internal_cfg.h"
43 #include "eal_memalloc.h"
44 #include "eal_private.h"
46 const int anonymous_hugepages_supported =
49 #define RTE_MAP_HUGE_SHIFT MAP_HUGE_SHIFT
52 #define RTE_MAP_HUGE_SHIFT 26
56 * we don't actually care if memfd itself is supported - we only need to check
57 * if memfd supports hugetlbfs, as that already implies memfd support.
59 * also, this is not a constant, because while we may be *compiled* with memfd
60 * hugetlbfs support, we might not be *running* on a system that supports memfd
61 * and/or memfd with hugetlbfs, so we need to be able to adjust this flag at
62 * runtime, and fall back to anonymous memory.
64 int memfd_create_supported =
66 #define MEMFD_SUPPORTED
73 * not all kernel version support fallocate on hugetlbfs, so fall back to
74 * ftruncate and disallow deallocation if fallocate is not supported.
76 static int fallocate_supported = -1; /* unknown */
79 * we have two modes - single file segments, and file-per-page mode.
81 * for single-file segments, we need some kind of mechanism to keep track of
82 * which hugepages can be freed back to the system, and which cannot. we cannot
83 * use flock() because they don't allow locking parts of a file, and we cannot
84 * use fcntl() due to issues with their semantics, so we will have to rely on a
85 * bunch of lockfiles for each page. so, we will use 'fds' array to keep track
86 * of per-page lockfiles. we will store the actual segment list fd in the
87 * 'memseg_list_fd' field.
89 * for file-per-page mode, each page will have its own fd, so 'memseg_list_fd'
90 * will be invalid (set to -1), and we'll use 'fds' to keep track of page fd's.
92 * we cannot know how many pages a system will have in advance, but we do know
93 * that they come in lists, and we know lengths of these lists. so, simply store
94 * a malloc'd array of fd's indexed by list and segment index.
96 * they will be initialized at startup, and filled as we allocate/deallocate
100 int *fds; /**< dynamically allocated array of segment lock fd's */
101 int memseg_list_fd; /**< memseg list fd */
102 int len; /**< total length of the array */
103 int count; /**< entries used in an array */
104 } fd_list[RTE_MAX_MEMSEG_LISTS];
106 /** local copy of a memory map, used to synchronize memory hotplug in MP */
107 static struct rte_memseg_list local_memsegs[RTE_MAX_MEMSEG_LISTS];
109 static sigjmp_buf huge_jmpenv;
111 static void __rte_unused huge_sigbus_handler(int signo __rte_unused)
113 siglongjmp(huge_jmpenv, 1);
116 /* Put setjmp into a wrap method to avoid compiling error. Any non-volatile,
117 * non-static local variable in the stack frame calling sigsetjmp might be
118 * clobbered by a call to longjmp.
120 static int __rte_unused huge_wrap_sigsetjmp(void)
122 return sigsetjmp(huge_jmpenv, 1);
125 static struct sigaction huge_action_old;
126 static int huge_need_recover;
128 static void __rte_unused
129 huge_register_sigbus(void)
132 struct sigaction action;
135 sigaddset(&mask, SIGBUS);
137 action.sa_mask = mask;
138 action.sa_handler = huge_sigbus_handler;
140 huge_need_recover = !sigaction(SIGBUS, &action, &huge_action_old);
143 static void __rte_unused
144 huge_recover_sigbus(void)
146 if (huge_need_recover) {
147 sigaction(SIGBUS, &huge_action_old, NULL);
148 huge_need_recover = 0;
152 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
157 /* Check if kernel supports NUMA. */
158 if (numa_available() != 0) {
159 RTE_LOG(DEBUG, EAL, "NUMA is not supported.\n");
166 prepare_numa(int *oldpolicy, struct bitmask *oldmask, int socket_id)
168 RTE_LOG(DEBUG, EAL, "Trying to obtain current memory policy.\n");
169 if (get_mempolicy(oldpolicy, oldmask->maskp,
170 oldmask->size + 1, 0, 0) < 0) {
172 "Failed to get current mempolicy: %s. "
173 "Assuming MPOL_DEFAULT.\n", strerror(errno));
174 oldpolicy = MPOL_DEFAULT;
177 "Setting policy MPOL_PREFERRED for socket %d\n",
179 numa_set_preferred(socket_id);
183 restore_numa(int *oldpolicy, struct bitmask *oldmask)
186 "Restoring previous memory policy: %d\n", *oldpolicy);
187 if (*oldpolicy == MPOL_DEFAULT) {
188 numa_set_localalloc();
189 } else if (set_mempolicy(*oldpolicy, oldmask->maskp,
190 oldmask->size + 1) < 0) {
191 RTE_LOG(ERR, EAL, "Failed to restore mempolicy: %s\n",
193 numa_set_localalloc();
195 numa_free_cpumask(oldmask);
200 * uses fstat to report the size of a file on disk
203 get_file_size(int fd)
206 if (fstat(fd, &st) < 0)
211 static inline uint32_t
214 return (uint32_t)__builtin_ctzll(v);
217 static inline uint32_t
222 v = rte_align64pow2(v);
227 pagesz_flags(uint64_t page_sz)
229 /* as per mmap() manpage, all page sizes are log2 of page size
230 * shifted by MAP_HUGE_SHIFT
232 int log2 = log2_u64(page_sz);
233 return log2 << RTE_MAP_HUGE_SHIFT;
236 /* returns 1 on successful lock, 0 on unsuccessful lock, -1 on error */
237 static int lock(int fd, int type)
241 /* flock may be interrupted */
243 ret = flock(fd, type | LOCK_NB);
244 } while (ret && errno == EINTR);
246 if (ret && errno == EWOULDBLOCK) {
250 RTE_LOG(ERR, EAL, "%s(): error calling flock(): %s\n",
251 __func__, strerror(errno));
254 /* lock was successful */
258 static int get_segment_lock_fd(int list_idx, int seg_idx)
260 char path[PATH_MAX] = {0};
263 if (list_idx < 0 || list_idx >= (int)RTE_DIM(fd_list))
265 if (seg_idx < 0 || seg_idx >= fd_list[list_idx].len)
268 fd = fd_list[list_idx].fds[seg_idx];
269 /* does this lock already exist? */
273 eal_get_hugefile_lock_path(path, sizeof(path),
274 list_idx * RTE_MAX_MEMSEG_PER_LIST + seg_idx);
276 fd = open(path, O_CREAT | O_RDWR, 0660);
278 RTE_LOG(ERR, EAL, "%s(): error creating lockfile '%s': %s\n",
279 __func__, path, strerror(errno));
282 /* take out a read lock */
283 if (lock(fd, LOCK_SH) != 1) {
284 RTE_LOG(ERR, EAL, "%s(): failed to take out a readlock on '%s': %s\n",
285 __func__, path, strerror(errno));
289 /* store it for future reference */
290 fd_list[list_idx].fds[seg_idx] = fd;
291 fd_list[list_idx].count++;
295 static int unlock_segment(int list_idx, int seg_idx)
299 if (list_idx < 0 || list_idx >= (int)RTE_DIM(fd_list))
301 if (seg_idx < 0 || seg_idx >= fd_list[list_idx].len)
304 fd = fd_list[list_idx].fds[seg_idx];
306 /* upgrade lock to exclusive to see if we can remove the lockfile */
307 ret = lock(fd, LOCK_EX);
309 /* we've succeeded in taking exclusive lock, this lockfile may
312 char path[PATH_MAX] = {0};
313 eal_get_hugefile_lock_path(path, sizeof(path),
314 list_idx * RTE_MAX_MEMSEG_PER_LIST + seg_idx);
316 RTE_LOG(ERR, EAL, "%s(): error removing lockfile '%s': %s\n",
317 __func__, path, strerror(errno));
320 /* we don't want to leak the fd, so even if we fail to lock, close fd
321 * and remove it from list anyway.
324 fd_list[list_idx].fds[seg_idx] = -1;
325 fd_list[list_idx].count--;
333 get_seg_memfd(struct hugepage_info *hi __rte_unused,
334 unsigned int list_idx __rte_unused,
335 unsigned int seg_idx __rte_unused)
337 #ifdef MEMFD_SUPPORTED
339 char segname[250]; /* as per manpage, limit is 249 bytes plus null */
341 if (internal_config.single_file_segments) {
342 fd = fd_list[list_idx].memseg_list_fd;
345 int flags = MFD_HUGETLB | pagesz_flags(hi->hugepage_sz);
347 snprintf(segname, sizeof(segname), "seg_%i", list_idx);
348 fd = memfd_create(segname, flags);
350 RTE_LOG(DEBUG, EAL, "%s(): memfd create failed: %s\n",
351 __func__, strerror(errno));
354 fd_list[list_idx].memseg_list_fd = fd;
357 fd = fd_list[list_idx].fds[seg_idx];
360 int flags = MFD_HUGETLB | pagesz_flags(hi->hugepage_sz);
362 snprintf(segname, sizeof(segname), "seg_%i-%i",
364 fd = memfd_create(segname, flags);
366 RTE_LOG(DEBUG, EAL, "%s(): memfd create failed: %s\n",
367 __func__, strerror(errno));
370 fd_list[list_idx].fds[seg_idx] = fd;
379 get_seg_fd(char *path, int buflen, struct hugepage_info *hi,
380 unsigned int list_idx, unsigned int seg_idx)
384 /* for in-memory mode, we only make it here when we're sure we support
385 * memfd, and this is a special case.
387 if (internal_config.in_memory)
388 return get_seg_memfd(hi, list_idx, seg_idx);
390 if (internal_config.single_file_segments) {
391 /* create a hugepage file path */
392 eal_get_hugefile_path(path, buflen, hi->hugedir, list_idx);
394 fd = fd_list[list_idx].memseg_list_fd;
397 fd = open(path, O_CREAT | O_RDWR, 0600);
399 RTE_LOG(ERR, EAL, "%s(): open failed: %s\n",
400 __func__, strerror(errno));
403 /* take out a read lock and keep it indefinitely */
404 if (lock(fd, LOCK_SH) < 0) {
405 RTE_LOG(ERR, EAL, "%s(): lock failed: %s\n",
406 __func__, strerror(errno));
410 fd_list[list_idx].memseg_list_fd = fd;
413 /* create a hugepage file path */
414 eal_get_hugefile_path(path, buflen, hi->hugedir,
415 list_idx * RTE_MAX_MEMSEG_PER_LIST + seg_idx);
417 fd = fd_list[list_idx].fds[seg_idx];
420 fd = open(path, O_CREAT | O_RDWR, 0600);
422 RTE_LOG(DEBUG, EAL, "%s(): open failed: %s\n",
423 __func__, strerror(errno));
426 /* take out a read lock */
427 if (lock(fd, LOCK_SH) < 0) {
428 RTE_LOG(ERR, EAL, "%s(): lock failed: %s\n",
429 __func__, strerror(errno));
433 fd_list[list_idx].fds[seg_idx] = fd;
440 resize_hugefile(int fd, char *path, int list_idx, int seg_idx,
441 uint64_t fa_offset, uint64_t page_sz, bool grow)
445 /* in-memory mode is a special case, because we don't need to perform
446 * any locking, and we can be sure that fallocate() is supported.
448 if (internal_config.in_memory) {
449 int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |
453 /* grow or shrink the file */
454 ret = fallocate(fd, flags, fa_offset, page_sz);
457 RTE_LOG(DEBUG, EAL, "%s(): fallocate() failed: %s\n",
462 /* increase/decrease total segment count */
463 fd_list[list_idx].count += (grow ? 1 : -1);
464 if (!grow && fd_list[list_idx].count == 0) {
465 close(fd_list[list_idx].memseg_list_fd);
466 fd_list[list_idx].memseg_list_fd = -1;
472 if (fallocate_supported == 0) {
473 /* we cannot deallocate memory if fallocate() is not
474 * supported, and hugepage file is already locked at
475 * creation, so no further synchronization needed.
479 RTE_LOG(DEBUG, EAL, "%s(): fallocate not supported, not freeing page back to the system\n",
483 uint64_t new_size = fa_offset + page_sz;
484 uint64_t cur_size = get_file_size(fd);
486 /* fallocate isn't supported, fall back to ftruncate */
487 if (new_size > cur_size &&
488 ftruncate(fd, new_size) < 0) {
489 RTE_LOG(DEBUG, EAL, "%s(): ftruncate() failed: %s\n",
490 __func__, strerror(errno));
494 int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |
498 /* if fallocate() is supported, we need to take out a
499 * read lock on allocate (to prevent other processes
500 * from deallocating this page), and take out a write
501 * lock on deallocate (to ensure nobody else is using
504 * read locks on page itself are already taken out at
505 * file creation, in get_seg_fd().
507 * we cannot rely on simple use of flock() call, because
508 * we need to be able to lock a section of the file,
509 * and we cannot use fcntl() locks, because of numerous
510 * problems with their semantics, so we will use
511 * deterministically named lock files for each section
514 * if we're shrinking the file, we want to upgrade our
515 * lock from shared to exclusive.
517 * lock_fd is an fd for a lockfile, not for the segment
520 lock_fd = get_segment_lock_fd(list_idx, seg_idx);
523 /* we are using this lockfile to determine
524 * whether this particular page is locked, as we
525 * are in single file segments mode and thus
526 * cannot use regular flock() to get this info.
528 * we want to try and take out an exclusive lock
529 * on the lock file to determine if we're the
530 * last ones using this page, and if not, we
531 * won't be shrinking it, and will instead exit
534 ret = lock(lock_fd, LOCK_EX);
536 /* drop the lock on the lockfile, so that even
537 * if we couldn't shrink the file ourselves, we
538 * are signalling to other processes that we're
539 * no longer using this page.
541 if (unlock_segment(list_idx, seg_idx))
542 RTE_LOG(ERR, EAL, "Could not unlock segment\n");
544 /* additionally, if this was the last lock on
545 * this segment list, we can safely close the
546 * page file fd, so that one of the processes
547 * could then delete the file after shrinking.
549 if (ret < 1 && fd_list[list_idx].count == 0) {
551 fd_list[list_idx].memseg_list_fd = -1;
555 RTE_LOG(ERR, EAL, "Could not lock segment\n");
559 /* failed to lock, not an error. */
563 /* grow or shrink the file */
564 ret = fallocate(fd, flags, fa_offset, page_sz);
567 if (fallocate_supported == -1 &&
569 RTE_LOG(ERR, EAL, "%s(): fallocate() not supported, hugepage deallocation will be disabled\n",
572 fallocate_supported = 0;
574 RTE_LOG(DEBUG, EAL, "%s(): fallocate() failed: %s\n",
580 fallocate_supported = 1;
582 /* we've grew/shrunk the file, and we hold an
583 * exclusive lock now. check if there are no
584 * more segments active in this segment list,
585 * and remove the file if there aren't.
587 if (fd_list[list_idx].count == 0) {
589 RTE_LOG(ERR, EAL, "%s(): unlinking '%s' failed: %s\n",
593 fd_list[list_idx].memseg_list_fd = -1;
602 alloc_seg(struct rte_memseg *ms, void *addr, int socket_id,
603 struct hugepage_info *hi, unsigned int list_idx,
604 unsigned int seg_idx)
606 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
607 int cur_socket_id = 0;
619 alloc_sz = hi->hugepage_sz;
621 /* these are checked at init, but code analyzers don't know that */
622 if (internal_config.in_memory && !anonymous_hugepages_supported) {
623 RTE_LOG(ERR, EAL, "Anonymous hugepages not supported, in-memory mode cannot allocate memory\n");
626 if (internal_config.in_memory && !memfd_create_supported &&
627 internal_config.single_file_segments) {
628 RTE_LOG(ERR, EAL, "Single-file segments are not supported without memfd support\n");
632 /* in-memory without memfd is a special case */
635 if (internal_config.in_memory && !memfd_create_supported) {
636 int pagesz_flag, flags;
638 pagesz_flag = pagesz_flags(alloc_sz);
639 flags = pagesz_flag | MAP_HUGETLB | MAP_FIXED |
640 MAP_PRIVATE | MAP_ANONYMOUS;
644 /* single-file segments codepath will never be active
645 * here because in-memory mode is incompatible with the
646 * fallback path, and it's stopped at EAL initialization
651 /* takes out a read lock on segment or segment list */
652 fd = get_seg_fd(path, sizeof(path), hi, list_idx, seg_idx);
654 RTE_LOG(ERR, EAL, "Couldn't get fd on hugepage file\n");
658 if (internal_config.single_file_segments) {
659 map_offset = seg_idx * alloc_sz;
660 ret = resize_hugefile(fd, path, list_idx, seg_idx,
661 map_offset, alloc_sz, true);
666 if (ftruncate(fd, alloc_sz) < 0) {
667 RTE_LOG(DEBUG, EAL, "%s(): ftruncate() failed: %s\n",
668 __func__, strerror(errno));
671 if (internal_config.hugepage_unlink &&
672 !internal_config.in_memory) {
674 RTE_LOG(DEBUG, EAL, "%s(): unlink() failed: %s\n",
675 __func__, strerror(errno));
680 mmap_flags = MAP_SHARED | MAP_POPULATE | MAP_FIXED;
684 * map the segment, and populate page tables, the kernel fills
685 * this segment with zeros if it's a new page.
687 va = mmap(addr, alloc_sz, PROT_READ | PROT_WRITE, mmap_flags, fd,
690 if (va == MAP_FAILED) {
691 RTE_LOG(DEBUG, EAL, "%s(): mmap() failed: %s\n", __func__,
693 /* mmap failed, but the previous region might have been
694 * unmapped anyway. try to remap it
699 RTE_LOG(DEBUG, EAL, "%s(): wrong mmap() address\n", __func__);
700 munmap(va, alloc_sz);
704 /* In linux, hugetlb limitations, like cgroup, are
705 * enforced at fault time instead of mmap(), even
706 * with the option of MAP_POPULATE. Kernel will send
707 * a SIGBUS signal. To avoid to be killed, save stack
708 * environment here, if SIGBUS happens, we can jump
711 if (huge_wrap_sigsetjmp()) {
712 RTE_LOG(DEBUG, EAL, "SIGBUS: Cannot mmap more hugepages of size %uMB\n",
713 (unsigned int)(alloc_sz >> 20));
717 /* we need to trigger a write to the page to enforce page fault and
718 * ensure that page is accessible to us, but we can't overwrite value
719 * that is already there, so read the old value, and write itback.
720 * kernel populates the page with zeroes initially.
722 *(volatile int *)addr = *(volatile int *)addr;
724 iova = rte_mem_virt2iova(addr);
725 if (iova == RTE_BAD_PHYS_ADDR) {
726 RTE_LOG(DEBUG, EAL, "%s(): can't get IOVA addr\n",
731 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
732 move_pages(getpid(), 1, &addr, NULL, &cur_socket_id, 0);
734 if (cur_socket_id != socket_id) {
736 "%s(): allocation happened on wrong socket (wanted %d, got %d)\n",
737 __func__, socket_id, cur_socket_id);
743 ms->hugepage_sz = alloc_sz;
745 ms->nchannel = rte_memory_get_nchannel();
746 ms->nrank = rte_memory_get_nrank();
748 ms->socket_id = socket_id;
753 munmap(addr, alloc_sz);
756 #ifdef RTE_ARCH_PPC_64
757 flags |= MAP_HUGETLB;
759 new_addr = eal_get_virtual_area(addr, &alloc_sz, alloc_sz, 0, flags);
760 if (new_addr != addr) {
761 if (new_addr != NULL)
762 munmap(new_addr, alloc_sz);
763 /* we're leaving a hole in our virtual address space. if
764 * somebody else maps this hole now, we could accidentally
765 * override it in the future.
767 RTE_LOG(CRIT, EAL, "Can't mmap holes in our virtual address space\n");
770 /* some codepaths will return negative fd, so exit early */
774 if (internal_config.single_file_segments) {
775 resize_hugefile(fd, path, list_idx, seg_idx, map_offset,
777 /* ignore failure, can't make it any worse */
779 /* only remove file if we can take out a write lock */
780 if (internal_config.hugepage_unlink == 0 &&
781 internal_config.in_memory == 0 &&
782 lock(fd, LOCK_EX) == 1)
785 fd_list[list_idx].fds[seg_idx] = -1;
791 free_seg(struct rte_memseg *ms, struct hugepage_info *hi,
792 unsigned int list_idx, unsigned int seg_idx)
799 /* erase page data */
800 memset(ms->addr, 0, ms->len);
802 if (mmap(ms->addr, ms->len, PROT_READ,
803 MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0) ==
805 RTE_LOG(DEBUG, EAL, "couldn't unmap page\n");
811 /* if we're using anonymous hugepages, nothing to be done */
812 if (internal_config.in_memory && !memfd_create_supported)
815 /* if we've already unlinked the page, nothing needs to be done */
816 if (!internal_config.in_memory && internal_config.hugepage_unlink)
820 memset(ms, 0, sizeof(*ms));
824 /* if we are not in single file segments mode, we're going to unmap the
825 * segment and thus drop the lock on original fd, but hugepage dir is
826 * now locked so we can take out another one without races.
828 fd = get_seg_fd(path, sizeof(path), hi, list_idx, seg_idx);
832 if (internal_config.single_file_segments) {
833 map_offset = seg_idx * ms->len;
834 if (resize_hugefile(fd, path, list_idx, seg_idx, map_offset,
839 /* if we're able to take out a write lock, we're the last one
840 * holding onto this page.
842 if (!internal_config.in_memory) {
843 ret = lock(fd, LOCK_EX);
845 /* no one else is using this page */
850 /* closing fd will drop the lock */
852 fd_list[list_idx].fds[seg_idx] = -1;
855 memset(ms, 0, sizeof(*ms));
857 return ret < 0 ? -1 : 0;
860 struct alloc_walk_param {
861 struct hugepage_info *hi;
862 struct rte_memseg **ms;
864 unsigned int segs_allocated;
870 alloc_seg_walk(const struct rte_memseg_list *msl, void *arg)
872 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
873 struct alloc_walk_param *wa = arg;
874 struct rte_memseg_list *cur_msl;
876 int cur_idx, start_idx, j, dir_fd = -1;
877 unsigned int msl_idx, need, i;
879 if (msl->page_sz != wa->page_sz)
881 if (msl->socket_id != wa->socket)
884 page_sz = (size_t)msl->page_sz;
886 msl_idx = msl - mcfg->memsegs;
887 cur_msl = &mcfg->memsegs[msl_idx];
891 /* try finding space in memseg list */
892 cur_idx = rte_fbarray_find_next_n_free(&cur_msl->memseg_arr, 0, need);
897 /* do not allow any page allocations during the time we're allocating,
898 * because file creation and locking operations are not atomic,
899 * and we might be the first or the last ones to use a particular page,
900 * so we need to ensure atomicity of every operation.
902 * during init, we already hold a write lock, so don't try to take out
905 if (wa->hi->lock_descriptor == -1 && !internal_config.in_memory) {
906 dir_fd = open(wa->hi->hugedir, O_RDONLY);
908 RTE_LOG(ERR, EAL, "%s(): Cannot open '%s': %s\n",
909 __func__, wa->hi->hugedir, strerror(errno));
912 /* blocking writelock */
913 if (flock(dir_fd, LOCK_EX)) {
914 RTE_LOG(ERR, EAL, "%s(): Cannot lock '%s': %s\n",
915 __func__, wa->hi->hugedir, strerror(errno));
921 for (i = 0; i < need; i++, cur_idx++) {
922 struct rte_memseg *cur;
925 cur = rte_fbarray_get(&cur_msl->memseg_arr, cur_idx);
926 map_addr = RTE_PTR_ADD(cur_msl->base_va,
929 if (alloc_seg(cur, map_addr, wa->socket, wa->hi,
931 RTE_LOG(DEBUG, EAL, "attempted to allocate %i segments, but only %i were allocated\n",
934 /* if exact number wasn't requested, stop */
939 for (j = start_idx; j < cur_idx; j++) {
940 struct rte_memseg *tmp;
941 struct rte_fbarray *arr =
942 &cur_msl->memseg_arr;
944 tmp = rte_fbarray_get(arr, j);
945 rte_fbarray_set_free(arr, j);
947 /* free_seg may attempt to create a file, which
950 if (free_seg(tmp, wa->hi, msl_idx, j))
951 RTE_LOG(DEBUG, EAL, "Cannot free page\n");
955 memset(wa->ms, 0, sizeof(*wa->ms) * wa->n_segs);
964 rte_fbarray_set_used(&cur_msl->memseg_arr, cur_idx);
967 wa->segs_allocated = i;
975 struct free_walk_param {
976 struct hugepage_info *hi;
977 struct rte_memseg *ms;
980 free_seg_walk(const struct rte_memseg_list *msl, void *arg)
982 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
983 struct rte_memseg_list *found_msl;
984 struct free_walk_param *wa = arg;
985 uintptr_t start_addr, end_addr;
986 int msl_idx, seg_idx, ret, dir_fd = -1;
988 start_addr = (uintptr_t) msl->base_va;
989 end_addr = start_addr + msl->memseg_arr.len * (size_t)msl->page_sz;
991 if ((uintptr_t)wa->ms->addr < start_addr ||
992 (uintptr_t)wa->ms->addr >= end_addr)
995 msl_idx = msl - mcfg->memsegs;
996 seg_idx = RTE_PTR_DIFF(wa->ms->addr, start_addr) / msl->page_sz;
999 found_msl = &mcfg->memsegs[msl_idx];
1001 /* do not allow any page allocations during the time we're freeing,
1002 * because file creation and locking operations are not atomic,
1003 * and we might be the first or the last ones to use a particular page,
1004 * so we need to ensure atomicity of every operation.
1006 * during init, we already hold a write lock, so don't try to take out
1009 if (wa->hi->lock_descriptor == -1 && !internal_config.in_memory) {
1010 dir_fd = open(wa->hi->hugedir, O_RDONLY);
1012 RTE_LOG(ERR, EAL, "%s(): Cannot open '%s': %s\n",
1013 __func__, wa->hi->hugedir, strerror(errno));
1016 /* blocking writelock */
1017 if (flock(dir_fd, LOCK_EX)) {
1018 RTE_LOG(ERR, EAL, "%s(): Cannot lock '%s': %s\n",
1019 __func__, wa->hi->hugedir, strerror(errno));
1025 found_msl->version++;
1027 rte_fbarray_set_free(&found_msl->memseg_arr, seg_idx);
1029 ret = free_seg(wa->ms, wa->hi, msl_idx, seg_idx);
1041 eal_memalloc_alloc_seg_bulk(struct rte_memseg **ms, int n_segs, size_t page_sz,
1042 int socket, bool exact)
1045 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
1046 bool have_numa = false;
1048 struct bitmask *oldmask;
1050 struct alloc_walk_param wa;
1051 struct hugepage_info *hi = NULL;
1053 memset(&wa, 0, sizeof(wa));
1055 /* dynamic allocation not supported in legacy mode */
1056 if (internal_config.legacy_mem)
1059 for (i = 0; i < (int) RTE_DIM(internal_config.hugepage_info); i++) {
1061 internal_config.hugepage_info[i].hugepage_sz) {
1062 hi = &internal_config.hugepage_info[i];
1067 RTE_LOG(ERR, EAL, "%s(): can't find relevant hugepage_info entry\n",
1072 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
1074 oldmask = numa_allocate_nodemask();
1075 prepare_numa(&oldpolicy, oldmask, socket);
1084 wa.page_sz = page_sz;
1086 wa.segs_allocated = 0;
1088 /* memalloc is locked, so it's safe to use thread-unsafe version */
1089 ret = rte_memseg_list_walk_thread_unsafe(alloc_seg_walk, &wa);
1091 RTE_LOG(ERR, EAL, "%s(): couldn't find suitable memseg_list\n",
1094 } else if (ret > 0) {
1095 ret = (int)wa.segs_allocated;
1098 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
1100 restore_numa(&oldpolicy, oldmask);
1106 eal_memalloc_alloc_seg(size_t page_sz, int socket)
1108 struct rte_memseg *ms;
1109 if (eal_memalloc_alloc_seg_bulk(&ms, 1, page_sz, socket, true) < 0)
1111 /* return pointer to newly allocated memseg */
1116 eal_memalloc_free_seg_bulk(struct rte_memseg **ms, int n_segs)
1120 /* dynamic free not supported in legacy mode */
1121 if (internal_config.legacy_mem)
1124 for (seg = 0; seg < n_segs; seg++) {
1125 struct rte_memseg *cur = ms[seg];
1126 struct hugepage_info *hi = NULL;
1127 struct free_walk_param wa;
1130 /* if this page is marked as unfreeable, fail */
1131 if (cur->flags & RTE_MEMSEG_FLAG_DO_NOT_FREE) {
1132 RTE_LOG(DEBUG, EAL, "Page is not allowed to be freed\n");
1137 memset(&wa, 0, sizeof(wa));
1139 for (i = 0; i < (int)RTE_DIM(internal_config.hugepage_info);
1141 hi = &internal_config.hugepage_info[i];
1142 if (cur->hugepage_sz == hi->hugepage_sz)
1145 if (i == (int)RTE_DIM(internal_config.hugepage_info)) {
1146 RTE_LOG(ERR, EAL, "Can't find relevant hugepage_info entry\n");
1154 /* memalloc is locked, so it's safe to use thread-unsafe version
1156 walk_res = rte_memseg_list_walk_thread_unsafe(free_seg_walk,
1161 RTE_LOG(ERR, EAL, "Couldn't find memseg list\n");
1168 eal_memalloc_free_seg(struct rte_memseg *ms)
1170 /* dynamic free not supported in legacy mode */
1171 if (internal_config.legacy_mem)
1174 return eal_memalloc_free_seg_bulk(&ms, 1);
1178 sync_chunk(struct rte_memseg_list *primary_msl,
1179 struct rte_memseg_list *local_msl, struct hugepage_info *hi,
1180 unsigned int msl_idx, bool used, int start, int end)
1182 struct rte_fbarray *l_arr, *p_arr;
1183 int i, ret, chunk_len, diff_len;
1185 l_arr = &local_msl->memseg_arr;
1186 p_arr = &primary_msl->memseg_arr;
1188 /* we need to aggregate allocations/deallocations into bigger chunks,
1189 * as we don't want to spam the user with per-page callbacks.
1191 * to avoid any potential issues, we also want to trigger
1192 * deallocation callbacks *before* we actually deallocate
1193 * memory, so that the user application could wrap up its use
1194 * before it goes away.
1197 chunk_len = end - start;
1199 /* find how many contiguous pages we can map/unmap for this chunk */
1201 rte_fbarray_find_contig_free(l_arr, start) :
1202 rte_fbarray_find_contig_used(l_arr, start);
1204 /* has to be at least one page */
1208 diff_len = RTE_MIN(chunk_len, diff_len);
1210 /* if we are freeing memory, notify the application */
1212 struct rte_memseg *ms;
1214 size_t len, page_sz;
1216 ms = rte_fbarray_get(l_arr, start);
1217 start_va = ms->addr;
1218 page_sz = (size_t)primary_msl->page_sz;
1219 len = page_sz * diff_len;
1221 eal_memalloc_mem_event_notify(RTE_MEM_EVENT_FREE,
1225 for (i = 0; i < diff_len; i++) {
1226 struct rte_memseg *p_ms, *l_ms;
1227 int seg_idx = start + i;
1229 l_ms = rte_fbarray_get(l_arr, seg_idx);
1230 p_ms = rte_fbarray_get(p_arr, seg_idx);
1232 if (l_ms == NULL || p_ms == NULL)
1236 ret = alloc_seg(l_ms, p_ms->addr,
1237 p_ms->socket_id, hi,
1241 rte_fbarray_set_used(l_arr, seg_idx);
1243 ret = free_seg(l_ms, hi, msl_idx, seg_idx);
1244 rte_fbarray_set_free(l_arr, seg_idx);
1250 /* if we just allocated memory, notify the application */
1252 struct rte_memseg *ms;
1254 size_t len, page_sz;
1256 ms = rte_fbarray_get(l_arr, start);
1257 start_va = ms->addr;
1258 page_sz = (size_t)primary_msl->page_sz;
1259 len = page_sz * diff_len;
1261 eal_memalloc_mem_event_notify(RTE_MEM_EVENT_ALLOC,
1265 /* calculate how much we can advance until next chunk */
1267 rte_fbarray_find_contig_used(l_arr, start) :
1268 rte_fbarray_find_contig_free(l_arr, start);
1269 ret = RTE_MIN(chunk_len, diff_len);
1275 sync_status(struct rte_memseg_list *primary_msl,
1276 struct rte_memseg_list *local_msl, struct hugepage_info *hi,
1277 unsigned int msl_idx, bool used)
1279 struct rte_fbarray *l_arr, *p_arr;
1280 int p_idx, l_chunk_len, p_chunk_len, ret;
1283 /* this is a little bit tricky, but the basic idea is - walk both lists
1284 * and spot any places where there are discrepancies. walking both lists
1285 * and noting discrepancies in a single go is a hard problem, so we do
1286 * it in two passes - first we spot any places where allocated segments
1287 * mismatch (i.e. ensure that everything that's allocated in the primary
1288 * is also allocated in the secondary), and then we do it by looking at
1289 * free segments instead.
1291 * we also need to aggregate changes into chunks, as we have to call
1292 * callbacks per allocation, not per page.
1294 l_arr = &local_msl->memseg_arr;
1295 p_arr = &primary_msl->memseg_arr;
1298 p_idx = rte_fbarray_find_next_used(p_arr, 0);
1300 p_idx = rte_fbarray_find_next_free(p_arr, 0);
1302 while (p_idx >= 0) {
1303 int next_chunk_search_idx;
1306 p_chunk_len = rte_fbarray_find_contig_used(p_arr,
1308 l_chunk_len = rte_fbarray_find_contig_used(l_arr,
1311 p_chunk_len = rte_fbarray_find_contig_free(p_arr,
1313 l_chunk_len = rte_fbarray_find_contig_free(l_arr,
1316 /* best case scenario - no differences (or bigger, which will be
1317 * fixed during next iteration), look for next chunk
1319 if (l_chunk_len >= p_chunk_len) {
1320 next_chunk_search_idx = p_idx + p_chunk_len;
1324 /* if both chunks start at the same point, skip parts we know
1325 * are identical, and sync the rest. each call to sync_chunk
1326 * will only sync contiguous segments, so we need to call this
1327 * until we are sure there are no more differences in this
1330 start = p_idx + l_chunk_len;
1331 end = p_idx + p_chunk_len;
1333 ret = sync_chunk(primary_msl, local_msl, hi, msl_idx,
1336 } while (start < end && ret >= 0);
1337 /* if ret is negative, something went wrong */
1341 next_chunk_search_idx = p_idx + p_chunk_len;
1343 /* skip to end of this chunk */
1345 p_idx = rte_fbarray_find_next_used(p_arr,
1346 next_chunk_search_idx);
1348 p_idx = rte_fbarray_find_next_free(p_arr,
1349 next_chunk_search_idx);
1356 sync_existing(struct rte_memseg_list *primary_msl,
1357 struct rte_memseg_list *local_msl, struct hugepage_info *hi,
1358 unsigned int msl_idx)
1362 /* do not allow any page allocations during the time we're allocating,
1363 * because file creation and locking operations are not atomic,
1364 * and we might be the first or the last ones to use a particular page,
1365 * so we need to ensure atomicity of every operation.
1367 dir_fd = open(hi->hugedir, O_RDONLY);
1369 RTE_LOG(ERR, EAL, "%s(): Cannot open '%s': %s\n", __func__,
1370 hi->hugedir, strerror(errno));
1373 /* blocking writelock */
1374 if (flock(dir_fd, LOCK_EX)) {
1375 RTE_LOG(ERR, EAL, "%s(): Cannot lock '%s': %s\n", __func__,
1376 hi->hugedir, strerror(errno));
1381 /* ensure all allocated space is the same in both lists */
1382 ret = sync_status(primary_msl, local_msl, hi, msl_idx, true);
1386 /* ensure all unallocated space is the same in both lists */
1387 ret = sync_status(primary_msl, local_msl, hi, msl_idx, false);
1391 /* update version number */
1392 local_msl->version = primary_msl->version;
1403 sync_walk(const struct rte_memseg_list *msl, void *arg __rte_unused)
1405 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1406 struct rte_memseg_list *primary_msl, *local_msl;
1407 struct hugepage_info *hi = NULL;
1411 msl_idx = msl - mcfg->memsegs;
1412 primary_msl = &mcfg->memsegs[msl_idx];
1413 local_msl = &local_memsegs[msl_idx];
1415 for (i = 0; i < RTE_DIM(internal_config.hugepage_info); i++) {
1417 internal_config.hugepage_info[i].hugepage_sz;
1418 uint64_t msl_sz = primary_msl->page_sz;
1419 if (msl_sz == cur_sz) {
1420 hi = &internal_config.hugepage_info[i];
1425 RTE_LOG(ERR, EAL, "Can't find relevant hugepage_info entry\n");
1429 /* if versions don't match, synchronize everything */
1430 if (local_msl->version != primary_msl->version &&
1431 sync_existing(primary_msl, local_msl, hi, msl_idx))
1438 eal_memalloc_sync_with_primary(void)
1440 /* nothing to be done in primary */
1441 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
1444 /* memalloc is locked, so it's safe to call thread-unsafe version */
1445 if (rte_memseg_list_walk_thread_unsafe(sync_walk, NULL))
1451 secondary_msl_create_walk(const struct rte_memseg_list *msl,
1452 void *arg __rte_unused)
1454 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1455 struct rte_memseg_list *primary_msl, *local_msl;
1456 char name[PATH_MAX];
1459 msl_idx = msl - mcfg->memsegs;
1460 primary_msl = &mcfg->memsegs[msl_idx];
1461 local_msl = &local_memsegs[msl_idx];
1463 /* create distinct fbarrays for each secondary */
1464 snprintf(name, RTE_FBARRAY_NAME_LEN, "%s_%i",
1465 primary_msl->memseg_arr.name, getpid());
1467 ret = rte_fbarray_init(&local_msl->memseg_arr, name,
1468 primary_msl->memseg_arr.len,
1469 primary_msl->memseg_arr.elt_sz);
1471 RTE_LOG(ERR, EAL, "Cannot initialize local memory map\n");
1474 local_msl->base_va = primary_msl->base_va;
1480 alloc_list(int list_idx, int len)
1485 /* ensure we have space to store fd per each possible segment */
1486 data = malloc(sizeof(int) * len);
1488 RTE_LOG(ERR, EAL, "Unable to allocate space for file descriptors\n");
1491 /* set all fd's as invalid */
1492 for (i = 0; i < len; i++)
1495 fd_list[list_idx].fds = data;
1496 fd_list[list_idx].len = len;
1497 fd_list[list_idx].count = 0;
1498 fd_list[list_idx].memseg_list_fd = -1;
1504 fd_list_create_walk(const struct rte_memseg_list *msl,
1505 void *arg __rte_unused)
1507 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1511 msl_idx = msl - mcfg->memsegs;
1512 len = msl->memseg_arr.len;
1514 return alloc_list(msl_idx, len);
1518 eal_memalloc_set_seg_fd(int list_idx, int seg_idx, int fd)
1520 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1522 /* if list is not allocated, allocate it */
1523 if (fd_list[list_idx].len == 0) {
1524 int len = mcfg->memsegs[list_idx].memseg_arr.len;
1526 if (alloc_list(list_idx, len) < 0)
1529 fd_list[list_idx].fds[seg_idx] = fd;
1535 eal_memalloc_get_seg_fd(int list_idx, int seg_idx)
1538 if (internal_config.single_file_segments) {
1539 fd = fd_list[list_idx].memseg_list_fd;
1540 } else if (fd_list[list_idx].len == 0) {
1541 /* list not initialized */
1544 fd = fd_list[list_idx].fds[seg_idx];
1552 test_memfd_create(void)
1554 #ifdef MEMFD_SUPPORTED
1556 for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
1557 uint64_t pagesz = internal_config.hugepage_info[i].hugepage_sz;
1558 int pagesz_flag = pagesz_flags(pagesz);
1561 flags = pagesz_flag | MFD_HUGETLB;
1562 int fd = memfd_create("test", flags);
1564 /* we failed - let memalloc know this isn't working */
1565 if (errno == EINVAL) {
1566 memfd_create_supported = 0;
1567 return 0; /* not supported */
1570 /* we got other error - something's wrong */
1571 return -1; /* error */
1574 return 1; /* supported */
1577 return 0; /* not supported */
1581 eal_memalloc_get_seg_fd_offset(int list_idx, int seg_idx, size_t *offset)
1583 struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1585 /* fd_list not initialized? */
1586 if (fd_list[list_idx].len == 0)
1588 if (internal_config.single_file_segments) {
1589 size_t pgsz = mcfg->memsegs[list_idx].page_sz;
1591 /* segment not active? */
1592 if (fd_list[list_idx].memseg_list_fd < 0)
1594 *offset = pgsz * seg_idx;
1596 /* segment not active? */
1597 if (fd_list[list_idx].fds[seg_idx] < 0)
1605 eal_memalloc_init(void)
1607 if (rte_eal_process_type() == RTE_PROC_SECONDARY)
1608 if (rte_memseg_list_walk(secondary_msl_create_walk, NULL) < 0)
1610 if (rte_eal_process_type() == RTE_PROC_PRIMARY &&
1611 internal_config.in_memory) {
1612 int mfd_res = test_memfd_create();
1615 RTE_LOG(ERR, EAL, "Unable to check if memfd is supported\n");
1619 RTE_LOG(DEBUG, EAL, "Using memfd for anonymous memory\n");
1621 RTE_LOG(INFO, EAL, "Using memfd is not supported, falling back to anonymous hugepages\n");
1623 /* we only support single-file segments mode with in-memory mode
1624 * if we support hugetlbfs with memfd_create. this code will
1627 if (internal_config.single_file_segments &&
1629 RTE_LOG(ERR, EAL, "Single-file segments mode cannot be used without memfd support\n");
1632 /* this cannot ever happen but better safe than sorry */
1633 if (!anonymous_hugepages_supported) {
1634 RTE_LOG(ERR, EAL, "Using anonymous memory is not supported\n");
1639 /* initialize all of the fd lists */
1640 if (rte_memseg_list_walk(fd_list_create_walk, NULL))