eal: deprecate rte_snprintf
[dpdk.git] / lib / librte_cfgfile / rte_cfgfile.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 <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <ctype.h>
38 #include <rte_string_fns.h>
39
40 #include "rte_cfgfile.h"
41
42 struct rte_cfgfile_section {
43         char name[CFG_NAME_LEN];
44         int num_entries;
45         struct rte_cfgfile_entry *entries[0];
46 };
47
48 struct rte_cfgfile {
49         int flags;
50         int num_sections;
51         struct rte_cfgfile_section *sections[0];
52 };
53
54 /** when we resize a file structure, how many extra entries
55  * for new sections do we add in */
56 #define CFG_ALLOC_SECTION_BATCH 8
57 /** when we resize a section structure, how many extra entries
58  * for new entries do we add in */
59 #define CFG_ALLOC_ENTRY_BATCH 16
60
61 static unsigned
62 _strip(char *str, unsigned len)
63 {
64         int newlen = len;
65         if (len == 0)
66                 return 0;
67
68         if (isspace(str[len-1])) {
69                 /* strip trailing whitespace */
70                 while (newlen > 0 && isspace(str[newlen - 1]))
71                         str[--newlen] = '\0';
72         }
73
74         if (isspace(str[0])) {
75                 /* strip leading whitespace */
76                 int i, start = 1;
77                 while (isspace(str[start]) && start < newlen)
78                         start++
79                         ; /* do nothing */
80                 newlen -= start;
81                 for (i = 0; i < newlen; i++)
82                         str[i] = str[i+start];
83                 str[i] = '\0';
84         }
85         return newlen;
86 }
87
88 struct rte_cfgfile *
89 rte_cfgfile_load(const char *filename, int flags)
90 {
91         int allocated_sections = CFG_ALLOC_SECTION_BATCH;
92         int allocated_entries = 0;
93         int curr_section = -1;
94         int curr_entry = -1;
95         char buffer[256];
96         int lineno = 0;
97         struct rte_cfgfile *cfg = NULL;
98
99         FILE *f = fopen(filename, "r");
100         if (f == NULL)
101                 return NULL;
102
103         cfg = malloc(sizeof(*cfg) + sizeof(cfg->sections[0]) *
104                 allocated_sections);
105         if (cfg == NULL)
106                 goto error2;
107
108         memset(cfg->sections, 0, sizeof(cfg->sections[0]) * allocated_sections);
109
110         while (fgets(buffer, sizeof(buffer), f) != NULL) {
111                 char *pos = NULL;
112                 size_t len = strnlen(buffer, sizeof(buffer));
113                 lineno++;
114                 if ((len >= sizeof(buffer) - 1) && (buffer[len-1] != '\n')) {
115                         printf("Error line %d - no \\n found on string. "
116                                         "Check if line too long\n", lineno);
117                         goto error1;
118                 }
119                 pos = memchr(buffer, ';', sizeof(buffer));
120                 if (pos != NULL) {
121                         *pos = '\0';
122                         len = pos -  buffer;
123                 }
124
125                 len = _strip(buffer, len);
126                 if (buffer[0] != '[' && memchr(buffer, '=', len) == NULL)
127                         continue;
128
129                 if (buffer[0] == '[') {
130                         /* section heading line */
131                         char *end = memchr(buffer, ']', len);
132                         if (end == NULL) {
133                                 printf("Error line %d - no terminating '['"
134                                         "character found\n", lineno);
135                                 goto error1;
136                         }
137                         *end = '\0';
138                         _strip(&buffer[1], end - &buffer[1]);
139
140                         /* close off old section and add start new one */
141                         if (curr_section >= 0)
142                                 cfg->sections[curr_section]->num_entries =
143                                         curr_entry + 1;
144                         curr_section++;
145
146                         /* resize overall struct if we don't have room for more
147                         sections */
148                         if (curr_section == allocated_sections) {
149                                 allocated_sections += CFG_ALLOC_SECTION_BATCH;
150                                 struct rte_cfgfile *n_cfg = realloc(cfg,
151                                         sizeof(*cfg) + sizeof(cfg->sections[0])
152                                         * allocated_sections);
153                                 if (n_cfg == NULL) {
154                                         printf("Error - no more memory\n");
155                                         goto error1;
156                                 }
157                                 cfg = n_cfg;
158                         }
159
160                         /* allocate space for new section */
161                         allocated_entries = CFG_ALLOC_ENTRY_BATCH;
162                         curr_entry = -1;
163                         cfg->sections[curr_section] = malloc(
164                                 sizeof(*cfg->sections[0]) +
165                                 sizeof(cfg->sections[0]->entries[0]) *
166                                 allocated_entries);
167                         if (cfg->sections[curr_section] == NULL) {
168                                 printf("Error - no more memory\n");
169                                 goto error1;
170                         }
171
172                         snprintf(cfg->sections[curr_section]->name,
173                                         sizeof(cfg->sections[0]->name),
174                                         "%s", &buffer[1]);
175                 } else {
176                         /* value line */
177                         if (curr_section < 0) {
178                                 printf("Error line %d - value outside of"
179                                         "section\n", lineno);
180                                 goto error1;
181                         }
182
183                         struct rte_cfgfile_section *sect =
184                                 cfg->sections[curr_section];
185                         char *split[2];
186                         if (rte_strsplit(buffer, sizeof(buffer), split, 2, '=')
187                                 != 2) {
188                                 printf("Error at line %d - cannot split "
189                                         "string\n", lineno);
190                                 goto error1;
191                         }
192
193                         curr_entry++;
194                         if (curr_entry == allocated_entries) {
195                                 allocated_entries += CFG_ALLOC_ENTRY_BATCH;
196                                 struct rte_cfgfile_section *n_sect = realloc(
197                                         sect, sizeof(*sect) +
198                                         sizeof(sect->entries[0]) *
199                                         allocated_entries);
200                                 if (n_sect == NULL) {
201                                         printf("Error - no more memory\n");
202                                         goto error1;
203                                 }
204                                 sect = cfg->sections[curr_section] = n_sect;
205                         }
206
207                         sect->entries[curr_entry] = malloc(
208                                 sizeof(*sect->entries[0]));
209                         if (sect->entries[curr_entry] == NULL) {
210                                 printf("Error - no more memory\n");
211                                 goto error1;
212                         }
213
214                         struct rte_cfgfile_entry *entry = sect->entries[
215                                 curr_entry];
216                         snprintf(entry->name, sizeof(entry->name), "%s",
217                                 split[0]);
218                         snprintf(entry->value, sizeof(entry->value), "%s",
219                                 split[1]);
220                         _strip(entry->name, strnlen(entry->name,
221                                 sizeof(entry->name)));
222                         _strip(entry->value, strnlen(entry->value,
223                                 sizeof(entry->value)));
224                 }
225         }
226         fclose(f);
227         cfg->flags = flags;
228         cfg->sections[curr_section]->num_entries = curr_entry + 1;
229         cfg->num_sections = curr_section + 1;
230         return cfg;
231
232 error1:
233         rte_cfgfile_close(cfg);
234 error2:
235         fclose(f);
236         return NULL;
237 }
238
239
240 int rte_cfgfile_close(struct rte_cfgfile *cfg)
241 {
242         int i, j;
243
244         if (cfg == NULL)
245                 return -1;
246
247         for (i = 0; i < cfg->num_sections; i++) {
248                 if (cfg->sections[i] != NULL) {
249                         if (cfg->sections[i]->num_entries) {
250                                 for (j = 0; j < cfg->sections[i]->num_entries;
251                                         j++) {
252                                         if (cfg->sections[i]->entries[j] !=
253                                                 NULL)
254                                                 free(cfg->sections[i]->
255                                                         entries[j]);
256                                 }
257                         }
258                         free(cfg->sections[i]);
259                 }
260         }
261         free(cfg);
262
263         return 0;
264 }
265
266 int
267 rte_cfgfile_num_sections(struct rte_cfgfile *cfg, const char *sectionname,
268 size_t length)
269 {
270         int i;
271         int num_sections = 0;
272         for (i = 0; i < cfg->num_sections; i++) {
273                 if (strncmp(cfg->sections[i]->name, sectionname, length) == 0)
274                         num_sections++;
275         }
276         return num_sections;
277 }
278
279 int
280 rte_cfgfile_sections(struct rte_cfgfile *cfg, char *sections[],
281         int max_sections)
282 {
283         int i;
284
285         for (i = 0; i < cfg->num_sections && i < max_sections; i++)
286                 snprintf(sections[i], CFG_NAME_LEN, "%s",
287                 cfg->sections[i]->name);
288
289         return i;
290 }
291
292 static const struct rte_cfgfile_section *
293 _get_section(struct rte_cfgfile *cfg, const char *sectionname)
294 {
295         int i;
296         for (i = 0; i < cfg->num_sections; i++) {
297                 if (strncmp(cfg->sections[i]->name, sectionname,
298                                 sizeof(cfg->sections[0]->name)) == 0)
299                         return cfg->sections[i];
300         }
301         return NULL;
302 }
303
304 int
305 rte_cfgfile_has_section(struct rte_cfgfile *cfg, const char *sectionname)
306 {
307         return (_get_section(cfg, sectionname) != NULL);
308 }
309
310 int
311 rte_cfgfile_section_num_entries(struct rte_cfgfile *cfg,
312         const char *sectionname)
313 {
314         const struct rte_cfgfile_section *s = _get_section(cfg, sectionname);
315         if (s == NULL)
316                 return -1;
317         return s->num_entries;
318 }
319
320
321 int
322 rte_cfgfile_section_entries(struct rte_cfgfile *cfg, const char *sectionname,
323                 struct rte_cfgfile_entry *entries, int max_entries)
324 {
325         int i;
326         const struct rte_cfgfile_section *sect = _get_section(cfg, sectionname);
327         if (sect == NULL)
328                 return -1;
329         for (i = 0; i < max_entries && i < sect->num_entries; i++)
330                 entries[i] = *sect->entries[i];
331         return i;
332 }
333
334 const char *
335 rte_cfgfile_get_entry(struct rte_cfgfile *cfg, const char *sectionname,
336                 const char *entryname)
337 {
338         int i;
339         const struct rte_cfgfile_section *sect = _get_section(cfg, sectionname);
340         if (sect == NULL)
341                 return NULL;
342         for (i = 0; i < sect->num_entries; i++)
343                 if (strncmp(sect->entries[i]->name, entryname, CFG_NAME_LEN)
344                         == 0)
345                         return sect->entries[i]->value;
346         return NULL;
347 }
348
349 int
350 rte_cfgfile_has_entry(struct rte_cfgfile *cfg, const char *sectionname,
351                 const char *entryname)
352 {
353         return (rte_cfgfile_get_entry(cfg, sectionname, entryname) != NULL);
354 }