update Intel copyright years to 2014
[dpdk.git] / app / test / test_eal_flags.c
index c3754d9..5517f86 100644 (file)
@@ -1,35 +1,34 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
- *   Redistribution and use in source and binary forms, with or without 
- *   modification, are permitted provided that the following conditions 
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
  *   are met:
  * 
- *     * Redistributions of source code must retain the above copyright 
+ *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright 
- *       notice, this list of conditions and the following disclaimer in 
- *       the documentation and/or other materials provided with the 
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
  *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its 
- *       contributors may be used to endorse or promote products derived 
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
  * 
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * 
  */
 #include <stdio.h>
 
@@ -58,6 +57,7 @@
 #define no_hpet "--no-hpet"
 #define no_huge "--no-huge"
 #define no_shconf "--no-shconf"
+#define use_device "--use-device"
 #define memtest "memtest"
 #define memtest1 "memtest1"
 #define memtest2 "memtest2"
@@ -115,7 +115,8 @@ process_hugefiles(const char * prefix, enum hugepage_action action)
 
        const int prefix_len = rte_snprintf(hugefile_prefix,
                        sizeof(hugefile_prefix), "%smap_", prefix);
-       if (prefix_len <= 0 || prefix_len >= (int)sizeof(hugefile_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;
        }
@@ -229,6 +230,11 @@ get_number_of_sockets(void)
 
        /* 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;
        }
@@ -264,8 +270,112 @@ get_current_prefix(char * prefix, int size)
        return prefix;
 }
 
+/* extra function prototypes for internal eal function to test in whitelist 
+ * ICC 12 doesn't approve of this practice, so temporarily disable warnings for it */
+#ifdef __INTEL_COMPILER
+#pragma warning disable 1419
+#endif
+extern int eal_dev_whitelist_exists(void);
+extern int eal_dev_whitelist_add_entry(const char *);
+extern int eal_dev_whitelist_parse(void);
+extern int eal_dev_is_whitelisted(const char *, const char **);
+extern void eal_dev_whitelist_clear(void);
+#ifdef __INTEL_COMPILER
+#pragma warning enable 1419
+#endif
+
+/*
+ * Test that the app doesn't run with invalid whitelist 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_whitelist_flag(void)
+{
+       unsigned i;
+       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;
+       }
+       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+
+       const char *wlinval[][11] = {
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "error", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "0:0:0", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "0:error:0.1", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "0:0:0.1error", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "error0:0:0.1", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "0:0:0.1.2", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               use_device, "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x",
+                               use_device, "y,z,1,2,3,4,5,6,7,8,9,0"},
+       };
+       /* Test with valid whitelist option */
+       const char *wlval1[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       use_device, "00FF:09:0B.3"};
+       const char *wlval2[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       use_device, "09:0B.3,0a:0b.1"};
+       const char *wlval3[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       use_device, "09:0B.3;type=test,08:00.1;type=normal"};
+
+       for (i = 0; i < sizeof(wlinval) / sizeof(wlinval[0]); i++) {
+               if (launch_proc(wlinval[i]) == 0) {
+                       printf("Error - process did run ok with invalid "
+                           "whitelist parameter\n");
+                       return -1;
+               }
+       }
+       if (launch_proc(wlval1) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist\n");
+               return -1;
+       }
+       if (launch_proc(wlval2) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist value set\n");
+               return -1;
+       }
+       if (launch_proc(wlval3) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist + args\n");
+               return -1;
+       }
+
+       /* extra-sanity checks of whitelists - to be run only if no whitelist */
+       if (eal_dev_whitelist_exists())
+               return 0;
+
+       /* check that whitelist_parse returns error without whitelist */
+       if (eal_dev_whitelist_parse() != -1) {
+               printf("ERROR: calling whitelist parse without a whitelist doesn't "
+                               "return an error\n");
+               return -1;
+       }
+       if (eal_dev_is_whitelisted("adevice", NULL)) {
+               printf("Whitelist lookup does not return false if no whitelist\n");
+               return -1;
+       }
+       eal_dev_whitelist_add_entry("0000:00:00.0");
+       eal_dev_whitelist_parse();
+       if (eal_dev_is_whitelisted("adevice", NULL)) {
+               printf("Whitelist lookup does not return false for unlisted dev\n");
+               return -1;
+       }
+       if (!eal_dev_is_whitelisted("0000:00:00.0", NULL)) {
+               printf("Whitelist lookup does not return true for whitelisted dev\n");
+               return -1;
+       }
+       eal_dev_whitelist_clear();
+
+       return 0;
+}
+
 /*
- * Test that the app doesn't run without invalid blacklist option.
+ * Test that the app doesn't run with invalid blacklist option.
  * Final test ensures it does run with valid options as sanity check
  */
 static int
@@ -501,13 +611,51 @@ test_no_huge_flag(void)
 static int
 test_misc_flags(void)
 {
+       FILE * hugedir_handle = NULL;
+       char line[PATH_MAX] = {0};
+       char hugepath[PATH_MAX] = {0};
        char prefix[PATH_MAX], tmp[PATH_MAX];
+       unsigned i, isempty = 1;
+
        if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
                printf("Error - unable to get current prefix!\n");
                return -1;
        }
        rte_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;
+       }
+
+
        /* check that some general flags don't prevent things from working.
         * All cases, apart from the first, app should run.
         * No futher testing of output done.
@@ -519,6 +667,29 @@ test_misc_flags(void)
        const char *argv1[] = {prgname, prefix, mp_flag, "-c", "1", "--no-pci"};
        /* With -v */
        const char *argv2[] = {prgname, prefix, mp_flag, "-c", "1", "-v"};
+       /* With valid --syslog */
+       const char *argv3[] = {prgname, prefix, mp_flag, "-c", "1",
+                       "--syslog", "syslog"};
+       /* With empty --syslog (should fail) */
+       const char *argv4[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog"};
+       /* With invalid --syslog */
+       const char *argv5[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog", "error"};
+       /* With no-sh-conf */
+       const char *argv6[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--no-shconf", "--file-prefix=noshconf" };
+       /* With --huge-dir */
+       const char *argv7[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--file-prefix=hugedir", "--huge-dir", hugepath};
+       /* With empty --huge-dir (should fail) */
+       const char *argv8[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--file-prefix=hugedir", "--huge-dir"};
+       /* With invalid --huge-dir */
+       const char *argv9[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--file-prefix=hugedir", "--huge-dir", "invalid"};
+       /* Secondary process with invalid --huge-dir (should run as flag has no
+        * effect on secondary processes) */
+       const char *argv10[] = {prgname, prefix, mp_flag, "-c", "1", "--huge-dir", "invalid"};
+
 
        if (launch_proc(argv0) == 0) {
                printf("Error - process ran ok with invalid flag\n");
@@ -532,6 +703,38 @@ test_misc_flags(void)
                printf("Error - process did not run ok with -v flag\n");
                return -1;
        }
+       if (launch_proc(argv3) != 0) {
+               printf("Error - process did not run ok with --syslog flag\n");
+               return -1;
+       }
+       if (launch_proc(argv4) == 0) {
+               printf("Error - process run ok with empty --syslog flag\n");
+               return -1;
+       }
+       if (launch_proc(argv5) == 0) {
+               printf("Error - process run ok with invalid --syslog flag\n");
+               return -1;
+       }
+       if (launch_proc(argv6) != 0) {
+               printf("Error - process did not run ok with --no-shconf flag\n");
+               return -1;
+       }
+       if (launch_proc(argv7) != 0) {
+               printf("Error - process did not run ok with --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv8) == 0) {
+               printf("Error - process run ok with empty --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv9) == 0) {
+               printf("Error - process run ok with invalid --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv10) != 0) {
+               printf("Error - secondary process did not run ok with invalid --huge-dir flag\n");
+               return -1;
+       }
        return 0;
 }
 
@@ -832,6 +1035,12 @@ test_eal_flags(void)
                return ret;
        }
 
+       ret = test_whitelist_flag();
+       if (ret < 0) {
+               printf("Error in test_invalid_whitelist_flag()\n");
+               return ret;
+       }
+
        ret = test_invalid_b_flag();
        if (ret < 0) {
                printf("Error in test_invalid_b_flag()\n");