update Intel copyright years to 2014
[dpdk.git] / app / test / test_eal_fs.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 <cmdline_parse.h>
35
36 #include "test.h"
37 #ifndef RTE_EXEC_ENV_BAREMETAL
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41
42 /* eal_filesystem.h is not a public header file, so use relative path */
43 #include "../../lib/librte_eal/linuxapp/eal/include/eal_filesystem.h"
44
45 static int
46 test_parse_sysfs_value(void)
47 {
48         char filename[PATH_MAX] = "";
49         char proc_path[PATH_MAX];
50         char file_template[] = "/tmp/eal_test_XXXXXX";
51         int tmp_file_handle = -1;
52         FILE *fd = NULL;
53         unsigned valid_number;
54         unsigned long retval = 0;
55
56         printf("Testing function eal_parse_sysfs_value()\n");
57
58         /* get a temporary filename to use for all tests - create temp file handle and then
59          * use /proc to get the actual file that we can open */
60         tmp_file_handle = mkstemp(file_template);
61         if (tmp_file_handle == -1) {
62                 perror("mkstemp() failure");
63                 goto error;
64         }
65         rte_snprintf(proc_path, sizeof(proc_path), "/proc/self/fd/%d", tmp_file_handle);
66         if (readlink(proc_path, filename, sizeof(filename)) < 0) {
67                 perror("readlink() failure");
68                 goto error;
69         }
70         printf("Temporary file is: %s\n", filename);
71
72         /* test we get an error value if we use file before it's created */
73         printf("Test reading a missing file ...\n");
74         if (eal_parse_sysfs_value("/dev/not-quite-null", &retval) == 0) {
75                 printf("Error with eal_parse_sysfs_value() - returned success on reading empty file\n");
76                 goto error;
77         }
78         printf("Confirmed return error when reading empty file\n");
79
80         /* test reading a valid number value with "\n" on the end */
81         printf("Test reading valid values ...\n");
82         valid_number = 15;
83         fd = fopen(filename,"w");
84         if (fd == NULL) {
85                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
86                 goto error;
87         }
88         fprintf(fd,"%u\n", valid_number);
89         fclose(fd);
90         fd = NULL;
91         if (eal_parse_sysfs_value(filename, &retval) < 0) {
92                 printf("eal_parse_sysfs_value() returned error - test failed\n");
93                 goto error;
94         }
95         if (retval != valid_number) {
96                 printf("Invalid value read by eal_parse_sysfs_value() - test failed\n");
97                 goto error;
98         }
99         printf("Read '%u\\n' ok\n", valid_number);
100
101         /* test reading a valid hex number value with "\n" on the end */
102         valid_number = 25;
103         fd = fopen(filename,"w");
104         if (fd == NULL) {
105                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
106                 goto error;
107         }
108         fprintf(fd,"0x%x\n", valid_number);
109         fclose(fd);
110         fd = NULL;
111         if (eal_parse_sysfs_value(filename, &retval) < 0) {
112                 printf("eal_parse_sysfs_value() returned error - test failed\n");
113                 goto error;
114         }
115         if (retval != valid_number) {
116                 printf("Invalid value read by eal_parse_sysfs_value() - test failed\n");
117                 goto error;
118         }
119         printf("Read '0x%x\\n' ok\n", valid_number);
120
121         printf("Test reading invalid values ...\n");
122
123         /* test reading an empty file - expect failure!*/
124         fd = fopen(filename,"w");
125         if (fd == NULL) {
126                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
127                 goto error;
128         }
129         fclose(fd);
130         fd = NULL;
131         if (eal_parse_sysfs_value(filename, &retval) == 0) {
132                 printf("eal_parse_sysfs_value() read invalid value  - test failed\n");
133                 goto error;
134         }
135
136         /* test reading a valid number value *without* "\n" on the end - expect failure!*/
137         valid_number = 3;
138         fd = fopen(filename,"w");
139         if (fd == NULL) {
140                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
141                 goto error;
142         }
143         fprintf(fd,"%u", valid_number);
144         fclose(fd);
145         fd = NULL;
146         if (eal_parse_sysfs_value(filename, &retval) == 0) {
147                 printf("eal_parse_sysfs_value() read invalid value  - test failed\n");
148                 goto error;
149         }
150
151         /* test reading a valid number value followed by string - expect failure!*/
152         valid_number = 3;
153         fd = fopen(filename,"w");
154         if (fd == NULL) {
155                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
156                 goto error;
157         }
158         fprintf(fd,"%uJ\n", valid_number);
159         fclose(fd);
160         fd = NULL;
161         if (eal_parse_sysfs_value(filename, &retval) == 0) {
162                 printf("eal_parse_sysfs_value() read invalid value  - test failed\n");
163                 goto error;
164         }
165
166         /* test reading a non-numeric value - expect failure!*/
167         fd = fopen(filename,"w");
168         if (fd == NULL) {
169                 printf("line %d, Error opening %s: %s\n", __LINE__, filename, strerror(errno));
170                 goto error;
171         }
172         fprintf(fd,"error\n");
173         fclose(fd);
174         fd = NULL;
175         if (eal_parse_sysfs_value(filename, &retval) == 0) {
176                 printf("eal_parse_sysfs_value() read invalid value  - test failed\n");
177                 goto error;
178         }
179
180         close(tmp_file_handle);
181         unlink(filename);
182         printf("eal_parse_sysfs_value() - OK\n");
183         return 0;
184
185 error:
186         if (fd)
187                 fclose(fd);
188         if (tmp_file_handle > 0)
189                 close(tmp_file_handle);
190         if (filename[0] != '\0')
191                 unlink(filename);
192         return -1;
193 }
194
195 int
196 test_eal_fs(void)
197 {
198         if (test_parse_sysfs_value() < 0)
199                 return -1;
200         return 0;
201 }
202 #else
203 /* baremetal does not have a filesystem */
204 int
205 test_eal_fs(void)
206 {
207         return 0;
208 }
209 #endif