blob: 4a8c50b4b8ac9835d63e6bb680ce8bfa827d59b7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: LGPL-2.1+
Wolfgang Denka6826fb2010-06-20 13:17:12 +02002/*
3 * This implementation is based on code from uClibc-0.9.30.3 but was
4 * modified and extended for use within U-Boot.
5 *
Wolfgang Denkea009d42013-03-23 23:50:28 +00006 * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de>
Wolfgang Denka6826fb2010-06-20 13:17:12 +02007 *
8 * Original license header:
9 *
10 * Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
11 * This file is part of the GNU C Library.
12 * Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1993.
Wolfgang Denka6826fb2010-06-20 13:17:12 +020013 */
14
15#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020017#include <malloc.h>
Simon Glass8bef79b2019-11-14 12:57:19 -070018#include <sort.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020019
20#ifdef USE_HOSTCC /* HOST build */
21# include <string.h>
22# include <assert.h>
Jason Hobbs4d91a6e2011-08-23 11:06:54 +000023# include <ctype.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020024
25# ifndef debug
26# ifdef DEBUG
27# define debug(fmt,args...) printf(fmt ,##args)
28# else
29# define debug(fmt,args...)
30# endif
31# endif
32#else /* U-Boot build */
33# include <common.h>
34# include <linux/string.h>
Jason Hobbs4d91a6e2011-08-23 11:06:54 +000035# include <linux/ctype.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020036#endif
37
Andreas Bießmannfc5fc762010-10-01 22:51:02 +020038#ifndef CONFIG_ENV_MIN_ENTRIES /* minimum number of entries */
39#define CONFIG_ENV_MIN_ENTRIES 64
40#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +020041#ifndef CONFIG_ENV_MAX_ENTRIES /* maximum number of entries */
42#define CONFIG_ENV_MAX_ENTRIES 512
43#endif
44
Roman Kapl9dfdbd92019-01-30 11:39:54 +010045#define USED_FREE 0
46#define USED_DELETED -1
47
Joe Hershberger170ab112012-12-11 22:16:24 -060048#include <env_callback.h>
Joe Hershberger25980902012-12-11 22:16:31 -060049#include <env_flags.h>
Joe Hershberger170ab112012-12-11 22:16:24 -060050#include <search.h>
Wolfgang Denkbe29df62013-03-23 23:50:32 +000051#include <slre.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020052
53/*
54 * [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986
Wolfgang Denk071bc922010-10-27 22:48:30 +020055 * [Knuth] The Art of Computer Programming, part 3 (6.4)
Wolfgang Denka6826fb2010-06-20 13:17:12 +020056 */
57
58/*
Wolfgang Denka6826fb2010-06-20 13:17:12 +020059 * The reentrant version has no static variables to maintain the state.
60 * Instead the interface of all functions is extended to take an argument
61 * which describes the current status.
62 */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -060063
Simon Glass25e51e92019-08-02 09:44:19 -060064struct env_entry_node {
Peter Baradac81c1222011-03-21 19:05:20 -040065 int used;
Simon Glassdd2408c2019-08-02 09:44:18 -060066 struct env_entry entry;
Simon Glass25e51e92019-08-02 09:44:19 -060067};
Wolfgang Denka6826fb2010-06-20 13:17:12 +020068
69
Simon Glassdd2408c2019-08-02 09:44:18 -060070static void _hdelete(const char *key, struct hsearch_data *htab,
71 struct env_entry *ep, int idx);
Joe Hershberger7afcf3a2012-12-11 22:16:21 -060072
Wolfgang Denka6826fb2010-06-20 13:17:12 +020073/*
74 * hcreate()
75 */
76
77/*
78 * For the used double hash method the table size has to be a prime. To
79 * correct the user given table size we need a prime test. This trivial
80 * algorithm is adequate because
81 * a) the code is (most probably) called a few times per program run and
82 * b) the number is small because the table must fit in the core
83 * */
84static int isprime(unsigned int number)
85{
86 /* no even number will be passed */
87 unsigned int div = 3;
88
89 while (div * div < number && number % div != 0)
90 div += 2;
91
92 return number % div != 0;
93}
94
Wolfgang Denka6826fb2010-06-20 13:17:12 +020095/*
96 * Before using the hash table we must allocate memory for it.
97 * Test for an existing table are done. We allocate one element
98 * more as the found prime number says. This is done for more effective
99 * indexing as explained in the comment for the hsearch function.
100 * The contents of the table is zeroed, especially the field used
101 * becomes zero.
102 */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500103
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200104int hcreate_r(size_t nel, struct hsearch_data *htab)
105{
106 /* Test for correct arguments. */
107 if (htab == NULL) {
108 __set_errno(EINVAL);
109 return 0;
110 }
111
112 /* There is still another table active. Return with error. */
Sean Anderson60ffcf22020-06-24 06:41:15 -0400113 if (htab->table != NULL) {
114 __set_errno(EINVAL);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200115 return 0;
Sean Anderson60ffcf22020-06-24 06:41:15 -0400116 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200117
118 /* Change nel to the first prime number not smaller as nel. */
119 nel |= 1; /* make odd */
120 while (!isprime(nel))
121 nel += 2;
122
123 htab->size = nel;
124 htab->filled = 0;
125
126 /* allocate memory and zero out */
Simon Glass25e51e92019-08-02 09:44:19 -0600127 htab->table = (struct env_entry_node *)calloc(htab->size + 1,
128 sizeof(struct env_entry_node));
Sean Anderson60ffcf22020-06-24 06:41:15 -0400129 if (htab->table == NULL) {
130 __set_errno(ENOMEM);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200131 return 0;
Sean Anderson60ffcf22020-06-24 06:41:15 -0400132 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200133
134 /* everything went alright */
135 return 1;
136}
137
138
139/*
140 * hdestroy()
141 */
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200142
143/*
144 * After using the hash table it has to be destroyed. The used memory can
145 * be freed and the local static variable can be marked as not used.
146 */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500147
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600148void hdestroy_r(struct hsearch_data *htab)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200149{
150 int i;
151
152 /* Test for correct arguments. */
153 if (htab == NULL) {
154 __set_errno(EINVAL);
155 return;
156 }
157
158 /* free used memory */
159 for (i = 1; i <= htab->size; ++i) {
Peter Baradac81c1222011-03-21 19:05:20 -0400160 if (htab->table[i].used > 0) {
Simon Glassdd2408c2019-08-02 09:44:18 -0600161 struct env_entry *ep = &htab->table[i].entry;
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600162
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200163 free((void *)ep->key);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200164 free(ep->data);
165 }
166 }
167 free(htab->table);
168
169 /* the sign for an existing table is an value != NULL in htable */
170 htab->table = NULL;
171}
172
173/*
174 * hsearch()
175 */
176
177/*
178 * This is the search function. It uses double hashing with open addressing.
179 * The argument item.key has to be a pointer to an zero terminated, most
180 * probably strings of chars. The function for generating a number of the
181 * strings is simple but fast. It can be replaced by a more complex function
182 * like ajw (see [Aho,Sethi,Ullman]) if the needs are shown.
183 *
184 * We use an trick to speed up the lookup. The table is created by hcreate
185 * with one more element available. This enables us to use the index zero
186 * special. This index will never be used because we store the first hash
187 * index in the field used where zero means not used. Every other value
188 * means used. The used field can be used as a first fast comparison for
189 * equality of the stored and the parameter value. This helps to prevent
190 * unnecessary expensive calls of strcmp.
191 *
192 * This implementation differs from the standard library version of
193 * this function in a number of ways:
194 *
195 * - While the standard version does not make any assumptions about
196 * the type of the stored data objects at all, this implementation
197 * works with NUL terminated strings only.
198 * - Instead of storing just pointers to the original objects, we
199 * create local copies so the caller does not need to care about the
200 * data any more.
201 * - The standard implementation does not provide a way to update an
202 * existing entry. This version will create a new entry or update an
Simon Glass3f0d6802019-08-01 09:47:09 -0600203 * existing one when both "action == ENV_ENTER" and "item.data != NULL".
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200204 * - Instead of returning 1 on success, we return the index into the
205 * internal hash table, which is also guaranteed to be positive.
206 * This allows us direct access to the found hash table slot for
207 * example for functions like hdelete().
208 */
209
Simon Glassdd2408c2019-08-02 09:44:18 -0600210int hmatch_r(const char *match, int last_idx, struct env_entry **retval,
Mike Frysinger560d4242010-12-17 16:51:59 -0500211 struct hsearch_data *htab)
212{
213 unsigned int idx;
214 size_t key_len = strlen(match);
215
216 for (idx = last_idx + 1; idx < htab->size; ++idx) {
Kim Phillipsaf4d9072011-04-04 15:17:45 +0000217 if (htab->table[idx].used <= 0)
Mike Frysinger560d4242010-12-17 16:51:59 -0500218 continue;
219 if (!strncmp(match, htab->table[idx].entry.key, key_len)) {
220 *retval = &htab->table[idx].entry;
221 return idx;
222 }
223 }
224
225 __set_errno(ESRCH);
226 *retval = NULL;
227 return 0;
228}
229
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000230static int
231do_callback(const struct env_entry *e, const char *name, const char *value,
232 enum env_op op, int flags)
233{
Rasmus Villemoes34284972020-02-27 13:56:11 +0000234#ifndef CONFIG_SPL_BUILD
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000235 if (e->callback)
236 return e->callback(name, value, op, flags);
Rasmus Villemoes34284972020-02-27 13:56:11 +0000237#endif
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000238 return 0;
239}
240
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600241/*
242 * Compare an existing entry with the desired key, and overwrite if the action
Simon Glass3f0d6802019-08-01 09:47:09 -0600243 * is ENV_ENTER. This is simply a helper function for hsearch_r().
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600244 */
Simon Glassdd2408c2019-08-02 09:44:18 -0600245static inline int _compare_and_overwrite_entry(struct env_entry item,
Simon Glass3f0d6802019-08-01 09:47:09 -0600246 enum env_action action, struct env_entry **retval,
Simon Glassdd2408c2019-08-02 09:44:18 -0600247 struct hsearch_data *htab, int flag, unsigned int hval,
248 unsigned int idx)
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600249{
250 if (htab->table[idx].used == hval
251 && strcmp(item.key, htab->table[idx].entry.key) == 0) {
252 /* Overwrite existing value? */
Simon Glass3f0d6802019-08-01 09:47:09 -0600253 if (action == ENV_ENTER && item.data) {
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600254 /* check for permission */
255 if (htab->change_ok != NULL && htab->change_ok(
256 &htab->table[idx].entry, item.data,
257 env_op_overwrite, flag)) {
258 debug("change_ok() rejected setting variable "
259 "%s, skipping it!\n", item.key);
260 __set_errno(EPERM);
261 *retval = NULL;
262 return 0;
263 }
264
Joe Hershberger170ab112012-12-11 22:16:24 -0600265 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000266 if (do_callback(&htab->table[idx].entry, item.key,
267 item.data, env_op_overwrite, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600268 debug("callback() rejected setting variable "
269 "%s, skipping it!\n", item.key);
270 __set_errno(EINVAL);
271 *retval = NULL;
272 return 0;
273 }
274
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600275 free(htab->table[idx].entry.data);
276 htab->table[idx].entry.data = strdup(item.data);
277 if (!htab->table[idx].entry.data) {
278 __set_errno(ENOMEM);
279 *retval = NULL;
280 return 0;
281 }
282 }
283 /* return found entry */
284 *retval = &htab->table[idx].entry;
285 return idx;
286 }
287 /* keep searching */
288 return -1;
289}
290
Simon Glass3f0d6802019-08-01 09:47:09 -0600291int hsearch_r(struct env_entry item, enum env_action action,
292 struct env_entry **retval, struct hsearch_data *htab, int flag)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200293{
294 unsigned int hval;
295 unsigned int count;
296 unsigned int len = strlen(item.key);
297 unsigned int idx;
Peter Baradac81c1222011-03-21 19:05:20 -0400298 unsigned int first_deleted = 0;
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600299 int ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200300
301 /* Compute an value for the given string. Perhaps use a better method. */
302 hval = len;
303 count = len;
304 while (count-- > 0) {
305 hval <<= 4;
306 hval += item.key[count];
307 }
308
309 /*
310 * First hash function:
311 * simply take the modul but prevent zero.
312 */
313 hval %= htab->size;
314 if (hval == 0)
315 ++hval;
316
317 /* The first index tried. */
318 idx = hval;
319
320 if (htab->table[idx].used) {
321 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200322 * Further action might be required according to the
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200323 * action value.
324 */
325 unsigned hval2;
326
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100327 if (htab->table[idx].used == USED_DELETED
Peter Baradac81c1222011-03-21 19:05:20 -0400328 && !first_deleted)
329 first_deleted = idx;
330
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600331 ret = _compare_and_overwrite_entry(item, action, retval, htab,
332 flag, hval, idx);
333 if (ret != -1)
334 return ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200335
336 /*
337 * Second hash function:
338 * as suggested in [Knuth]
339 */
340 hval2 = 1 + hval % (htab->size - 2);
341
342 do {
343 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200344 * Because SIZE is prime this guarantees to
345 * step through all available indices.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200346 */
347 if (idx <= hval2)
348 idx = htab->size + idx - hval2;
349 else
350 idx -= hval2;
351
352 /*
353 * If we visited all entries leave the loop
354 * unsuccessfully.
355 */
356 if (idx == hval)
357 break;
358
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100359 if (htab->table[idx].used == USED_DELETED
360 && !first_deleted)
361 first_deleted = idx;
362
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200363 /* If entry is found use it. */
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600364 ret = _compare_and_overwrite_entry(item, action, retval,
365 htab, flag, hval, idx);
366 if (ret != -1)
367 return ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200368 }
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100369 while (htab->table[idx].used != USED_FREE);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200370 }
371
372 /* An empty bucket has been found. */
Simon Glass3f0d6802019-08-01 09:47:09 -0600373 if (action == ENV_ENTER) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200374 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200375 * If table is full and another entry should be
376 * entered return with error.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200377 */
378 if (htab->filled == htab->size) {
379 __set_errno(ENOMEM);
380 *retval = NULL;
381 return 0;
382 }
383
384 /*
385 * Create new entry;
386 * create copies of item.key and item.data
387 */
Peter Baradac81c1222011-03-21 19:05:20 -0400388 if (first_deleted)
389 idx = first_deleted;
390
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200391 htab->table[idx].used = hval;
392 htab->table[idx].entry.key = strdup(item.key);
393 htab->table[idx].entry.data = strdup(item.data);
394 if (!htab->table[idx].entry.key ||
395 !htab->table[idx].entry.data) {
396 __set_errno(ENOMEM);
397 *retval = NULL;
398 return 0;
399 }
400
401 ++htab->filled;
402
Joe Hershberger170ab112012-12-11 22:16:24 -0600403 /* This is a new entry, so look up a possible callback */
404 env_callback_init(&htab->table[idx].entry);
Joe Hershberger25980902012-12-11 22:16:31 -0600405 /* Also look for flags */
406 env_flags_init(&htab->table[idx].entry);
Joe Hershberger170ab112012-12-11 22:16:24 -0600407
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600408 /* check for permission */
409 if (htab->change_ok != NULL && htab->change_ok(
410 &htab->table[idx].entry, item.data, env_op_create, flag)) {
411 debug("change_ok() rejected setting variable "
412 "%s, skipping it!\n", item.key);
413 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
414 __set_errno(EPERM);
415 *retval = NULL;
416 return 0;
417 }
418
Joe Hershberger170ab112012-12-11 22:16:24 -0600419 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000420 if (do_callback(&htab->table[idx].entry, item.key, item.data,
421 env_op_create, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600422 debug("callback() rejected setting variable "
423 "%s, skipping it!\n", item.key);
424 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
425 __set_errno(EINVAL);
426 *retval = NULL;
427 return 0;
428 }
429
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200430 /* return new entry */
431 *retval = &htab->table[idx].entry;
432 return 1;
433 }
434
435 __set_errno(ESRCH);
436 *retval = NULL;
437 return 0;
438}
439
440
441/*
442 * hdelete()
443 */
444
445/*
446 * The standard implementation of hsearch(3) does not provide any way
447 * to delete any entries from the hash table. We extend the code to
448 * do that.
449 */
450
Simon Glassdd2408c2019-08-02 09:44:18 -0600451static void _hdelete(const char *key, struct hsearch_data *htab,
452 struct env_entry *ep, int idx)
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600453{
Simon Glassdd2408c2019-08-02 09:44:18 -0600454 /* free used entry */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600455 debug("hdelete: DELETING key \"%s\"\n", key);
456 free((void *)ep->key);
457 free(ep->data);
Joe Hershberger25980902012-12-11 22:16:31 -0600458 ep->flags = 0;
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100459 htab->table[idx].used = USED_DELETED;
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600460
461 --htab->filled;
462}
463
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600464int hdelete_r(const char *key, struct hsearch_data *htab, int flag)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200465{
Simon Glassdd2408c2019-08-02 09:44:18 -0600466 struct env_entry e, *ep;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200467 int idx;
468
469 debug("hdelete: DELETE key \"%s\"\n", key);
470
471 e.key = (char *)key;
472
Simon Glass3f0d6802019-08-01 09:47:09 -0600473 idx = hsearch_r(e, ENV_FIND, &ep, htab, 0);
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600474 if (idx == 0) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200475 __set_errno(ESRCH);
476 return 0; /* not found */
477 }
478
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600479 /* Check for permission */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600480 if (htab->change_ok != NULL &&
481 htab->change_ok(ep, NULL, env_op_delete, flag)) {
482 debug("change_ok() rejected deleting variable "
483 "%s, skipping it!\n", key);
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600484 __set_errno(EPERM);
485 return 0;
486 }
487
Joe Hershberger170ab112012-12-11 22:16:24 -0600488 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000489 if (do_callback(&htab->table[idx].entry, key, NULL,
490 env_op_delete, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600491 debug("callback() rejected deleting variable "
492 "%s, skipping it!\n", key);
493 __set_errno(EINVAL);
494 return 0;
495 }
496
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600497 _hdelete(key, htab, ep, idx);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200498
499 return 1;
500}
501
B, Ravid2d9bdf2016-09-28 14:46:18 +0530502#if !(defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_SAVEENV))
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200503/*
504 * hexport()
505 */
506
507/*
508 * Export the data stored in the hash table in linearized form.
509 *
510 * Entries are exported as "name=value" strings, separated by an
511 * arbitrary (non-NUL, of course) separator character. This allows to
512 * use this function both when formatting the U-Boot environment for
513 * external storage (using '\0' as separator), but also when using it
514 * for the "printenv" command to print all variables, simply by using
515 * as '\n" as separator. This can also be used for new features like
516 * exporting the environment data as text file, including the option
517 * for later re-import.
518 *
519 * The entries in the result list will be sorted by ascending key
520 * values.
521 *
522 * If the separator character is different from NUL, then any
523 * separator characters and backslash characters in the values will
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400524 * be escaped by a preceding backslash in output. This is needed for
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200525 * example to enable multi-line values, especially when the output
526 * shall later be parsed (for example, for re-import).
527 *
528 * There are several options how the result buffer is handled:
529 *
530 * *resp size
531 * -----------
532 * NULL 0 A string of sufficient length will be allocated.
533 * NULL >0 A string of the size given will be
534 * allocated. An error will be returned if the size is
535 * not sufficient. Any unused bytes in the string will
536 * be '\0'-padded.
537 * !NULL 0 The user-supplied buffer will be used. No length
538 * checking will be performed, i. e. it is assumed that
539 * the buffer size will always be big enough. DANGEROUS.
540 * !NULL >0 The user-supplied buffer will be used. An error will
541 * be returned if the size is not sufficient. Any unused
542 * bytes in the string will be '\0'-padded.
543 */
544
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200545static int cmpkey(const void *p1, const void *p2)
546{
Simon Glassdd2408c2019-08-02 09:44:18 -0600547 struct env_entry *e1 = *(struct env_entry **)p1;
548 struct env_entry *e2 = *(struct env_entry **)p2;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200549
550 return (strcmp(e1->key, e2->key));
551}
552
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000553static int match_string(int flag, const char *str, const char *pat, void *priv)
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000554{
555 switch (flag & H_MATCH_METHOD) {
556 case H_MATCH_IDENT:
557 if (strcmp(str, pat) == 0)
558 return 1;
559 break;
560 case H_MATCH_SUBSTR:
561 if (strstr(str, pat))
562 return 1;
563 break;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000564#ifdef CONFIG_REGEX
565 case H_MATCH_REGEX:
566 {
567 struct slre *slrep = (struct slre *)priv;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000568
Heinrich Schuchardt320194a2019-01-23 08:17:02 +0100569 if (slre_match(slrep, str, strlen(str), NULL))
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000570 return 1;
571 }
572 break;
573#endif
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000574 default:
575 printf("## ERROR: unsupported match method: 0x%02x\n",
576 flag & H_MATCH_METHOD);
577 break;
578 }
579 return 0;
580}
581
Simon Glassdd2408c2019-08-02 09:44:18 -0600582static int match_entry(struct env_entry *ep, int flag, int argc,
583 char *const argv[])
Wolfgang Denkea009d42013-03-23 23:50:28 +0000584{
585 int arg;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000586 void *priv = NULL;
Wolfgang Denkea009d42013-03-23 23:50:28 +0000587
Pierre Aubert9a832332013-10-08 14:20:27 +0200588 for (arg = 0; arg < argc; ++arg) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000589#ifdef CONFIG_REGEX
590 struct slre slre;
591
592 if (slre_compile(&slre, argv[arg]) == 0) {
593 printf("Error compiling regex: %s\n", slre.err_str);
594 return 0;
595 }
596
597 priv = (void *)&slre;
598#endif
Wolfgang Denkea009d42013-03-23 23:50:28 +0000599 if (flag & H_MATCH_KEY) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000600 if (match_string(flag, ep->key, argv[arg], priv))
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000601 return 1;
602 }
603 if (flag & H_MATCH_DATA) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000604 if (match_string(flag, ep->data, argv[arg], priv))
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000605 return 1;
Wolfgang Denkea009d42013-03-23 23:50:28 +0000606 }
607 }
608 return 0;
609}
610
Joe Hershbergerbe112352012-12-11 22:16:23 -0600611ssize_t hexport_r(struct hsearch_data *htab, const char sep, int flag,
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100612 char **resp, size_t size,
Simon Glass09140112020-05-10 11:40:03 -0600613 int argc, char *const argv[])
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200614{
Simon Glassdd2408c2019-08-02 09:44:18 -0600615 struct env_entry *list[htab->size];
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200616 char *res, *p;
617 size_t totlen;
618 int i, n;
619
620 /* Test for correct arguments. */
621 if ((resp == NULL) || (htab == NULL)) {
622 __set_errno(EINVAL);
623 return (-1);
624 }
625
Simon Glassc55d02b2016-07-22 09:22:48 -0600626 debug("EXPORT table = %p, htab.size = %d, htab.filled = %d, size = %lu\n",
627 htab, htab->size, htab->filled, (ulong)size);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200628 /*
629 * Pass 1:
630 * search used entries,
631 * save addresses and compute total length
632 */
633 for (i = 1, n = 0, totlen = 0; i <= htab->size; ++i) {
634
Peter Baradac81c1222011-03-21 19:05:20 -0400635 if (htab->table[i].used > 0) {
Simon Glassdd2408c2019-08-02 09:44:18 -0600636 struct env_entry *ep = &htab->table[i].entry;
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000637 int found = match_entry(ep, flag, argc, argv);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100638
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100639 if ((argc > 0) && (found == 0))
640 continue;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200641
Joe Hershbergerbe112352012-12-11 22:16:23 -0600642 if ((flag & H_HIDE_DOT) && ep->key[0] == '.')
643 continue;
644
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200645 list[n++] = ep;
646
Zubair Lutfullah Kakakhelf1b20ac2018-07-17 19:25:38 +0100647 totlen += strlen(ep->key);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200648
649 if (sep == '\0') {
650 totlen += strlen(ep->data);
651 } else { /* check if escapes are needed */
652 char *s = ep->data;
653
654 while (*s) {
655 ++totlen;
656 /* add room for needed escape chars */
657 if ((*s == sep) || (*s == '\\'))
658 ++totlen;
659 ++s;
660 }
661 }
662 totlen += 2; /* for '=' and 'sep' char */
663 }
664 }
665
666#ifdef DEBUG
667 /* Pass 1a: print unsorted list */
668 printf("Unsorted: n=%d\n", n);
669 for (i = 0; i < n; ++i) {
670 printf("\t%3d: %p ==> %-10s => %s\n",
671 i, list[i], list[i]->key, list[i]->data);
672 }
673#endif
674
675 /* Sort list by keys */
Simon Glassdd2408c2019-08-02 09:44:18 -0600676 qsort(list, n, sizeof(struct env_entry *), cmpkey);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200677
678 /* Check if the user supplied buffer size is sufficient */
679 if (size) {
680 if (size < totlen + 1) { /* provided buffer too small */
Simon Glassc55d02b2016-07-22 09:22:48 -0600681 printf("Env export buffer too small: %lu, but need %lu\n",
682 (ulong)size, (ulong)totlen + 1);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200683 __set_errno(ENOMEM);
684 return (-1);
685 }
686 } else {
AKASHI Takahiro4bca3242018-12-14 18:42:51 +0900687 size = totlen + 1;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200688 }
689
690 /* Check if the user provided a buffer */
691 if (*resp) {
692 /* yes; clear it */
693 res = *resp;
694 memset(res, '\0', size);
695 } else {
696 /* no, allocate and clear one */
697 *resp = res = calloc(1, size);
698 if (res == NULL) {
699 __set_errno(ENOMEM);
700 return (-1);
701 }
702 }
703 /*
704 * Pass 2:
705 * export sorted list of result data
706 */
707 for (i = 0, p = res; i < n; ++i) {
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200708 const char *s;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200709
710 s = list[i]->key;
711 while (*s)
712 *p++ = *s++;
713 *p++ = '=';
714
715 s = list[i]->data;
716
717 while (*s) {
718 if ((*s == sep) || (*s == '\\'))
719 *p++ = '\\'; /* escape */
720 *p++ = *s++;
721 }
722 *p++ = sep;
723 }
724 *p = '\0'; /* terminate result */
725
726 return size;
727}
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000728#endif
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200729
730
731/*
732 * himport()
733 */
734
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000735/*
736 * Check whether variable 'name' is amongst vars[],
737 * and remove all instances by setting the pointer to NULL
738 */
739static int drop_var_from_set(const char *name, int nvars, char * vars[])
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000740{
741 int i = 0;
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000742 int res = 0;
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000743
744 /* No variables specified means process all of them */
745 if (nvars == 0)
746 return 1;
747
748 for (i = 0; i < nvars; i++) {
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000749 if (vars[i] == NULL)
750 continue;
751 /* If we found it, delete all of them */
752 if (!strcmp(name, vars[i])) {
753 vars[i] = NULL;
754 res = 1;
755 }
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000756 }
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000757 if (!res)
758 debug("Skipping non-listed variable %s\n", name);
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000759
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000760 return res;
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000761}
762
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200763/*
764 * Import linearized data into hash table.
765 *
766 * This is the inverse function to hexport(): it takes a linear list
767 * of "name=value" pairs and creates hash table entries from it.
768 *
769 * Entries without "value", i. e. consisting of only "name" or
770 * "name=", will cause this entry to be deleted from the hash table.
771 *
772 * The "flag" argument can be used to control the behaviour: when the
773 * H_NOCLEAR bit is set, then an existing hash table will kept, i. e.
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200774 * new data will be added to an existing hash table; otherwise, if no
775 * vars are passed, old data will be discarded and a new hash table
776 * will be created. If vars are passed, passed vars that are not in
777 * the linear list of "name=value" pairs will be removed from the
778 * current hash table.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200779 *
780 * The separator character for the "name=value" pairs can be selected,
781 * so we both support importing from externally stored environment
782 * data (separated by NUL characters) and from plain text files
783 * (entries separated by newline characters).
784 *
785 * To allow for nicely formatted text input, leading white space
786 * (sequences of SPACE and TAB chars) is ignored, and entries starting
787 * (after removal of any leading white space) with a '#' character are
788 * considered comments and ignored.
789 *
790 * [NOTE: this means that a variable name cannot start with a '#'
791 * character.]
792 *
793 * When using a non-NUL separator character, backslash is used as
794 * escape character in the value part, allowing for example for
795 * multi-line values.
796 *
797 * In theory, arbitrary separator characters can be used, but only
798 * '\0' and '\n' have really been tested.
799 */
800
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200801int himport_r(struct hsearch_data *htab,
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000802 const char *env, size_t size, const char sep, int flag,
Alexander Hollerecd14462014-07-14 17:49:55 +0200803 int crlf_is_lf, int nvars, char * const vars[])
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200804{
805 char *data, *sp, *dp, *name, *value;
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000806 char *localvars[nvars];
807 int i;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200808
809 /* Test for correct arguments. */
810 if (htab == NULL) {
811 __set_errno(EINVAL);
812 return 0;
813 }
814
815 /* we allocate new space to make sure we can write to the array */
Lukasz Majewski817e48d2015-09-14 00:57:03 +0200816 if ((data = malloc(size + 1)) == NULL) {
Simon Glassc55d02b2016-07-22 09:22:48 -0600817 debug("himport_r: can't malloc %lu bytes\n", (ulong)size + 1);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200818 __set_errno(ENOMEM);
819 return 0;
820 }
821 memcpy(data, env, size);
Lukasz Majewski817e48d2015-09-14 00:57:03 +0200822 data[size] = '\0';
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200823 dp = data;
824
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000825 /* make a local copy of the list of variables */
826 if (nvars)
827 memcpy(localvars, vars, sizeof(vars[0]) * nvars);
828
Marek Vasut47f3b1f2020-07-07 20:51:38 +0200829#if CONFIG_IS_ENABLED(ENV_APPEND)
830 flag |= H_NOCLEAR;
831#endif
832
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200833 if ((flag & H_NOCLEAR) == 0 && !nvars) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200834 /* Destroy old hash table if one exists */
835 debug("Destroy Hash Table: %p table = %p\n", htab,
836 htab->table);
837 if (htab->table)
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600838 hdestroy_r(htab);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200839 }
840
841 /*
842 * Create new hash table (if needed). The computation of the hash
843 * table size is based on heuristics: in a sample of some 70+
844 * existing systems we found an average size of 39+ bytes per entry
845 * in the environment (for the whole key=value pair). Assuming a
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200846 * size of 8 per entry (= safety factor of ~5) should provide enough
847 * safety margin for any existing environment definitions and still
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200848 * allow for more than enough dynamic additions. Note that the
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400849 * "size" argument is supposed to give the maximum environment size
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200850 * (CONFIG_ENV_SIZE). This heuristics will result in
851 * unreasonably large numbers (and thus memory footprint) for
852 * big flash environments (>8,000 entries for 64 KB
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -0400853 * environment size), so we clip it to a reasonable value.
Andreas Bießmannfc5fc762010-10-01 22:51:02 +0200854 * On the other hand we need to add some more entries for free
855 * space when importing very small buffers. Both boundaries can
856 * be overwritten in the board config file if needed.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200857 */
858
859 if (!htab->table) {
Andreas Bießmannfc5fc762010-10-01 22:51:02 +0200860 int nent = CONFIG_ENV_MIN_ENTRIES + size / 8;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200861
862 if (nent > CONFIG_ENV_MAX_ENTRIES)
863 nent = CONFIG_ENV_MAX_ENTRIES;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200864
865 debug("Create Hash Table: N=%d\n", nent);
866
867 if (hcreate_r(nent, htab) == 0) {
868 free(data);
869 return 0;
870 }
871 }
872
Lukasz Majewski0226d872015-09-14 00:57:04 +0200873 if (!size) {
874 free(data);
Alexander Hollerecd14462014-07-14 17:49:55 +0200875 return 1; /* everything OK */
Lukasz Majewski0226d872015-09-14 00:57:04 +0200876 }
Alexander Hollerecd14462014-07-14 17:49:55 +0200877 if(crlf_is_lf) {
878 /* Remove Carriage Returns in front of Line Feeds */
879 unsigned ignored_crs = 0;
880 for(;dp < data + size && *dp; ++dp) {
881 if(*dp == '\r' &&
882 dp < data + size - 1 && *(dp+1) == '\n')
883 ++ignored_crs;
884 else
885 *(dp-ignored_crs) = *dp;
886 }
887 size -= ignored_crs;
888 dp = data;
889 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200890 /* Parse environment; allow for '\0' and 'sep' as separators */
891 do {
Simon Glassdd2408c2019-08-02 09:44:18 -0600892 struct env_entry e, *rv;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200893
894 /* skip leading white space */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +0000895 while (isblank(*dp))
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200896 ++dp;
897
898 /* skip comment lines */
899 if (*dp == '#') {
900 while (*dp && (*dp != sep))
901 ++dp;
902 ++dp;
903 continue;
904 }
905
906 /* parse name */
907 for (name = dp; *dp != '=' && *dp && *dp != sep; ++dp)
908 ;
909
910 /* deal with "name" and "name=" entries (delete var) */
911 if (*dp == '\0' || *(dp + 1) == '\0' ||
912 *dp == sep || *(dp + 1) == sep) {
913 if (*dp == '=')
914 *dp++ = '\0';
915 *dp++ = '\0'; /* terminate name */
916
917 debug("DELETE CANDIDATE: \"%s\"\n", name);
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000918 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000919 continue;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200920
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600921 if (hdelete_r(name, htab, flag) == 0)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200922 debug("DELETE ERROR ##############################\n");
923
924 continue;
925 }
926 *dp++ = '\0'; /* terminate name */
927
928 /* parse value; deal with escapes */
929 for (value = sp = dp; *dp && (*dp != sep); ++dp) {
930 if ((*dp == '\\') && *(dp + 1))
931 ++dp;
932 *sp++ = *dp;
933 }
934 *sp++ = '\0'; /* terminate value */
935 ++dp;
936
Lucian Cojocare4fdcad2013-04-28 11:31:57 +0000937 if (*name == 0) {
938 debug("INSERT: unable to use an empty key\n");
939 __set_errno(EINVAL);
Lukasz Majewski0226d872015-09-14 00:57:04 +0200940 free(data);
Lucian Cojocare4fdcad2013-04-28 11:31:57 +0000941 return 0;
942 }
943
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000944 /* Skip variables which are not supposed to be processed */
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000945 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000946 continue;
947
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200948 /* enter into hash table */
949 e.key = name;
950 e.data = value;
951
Simon Glass3f0d6802019-08-01 09:47:09 -0600952 hsearch_r(e, ENV_ENTER, &rv, htab, flag);
Marek Vasutd045cba2020-07-07 20:51:39 +0200953#if !CONFIG_IS_ENABLED(ENV_WRITEABLE_LIST)
954 if (rv == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200955 printf("himport_r: can't insert \"%s=%s\" into hash table\n",
956 name, value);
Marek Vasutd045cba2020-07-07 20:51:39 +0200957 }
958#endif
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200959
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200960 debug("INSERT: table %p, filled %d/%d rv %p ==> name=\"%s\" value=\"%s\"\n",
961 htab, htab->filled, htab->size,
962 rv, name, value);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200963 } while ((dp < data + size) && *dp); /* size check needed for text */
964 /* without '\0' termination */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200965 debug("INSERT: free(data = %p)\n", data);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200966 free(data);
967
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200968 if (flag & H_NOCLEAR)
969 goto end;
970
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000971 /* process variables which were not considered */
972 for (i = 0; i < nvars; i++) {
973 if (localvars[i] == NULL)
974 continue;
975 /*
976 * All variables which were not deleted from the variable list
977 * were not present in the imported env
978 * This could mean two things:
979 * a) if the variable was present in current env, we delete it
980 * b) if the variable was not present in current env, we notify
981 * it might be a typo
982 */
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600983 if (hdelete_r(localvars[i], htab, flag) == 0)
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000984 printf("WARNING: '%s' neither in running nor in imported env!\n", localvars[i]);
985 else
986 printf("WARNING: '%s' not in imported env, deleting it!\n", localvars[i]);
987 }
988
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200989end:
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200990 debug("INSERT: done\n");
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200991 return 1; /* everything OK */
992}
Joe Hershberger170ab112012-12-11 22:16:24 -0600993
994/*
995 * hwalk_r()
996 */
997
998/*
999 * Walk all of the entries in the hash, calling the callback for each one.
1000 * this allows some generic operation to be performed on each element.
1001 */
Simon Glassdd2408c2019-08-02 09:44:18 -06001002int hwalk_r(struct hsearch_data *htab, int (*callback)(struct env_entry *entry))
Joe Hershberger170ab112012-12-11 22:16:24 -06001003{
1004 int i;
1005 int retval;
1006
1007 for (i = 1; i <= htab->size; ++i) {
1008 if (htab->table[i].used > 0) {
1009 retval = callback(&htab->table[i].entry);
1010 if (retval)
1011 return retval;
1012 }
1013 }
1014
1015 return 0;
1016}