blob: f2d36bd34b4c8efcacd200e311938d8bb18c40cd [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
Roman Kapl9dfdbd92019-01-30 11:39:54 +010038#define USED_FREE 0
39#define USED_DELETED -1
40
Joe Hershberger170ab112012-12-11 22:16:24 -060041#include <env_callback.h>
Joe Hershberger25980902012-12-11 22:16:31 -060042#include <env_flags.h>
Joe Hershberger170ab112012-12-11 22:16:24 -060043#include <search.h>
Wolfgang Denkbe29df62013-03-23 23:50:32 +000044#include <slre.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020045
46/*
47 * [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986
Wolfgang Denk071bc922010-10-27 22:48:30 +020048 * [Knuth] The Art of Computer Programming, part 3 (6.4)
Wolfgang Denka6826fb2010-06-20 13:17:12 +020049 */
50
51/*
Wolfgang Denka6826fb2010-06-20 13:17:12 +020052 * The reentrant version has no static variables to maintain the state.
53 * Instead the interface of all functions is extended to take an argument
54 * which describes the current status.
55 */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -060056
Simon Glass25e51e92019-08-02 09:44:19 -060057struct env_entry_node {
Peter Baradac81c1222011-03-21 19:05:20 -040058 int used;
Simon Glassdd2408c2019-08-02 09:44:18 -060059 struct env_entry entry;
Simon Glass25e51e92019-08-02 09:44:19 -060060};
Wolfgang Denka6826fb2010-06-20 13:17:12 +020061
62
Simon Glassdd2408c2019-08-02 09:44:18 -060063static void _hdelete(const char *key, struct hsearch_data *htab,
64 struct env_entry *ep, int idx);
Joe Hershberger7afcf3a2012-12-11 22:16:21 -060065
Wolfgang Denka6826fb2010-06-20 13:17:12 +020066/*
67 * hcreate()
68 */
69
70/*
71 * For the used double hash method the table size has to be a prime. To
72 * correct the user given table size we need a prime test. This trivial
73 * algorithm is adequate because
74 * a) the code is (most probably) called a few times per program run and
75 * b) the number is small because the table must fit in the core
76 * */
77static int isprime(unsigned int number)
78{
79 /* no even number will be passed */
80 unsigned int div = 3;
81
82 while (div * div < number && number % div != 0)
83 div += 2;
84
85 return number % div != 0;
86}
87
Wolfgang Denka6826fb2010-06-20 13:17:12 +020088/*
89 * Before using the hash table we must allocate memory for it.
90 * Test for an existing table are done. We allocate one element
91 * more as the found prime number says. This is done for more effective
92 * indexing as explained in the comment for the hsearch function.
93 * The contents of the table is zeroed, especially the field used
94 * becomes zero.
95 */
Mike Frysinger2eb15732010-12-08 06:26:04 -050096
Wolfgang Denka6826fb2010-06-20 13:17:12 +020097int hcreate_r(size_t nel, struct hsearch_data *htab)
98{
99 /* Test for correct arguments. */
100 if (htab == NULL) {
101 __set_errno(EINVAL);
102 return 0;
103 }
104
105 /* There is still another table active. Return with error. */
Sean Anderson60ffcf22020-06-24 06:41:15 -0400106 if (htab->table != NULL) {
107 __set_errno(EINVAL);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200108 return 0;
Sean Anderson60ffcf22020-06-24 06:41:15 -0400109 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200110
111 /* Change nel to the first prime number not smaller as nel. */
112 nel |= 1; /* make odd */
113 while (!isprime(nel))
114 nel += 2;
115
116 htab->size = nel;
117 htab->filled = 0;
118
119 /* allocate memory and zero out */
Simon Glass25e51e92019-08-02 09:44:19 -0600120 htab->table = (struct env_entry_node *)calloc(htab->size + 1,
121 sizeof(struct env_entry_node));
Sean Anderson60ffcf22020-06-24 06:41:15 -0400122 if (htab->table == NULL) {
123 __set_errno(ENOMEM);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200124 return 0;
Sean Anderson60ffcf22020-06-24 06:41:15 -0400125 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200126
127 /* everything went alright */
128 return 1;
129}
130
131
132/*
133 * hdestroy()
134 */
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200135
136/*
137 * After using the hash table it has to be destroyed. The used memory can
138 * be freed and the local static variable can be marked as not used.
139 */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500140
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600141void hdestroy_r(struct hsearch_data *htab)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200142{
143 int i;
144
145 /* Test for correct arguments. */
146 if (htab == NULL) {
147 __set_errno(EINVAL);
148 return;
149 }
150
151 /* free used memory */
152 for (i = 1; i <= htab->size; ++i) {
Peter Baradac81c1222011-03-21 19:05:20 -0400153 if (htab->table[i].used > 0) {
Simon Glassdd2408c2019-08-02 09:44:18 -0600154 struct env_entry *ep = &htab->table[i].entry;
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600155
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200156 free((void *)ep->key);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200157 free(ep->data);
158 }
159 }
160 free(htab->table);
161
162 /* the sign for an existing table is an value != NULL in htable */
163 htab->table = NULL;
164}
165
166/*
167 * hsearch()
168 */
169
170/*
171 * This is the search function. It uses double hashing with open addressing.
172 * The argument item.key has to be a pointer to an zero terminated, most
173 * probably strings of chars. The function for generating a number of the
174 * strings is simple but fast. It can be replaced by a more complex function
175 * like ajw (see [Aho,Sethi,Ullman]) if the needs are shown.
176 *
177 * We use an trick to speed up the lookup. The table is created by hcreate
178 * with one more element available. This enables us to use the index zero
179 * special. This index will never be used because we store the first hash
180 * index in the field used where zero means not used. Every other value
181 * means used. The used field can be used as a first fast comparison for
182 * equality of the stored and the parameter value. This helps to prevent
183 * unnecessary expensive calls of strcmp.
184 *
185 * This implementation differs from the standard library version of
186 * this function in a number of ways:
187 *
188 * - While the standard version does not make any assumptions about
189 * the type of the stored data objects at all, this implementation
190 * works with NUL terminated strings only.
191 * - Instead of storing just pointers to the original objects, we
192 * create local copies so the caller does not need to care about the
193 * data any more.
194 * - The standard implementation does not provide a way to update an
195 * existing entry. This version will create a new entry or update an
Simon Glass3f0d6802019-08-01 09:47:09 -0600196 * existing one when both "action == ENV_ENTER" and "item.data != NULL".
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200197 * - Instead of returning 1 on success, we return the index into the
198 * internal hash table, which is also guaranteed to be positive.
199 * This allows us direct access to the found hash table slot for
200 * example for functions like hdelete().
201 */
202
Simon Glassdd2408c2019-08-02 09:44:18 -0600203int hmatch_r(const char *match, int last_idx, struct env_entry **retval,
Mike Frysinger560d4242010-12-17 16:51:59 -0500204 struct hsearch_data *htab)
205{
206 unsigned int idx;
207 size_t key_len = strlen(match);
208
209 for (idx = last_idx + 1; idx < htab->size; ++idx) {
Kim Phillipsaf4d9072011-04-04 15:17:45 +0000210 if (htab->table[idx].used <= 0)
Mike Frysinger560d4242010-12-17 16:51:59 -0500211 continue;
212 if (!strncmp(match, htab->table[idx].entry.key, key_len)) {
213 *retval = &htab->table[idx].entry;
214 return idx;
215 }
216 }
217
218 __set_errno(ESRCH);
219 *retval = NULL;
220 return 0;
221}
222
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000223static int
224do_callback(const struct env_entry *e, const char *name, const char *value,
225 enum env_op op, int flags)
226{
Rasmus Villemoes34284972020-02-27 13:56:11 +0000227#ifndef CONFIG_SPL_BUILD
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000228 if (e->callback)
229 return e->callback(name, value, op, flags);
Rasmus Villemoes34284972020-02-27 13:56:11 +0000230#endif
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000231 return 0;
232}
233
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600234/*
235 * Compare an existing entry with the desired key, and overwrite if the action
Simon Glass3f0d6802019-08-01 09:47:09 -0600236 * is ENV_ENTER. This is simply a helper function for hsearch_r().
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600237 */
Simon Glassdd2408c2019-08-02 09:44:18 -0600238static inline int _compare_and_overwrite_entry(struct env_entry item,
Simon Glass3f0d6802019-08-01 09:47:09 -0600239 enum env_action action, struct env_entry **retval,
Simon Glassdd2408c2019-08-02 09:44:18 -0600240 struct hsearch_data *htab, int flag, unsigned int hval,
241 unsigned int idx)
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600242{
243 if (htab->table[idx].used == hval
244 && strcmp(item.key, htab->table[idx].entry.key) == 0) {
245 /* Overwrite existing value? */
Simon Glass3f0d6802019-08-01 09:47:09 -0600246 if (action == ENV_ENTER && item.data) {
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600247 /* check for permission */
248 if (htab->change_ok != NULL && htab->change_ok(
249 &htab->table[idx].entry, item.data,
250 env_op_overwrite, flag)) {
251 debug("change_ok() rejected setting variable "
252 "%s, skipping it!\n", item.key);
253 __set_errno(EPERM);
254 *retval = NULL;
255 return 0;
256 }
257
Joe Hershberger170ab112012-12-11 22:16:24 -0600258 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000259 if (do_callback(&htab->table[idx].entry, item.key,
260 item.data, env_op_overwrite, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600261 debug("callback() rejected setting variable "
262 "%s, skipping it!\n", item.key);
263 __set_errno(EINVAL);
264 *retval = NULL;
265 return 0;
266 }
267
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600268 free(htab->table[idx].entry.data);
269 htab->table[idx].entry.data = strdup(item.data);
270 if (!htab->table[idx].entry.data) {
271 __set_errno(ENOMEM);
272 *retval = NULL;
273 return 0;
274 }
275 }
276 /* return found entry */
277 *retval = &htab->table[idx].entry;
278 return idx;
279 }
280 /* keep searching */
281 return -1;
282}
283
Simon Glass3f0d6802019-08-01 09:47:09 -0600284int hsearch_r(struct env_entry item, enum env_action action,
285 struct env_entry **retval, struct hsearch_data *htab, int flag)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200286{
287 unsigned int hval;
288 unsigned int count;
289 unsigned int len = strlen(item.key);
290 unsigned int idx;
Peter Baradac81c1222011-03-21 19:05:20 -0400291 unsigned int first_deleted = 0;
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600292 int ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200293
294 /* Compute an value for the given string. Perhaps use a better method. */
295 hval = len;
296 count = len;
297 while (count-- > 0) {
298 hval <<= 4;
299 hval += item.key[count];
300 }
301
302 /*
303 * First hash function:
304 * simply take the modul but prevent zero.
305 */
306 hval %= htab->size;
307 if (hval == 0)
308 ++hval;
309
310 /* The first index tried. */
311 idx = hval;
312
313 if (htab->table[idx].used) {
314 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200315 * Further action might be required according to the
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200316 * action value.
317 */
318 unsigned hval2;
319
Heinrich Schuchardt34ca77c2020-08-20 19:57:45 +0200320 if (htab->table[idx].used == USED_DELETED)
Peter Baradac81c1222011-03-21 19:05:20 -0400321 first_deleted = idx;
322
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600323 ret = _compare_and_overwrite_entry(item, action, retval, htab,
324 flag, hval, idx);
325 if (ret != -1)
326 return ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200327
328 /*
329 * Second hash function:
330 * as suggested in [Knuth]
331 */
332 hval2 = 1 + hval % (htab->size - 2);
333
334 do {
335 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200336 * Because SIZE is prime this guarantees to
337 * step through all available indices.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200338 */
339 if (idx <= hval2)
340 idx = htab->size + idx - hval2;
341 else
342 idx -= hval2;
343
344 /*
345 * If we visited all entries leave the loop
346 * unsuccessfully.
347 */
348 if (idx == hval)
349 break;
350
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100351 if (htab->table[idx].used == USED_DELETED
352 && !first_deleted)
353 first_deleted = idx;
354
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200355 /* If entry is found use it. */
Joe Hershberger3d3b52f2012-12-11 22:16:20 -0600356 ret = _compare_and_overwrite_entry(item, action, retval,
357 htab, flag, hval, idx);
358 if (ret != -1)
359 return ret;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200360 }
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100361 while (htab->table[idx].used != USED_FREE);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200362 }
363
364 /* An empty bucket has been found. */
Simon Glass3f0d6802019-08-01 09:47:09 -0600365 if (action == ENV_ENTER) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200366 /*
Wolfgang Denk071bc922010-10-27 22:48:30 +0200367 * If table is full and another entry should be
368 * entered return with error.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200369 */
370 if (htab->filled == htab->size) {
371 __set_errno(ENOMEM);
372 *retval = NULL;
373 return 0;
374 }
375
376 /*
377 * Create new entry;
378 * create copies of item.key and item.data
379 */
Peter Baradac81c1222011-03-21 19:05:20 -0400380 if (first_deleted)
381 idx = first_deleted;
382
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200383 htab->table[idx].used = hval;
384 htab->table[idx].entry.key = strdup(item.key);
385 htab->table[idx].entry.data = strdup(item.data);
386 if (!htab->table[idx].entry.key ||
387 !htab->table[idx].entry.data) {
388 __set_errno(ENOMEM);
389 *retval = NULL;
390 return 0;
391 }
392
393 ++htab->filled;
394
Joe Hershberger170ab112012-12-11 22:16:24 -0600395 /* This is a new entry, so look up a possible callback */
396 env_callback_init(&htab->table[idx].entry);
Joe Hershberger25980902012-12-11 22:16:31 -0600397 /* Also look for flags */
398 env_flags_init(&htab->table[idx].entry);
Joe Hershberger170ab112012-12-11 22:16:24 -0600399
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600400 /* check for permission */
401 if (htab->change_ok != NULL && htab->change_ok(
402 &htab->table[idx].entry, item.data, env_op_create, flag)) {
403 debug("change_ok() rejected setting variable "
404 "%s, skipping it!\n", item.key);
405 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
406 __set_errno(EPERM);
407 *retval = NULL;
408 return 0;
409 }
410
Joe Hershberger170ab112012-12-11 22:16:24 -0600411 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000412 if (do_callback(&htab->table[idx].entry, item.key, item.data,
413 env_op_create, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600414 debug("callback() rejected setting variable "
415 "%s, skipping it!\n", item.key);
416 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
417 __set_errno(EINVAL);
418 *retval = NULL;
419 return 0;
420 }
421
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200422 /* return new entry */
423 *retval = &htab->table[idx].entry;
424 return 1;
425 }
426
427 __set_errno(ESRCH);
428 *retval = NULL;
429 return 0;
430}
431
432
433/*
434 * hdelete()
435 */
436
437/*
438 * The standard implementation of hsearch(3) does not provide any way
439 * to delete any entries from the hash table. We extend the code to
440 * do that.
441 */
442
Simon Glassdd2408c2019-08-02 09:44:18 -0600443static void _hdelete(const char *key, struct hsearch_data *htab,
444 struct env_entry *ep, int idx)
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600445{
Simon Glassdd2408c2019-08-02 09:44:18 -0600446 /* free used entry */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600447 debug("hdelete: DELETING key \"%s\"\n", key);
448 free((void *)ep->key);
449 free(ep->data);
Joe Hershberger25980902012-12-11 22:16:31 -0600450 ep->flags = 0;
Roman Kapl9dfdbd92019-01-30 11:39:54 +0100451 htab->table[idx].used = USED_DELETED;
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600452
453 --htab->filled;
454}
455
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600456int hdelete_r(const char *key, struct hsearch_data *htab, int flag)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200457{
Simon Glassdd2408c2019-08-02 09:44:18 -0600458 struct env_entry e, *ep;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200459 int idx;
460
461 debug("hdelete: DELETE key \"%s\"\n", key);
462
463 e.key = (char *)key;
464
Simon Glass3f0d6802019-08-01 09:47:09 -0600465 idx = hsearch_r(e, ENV_FIND, &ep, htab, 0);
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600466 if (idx == 0) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200467 __set_errno(ESRCH);
Simon Glass96434a72020-11-05 10:33:37 -0700468 return -ENOENT; /* not found */
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200469 }
470
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600471 /* Check for permission */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600472 if (htab->change_ok != NULL &&
473 htab->change_ok(ep, NULL, env_op_delete, flag)) {
474 debug("change_ok() rejected deleting variable "
475 "%s, skipping it!\n", key);
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600476 __set_errno(EPERM);
Simon Glass96434a72020-11-05 10:33:37 -0700477 return -EPERM;
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600478 }
479
Joe Hershberger170ab112012-12-11 22:16:24 -0600480 /* If there is a callback, call it */
Rasmus Villemoes7f529f62020-02-27 13:56:11 +0000481 if (do_callback(&htab->table[idx].entry, key, NULL,
482 env_op_delete, flag)) {
Joe Hershberger170ab112012-12-11 22:16:24 -0600483 debug("callback() rejected deleting variable "
484 "%s, skipping it!\n", key);
485 __set_errno(EINVAL);
Simon Glass96434a72020-11-05 10:33:37 -0700486 return -EINVAL;
Joe Hershberger170ab112012-12-11 22:16:24 -0600487 }
488
Joe Hershberger7afcf3a2012-12-11 22:16:21 -0600489 _hdelete(key, htab, ep, idx);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200490
Simon Glass96434a72020-11-05 10:33:37 -0700491 return 0;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200492}
493
B, Ravid2d9bdf2016-09-28 14:46:18 +0530494#if !(defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_SAVEENV))
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200495/*
496 * hexport()
497 */
498
499/*
500 * Export the data stored in the hash table in linearized form.
501 *
502 * Entries are exported as "name=value" strings, separated by an
503 * arbitrary (non-NUL, of course) separator character. This allows to
504 * use this function both when formatting the U-Boot environment for
505 * external storage (using '\0' as separator), but also when using it
506 * for the "printenv" command to print all variables, simply by using
507 * as '\n" as separator. This can also be used for new features like
508 * exporting the environment data as text file, including the option
509 * for later re-import.
510 *
511 * The entries in the result list will be sorted by ascending key
512 * values.
513 *
514 * If the separator character is different from NUL, then any
515 * separator characters and backslash characters in the values will
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400516 * be escaped by a preceding backslash in output. This is needed for
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200517 * example to enable multi-line values, especially when the output
518 * shall later be parsed (for example, for re-import).
519 *
520 * There are several options how the result buffer is handled:
521 *
522 * *resp size
523 * -----------
524 * NULL 0 A string of sufficient length will be allocated.
525 * NULL >0 A string of the size given will be
526 * allocated. An error will be returned if the size is
527 * not sufficient. Any unused bytes in the string will
528 * be '\0'-padded.
529 * !NULL 0 The user-supplied buffer will be used. No length
530 * checking will be performed, i. e. it is assumed that
531 * the buffer size will always be big enough. DANGEROUS.
532 * !NULL >0 The user-supplied buffer will be used. An error will
533 * be returned if the size is not sufficient. Any unused
534 * bytes in the string will be '\0'-padded.
535 */
536
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200537static int cmpkey(const void *p1, const void *p2)
538{
Simon Glassdd2408c2019-08-02 09:44:18 -0600539 struct env_entry *e1 = *(struct env_entry **)p1;
540 struct env_entry *e2 = *(struct env_entry **)p2;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200541
542 return (strcmp(e1->key, e2->key));
543}
544
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000545static int match_string(int flag, const char *str, const char *pat, void *priv)
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000546{
547 switch (flag & H_MATCH_METHOD) {
548 case H_MATCH_IDENT:
549 if (strcmp(str, pat) == 0)
550 return 1;
551 break;
552 case H_MATCH_SUBSTR:
553 if (strstr(str, pat))
554 return 1;
555 break;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000556#ifdef CONFIG_REGEX
557 case H_MATCH_REGEX:
558 {
559 struct slre *slrep = (struct slre *)priv;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000560
Heinrich Schuchardt320194a2019-01-23 08:17:02 +0100561 if (slre_match(slrep, str, strlen(str), NULL))
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000562 return 1;
563 }
564 break;
565#endif
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000566 default:
567 printf("## ERROR: unsupported match method: 0x%02x\n",
568 flag & H_MATCH_METHOD);
569 break;
570 }
571 return 0;
572}
573
Simon Glassdd2408c2019-08-02 09:44:18 -0600574static int match_entry(struct env_entry *ep, int flag, int argc,
575 char *const argv[])
Wolfgang Denkea009d42013-03-23 23:50:28 +0000576{
577 int arg;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000578 void *priv = NULL;
Wolfgang Denkea009d42013-03-23 23:50:28 +0000579
Pierre Aubert9a832332013-10-08 14:20:27 +0200580 for (arg = 0; arg < argc; ++arg) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000581#ifdef CONFIG_REGEX
582 struct slre slre;
583
584 if (slre_compile(&slre, argv[arg]) == 0) {
585 printf("Error compiling regex: %s\n", slre.err_str);
586 return 0;
587 }
588
589 priv = (void *)&slre;
590#endif
Wolfgang Denkea009d42013-03-23 23:50:28 +0000591 if (flag & H_MATCH_KEY) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000592 if (match_string(flag, ep->key, argv[arg], priv))
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000593 return 1;
594 }
595 if (flag & H_MATCH_DATA) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000596 if (match_string(flag, ep->data, argv[arg], priv))
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000597 return 1;
Wolfgang Denkea009d42013-03-23 23:50:28 +0000598 }
599 }
600 return 0;
601}
602
Joe Hershbergerbe112352012-12-11 22:16:23 -0600603ssize_t hexport_r(struct hsearch_data *htab, const char sep, int flag,
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100604 char **resp, size_t size,
Simon Glass09140112020-05-10 11:40:03 -0600605 int argc, char *const argv[])
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200606{
Simon Glassdd2408c2019-08-02 09:44:18 -0600607 struct env_entry *list[htab->size];
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200608 char *res, *p;
609 size_t totlen;
610 int i, n;
611
612 /* Test for correct arguments. */
613 if ((resp == NULL) || (htab == NULL)) {
614 __set_errno(EINVAL);
615 return (-1);
616 }
617
Simon Glassc55d02b2016-07-22 09:22:48 -0600618 debug("EXPORT table = %p, htab.size = %d, htab.filled = %d, size = %lu\n",
619 htab, htab->size, htab->filled, (ulong)size);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200620 /*
621 * Pass 1:
622 * search used entries,
623 * save addresses and compute total length
624 */
625 for (i = 1, n = 0, totlen = 0; i <= htab->size; ++i) {
626
Peter Baradac81c1222011-03-21 19:05:20 -0400627 if (htab->table[i].used > 0) {
Simon Glassdd2408c2019-08-02 09:44:18 -0600628 struct env_entry *ep = &htab->table[i].entry;
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000629 int found = match_entry(ep, flag, argc, argv);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100630
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100631 if ((argc > 0) && (found == 0))
632 continue;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200633
Joe Hershbergerbe112352012-12-11 22:16:23 -0600634 if ((flag & H_HIDE_DOT) && ep->key[0] == '.')
635 continue;
636
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200637 list[n++] = ep;
638
Zubair Lutfullah Kakakhelf1b20ac2018-07-17 19:25:38 +0100639 totlen += strlen(ep->key);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200640
641 if (sep == '\0') {
642 totlen += strlen(ep->data);
643 } else { /* check if escapes are needed */
644 char *s = ep->data;
645
646 while (*s) {
647 ++totlen;
648 /* add room for needed escape chars */
649 if ((*s == sep) || (*s == '\\'))
650 ++totlen;
651 ++s;
652 }
653 }
654 totlen += 2; /* for '=' and 'sep' char */
655 }
656 }
657
658#ifdef DEBUG
659 /* Pass 1a: print unsorted list */
660 printf("Unsorted: n=%d\n", n);
661 for (i = 0; i < n; ++i) {
662 printf("\t%3d: %p ==> %-10s => %s\n",
663 i, list[i], list[i]->key, list[i]->data);
664 }
665#endif
666
667 /* Sort list by keys */
Simon Glassdd2408c2019-08-02 09:44:18 -0600668 qsort(list, n, sizeof(struct env_entry *), cmpkey);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200669
670 /* Check if the user supplied buffer size is sufficient */
671 if (size) {
672 if (size < totlen + 1) { /* provided buffer too small */
Simon Glassc55d02b2016-07-22 09:22:48 -0600673 printf("Env export buffer too small: %lu, but need %lu\n",
674 (ulong)size, (ulong)totlen + 1);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200675 __set_errno(ENOMEM);
676 return (-1);
677 }
678 } else {
AKASHI Takahiro4bca3242018-12-14 18:42:51 +0900679 size = totlen + 1;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200680 }
681
682 /* Check if the user provided a buffer */
683 if (*resp) {
684 /* yes; clear it */
685 res = *resp;
686 memset(res, '\0', size);
687 } else {
688 /* no, allocate and clear one */
689 *resp = res = calloc(1, size);
690 if (res == NULL) {
691 __set_errno(ENOMEM);
692 return (-1);
693 }
694 }
695 /*
696 * Pass 2:
697 * export sorted list of result data
698 */
699 for (i = 0, p = res; i < n; ++i) {
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200700 const char *s;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200701
702 s = list[i]->key;
703 while (*s)
704 *p++ = *s++;
705 *p++ = '=';
706
707 s = list[i]->data;
708
709 while (*s) {
710 if ((*s == sep) || (*s == '\\'))
711 *p++ = '\\'; /* escape */
712 *p++ = *s++;
713 }
714 *p++ = sep;
715 }
716 *p = '\0'; /* terminate result */
717
718 return size;
719}
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000720#endif
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200721
722
723/*
724 * himport()
725 */
726
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000727/*
728 * Check whether variable 'name' is amongst vars[],
729 * and remove all instances by setting the pointer to NULL
730 */
731static int drop_var_from_set(const char *name, int nvars, char * vars[])
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000732{
733 int i = 0;
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000734 int res = 0;
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000735
736 /* No variables specified means process all of them */
737 if (nvars == 0)
738 return 1;
739
740 for (i = 0; i < nvars; i++) {
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000741 if (vars[i] == NULL)
742 continue;
743 /* If we found it, delete all of them */
744 if (!strcmp(name, vars[i])) {
745 vars[i] = NULL;
746 res = 1;
747 }
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000748 }
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000749 if (!res)
750 debug("Skipping non-listed variable %s\n", name);
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000751
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000752 return res;
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000753}
754
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200755/*
756 * Import linearized data into hash table.
757 *
758 * This is the inverse function to hexport(): it takes a linear list
759 * of "name=value" pairs and creates hash table entries from it.
760 *
761 * Entries without "value", i. e. consisting of only "name" or
762 * "name=", will cause this entry to be deleted from the hash table.
763 *
764 * The "flag" argument can be used to control the behaviour: when the
765 * H_NOCLEAR bit is set, then an existing hash table will kept, i. e.
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200766 * new data will be added to an existing hash table; otherwise, if no
767 * vars are passed, old data will be discarded and a new hash table
768 * will be created. If vars are passed, passed vars that are not in
769 * the linear list of "name=value" pairs will be removed from the
770 * current hash table.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200771 *
772 * The separator character for the "name=value" pairs can be selected,
773 * so we both support importing from externally stored environment
774 * data (separated by NUL characters) and from plain text files
775 * (entries separated by newline characters).
776 *
777 * To allow for nicely formatted text input, leading white space
778 * (sequences of SPACE and TAB chars) is ignored, and entries starting
779 * (after removal of any leading white space) with a '#' character are
780 * considered comments and ignored.
781 *
782 * [NOTE: this means that a variable name cannot start with a '#'
783 * character.]
784 *
785 * When using a non-NUL separator character, backslash is used as
786 * escape character in the value part, allowing for example for
787 * multi-line values.
788 *
789 * In theory, arbitrary separator characters can be used, but only
790 * '\0' and '\n' have really been tested.
791 */
792
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200793int himport_r(struct hsearch_data *htab,
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000794 const char *env, size_t size, const char sep, int flag,
Alexander Hollerecd14462014-07-14 17:49:55 +0200795 int crlf_is_lf, int nvars, char * const vars[])
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200796{
797 char *data, *sp, *dp, *name, *value;
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000798 char *localvars[nvars];
799 int i;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200800
801 /* Test for correct arguments. */
802 if (htab == NULL) {
803 __set_errno(EINVAL);
804 return 0;
805 }
806
807 /* we allocate new space to make sure we can write to the array */
Lukasz Majewski817e48d2015-09-14 00:57:03 +0200808 if ((data = malloc(size + 1)) == NULL) {
Simon Glassc55d02b2016-07-22 09:22:48 -0600809 debug("himport_r: can't malloc %lu bytes\n", (ulong)size + 1);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200810 __set_errno(ENOMEM);
811 return 0;
812 }
813 memcpy(data, env, size);
Lukasz Majewski817e48d2015-09-14 00:57:03 +0200814 data[size] = '\0';
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200815 dp = data;
816
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000817 /* make a local copy of the list of variables */
818 if (nvars)
819 memcpy(localvars, vars, sizeof(vars[0]) * nvars);
820
Marek Vasut47f3b1f2020-07-07 20:51:38 +0200821#if CONFIG_IS_ENABLED(ENV_APPEND)
822 flag |= H_NOCLEAR;
823#endif
824
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200825 if ((flag & H_NOCLEAR) == 0 && !nvars) {
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200826 /* Destroy old hash table if one exists */
827 debug("Destroy Hash Table: %p table = %p\n", htab,
828 htab->table);
829 if (htab->table)
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600830 hdestroy_r(htab);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200831 }
832
833 /*
834 * Create new hash table (if needed). The computation of the hash
835 * table size is based on heuristics: in a sample of some 70+
836 * existing systems we found an average size of 39+ bytes per entry
837 * in the environment (for the whole key=value pair). Assuming a
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200838 * size of 8 per entry (= safety factor of ~5) should provide enough
839 * safety margin for any existing environment definitions and still
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200840 * allow for more than enough dynamic additions. Note that the
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400841 * "size" argument is supposed to give the maximum environment size
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200842 * (CONFIG_ENV_SIZE). This heuristics will result in
843 * unreasonably large numbers (and thus memory footprint) for
844 * big flash environments (>8,000 entries for 64 KB
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -0400845 * environment size), so we clip it to a reasonable value.
Andreas Bießmannfc5fc762010-10-01 22:51:02 +0200846 * On the other hand we need to add some more entries for free
847 * space when importing very small buffers. Both boundaries can
848 * be overwritten in the board config file if needed.
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200849 */
850
851 if (!htab->table) {
Andreas Bießmannfc5fc762010-10-01 22:51:02 +0200852 int nent = CONFIG_ENV_MIN_ENTRIES + size / 8;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200853
854 if (nent > CONFIG_ENV_MAX_ENTRIES)
855 nent = CONFIG_ENV_MAX_ENTRIES;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200856
857 debug("Create Hash Table: N=%d\n", nent);
858
859 if (hcreate_r(nent, htab) == 0) {
860 free(data);
861 return 0;
862 }
863 }
864
Lukasz Majewski0226d872015-09-14 00:57:04 +0200865 if (!size) {
866 free(data);
Alexander Hollerecd14462014-07-14 17:49:55 +0200867 return 1; /* everything OK */
Lukasz Majewski0226d872015-09-14 00:57:04 +0200868 }
Alexander Hollerecd14462014-07-14 17:49:55 +0200869 if(crlf_is_lf) {
870 /* Remove Carriage Returns in front of Line Feeds */
871 unsigned ignored_crs = 0;
872 for(;dp < data + size && *dp; ++dp) {
873 if(*dp == '\r' &&
874 dp < data + size - 1 && *(dp+1) == '\n')
875 ++ignored_crs;
876 else
877 *(dp-ignored_crs) = *dp;
878 }
879 size -= ignored_crs;
880 dp = data;
881 }
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200882 /* Parse environment; allow for '\0' and 'sep' as separators */
883 do {
Simon Glassdd2408c2019-08-02 09:44:18 -0600884 struct env_entry e, *rv;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200885
886 /* skip leading white space */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +0000887 while (isblank(*dp))
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200888 ++dp;
889
890 /* skip comment lines */
891 if (*dp == '#') {
892 while (*dp && (*dp != sep))
893 ++dp;
894 ++dp;
895 continue;
896 }
897
898 /* parse name */
899 for (name = dp; *dp != '=' && *dp && *dp != sep; ++dp)
900 ;
901
902 /* deal with "name" and "name=" entries (delete var) */
903 if (*dp == '\0' || *(dp + 1) == '\0' ||
904 *dp == sep || *(dp + 1) == sep) {
905 if (*dp == '=')
906 *dp++ = '\0';
907 *dp++ = '\0'; /* terminate name */
908
909 debug("DELETE CANDIDATE: \"%s\"\n", name);
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000910 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000911 continue;
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200912
Simon Glass96434a72020-11-05 10:33:37 -0700913 if (hdelete_r(name, htab, flag))
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200914 debug("DELETE ERROR ##############################\n");
915
916 continue;
917 }
918 *dp++ = '\0'; /* terminate name */
919
920 /* parse value; deal with escapes */
921 for (value = sp = dp; *dp && (*dp != sep); ++dp) {
922 if ((*dp == '\\') && *(dp + 1))
923 ++dp;
924 *sp++ = *dp;
925 }
926 *sp++ = '\0'; /* terminate value */
927 ++dp;
928
Lucian Cojocare4fdcad2013-04-28 11:31:57 +0000929 if (*name == 0) {
930 debug("INSERT: unable to use an empty key\n");
931 __set_errno(EINVAL);
Lukasz Majewski0226d872015-09-14 00:57:04 +0200932 free(data);
Lucian Cojocare4fdcad2013-04-28 11:31:57 +0000933 return 0;
934 }
935
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000936 /* Skip variables which are not supposed to be processed */
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000937 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000938 continue;
939
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200940 /* enter into hash table */
941 e.key = name;
942 e.data = value;
943
Simon Glass3f0d6802019-08-01 09:47:09 -0600944 hsearch_r(e, ENV_ENTER, &rv, htab, flag);
Simon Glass28de1e02023-02-05 15:39:50 -0700945#if !IS_ENABLED(CONFIG_ENV_WRITEABLE_LIST)
Marek Vasutd045cba2020-07-07 20:51:39 +0200946 if (rv == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200947 printf("himport_r: can't insert \"%s=%s\" into hash table\n",
948 name, value);
Marek Vasutd045cba2020-07-07 20:51:39 +0200949 }
950#endif
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200951
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200952 debug("INSERT: table %p, filled %d/%d rv %p ==> name=\"%s\" value=\"%s\"\n",
953 htab, htab->filled, htab->size,
954 rv, name, value);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200955 } while ((dp < data + size) && *dp); /* size check needed for text */
956 /* without '\0' termination */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200957 debug("INSERT: free(data = %p)\n", data);
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200958 free(data);
959
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200960 if (flag & H_NOCLEAR)
961 goto end;
962
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000963 /* process variables which were not considered */
964 for (i = 0; i < nvars; i++) {
965 if (localvars[i] == NULL)
966 continue;
967 /*
968 * All variables which were not deleted from the variable list
969 * were not present in the imported env
970 * This could mean two things:
971 * a) if the variable was present in current env, we delete it
972 * b) if the variable was not present in current env, we notify
973 * it might be a typo
974 */
Simon Glass96434a72020-11-05 10:33:37 -0700975 if (hdelete_r(localvars[i], htab, flag))
Gerlando Falautod5370fe2012-08-26 21:53:00 +0000976 printf("WARNING: '%s' neither in running nor in imported env!\n", localvars[i]);
977 else
978 printf("WARNING: '%s' not in imported env, deleting it!\n", localvars[i]);
979 }
980
Quentin Schulzd9fc9072018-07-09 19:16:28 +0200981end:
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200982 debug("INSERT: done\n");
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200983 return 1; /* everything OK */
984}
Joe Hershberger170ab112012-12-11 22:16:24 -0600985
986/*
987 * hwalk_r()
988 */
989
990/*
991 * Walk all of the entries in the hash, calling the callback for each one.
992 * this allows some generic operation to be performed on each element.
993 */
Simon Glassdd2408c2019-08-02 09:44:18 -0600994int hwalk_r(struct hsearch_data *htab, int (*callback)(struct env_entry *entry))
Joe Hershberger170ab112012-12-11 22:16:24 -0600995{
996 int i;
997 int retval;
998
999 for (i = 1; i <= htab->size; ++i) {
1000 if (htab->table[i].used > 0) {
1001 retval = callback(&htab->table[i].entry);
1002 if (retval)
1003 return retval;
1004 }
1005 }
1006
1007 return 0;
1008}