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 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation.
* Copyright(c) 2014 6WIND S.A.
*/
#include <stdio.h>
#include "test.h"
#include <string.h>
#include <stdarg.h>
#ifdef RTE_EXEC_ENV_WINDOWS
static int
test_missing_c_flag(void)
{
printf("missing_c_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_main_lcore_flag(void)
{
printf("main_lcore_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_invalid_n_flag(void)
{
printf("invalid_n_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_no_hpet_flag(void)
{
printf("no_hpet_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_no_huge_flag(void)
{
printf("no_huge_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_allow_flag(void)
{
printf("allow_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_invalid_b_flag(void)
{
printf("invalid_b_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_invalid_vdev_flag(void)
{
printf("invalid_vdev_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_invalid_r_flag(void)
{
printf("invalid_r_flag not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_memory_flags(void)
{
printf("memory_flags not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_file_prefix(void)
{
printf("file_prefix not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
static int
test_misc_flags(void)
{
printf("misc_flags not supported on Windows, skipping test\n");
return TEST_SKIPPED;
}
#else
#include <libgen.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <limits.h>
#include <fcntl.h>
#include <rte_lcore.h>
#include <rte_debug.h>
#include <rte_string_fns.h>
#include "process.h"
#define DEFAULT_MEM_SIZE "18"
#define mp_flag "--proc-type=secondary"
#define no_hpet "--no-hpet"
#define no_huge "--no-huge"
#define no_shconf "--no-shconf"
#define allow "--allow"
#define vdev "--vdev"
#define memtest "memtest"
#define memtest1 "memtest1"
#define memtest2 "memtest2"
#define SOCKET_MEM_STRLEN (RTE_MAX_NUMA_NODES * 20)
#define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__)
enum hugepage_action {
HUGEPAGE_CHECK_EXISTS = 0,
HUGEPAGE_CHECK_LOCKED,
HUGEPAGE_DELETE,
HUGEPAGE_INVALID
};
/* if string contains a hugepage path */
static int
get_hugepage_path(char * src, int src_len, char * dst, int dst_len)
{
#define NUM_TOKENS 4
char *tokens[NUM_TOKENS];
/* if we couldn't properly split the string */
if (rte_strsplit(src, src_len, tokens, NUM_TOKENS, ' ') < NUM_TOKENS)
return 0;
if (strncmp(tokens[2], "hugetlbfs", sizeof("hugetlbfs")) == 0) {
strlcpy(dst, tokens[1], dst_len);
return 1;
}
return 0;
}
/*
* Cycles through hugepage directories and looks for hugepage
* files associated with a given prefix. Depending on value of
* action, the hugepages are checked if they exist, checked if
* they can be locked, or are simply deleted.
*
* Returns 1 if it finds at least one hugepage matching the action
* Returns 0 if no matching hugepages were found
* Returns -1 if it encounters an error
*/
static int
process_hugefiles(const char * prefix, enum hugepage_action action)
{
FILE * hugedir_handle = NULL;
DIR * hugepage_dir = NULL;
struct dirent *dirent = NULL;
char hugefile_prefix[PATH_MAX] = {0};
char hugedir[PATH_MAX] = {0};
char line[PATH_MAX] = {0};
int fd, lck_result, result = 0;
const int prefix_len = snprintf(hugefile_prefix,
sizeof(hugefile_prefix), "%smap_", prefix);
if (prefix_len <= 0 || prefix_len >= (int)sizeof(hugefile_prefix)
|| prefix_len >= (int)sizeof(dirent->d_name)) {
printf("Error creating hugefile filename prefix\n");
return -1;
}
/* get hugetlbfs mountpoints from /proc/mounts */
hugedir_handle = fopen("/proc/mounts", "r");
if (hugedir_handle == NULL) {
printf("Error parsing /proc/mounts!\n");
return -1;
}
/* read and parse script output */
while (fgets(line, sizeof(line), hugedir_handle) != NULL) {
/* check if we have a hugepage filesystem path */
if (!get_hugepage_path(line, sizeof(line), hugedir, sizeof(hugedir)))
continue;
/* check if directory exists */
if ((hugepage_dir = opendir(hugedir)) == NULL) {
fclose(hugedir_handle);
printf("Error reading %s: %s\n", hugedir, strerror(errno));
return -1;
}
while ((dirent = readdir(hugepage_dir)) != NULL) {
if (memcmp(dirent->d_name, hugefile_prefix, prefix_len) != 0)
continue;
switch (action) {
case HUGEPAGE_CHECK_EXISTS:
{
/* file exists, return */
closedir(hugepage_dir);
result = 1;
goto end;
}
break;
case HUGEPAGE_DELETE:
{
char file_path[PATH_MAX] = {0};
snprintf(file_path, sizeof(file_path),
"%s/%s", hugedir, dirent->d_name);
/* remove file */
if (remove(file_path) < 0) {
printf("Error deleting %s - %s!\n",
dirent->d_name, strerror(errno));
closedir(hugepage_dir);
result = -1;
goto end;
}
result = 1;
}
break;
case HUGEPAGE_CHECK_LOCKED:
{
/* try and lock the file */
fd = openat(dirfd(hugepage_dir), dirent->d_name, O_RDONLY);
/* this shouldn't happen */
if (fd == -1) {
printf("Error opening %s - %s!\n",
dirent->d_name, strerror(errno));
closedir(hugepage_dir);
result = -1;
goto end;
}
/* non-blocking lock */
lck_result = flock(fd, LOCK_EX | LOCK_NB);
/* if lock succeeds, there's something wrong */
if (lck_result != -1) {
result = 0;
/* unlock the resulting lock */
flock(fd, LOCK_UN);
close(fd);
closedir(hugepage_dir);
goto end;
}
result = 1;
close(fd);
}
break;
/* shouldn't happen */
default:
goto end;
} /* switch */
} /* read hugepage directory */
closedir(hugepage_dir);
} /* read /proc/mounts */
end:
fclose(hugedir_handle);
return result;
}
#ifdef RTE_EXEC_ENV_LINUX
/*
* count the number of "node*" files in /sys/devices/system/node/
*/
static int
get_number_of_sockets(void)
{
struct dirent *dirent = NULL;
const char * nodedir = "/sys/devices/system/node/";
DIR * dir = NULL;
int result = 0;
/* check if directory exists */
if ((dir = opendir(nodedir)) == NULL) {
/* if errno==ENOENT this means we don't have NUMA support */
if (errno == ENOENT) {
printf("No NUMA nodes detected: assuming 1 available socket\n");
return 1;
}
printf("Error opening %s: %s\n", nodedir, strerror(errno));
return -1;
}
while ((dirent = readdir(dir)) != NULL)
if (strncmp(dirent->d_name, "node", sizeof("node") - 1) == 0)
result++;
closedir(dir);
return result;
}
#endif
/*
* Test that the app doesn't run with invalid allow option.
* Final tests ensures it does run with valid options as sanity check (one
* test for with Domain+BDF, second for just with BDF)
*/
static int
test_allow_flag(void)
{
unsigned i;
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
const char *wlinval[][7] = {
{prgname, prefix, mp_flag,
allow, "error", "", ""},
{prgname, prefix, mp_flag,
allow, "0:0:0", "", ""},
{prgname, prefix, mp_flag,
allow, "0:error:0.1", "", ""},
{prgname, prefix, mp_flag,
allow, "0:0:0.1error", "", ""},
{prgname, prefix, mp_flag,
allow, "error0:0:0.1", "", ""},
{prgname, prefix, mp_flag,
allow, "0:0:0.1.2", "", ""},
};
/* Test with valid allow option */
const char *wlval1[] = {prgname, prefix, mp_flag,
allow, "00FF:09:0B.3"};
const char *wlval2[] = {prgname, prefix, mp_flag,
allow, "09:0B.3", allow, "0a:0b.1"};
const char *wlval3[] = {prgname, prefix, mp_flag,
allow, "09:0B.3,type=test",
allow, "08:00.1,type=normal",
};
for (i = 0; i < RTE_DIM(wlinval); i++) {
if (launch_proc(wlinval[i]) == 0) {
printf("Error - process did run ok with invalid "
"allow parameter\n");
return -1;
}
}
if (launch_proc(wlval1) != 0 ) {
printf("Error - process did not run ok with valid allow\n");
return -1;
}
if (launch_proc(wlval2) != 0 ) {
printf("Error - process did not run ok with valid allow value set\n");
return -1;
}
if (launch_proc(wlval3) != 0 ) {
printf("Error - process did not run ok with valid allow + args\n");
return -1;
}
return 0;
}
/*
* Test that the app doesn't run with invalid blocklist option.
* Final test ensures it does run with valid options as sanity check
*/
static int
test_invalid_b_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
const char *blinval[][5] = {
{prgname, prefix, mp_flag, "-b", "error"},
{prgname, prefix, mp_flag, "-b", "0:0:0"},
{prgname, prefix, mp_flag, "-b", "0:error:0.1"},
{prgname, prefix, mp_flag, "-b", "0:0:0.1error"},
{prgname, prefix, mp_flag, "-b", "error0:0:0.1"},
{prgname, prefix, mp_flag, "-b", "0:0:0.1.2"},
};
/* Test with valid blocklist option */
const char *blval[] = {prgname, prefix, mp_flag,
"-b", "FF:09:0B.3"};
int i;
for (i = 0; i != RTE_DIM(blinval); i++) {
if (launch_proc(blinval[i]) == 0) {
printf("Error - process did run ok with invalid "
"blocklist parameter\n");
return -1;
}
}
if (launch_proc(blval) != 0) {
printf("Error - process did not run ok with valid blocklist value\n");
return -1;
}
return 0;
}
/*
* Test that the app doesn't run with invalid vdev option.
* Final test ensures it does run with valid options as sanity check
*/
static int
test_invalid_vdev_flag(void)
{
#ifdef RTE_NET_RING
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point, and we also need to
* run another primary process here */
const char * prefix = no_shconf;
#else
const char * prefix = "--file-prefix=vdev";
#endif
/* Test with invalid vdev option */
const char *vdevinval[] = {prgname, prefix, no_huge,
vdev, "eth_dummy"};
/* Test with valid vdev option */
const char *vdevval1[] = {prgname, prefix, no_huge,
vdev, "net_ring0"};
const char *vdevval2[] = {prgname, prefix, no_huge,
vdev, "net_ring0,args=test"};
const char *vdevval3[] = {prgname, prefix, no_huge,
vdev, "net_ring0,nodeaction=r1:0:CREATE"};
if (launch_proc(vdevinval) == 0) {
printf("Error - process did run ok with invalid "
"vdev parameter\n");
return -1;
}
if (launch_proc(vdevval1) != 0) {
printf("Error - process did not run ok with valid vdev value\n");
return -1;
}
if (launch_proc(vdevval2) != 0) {
printf("Error - process did not run ok with valid vdev value,"
"with dummy args\n");
return -1;
}
if (launch_proc(vdevval3) != 0) {
printf("Error - process did not run ok with valid vdev value,"
"with valid args\n");
return -1;
}
return 0;
#else
return TEST_SKIPPED;
#endif
}
/*
* Test that the app doesn't run with invalid -r option.
*/
static int
test_invalid_r_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
const char *rinval[][5] = {
{prgname, prefix, mp_flag, "-r", "error"},
{prgname, prefix, mp_flag, "-r", "0"},
{prgname, prefix, mp_flag, "-r", "-1"},
{prgname, prefix, mp_flag, "-r", "17"},
};
/* Test with valid blocklist option */
const char *rval[] = {prgname, prefix, mp_flag, "-r", "16"};
int i;
for (i = 0; i != RTE_DIM(rinval); i++) {
if (launch_proc(rinval[i]) == 0) {
printf("Error - process did run ok with invalid "
"-r (rank) parameter\n");
return -1;
}
}
if (launch_proc(rval) != 0) {
printf("Error - process did not run ok with valid -r (rank) value\n");
return -1;
}
return 0;
}
/*
* Test that the app doesn't run without the coremask/corelist flags. In all cases
* should give an error and fail to run
*/
static int
test_missing_c_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
/* -c flag but no coremask value */
const char *argv1[] = { prgname, prefix, mp_flag, "-c"};
/* No -c, -l or --lcores flag at all */
const char *argv2[] = { prgname, prefix, mp_flag};
/* bad coremask value */
const char *argv3[] = { prgname, prefix, mp_flag,
"-c", "error" };
/* sanity check of tests - valid coremask value */
const char *argv4[] = { prgname, prefix, mp_flag,
"-c", "1" };
/* -l flag but no corelist value */
const char *argv5[] = { prgname, prefix, mp_flag,
"-l"};
const char *argv6[] = { prgname, prefix, mp_flag,
"-l", " " };
/* bad corelist values */
const char *argv7[] = { prgname, prefix, mp_flag,
"-l", "error" };
const char *argv8[] = { prgname, prefix, mp_flag,
"-l", "1-" };
const char *argv9[] = { prgname, prefix, mp_flag,
"-l", "1," };
const char *argv10[] = { prgname, prefix, mp_flag,
"-l", "1#2" };
/* core number is negative value */
const char * const argv11[] = { prgname, prefix, mp_flag,
"-l", "-5" };
const char * const argv12[] = { prgname, prefix, mp_flag,
"-l", "-5-7" };
/* core number is maximum value */
const char * const argv13[] = { prgname, prefix, mp_flag,
"-l", RTE_STR(RTE_MAX_LCORE) };
const char * const argv14[] = { prgname, prefix, mp_flag,
"-l", "1-"RTE_STR(RTE_MAX_LCORE) };
/* sanity check test - valid corelist value */
const char * const argv15[] = { prgname, prefix, mp_flag,
"-l", "1-2,3" };
/* --lcores flag but no lcores value */
const char * const argv16[] = { prgname, prefix, mp_flag,
"--lcores" };
const char * const argv17[] = { prgname, prefix, mp_flag,
"--lcores", " " };
/* bad lcores value */
const char * const argv18[] = { prgname, prefix, mp_flag,
"--lcores", "1-3-5" };
const char * const argv19[] = { prgname, prefix, mp_flag,
"--lcores", "0-1,,2" };
const char * const argv20[] = { prgname, prefix, mp_flag,
"--lcores", "0-,1" };
const char * const argv21[] = { prgname, prefix, mp_flag,
"--lcores", "(0-,2-4)" };
const char * const argv22[] = { prgname, prefix, mp_flag,
"--lcores", "(-1,2)" };
const char * const argv23[] = { prgname, prefix, mp_flag,
"--lcores", "(2-4)@(2-4-6)" };
const char * const argv24[] = { prgname, prefix, mp_flag,
"--lcores", "(a,2)" };
const char * const argv25[] = { prgname, prefix, mp_flag,
"--lcores", "1-3@(1,3)" };
const char * const argv26[] = { prgname, prefix, mp_flag,
"--lcores", "3@((1,3)" };
const char * const argv27[] = { prgname, prefix, mp_flag,
"--lcores", "(4-7)=(1,3)" };
const char * const argv28[] = { prgname, prefix, mp_flag,
"--lcores", "[4-7]@(1,3)" };
/* sanity check of tests - valid lcores value */
const char * const argv29[] = { prgname, prefix, mp_flag,
"--lcores",
"0-1,2@(5-7),(3-5)@(0,2),(0,6),7"};
/* check an invalid cpu value >= CPU_SETSIZE */
const char * const argv30[] = { prgname, prefix, mp_flag,
"--lcores", "3@" RTE_STR(CPU_SETSIZE) };
if (launch_proc(argv2) != 0) {
printf("Error - "
"process did not run ok when missing -c flag\n");
return -1;
}
if (launch_proc(argv1) == 0
|| launch_proc(argv3) == 0) {
printf("Error - "
"process ran without error with invalid -c flag\n");
return -1;
}
if (launch_proc(argv4) != 0) {
printf("Error - "
"process did not run ok with valid coremask value\n");
return -1;
}
/* start -l test */
if (launch_proc(argv5) == 0
|| launch_proc(argv6) == 0
|| launch_proc(argv7) == 0
|| launch_proc(argv8) == 0
|| launch_proc(argv9) == 0
|| launch_proc(argv10) == 0
|| launch_proc(argv11) == 0
|| launch_proc(argv12) == 0
|| launch_proc(argv13) == 0
|| launch_proc(argv14) == 0) {
printf("Error - "
"process ran without error with invalid -l flag\n");
return -1;
}
if (rte_lcore_is_enabled(0) && rte_lcore_is_enabled(1) &&
rte_lcore_is_enabled(2) && rte_lcore_is_enabled(3) &&
launch_proc(argv15) != 0) {
printf("Error - "
"process did not run ok with valid corelist value\n");
return -1;
}
/* start --lcores tests */
if (launch_proc(argv16) == 0 || launch_proc(argv17) == 0 ||
launch_proc(argv18) == 0 || launch_proc(argv19) == 0 ||
launch_proc(argv20) == 0 || launch_proc(argv21) == 0 ||
launch_proc(argv22) == 0 || launch_proc(argv23) == 0 ||
launch_proc(argv24) == 0 || launch_proc(argv25) == 0 ||
launch_proc(argv26) == 0 || launch_proc(argv27) == 0 ||
launch_proc(argv28) == 0 || launch_proc(argv30) == 0) {
printf("Error - "
"process ran without error with invalid --lcores flag\n");
return -1;
}
if (rte_lcore_is_enabled(0) && rte_lcore_is_enabled(1) &&
rte_lcore_is_enabled(2) && rte_lcore_is_enabled(3) &&
rte_lcore_is_enabled(4) && rte_lcore_is_enabled(5) &&
rte_lcore_is_enabled(6) && rte_lcore_is_enabled(7) &&
launch_proc(argv29) != 0) {
printf("Error - "
"process did not run ok with valid corelist value\n");
return -1;
}
return 0;
}
/*
* Test --main-lcore option with matching coremask
*/
static int
test_main_lcore_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char *prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
if (!rte_lcore_is_enabled(0) || !rte_lcore_is_enabled(1))
return TEST_SKIPPED;
/* --main-lcore flag but no value */
const char *argv1[] = { prgname, prefix, mp_flag,
"-c", "3", "--main-lcore"};
/* --main-lcore flag with invalid value */
const char *argv2[] = { prgname, prefix, mp_flag,
"-c", "3", "--main-lcore", "-1"};
const char *argv3[] = { prgname, prefix, mp_flag,
"-c", "3", "--main-lcore", "X"};
/* main lcore not in coremask */
const char *argv4[] = { prgname, prefix, mp_flag,
"-c", "3", "--main-lcore", "2"};
/* valid value */
const char *argv5[] = { prgname, prefix, mp_flag,
"-c", "3", "--main-lcore", "1"};
/* valid value set before coremask */
const char *argv6[] = { prgname, prefix, mp_flag,
"--main-lcore", "1", "-c", "3"};
if (launch_proc(argv1) == 0
|| launch_proc(argv2) == 0
|| launch_proc(argv3) == 0
|| launch_proc(argv4) == 0) {
printf("Error - process ran without error with wrong --main-lcore\n");
return -1;
}
if (launch_proc(argv5) != 0
|| launch_proc(argv6) != 0) {
printf("Error - process did not run ok with valid --main-lcore\n");
return -1;
}
return 0;
}
/*
* Test that the app doesn't run with invalid -n flag option.
* Final test ensures it does run with valid options as sanity check
* Since -n is not compulsory for MP, we instead use --no-huge and --no-shconf
* flags.
*/
static int
test_invalid_n_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
/* -n flag but no value */
const char *argv1[] = { prgname, prefix, no_huge, no_shconf,
"-n"};
/* bad numeric value */
const char *argv2[] = { prgname, prefix, no_huge, no_shconf,
"-n", "e" };
/* zero is invalid */
const char *argv3[] = { prgname, prefix, no_huge, no_shconf,
"-n", "0" };
/* sanity test - check with good value */
const char *argv4[] = { prgname, prefix, no_huge, no_shconf,
"-n", "2" };
/* sanity test - check with no -n flag */
const char *argv5[] = { prgname, prefix, no_huge, no_shconf};
if (launch_proc(argv1) == 0
|| launch_proc(argv2) == 0
|| launch_proc(argv3) == 0) {
printf("Error - process ran without error when"
"invalid -n flag\n");
return -1;
}
if (launch_proc(argv4) != 0) {
printf("Error - process did not run ok with valid num-channel value\n");
return -1;
}
if (launch_proc(argv5) != 0) {
printf("Error - process did not run ok without -n flag\n");
return -1;
}
return 0;
}
/*
* Test that the app runs with HPET, and without HPET
*/
static int
test_no_hpet_flag(void)
{
char prefix[PATH_MAX] = "";
#ifdef RTE_EXEC_ENV_FREEBSD
return 0;
#else
char tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
/* With --no-hpet */
const char *argv1[] = {prgname, prefix, mp_flag, no_hpet};
/* Without --no-hpet */
const char *argv2[] = {prgname, prefix, mp_flag};
if (launch_proc(argv1) != 0) {
printf("Error - process did not run ok with --no-hpet flag\n");
return -1;
}
if (launch_proc(argv2) != 0) {
printf("Error - process did not run ok without --no-hpet flag\n");
return -1;
}
return 0;
}
/*
* Test that the app runs with --no-huge and doesn't run when --socket-mem are
* specified with --no-huge.
*/
static int
test_no_huge_flag(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point, and we also need to
* run another primary process here */
const char * prefix = no_shconf;
#else
const char * prefix = "--file-prefix=nohuge";
#endif
/* With --no-huge */
const char *argv1[] = {prgname, prefix, no_huge};
/* With --no-huge and -m */
const char *argv2[] = {prgname, prefix, no_huge,
"-m", DEFAULT_MEM_SIZE};
/* With --no-huge and --socket-mem */
const char *argv3[] = {prgname, prefix, no_huge,
"--socket-mem=" DEFAULT_MEM_SIZE};
/* With --no-huge, -m and --socket-mem */
const char *argv4[] = {prgname, prefix, no_huge,
"-m", DEFAULT_MEM_SIZE, "--socket-mem=" DEFAULT_MEM_SIZE};
/* With --no-huge and --huge-worker-stack (should fail) */
const char * const argv5[] = {prgname, prefix, no_huge,
"--huge-worker-stack"};
/* With --no-huge and --huge-worker-stack=512 (should fail) */
const char * const argv6[] = {prgname, prefix, no_huge,
"--huge-worker-stack=512"};
if (launch_proc(argv1) != 0) {
printf("Error - process did not run ok with --no-huge flag\n");
return -1;
}
if (launch_proc(argv2) != 0) {
printf("Error - process did not run ok with --no-huge and -m flags\n");
return -1;
}
#ifdef RTE_EXEC_ENV_FREEBSD
/* no other tests are applicable to FreeBSD */
return 0;
#endif
if (launch_proc(argv3) == 0) {
printf("Error - process run ok with --no-huge and --socket-mem "
"flags\n");
return -1;
}
if (launch_proc(argv4) == 0) {
printf("Error - process run ok with --no-huge, -m and "
"--socket-mem flags\n");
return -1;
}
if (launch_proc(argv5) == 0) {
printf("Error - process run ok with --no-huge and --huge-worker-stack flags");
return -1;
}
if (launch_proc(argv6) == 0) {
printf("Error - process run ok with --no-huge and --huge-worker-stack=size flags");
return -1;
}
return 0;
}
static int
test_misc_flags(void)
{
char hugepath[PATH_MAX] = {0};
char hugepath_dir[PATH_MAX] = {0};
char hugepath_dir2[PATH_MAX] = {0};
char hugepath_dir3[PATH_MAX] = {0};
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
const char * nosh_prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
const char * nosh_prefix = "--file-prefix=noshconf";
FILE * hugedir_handle = NULL;
char line[PATH_MAX] = {0};
unsigned i, isempty = 1;
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
/*
* get first valid hugepage path
*/
/* get hugetlbfs mountpoints from /proc/mounts */
hugedir_handle = fopen("/proc/mounts", "r");
if (hugedir_handle == NULL) {
printf("Error opening /proc/mounts!\n");
return -1;
}
/* read /proc/mounts */
while (fgets(line, sizeof(line), hugedir_handle) != NULL) {
/* find first valid hugepath */
if (get_hugepage_path(line, sizeof(line), hugepath, sizeof(hugepath)))
break;
}
fclose(hugedir_handle);
/* check if path is not empty */
for (i = 0; i < sizeof(hugepath); i++)
if (hugepath[i] != '\0')
isempty = 0;
if (isempty) {
printf("No mounted hugepage dir found!\n");
return -1;
}
#endif
snprintf(hugepath_dir, sizeof(hugepath_dir), "%s/dpdk.missing", hugepath);
snprintf(hugepath_dir2, sizeof(hugepath_dir2), "%s/dpdk.dir", hugepath);
if (mkdir(hugepath_dir2, 0700) != 0 && errno != EEXIST) {
printf("Error - failed to mkdir(%s)\n", hugepath_dir2);
return -1;
}
snprintf(hugepath_dir3, sizeof(hugepath_dir3), "%s/dpdk.dir/sub", hugepath);
if (mkdir(hugepath_dir3, 0700) != 0 && errno != EEXIST) {
printf("Error - failed to mkdir(%s)\n", hugepath_dir3);
goto fail;
}
/* check that some general flags don't prevent things from working.
* All cases, apart from the first, app should run.
* No further testing of output done.
*/
/* sanity check - failure with invalid option */
const char *argv0[] = {prgname, prefix, mp_flag, "--invalid-opt"};
/* With --no-pci */
const char *argv1[] = {prgname, prefix, mp_flag, "--no-pci"};
/* With -v */
const char *argv2[] = {prgname, prefix, mp_flag, "-v"};
/* With valid --syslog */
const char *argv3[] = {prgname, prefix, mp_flag, "--syslog=user"};
/* With empty --syslog (now defaults) */
const char *argv4[] = {prgname, prefix, mp_flag, "--syslog"};
/* With invalid --syslog */
const char *argv5[] = {prgname, prefix, mp_flag, "--syslog=invalid"};
/* With no-sh-conf, also use no-huge to ensure this test runs on BSD */
const char *argv6[] = {prgname, "-m", DEFAULT_MEM_SIZE,
no_shconf, nosh_prefix, no_huge};
/* With --huge-dir */
const char *argv7[] = {prgname, "-m", DEFAULT_MEM_SIZE,
"--file-prefix=hugedir", "--huge-dir", hugepath};
/* With empty --huge-dir (should fail) */
const char *argv8[] = {prgname, "-m", DEFAULT_MEM_SIZE,
"--file-prefix=hugedir", "--huge-dir"};
/* With invalid --huge-dir */
const char *argv9[] = {prgname, "-m", DEFAULT_MEM_SIZE,
"--file-prefix=hugedir", "--huge-dir", "invalid"};
/* With invalid --huge-dir sub-directory */
const char *argv10[] = {prgname, "-m", DEFAULT_MEM_SIZE,
"--file-prefix=hugedir", "--huge-dir", hugepath_dir};
/* With valid --huge-dir sub-directory */
const char *argv11[] = {prgname, "-m", DEFAULT_MEM_SIZE,
"--file-prefix=hugedir", "--huge-dir", hugepath_dir2};
/* Secondary process with invalid --huge-dir (should run as flag has no
* effect on secondary processes) */
const char *argv12[] = {prgname, prefix, mp_flag,
"--huge-dir", "invalid"};
/* try running with base-virtaddr param */
const char *argv13[] = {prgname, "--file-prefix=virtaddr",
"--base-virtaddr=0x23456789"};
/* try running with --vfio-intr INTx flag */
const char *argv14[] = {prgname, "--file-prefix=intr",
"--vfio-intr=legacy"};
/* try running with --vfio-intr MSI flag */
const char *argv15[] = {prgname, "--file-prefix=intr",
"--vfio-intr=msi"};
/* try running with --vfio-intr MSI-X flag */
const char *argv16[] = {prgname, "--file-prefix=intr",
"--vfio-intr=msix"};
/* try running with --vfio-intr invalid flag */
const char *argv17[] = {prgname, "--file-prefix=intr",
"--vfio-intr=invalid"};
/* With process type as auto-detect */
const char * const argv18[] = {prgname, "--file-prefix=auto",
"--proc-type=auto"};
/* With process type as auto-detect with no-shconf */
const char * const argv19[] = {prgname, "--proc-type=auto",
no_shconf, nosh_prefix, no_huge};
/* With process type as --create-uio-dev flag */
const char * const argv20[] = {prgname, "--file-prefix=uiodev",
"--create-uio-dev"};
/* Try running with --huge-worker-stack flag */
const char * const argv21[] = {prgname, prefix, mp_flag,
"--huge-worker-stack"};
/* Try running with --huge-worker-stack=512 flag */
const char * const argv22[] = {prgname, prefix, mp_flag,
"--huge-worker-stack=512"};
/* Try running with --log-timestamp */
const char * const argv23[] = {prgname, prefix, mp_flag,
"--log-timestamp" };
/* Try running with --log-timestamp=iso */
const char * const argv24[] = {prgname, prefix, mp_flag,
"--log-timestamp=iso" };
/* Try running with invalid timestamp */
const char * const argv25[] = {prgname, prefix, mp_flag,
"--log-timestamp=invalid" };
/* Try running with --log-color */
const char * const argv26[] = {prgname, prefix, mp_flag,
"--log-color" };
/* Try running with --log-color=never */
const char * const argv27[] = {prgname, prefix, mp_flag,
"--log-color=never" };
/* Try running with --log-color=invalid */
const char * const argv28[] = {prgname, prefix, mp_flag,
"--log-color=invalid" };
/* run all tests also applicable to FreeBSD first */
if (launch_proc(argv0) == 0) {
printf("Error - process ran ok with invalid flag\n");
goto fail;
}
if (launch_proc(argv1) != 0) {
printf("Error - process did not run ok with --no-pci flag\n");
goto fail;
}
if (launch_proc(argv2) != 0) {
printf("Error - process did not run ok with -v flag\n");
goto fail;
}
if (launch_proc(argv6) != 0) {
printf("Error - process did not run ok with --no-shconf flag\n");
goto fail;
}
#ifdef RTE_EXEC_ENV_FREEBSD
/* no more tests to be done on FreeBSD */
return 0;
#endif
if (launch_proc(argv3) != 0) {
printf("Error - process did not run ok with --syslog=user flag\n");
goto fail;
}
if (launch_proc(argv4) != 0) {
printf("Error - process did not run ok with --syslog flag\n");
goto fail;
}
if (launch_proc(argv5) == 0) {
printf("Error - process run ok with --syslog=invalid flag\n");
goto fail;
}
if (launch_proc(argv7) != 0) {
printf("Error - process did not run ok with --huge-dir flag\n");
goto fail;
}
if (launch_proc(argv8) == 0) {
printf("Error - process run ok with empty --huge-dir flag\n");
goto fail;
}
if (launch_proc(argv9) == 0) {
printf("Error - process run ok with invalid --huge-dir flag\n");
goto fail;
}
if (launch_proc(argv10) == 0) {
printf("Error - process run ok with invalid --huge-dir sub-dir flag\n");
goto fail;
}
if (launch_proc(argv11) != 0) {
printf("Error - process did not run ok with --huge-dir subdir flag\n");
goto fail;
}
if (launch_proc(argv12) != 0) {
printf("Error - secondary process did not run ok with invalid --huge-dir flag\n");
goto fail;
}
if (launch_proc(argv13) != 0) {
printf("Error - process did not run ok with --base-virtaddr parameter\n");
goto fail;
}
if (launch_proc(argv14) != 0) {
printf("Error - process did not run ok with "
"--vfio-intr INTx parameter\n");
goto fail;
}
if (launch_proc(argv15) != 0) {
printf("Error - process did not run ok with "
"--vfio-intr MSI parameter\n");
goto fail;
}
if (launch_proc(argv16) != 0) {
printf("Error - process did not run ok with "
"--vfio-intr MSI-X parameter\n");
goto fail;
}
if (launch_proc(argv17) == 0) {
printf("Error - process run ok with "
"--vfio-intr invalid parameter\n");
goto fail;
}
if (launch_proc(argv18) != 0) {
printf("Error - process did not run ok with "
"--proc-type as auto parameter\n");
goto fail;
}
if (launch_proc(argv19) != 0) {
printf("Error - process did not run ok with "
"--proc-type and --no-shconf parameter\n");
goto fail;
}
if (launch_proc(argv20) != 0) {
printf("Error - process did not run ok with "
"--create-uio-dev parameter\n");
goto fail;
}
if (launch_proc(argv21) != 0) {
printf("Error - process did not run ok with --huge-worker-stack parameter\n");
goto fail;
}
if (launch_proc(argv22) != 0) {
printf("Error - process did not run ok with --huge-worker-stack=size parameter\n");
goto fail;
}
if (launch_proc(argv23) != 0) {
printf("Error - process did not run ok with --log-timestamp parameter\n");
goto fail;
}
if (launch_proc(argv24) != 0) {
printf("Error - process did not run ok with --log-timestamp=iso parameter\n");
goto fail;
}
if (launch_proc(argv25) == 0) {
printf("Error - process did run ok with --log-timestamp=invalid parameter\n");
goto fail;
}
if (launch_proc(argv26) != 0) {
printf("Error - process did not run ok with --log-color parameter\n");
goto fail;
}
if (launch_proc(argv27) != 0) {
printf("Error - process did not run ok with --log-color=never parameter\n");
goto fail;
}
if (launch_proc(argv28) == 0) {
printf("Error - process did run ok with --log-timestamp=invalid parameter\n");
goto fail;
}
rmdir(hugepath_dir3);
rmdir(hugepath_dir2);
return 0;
fail:
rmdir(hugepath_dir3);
rmdir(hugepath_dir2);
return -1;
}
static int
test_file_prefix(void)
{
/*
* 1. check if current process hugefiles are locked
* 2. try to run secondary process without a corresponding primary process
* (while failing to run, it will also remove any unused hugepage files)
* 3. check if current process hugefiles are still in place and are locked
* 4. run a primary process with memtest1 prefix in default and legacy
* mem mode
* 5. check if memtest1 hugefiles are created in case of legacy mem
* mode, and deleted in case of default mem mode
* 6. run a primary process with memtest2 prefix in default and legacy
* mem modes
* 7. check that memtest2 hugefiles are present in the hugedir after a
* run in legacy mode, and not present at all after run in default
* mem mode
*/
char prefix[PATH_MAX] = "";
#ifdef RTE_EXEC_ENV_FREEBSD
return 0;
#else
if (get_current_prefix(prefix, sizeof(prefix)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
#endif
/* this should fail unless the test itself is run with "memtest" prefix */
const char *argv0[] = {prgname, mp_flag, "-m",
DEFAULT_MEM_SIZE, "--file-prefix=" memtest };
/* primary process with memtest1 and default mem mode */
const char *argv1[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--file-prefix=" memtest1 };
/* primary process with memtest1 and legacy mem mode */
const char *argv2[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--file-prefix=" memtest1,
"--legacy-mem" };
/* primary process with memtest2 and legacy mem mode */
const char *argv3[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--file-prefix=" memtest2,
"--legacy-mem" };
/* primary process with memtest2 and default mem mode */
const char *argv4[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--file-prefix=" memtest2 };
/* primary process with --in-memory mode */
const char * const argv5[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--in-memory" };
/* primary process with memtest1 and --in-memory mode */
const char * const argv6[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--in-memory",
"--file-prefix=" memtest1 };
/* primary process with parent file-prefix and --in-memory mode */
const char * const argv7[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--in-memory", "--file-prefix", prefix };
/* primary process with memtest1 and --single-file-segments mode */
const char * const argv8[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--single-file-segments",
"--file-prefix=" memtest1 };
/* primary process with memtest1 and --huge-unlink=never mode */
const char * const argv9[] = {prgname, "-m",
DEFAULT_MEM_SIZE, "--huge-unlink=never",
"--file-prefix=" memtest1 };
/* check if files for current prefix are present */
if (process_hugefiles(prefix, HUGEPAGE_CHECK_EXISTS) != 1) {
printf("Error - hugepage files for %s were not created!\n", prefix);
return -1;
}
/* checks if files for current prefix are locked */
if (process_hugefiles(prefix, HUGEPAGE_CHECK_LOCKED) != 1) {
printf("Error - hugepages for current process aren't locked!\n");
return -1;
}
/* check if files for secondary process are present */
if (process_hugefiles(memtest, HUGEPAGE_CHECK_EXISTS) == 1) {
/* check if they are not locked */
if (process_hugefiles(memtest, HUGEPAGE_CHECK_LOCKED) == 1) {
printf("Error - hugepages for current process are locked!\n");
return -1;
}
/* they aren't locked, delete them */
else {
if (process_hugefiles(memtest, HUGEPAGE_DELETE) != 1) {
printf("Error - deleting hugepages failed!\n");
return -1;
}
}
}
if (launch_proc(argv0) == 0) {
printf("Error - secondary process ran ok without primary process\n");
return -1;
}
/* check if files for current prefix are present */
if (process_hugefiles(prefix, HUGEPAGE_CHECK_EXISTS) != 1) {
printf("Error - hugepage files for %s were not created!\n", prefix);
return -1;
}
/* checks if files for current prefix are locked */
if (process_hugefiles(prefix, HUGEPAGE_CHECK_LOCKED) != 1) {
printf("Error - hugepages for current process aren't locked!\n");
return -1;
}
/* we're running this process in default memory mode, which means it
* should clean up after itself on exit and leave no hugepages behind.
*/
if (launch_proc(argv1) != 0) {
printf("Error - failed to run with --file-prefix=%s\n",
memtest1);
return -1;
}
/* check if memtest1_map0 is present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were not deleted!\n",
memtest1);
return -1;
}
/* now, we're running a process under the same prefix, but with legacy
* mem mode - this should leave behind hugepage files.
*/
if (launch_proc(argv2) != 0) {
printf("Error - failed to run with --file-prefix=%s\n",
memtest1);
return -1;
}
/* check if memtest1_map0 is present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 1) {
printf("Error - hugepage files for %s were not created!\n",
memtest1);
return -1;
}
if (launch_proc(argv3) != 0) {
printf("Error - failed to run with --file-prefix=%s\n",
memtest2);
return -1;
}
/* check if hugefiles for memtest2 are present */
if (process_hugefiles(memtest2, HUGEPAGE_CHECK_EXISTS) != 1) {
printf("Error - hugepage files for %s were not created!\n",
memtest2);
return -1;
}
/* check if hugefiles for memtest1 are present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were not deleted!\n",
memtest1);
return -1;
}
/* this process will run in default mem mode, so it should not leave any
* hugepage files behind.
*/
if (launch_proc(argv4) != 0) {
printf("Error - failed to run with --file-prefix=%s\n",
memtest2);
return -1;
}
/* check if hugefiles for memtest2 are present */
if (process_hugefiles(memtest2, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were not deleted!\n",
memtest2);
return -1;
}
/* check if hugefiles for memtest1 are present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were not deleted!\n",
memtest1);
return -1;
}
/* this process will run in --in-memory mode, so it should not leave any
* hugepage files behind.
*/
/* test case to check eal-options with --in-memory mode */
if (launch_proc(argv5) != 0) {
printf("Error - failed to run with --in-memory mode\n");
return -1;
}
/*test case to check eal-options with --in-memory mode with
* custom file-prefix.
*/
if (launch_proc(argv6) != 0) {
printf("Error - failed to run with --in-memory mode\n");
return -1;
}
/* check if hugefiles for memtest1 are present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were created and not deleted!\n",
memtest1);
return -1;
}
/* test case to check eal-options with --in-memory mode with
* parent file-prefix.
*/
if (launch_proc(argv7) != 0) {
printf("Error - failed to run with --file-prefix=%s\n", prefix);
return -1;
}
/* this process will run in --single-file-segments mode,
* so it should not leave any hugepage files behind.
*/
if (launch_proc(argv8) != 0) {
printf("Error - failed to run with --single-file-segments mode\n");
return -1;
}
/* check if hugefiles for memtest1 are present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
printf("Error - hugepage files for %s were not deleted!\n",
memtest1);
return -1;
}
/* this process will run with --huge-unlink,
* so it should not remove hugepage files when it exits
*/
if (launch_proc(argv9) != 0) {
printf("Error - failed to run with --huge-unlink=never\n");
return -1;
}
/* check if hugefiles for memtest1 are present */
if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) == 0) {
printf("Error - hugepage files for %s were deleted!\n",
memtest1);
return -1;
}
if (process_hugefiles(memtest1, HUGEPAGE_DELETE) != 1) {
printf("Error - deleting hugepages failed!\n");
return -1;
}
return 0;
}
/* This function writes in passed buf pointer a valid --socket-mem= option
* for num_sockets then concatenates the provided suffix string.
*
* Example for num_sockets 4, mem "2", suffix "plop"
* --socket-mem=2,2,2,2plop
*/
static void
populate_socket_mem_param(int num_sockets, const char *mem,
const char *suffix, char *buf, size_t buf_size)
{
unsigned int offset = 0;
int written;
int i;
written = snprintf(&buf[offset], buf_size - offset, "--socket-mem=");
if (written < 0 || written + offset >= buf_size)
return;
offset += written;
for (i = 0; i < num_sockets - 1; i++) {
written = snprintf(&buf[offset], buf_size - offset,
"%s,", mem);
if (written < 0 || written + offset >= buf_size)
return;
offset += written;
}
written = snprintf(&buf[offset], buf_size - offset, "%s%s", mem,
suffix);
if (written < 0 || written + offset >= buf_size)
return;
offset += written;
}
/*
* Tests for correct handling of -m and --socket-mem flags
*/
static int
test_memory_flags(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
/* BSD target doesn't support prefixes at this point */
const char * prefix = "";
#else
char prefix[PATH_MAX], tmp[PATH_MAX];
if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
printf("Error - unable to get current prefix!\n");
return -1;
}
snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
#endif
/* valid -m flag and mp flag */
const char *argv0[] = {prgname, prefix, mp_flag,
"-m", DEFAULT_MEM_SIZE};
/* valid -m flag */
const char *argv1[] = {prgname,
"--file-prefix=" memtest, "-m", DEFAULT_MEM_SIZE};
/* valid (zero) --socket-mem flag */
char arg2_socket_mem[SOCKET_MEM_STRLEN];
const char *argv2[] = {prgname,
"--file-prefix=" memtest, arg2_socket_mem};
/* invalid (incomplete) --socket-mem flag */
char arg3_socket_mem[SOCKET_MEM_STRLEN];
const char *argv3[] = {prgname,
"--file-prefix=" memtest, arg3_socket_mem};
/* invalid (mixed with invalid data) --socket-mem flag */
char arg4_socket_mem[SOCKET_MEM_STRLEN];
const char *argv4[] = {prgname,
"--file-prefix=" memtest, arg4_socket_mem};
/* invalid (with numeric value as last character) --socket-mem flag */
char arg5_socket_mem[SOCKET_MEM_STRLEN];
const char *argv5[] = {prgname,
"--file-prefix=" memtest, arg5_socket_mem};
/* invalid (with empty socket) --socket-mem flag */
char arg6_socket_mem[SOCKET_MEM_STRLEN];
const char *argv6[] = {prgname,
"--file-prefix=" memtest, arg6_socket_mem};
/* invalid (null) --socket-mem flag */
const char *argv7[] = {prgname,
"--file-prefix=" memtest, "--socket-mem="};
/* valid --socket-mem specified together with -m flag */
char arg8_socket_mem[SOCKET_MEM_STRLEN];
const char *argv8[] = {prgname,
"--file-prefix=" memtest, "-m", DEFAULT_MEM_SIZE,
arg8_socket_mem};
#ifdef RTE_EXEC_ENV_FREEBSD
int num_sockets = 1;
#else
int num_sockets = RTE_MIN(get_number_of_sockets(),
RTE_MAX_NUMA_NODES);
#endif
if (num_sockets <= 0) {
printf("Error - cannot get number of sockets!\n");
return -1;
}
/* invalid --socket-mem flag (with extra socket) */
char invalid_socket_mem[SOCKET_MEM_STRLEN];
const char *argv9[] = {prgname,
"--file-prefix=" memtest, invalid_socket_mem};
/* valid --socket-mem flag */
char valid_socket_mem[SOCKET_MEM_STRLEN];
const char *argv10[] = {prgname,
"--file-prefix=" memtest, valid_socket_mem};
if (launch_proc(argv0) != 0) {
printf("Error - secondary process failed with valid -m flag !\n");
return -1;
}
#ifdef RTE_EXEC_ENV_FREEBSD
/* no other tests are applicable to BSD */
return 0;
#endif
if (launch_proc(argv1) != 0) {
printf("Error - process failed with valid -m flag!\n");
return -1;
}
populate_socket_mem_param(num_sockets, "0", "",
arg2_socket_mem, sizeof(arg2_socket_mem));
if (launch_proc(argv2) != 0) {
printf("Error - process failed with valid (zero) --socket-mem!\n");
return -1;
}
if (num_sockets > 1) {
populate_socket_mem_param(num_sockets - 1, "2", ",",
arg3_socket_mem, sizeof(arg3_socket_mem));
if (launch_proc(argv3) == 0) {
printf("Error - process run ok with invalid "
"(incomplete) --socket-mem!\n");
return -1;
}
populate_socket_mem_param(num_sockets - 1, "2", ",Fred",
arg4_socket_mem, sizeof(arg4_socket_mem));
if (launch_proc(argv4) == 0) {
printf("Error - process run ok with invalid "
"(mixed with invalid input) --socket-mem!\n");
return -1;
}
populate_socket_mem_param(num_sockets - 1, "2", ",Fred0",
arg5_socket_mem, sizeof(arg5_socket_mem));
if (launch_proc(argv5) == 0) {
printf("Error - process run ok with invalid "
"(mixed with invalid input with a numeric value as "
"last character) --socket-mem!\n");
return -1;
}
}
if (num_sockets > 2) {
populate_socket_mem_param(num_sockets - 2, "2", ",,2",
arg6_socket_mem, sizeof(arg6_socket_mem));
if (launch_proc(argv6) == 0) {
printf("Error - process run ok with invalid "
"(with empty socket) --socket-mem!\n");
return -1;
}
}
if (launch_proc(argv7) == 0) {
printf("Error - process run ok with invalid (null) --socket-mem!\n");
return -1;
}
populate_socket_mem_param(num_sockets, "2", "",
arg8_socket_mem, sizeof(arg8_socket_mem));
if (launch_proc(argv8) == 0) {
printf("Error - process run ok with --socket-mem and -m specified!\n");
return -1;
}
populate_socket_mem_param(num_sockets + 1, "2", "",
invalid_socket_mem, sizeof(invalid_socket_mem));
if (launch_proc(argv9) == 0) {
printf("Error - process run ok with extra socket in --socket-mem!\n");
return -1;
}
populate_socket_mem_param(num_sockets, "2", "",
valid_socket_mem, sizeof(valid_socket_mem));
if (launch_proc(argv10) != 0) {
printf("Error - process failed with valid --socket-mem!\n");
return -1;
}
return 0;
}
#endif /* !RTE_EXEC_ENV_WINDOWS */
REGISTER_FAST_TEST(eal_flags_c_opt_autotest, false, false, test_missing_c_flag);
REGISTER_FAST_TEST(eal_flags_main_opt_autotest, false, false, test_main_lcore_flag);
REGISTER_FAST_TEST(eal_flags_n_opt_autotest, false, false, test_invalid_n_flag);
REGISTER_FAST_TEST(eal_flags_hpet_autotest, false, false, test_no_hpet_flag);
REGISTER_FAST_TEST(eal_flags_no_huge_autotest, false, false, test_no_huge_flag);
REGISTER_FAST_TEST(eal_flags_a_opt_autotest, false, false, test_allow_flag);
REGISTER_FAST_TEST(eal_flags_b_opt_autotest, false, false, test_invalid_b_flag);
REGISTER_FAST_TEST(eal_flags_vdev_opt_autotest, false, false, test_invalid_vdev_flag);
REGISTER_FAST_TEST(eal_flags_r_opt_autotest, false, false, test_invalid_r_flag);
REGISTER_FAST_TEST(eal_flags_mem_autotest, false, false, test_memory_flags);
REGISTER_FAST_TEST(eal_flags_file_prefix_autotest, false, false, test_file_prefix);
REGISTER_FAST_TEST(eal_flags_misc_autotest, false, false, test_misc_flags);
|