update Intel copyright years to 2014
[dpdk.git] / app / test / test_errno.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdint.h>
35 #include <stdio.h>
36 #include <stdarg.h>
37 #include <errno.h>
38 #include <string.h>
39 #include <rte_per_lcore.h>
40 #include <rte_errno.h>
41 #include <rte_string_fns.h>
42
43 #include <cmdline_parse.h>
44
45 #include "test.h"
46
47 int
48 test_errno(void)
49 {
50         const char *rte_retval;
51         const char *libc_retval;
52         const char unknown_code_result[] = "Unknown error %d";
53         char expected_libc_retval[sizeof(unknown_code_result)+3];
54
55         /* use a small selection of standard errors for testing */
56         int std_errs[] = {EAGAIN, EBADF, EACCES, EINTR, EINVAL};
57         /* test ALL registered RTE error codes for overlap */
58         int rte_errs[] = {E_RTE_SECONDARY, E_RTE_NO_CONFIG, E_RTE_NO_TAILQ};
59         unsigned i;
60
61         rte_errno = 0;
62         if (rte_errno != 0)
63                 return -1;
64         /* check for standard errors we return the same as libc */
65         for (i = 0; i < sizeof(std_errs)/sizeof(std_errs[0]); i++){
66                 rte_retval = rte_strerror(std_errs[i]);
67                 libc_retval = strerror(std_errs[i]);
68                 printf("rte_strerror: '%s', strerror: '%s'\n",
69                                 rte_retval, libc_retval);
70                 if (strcmp(rte_retval, libc_retval) != 0)
71                         return -1;
72         }
73         /* for rte-specific errors ensure we return a different string
74          * and that the string for libc is for an unknown error
75          */
76         for (i = 0; i < sizeof(rte_errs)/sizeof(rte_errs[0]); i++){
77                 rte_retval = rte_strerror(rte_errs[i]);
78                 libc_retval = strerror(rte_errs[i]);
79                 printf("rte_strerror: '%s', strerror: '%s'\n",
80                                 rte_retval, libc_retval);
81                 if (strcmp(rte_retval, libc_retval) == 0)
82                         return -1;
83                 /* generate appropriate error string for unknown error number
84                  * and then check that this is what we got back. If not, we have
85                  * a duplicate error number that conflicts with errno.h */
86                 rte_snprintf(expected_libc_retval, sizeof(expected_libc_retval),
87                                 unknown_code_result, rte_errs[i]);
88                 if ((strcmp(expected_libc_retval, libc_retval) != 0) &&
89                                 (strcmp("", libc_retval) != 0)){
90                         printf("Error, duplicate error code %d\n", rte_errs[i]);
91                         return -1;
92                 }
93         }
94
95         /* ensure that beyond RTE_MAX_ERRNO, we always get an unknown code */
96         rte_retval = rte_strerror(RTE_MAX_ERRNO + 1);
97         libc_retval = strerror(RTE_MAX_ERRNO + 1);
98         rte_snprintf(expected_libc_retval, sizeof(expected_libc_retval),
99                         unknown_code_result, RTE_MAX_ERRNO + 1);
100         printf("rte_strerror: '%s', strerror: '%s'\n",
101                         rte_retval, libc_retval);
102         if ((strcmp(rte_retval, libc_retval) != 0) ||
103                         (strcmp(expected_libc_retval, libc_retval) != 0)){
104                 if (strcmp("", libc_retval) != 0){
105                         printf("Failed test for RTE_MAX_ERRNO + 1 value\n");
106                         return -1;
107                 }
108         }
109
110         return 0;
111 }