blob: e8a59e2dcac2dea13e093cc3f861b722b5cdb6f4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: LGPL-2.1+
Wolfgang Denkc9ae9862010-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 Denk565af272013-03-23 23:50:28 +00006 * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de>
Wolfgang Denkc9ae9862010-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 Denkc9ae9862010-06-20 13:17:12 +020013 */
14
15#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020017#include <malloc.h>
Simon Glass16ff5702019-11-14 12:57:19 -070018#include <sort.h>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020019
20#ifdef USE_HOSTCC /* HOST build */
21# include <string.h>
22# include <assert.h>
Jason Hobbscafa1aa2011-08-23 11:06:54 +000023# include <ctype.h>
Wolfgang Denkc9ae9862010-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 */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020033# include <linux/string.h>
Jason Hobbscafa1aa2011-08-23 11:06:54 +000034# include <linux/ctype.h>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020035#endif
36
Roman Kapl07cb4e12019-01-30 11:39:54 +010037#define USED_FREE 0
38#define USED_DELETED -1
39
Joe Hershberger60fd3ad2012-12-11 22:16:24 -060040#include <env_callback.h>
Joe Hershberger71497d02012-12-11 22:16:31 -060041#include <env_flags.h>
Joe Hershberger60fd3ad2012-12-11 22:16:24 -060042#include <search.h>
Wolfgang Denkac9c3012013-03-23 23:50:32 +000043#include <slre.h>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020044
45/*
46 * [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986
Wolfgang Denk1136f692010-10-27 22:48:30 +020047 * [Knuth] The Art of Computer Programming, part 3 (6.4)
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020048 */
49
50/*
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020051 * The reentrant version has no static variables to maintain the state.
52 * Instead the interface of all functions is extended to take an argument
53 * which describes the current status.
54 */
Joe Hershberger638e6592012-12-11 22:16:21 -060055
Simon Glassd2c1ca82019-08-02 09:44:19 -060056struct env_entry_node {
Peter Barada305775b2011-03-21 19:05:20 -040057 int used;
Simon Glass1a236862019-08-02 09:44:18 -060058 struct env_entry entry;
Simon Glassd2c1ca82019-08-02 09:44:19 -060059};
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020060
Simon Glass1a236862019-08-02 09:44:18 -060061static void _hdelete(const char *key, struct hsearch_data *htab,
62 struct env_entry *ep, int idx);
Joe Hershberger638e6592012-12-11 22:16:21 -060063
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020064/*
65 * hcreate()
66 */
67
68/*
69 * For the used double hash method the table size has to be a prime. To
70 * correct the user given table size we need a prime test. This trivial
71 * algorithm is adequate because
72 * a) the code is (most probably) called a few times per program run and
73 * b) the number is small because the table must fit in the core
74 * */
75static int isprime(unsigned int number)
76{
77 /* no even number will be passed */
78 unsigned int div = 3;
79
80 while (div * div < number && number % div != 0)
81 div += 2;
82
83 return number % div != 0;
84}
85
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020086/*
87 * Before using the hash table we must allocate memory for it.
88 * Test for an existing table are done. We allocate one element
89 * more as the found prime number says. This is done for more effective
90 * indexing as explained in the comment for the hsearch function.
91 * The contents of the table is zeroed, especially the field used
92 * becomes zero.
93 */
Mike Frysinger92d7a992010-12-08 06:26:04 -050094
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020095int hcreate_r(size_t nel, struct hsearch_data *htab)
96{
97 /* Test for correct arguments. */
98 if (htab == NULL) {
99 __set_errno(EINVAL);
100 return 0;
101 }
102
103 /* There is still another table active. Return with error. */
Sean Andersonb02f0552020-06-24 06:41:15 -0400104 if (htab->table != NULL) {
105 __set_errno(EINVAL);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200106 return 0;
Sean Andersonb02f0552020-06-24 06:41:15 -0400107 }
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200108
109 /* Change nel to the first prime number not smaller as nel. */
110 nel |= 1; /* make odd */
111 while (!isprime(nel))
112 nel += 2;
113
114 htab->size = nel;
115 htab->filled = 0;
116
117 /* allocate memory and zero out */
Simon Glassd2c1ca82019-08-02 09:44:19 -0600118 htab->table = (struct env_entry_node *)calloc(htab->size + 1,
119 sizeof(struct env_entry_node));
Sean Andersonb02f0552020-06-24 06:41:15 -0400120 if (htab->table == NULL) {
121 __set_errno(ENOMEM);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200122 return 0;
Sean Andersonb02f0552020-06-24 06:41:15 -0400123 }
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200124
125 /* everything went alright */
126 return 1;
127}
128
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200129/*
130 * hdestroy()
131 */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200132
133/*
134 * After using the hash table it has to be destroyed. The used memory can
135 * be freed and the local static variable can be marked as not used.
136 */
Mike Frysinger92d7a992010-12-08 06:26:04 -0500137
Joe Hershbergera46f7702012-12-11 22:16:19 -0600138void hdestroy_r(struct hsearch_data *htab)
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200139{
140 int i;
141
142 /* Test for correct arguments. */
143 if (htab == NULL) {
144 __set_errno(EINVAL);
145 return;
146 }
147
148 /* free used memory */
149 for (i = 1; i <= htab->size; ++i) {
Peter Barada305775b2011-03-21 19:05:20 -0400150 if (htab->table[i].used > 0) {
Simon Glass1a236862019-08-02 09:44:18 -0600151 struct env_entry *ep = &htab->table[i].entry;
Joe Hershbergera46f7702012-12-11 22:16:19 -0600152
Wolfgang Denkd67abff2011-07-29 14:42:18 +0200153 free((void *)ep->key);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200154 free(ep->data);
155 }
156 }
157 free(htab->table);
158
159 /* the sign for an existing table is an value != NULL in htable */
160 htab->table = NULL;
161}
162
163/*
164 * hsearch()
165 */
166
167/*
168 * This is the search function. It uses double hashing with open addressing.
169 * The argument item.key has to be a pointer to an zero terminated, most
170 * probably strings of chars. The function for generating a number of the
171 * strings is simple but fast. It can be replaced by a more complex function
172 * like ajw (see [Aho,Sethi,Ullman]) if the needs are shown.
173 *
174 * We use an trick to speed up the lookup. The table is created by hcreate
175 * with one more element available. This enables us to use the index zero
176 * special. This index will never be used because we store the first hash
177 * index in the field used where zero means not used. Every other value
178 * means used. The used field can be used as a first fast comparison for
179 * equality of the stored and the parameter value. This helps to prevent
180 * unnecessary expensive calls of strcmp.
181 *
182 * This implementation differs from the standard library version of
183 * this function in a number of ways:
184 *
185 * - While the standard version does not make any assumptions about
186 * the type of the stored data objects at all, this implementation
187 * works with NUL terminated strings only.
188 * - Instead of storing just pointers to the original objects, we
189 * create local copies so the caller does not need to care about the
190 * data any more.
191 * - The standard implementation does not provide a way to update an
192 * existing entry. This version will create a new entry or update an
Simon Glass63a2f572019-08-01 09:47:09 -0600193 * existing one when both "action == ENV_ENTER" and "item.data != NULL".
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200194 * - Instead of returning 1 on success, we return the index into the
195 * internal hash table, which is also guaranteed to be positive.
196 * This allows us direct access to the found hash table slot for
197 * example for functions like hdelete().
198 */
199
Simon Glass1a236862019-08-02 09:44:18 -0600200int hmatch_r(const char *match, int last_idx, struct env_entry **retval,
Mike Frysinger8d882322010-12-17 16:51:59 -0500201 struct hsearch_data *htab)
202{
203 unsigned int idx;
204 size_t key_len = strlen(match);
205
206 for (idx = last_idx + 1; idx < htab->size; ++idx) {
Kim Phillipsf73d9352011-04-04 15:17:45 +0000207 if (htab->table[idx].used <= 0)
Mike Frysinger8d882322010-12-17 16:51:59 -0500208 continue;
209 if (!strncmp(match, htab->table[idx].entry.key, key_len)) {
210 *retval = &htab->table[idx].entry;
211 return idx;
212 }
213 }
214
215 __set_errno(ESRCH);
216 *retval = NULL;
217 return 0;
218}
219
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000220static int
221do_callback(const struct env_entry *e, const char *name, const char *value,
222 enum env_op op, int flags)
223{
Simon Glass0e84d962024-09-29 19:49:50 -0600224#ifndef CONFIG_XPL_BUILD
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000225 if (e->callback)
226 return e->callback(name, value, op, flags);
Rasmus Villemoes3a76d2a2020-02-27 13:56:11 +0000227#endif
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000228 return 0;
229}
230
Joe Hershbergere5611c32012-12-11 22:16:20 -0600231/*
232 * Compare an existing entry with the desired key, and overwrite if the action
Simon Glass63a2f572019-08-01 09:47:09 -0600233 * is ENV_ENTER. This is simply a helper function for hsearch_r().
Joe Hershbergere5611c32012-12-11 22:16:20 -0600234 */
Simon Glass1a236862019-08-02 09:44:18 -0600235static inline int _compare_and_overwrite_entry(struct env_entry item,
Simon Glass63a2f572019-08-01 09:47:09 -0600236 enum env_action action, struct env_entry **retval,
Simon Glass1a236862019-08-02 09:44:18 -0600237 struct hsearch_data *htab, int flag, unsigned int hval,
238 unsigned int idx)
Joe Hershbergere5611c32012-12-11 22:16:20 -0600239{
240 if (htab->table[idx].used == hval
241 && strcmp(item.key, htab->table[idx].entry.key) == 0) {
242 /* Overwrite existing value? */
Simon Glass63a2f572019-08-01 09:47:09 -0600243 if (action == ENV_ENTER && item.data) {
Joe Hershberger638e6592012-12-11 22:16:21 -0600244 /* check for permission */
245 if (htab->change_ok != NULL && htab->change_ok(
246 &htab->table[idx].entry, item.data,
247 env_op_overwrite, flag)) {
248 debug("change_ok() rejected setting variable "
249 "%s, skipping it!\n", item.key);
250 __set_errno(EPERM);
251 *retval = NULL;
252 return 0;
253 }
254
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600255 /* If there is a callback, call it */
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000256 if (do_callback(&htab->table[idx].entry, item.key,
257 item.data, env_op_overwrite, flag)) {
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600258 debug("callback() rejected setting variable "
259 "%s, skipping it!\n", item.key);
260 __set_errno(EINVAL);
261 *retval = NULL;
262 return 0;
263 }
264
Joe Hershbergere5611c32012-12-11 22:16:20 -0600265 free(htab->table[idx].entry.data);
266 htab->table[idx].entry.data = strdup(item.data);
267 if (!htab->table[idx].entry.data) {
268 __set_errno(ENOMEM);
269 *retval = NULL;
270 return 0;
271 }
272 }
273 /* return found entry */
274 *retval = &htab->table[idx].entry;
275 return idx;
276 }
277 /* keep searching */
278 return -1;
279}
280
Simon Glass63a2f572019-08-01 09:47:09 -0600281int hsearch_r(struct env_entry item, enum env_action action,
282 struct env_entry **retval, struct hsearch_data *htab, int flag)
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200283{
284 unsigned int hval;
285 unsigned int count;
286 unsigned int len = strlen(item.key);
287 unsigned int idx;
Peter Barada305775b2011-03-21 19:05:20 -0400288 unsigned int first_deleted = 0;
Joe Hershbergere5611c32012-12-11 22:16:20 -0600289 int ret;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200290
291 /* Compute an value for the given string. Perhaps use a better method. */
292 hval = len;
293 count = len;
294 while (count-- > 0) {
295 hval <<= 4;
296 hval += item.key[count];
297 }
298
299 /*
300 * First hash function:
301 * simply take the modul but prevent zero.
302 */
303 hval %= htab->size;
304 if (hval == 0)
305 ++hval;
306
307 /* The first index tried. */
308 idx = hval;
309
310 if (htab->table[idx].used) {
311 /*
Wolfgang Denk1136f692010-10-27 22:48:30 +0200312 * Further action might be required according to the
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200313 * action value.
314 */
315 unsigned hval2;
316
Heinrich Schuchardt468da572020-08-20 19:57:45 +0200317 if (htab->table[idx].used == USED_DELETED)
Peter Barada305775b2011-03-21 19:05:20 -0400318 first_deleted = idx;
319
Joe Hershbergere5611c32012-12-11 22:16:20 -0600320 ret = _compare_and_overwrite_entry(item, action, retval, htab,
321 flag, hval, idx);
322 if (ret != -1)
323 return ret;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200324
325 /*
326 * Second hash function:
327 * as suggested in [Knuth]
328 */
329 hval2 = 1 + hval % (htab->size - 2);
330
331 do {
332 /*
Wolfgang Denk1136f692010-10-27 22:48:30 +0200333 * Because SIZE is prime this guarantees to
334 * step through all available indices.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200335 */
336 if (idx <= hval2)
337 idx = htab->size + idx - hval2;
338 else
339 idx -= hval2;
340
341 /*
342 * If we visited all entries leave the loop
343 * unsuccessfully.
344 */
345 if (idx == hval)
346 break;
347
Roman Kapl07cb4e12019-01-30 11:39:54 +0100348 if (htab->table[idx].used == USED_DELETED
349 && !first_deleted)
350 first_deleted = idx;
351
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200352 /* If entry is found use it. */
Joe Hershbergere5611c32012-12-11 22:16:20 -0600353 ret = _compare_and_overwrite_entry(item, action, retval,
354 htab, flag, hval, idx);
355 if (ret != -1)
356 return ret;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200357 }
Roman Kapl07cb4e12019-01-30 11:39:54 +0100358 while (htab->table[idx].used != USED_FREE);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200359 }
360
361 /* An empty bucket has been found. */
Simon Glass63a2f572019-08-01 09:47:09 -0600362 if (action == ENV_ENTER) {
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200363 /*
Wolfgang Denk1136f692010-10-27 22:48:30 +0200364 * If table is full and another entry should be
365 * entered return with error.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200366 */
367 if (htab->filled == htab->size) {
368 __set_errno(ENOMEM);
369 *retval = NULL;
370 return 0;
371 }
372
373 /*
374 * Create new entry;
375 * create copies of item.key and item.data
376 */
Peter Barada305775b2011-03-21 19:05:20 -0400377 if (first_deleted)
378 idx = first_deleted;
379
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200380 htab->table[idx].used = hval;
381 htab->table[idx].entry.key = strdup(item.key);
382 htab->table[idx].entry.data = strdup(item.data);
383 if (!htab->table[idx].entry.key ||
384 !htab->table[idx].entry.data) {
385 __set_errno(ENOMEM);
386 *retval = NULL;
387 return 0;
388 }
389
390 ++htab->filled;
391
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600392 /* This is a new entry, so look up a possible callback */
393 env_callback_init(&htab->table[idx].entry);
Joe Hershberger71497d02012-12-11 22:16:31 -0600394 /* Also look for flags */
395 env_flags_init(&htab->table[idx].entry);
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600396
Joe Hershberger638e6592012-12-11 22:16:21 -0600397 /* check for permission */
398 if (htab->change_ok != NULL && htab->change_ok(
399 &htab->table[idx].entry, item.data, env_op_create, flag)) {
400 debug("change_ok() rejected setting variable "
401 "%s, skipping it!\n", item.key);
402 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
403 __set_errno(EPERM);
404 *retval = NULL;
405 return 0;
406 }
407
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600408 /* If there is a callback, call it */
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000409 if (do_callback(&htab->table[idx].entry, item.key, item.data,
410 env_op_create, flag)) {
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600411 debug("callback() rejected setting variable "
412 "%s, skipping it!\n", item.key);
413 _hdelete(item.key, htab, &htab->table[idx].entry, idx);
414 __set_errno(EINVAL);
415 *retval = NULL;
416 return 0;
417 }
418
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200419 /* return new entry */
420 *retval = &htab->table[idx].entry;
421 return 1;
422 }
423
424 __set_errno(ESRCH);
425 *retval = NULL;
426 return 0;
427}
428
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200429/*
430 * hdelete()
431 */
432
433/*
434 * The standard implementation of hsearch(3) does not provide any way
435 * to delete any entries from the hash table. We extend the code to
436 * do that.
437 */
438
Simon Glass1a236862019-08-02 09:44:18 -0600439static void _hdelete(const char *key, struct hsearch_data *htab,
440 struct env_entry *ep, int idx)
Joe Hershberger638e6592012-12-11 22:16:21 -0600441{
Simon Glass1a236862019-08-02 09:44:18 -0600442 /* free used entry */
Joe Hershberger638e6592012-12-11 22:16:21 -0600443 debug("hdelete: DELETING key \"%s\"\n", key);
444 free((void *)ep->key);
445 free(ep->data);
Joe Hershberger71497d02012-12-11 22:16:31 -0600446 ep->flags = 0;
Roman Kapl07cb4e12019-01-30 11:39:54 +0100447 htab->table[idx].used = USED_DELETED;
Joe Hershberger638e6592012-12-11 22:16:21 -0600448
449 --htab->filled;
450}
451
Joe Hershbergera46f7702012-12-11 22:16:19 -0600452int hdelete_r(const char *key, struct hsearch_data *htab, int flag)
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200453{
Simon Glass1a236862019-08-02 09:44:18 -0600454 struct env_entry e, *ep;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200455 int idx;
456
457 debug("hdelete: DELETE key \"%s\"\n", key);
458
459 e.key = (char *)key;
460
Simon Glass63a2f572019-08-01 09:47:09 -0600461 idx = hsearch_r(e, ENV_FIND, &ep, htab, 0);
Joe Hershbergera46f7702012-12-11 22:16:19 -0600462 if (idx == 0) {
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200463 __set_errno(ESRCH);
Simon Glass783ef3f2020-11-05 10:33:37 -0700464 return -ENOENT; /* not found */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200465 }
466
Joe Hershbergera46f7702012-12-11 22:16:19 -0600467 /* Check for permission */
Joe Hershberger638e6592012-12-11 22:16:21 -0600468 if (htab->change_ok != NULL &&
469 htab->change_ok(ep, NULL, env_op_delete, flag)) {
470 debug("change_ok() rejected deleting variable "
471 "%s, skipping it!\n", key);
Joe Hershbergera46f7702012-12-11 22:16:19 -0600472 __set_errno(EPERM);
Simon Glass783ef3f2020-11-05 10:33:37 -0700473 return -EPERM;
Joe Hershbergera46f7702012-12-11 22:16:19 -0600474 }
475
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600476 /* If there is a callback, call it */
Rasmus Villemoes2bd84a72020-02-27 13:56:11 +0000477 if (do_callback(&htab->table[idx].entry, key, NULL,
478 env_op_delete, flag)) {
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600479 debug("callback() rejected deleting variable "
480 "%s, skipping it!\n", key);
481 __set_errno(EINVAL);
Simon Glass783ef3f2020-11-05 10:33:37 -0700482 return -EINVAL;
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600483 }
484
Joe Hershberger638e6592012-12-11 22:16:21 -0600485 _hdelete(key, htab, ep, idx);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200486
Simon Glass783ef3f2020-11-05 10:33:37 -0700487 return 0;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200488}
489
Simon Glass0e84d962024-09-29 19:49:50 -0600490#if !(defined(CONFIG_XPL_BUILD) && !defined(CONFIG_SPL_SAVEENV))
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200491/*
492 * hexport()
493 */
494
495/*
496 * Export the data stored in the hash table in linearized form.
497 *
498 * Entries are exported as "name=value" strings, separated by an
499 * arbitrary (non-NUL, of course) separator character. This allows to
500 * use this function both when formatting the U-Boot environment for
501 * external storage (using '\0' as separator), but also when using it
502 * for the "printenv" command to print all variables, simply by using
503 * as '\n" as separator. This can also be used for new features like
504 * exporting the environment data as text file, including the option
505 * for later re-import.
506 *
507 * The entries in the result list will be sorted by ascending key
508 * values.
509 *
510 * If the separator character is different from NUL, then any
511 * separator characters and backslash characters in the values will
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400512 * be escaped by a preceding backslash in output. This is needed for
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200513 * example to enable multi-line values, especially when the output
514 * shall later be parsed (for example, for re-import).
515 *
516 * There are several options how the result buffer is handled:
517 *
518 * *resp size
519 * -----------
520 * NULL 0 A string of sufficient length will be allocated.
521 * NULL >0 A string of the size given will be
522 * allocated. An error will be returned if the size is
523 * not sufficient. Any unused bytes in the string will
524 * be '\0'-padded.
525 * !NULL 0 The user-supplied buffer will be used. No length
526 * checking will be performed, i. e. it is assumed that
527 * the buffer size will always be big enough. DANGEROUS.
528 * !NULL >0 The user-supplied buffer will be used. An error will
529 * be returned if the size is not sufficient. Any unused
530 * bytes in the string will be '\0'-padded.
531 */
532
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200533static int cmpkey(const void *p1, const void *p2)
534{
Simon Glass1a236862019-08-02 09:44:18 -0600535 struct env_entry *e1 = *(struct env_entry **)p1;
536 struct env_entry *e2 = *(struct env_entry **)p2;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200537
538 return (strcmp(e1->key, e2->key));
539}
540
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000541static int match_string(int flag, const char *str, const char *pat, void *priv)
Wolfgang Denke27fc122013-03-23 23:50:29 +0000542{
543 switch (flag & H_MATCH_METHOD) {
544 case H_MATCH_IDENT:
545 if (strcmp(str, pat) == 0)
546 return 1;
547 break;
548 case H_MATCH_SUBSTR:
549 if (strstr(str, pat))
550 return 1;
551 break;
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000552#ifdef CONFIG_REGEX
553 case H_MATCH_REGEX:
554 {
555 struct slre *slrep = (struct slre *)priv;
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000556
Heinrich Schuchardtac239702019-01-23 08:17:02 +0100557 if (slre_match(slrep, str, strlen(str), NULL))
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000558 return 1;
559 }
560 break;
561#endif
Wolfgang Denke27fc122013-03-23 23:50:29 +0000562 default:
563 printf("## ERROR: unsupported match method: 0x%02x\n",
564 flag & H_MATCH_METHOD);
565 break;
566 }
567 return 0;
568}
569
Simon Glass1a236862019-08-02 09:44:18 -0600570static int match_entry(struct env_entry *ep, int flag, int argc,
571 char *const argv[])
Wolfgang Denk565af272013-03-23 23:50:28 +0000572{
573 int arg;
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000574 void *priv = NULL;
Wolfgang Denk565af272013-03-23 23:50:28 +0000575
Pierre Aubertd8d51f82013-10-08 14:20:27 +0200576 for (arg = 0; arg < argc; ++arg) {
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000577#ifdef CONFIG_REGEX
578 struct slre slre;
579
580 if (slre_compile(&slre, argv[arg]) == 0) {
581 printf("Error compiling regex: %s\n", slre.err_str);
582 return 0;
583 }
584
585 priv = (void *)&slre;
586#endif
Wolfgang Denk565af272013-03-23 23:50:28 +0000587 if (flag & H_MATCH_KEY) {
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000588 if (match_string(flag, ep->key, argv[arg], priv))
Wolfgang Denke27fc122013-03-23 23:50:29 +0000589 return 1;
590 }
591 if (flag & H_MATCH_DATA) {
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000592 if (match_string(flag, ep->data, argv[arg], priv))
Wolfgang Denke27fc122013-03-23 23:50:29 +0000593 return 1;
Wolfgang Denk565af272013-03-23 23:50:28 +0000594 }
595 }
596 return 0;
597}
598
Joe Hershberger79a905e2012-12-11 22:16:23 -0600599ssize_t hexport_r(struct hsearch_data *htab, const char sep, int flag,
Wolfgang Denk1e3cdf32011-11-06 22:49:44 +0100600 char **resp, size_t size,
Simon Glassed38aef2020-05-10 11:40:03 -0600601 int argc, char *const argv[])
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200602{
Simon Glass1a236862019-08-02 09:44:18 -0600603 struct env_entry *list[htab->size];
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200604 char *res, *p;
605 size_t totlen;
606 int i, n;
607
608 /* Test for correct arguments. */
609 if ((resp == NULL) || (htab == NULL)) {
610 __set_errno(EINVAL);
611 return (-1);
612 }
613
Simon Glassf970ccb2016-07-22 09:22:48 -0600614 debug("EXPORT table = %p, htab.size = %d, htab.filled = %d, size = %lu\n",
615 htab, htab->size, htab->filled, (ulong)size);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200616 /*
617 * Pass 1:
618 * search used entries,
619 * save addresses and compute total length
620 */
621 for (i = 1, n = 0, totlen = 0; i <= htab->size; ++i) {
622
Peter Barada305775b2011-03-21 19:05:20 -0400623 if (htab->table[i].used > 0) {
Simon Glass1a236862019-08-02 09:44:18 -0600624 struct env_entry *ep = &htab->table[i].entry;
Wolfgang Denke27fc122013-03-23 23:50:29 +0000625 int found = match_entry(ep, flag, argc, argv);
Wolfgang Denk1e3cdf32011-11-06 22:49:44 +0100626
Wolfgang Denk1e3cdf32011-11-06 22:49:44 +0100627 if ((argc > 0) && (found == 0))
628 continue;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200629
Joe Hershberger79a905e2012-12-11 22:16:23 -0600630 if ((flag & H_HIDE_DOT) && ep->key[0] == '.')
631 continue;
632
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200633 list[n++] = ep;
634
Zubair Lutfullah Kakakhel305ad7a2018-07-17 19:25:38 +0100635 totlen += strlen(ep->key);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200636
637 if (sep == '\0') {
638 totlen += strlen(ep->data);
639 } else { /* check if escapes are needed */
640 char *s = ep->data;
641
642 while (*s) {
643 ++totlen;
644 /* add room for needed escape chars */
645 if ((*s == sep) || (*s == '\\'))
646 ++totlen;
647 ++s;
648 }
649 }
650 totlen += 2; /* for '=' and 'sep' char */
651 }
652 }
653
654#ifdef DEBUG
655 /* Pass 1a: print unsorted list */
656 printf("Unsorted: n=%d\n", n);
657 for (i = 0; i < n; ++i) {
658 printf("\t%3d: %p ==> %-10s => %s\n",
659 i, list[i], list[i]->key, list[i]->data);
660 }
661#endif
662
663 /* Sort list by keys */
Simon Glass1a236862019-08-02 09:44:18 -0600664 qsort(list, n, sizeof(struct env_entry *), cmpkey);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200665
666 /* Check if the user supplied buffer size is sufficient */
667 if (size) {
668 if (size < totlen + 1) { /* provided buffer too small */
Simon Glassf970ccb2016-07-22 09:22:48 -0600669 printf("Env export buffer too small: %lu, but need %lu\n",
670 (ulong)size, (ulong)totlen + 1);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200671 __set_errno(ENOMEM);
672 return (-1);
673 }
674 } else {
AKASHI Takahiro1f0f1bd2018-12-14 18:42:51 +0900675 size = totlen + 1;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200676 }
677
678 /* Check if the user provided a buffer */
679 if (*resp) {
680 /* yes; clear it */
681 res = *resp;
682 memset(res, '\0', size);
683 } else {
684 /* no, allocate and clear one */
685 *resp = res = calloc(1, size);
686 if (res == NULL) {
687 __set_errno(ENOMEM);
688 return (-1);
689 }
690 }
691 /*
692 * Pass 2:
693 * export sorted list of result data
694 */
695 for (i = 0, p = res; i < n; ++i) {
Wolfgang Denkd67abff2011-07-29 14:42:18 +0200696 const char *s;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200697
698 s = list[i]->key;
699 while (*s)
700 *p++ = *s++;
701 *p++ = '=';
702
703 s = list[i]->data;
704
705 while (*s) {
706 if ((*s == sep) || (*s == '\\'))
707 *p++ = '\\'; /* escape */
708 *p++ = *s++;
709 }
710 *p++ = sep;
711 }
712 *p = '\0'; /* terminate result */
713
714 return size;
715}
Ilya Yanokf7a2c552012-09-18 00:22:50 +0000716#endif
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200717
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200718/*
719 * himport()
720 */
721
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000722/*
723 * Check whether variable 'name' is amongst vars[],
724 * and remove all instances by setting the pointer to NULL
725 */
726static int drop_var_from_set(const char *name, int nvars, char * vars[])
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000727{
728 int i = 0;
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000729 int res = 0;
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000730
731 /* No variables specified means process all of them */
732 if (nvars == 0)
733 return 1;
734
735 for (i = 0; i < nvars; i++) {
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000736 if (vars[i] == NULL)
737 continue;
738 /* If we found it, delete all of them */
739 if (!strcmp(name, vars[i])) {
740 vars[i] = NULL;
741 res = 1;
742 }
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000743 }
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000744 if (!res)
745 debug("Skipping non-listed variable %s\n", name);
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000746
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000747 return res;
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000748}
749
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200750/*
751 * Import linearized data into hash table.
752 *
753 * This is the inverse function to hexport(): it takes a linear list
754 * of "name=value" pairs and creates hash table entries from it.
755 *
756 * Entries without "value", i. e. consisting of only "name" or
757 * "name=", will cause this entry to be deleted from the hash table.
758 *
759 * The "flag" argument can be used to control the behaviour: when the
760 * H_NOCLEAR bit is set, then an existing hash table will kept, i. e.
Quentin Schulzdceecac2018-07-09 19:16:28 +0200761 * new data will be added to an existing hash table; otherwise, if no
762 * vars are passed, old data will be discarded and a new hash table
763 * will be created. If vars are passed, passed vars that are not in
764 * the linear list of "name=value" pairs will be removed from the
765 * current hash table.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200766 *
767 * The separator character for the "name=value" pairs can be selected,
768 * so we both support importing from externally stored environment
769 * data (separated by NUL characters) and from plain text files
770 * (entries separated by newline characters).
771 *
772 * To allow for nicely formatted text input, leading white space
773 * (sequences of SPACE and TAB chars) is ignored, and entries starting
774 * (after removal of any leading white space) with a '#' character are
775 * considered comments and ignored.
776 *
777 * [NOTE: this means that a variable name cannot start with a '#'
778 * character.]
779 *
780 * When using a non-NUL separator character, backslash is used as
781 * escape character in the value part, allowing for example for
782 * multi-line values.
783 *
784 * In theory, arbitrary separator characters can be used, but only
785 * '\0' and '\n' have really been tested.
786 */
787
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200788int himport_r(struct hsearch_data *htab,
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000789 const char *env, size_t size, const char sep, int flag,
Alexander Holler3e12be72014-07-14 17:49:55 +0200790 int crlf_is_lf, int nvars, char * const vars[])
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200791{
792 char *data, *sp, *dp, *name, *value;
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000793 char *localvars[nvars];
794 int i;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200795
796 /* Test for correct arguments. */
797 if (htab == NULL) {
798 __set_errno(EINVAL);
799 return 0;
800 }
801
802 /* we allocate new space to make sure we can write to the array */
Lukasz Majewski63b26542015-09-14 00:57:03 +0200803 if ((data = malloc(size + 1)) == NULL) {
Simon Glassf970ccb2016-07-22 09:22:48 -0600804 debug("himport_r: can't malloc %lu bytes\n", (ulong)size + 1);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200805 __set_errno(ENOMEM);
806 return 0;
807 }
808 memcpy(data, env, size);
Lukasz Majewski63b26542015-09-14 00:57:03 +0200809 data[size] = '\0';
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200810 dp = data;
811
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000812 /* make a local copy of the list of variables */
813 if (nvars)
814 memcpy(localvars, vars, sizeof(vars[0]) * nvars);
815
Marek Vasuta7b82672020-07-07 20:51:38 +0200816#if CONFIG_IS_ENABLED(ENV_APPEND)
817 flag |= H_NOCLEAR;
818#endif
819
Quentin Schulzdceecac2018-07-09 19:16:28 +0200820 if ((flag & H_NOCLEAR) == 0 && !nvars) {
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200821 /* Destroy old hash table if one exists */
822 debug("Destroy Hash Table: %p table = %p\n", htab,
823 htab->table);
824 if (htab->table)
Joe Hershbergera46f7702012-12-11 22:16:19 -0600825 hdestroy_r(htab);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200826 }
827
828 /*
829 * Create new hash table (if needed). The computation of the hash
830 * table size is based on heuristics: in a sample of some 70+
831 * existing systems we found an average size of 39+ bytes per entry
832 * in the environment (for the whole key=value pair). Assuming a
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200833 * size of 8 per entry (= safety factor of ~5) should provide enough
834 * safety margin for any existing environment definitions and still
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200835 * allow for more than enough dynamic additions. Note that the
Robert P. J. Day832d36e2013-09-16 07:15:45 -0400836 * "size" argument is supposed to give the maximum environment size
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200837 * (CONFIG_ENV_SIZE). This heuristics will result in
838 * unreasonably large numbers (and thus memory footprint) for
839 * big flash environments (>8,000 entries for 64 KB
Robert P. J. Day8d56db92016-07-15 13:44:45 -0400840 * environment size), so we clip it to a reasonable value.
Andreas Bießmann2638b2b2010-10-01 22:51:02 +0200841 * On the other hand we need to add some more entries for free
842 * space when importing very small buffers. Both boundaries can
843 * be overwritten in the board config file if needed.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200844 */
845
846 if (!htab->table) {
Andreas Bießmann2638b2b2010-10-01 22:51:02 +0200847 int nent = CONFIG_ENV_MIN_ENTRIES + size / 8;
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200848
849 if (nent > CONFIG_ENV_MAX_ENTRIES)
850 nent = CONFIG_ENV_MAX_ENTRIES;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200851
852 debug("Create Hash Table: N=%d\n", nent);
853
854 if (hcreate_r(nent, htab) == 0) {
855 free(data);
856 return 0;
857 }
858 }
859
Lukasz Majewski105426b2015-09-14 00:57:04 +0200860 if (!size) {
861 free(data);
Alexander Holler3e12be72014-07-14 17:49:55 +0200862 return 1; /* everything OK */
Lukasz Majewski105426b2015-09-14 00:57:04 +0200863 }
Alexander Holler3e12be72014-07-14 17:49:55 +0200864 if(crlf_is_lf) {
865 /* Remove Carriage Returns in front of Line Feeds */
866 unsigned ignored_crs = 0;
867 for(;dp < data + size && *dp; ++dp) {
868 if(*dp == '\r' &&
869 dp < data + size - 1 && *(dp+1) == '\n')
870 ++ignored_crs;
871 else
872 *(dp-ignored_crs) = *dp;
873 }
874 size -= ignored_crs;
875 dp = data;
876 }
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200877 /* Parse environment; allow for '\0' and 'sep' as separators */
878 do {
Simon Glass1a236862019-08-02 09:44:18 -0600879 struct env_entry e, *rv;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200880
881 /* skip leading white space */
Jason Hobbscafa1aa2011-08-23 11:06:54 +0000882 while (isblank(*dp))
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200883 ++dp;
884
885 /* skip comment lines */
886 if (*dp == '#') {
887 while (*dp && (*dp != sep))
888 ++dp;
889 ++dp;
890 continue;
891 }
892
893 /* parse name */
894 for (name = dp; *dp != '=' && *dp && *dp != sep; ++dp)
895 ;
896
897 /* deal with "name" and "name=" entries (delete var) */
898 if (*dp == '\0' || *(dp + 1) == '\0' ||
899 *dp == sep || *(dp + 1) == sep) {
900 if (*dp == '=')
901 *dp++ = '\0';
902 *dp++ = '\0'; /* terminate name */
903
904 debug("DELETE CANDIDATE: \"%s\"\n", name);
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000905 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000906 continue;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200907
Simon Glass783ef3f2020-11-05 10:33:37 -0700908 if (hdelete_r(name, htab, flag))
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200909 debug("DELETE ERROR ##############################\n");
910
911 continue;
912 }
913 *dp++ = '\0'; /* terminate name */
914
915 /* parse value; deal with escapes */
916 for (value = sp = dp; *dp && (*dp != sep); ++dp) {
917 if ((*dp == '\\') && *(dp + 1))
918 ++dp;
919 *sp++ = *dp;
920 }
921 *sp++ = '\0'; /* terminate value */
922 ++dp;
923
Lucian Cojocar5270bde2013-04-28 11:31:57 +0000924 if (*name == 0) {
925 debug("INSERT: unable to use an empty key\n");
926 __set_errno(EINVAL);
Lukasz Majewski105426b2015-09-14 00:57:04 +0200927 free(data);
Lucian Cojocar5270bde2013-04-28 11:31:57 +0000928 return 0;
929 }
930
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000931 /* Skip variables which are not supposed to be processed */
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000932 if (!drop_var_from_set(name, nvars, localvars))
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +0000933 continue;
934
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200935 /* enter into hash table */
936 e.key = name;
937 e.data = value;
938
Simon Glass63a2f572019-08-01 09:47:09 -0600939 hsearch_r(e, ENV_ENTER, &rv, htab, flag);
Simon Glassfdf3e7f2023-02-05 15:39:50 -0700940#if !IS_ENABLED(CONFIG_ENV_WRITEABLE_LIST)
Marek Vasut803549f2020-07-07 20:51:39 +0200941 if (rv == NULL) {
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200942 printf("himport_r: can't insert \"%s=%s\" into hash table\n",
943 name, value);
Marek Vasut803549f2020-07-07 20:51:39 +0200944 }
945#endif
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200946
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200947 debug("INSERT: table %p, filled %d/%d rv %p ==> name=\"%s\" value=\"%s\"\n",
948 htab, htab->filled, htab->size,
949 rv, name, value);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200950 } while ((dp < data + size) && *dp); /* size check needed for text */
951 /* without '\0' termination */
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200952 debug("INSERT: free(data = %p)\n", data);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200953 free(data);
954
Quentin Schulzdceecac2018-07-09 19:16:28 +0200955 if (flag & H_NOCLEAR)
956 goto end;
957
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000958 /* process variables which were not considered */
959 for (i = 0; i < nvars; i++) {
960 if (localvars[i] == NULL)
961 continue;
962 /*
963 * All variables which were not deleted from the variable list
964 * were not present in the imported env
965 * This could mean two things:
966 * a) if the variable was present in current env, we delete it
967 * b) if the variable was not present in current env, we notify
968 * it might be a typo
969 */
Simon Glass783ef3f2020-11-05 10:33:37 -0700970 if (hdelete_r(localvars[i], htab, flag))
Gerlando Falauto6765eb12012-08-26 21:53:00 +0000971 printf("WARNING: '%s' neither in running nor in imported env!\n", localvars[i]);
972 else
973 printf("WARNING: '%s' not in imported env, deleting it!\n", localvars[i]);
974 }
975
Quentin Schulzdceecac2018-07-09 19:16:28 +0200976end:
Wolfgang Denk460a9ff2010-06-20 23:33:59 +0200977 debug("INSERT: done\n");
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200978 return 1; /* everything OK */
979}
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600980
981/*
982 * hwalk_r()
983 */
984
985/*
986 * Walk all of the entries in the hash, calling the callback for each one.
987 * this allows some generic operation to be performed on each element.
988 */
Simon Glass1a236862019-08-02 09:44:18 -0600989int hwalk_r(struct hsearch_data *htab, int (*callback)(struct env_entry *entry))
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600990{
991 int i;
992 int retval;
993
994 for (i = 1; i <= htab->size; ++i) {
995 if (htab->table[i].used > 0) {
996 retval = callback(&htab->table[i].entry);
997 if (retval)
998 return retval;
999 }
1000 }
1001
1002 return 0;
1003}