1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2017-2018 Intel Corporation
*/
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <unistd.h>
#include <limits.h>
#include <fcntl.h>
#include <signal.h>
#include <setjmp.h>
#include <linux/memfd.h>
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
#include <numa.h>
#include <numaif.h>
#endif
#include <linux/falloc.h>
#include <linux/mman.h> /* for hugetlb-related mmap flags */
#include <rte_common.h>
#include <rte_log.h>
#include <rte_eal.h>
#include <rte_memory.h>
#include "eal_filesystem.h"
#include "eal_internal_cfg.h"
#include "eal_memalloc.h"
#include "eal_memcfg.h"
#include "eal_private.h"
const int anonymous_hugepages_supported =
#ifdef MAP_HUGE_SHIFT
1;
#define RTE_MAP_HUGE_SHIFT MAP_HUGE_SHIFT
#else
0;
#define RTE_MAP_HUGE_SHIFT 26
#endif
/*
* not all kernel version support fallocate on hugetlbfs, so fall back to
* ftruncate and disallow deallocation if fallocate is not supported.
*/
static int fallocate_supported = -1; /* unknown */
/*
* we have two modes - single file segments, and file-per-page mode.
*
* for single-file segments, we use memseg_list_fd to store the segment fd,
* while the fds[] will not be allocated, and len will be set to 0.
*
* for file-per-page mode, each page will have its own fd, so 'memseg_list_fd'
* will be invalid (set to -1), and we'll use 'fds' to keep track of page fd's.
*
* we cannot know how many pages a system will have in advance, but we do know
* that they come in lists, and we know lengths of these lists. so, simply store
* a malloc'd array of fd's indexed by list and segment index.
*
* they will be initialized at startup, and filled as we allocate/deallocate
* segments.
*/
static struct {
int *fds; /**< dynamically allocated array of segment lock fd's */
int memseg_list_fd; /**< memseg list fd */
int len; /**< total length of the array */
int count; /**< entries used in an array */
} fd_list[RTE_MAX_MEMSEG_LISTS];
/** local copy of a memory map, used to synchronize memory hotplug in MP */
static struct rte_memseg_list local_memsegs[RTE_MAX_MEMSEG_LISTS];
static sigjmp_buf huge_jmpenv;
static void huge_sigbus_handler(int signo __rte_unused)
{
siglongjmp(huge_jmpenv, 1);
}
/* Put setjmp into a wrap method to avoid compiling error. Any non-volatile,
* non-static local variable in the stack frame calling sigsetjmp might be
* clobbered by a call to longjmp.
*/
static int huge_wrap_sigsetjmp(void)
{
return sigsetjmp(huge_jmpenv, 1);
}
static struct sigaction huge_action_old;
static int huge_need_recover;
static void
huge_register_sigbus(void)
{
sigset_t mask;
struct sigaction action;
sigemptyset(&mask);
sigaddset(&mask, SIGBUS);
action.sa_flags = 0;
action.sa_mask = mask;
action.sa_handler = huge_sigbus_handler;
huge_need_recover = !sigaction(SIGBUS, &action, &huge_action_old);
}
static void
huge_recover_sigbus(void)
{
if (huge_need_recover) {
sigaction(SIGBUS, &huge_action_old, NULL);
huge_need_recover = 0;
}
}
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
static bool
check_numa(void)
{
bool ret = true;
/* Check if kernel supports NUMA. */
if (numa_available() != 0) {
EAL_LOG(DEBUG, "NUMA is not supported.");
ret = false;
}
return ret;
}
static void
prepare_numa(int *oldpolicy, struct bitmask *oldmask, int socket_id)
{
EAL_LOG(DEBUG, "Trying to obtain current memory policy.");
if (get_mempolicy(oldpolicy, oldmask->maskp,
oldmask->size + 1, 0, 0) < 0) {
EAL_LOG(ERR,
"Failed to get current mempolicy: %s. "
"Assuming MPOL_DEFAULT.", strerror(errno));
*oldpolicy = MPOL_DEFAULT;
}
EAL_LOG(DEBUG,
"Setting policy MPOL_PREFERRED for socket %d",
socket_id);
numa_set_preferred(socket_id);
}
static void
restore_numa(int *oldpolicy, struct bitmask *oldmask)
{
EAL_LOG(DEBUG,
"Restoring previous memory policy: %d", *oldpolicy);
if (*oldpolicy == MPOL_DEFAULT) {
numa_set_localalloc();
} else if (set_mempolicy(*oldpolicy, oldmask->maskp,
oldmask->size + 1) < 0) {
EAL_LOG(ERR, "Failed to restore mempolicy: %s",
strerror(errno));
numa_set_localalloc();
}
numa_free_cpumask(oldmask);
}
#endif
/*
* uses fstat to report the size of a file on disk
*/
static off_t
get_file_size(int fd)
{
struct stat st;
if (fstat(fd, &st) < 0)
return 0;
return st.st_size;
}
static int
pagesz_flags(uint64_t page_sz)
{
/* as per mmap() manpage, all page sizes are log2 of page size
* shifted by MAP_HUGE_SHIFT
*/
int log2 = rte_log2_u64(page_sz);
return log2 << RTE_MAP_HUGE_SHIFT;
}
/* returns 1 on successful lock, 0 on unsuccessful lock, -1 on error */
static int lock(int fd, int type)
{
int ret;
/* flock may be interrupted */
do {
ret = flock(fd, type | LOCK_NB);
} while (ret && errno == EINTR);
if (ret && errno == EWOULDBLOCK) {
/* couldn't lock */
return 0;
} else if (ret) {
EAL_LOG(ERR, "%s(): error calling flock(): %s",
__func__, strerror(errno));
return -1;
}
/* lock was successful */
return 1;
}
static int
get_seg_memfd(struct hugepage_info *hi __rte_unused,
unsigned int list_idx __rte_unused,
unsigned int seg_idx __rte_unused)
{
int fd;
char segname[250]; /* as per manpage, limit is 249 bytes plus null */
int flags = MFD_HUGETLB | pagesz_flags(hi->hugepage_sz);
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (internal_conf->single_file_segments) {
fd = fd_list[list_idx].memseg_list_fd;
if (fd < 0) {
snprintf(segname, sizeof(segname), "seg_%i", list_idx);
fd = memfd_create(segname, flags);
if (fd < 0) {
EAL_LOG(DEBUG, "%s(): memfd create failed: %s",
__func__, strerror(errno));
return -1;
}
fd_list[list_idx].memseg_list_fd = fd;
}
} else {
fd = fd_list[list_idx].fds[seg_idx];
if (fd < 0) {
snprintf(segname, sizeof(segname), "seg_%i-%i",
list_idx, seg_idx);
fd = memfd_create(segname, flags);
if (fd < 0) {
EAL_LOG(DEBUG, "%s(): memfd create failed: %s",
__func__, strerror(errno));
return -1;
}
fd_list[list_idx].fds[seg_idx] = fd;
}
}
return fd;
}
static int
get_seg_fd(char *path, int buflen, struct hugepage_info *hi,
unsigned int list_idx, unsigned int seg_idx,
bool *dirty)
{
int fd;
int *out_fd;
struct stat st;
int ret;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (dirty != NULL)
*dirty = false;
/* for in-memory mode, we only make it here when we're sure we support
* memfd, and this is a special case.
*/
if (internal_conf->in_memory)
return get_seg_memfd(hi, list_idx, seg_idx);
if (internal_conf->single_file_segments) {
out_fd = &fd_list[list_idx].memseg_list_fd;
eal_get_hugefile_path(path, buflen, hi->hugedir, list_idx);
} else {
out_fd = &fd_list[list_idx].fds[seg_idx];
eal_get_hugefile_path(path, buflen, hi->hugedir,
list_idx * RTE_MAX_MEMSEG_PER_LIST + seg_idx);
}
fd = *out_fd;
if (fd >= 0)
return fd;
/*
* There is no TOCTOU between stat() and unlink()/open()
* because the hugepage directory is locked.
*/
ret = stat(path, &st);
if (ret < 0 && errno != ENOENT) {
EAL_LOG(DEBUG, "%s(): stat() for '%s' failed: %s",
__func__, path, strerror(errno));
return -1;
}
if (!internal_conf->hugepage_file.unlink_existing && ret == 0 &&
dirty != NULL)
*dirty = true;
/*
* The kernel clears a hugepage only when it is mapped
* from a particular file for the first time.
* If the file already exists, the old content will be mapped.
* If the memory manager assumes all mapped pages to be clean,
* the file must be removed and created anew.
* Otherwise, the primary caller must be notified
* that mapped pages will be dirty
* (secondary callers receive the segment state from the primary one).
* When multiple hugepages are mapped from the same file,
* whether they will be dirty depends on the part that is mapped.
*/
if (!internal_conf->single_file_segments &&
internal_conf->hugepage_file.unlink_existing &&
rte_eal_process_type() == RTE_PROC_PRIMARY &&
ret == 0) {
/* coverity[toctou] */
if (unlink(path) < 0) {
EAL_LOG(DEBUG, "%s(): could not remove '%s': %s",
__func__, path, strerror(errno));
return -1;
}
}
/* coverity[toctou] */
fd = open(path, O_CREAT | O_RDWR, 0600);
if (fd < 0) {
EAL_LOG(ERR, "%s(): open '%s' failed: %s",
__func__, path, strerror(errno));
return -1;
}
/* take out a read lock */
if (lock(fd, LOCK_SH) < 0) {
EAL_LOG(ERR, "%s(): lock '%s' failed: %s",
__func__, path, strerror(errno));
close(fd);
return -1;
}
*out_fd = fd;
return fd;
}
static int
resize_hugefile_in_memory(int fd, uint64_t fa_offset,
uint64_t page_sz, bool grow)
{
int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |
FALLOC_FL_KEEP_SIZE;
int ret;
/* grow or shrink the file */
ret = fallocate(fd, flags, fa_offset, page_sz);
if (ret < 0) {
EAL_LOG(DEBUG, "%s(): fallocate() failed: %s",
__func__,
strerror(errno));
return -1;
}
return 0;
}
static int
resize_hugefile_in_filesystem(int fd, uint64_t fa_offset, uint64_t page_sz,
bool grow, bool *dirty)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
bool again = false;
do {
if (fallocate_supported == 0) {
/* we cannot deallocate memory if fallocate() is not
* supported, and hugepage file is already locked at
* creation, so no further synchronization needed.
*/
if (!grow) {
EAL_LOG(DEBUG, "%s(): fallocate not supported, not freeing page back to the system",
__func__);
return -1;
}
uint64_t new_size = fa_offset + page_sz;
uint64_t cur_size = get_file_size(fd);
/* fallocate isn't supported, fall back to ftruncate */
if (dirty != NULL)
*dirty = new_size <= cur_size;
if (new_size > cur_size &&
ftruncate(fd, new_size) < 0) {
EAL_LOG(DEBUG, "%s(): ftruncate() failed: %s",
__func__, strerror(errno));
return -1;
}
} else {
int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |
FALLOC_FL_KEEP_SIZE;
int ret;
/*
* technically, it is perfectly safe for both primary
* and secondary to grow and shrink the page files:
* growing the file repeatedly has no effect because
* a page can only be allocated once, while mmap ensures
* that secondaries hold on to the page even after the
* page itself is removed from the filesystem.
*
* however, leaving growing/shrinking to the primary
* tends to expose bugs in fdlist page count handling,
* so leave this here just in case.
*/
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
/* grow or shrink the file */
ret = fallocate(fd, flags, fa_offset, page_sz);
if (ret < 0) {
if (fallocate_supported == -1 &&
errno == ENOTSUP) {
EAL_LOG(ERR, "%s(): fallocate() not supported, hugepage deallocation will be disabled",
__func__);
again = true;
fallocate_supported = 0;
} else {
EAL_LOG(DEBUG, "%s(): fallocate() failed: %s",
__func__,
strerror(errno));
return -1;
}
} else {
fallocate_supported = 1;
/*
* It is unknown which portions of an existing
* hugepage file were allocated previously,
* so all pages within the file are considered
* dirty, unless the file is a fresh one.
*/
if (dirty != NULL)
*dirty &= !internal_conf->hugepage_file.unlink_existing;
}
}
} while (again);
return 0;
}
static void
close_hugefile(int fd, char *path, int list_idx)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/*
* primary process must unlink the file, but only when not in in-memory
* mode (as in that case there is no file to unlink).
*/
if (!internal_conf->in_memory &&
rte_eal_process_type() == RTE_PROC_PRIMARY &&
unlink(path))
EAL_LOG(ERR, "%s(): unlinking '%s' failed: %s",
__func__, path, strerror(errno));
close(fd);
fd_list[list_idx].memseg_list_fd = -1;
}
static int
resize_hugefile(int fd, uint64_t fa_offset, uint64_t page_sz, bool grow,
bool *dirty)
{
/* in-memory mode is a special case, because we can be sure that
* fallocate() is supported.
*/
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (internal_conf->in_memory) {
if (dirty != NULL)
*dirty = false;
return resize_hugefile_in_memory(fd, fa_offset,
page_sz, grow);
}
return resize_hugefile_in_filesystem(fd, fa_offset, page_sz,
grow, dirty);
}
static int
alloc_seg(struct rte_memseg *ms, void *addr, int socket_id,
struct hugepage_info *hi, unsigned int list_idx,
unsigned int seg_idx)
{
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
int cur_socket_id = 0;
#endif
uint64_t map_offset;
rte_iova_t iova;
void *va;
char path[PATH_MAX];
int ret = 0;
int fd;
bool dirty;
size_t alloc_sz;
int flags;
void *new_addr;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
alloc_sz = hi->hugepage_sz;
/* these are checked at init, but code analyzers don't know that */
if (internal_conf->in_memory && !anonymous_hugepages_supported) {
EAL_LOG(ERR, "Anonymous hugepages not supported, in-memory mode cannot allocate memory");
return -1;
}
/* use memfd for in-memory mode */
int mmap_flags;
/* takes out a read lock on segment or segment list */
fd = get_seg_fd(path, sizeof(path), hi, list_idx, seg_idx, &dirty);
if (fd < 0) {
EAL_LOG(ERR, "Couldn't get fd on hugepage file");
return -1;
}
if (internal_conf->single_file_segments) {
map_offset = seg_idx * alloc_sz;
ret = resize_hugefile(fd, map_offset, alloc_sz, true, &dirty);
if (ret < 0)
goto resized;
fd_list[list_idx].count++;
} else {
map_offset = 0;
if (ftruncate(fd, alloc_sz) < 0) {
EAL_LOG(DEBUG, "%s(): ftruncate() failed: %s", __func__, strerror(errno));
goto resized;
}
if (internal_conf->hugepage_file.unlink_before_mapping &&
!internal_conf->in_memory) {
if (unlink(path)) {
EAL_LOG(DEBUG, "%s(): unlink() failed: %s",
__func__, strerror(errno));
goto resized;
}
}
}
mmap_flags = MAP_SHARED | MAP_POPULATE | MAP_FIXED;
huge_register_sigbus();
/*
* map the segment, and populate page tables, the kernel fills
* this segment with zeros if it's a new page.
*/
va = mmap(addr, alloc_sz, PROT_READ | PROT_WRITE, mmap_flags, fd,
map_offset);
if (va == MAP_FAILED) {
EAL_LOG(DEBUG, "%s(): mmap() failed: %s", __func__,
strerror(errno));
/* mmap failed, but the previous region might have been
* unmapped anyway. try to remap it
*/
goto unmapped;
}
if (va != addr) {
EAL_LOG(DEBUG, "%s(): wrong mmap() address", __func__);
munmap(va, alloc_sz);
goto resized;
}
/* In linux, hugetlb limitations, like cgroup, are
* enforced at fault time instead of mmap(), even
* with the option of MAP_POPULATE. Kernel will send
* a SIGBUS signal. To avoid to be killed, save stack
* environment here, if SIGBUS happens, we can jump
* back here.
*/
if (huge_wrap_sigsetjmp()) {
EAL_LOG(DEBUG, "SIGBUS: Cannot mmap more hugepages of size %uMB",
(unsigned int)(alloc_sz >> 20));
goto mapped;
}
/* we need to trigger a write to the page to enforce page fault and
* ensure that page is accessible to us, but we can't overwrite value
* that is already there, so read the old value, and write itback.
* kernel populates the page with zeroes initially.
*/
*(volatile int *)addr = *(volatile int *)addr;
iova = rte_mem_virt2iova(addr);
if (iova == RTE_BAD_PHYS_ADDR) {
EAL_LOG(DEBUG, "%s(): can't get IOVA addr",
__func__);
goto mapped;
}
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
/*
* If the kernel has been built without NUMA support, get_mempolicy()
* will return an error. If check_numa() returns false, memory
* allocation is not NUMA aware and the socket_id should not be
* checked.
*/
if (check_numa()) {
ret = get_mempolicy(&cur_socket_id, NULL, 0, addr,
MPOL_F_NODE | MPOL_F_ADDR);
if (ret < 0) {
EAL_LOG(DEBUG, "%s(): get_mempolicy: %s",
__func__, strerror(errno));
goto mapped;
} else if (cur_socket_id != socket_id) {
EAL_LOG(DEBUG,
"%s(): allocation happened on wrong socket (wanted %d, got %d)",
__func__, socket_id, cur_socket_id);
goto mapped;
}
}
#else
if (rte_socket_count() > 1)
EAL_LOG(DEBUG, "%s(): not checking hugepage NUMA node.",
__func__);
#endif
huge_recover_sigbus();
ms->addr = addr;
ms->hugepage_sz = alloc_sz;
ms->len = alloc_sz;
ms->nchannel = rte_memory_get_nchannel();
ms->nrank = rte_memory_get_nrank();
ms->iova = iova;
ms->socket_id = socket_id;
ms->flags = dirty ? RTE_MEMSEG_FLAG_DIRTY : 0;
return 0;
mapped:
munmap(addr, alloc_sz);
unmapped:
huge_recover_sigbus();
flags = EAL_RESERVE_FORCE_ADDRESS;
new_addr = eal_get_virtual_area(addr, &alloc_sz, alloc_sz, 0, flags);
if (new_addr != addr) {
if (new_addr != NULL)
munmap(new_addr, alloc_sz);
/* we're leaving a hole in our virtual address space. if
* somebody else maps this hole now, we could accidentally
* override it in the future.
*/
EAL_LOG(CRIT, "Can't mmap holes in our virtual address space");
}
/* roll back the ref count */
if (internal_conf->single_file_segments)
fd_list[list_idx].count--;
resized:
/* some codepaths will return negative fd, so exit early */
if (fd < 0)
return -1;
if (internal_conf->single_file_segments) {
resize_hugefile(fd, map_offset, alloc_sz, false, NULL);
/* ignore failure, can't make it any worse */
/* if refcount is at zero, close the file */
if (fd_list[list_idx].count == 0)
close_hugefile(fd, path, list_idx);
} else {
/* only remove file if we can take out a write lock */
if (!internal_conf->hugepage_file.unlink_before_mapping &&
internal_conf->in_memory == 0 &&
lock(fd, LOCK_EX) == 1)
unlink(path);
close(fd);
fd_list[list_idx].fds[seg_idx] = -1;
}
return -1;
}
static int
free_seg(struct rte_memseg *ms, struct hugepage_info *hi,
unsigned int list_idx, unsigned int seg_idx)
{
uint64_t map_offset;
char path[PATH_MAX];
int fd, ret = 0;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* erase page data */
memset(ms->addr, 0, ms->len);
if (mmap(ms->addr, ms->len, PROT_NONE,
MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0) ==
MAP_FAILED) {
EAL_LOG(DEBUG, "couldn't unmap page");
return -1;
}
eal_mem_set_dump(ms->addr, ms->len, false);
/* if we are not in single file segments mode, we're going to unmap the
* segment and thus drop the lock on original fd, but hugepage dir is
* now locked so we can take out another one without races.
*/
fd = get_seg_fd(path, sizeof(path), hi, list_idx, seg_idx, NULL);
if (fd < 0)
return -1;
if (internal_conf->single_file_segments) {
map_offset = seg_idx * ms->len;
if (resize_hugefile(fd, map_offset, ms->len, false, NULL))
return -1;
if (--(fd_list[list_idx].count) == 0)
close_hugefile(fd, path, list_idx);
ret = 0;
} else {
/* if we're able to take out a write lock, we're the last one
* holding onto this page.
*/
if (!internal_conf->in_memory &&
internal_conf->hugepage_file.unlink_existing &&
!internal_conf->hugepage_file.unlink_before_mapping) {
ret = lock(fd, LOCK_EX);
if (ret >= 0) {
/* no one else is using this page */
if (ret == 1)
unlink(path);
}
}
/* closing fd will drop the lock */
close(fd);
fd_list[list_idx].fds[seg_idx] = -1;
}
memset(ms, 0, sizeof(*ms));
return ret < 0 ? -1 : 0;
}
struct alloc_walk_param {
struct hugepage_info *hi;
struct rte_memseg **ms;
size_t page_sz;
unsigned int segs_allocated;
unsigned int n_segs;
int socket;
bool exact;
};
static int
alloc_seg_walk(const struct rte_memseg_list *msl, void *arg)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
struct alloc_walk_param *wa = arg;
struct rte_memseg_list *cur_msl;
size_t page_sz;
int cur_idx, start_idx, j, dir_fd = -1;
unsigned int msl_idx, need, i;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (msl->page_sz != wa->page_sz)
return 0;
if (msl->socket_id != wa->socket)
return 0;
page_sz = (size_t)msl->page_sz;
msl_idx = msl - mcfg->memsegs;
cur_msl = &mcfg->memsegs[msl_idx];
need = wa->n_segs;
/* try finding space in memseg list */
if (wa->exact) {
/* if we require exact number of pages in a list, find them */
cur_idx = rte_fbarray_find_next_n_free(&cur_msl->memseg_arr, 0,
need);
if (cur_idx < 0)
return 0;
start_idx = cur_idx;
} else {
int cur_len;
/* we don't require exact number of pages, so we're going to go
* for best-effort allocation. that means finding the biggest
* unused block, and going with that.
*/
cur_idx = rte_fbarray_find_biggest_free(&cur_msl->memseg_arr,
0);
if (cur_idx < 0)
return 0;
start_idx = cur_idx;
/* adjust the size to possibly be smaller than original
* request, but do not allow it to be bigger.
*/
cur_len = rte_fbarray_find_contig_free(&cur_msl->memseg_arr,
cur_idx);
need = RTE_MIN(need, (unsigned int)cur_len);
}
/* do not allow any page allocations during the time we're allocating,
* because file creation and locking operations are not atomic,
* and we might be the first or the last ones to use a particular page,
* so we need to ensure atomicity of every operation.
*
* during init, we already hold a write lock, so don't try to take out
* another one.
*/
if (wa->hi->lock_descriptor == -1 && !internal_conf->in_memory) {
dir_fd = open(wa->hi->hugedir, O_RDONLY);
if (dir_fd < 0) {
EAL_LOG(ERR, "%s(): Cannot open '%s': %s",
__func__, wa->hi->hugedir, strerror(errno));
return -1;
}
/* blocking writelock */
if (flock(dir_fd, LOCK_EX)) {
EAL_LOG(ERR, "%s(): Cannot lock '%s': %s",
__func__, wa->hi->hugedir, strerror(errno));
close(dir_fd);
return -1;
}
}
for (i = 0; i < need; i++, cur_idx++) {
struct rte_memseg *cur;
void *map_addr;
cur = rte_fbarray_get(&cur_msl->memseg_arr, cur_idx);
map_addr = RTE_PTR_ADD(cur_msl->base_va,
cur_idx * page_sz);
if (alloc_seg(cur, map_addr, wa->socket, wa->hi,
msl_idx, cur_idx)) {
EAL_LOG(DEBUG, "attempted to allocate %i segments, but only %i were allocated",
need, i);
/* if exact number wasn't requested, stop */
if (!wa->exact)
goto out;
/* clean up */
for (j = start_idx; j < cur_idx; j++) {
struct rte_memseg *tmp;
struct rte_fbarray *arr =
&cur_msl->memseg_arr;
tmp = rte_fbarray_get(arr, j);
rte_fbarray_set_free(arr, j);
/* free_seg may attempt to create a file, which
* may fail.
*/
if (free_seg(tmp, wa->hi, msl_idx, j))
EAL_LOG(DEBUG, "Cannot free page");
}
/* clear the list */
if (wa->ms)
memset(wa->ms, 0, sizeof(*wa->ms) * wa->n_segs);
if (dir_fd >= 0)
close(dir_fd);
return -1;
}
if (wa->ms)
wa->ms[i] = cur;
rte_fbarray_set_used(&cur_msl->memseg_arr, cur_idx);
}
out:
wa->segs_allocated = i;
if (i > 0)
cur_msl->version++;
if (dir_fd >= 0)
close(dir_fd);
/* if we didn't allocate any segments, move on to the next list */
return i > 0;
}
struct free_walk_param {
struct hugepage_info *hi;
struct rte_memseg *ms;
};
static int
free_seg_walk(const struct rte_memseg_list *msl, void *arg)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
struct rte_memseg_list *found_msl;
struct free_walk_param *wa = arg;
uintptr_t start_addr, end_addr;
int msl_idx, seg_idx, ret, dir_fd = -1;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
start_addr = (uintptr_t) msl->base_va;
end_addr = start_addr + msl->len;
if ((uintptr_t)wa->ms->addr < start_addr ||
(uintptr_t)wa->ms->addr >= end_addr)
return 0;
msl_idx = msl - mcfg->memsegs;
seg_idx = RTE_PTR_DIFF(wa->ms->addr, start_addr) / msl->page_sz;
/* msl is const */
found_msl = &mcfg->memsegs[msl_idx];
/* do not allow any page allocations during the time we're freeing,
* because file creation and locking operations are not atomic,
* and we might be the first or the last ones to use a particular page,
* so we need to ensure atomicity of every operation.
*
* during init, we already hold a write lock, so don't try to take out
* another one.
*/
if (wa->hi->lock_descriptor == -1 && !internal_conf->in_memory) {
dir_fd = open(wa->hi->hugedir, O_RDONLY);
if (dir_fd < 0) {
EAL_LOG(ERR, "%s(): Cannot open '%s': %s",
__func__, wa->hi->hugedir, strerror(errno));
return -1;
}
/* blocking writelock */
if (flock(dir_fd, LOCK_EX)) {
EAL_LOG(ERR, "%s(): Cannot lock '%s': %s",
__func__, wa->hi->hugedir, strerror(errno));
close(dir_fd);
return -1;
}
}
found_msl->version++;
rte_fbarray_set_free(&found_msl->memseg_arr, seg_idx);
ret = free_seg(wa->ms, wa->hi, msl_idx, seg_idx);
if (dir_fd >= 0)
close(dir_fd);
if (ret < 0)
return -1;
return 1;
}
int
eal_memalloc_alloc_seg_bulk(struct rte_memseg **ms, int n_segs, size_t page_sz,
int socket, bool exact)
{
int i, ret = -1;
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
bool have_numa = false;
int oldpolicy;
struct bitmask *oldmask;
#endif
struct alloc_walk_param wa;
struct hugepage_info *hi = NULL;
struct internal_config *internal_conf =
eal_get_internal_configuration();
memset(&wa, 0, sizeof(wa));
/* dynamic allocation not supported in legacy mode */
if (internal_conf->legacy_mem)
return -1;
for (i = 0; i < (int) RTE_DIM(internal_conf->hugepage_info); i++) {
if (page_sz ==
internal_conf->hugepage_info[i].hugepage_sz) {
hi = &internal_conf->hugepage_info[i];
break;
}
}
if (!hi) {
EAL_LOG(ERR, "%s(): can't find relevant hugepage_info entry",
__func__);
return -1;
}
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
if (check_numa()) {
oldmask = numa_allocate_nodemask();
prepare_numa(&oldpolicy, oldmask, socket);
have_numa = true;
}
#endif
wa.exact = exact;
wa.hi = hi;
wa.ms = ms;
wa.n_segs = n_segs;
wa.page_sz = page_sz;
wa.socket = socket;
wa.segs_allocated = 0;
/* memalloc is locked, so it's safe to use thread-unsafe version */
ret = rte_memseg_list_walk_thread_unsafe(alloc_seg_walk, &wa);
if (ret == 0) {
EAL_LOG(DEBUG, "%s(): couldn't find suitable memseg_list",
__func__);
ret = -1;
} else if (ret > 0) {
ret = (int)wa.segs_allocated;
}
#ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES
if (have_numa)
restore_numa(&oldpolicy, oldmask);
#endif
return ret;
}
struct rte_memseg *
eal_memalloc_alloc_seg(size_t page_sz, int socket)
{
struct rte_memseg *ms;
if (eal_memalloc_alloc_seg_bulk(&ms, 1, page_sz, socket, true) < 0)
return NULL;
/* return pointer to newly allocated memseg */
return ms;
}
int
eal_memalloc_free_seg_bulk(struct rte_memseg **ms, int n_segs)
{
int seg, ret = 0;
struct internal_config *internal_conf =
eal_get_internal_configuration();
/* dynamic free not supported in legacy mode */
if (internal_conf->legacy_mem)
return -1;
for (seg = 0; seg < n_segs; seg++) {
struct rte_memseg *cur = ms[seg];
struct hugepage_info *hi = NULL;
struct free_walk_param wa;
int i, walk_res;
/* if this page is marked as unfreeable, fail */
if (cur->flags & RTE_MEMSEG_FLAG_DO_NOT_FREE) {
EAL_LOG(DEBUG, "Page is not allowed to be freed");
ret = -1;
continue;
}
memset(&wa, 0, sizeof(wa));
for (i = 0; i < (int)RTE_DIM(internal_conf->hugepage_info);
i++) {
hi = &internal_conf->hugepage_info[i];
if (cur->hugepage_sz == hi->hugepage_sz)
break;
}
if (i == (int)RTE_DIM(internal_conf->hugepage_info)) {
EAL_LOG(ERR, "Can't find relevant hugepage_info entry");
ret = -1;
continue;
}
wa.ms = cur;
wa.hi = hi;
/* memalloc is locked, so it's safe to use thread-unsafe version
*/
walk_res = rte_memseg_list_walk_thread_unsafe(free_seg_walk,
&wa);
if (walk_res == 1)
continue;
if (walk_res == 0)
EAL_LOG(ERR, "Couldn't find memseg list");
ret = -1;
}
return ret;
}
int
eal_memalloc_free_seg(struct rte_memseg *ms)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* dynamic free not supported in legacy mode */
if (internal_conf->legacy_mem)
return -1;
return eal_memalloc_free_seg_bulk(&ms, 1);
}
static int
sync_chunk(struct rte_memseg_list *primary_msl,
struct rte_memseg_list *local_msl, struct hugepage_info *hi,
unsigned int msl_idx, bool used, int start, int end)
{
struct rte_fbarray *l_arr, *p_arr;
int i, ret, chunk_len, diff_len;
l_arr = &local_msl->memseg_arr;
p_arr = &primary_msl->memseg_arr;
/* we need to aggregate allocations/deallocations into bigger chunks,
* as we don't want to spam the user with per-page callbacks.
*
* to avoid any potential issues, we also want to trigger
* deallocation callbacks *before* we actually deallocate
* memory, so that the user application could wrap up its use
* before it goes away.
*/
chunk_len = end - start;
/* find how many contiguous pages we can map/unmap for this chunk */
diff_len = used ?
rte_fbarray_find_contig_free(l_arr, start) :
rte_fbarray_find_contig_used(l_arr, start);
/* has to be at least one page */
if (diff_len < 1)
return -1;
diff_len = RTE_MIN(chunk_len, diff_len);
/* if we are freeing memory, notify the application */
if (!used) {
struct rte_memseg *ms;
void *start_va;
size_t len, page_sz;
ms = rte_fbarray_get(l_arr, start);
start_va = ms->addr;
page_sz = (size_t)primary_msl->page_sz;
len = page_sz * diff_len;
eal_memalloc_mem_event_notify(RTE_MEM_EVENT_FREE,
start_va, len);
}
for (i = 0; i < diff_len; i++) {
struct rte_memseg *p_ms, *l_ms;
int seg_idx = start + i;
l_ms = rte_fbarray_get(l_arr, seg_idx);
p_ms = rte_fbarray_get(p_arr, seg_idx);
if (l_ms == NULL || p_ms == NULL)
return -1;
if (used) {
ret = alloc_seg(l_ms, p_ms->addr,
p_ms->socket_id, hi,
msl_idx, seg_idx);
if (ret < 0)
return -1;
rte_fbarray_set_used(l_arr, seg_idx);
} else {
ret = free_seg(l_ms, hi, msl_idx, seg_idx);
rte_fbarray_set_free(l_arr, seg_idx);
if (ret < 0)
return -1;
}
}
/* if we just allocated memory, notify the application */
if (used) {
struct rte_memseg *ms;
void *start_va;
size_t len, page_sz;
ms = rte_fbarray_get(l_arr, start);
start_va = ms->addr;
page_sz = (size_t)primary_msl->page_sz;
len = page_sz * diff_len;
eal_memalloc_mem_event_notify(RTE_MEM_EVENT_ALLOC,
start_va, len);
}
/* calculate how much we can advance until next chunk */
diff_len = used ?
rte_fbarray_find_contig_used(l_arr, start) :
rte_fbarray_find_contig_free(l_arr, start);
ret = RTE_MIN(chunk_len, diff_len);
return ret;
}
static int
sync_status(struct rte_memseg_list *primary_msl,
struct rte_memseg_list *local_msl, struct hugepage_info *hi,
unsigned int msl_idx, bool used)
{
struct rte_fbarray *l_arr, *p_arr;
int p_idx, l_chunk_len, p_chunk_len, ret;
int start, end;
/* this is a little bit tricky, but the basic idea is - walk both lists
* and spot any places where there are discrepancies. walking both lists
* and noting discrepancies in a single go is a hard problem, so we do
* it in two passes - first we spot any places where allocated segments
* mismatch (i.e. ensure that everything that's allocated in the primary
* is also allocated in the secondary), and then we do it by looking at
* free segments instead.
*
* we also need to aggregate changes into chunks, as we have to call
* callbacks per allocation, not per page.
*/
l_arr = &local_msl->memseg_arr;
p_arr = &primary_msl->memseg_arr;
if (used)
p_idx = rte_fbarray_find_next_used(p_arr, 0);
else
p_idx = rte_fbarray_find_next_free(p_arr, 0);
while (p_idx >= 0) {
int next_chunk_search_idx;
if (used) {
p_chunk_len = rte_fbarray_find_contig_used(p_arr,
p_idx);
l_chunk_len = rte_fbarray_find_contig_used(l_arr,
p_idx);
} else {
p_chunk_len = rte_fbarray_find_contig_free(p_arr,
p_idx);
l_chunk_len = rte_fbarray_find_contig_free(l_arr,
p_idx);
}
/* best case scenario - no differences (or bigger, which will be
* fixed during next iteration), look for next chunk
*/
if (l_chunk_len >= p_chunk_len) {
next_chunk_search_idx = p_idx + p_chunk_len;
goto next_chunk;
}
/* if both chunks start at the same point, skip parts we know
* are identical, and sync the rest. each call to sync_chunk
* will only sync contiguous segments, so we need to call this
* until we are sure there are no more differences in this
* chunk.
*/
start = p_idx + l_chunk_len;
end = p_idx + p_chunk_len;
do {
ret = sync_chunk(primary_msl, local_msl, hi, msl_idx,
used, start, end);
start += ret;
} while (start < end && ret >= 0);
/* if ret is negative, something went wrong */
if (ret < 0)
return -1;
next_chunk_search_idx = p_idx + p_chunk_len;
next_chunk:
/* skip to end of this chunk */
if (used) {
p_idx = rte_fbarray_find_next_used(p_arr,
next_chunk_search_idx);
} else {
p_idx = rte_fbarray_find_next_free(p_arr,
next_chunk_search_idx);
}
}
return 0;
}
static int
sync_existing(struct rte_memseg_list *primary_msl,
struct rte_memseg_list *local_msl, struct hugepage_info *hi,
unsigned int msl_idx)
{
int ret, dir_fd;
/* do not allow any page allocations during the time we're allocating,
* because file creation and locking operations are not atomic,
* and we might be the first or the last ones to use a particular page,
* so we need to ensure atomicity of every operation.
*/
dir_fd = open(hi->hugedir, O_RDONLY);
if (dir_fd < 0) {
EAL_LOG(ERR, "%s(): Cannot open '%s': %s", __func__,
hi->hugedir, strerror(errno));
return -1;
}
/* blocking writelock */
if (flock(dir_fd, LOCK_EX)) {
EAL_LOG(ERR, "%s(): Cannot lock '%s': %s", __func__,
hi->hugedir, strerror(errno));
close(dir_fd);
return -1;
}
/* ensure all allocated space is the same in both lists */
ret = sync_status(primary_msl, local_msl, hi, msl_idx, true);
if (ret < 0)
goto fail;
/* ensure all unallocated space is the same in both lists */
ret = sync_status(primary_msl, local_msl, hi, msl_idx, false);
if (ret < 0)
goto fail;
/* update version number */
local_msl->version = primary_msl->version;
close(dir_fd);
return 0;
fail:
close(dir_fd);
return -1;
}
static int
sync_walk(const struct rte_memseg_list *msl, void *arg __rte_unused)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
struct rte_memseg_list *primary_msl, *local_msl;
struct hugepage_info *hi = NULL;
unsigned int i;
int msl_idx;
struct internal_config *internal_conf =
eal_get_internal_configuration();
if (msl->external)
return 0;
msl_idx = msl - mcfg->memsegs;
primary_msl = &mcfg->memsegs[msl_idx];
local_msl = &local_memsegs[msl_idx];
for (i = 0; i < RTE_DIM(internal_conf->hugepage_info); i++) {
uint64_t cur_sz =
internal_conf->hugepage_info[i].hugepage_sz;
uint64_t msl_sz = primary_msl->page_sz;
if (msl_sz == cur_sz) {
hi = &internal_conf->hugepage_info[i];
break;
}
}
if (!hi) {
EAL_LOG(ERR, "Can't find relevant hugepage_info entry");
return -1;
}
/* if versions don't match, synchronize everything */
if (local_msl->version != primary_msl->version &&
sync_existing(primary_msl, local_msl, hi, msl_idx))
return -1;
return 0;
}
int
eal_memalloc_sync_with_primary(void)
{
/* nothing to be done in primary */
if (rte_eal_process_type() == RTE_PROC_PRIMARY)
return 0;
/* memalloc is locked, so it's safe to call thread-unsafe version */
if (rte_memseg_list_walk_thread_unsafe(sync_walk, NULL))
return -1;
return 0;
}
static int
secondary_msl_create_walk(const struct rte_memseg_list *msl,
void *arg __rte_unused)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
struct rte_memseg_list *primary_msl, *local_msl;
char name[PATH_MAX];
int msl_idx, ret;
if (msl->external)
return 0;
msl_idx = msl - mcfg->memsegs;
primary_msl = &mcfg->memsegs[msl_idx];
local_msl = &local_memsegs[msl_idx];
/* create distinct fbarrays for each secondary */
snprintf(name, RTE_FBARRAY_NAME_LEN, "%s_%i",
primary_msl->memseg_arr.name, getpid());
ret = rte_fbarray_init(&local_msl->memseg_arr, name,
primary_msl->memseg_arr.len,
primary_msl->memseg_arr.elt_sz);
if (ret < 0) {
EAL_LOG(ERR, "Cannot initialize local memory map");
return -1;
}
local_msl->base_va = primary_msl->base_va;
local_msl->len = primary_msl->len;
return 0;
}
static int
secondary_msl_destroy_walk(const struct rte_memseg_list *msl,
void *arg __rte_unused)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
struct rte_memseg_list *local_msl;
int msl_idx, ret;
if (msl->external)
return 0;
msl_idx = msl - mcfg->memsegs;
local_msl = &local_memsegs[msl_idx];
ret = rte_fbarray_destroy(&local_msl->memseg_arr);
if (ret < 0) {
EAL_LOG(ERR, "Cannot destroy local memory map");
return -1;
}
local_msl->base_va = NULL;
local_msl->len = 0;
return 0;
}
static int
alloc_list(int list_idx, int len)
{
int *data;
int i;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* single-file segments mode does not need fd list */
if (!internal_conf->single_file_segments) {
/* ensure we have space to store fd per each possible segment */
data = malloc(sizeof(int) * len);
if (data == NULL) {
EAL_LOG(ERR, "Unable to allocate space for file descriptors");
return -1;
}
/* set all fd's as invalid */
for (i = 0; i < len; i++)
data[i] = -1;
fd_list[list_idx].fds = data;
fd_list[list_idx].len = len;
} else {
fd_list[list_idx].fds = NULL;
fd_list[list_idx].len = 0;
}
fd_list[list_idx].count = 0;
fd_list[list_idx].memseg_list_fd = -1;
return 0;
}
static int
destroy_list(int list_idx)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* single-file segments mode does not need fd list */
if (!internal_conf->single_file_segments) {
int *fds = fd_list[list_idx].fds;
int i;
/* go through each fd and ensure it's closed */
for (i = 0; i < fd_list[list_idx].len; i++) {
if (fds[i] >= 0) {
close(fds[i]);
fds[i] = -1;
}
}
free(fds);
fd_list[list_idx].fds = NULL;
fd_list[list_idx].len = 0;
} else if (fd_list[list_idx].memseg_list_fd >= 0) {
close(fd_list[list_idx].memseg_list_fd);
fd_list[list_idx].count = 0;
fd_list[list_idx].memseg_list_fd = -1;
}
return 0;
}
static int
fd_list_create_walk(const struct rte_memseg_list *msl,
void *arg __rte_unused)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
unsigned int len;
int msl_idx;
if (msl->external)
return 0;
msl_idx = msl - mcfg->memsegs;
len = msl->memseg_arr.len;
return alloc_list(msl_idx, len);
}
static int
fd_list_destroy_walk(const struct rte_memseg_list *msl, void *arg __rte_unused)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
int msl_idx;
if (msl->external)
return 0;
msl_idx = msl - mcfg->memsegs;
return destroy_list(msl_idx);
}
int
eal_memalloc_set_seg_fd(int list_idx, int seg_idx, int fd)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* single file segments mode doesn't support individual segment fd's */
if (internal_conf->single_file_segments)
return -ENOTSUP;
/* if list is not allocated, allocate it */
if (fd_list[list_idx].len == 0) {
int len = mcfg->memsegs[list_idx].memseg_arr.len;
if (alloc_list(list_idx, len) < 0)
return -ENOMEM;
}
fd_list[list_idx].fds[seg_idx] = fd;
return 0;
}
int
eal_memalloc_set_seg_list_fd(int list_idx, int fd)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
/* non-single file segment mode doesn't support segment list fd's */
if (!internal_conf->single_file_segments)
return -ENOTSUP;
fd_list[list_idx].memseg_list_fd = fd;
return 0;
}
int
eal_memalloc_get_seg_fd(int list_idx, int seg_idx)
{
int fd;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (internal_conf->single_file_segments) {
fd = fd_list[list_idx].memseg_list_fd;
} else if (fd_list[list_idx].len == 0) {
/* list not initialized */
fd = -1;
} else {
fd = fd_list[list_idx].fds[seg_idx];
}
if (fd < 0)
return -ENODEV;
return fd;
}
int
eal_memalloc_get_seg_fd_offset(int list_idx, int seg_idx, size_t *offset)
{
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (internal_conf->single_file_segments) {
size_t pgsz = mcfg->memsegs[list_idx].page_sz;
/* segment not active? */
if (fd_list[list_idx].memseg_list_fd < 0)
return -ENOENT;
*offset = pgsz * seg_idx;
} else {
/* fd_list not initialized? */
if (fd_list[list_idx].len == 0)
return -ENODEV;
/* segment not active? */
if (fd_list[list_idx].fds[seg_idx] < 0)
return -ENOENT;
*offset = 0;
}
return 0;
}
int
eal_memalloc_cleanup(void)
{
/* close all remaining fd's - these are per-process, so it's safe */
if (rte_memseg_list_walk_thread_unsafe(fd_list_destroy_walk, NULL))
return -1;
/* destroy the shadow page table if we're a secondary process */
if (rte_eal_process_type() == RTE_PROC_PRIMARY)
return 0;
if (rte_memseg_list_walk_thread_unsafe(secondary_msl_destroy_walk,
NULL))
return -1;
return 0;
}
int
eal_memalloc_init(void)
{
const struct internal_config *internal_conf =
eal_get_internal_configuration();
if (rte_eal_process_type() == RTE_PROC_SECONDARY)
/* memory_hotplug_lock is held during initialization, so it's
* safe to call thread-unsafe version.
*/
if (rte_memseg_list_walk_thread_unsafe(secondary_msl_create_walk, NULL) < 0)
return -1;
if (rte_eal_process_type() == RTE_PROC_PRIMARY &&
internal_conf->in_memory) {
EAL_LOG(DEBUG, "Using memfd for anonymous memory");
/* this cannot ever happen but better safe than sorry */
if (!anonymous_hugepages_supported) {
EAL_LOG(ERR, "Using anonymous memory is not supported");
return -1;
}
/* safety net, should be impossible to configure */
if (internal_conf->hugepage_file.unlink_before_mapping &&
!internal_conf->hugepage_file.unlink_existing) {
EAL_LOG(ERR, "Unlinking existing hugepage files is prohibited, cannot unlink them before mapping.");
return -1;
}
}
/* initialize all of the fd lists */
if (rte_memseg_list_walk_thread_unsafe(fd_list_create_walk, NULL))
return -1;
return 0;
}
|