eal: support --no-shconf in hugepage data file
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_memory.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation.
3  * Copyright(c) 2013 6WIND S.A.
4  */
5
6 #define _FILE_OFFSET_BITS 64
7 #include <errno.h>
8 #include <stdarg.h>
9 #include <stdbool.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <stdint.h>
13 #include <inttypes.h>
14 #include <string.h>
15 #include <sys/mman.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <sys/queue.h>
19 #include <sys/file.h>
20 #include <unistd.h>
21 #include <limits.h>
22 #include <sys/ioctl.h>
23 #include <sys/time.h>
24 #include <signal.h>
25 #include <setjmp.h>
26 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
27 #include <numa.h>
28 #include <numaif.h>
29 #endif
30
31 #include <rte_errno.h>
32 #include <rte_log.h>
33 #include <rte_memory.h>
34 #include <rte_launch.h>
35 #include <rte_eal.h>
36 #include <rte_eal_memconfig.h>
37 #include <rte_per_lcore.h>
38 #include <rte_lcore.h>
39 #include <rte_common.h>
40 #include <rte_string_fns.h>
41
42 #include "eal_private.h"
43 #include "eal_memalloc.h"
44 #include "eal_internal_cfg.h"
45 #include "eal_filesystem.h"
46 #include "eal_hugepages.h"
47
48 #define PFN_MASK_SIZE   8
49
50 /**
51  * @file
52  * Huge page mapping under linux
53  *
54  * To reserve a big contiguous amount of memory, we use the hugepage
55  * feature of linux. For that, we need to have hugetlbfs mounted. This
56  * code will create many files in this directory (one per page) and
57  * map them in virtual memory. For each page, we will retrieve its
58  * physical address and remap it in order to have a virtual contiguous
59  * zone as well as a physical contiguous zone.
60  */
61
62 static bool phys_addrs_available = true;
63
64 #define RANDOMIZE_VA_SPACE_FILE "/proc/sys/kernel/randomize_va_space"
65
66 static void
67 test_phys_addrs_available(void)
68 {
69         uint64_t tmp = 0;
70         phys_addr_t physaddr;
71
72         if (!rte_eal_has_hugepages()) {
73                 RTE_LOG(ERR, EAL,
74                         "Started without hugepages support, physical addresses not available\n");
75                 phys_addrs_available = false;
76                 return;
77         }
78
79         physaddr = rte_mem_virt2phy(&tmp);
80         if (physaddr == RTE_BAD_PHYS_ADDR) {
81                 if (rte_eal_iova_mode() == RTE_IOVA_PA)
82                         RTE_LOG(ERR, EAL,
83                                 "Cannot obtain physical addresses: %s. "
84                                 "Only vfio will function.\n",
85                                 strerror(errno));
86                 phys_addrs_available = false;
87         }
88 }
89
90 /*
91  * Get physical address of any mapped virtual address in the current process.
92  */
93 phys_addr_t
94 rte_mem_virt2phy(const void *virtaddr)
95 {
96         int fd, retval;
97         uint64_t page, physaddr;
98         unsigned long virt_pfn;
99         int page_size;
100         off_t offset;
101
102         /* Cannot parse /proc/self/pagemap, no need to log errors everywhere */
103         if (!phys_addrs_available)
104                 return RTE_BAD_IOVA;
105
106         /* standard page size */
107         page_size = getpagesize();
108
109         fd = open("/proc/self/pagemap", O_RDONLY);
110         if (fd < 0) {
111                 RTE_LOG(ERR, EAL, "%s(): cannot open /proc/self/pagemap: %s\n",
112                         __func__, strerror(errno));
113                 return RTE_BAD_IOVA;
114         }
115
116         virt_pfn = (unsigned long)virtaddr / page_size;
117         offset = sizeof(uint64_t) * virt_pfn;
118         if (lseek(fd, offset, SEEK_SET) == (off_t) -1) {
119                 RTE_LOG(ERR, EAL, "%s(): seek error in /proc/self/pagemap: %s\n",
120                                 __func__, strerror(errno));
121                 close(fd);
122                 return RTE_BAD_IOVA;
123         }
124
125         retval = read(fd, &page, PFN_MASK_SIZE);
126         close(fd);
127         if (retval < 0) {
128                 RTE_LOG(ERR, EAL, "%s(): cannot read /proc/self/pagemap: %s\n",
129                                 __func__, strerror(errno));
130                 return RTE_BAD_IOVA;
131         } else if (retval != PFN_MASK_SIZE) {
132                 RTE_LOG(ERR, EAL, "%s(): read %d bytes from /proc/self/pagemap "
133                                 "but expected %d:\n",
134                                 __func__, retval, PFN_MASK_SIZE);
135                 return RTE_BAD_IOVA;
136         }
137
138         /*
139          * the pfn (page frame number) are bits 0-54 (see
140          * pagemap.txt in linux Documentation)
141          */
142         if ((page & 0x7fffffffffffffULL) == 0)
143                 return RTE_BAD_IOVA;
144
145         physaddr = ((page & 0x7fffffffffffffULL) * page_size)
146                 + ((unsigned long)virtaddr % page_size);
147
148         return physaddr;
149 }
150
151 rte_iova_t
152 rte_mem_virt2iova(const void *virtaddr)
153 {
154         if (rte_eal_iova_mode() == RTE_IOVA_VA)
155                 return (uintptr_t)virtaddr;
156         return rte_mem_virt2phy(virtaddr);
157 }
158
159 /*
160  * For each hugepage in hugepg_tbl, fill the physaddr value. We find
161  * it by browsing the /proc/self/pagemap special file.
162  */
163 static int
164 find_physaddrs(struct hugepage_file *hugepg_tbl, struct hugepage_info *hpi)
165 {
166         unsigned int i;
167         phys_addr_t addr;
168
169         for (i = 0; i < hpi->num_pages[0]; i++) {
170                 addr = rte_mem_virt2phy(hugepg_tbl[i].orig_va);
171                 if (addr == RTE_BAD_PHYS_ADDR)
172                         return -1;
173                 hugepg_tbl[i].physaddr = addr;
174         }
175         return 0;
176 }
177
178 /*
179  * For each hugepage in hugepg_tbl, fill the physaddr value sequentially.
180  */
181 static int
182 set_physaddrs(struct hugepage_file *hugepg_tbl, struct hugepage_info *hpi)
183 {
184         unsigned int i;
185         static phys_addr_t addr;
186
187         for (i = 0; i < hpi->num_pages[0]; i++) {
188                 hugepg_tbl[i].physaddr = addr;
189                 addr += hugepg_tbl[i].size;
190         }
191         return 0;
192 }
193
194 /*
195  * Check whether address-space layout randomization is enabled in
196  * the kernel. This is important for multi-process as it can prevent
197  * two processes mapping data to the same virtual address
198  * Returns:
199  *    0 - address space randomization disabled
200  *    1/2 - address space randomization enabled
201  *    negative error code on error
202  */
203 static int
204 aslr_enabled(void)
205 {
206         char c;
207         int retval, fd = open(RANDOMIZE_VA_SPACE_FILE, O_RDONLY);
208         if (fd < 0)
209                 return -errno;
210         retval = read(fd, &c, 1);
211         close(fd);
212         if (retval < 0)
213                 return -errno;
214         if (retval == 0)
215                 return -EIO;
216         switch (c) {
217                 case '0' : return 0;
218                 case '1' : return 1;
219                 case '2' : return 2;
220                 default: return -EINVAL;
221         }
222 }
223
224 static sigjmp_buf huge_jmpenv;
225
226 static void huge_sigbus_handler(int signo __rte_unused)
227 {
228         siglongjmp(huge_jmpenv, 1);
229 }
230
231 /* Put setjmp into a wrap method to avoid compiling error. Any non-volatile,
232  * non-static local variable in the stack frame calling sigsetjmp might be
233  * clobbered by a call to longjmp.
234  */
235 static int huge_wrap_sigsetjmp(void)
236 {
237         return sigsetjmp(huge_jmpenv, 1);
238 }
239
240 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
241 /* Callback for numa library. */
242 void numa_error(char *where)
243 {
244         RTE_LOG(ERR, EAL, "%s failed: %s\n", where, strerror(errno));
245 }
246 #endif
247
248 /*
249  * Mmap all hugepages of hugepage table: it first open a file in
250  * hugetlbfs, then mmap() hugepage_sz data in it. If orig is set, the
251  * virtual address is stored in hugepg_tbl[i].orig_va, else it is stored
252  * in hugepg_tbl[i].final_va. The second mapping (when orig is 0) tries to
253  * map contiguous physical blocks in contiguous virtual blocks.
254  */
255 static unsigned
256 map_all_hugepages(struct hugepage_file *hugepg_tbl, struct hugepage_info *hpi,
257                   uint64_t *essential_memory __rte_unused)
258 {
259         int fd;
260         unsigned i;
261         void *virtaddr;
262 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
263         int node_id = -1;
264         int essential_prev = 0;
265         int oldpolicy;
266         struct bitmask *oldmask = numa_allocate_nodemask();
267         bool have_numa = true;
268         unsigned long maxnode = 0;
269
270         /* Check if kernel supports NUMA. */
271         if (numa_available() != 0) {
272                 RTE_LOG(DEBUG, EAL, "NUMA is not supported.\n");
273                 have_numa = false;
274         }
275
276         if (have_numa) {
277                 RTE_LOG(DEBUG, EAL, "Trying to obtain current memory policy.\n");
278                 if (get_mempolicy(&oldpolicy, oldmask->maskp,
279                                   oldmask->size + 1, 0, 0) < 0) {
280                         RTE_LOG(ERR, EAL,
281                                 "Failed to get current mempolicy: %s. "
282                                 "Assuming MPOL_DEFAULT.\n", strerror(errno));
283                         oldpolicy = MPOL_DEFAULT;
284                 }
285                 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
286                         if (internal_config.socket_mem[i])
287                                 maxnode = i + 1;
288         }
289 #endif
290
291         for (i = 0; i < hpi->num_pages[0]; i++) {
292                 struct hugepage_file *hf = &hugepg_tbl[i];
293                 uint64_t hugepage_sz = hpi->hugepage_sz;
294
295 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
296                 if (maxnode) {
297                         unsigned int j;
298
299                         for (j = 0; j < maxnode; j++)
300                                 if (essential_memory[j])
301                                         break;
302
303                         if (j == maxnode) {
304                                 node_id = (node_id + 1) % maxnode;
305                                 while (!internal_config.socket_mem[node_id]) {
306                                         node_id++;
307                                         node_id %= maxnode;
308                                 }
309                                 essential_prev = 0;
310                         } else {
311                                 node_id = j;
312                                 essential_prev = essential_memory[j];
313
314                                 if (essential_memory[j] < hugepage_sz)
315                                         essential_memory[j] = 0;
316                                 else
317                                         essential_memory[j] -= hugepage_sz;
318                         }
319
320                         RTE_LOG(DEBUG, EAL,
321                                 "Setting policy MPOL_PREFERRED for socket %d\n",
322                                 node_id);
323                         numa_set_preferred(node_id);
324                 }
325 #endif
326
327                 hf->file_id = i;
328                 hf->size = hugepage_sz;
329                 eal_get_hugefile_path(hf->filepath, sizeof(hf->filepath),
330                                 hpi->hugedir, hf->file_id);
331                 hf->filepath[sizeof(hf->filepath) - 1] = '\0';
332
333                 /* try to create hugepage file */
334                 fd = open(hf->filepath, O_CREAT | O_RDWR, 0600);
335                 if (fd < 0) {
336                         RTE_LOG(DEBUG, EAL, "%s(): open failed: %s\n", __func__,
337                                         strerror(errno));
338                         goto out;
339                 }
340
341                 /* map the segment, and populate page tables,
342                  * the kernel fills this segment with zeros. we don't care where
343                  * this gets mapped - we already have contiguous memory areas
344                  * ready for us to map into.
345                  */
346                 virtaddr = mmap(NULL, hugepage_sz, PROT_READ | PROT_WRITE,
347                                 MAP_SHARED | MAP_POPULATE, fd, 0);
348                 if (virtaddr == MAP_FAILED) {
349                         RTE_LOG(DEBUG, EAL, "%s(): mmap failed: %s\n", __func__,
350                                         strerror(errno));
351                         close(fd);
352                         goto out;
353                 }
354
355                 hf->orig_va = virtaddr;
356
357                 /* In linux, hugetlb limitations, like cgroup, are
358                  * enforced at fault time instead of mmap(), even
359                  * with the option of MAP_POPULATE. Kernel will send
360                  * a SIGBUS signal. To avoid to be killed, save stack
361                  * environment here, if SIGBUS happens, we can jump
362                  * back here.
363                  */
364                 if (huge_wrap_sigsetjmp()) {
365                         RTE_LOG(DEBUG, EAL, "SIGBUS: Cannot mmap more "
366                                 "hugepages of size %u MB\n",
367                                 (unsigned int)(hugepage_sz / 0x100000));
368                         munmap(virtaddr, hugepage_sz);
369                         close(fd);
370                         unlink(hugepg_tbl[i].filepath);
371 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
372                         if (maxnode)
373                                 essential_memory[node_id] =
374                                         essential_prev;
375 #endif
376                         goto out;
377                 }
378                 *(int *)virtaddr = 0;
379
380                 /* set shared lock on the file. */
381                 if (flock(fd, LOCK_SH) < 0) {
382                         RTE_LOG(DEBUG, EAL, "%s(): Locking file failed:%s \n",
383                                 __func__, strerror(errno));
384                         close(fd);
385                         goto out;
386                 }
387
388                 close(fd);
389         }
390
391 out:
392 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
393         if (maxnode) {
394                 RTE_LOG(DEBUG, EAL,
395                         "Restoring previous memory policy: %d\n", oldpolicy);
396                 if (oldpolicy == MPOL_DEFAULT) {
397                         numa_set_localalloc();
398                 } else if (set_mempolicy(oldpolicy, oldmask->maskp,
399                                          oldmask->size + 1) < 0) {
400                         RTE_LOG(ERR, EAL, "Failed to restore mempolicy: %s\n",
401                                 strerror(errno));
402                         numa_set_localalloc();
403                 }
404         }
405         numa_free_cpumask(oldmask);
406 #endif
407         return i;
408 }
409
410 /*
411  * Parse /proc/self/numa_maps to get the NUMA socket ID for each huge
412  * page.
413  */
414 static int
415 find_numasocket(struct hugepage_file *hugepg_tbl, struct hugepage_info *hpi)
416 {
417         int socket_id;
418         char *end, *nodestr;
419         unsigned i, hp_count = 0;
420         uint64_t virt_addr;
421         char buf[BUFSIZ];
422         char hugedir_str[PATH_MAX];
423         FILE *f;
424
425         f = fopen("/proc/self/numa_maps", "r");
426         if (f == NULL) {
427                 RTE_LOG(NOTICE, EAL, "NUMA support not available"
428                         " consider that all memory is in socket_id 0\n");
429                 return 0;
430         }
431
432         snprintf(hugedir_str, sizeof(hugedir_str),
433                         "%s/%s", hpi->hugedir, internal_config.hugefile_prefix);
434
435         /* parse numa map */
436         while (fgets(buf, sizeof(buf), f) != NULL) {
437
438                 /* ignore non huge page */
439                 if (strstr(buf, " huge ") == NULL &&
440                                 strstr(buf, hugedir_str) == NULL)
441                         continue;
442
443                 /* get zone addr */
444                 virt_addr = strtoull(buf, &end, 16);
445                 if (virt_addr == 0 || end == buf) {
446                         RTE_LOG(ERR, EAL, "%s(): error in numa_maps parsing\n", __func__);
447                         goto error;
448                 }
449
450                 /* get node id (socket id) */
451                 nodestr = strstr(buf, " N");
452                 if (nodestr == NULL) {
453                         RTE_LOG(ERR, EAL, "%s(): error in numa_maps parsing\n", __func__);
454                         goto error;
455                 }
456                 nodestr += 2;
457                 end = strstr(nodestr, "=");
458                 if (end == NULL) {
459                         RTE_LOG(ERR, EAL, "%s(): error in numa_maps parsing\n", __func__);
460                         goto error;
461                 }
462                 end[0] = '\0';
463                 end = NULL;
464
465                 socket_id = strtoul(nodestr, &end, 0);
466                 if ((nodestr[0] == '\0') || (end == NULL) || (*end != '\0')) {
467                         RTE_LOG(ERR, EAL, "%s(): error in numa_maps parsing\n", __func__);
468                         goto error;
469                 }
470
471                 /* if we find this page in our mappings, set socket_id */
472                 for (i = 0; i < hpi->num_pages[0]; i++) {
473                         void *va = (void *)(unsigned long)virt_addr;
474                         if (hugepg_tbl[i].orig_va == va) {
475                                 hugepg_tbl[i].socket_id = socket_id;
476                                 hp_count++;
477 #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
478                                 RTE_LOG(DEBUG, EAL,
479                                         "Hugepage %s is on socket %d\n",
480                                         hugepg_tbl[i].filepath, socket_id);
481 #endif
482                         }
483                 }
484         }
485
486         if (hp_count < hpi->num_pages[0])
487                 goto error;
488
489         fclose(f);
490         return 0;
491
492 error:
493         fclose(f);
494         return -1;
495 }
496
497 static int
498 cmp_physaddr(const void *a, const void *b)
499 {
500 #ifndef RTE_ARCH_PPC_64
501         const struct hugepage_file *p1 = a;
502         const struct hugepage_file *p2 = b;
503 #else
504         /* PowerPC needs memory sorted in reverse order from x86 */
505         const struct hugepage_file *p1 = b;
506         const struct hugepage_file *p2 = a;
507 #endif
508         if (p1->physaddr < p2->physaddr)
509                 return -1;
510         else if (p1->physaddr > p2->physaddr)
511                 return 1;
512         else
513                 return 0;
514 }
515
516 /*
517  * Uses mmap to create a shared memory area for storage of data
518  * Used in this file to store the hugepage file map on disk
519  */
520 static void *
521 create_shared_memory(const char *filename, const size_t mem_size)
522 {
523         void *retval;
524         int fd;
525
526         /* if no shared files mode is used, create anonymous memory instead */
527         if (internal_config.no_shconf) {
528                 retval = mmap(NULL, mem_size, PROT_READ | PROT_WRITE,
529                                 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
530                 if (retval == MAP_FAILED)
531                         return NULL;
532                 return retval;
533         }
534
535         fd = open(filename, O_CREAT | O_RDWR, 0666);
536         if (fd < 0)
537                 return NULL;
538         if (ftruncate(fd, mem_size) < 0) {
539                 close(fd);
540                 return NULL;
541         }
542         retval = mmap(NULL, mem_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
543         close(fd);
544         if (retval == MAP_FAILED)
545                 return NULL;
546         return retval;
547 }
548
549 /*
550  * this copies *active* hugepages from one hugepage table to another.
551  * destination is typically the shared memory.
552  */
553 static int
554 copy_hugepages_to_shared_mem(struct hugepage_file * dst, int dest_size,
555                 const struct hugepage_file * src, int src_size)
556 {
557         int src_pos, dst_pos = 0;
558
559         for (src_pos = 0; src_pos < src_size; src_pos++) {
560                 if (src[src_pos].orig_va != NULL) {
561                         /* error on overflow attempt */
562                         if (dst_pos == dest_size)
563                                 return -1;
564                         memcpy(&dst[dst_pos], &src[src_pos], sizeof(struct hugepage_file));
565                         dst_pos++;
566                 }
567         }
568         return 0;
569 }
570
571 static int
572 unlink_hugepage_files(struct hugepage_file *hugepg_tbl,
573                 unsigned num_hp_info)
574 {
575         unsigned socket, size;
576         int page, nrpages = 0;
577
578         /* get total number of hugepages */
579         for (size = 0; size < num_hp_info; size++)
580                 for (socket = 0; socket < RTE_MAX_NUMA_NODES; socket++)
581                         nrpages +=
582                         internal_config.hugepage_info[size].num_pages[socket];
583
584         for (page = 0; page < nrpages; page++) {
585                 struct hugepage_file *hp = &hugepg_tbl[page];
586
587                 if (hp->final_va != NULL && unlink(hp->filepath)) {
588                         RTE_LOG(WARNING, EAL, "%s(): Removing %s failed: %s\n",
589                                 __func__, hp->filepath, strerror(errno));
590                 }
591         }
592         return 0;
593 }
594
595 /*
596  * unmaps hugepages that are not going to be used. since we originally allocate
597  * ALL hugepages (not just those we need), additional unmapping needs to be done.
598  */
599 static int
600 unmap_unneeded_hugepages(struct hugepage_file *hugepg_tbl,
601                 struct hugepage_info *hpi,
602                 unsigned num_hp_info)
603 {
604         unsigned socket, size;
605         int page, nrpages = 0;
606
607         /* get total number of hugepages */
608         for (size = 0; size < num_hp_info; size++)
609                 for (socket = 0; socket < RTE_MAX_NUMA_NODES; socket++)
610                         nrpages += internal_config.hugepage_info[size].num_pages[socket];
611
612         for (size = 0; size < num_hp_info; size++) {
613                 for (socket = 0; socket < RTE_MAX_NUMA_NODES; socket++) {
614                         unsigned pages_found = 0;
615
616                         /* traverse until we have unmapped all the unused pages */
617                         for (page = 0; page < nrpages; page++) {
618                                 struct hugepage_file *hp = &hugepg_tbl[page];
619
620                                 /* find a page that matches the criteria */
621                                 if ((hp->size == hpi[size].hugepage_sz) &&
622                                                 (hp->socket_id == (int) socket)) {
623
624                                         /* if we skipped enough pages, unmap the rest */
625                                         if (pages_found == hpi[size].num_pages[socket]) {
626                                                 uint64_t unmap_len;
627
628                                                 unmap_len = hp->size;
629
630                                                 /* get start addr and len of the remaining segment */
631                                                 munmap(hp->orig_va,
632                                                         (size_t)unmap_len);
633
634                                                 hp->orig_va = NULL;
635                                                 if (unlink(hp->filepath) == -1) {
636                                                         RTE_LOG(ERR, EAL, "%s(): Removing %s failed: %s\n",
637                                                                         __func__, hp->filepath, strerror(errno));
638                                                         return -1;
639                                                 }
640                                         } else {
641                                                 /* lock the page and skip */
642                                                 pages_found++;
643                                         }
644
645                                 } /* match page */
646                         } /* foreach page */
647                 } /* foreach socket */
648         } /* foreach pagesize */
649
650         return 0;
651 }
652
653 static int
654 remap_segment(struct hugepage_file *hugepages, int seg_start, int seg_end)
655 {
656         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
657         struct rte_memseg_list *msl;
658         struct rte_fbarray *arr;
659         int cur_page, seg_len;
660         unsigned int msl_idx;
661         int ms_idx;
662         uint64_t page_sz;
663         size_t memseg_len;
664         int socket_id;
665
666         page_sz = hugepages[seg_start].size;
667         socket_id = hugepages[seg_start].socket_id;
668         seg_len = seg_end - seg_start;
669
670         RTE_LOG(DEBUG, EAL, "Attempting to map %" PRIu64 "M on socket %i\n",
671                         (seg_len * page_sz) >> 20ULL, socket_id);
672
673         /* find free space in memseg lists */
674         for (msl_idx = 0; msl_idx < RTE_MAX_MEMSEG_LISTS; msl_idx++) {
675                 bool empty;
676                 msl = &mcfg->memsegs[msl_idx];
677                 arr = &msl->memseg_arr;
678
679                 if (msl->page_sz != page_sz)
680                         continue;
681                 if (msl->socket_id != socket_id)
682                         continue;
683
684                 /* leave space for a hole if array is not empty */
685                 empty = arr->count == 0;
686                 ms_idx = rte_fbarray_find_next_n_free(arr, 0,
687                                 seg_len + (empty ? 0 : 1));
688
689                 /* memseg list is full? */
690                 if (ms_idx < 0)
691                         continue;
692
693                 /* leave some space between memsegs, they are not IOVA
694                  * contiguous, so they shouldn't be VA contiguous either.
695                  */
696                 if (!empty)
697                         ms_idx++;
698                 break;
699         }
700         if (msl_idx == RTE_MAX_MEMSEG_LISTS) {
701                 RTE_LOG(ERR, EAL, "Could not find space for memseg. Please increase %s and/or %s in configuration.\n",
702                                 RTE_STR(CONFIG_RTE_MAX_MEMSEG_PER_TYPE),
703                                 RTE_STR(CONFIG_RTE_MAX_MEM_PER_TYPE));
704                 return -1;
705         }
706
707 #ifdef RTE_ARCH_PPC64
708         /* for PPC64 we go through the list backwards */
709         for (cur_page = seg_end - 1; cur_page >= seg_start;
710                         cur_page--, ms_idx++) {
711 #else
712         for (cur_page = seg_start; cur_page < seg_end; cur_page++, ms_idx++) {
713 #endif
714                 struct hugepage_file *hfile = &hugepages[cur_page];
715                 struct rte_memseg *ms = rte_fbarray_get(arr, ms_idx);
716                 void *addr;
717                 int fd;
718
719                 fd = open(hfile->filepath, O_RDWR);
720                 if (fd < 0) {
721                         RTE_LOG(ERR, EAL, "Could not open '%s': %s\n",
722                                         hfile->filepath, strerror(errno));
723                         return -1;
724                 }
725                 /* set shared lock on the file. */
726                 if (flock(fd, LOCK_SH) < 0) {
727                         RTE_LOG(DEBUG, EAL, "Could not lock '%s': %s\n",
728                                         hfile->filepath, strerror(errno));
729                         close(fd);
730                         return -1;
731                 }
732                 memseg_len = (size_t)page_sz;
733                 addr = RTE_PTR_ADD(msl->base_va, ms_idx * memseg_len);
734
735                 /* we know this address is already mmapped by memseg list, so
736                  * using MAP_FIXED here is safe
737                  */
738                 addr = mmap(addr, page_sz, PROT_READ | PROT_WRITE,
739                                 MAP_SHARED | MAP_POPULATE | MAP_FIXED, fd, 0);
740                 if (addr == MAP_FAILED) {
741                         RTE_LOG(ERR, EAL, "Couldn't remap '%s': %s\n",
742                                         hfile->filepath, strerror(errno));
743                         close(fd);
744                         return -1;
745                 }
746
747                 /* we have a new address, so unmap previous one */
748 #ifndef RTE_ARCH_64
749                 /* in 32-bit legacy mode, we have already unmapped the page */
750                 if (!internal_config.legacy_mem)
751                         munmap(hfile->orig_va, page_sz);
752 #else
753                 munmap(hfile->orig_va, page_sz);
754 #endif
755
756                 hfile->orig_va = NULL;
757                 hfile->final_va = addr;
758
759                 /* rewrite physical addresses in IOVA as VA mode */
760                 if (rte_eal_iova_mode() == RTE_IOVA_VA)
761                         hfile->physaddr = (uintptr_t)addr;
762
763                 /* set up memseg data */
764                 ms->addr = addr;
765                 ms->hugepage_sz = page_sz;
766                 ms->len = memseg_len;
767                 ms->iova = hfile->physaddr;
768                 ms->socket_id = hfile->socket_id;
769                 ms->nchannel = rte_memory_get_nchannel();
770                 ms->nrank = rte_memory_get_nrank();
771
772                 rte_fbarray_set_used(arr, ms_idx);
773
774                 close(fd);
775         }
776         RTE_LOG(DEBUG, EAL, "Allocated %" PRIu64 "M on socket %i\n",
777                         (seg_len * page_sz) >> 20, socket_id);
778         return 0;
779 }
780
781 static uint64_t
782 get_mem_amount(uint64_t page_sz, uint64_t max_mem)
783 {
784         uint64_t area_sz, max_pages;
785
786         /* limit to RTE_MAX_MEMSEG_PER_LIST pages or RTE_MAX_MEM_MB_PER_LIST */
787         max_pages = RTE_MAX_MEMSEG_PER_LIST;
788         max_mem = RTE_MIN((uint64_t)RTE_MAX_MEM_MB_PER_LIST << 20, max_mem);
789
790         area_sz = RTE_MIN(page_sz * max_pages, max_mem);
791
792         /* make sure the list isn't smaller than the page size */
793         area_sz = RTE_MAX(area_sz, page_sz);
794
795         return RTE_ALIGN(area_sz, page_sz);
796 }
797
798 static int
799 free_memseg_list(struct rte_memseg_list *msl)
800 {
801         if (rte_fbarray_destroy(&msl->memseg_arr)) {
802                 RTE_LOG(ERR, EAL, "Cannot destroy memseg list\n");
803                 return -1;
804         }
805         memset(msl, 0, sizeof(*msl));
806         return 0;
807 }
808
809 #define MEMSEG_LIST_FMT "memseg-%" PRIu64 "k-%i-%i"
810 static int
811 alloc_memseg_list(struct rte_memseg_list *msl, uint64_t page_sz,
812                 int n_segs, int socket_id, int type_msl_idx)
813 {
814         char name[RTE_FBARRAY_NAME_LEN];
815
816         snprintf(name, sizeof(name), MEMSEG_LIST_FMT, page_sz >> 10, socket_id,
817                  type_msl_idx);
818         if (rte_fbarray_init(&msl->memseg_arr, name, n_segs,
819                         sizeof(struct rte_memseg))) {
820                 RTE_LOG(ERR, EAL, "Cannot allocate memseg list: %s\n",
821                         rte_strerror(rte_errno));
822                 return -1;
823         }
824
825         msl->page_sz = page_sz;
826         msl->socket_id = socket_id;
827         msl->base_va = NULL;
828
829         RTE_LOG(DEBUG, EAL, "Memseg list allocated: 0x%zxkB at socket %i\n",
830                         (size_t)page_sz >> 10, socket_id);
831
832         return 0;
833 }
834
835 static int
836 alloc_va_space(struct rte_memseg_list *msl)
837 {
838         uint64_t page_sz;
839         size_t mem_sz;
840         void *addr;
841         int flags = 0;
842
843 #ifdef RTE_ARCH_PPC_64
844         flags |= MAP_HUGETLB;
845 #endif
846
847         page_sz = msl->page_sz;
848         mem_sz = page_sz * msl->memseg_arr.len;
849
850         addr = eal_get_virtual_area(msl->base_va, &mem_sz, page_sz, 0, flags);
851         if (addr == NULL) {
852                 if (rte_errno == EADDRNOTAVAIL)
853                         RTE_LOG(ERR, EAL, "Could not mmap %llu bytes at [%p] - please use '--base-virtaddr' option\n",
854                                 (unsigned long long)mem_sz, msl->base_va);
855                 else
856                         RTE_LOG(ERR, EAL, "Cannot reserve memory\n");
857                 return -1;
858         }
859         msl->base_va = addr;
860
861         return 0;
862 }
863
864 /*
865  * Our VA space is not preallocated yet, so preallocate it here. We need to know
866  * how many segments there are in order to map all pages into one address space,
867  * and leave appropriate holes between segments so that rte_malloc does not
868  * concatenate them into one big segment.
869  *
870  * we also need to unmap original pages to free up address space.
871  */
872 static int __rte_unused
873 prealloc_segments(struct hugepage_file *hugepages, int n_pages)
874 {
875         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
876         int cur_page, seg_start_page, end_seg, new_memseg;
877         unsigned int hpi_idx, socket, i;
878         int n_contig_segs, n_segs;
879         int msl_idx;
880
881         /* before we preallocate segments, we need to free up our VA space.
882          * we're not removing files, and we already have information about
883          * PA-contiguousness, so it is safe to unmap everything.
884          */
885         for (cur_page = 0; cur_page < n_pages; cur_page++) {
886                 struct hugepage_file *hpi = &hugepages[cur_page];
887                 munmap(hpi->orig_va, hpi->size);
888                 hpi->orig_va = NULL;
889         }
890
891         /* we cannot know how many page sizes and sockets we have discovered, so
892          * loop over all of them
893          */
894         for (hpi_idx = 0; hpi_idx < internal_config.num_hugepage_sizes;
895                         hpi_idx++) {
896                 uint64_t page_sz =
897                         internal_config.hugepage_info[hpi_idx].hugepage_sz;
898
899                 for (i = 0; i < rte_socket_count(); i++) {
900                         struct rte_memseg_list *msl;
901
902                         socket = rte_socket_id_by_idx(i);
903                         n_contig_segs = 0;
904                         n_segs = 0;
905                         seg_start_page = -1;
906
907                         for (cur_page = 0; cur_page < n_pages; cur_page++) {
908                                 struct hugepage_file *prev, *cur;
909                                 int prev_seg_start_page = -1;
910
911                                 cur = &hugepages[cur_page];
912                                 prev = cur_page == 0 ? NULL :
913                                                 &hugepages[cur_page - 1];
914
915                                 new_memseg = 0;
916                                 end_seg = 0;
917
918                                 if (cur->size == 0)
919                                         end_seg = 1;
920                                 else if (cur->socket_id != (int) socket)
921                                         end_seg = 1;
922                                 else if (cur->size != page_sz)
923                                         end_seg = 1;
924                                 else if (cur_page == 0)
925                                         new_memseg = 1;
926 #ifdef RTE_ARCH_PPC_64
927                                 /* On PPC64 architecture, the mmap always start
928                                  * from higher address to lower address. Here,
929                                  * physical addresses are in descending order.
930                                  */
931                                 else if ((prev->physaddr - cur->physaddr) !=
932                                                 cur->size)
933                                         new_memseg = 1;
934 #else
935                                 else if ((cur->physaddr - prev->physaddr) !=
936                                                 cur->size)
937                                         new_memseg = 1;
938 #endif
939                                 if (new_memseg) {
940                                         /* if we're already inside a segment,
941                                          * new segment means end of current one
942                                          */
943                                         if (seg_start_page != -1) {
944                                                 end_seg = 1;
945                                                 prev_seg_start_page =
946                                                                 seg_start_page;
947                                         }
948                                         seg_start_page = cur_page;
949                                 }
950
951                                 if (end_seg) {
952                                         if (prev_seg_start_page != -1) {
953                                                 /* we've found a new segment */
954                                                 n_contig_segs++;
955                                                 n_segs += cur_page -
956                                                         prev_seg_start_page;
957                                         } else if (seg_start_page != -1) {
958                                                 /* we didn't find new segment,
959                                                  * but did end current one
960                                                  */
961                                                 n_contig_segs++;
962                                                 n_segs += cur_page -
963                                                                 seg_start_page;
964                                                 seg_start_page = -1;
965                                                 continue;
966                                         } else {
967                                                 /* we're skipping this page */
968                                                 continue;
969                                         }
970                                 }
971                                 /* segment continues */
972                         }
973                         /* check if we missed last segment */
974                         if (seg_start_page != -1) {
975                                 n_contig_segs++;
976                                 n_segs += cur_page - seg_start_page;
977                         }
978
979                         /* if no segments were found, do not preallocate */
980                         if (n_segs == 0)
981                                 continue;
982
983                         /* we now have total number of pages that we will
984                          * allocate for this segment list. add separator pages
985                          * to the total count, and preallocate VA space.
986                          */
987                         n_segs += n_contig_segs - 1;
988
989                         /* now, preallocate VA space for these segments */
990
991                         /* first, find suitable memseg list for this */
992                         for (msl_idx = 0; msl_idx < RTE_MAX_MEMSEG_LISTS;
993                                         msl_idx++) {
994                                 msl = &mcfg->memsegs[msl_idx];
995
996                                 if (msl->base_va != NULL)
997                                         continue;
998                                 break;
999                         }
1000                         if (msl_idx == RTE_MAX_MEMSEG_LISTS) {
1001                                 RTE_LOG(ERR, EAL, "Not enough space in memseg lists, please increase %s\n",
1002                                         RTE_STR(CONFIG_RTE_MAX_MEMSEG_LISTS));
1003                                 return -1;
1004                         }
1005
1006                         /* now, allocate fbarray itself */
1007                         if (alloc_memseg_list(msl, page_sz, n_segs, socket,
1008                                                 msl_idx) < 0)
1009                                 return -1;
1010
1011                         /* finally, allocate VA space */
1012                         if (alloc_va_space(msl) < 0)
1013                                 return -1;
1014                 }
1015         }
1016         return 0;
1017 }
1018
1019 /*
1020  * We cannot reallocate memseg lists on the fly because PPC64 stores pages
1021  * backwards, therefore we have to process the entire memseg first before
1022  * remapping it into memseg list VA space.
1023  */
1024 static int
1025 remap_needed_hugepages(struct hugepage_file *hugepages, int n_pages)
1026 {
1027         int cur_page, seg_start_page, new_memseg, ret;
1028
1029         seg_start_page = 0;
1030         for (cur_page = 0; cur_page < n_pages; cur_page++) {
1031                 struct hugepage_file *prev, *cur;
1032
1033                 new_memseg = 0;
1034
1035                 cur = &hugepages[cur_page];
1036                 prev = cur_page == 0 ? NULL : &hugepages[cur_page - 1];
1037
1038                 /* if size is zero, no more pages left */
1039                 if (cur->size == 0)
1040                         break;
1041
1042                 if (cur_page == 0)
1043                         new_memseg = 1;
1044                 else if (cur->socket_id != prev->socket_id)
1045                         new_memseg = 1;
1046                 else if (cur->size != prev->size)
1047                         new_memseg = 1;
1048 #ifdef RTE_ARCH_PPC_64
1049                 /* On PPC64 architecture, the mmap always start from higher
1050                  * address to lower address. Here, physical addresses are in
1051                  * descending order.
1052                  */
1053                 else if ((prev->physaddr - cur->physaddr) != cur->size)
1054                         new_memseg = 1;
1055 #else
1056                 else if ((cur->physaddr - prev->physaddr) != cur->size)
1057                         new_memseg = 1;
1058 #endif
1059
1060                 if (new_memseg) {
1061                         /* if this isn't the first time, remap segment */
1062                         if (cur_page != 0) {
1063                                 ret = remap_segment(hugepages, seg_start_page,
1064                                                 cur_page);
1065                                 if (ret != 0)
1066                                         return -1;
1067                         }
1068                         /* remember where we started */
1069                         seg_start_page = cur_page;
1070                 }
1071                 /* continuation of previous memseg */
1072         }
1073         /* we were stopped, but we didn't remap the last segment, do it now */
1074         if (cur_page != 0) {
1075                 ret = remap_segment(hugepages, seg_start_page,
1076                                 cur_page);
1077                 if (ret != 0)
1078                         return -1;
1079         }
1080         return 0;
1081 }
1082
1083 static inline uint64_t
1084 get_socket_mem_size(int socket)
1085 {
1086         uint64_t size = 0;
1087         unsigned i;
1088
1089         for (i = 0; i < internal_config.num_hugepage_sizes; i++){
1090                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
1091                 if (strnlen(hpi->hugedir, sizeof(hpi->hugedir)) != 0)
1092                         size += hpi->hugepage_sz * hpi->num_pages[socket];
1093         }
1094
1095         return size;
1096 }
1097
1098 /*
1099  * This function is a NUMA-aware equivalent of calc_num_pages.
1100  * It takes in the list of hugepage sizes and the
1101  * number of pages thereof, and calculates the best number of
1102  * pages of each size to fulfill the request for <memory> ram
1103  */
1104 static int
1105 calc_num_pages_per_socket(uint64_t * memory,
1106                 struct hugepage_info *hp_info,
1107                 struct hugepage_info *hp_used,
1108                 unsigned num_hp_info)
1109 {
1110         unsigned socket, j, i = 0;
1111         unsigned requested, available;
1112         int total_num_pages = 0;
1113         uint64_t remaining_mem, cur_mem;
1114         uint64_t total_mem = internal_config.memory;
1115
1116         if (num_hp_info == 0)
1117                 return -1;
1118
1119         /* if specific memory amounts per socket weren't requested */
1120         if (internal_config.force_sockets == 0) {
1121                 size_t total_size;
1122 #ifdef RTE_ARCH_64
1123                 int cpu_per_socket[RTE_MAX_NUMA_NODES];
1124                 size_t default_size;
1125                 unsigned lcore_id;
1126
1127                 /* Compute number of cores per socket */
1128                 memset(cpu_per_socket, 0, sizeof(cpu_per_socket));
1129                 RTE_LCORE_FOREACH(lcore_id) {
1130                         cpu_per_socket[rte_lcore_to_socket_id(lcore_id)]++;
1131                 }
1132
1133                 /*
1134                  * Automatically spread requested memory amongst detected sockets according
1135                  * to number of cores from cpu mask present on each socket
1136                  */
1137                 total_size = internal_config.memory;
1138                 for (socket = 0; socket < RTE_MAX_NUMA_NODES && total_size != 0; socket++) {
1139
1140                         /* Set memory amount per socket */
1141                         default_size = (internal_config.memory * cpu_per_socket[socket])
1142                                         / rte_lcore_count();
1143
1144                         /* Limit to maximum available memory on socket */
1145                         default_size = RTE_MIN(default_size, get_socket_mem_size(socket));
1146
1147                         /* Update sizes */
1148                         memory[socket] = default_size;
1149                         total_size -= default_size;
1150                 }
1151
1152                 /*
1153                  * If some memory is remaining, try to allocate it by getting all
1154                  * available memory from sockets, one after the other
1155                  */
1156                 for (socket = 0; socket < RTE_MAX_NUMA_NODES && total_size != 0; socket++) {
1157                         /* take whatever is available */
1158                         default_size = RTE_MIN(get_socket_mem_size(socket) - memory[socket],
1159                                                total_size);
1160
1161                         /* Update sizes */
1162                         memory[socket] += default_size;
1163                         total_size -= default_size;
1164                 }
1165 #else
1166                 /* in 32-bit mode, allocate all of the memory only on master
1167                  * lcore socket
1168                  */
1169                 total_size = internal_config.memory;
1170                 for (socket = 0; socket < RTE_MAX_NUMA_NODES && total_size != 0;
1171                                 socket++) {
1172                         struct rte_config *cfg = rte_eal_get_configuration();
1173                         unsigned int master_lcore_socket;
1174
1175                         master_lcore_socket =
1176                                 rte_lcore_to_socket_id(cfg->master_lcore);
1177
1178                         if (master_lcore_socket != socket)
1179                                 continue;
1180
1181                         /* Update sizes */
1182                         memory[socket] = total_size;
1183                         break;
1184                 }
1185 #endif
1186         }
1187
1188         for (socket = 0; socket < RTE_MAX_NUMA_NODES && total_mem != 0; socket++) {
1189                 /* skips if the memory on specific socket wasn't requested */
1190                 for (i = 0; i < num_hp_info && memory[socket] != 0; i++){
1191                         strlcpy(hp_used[i].hugedir, hp_info[i].hugedir,
1192                                 sizeof(hp_used[i].hugedir));
1193                         hp_used[i].num_pages[socket] = RTE_MIN(
1194                                         memory[socket] / hp_info[i].hugepage_sz,
1195                                         hp_info[i].num_pages[socket]);
1196
1197                         cur_mem = hp_used[i].num_pages[socket] *
1198                                         hp_used[i].hugepage_sz;
1199
1200                         memory[socket] -= cur_mem;
1201                         total_mem -= cur_mem;
1202
1203                         total_num_pages += hp_used[i].num_pages[socket];
1204
1205                         /* check if we have met all memory requests */
1206                         if (memory[socket] == 0)
1207                                 break;
1208
1209                         /* check if we have any more pages left at this size, if so
1210                          * move on to next size */
1211                         if (hp_used[i].num_pages[socket] == hp_info[i].num_pages[socket])
1212                                 continue;
1213                         /* At this point we know that there are more pages available that are
1214                          * bigger than the memory we want, so lets see if we can get enough
1215                          * from other page sizes.
1216                          */
1217                         remaining_mem = 0;
1218                         for (j = i+1; j < num_hp_info; j++)
1219                                 remaining_mem += hp_info[j].hugepage_sz *
1220                                 hp_info[j].num_pages[socket];
1221
1222                         /* is there enough other memory, if not allocate another page and quit */
1223                         if (remaining_mem < memory[socket]){
1224                                 cur_mem = RTE_MIN(memory[socket],
1225                                                 hp_info[i].hugepage_sz);
1226                                 memory[socket] -= cur_mem;
1227                                 total_mem -= cur_mem;
1228                                 hp_used[i].num_pages[socket]++;
1229                                 total_num_pages++;
1230                                 break; /* we are done with this socket*/
1231                         }
1232                 }
1233                 /* if we didn't satisfy all memory requirements per socket */
1234                 if (memory[socket] > 0 &&
1235                                 internal_config.socket_mem[socket] != 0) {
1236                         /* to prevent icc errors */
1237                         requested = (unsigned) (internal_config.socket_mem[socket] /
1238                                         0x100000);
1239                         available = requested -
1240                                         ((unsigned) (memory[socket] / 0x100000));
1241                         RTE_LOG(ERR, EAL, "Not enough memory available on socket %u! "
1242                                         "Requested: %uMB, available: %uMB\n", socket,
1243                                         requested, available);
1244                         return -1;
1245                 }
1246         }
1247
1248         /* if we didn't satisfy total memory requirements */
1249         if (total_mem > 0) {
1250                 requested = (unsigned) (internal_config.memory / 0x100000);
1251                 available = requested - (unsigned) (total_mem / 0x100000);
1252                 RTE_LOG(ERR, EAL, "Not enough memory available! Requested: %uMB,"
1253                                 " available: %uMB\n", requested, available);
1254                 return -1;
1255         }
1256         return total_num_pages;
1257 }
1258
1259 static inline size_t
1260 eal_get_hugepage_mem_size(void)
1261 {
1262         uint64_t size = 0;
1263         unsigned i, j;
1264
1265         for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
1266                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
1267                 if (strnlen(hpi->hugedir, sizeof(hpi->hugedir)) != 0) {
1268                         for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
1269                                 size += hpi->hugepage_sz * hpi->num_pages[j];
1270                         }
1271                 }
1272         }
1273
1274         return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
1275 }
1276
1277 static struct sigaction huge_action_old;
1278 static int huge_need_recover;
1279
1280 static void
1281 huge_register_sigbus(void)
1282 {
1283         sigset_t mask;
1284         struct sigaction action;
1285
1286         sigemptyset(&mask);
1287         sigaddset(&mask, SIGBUS);
1288         action.sa_flags = 0;
1289         action.sa_mask = mask;
1290         action.sa_handler = huge_sigbus_handler;
1291
1292         huge_need_recover = !sigaction(SIGBUS, &action, &huge_action_old);
1293 }
1294
1295 static void
1296 huge_recover_sigbus(void)
1297 {
1298         if (huge_need_recover) {
1299                 sigaction(SIGBUS, &huge_action_old, NULL);
1300                 huge_need_recover = 0;
1301         }
1302 }
1303
1304 /*
1305  * Prepare physical memory mapping: fill configuration structure with
1306  * these infos, return 0 on success.
1307  *  1. map N huge pages in separate files in hugetlbfs
1308  *  2. find associated physical addr
1309  *  3. find associated NUMA socket ID
1310  *  4. sort all huge pages by physical address
1311  *  5. remap these N huge pages in the correct order
1312  *  6. unmap the first mapping
1313  *  7. fill memsegs in configuration with contiguous zones
1314  */
1315 static int
1316 eal_legacy_hugepage_init(void)
1317 {
1318         struct rte_mem_config *mcfg;
1319         struct hugepage_file *hugepage = NULL, *tmp_hp = NULL;
1320         struct hugepage_info used_hp[MAX_HUGEPAGE_SIZES];
1321         struct rte_fbarray *arr;
1322         struct rte_memseg *ms;
1323
1324         uint64_t memory[RTE_MAX_NUMA_NODES];
1325
1326         unsigned hp_offset;
1327         int i, j;
1328         int nr_hugefiles, nr_hugepages = 0;
1329         void *addr;
1330
1331         test_phys_addrs_available();
1332
1333         memset(used_hp, 0, sizeof(used_hp));
1334
1335         /* get pointer to global configuration */
1336         mcfg = rte_eal_get_configuration()->mem_config;
1337
1338         /* hugetlbfs can be disabled */
1339         if (internal_config.no_hugetlbfs) {
1340                 struct rte_memseg_list *msl;
1341                 uint64_t page_sz;
1342                 int n_segs, cur_seg;
1343
1344                 /* nohuge mode is legacy mode */
1345                 internal_config.legacy_mem = 1;
1346
1347                 /* create a memseg list */
1348                 msl = &mcfg->memsegs[0];
1349
1350                 page_sz = RTE_PGSIZE_4K;
1351                 n_segs = internal_config.memory / page_sz;
1352
1353                 if (rte_fbarray_init(&msl->memseg_arr, "nohugemem", n_segs,
1354                                         sizeof(struct rte_memseg))) {
1355                         RTE_LOG(ERR, EAL, "Cannot allocate memseg list\n");
1356                         return -1;
1357                 }
1358
1359                 addr = mmap(NULL, internal_config.memory, PROT_READ | PROT_WRITE,
1360                                 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
1361                 if (addr == MAP_FAILED) {
1362                         RTE_LOG(ERR, EAL, "%s: mmap() failed: %s\n", __func__,
1363                                         strerror(errno));
1364                         return -1;
1365                 }
1366                 msl->base_va = addr;
1367                 msl->page_sz = page_sz;
1368                 msl->socket_id = 0;
1369
1370                 /* populate memsegs. each memseg is one page long */
1371                 for (cur_seg = 0; cur_seg < n_segs; cur_seg++) {
1372                         arr = &msl->memseg_arr;
1373
1374                         ms = rte_fbarray_get(arr, cur_seg);
1375                         if (rte_eal_iova_mode() == RTE_IOVA_VA)
1376                                 ms->iova = (uintptr_t)addr;
1377                         else
1378                                 ms->iova = RTE_BAD_IOVA;
1379                         ms->addr = addr;
1380                         ms->hugepage_sz = page_sz;
1381                         ms->socket_id = 0;
1382                         ms->len = page_sz;
1383
1384                         rte_fbarray_set_used(arr, cur_seg);
1385
1386                         addr = RTE_PTR_ADD(addr, (size_t)page_sz);
1387                 }
1388                 return 0;
1389         }
1390
1391         /* calculate total number of hugepages available. at this point we haven't
1392          * yet started sorting them so they all are on socket 0 */
1393         for (i = 0; i < (int) internal_config.num_hugepage_sizes; i++) {
1394                 /* meanwhile, also initialize used_hp hugepage sizes in used_hp */
1395                 used_hp[i].hugepage_sz = internal_config.hugepage_info[i].hugepage_sz;
1396
1397                 nr_hugepages += internal_config.hugepage_info[i].num_pages[0];
1398         }
1399
1400         /*
1401          * allocate a memory area for hugepage table.
1402          * this isn't shared memory yet. due to the fact that we need some
1403          * processing done on these pages, shared memory will be created
1404          * at a later stage.
1405          */
1406         tmp_hp = malloc(nr_hugepages * sizeof(struct hugepage_file));
1407         if (tmp_hp == NULL)
1408                 goto fail;
1409
1410         memset(tmp_hp, 0, nr_hugepages * sizeof(struct hugepage_file));
1411
1412         hp_offset = 0; /* where we start the current page size entries */
1413
1414         huge_register_sigbus();
1415
1416         /* make a copy of socket_mem, needed for balanced allocation. */
1417         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
1418                 memory[i] = internal_config.socket_mem[i];
1419
1420         /* map all hugepages and sort them */
1421         for (i = 0; i < (int)internal_config.num_hugepage_sizes; i ++){
1422                 unsigned pages_old, pages_new;
1423                 struct hugepage_info *hpi;
1424
1425                 /*
1426                  * we don't yet mark hugepages as used at this stage, so
1427                  * we just map all hugepages available to the system
1428                  * all hugepages are still located on socket 0
1429                  */
1430                 hpi = &internal_config.hugepage_info[i];
1431
1432                 if (hpi->num_pages[0] == 0)
1433                         continue;
1434
1435                 /* map all hugepages available */
1436                 pages_old = hpi->num_pages[0];
1437                 pages_new = map_all_hugepages(&tmp_hp[hp_offset], hpi, memory);
1438                 if (pages_new < pages_old) {
1439                         RTE_LOG(DEBUG, EAL,
1440                                 "%d not %d hugepages of size %u MB allocated\n",
1441                                 pages_new, pages_old,
1442                                 (unsigned)(hpi->hugepage_sz / 0x100000));
1443
1444                         int pages = pages_old - pages_new;
1445
1446                         nr_hugepages -= pages;
1447                         hpi->num_pages[0] = pages_new;
1448                         if (pages_new == 0)
1449                                 continue;
1450                 }
1451
1452                 if (phys_addrs_available &&
1453                                 rte_eal_iova_mode() != RTE_IOVA_VA) {
1454                         /* find physical addresses for each hugepage */
1455                         if (find_physaddrs(&tmp_hp[hp_offset], hpi) < 0) {
1456                                 RTE_LOG(DEBUG, EAL, "Failed to find phys addr "
1457                                         "for %u MB pages\n",
1458                                         (unsigned int)(hpi->hugepage_sz / 0x100000));
1459                                 goto fail;
1460                         }
1461                 } else {
1462                         /* set physical addresses for each hugepage */
1463                         if (set_physaddrs(&tmp_hp[hp_offset], hpi) < 0) {
1464                                 RTE_LOG(DEBUG, EAL, "Failed to set phys addr "
1465                                         "for %u MB pages\n",
1466                                         (unsigned int)(hpi->hugepage_sz / 0x100000));
1467                                 goto fail;
1468                         }
1469                 }
1470
1471                 if (find_numasocket(&tmp_hp[hp_offset], hpi) < 0){
1472                         RTE_LOG(DEBUG, EAL, "Failed to find NUMA socket for %u MB pages\n",
1473                                         (unsigned)(hpi->hugepage_sz / 0x100000));
1474                         goto fail;
1475                 }
1476
1477                 qsort(&tmp_hp[hp_offset], hpi->num_pages[0],
1478                       sizeof(struct hugepage_file), cmp_physaddr);
1479
1480                 /* we have processed a num of hugepages of this size, so inc offset */
1481                 hp_offset += hpi->num_pages[0];
1482         }
1483
1484         huge_recover_sigbus();
1485
1486         if (internal_config.memory == 0 && internal_config.force_sockets == 0)
1487                 internal_config.memory = eal_get_hugepage_mem_size();
1488
1489         nr_hugefiles = nr_hugepages;
1490
1491
1492         /* clean out the numbers of pages */
1493         for (i = 0; i < (int) internal_config.num_hugepage_sizes; i++)
1494                 for (j = 0; j < RTE_MAX_NUMA_NODES; j++)
1495                         internal_config.hugepage_info[i].num_pages[j] = 0;
1496
1497         /* get hugepages for each socket */
1498         for (i = 0; i < nr_hugefiles; i++) {
1499                 int socket = tmp_hp[i].socket_id;
1500
1501                 /* find a hugepage info with right size and increment num_pages */
1502                 const int nb_hpsizes = RTE_MIN(MAX_HUGEPAGE_SIZES,
1503                                 (int)internal_config.num_hugepage_sizes);
1504                 for (j = 0; j < nb_hpsizes; j++) {
1505                         if (tmp_hp[i].size ==
1506                                         internal_config.hugepage_info[j].hugepage_sz) {
1507                                 internal_config.hugepage_info[j].num_pages[socket]++;
1508                         }
1509                 }
1510         }
1511
1512         /* make a copy of socket_mem, needed for number of pages calculation */
1513         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
1514                 memory[i] = internal_config.socket_mem[i];
1515
1516         /* calculate final number of pages */
1517         nr_hugepages = calc_num_pages_per_socket(memory,
1518                         internal_config.hugepage_info, used_hp,
1519                         internal_config.num_hugepage_sizes);
1520
1521         /* error if not enough memory available */
1522         if (nr_hugepages < 0)
1523                 goto fail;
1524
1525         /* reporting in! */
1526         for (i = 0; i < (int) internal_config.num_hugepage_sizes; i++) {
1527                 for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
1528                         if (used_hp[i].num_pages[j] > 0) {
1529                                 RTE_LOG(DEBUG, EAL,
1530                                         "Requesting %u pages of size %uMB"
1531                                         " from socket %i\n",
1532                                         used_hp[i].num_pages[j],
1533                                         (unsigned)
1534                                         (used_hp[i].hugepage_sz / 0x100000),
1535                                         j);
1536                         }
1537                 }
1538         }
1539
1540         /* create shared memory */
1541         hugepage = create_shared_memory(eal_hugepage_data_path(),
1542                         nr_hugefiles * sizeof(struct hugepage_file));
1543
1544         if (hugepage == NULL) {
1545                 RTE_LOG(ERR, EAL, "Failed to create shared memory!\n");
1546                 goto fail;
1547         }
1548         memset(hugepage, 0, nr_hugefiles * sizeof(struct hugepage_file));
1549
1550         /*
1551          * unmap pages that we won't need (looks at used_hp).
1552          * also, sets final_va to NULL on pages that were unmapped.
1553          */
1554         if (unmap_unneeded_hugepages(tmp_hp, used_hp,
1555                         internal_config.num_hugepage_sizes) < 0) {
1556                 RTE_LOG(ERR, EAL, "Unmapping and locking hugepages failed!\n");
1557                 goto fail;
1558         }
1559
1560         /*
1561          * copy stuff from malloc'd hugepage* to the actual shared memory.
1562          * this procedure only copies those hugepages that have orig_va
1563          * not NULL. has overflow protection.
1564          */
1565         if (copy_hugepages_to_shared_mem(hugepage, nr_hugefiles,
1566                         tmp_hp, nr_hugefiles) < 0) {
1567                 RTE_LOG(ERR, EAL, "Copying tables to shared memory failed!\n");
1568                 goto fail;
1569         }
1570
1571 #ifndef RTE_ARCH_64
1572         /* for legacy 32-bit mode, we did not preallocate VA space, so do it */
1573         if (internal_config.legacy_mem &&
1574                         prealloc_segments(hugepage, nr_hugefiles)) {
1575                 RTE_LOG(ERR, EAL, "Could not preallocate VA space for hugepages\n");
1576                 goto fail;
1577         }
1578 #endif
1579
1580         /* remap all pages we do need into memseg list VA space, so that those
1581          * pages become first-class citizens in DPDK memory subsystem
1582          */
1583         if (remap_needed_hugepages(hugepage, nr_hugefiles)) {
1584                 RTE_LOG(ERR, EAL, "Couldn't remap hugepage files into memseg lists\n");
1585                 goto fail;
1586         }
1587
1588         /* free the hugepage backing files */
1589         if (internal_config.hugepage_unlink &&
1590                 unlink_hugepage_files(tmp_hp, internal_config.num_hugepage_sizes) < 0) {
1591                 RTE_LOG(ERR, EAL, "Unlinking hugepage files failed!\n");
1592                 goto fail;
1593         }
1594
1595         /* free the temporary hugepage table */
1596         free(tmp_hp);
1597         tmp_hp = NULL;
1598
1599         munmap(hugepage, nr_hugefiles * sizeof(struct hugepage_file));
1600
1601         /* we're not going to allocate more pages, so release VA space for
1602          * unused memseg lists
1603          */
1604         for (i = 0; i < RTE_MAX_MEMSEG_LISTS; i++) {
1605                 struct rte_memseg_list *msl = &mcfg->memsegs[i];
1606                 size_t mem_sz;
1607
1608                 /* skip inactive lists */
1609                 if (msl->base_va == NULL)
1610                         continue;
1611                 /* skip lists where there is at least one page allocated */
1612                 if (msl->memseg_arr.count > 0)
1613                         continue;
1614                 /* this is an unused list, deallocate it */
1615                 mem_sz = (size_t)msl->page_sz * msl->memseg_arr.len;
1616                 munmap(msl->base_va, mem_sz);
1617                 msl->base_va = NULL;
1618
1619                 /* destroy backing fbarray */
1620                 rte_fbarray_destroy(&msl->memseg_arr);
1621         }
1622
1623         return 0;
1624
1625 fail:
1626         huge_recover_sigbus();
1627         free(tmp_hp);
1628         if (hugepage != NULL)
1629                 munmap(hugepage, nr_hugefiles * sizeof(struct hugepage_file));
1630
1631         return -1;
1632 }
1633
1634 static int __rte_unused
1635 hugepage_count_walk(const struct rte_memseg_list *msl, void *arg)
1636 {
1637         struct hugepage_info *hpi = arg;
1638
1639         if (msl->page_sz != hpi->hugepage_sz)
1640                 return 0;
1641
1642         hpi->num_pages[msl->socket_id] += msl->memseg_arr.len;
1643         return 0;
1644 }
1645
1646 static int
1647 limits_callback(int socket_id, size_t cur_limit, size_t new_len)
1648 {
1649         RTE_SET_USED(socket_id);
1650         RTE_SET_USED(cur_limit);
1651         RTE_SET_USED(new_len);
1652         return -1;
1653 }
1654
1655 static int
1656 eal_hugepage_init(void)
1657 {
1658         struct hugepage_info used_hp[MAX_HUGEPAGE_SIZES];
1659         uint64_t memory[RTE_MAX_NUMA_NODES];
1660         int hp_sz_idx, socket_id;
1661
1662         test_phys_addrs_available();
1663
1664         memset(used_hp, 0, sizeof(used_hp));
1665
1666         for (hp_sz_idx = 0;
1667                         hp_sz_idx < (int) internal_config.num_hugepage_sizes;
1668                         hp_sz_idx++) {
1669 #ifndef RTE_ARCH_64
1670                 struct hugepage_info dummy;
1671                 unsigned int i;
1672 #endif
1673                 /* also initialize used_hp hugepage sizes in used_hp */
1674                 struct hugepage_info *hpi;
1675                 hpi = &internal_config.hugepage_info[hp_sz_idx];
1676                 used_hp[hp_sz_idx].hugepage_sz = hpi->hugepage_sz;
1677
1678 #ifndef RTE_ARCH_64
1679                 /* for 32-bit, limit number of pages on socket to whatever we've
1680                  * preallocated, as we cannot allocate more.
1681                  */
1682                 memset(&dummy, 0, sizeof(dummy));
1683                 dummy.hugepage_sz = hpi->hugepage_sz;
1684                 if (rte_memseg_list_walk(hugepage_count_walk, &dummy) < 0)
1685                         return -1;
1686
1687                 for (i = 0; i < RTE_DIM(dummy.num_pages); i++) {
1688                         hpi->num_pages[i] = RTE_MIN(hpi->num_pages[i],
1689                                         dummy.num_pages[i]);
1690                 }
1691 #endif
1692         }
1693
1694         /* make a copy of socket_mem, needed for balanced allocation. */
1695         for (hp_sz_idx = 0; hp_sz_idx < RTE_MAX_NUMA_NODES; hp_sz_idx++)
1696                 memory[hp_sz_idx] = internal_config.socket_mem[hp_sz_idx];
1697
1698         /* calculate final number of pages */
1699         if (calc_num_pages_per_socket(memory,
1700                         internal_config.hugepage_info, used_hp,
1701                         internal_config.num_hugepage_sizes) < 0)
1702                 return -1;
1703
1704         for (hp_sz_idx = 0;
1705                         hp_sz_idx < (int)internal_config.num_hugepage_sizes;
1706                         hp_sz_idx++) {
1707                 for (socket_id = 0; socket_id < RTE_MAX_NUMA_NODES;
1708                                 socket_id++) {
1709                         struct rte_memseg **pages;
1710                         struct hugepage_info *hpi = &used_hp[hp_sz_idx];
1711                         unsigned int num_pages = hpi->num_pages[socket_id];
1712                         int num_pages_alloc, i;
1713
1714                         if (num_pages == 0)
1715                                 continue;
1716
1717                         pages = malloc(sizeof(*pages) * num_pages);
1718
1719                         RTE_LOG(DEBUG, EAL, "Allocating %u pages of size %" PRIu64 "M on socket %i\n",
1720                                 num_pages, hpi->hugepage_sz >> 20, socket_id);
1721
1722                         num_pages_alloc = eal_memalloc_alloc_seg_bulk(pages,
1723                                         num_pages, hpi->hugepage_sz,
1724                                         socket_id, true);
1725                         if (num_pages_alloc < 0) {
1726                                 free(pages);
1727                                 return -1;
1728                         }
1729
1730                         /* mark preallocated pages as unfreeable */
1731                         for (i = 0; i < num_pages_alloc; i++) {
1732                                 struct rte_memseg *ms = pages[i];
1733                                 ms->flags |= RTE_MEMSEG_FLAG_DO_NOT_FREE;
1734                         }
1735                         free(pages);
1736                 }
1737         }
1738         /* if socket limits were specified, set them */
1739         if (internal_config.force_socket_limits) {
1740                 unsigned int i;
1741                 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) {
1742                         uint64_t limit = internal_config.socket_limit[i];
1743                         if (limit == 0)
1744                                 continue;
1745                         if (rte_mem_alloc_validator_register("socket-limit",
1746                                         limits_callback, i, limit))
1747                                 RTE_LOG(ERR, EAL, "Failed to register socket limits validator callback\n");
1748                 }
1749         }
1750         return 0;
1751 }
1752
1753 /*
1754  * uses fstat to report the size of a file on disk
1755  */
1756 static off_t
1757 getFileSize(int fd)
1758 {
1759         struct stat st;
1760         if (fstat(fd, &st) < 0)
1761                 return 0;
1762         return st.st_size;
1763 }
1764
1765 /*
1766  * This creates the memory mappings in the secondary process to match that of
1767  * the server process. It goes through each memory segment in the DPDK runtime
1768  * configuration and finds the hugepages which form that segment, mapping them
1769  * in order to form a contiguous block in the virtual memory space
1770  */
1771 static int
1772 eal_legacy_hugepage_attach(void)
1773 {
1774         struct hugepage_file *hp = NULL;
1775         unsigned int num_hp = 0;
1776         unsigned int i = 0;
1777         unsigned int cur_seg;
1778         off_t size = 0;
1779         int fd, fd_hugepage = -1;
1780
1781         if (aslr_enabled() > 0) {
1782                 RTE_LOG(WARNING, EAL, "WARNING: Address Space Layout Randomization "
1783                                 "(ASLR) is enabled in the kernel.\n");
1784                 RTE_LOG(WARNING, EAL, "   This may cause issues with mapping memory "
1785                                 "into secondary processes\n");
1786         }
1787
1788         test_phys_addrs_available();
1789
1790         fd_hugepage = open(eal_hugepage_data_path(), O_RDONLY);
1791         if (fd_hugepage < 0) {
1792                 RTE_LOG(ERR, EAL, "Could not open %s\n",
1793                                 eal_hugepage_data_path());
1794                 goto error;
1795         }
1796
1797         size = getFileSize(fd_hugepage);
1798         hp = mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd_hugepage, 0);
1799         if (hp == MAP_FAILED) {
1800                 RTE_LOG(ERR, EAL, "Could not mmap %s\n",
1801                                 eal_hugepage_data_path());
1802                 goto error;
1803         }
1804
1805         num_hp = size / sizeof(struct hugepage_file);
1806         RTE_LOG(DEBUG, EAL, "Analysing %u files\n", num_hp);
1807
1808         /* map all segments into memory to make sure we get the addrs. the
1809          * segments themselves are already in memseg list (which is shared and
1810          * has its VA space already preallocated), so we just need to map
1811          * everything into correct addresses.
1812          */
1813         for (i = 0; i < num_hp; i++) {
1814                 struct hugepage_file *hf = &hp[i];
1815                 size_t map_sz = hf->size;
1816                 void *map_addr = hf->final_va;
1817
1818                 /* if size is zero, no more pages left */
1819                 if (map_sz == 0)
1820                         break;
1821
1822                 fd = open(hf->filepath, O_RDWR);
1823                 if (fd < 0) {
1824                         RTE_LOG(ERR, EAL, "Could not open %s: %s\n",
1825                                 hf->filepath, strerror(errno));
1826                         goto error;
1827                 }
1828
1829                 map_addr = mmap(map_addr, map_sz, PROT_READ | PROT_WRITE,
1830                                 MAP_SHARED | MAP_FIXED, fd, 0);
1831                 if (map_addr == MAP_FAILED) {
1832                         RTE_LOG(ERR, EAL, "Could not map %s: %s\n",
1833                                 hf->filepath, strerror(errno));
1834                         close(fd);
1835                         goto error;
1836                 }
1837
1838                 /* set shared lock on the file. */
1839                 if (flock(fd, LOCK_SH) < 0) {
1840                         RTE_LOG(DEBUG, EAL, "%s(): Locking file failed: %s\n",
1841                                 __func__, strerror(errno));
1842                         close(fd);
1843                         goto error;
1844                 }
1845
1846                 close(fd);
1847         }
1848         /* unmap the hugepage config file, since we are done using it */
1849         munmap(hp, size);
1850         close(fd_hugepage);
1851         return 0;
1852
1853 error:
1854         /* map all segments into memory to make sure we get the addrs */
1855         cur_seg = 0;
1856         for (cur_seg = 0; cur_seg < i; cur_seg++) {
1857                 struct hugepage_file *hf = &hp[i];
1858                 size_t map_sz = hf->size;
1859                 void *map_addr = hf->final_va;
1860
1861                 munmap(map_addr, map_sz);
1862         }
1863         if (hp != NULL && hp != MAP_FAILED)
1864                 munmap(hp, size);
1865         if (fd_hugepage >= 0)
1866                 close(fd_hugepage);
1867         return -1;
1868 }
1869
1870 static int
1871 eal_hugepage_attach(void)
1872 {
1873         if (eal_memalloc_sync_with_primary()) {
1874                 RTE_LOG(ERR, EAL, "Could not map memory from primary process\n");
1875                 if (aslr_enabled() > 0)
1876                         RTE_LOG(ERR, EAL, "It is recommended to disable ASLR in the kernel and retry running both primary and secondary processes\n");
1877                 return -1;
1878         }
1879         return 0;
1880 }
1881
1882 int
1883 rte_eal_hugepage_init(void)
1884 {
1885         return internal_config.legacy_mem ?
1886                         eal_legacy_hugepage_init() :
1887                         eal_hugepage_init();
1888 }
1889
1890 int
1891 rte_eal_hugepage_attach(void)
1892 {
1893         return internal_config.legacy_mem ?
1894                         eal_legacy_hugepage_attach() :
1895                         eal_hugepage_attach();
1896 }
1897
1898 int
1899 rte_eal_using_phys_addrs(void)
1900 {
1901         return phys_addrs_available;
1902 }
1903
1904 static int __rte_unused
1905 memseg_primary_init_32(void)
1906 {
1907         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
1908         int active_sockets, hpi_idx, msl_idx = 0;
1909         unsigned int socket_id, i;
1910         struct rte_memseg_list *msl;
1911         uint64_t extra_mem_per_socket, total_extra_mem, total_requested_mem;
1912         uint64_t max_mem;
1913
1914         /* no-huge does not need this at all */
1915         if (internal_config.no_hugetlbfs)
1916                 return 0;
1917
1918         /* this is a giant hack, but desperate times call for desperate
1919          * measures. in legacy 32-bit mode, we cannot preallocate VA space,
1920          * because having upwards of 2 gigabytes of VA space already mapped will
1921          * interfere with our ability to map and sort hugepages.
1922          *
1923          * therefore, in legacy 32-bit mode, we will be initializing memseg
1924          * lists much later - in eal_memory.c, right after we unmap all the
1925          * unneeded pages. this will not affect secondary processes, as those
1926          * should be able to mmap the space without (too many) problems.
1927          */
1928         if (internal_config.legacy_mem)
1929                 return 0;
1930
1931         /* 32-bit mode is a very special case. we cannot know in advance where
1932          * the user will want to allocate their memory, so we have to do some
1933          * heuristics.
1934          */
1935         active_sockets = 0;
1936         total_requested_mem = 0;
1937         if (internal_config.force_sockets)
1938                 for (i = 0; i < rte_socket_count(); i++) {
1939                         uint64_t mem;
1940
1941                         socket_id = rte_socket_id_by_idx(i);
1942                         mem = internal_config.socket_mem[socket_id];
1943
1944                         if (mem == 0)
1945                                 continue;
1946
1947                         active_sockets++;
1948                         total_requested_mem += mem;
1949                 }
1950         else
1951                 total_requested_mem = internal_config.memory;
1952
1953         max_mem = (uint64_t)RTE_MAX_MEM_MB << 20;
1954         if (total_requested_mem > max_mem) {
1955                 RTE_LOG(ERR, EAL, "Invalid parameters: 32-bit process can at most use %uM of memory\n",
1956                                 (unsigned int)(max_mem >> 20));
1957                 return -1;
1958         }
1959         total_extra_mem = max_mem - total_requested_mem;
1960         extra_mem_per_socket = active_sockets == 0 ? total_extra_mem :
1961                         total_extra_mem / active_sockets;
1962
1963         /* the allocation logic is a little bit convoluted, but here's how it
1964          * works, in a nutshell:
1965          *  - if user hasn't specified on which sockets to allocate memory via
1966          *    --socket-mem, we allocate all of our memory on master core socket.
1967          *  - if user has specified sockets to allocate memory on, there may be
1968          *    some "unused" memory left (e.g. if user has specified --socket-mem
1969          *    such that not all memory adds up to 2 gigabytes), so add it to all
1970          *    sockets that are in use equally.
1971          *
1972          * page sizes are sorted by size in descending order, so we can safely
1973          * assume that we dispense with bigger page sizes first.
1974          */
1975
1976         /* create memseg lists */
1977         for (i = 0; i < rte_socket_count(); i++) {
1978                 int hp_sizes = (int) internal_config.num_hugepage_sizes;
1979                 uint64_t max_socket_mem, cur_socket_mem;
1980                 unsigned int master_lcore_socket;
1981                 struct rte_config *cfg = rte_eal_get_configuration();
1982                 bool skip;
1983
1984                 socket_id = rte_socket_id_by_idx(i);
1985
1986 #ifndef RTE_EAL_NUMA_AWARE_HUGEPAGES
1987                 if (socket_id > 0)
1988                         break;
1989 #endif
1990
1991                 /* if we didn't specifically request memory on this socket */
1992                 skip = active_sockets != 0 &&
1993                                 internal_config.socket_mem[socket_id] == 0;
1994                 /* ...or if we didn't specifically request memory on *any*
1995                  * socket, and this is not master lcore
1996                  */
1997                 master_lcore_socket = rte_lcore_to_socket_id(cfg->master_lcore);
1998                 skip |= active_sockets == 0 && socket_id != master_lcore_socket;
1999
2000                 if (skip) {
2001                         RTE_LOG(DEBUG, EAL, "Will not preallocate memory on socket %u\n",
2002                                         socket_id);
2003                         continue;
2004                 }
2005
2006                 /* max amount of memory on this socket */
2007                 max_socket_mem = (active_sockets != 0 ?
2008                                         internal_config.socket_mem[socket_id] :
2009                                         internal_config.memory) +
2010                                         extra_mem_per_socket;
2011                 cur_socket_mem = 0;
2012
2013                 for (hpi_idx = 0; hpi_idx < hp_sizes; hpi_idx++) {
2014                         uint64_t max_pagesz_mem, cur_pagesz_mem = 0;
2015                         uint64_t hugepage_sz;
2016                         struct hugepage_info *hpi;
2017                         int type_msl_idx, max_segs, total_segs = 0;
2018
2019                         hpi = &internal_config.hugepage_info[hpi_idx];
2020                         hugepage_sz = hpi->hugepage_sz;
2021
2022                         /* check if pages are actually available */
2023                         if (hpi->num_pages[socket_id] == 0)
2024                                 continue;
2025
2026                         max_segs = RTE_MAX_MEMSEG_PER_TYPE;
2027                         max_pagesz_mem = max_socket_mem - cur_socket_mem;
2028
2029                         /* make it multiple of page size */
2030                         max_pagesz_mem = RTE_ALIGN_FLOOR(max_pagesz_mem,
2031                                         hugepage_sz);
2032
2033                         RTE_LOG(DEBUG, EAL, "Attempting to preallocate "
2034                                         "%" PRIu64 "M on socket %i\n",
2035                                         max_pagesz_mem >> 20, socket_id);
2036
2037                         type_msl_idx = 0;
2038                         while (cur_pagesz_mem < max_pagesz_mem &&
2039                                         total_segs < max_segs) {
2040                                 uint64_t cur_mem;
2041                                 unsigned int n_segs;
2042
2043                                 if (msl_idx >= RTE_MAX_MEMSEG_LISTS) {
2044                                         RTE_LOG(ERR, EAL,
2045                                                 "No more space in memseg lists, please increase %s\n",
2046                                                 RTE_STR(CONFIG_RTE_MAX_MEMSEG_LISTS));
2047                                         return -1;
2048                                 }
2049
2050                                 msl = &mcfg->memsegs[msl_idx];
2051
2052                                 cur_mem = get_mem_amount(hugepage_sz,
2053                                                 max_pagesz_mem);
2054                                 n_segs = cur_mem / hugepage_sz;
2055
2056                                 if (alloc_memseg_list(msl, hugepage_sz, n_segs,
2057                                                 socket_id, type_msl_idx)) {
2058                                         /* failing to allocate a memseg list is
2059                                          * a serious error.
2060                                          */
2061                                         RTE_LOG(ERR, EAL, "Cannot allocate memseg list\n");
2062                                         return -1;
2063                                 }
2064
2065                                 if (alloc_va_space(msl)) {
2066                                         /* if we couldn't allocate VA space, we
2067                                          * can try with smaller page sizes.
2068                                          */
2069                                         RTE_LOG(ERR, EAL, "Cannot allocate VA space for memseg list, retrying with different page size\n");
2070                                         /* deallocate memseg list */
2071                                         if (free_memseg_list(msl))
2072                                                 return -1;
2073                                         break;
2074                                 }
2075
2076                                 total_segs += msl->memseg_arr.len;
2077                                 cur_pagesz_mem = total_segs * hugepage_sz;
2078                                 type_msl_idx++;
2079                                 msl_idx++;
2080                         }
2081                         cur_socket_mem += cur_pagesz_mem;
2082                 }
2083                 if (cur_socket_mem == 0) {
2084                         RTE_LOG(ERR, EAL, "Cannot allocate VA space on socket %u\n",
2085                                 socket_id);
2086                         return -1;
2087                 }
2088         }
2089
2090         return 0;
2091 }
2092
2093 static int __rte_unused
2094 memseg_primary_init(void)
2095 {
2096         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
2097         int i, socket_id, hpi_idx, msl_idx = 0;
2098         struct rte_memseg_list *msl;
2099         uint64_t max_mem, total_mem;
2100
2101         /* no-huge does not need this at all */
2102         if (internal_config.no_hugetlbfs)
2103                 return 0;
2104
2105         max_mem = (uint64_t)RTE_MAX_MEM_MB << 20;
2106         total_mem = 0;
2107
2108         /* create memseg lists */
2109         for (hpi_idx = 0; hpi_idx < (int) internal_config.num_hugepage_sizes;
2110                         hpi_idx++) {
2111                 struct hugepage_info *hpi;
2112                 uint64_t hugepage_sz;
2113
2114                 hpi = &internal_config.hugepage_info[hpi_idx];
2115                 hugepage_sz = hpi->hugepage_sz;
2116
2117                 for (i = 0; i < (int) rte_socket_count(); i++) {
2118                         uint64_t max_type_mem, total_type_mem = 0;
2119                         int type_msl_idx, max_segs, total_segs = 0;
2120
2121                         socket_id = rte_socket_id_by_idx(i);
2122
2123 #ifndef RTE_EAL_NUMA_AWARE_HUGEPAGES
2124                         if (socket_id > 0)
2125                                 break;
2126 #endif
2127
2128                         if (total_mem >= max_mem)
2129                                 break;
2130
2131                         max_type_mem = RTE_MIN(max_mem - total_mem,
2132                                 (uint64_t)RTE_MAX_MEM_MB_PER_TYPE << 20);
2133                         max_segs = RTE_MAX_MEMSEG_PER_TYPE;
2134
2135                         type_msl_idx = 0;
2136                         while (total_type_mem < max_type_mem &&
2137                                         total_segs < max_segs) {
2138                                 uint64_t cur_max_mem, cur_mem;
2139                                 unsigned int n_segs;
2140
2141                                 if (msl_idx >= RTE_MAX_MEMSEG_LISTS) {
2142                                         RTE_LOG(ERR, EAL,
2143                                                 "No more space in memseg lists, please increase %s\n",
2144                                                 RTE_STR(CONFIG_RTE_MAX_MEMSEG_LISTS));
2145                                         return -1;
2146                                 }
2147
2148                                 msl = &mcfg->memsegs[msl_idx++];
2149
2150                                 cur_max_mem = max_type_mem - total_type_mem;
2151
2152                                 cur_mem = get_mem_amount(hugepage_sz,
2153                                                 cur_max_mem);
2154                                 n_segs = cur_mem / hugepage_sz;
2155
2156                                 if (alloc_memseg_list(msl, hugepage_sz, n_segs,
2157                                                 socket_id, type_msl_idx))
2158                                         return -1;
2159
2160                                 total_segs += msl->memseg_arr.len;
2161                                 total_type_mem = total_segs * hugepage_sz;
2162                                 type_msl_idx++;
2163
2164                                 if (alloc_va_space(msl)) {
2165                                         RTE_LOG(ERR, EAL, "Cannot allocate VA space for memseg list\n");
2166                                         return -1;
2167                                 }
2168                         }
2169                         total_mem += total_type_mem;
2170                 }
2171         }
2172         return 0;
2173 }
2174
2175 static int
2176 memseg_secondary_init(void)
2177 {
2178         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
2179         int msl_idx = 0;
2180         struct rte_memseg_list *msl;
2181
2182         for (msl_idx = 0; msl_idx < RTE_MAX_MEMSEG_LISTS; msl_idx++) {
2183
2184                 msl = &mcfg->memsegs[msl_idx];
2185
2186                 /* skip empty memseg lists */
2187                 if (msl->memseg_arr.len == 0)
2188                         continue;
2189
2190                 if (rte_fbarray_attach(&msl->memseg_arr)) {
2191                         RTE_LOG(ERR, EAL, "Cannot attach to primary process memseg lists\n");
2192                         return -1;
2193                 }
2194
2195                 /* preallocate VA space */
2196                 if (alloc_va_space(msl)) {
2197                         RTE_LOG(ERR, EAL, "Cannot preallocate VA space for hugepage memory\n");
2198                         return -1;
2199                 }
2200         }
2201
2202         return 0;
2203 }
2204
2205 int
2206 rte_eal_memseg_init(void)
2207 {
2208         return rte_eal_process_type() == RTE_PROC_PRIMARY ?
2209 #ifndef RTE_ARCH_64
2210                         memseg_primary_init_32() :
2211 #else
2212                         memseg_primary_init() :
2213 #endif
2214                         memseg_secondary_init();
2215 }