Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: LGPL-2.1+ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 2 | /* |
| 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 Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 6 | * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 7 | * |
| 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 Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <errno.h> |
| 16 | #include <malloc.h> |
| 17 | |
| 18 | #ifdef USE_HOSTCC /* HOST build */ |
| 19 | # include <string.h> |
| 20 | # include <assert.h> |
Jason Hobbs | 4d91a6e | 2011-08-23 11:06:54 +0000 | [diff] [blame] | 21 | # include <ctype.h> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 22 | |
| 23 | # ifndef debug |
| 24 | # ifdef DEBUG |
| 25 | # define debug(fmt,args...) printf(fmt ,##args) |
| 26 | # else |
| 27 | # define debug(fmt,args...) |
| 28 | # endif |
| 29 | # endif |
| 30 | #else /* U-Boot build */ |
| 31 | # include <common.h> |
| 32 | # include <linux/string.h> |
Jason Hobbs | 4d91a6e | 2011-08-23 11:06:54 +0000 | [diff] [blame] | 33 | # include <linux/ctype.h> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 34 | #endif |
| 35 | |
Andreas Bießmann | fc5fc76 | 2010-10-01 22:51:02 +0200 | [diff] [blame] | 36 | #ifndef CONFIG_ENV_MIN_ENTRIES /* minimum number of entries */ |
| 37 | #define CONFIG_ENV_MIN_ENTRIES 64 |
| 38 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 39 | #ifndef CONFIG_ENV_MAX_ENTRIES /* maximum number of entries */ |
| 40 | #define CONFIG_ENV_MAX_ENTRIES 512 |
| 41 | #endif |
| 42 | |
Roman Kapl | 9dfdbd9 | 2019-01-30 11:39:54 +0100 | [diff] [blame] | 43 | #define USED_FREE 0 |
| 44 | #define USED_DELETED -1 |
| 45 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 46 | #include <env_callback.h> |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 47 | #include <env_flags.h> |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 48 | #include <search.h> |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 49 | #include <slre.h> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986 |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 53 | * [Knuth] The Art of Computer Programming, part 3 (6.4) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 54 | */ |
| 55 | |
| 56 | /* |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 57 | * The reentrant version has no static variables to maintain the state. |
| 58 | * Instead the interface of all functions is extended to take an argument |
| 59 | * which describes the current status. |
| 60 | */ |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 61 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 62 | typedef struct _ENTRY { |
Peter Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 63 | int used; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 64 | ENTRY entry; |
| 65 | } _ENTRY; |
| 66 | |
| 67 | |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 68 | static void _hdelete(const char *key, struct hsearch_data *htab, ENTRY *ep, |
| 69 | int idx); |
| 70 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 71 | /* |
| 72 | * hcreate() |
| 73 | */ |
| 74 | |
| 75 | /* |
| 76 | * For the used double hash method the table size has to be a prime. To |
| 77 | * correct the user given table size we need a prime test. This trivial |
| 78 | * algorithm is adequate because |
| 79 | * a) the code is (most probably) called a few times per program run and |
| 80 | * b) the number is small because the table must fit in the core |
| 81 | * */ |
| 82 | static int isprime(unsigned int number) |
| 83 | { |
| 84 | /* no even number will be passed */ |
| 85 | unsigned int div = 3; |
| 86 | |
| 87 | while (div * div < number && number % div != 0) |
| 88 | div += 2; |
| 89 | |
| 90 | return number % div != 0; |
| 91 | } |
| 92 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 93 | /* |
| 94 | * Before using the hash table we must allocate memory for it. |
| 95 | * Test for an existing table are done. We allocate one element |
| 96 | * more as the found prime number says. This is done for more effective |
| 97 | * indexing as explained in the comment for the hsearch function. |
| 98 | * The contents of the table is zeroed, especially the field used |
| 99 | * becomes zero. |
| 100 | */ |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 101 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 102 | int hcreate_r(size_t nel, struct hsearch_data *htab) |
| 103 | { |
| 104 | /* Test for correct arguments. */ |
| 105 | if (htab == NULL) { |
| 106 | __set_errno(EINVAL); |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | /* There is still another table active. Return with error. */ |
| 111 | if (htab->table != NULL) |
| 112 | return 0; |
| 113 | |
| 114 | /* Change nel to the first prime number not smaller as nel. */ |
| 115 | nel |= 1; /* make odd */ |
| 116 | while (!isprime(nel)) |
| 117 | nel += 2; |
| 118 | |
| 119 | htab->size = nel; |
| 120 | htab->filled = 0; |
| 121 | |
| 122 | /* allocate memory and zero out */ |
| 123 | htab->table = (_ENTRY *) calloc(htab->size + 1, sizeof(_ENTRY)); |
| 124 | if (htab->table == NULL) |
| 125 | return 0; |
| 126 | |
| 127 | /* everything went alright */ |
| 128 | return 1; |
| 129 | } |
| 130 | |
| 131 | |
| 132 | /* |
| 133 | * hdestroy() |
| 134 | */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 135 | |
| 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 Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 140 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 141 | void hdestroy_r(struct hsearch_data *htab) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 142 | { |
| 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 Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 153 | if (htab->table[i].used > 0) { |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 154 | ENTRY *ep = &htab->table[i].entry; |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 155 | |
Wolfgang Denk | 84b5e80 | 2011-07-29 14:42:18 +0200 | [diff] [blame] | 156 | free((void *)ep->key); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 157 | 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 |
| 196 | * existing one when both "action == ENTER" and "item.data != NULL". |
| 197 | * - 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 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 203 | int hmatch_r(const char *match, int last_idx, ENTRY ** retval, |
| 204 | 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 Phillips | af4d907 | 2011-04-04 15:17:45 +0000 | [diff] [blame] | 210 | if (htab->table[idx].used <= 0) |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 211 | 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 | |
Joe Hershberger | 3d3b52f | 2012-12-11 22:16:20 -0600 | [diff] [blame] | 223 | /* |
| 224 | * Compare an existing entry with the desired key, and overwrite if the action |
| 225 | * is ENTER. This is simply a helper function for hsearch_r(). |
| 226 | */ |
| 227 | static inline int _compare_and_overwrite_entry(ENTRY item, ACTION action, |
| 228 | ENTRY **retval, struct hsearch_data *htab, int flag, |
| 229 | unsigned int hval, unsigned int idx) |
| 230 | { |
| 231 | if (htab->table[idx].used == hval |
| 232 | && strcmp(item.key, htab->table[idx].entry.key) == 0) { |
| 233 | /* Overwrite existing value? */ |
| 234 | if ((action == ENTER) && (item.data != NULL)) { |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 235 | /* check for permission */ |
| 236 | if (htab->change_ok != NULL && htab->change_ok( |
| 237 | &htab->table[idx].entry, item.data, |
| 238 | env_op_overwrite, flag)) { |
| 239 | debug("change_ok() rejected setting variable " |
| 240 | "%s, skipping it!\n", item.key); |
| 241 | __set_errno(EPERM); |
| 242 | *retval = NULL; |
| 243 | return 0; |
| 244 | } |
| 245 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 246 | /* If there is a callback, call it */ |
| 247 | if (htab->table[idx].entry.callback && |
| 248 | htab->table[idx].entry.callback(item.key, |
| 249 | item.data, env_op_overwrite, flag)) { |
| 250 | debug("callback() rejected setting variable " |
| 251 | "%s, skipping it!\n", item.key); |
| 252 | __set_errno(EINVAL); |
| 253 | *retval = NULL; |
| 254 | return 0; |
| 255 | } |
| 256 | |
Joe Hershberger | 3d3b52f | 2012-12-11 22:16:20 -0600 | [diff] [blame] | 257 | free(htab->table[idx].entry.data); |
| 258 | htab->table[idx].entry.data = strdup(item.data); |
| 259 | if (!htab->table[idx].entry.data) { |
| 260 | __set_errno(ENOMEM); |
| 261 | *retval = NULL; |
| 262 | return 0; |
| 263 | } |
| 264 | } |
| 265 | /* return found entry */ |
| 266 | *retval = &htab->table[idx].entry; |
| 267 | return idx; |
| 268 | } |
| 269 | /* keep searching */ |
| 270 | return -1; |
| 271 | } |
| 272 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 273 | int hsearch_r(ENTRY item, ACTION action, ENTRY ** retval, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 274 | struct hsearch_data *htab, int flag) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 275 | { |
| 276 | unsigned int hval; |
| 277 | unsigned int count; |
| 278 | unsigned int len = strlen(item.key); |
| 279 | unsigned int idx; |
Peter Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 280 | unsigned int first_deleted = 0; |
Joe Hershberger | 3d3b52f | 2012-12-11 22:16:20 -0600 | [diff] [blame] | 281 | int ret; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 282 | |
| 283 | /* Compute an value for the given string. Perhaps use a better method. */ |
| 284 | hval = len; |
| 285 | count = len; |
| 286 | while (count-- > 0) { |
| 287 | hval <<= 4; |
| 288 | hval += item.key[count]; |
| 289 | } |
| 290 | |
| 291 | /* |
| 292 | * First hash function: |
| 293 | * simply take the modul but prevent zero. |
| 294 | */ |
| 295 | hval %= htab->size; |
| 296 | if (hval == 0) |
| 297 | ++hval; |
| 298 | |
| 299 | /* The first index tried. */ |
| 300 | idx = hval; |
| 301 | |
| 302 | if (htab->table[idx].used) { |
| 303 | /* |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 304 | * Further action might be required according to the |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 305 | * action value. |
| 306 | */ |
| 307 | unsigned hval2; |
| 308 | |
Roman Kapl | 9dfdbd9 | 2019-01-30 11:39:54 +0100 | [diff] [blame] | 309 | if (htab->table[idx].used == USED_DELETED |
Peter Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 310 | && !first_deleted) |
| 311 | first_deleted = idx; |
| 312 | |
Joe Hershberger | 3d3b52f | 2012-12-11 22:16:20 -0600 | [diff] [blame] | 313 | ret = _compare_and_overwrite_entry(item, action, retval, htab, |
| 314 | flag, hval, idx); |
| 315 | if (ret != -1) |
| 316 | return ret; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 317 | |
| 318 | /* |
| 319 | * Second hash function: |
| 320 | * as suggested in [Knuth] |
| 321 | */ |
| 322 | hval2 = 1 + hval % (htab->size - 2); |
| 323 | |
| 324 | do { |
| 325 | /* |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 326 | * Because SIZE is prime this guarantees to |
| 327 | * step through all available indices. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 328 | */ |
| 329 | if (idx <= hval2) |
| 330 | idx = htab->size + idx - hval2; |
| 331 | else |
| 332 | idx -= hval2; |
| 333 | |
| 334 | /* |
| 335 | * If we visited all entries leave the loop |
| 336 | * unsuccessfully. |
| 337 | */ |
| 338 | if (idx == hval) |
| 339 | break; |
| 340 | |
Roman Kapl | 9dfdbd9 | 2019-01-30 11:39:54 +0100 | [diff] [blame] | 341 | if (htab->table[idx].used == USED_DELETED |
| 342 | && !first_deleted) |
| 343 | first_deleted = idx; |
| 344 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 345 | /* If entry is found use it. */ |
Joe Hershberger | 3d3b52f | 2012-12-11 22:16:20 -0600 | [diff] [blame] | 346 | ret = _compare_and_overwrite_entry(item, action, retval, |
| 347 | htab, flag, hval, idx); |
| 348 | if (ret != -1) |
| 349 | return ret; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 350 | } |
Roman Kapl | 9dfdbd9 | 2019-01-30 11:39:54 +0100 | [diff] [blame] | 351 | while (htab->table[idx].used != USED_FREE); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | /* An empty bucket has been found. */ |
| 355 | if (action == ENTER) { |
| 356 | /* |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 357 | * If table is full and another entry should be |
| 358 | * entered return with error. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 359 | */ |
| 360 | if (htab->filled == htab->size) { |
| 361 | __set_errno(ENOMEM); |
| 362 | *retval = NULL; |
| 363 | return 0; |
| 364 | } |
| 365 | |
| 366 | /* |
| 367 | * Create new entry; |
| 368 | * create copies of item.key and item.data |
| 369 | */ |
Peter Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 370 | if (first_deleted) |
| 371 | idx = first_deleted; |
| 372 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 373 | htab->table[idx].used = hval; |
| 374 | htab->table[idx].entry.key = strdup(item.key); |
| 375 | htab->table[idx].entry.data = strdup(item.data); |
| 376 | if (!htab->table[idx].entry.key || |
| 377 | !htab->table[idx].entry.data) { |
| 378 | __set_errno(ENOMEM); |
| 379 | *retval = NULL; |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | ++htab->filled; |
| 384 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 385 | /* This is a new entry, so look up a possible callback */ |
| 386 | env_callback_init(&htab->table[idx].entry); |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 387 | /* Also look for flags */ |
| 388 | env_flags_init(&htab->table[idx].entry); |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 389 | |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 390 | /* check for permission */ |
| 391 | if (htab->change_ok != NULL && htab->change_ok( |
| 392 | &htab->table[idx].entry, item.data, env_op_create, flag)) { |
| 393 | debug("change_ok() rejected setting variable " |
| 394 | "%s, skipping it!\n", item.key); |
| 395 | _hdelete(item.key, htab, &htab->table[idx].entry, idx); |
| 396 | __set_errno(EPERM); |
| 397 | *retval = NULL; |
| 398 | return 0; |
| 399 | } |
| 400 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 401 | /* If there is a callback, call it */ |
| 402 | if (htab->table[idx].entry.callback && |
| 403 | htab->table[idx].entry.callback(item.key, item.data, |
| 404 | env_op_create, flag)) { |
| 405 | debug("callback() rejected setting variable " |
| 406 | "%s, skipping it!\n", item.key); |
| 407 | _hdelete(item.key, htab, &htab->table[idx].entry, idx); |
| 408 | __set_errno(EINVAL); |
| 409 | *retval = NULL; |
| 410 | return 0; |
| 411 | } |
| 412 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 413 | /* return new entry */ |
| 414 | *retval = &htab->table[idx].entry; |
| 415 | return 1; |
| 416 | } |
| 417 | |
| 418 | __set_errno(ESRCH); |
| 419 | *retval = NULL; |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | |
| 424 | /* |
| 425 | * hdelete() |
| 426 | */ |
| 427 | |
| 428 | /* |
| 429 | * The standard implementation of hsearch(3) does not provide any way |
| 430 | * to delete any entries from the hash table. We extend the code to |
| 431 | * do that. |
| 432 | */ |
| 433 | |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 434 | static void _hdelete(const char *key, struct hsearch_data *htab, ENTRY *ep, |
| 435 | int idx) |
| 436 | { |
| 437 | /* free used ENTRY */ |
| 438 | debug("hdelete: DELETING key \"%s\"\n", key); |
| 439 | free((void *)ep->key); |
| 440 | free(ep->data); |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 441 | ep->callback = NULL; |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 442 | ep->flags = 0; |
Roman Kapl | 9dfdbd9 | 2019-01-30 11:39:54 +0100 | [diff] [blame] | 443 | htab->table[idx].used = USED_DELETED; |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 444 | |
| 445 | --htab->filled; |
| 446 | } |
| 447 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 448 | int hdelete_r(const char *key, struct hsearch_data *htab, int flag) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 449 | { |
| 450 | ENTRY e, *ep; |
| 451 | int idx; |
| 452 | |
| 453 | debug("hdelete: DELETE key \"%s\"\n", key); |
| 454 | |
| 455 | e.key = (char *)key; |
| 456 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 457 | idx = hsearch_r(e, FIND, &ep, htab, 0); |
| 458 | if (idx == 0) { |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 459 | __set_errno(ESRCH); |
| 460 | return 0; /* not found */ |
| 461 | } |
| 462 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 463 | /* Check for permission */ |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 464 | if (htab->change_ok != NULL && |
| 465 | htab->change_ok(ep, NULL, env_op_delete, flag)) { |
| 466 | debug("change_ok() rejected deleting variable " |
| 467 | "%s, skipping it!\n", key); |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 468 | __set_errno(EPERM); |
| 469 | return 0; |
| 470 | } |
| 471 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 472 | /* If there is a callback, call it */ |
| 473 | if (htab->table[idx].entry.callback && |
| 474 | htab->table[idx].entry.callback(key, NULL, env_op_delete, flag)) { |
| 475 | debug("callback() rejected deleting variable " |
| 476 | "%s, skipping it!\n", key); |
| 477 | __set_errno(EINVAL); |
| 478 | return 0; |
| 479 | } |
| 480 | |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 481 | _hdelete(key, htab, ep, idx); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 482 | |
| 483 | return 1; |
| 484 | } |
| 485 | |
B, Ravi | d2d9bdf | 2016-09-28 14:46:18 +0530 | [diff] [blame] | 486 | #if !(defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_SAVEENV)) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 487 | /* |
| 488 | * hexport() |
| 489 | */ |
| 490 | |
| 491 | /* |
| 492 | * Export the data stored in the hash table in linearized form. |
| 493 | * |
| 494 | * Entries are exported as "name=value" strings, separated by an |
| 495 | * arbitrary (non-NUL, of course) separator character. This allows to |
| 496 | * use this function both when formatting the U-Boot environment for |
| 497 | * external storage (using '\0' as separator), but also when using it |
| 498 | * for the "printenv" command to print all variables, simply by using |
| 499 | * as '\n" as separator. This can also be used for new features like |
| 500 | * exporting the environment data as text file, including the option |
| 501 | * for later re-import. |
| 502 | * |
| 503 | * The entries in the result list will be sorted by ascending key |
| 504 | * values. |
| 505 | * |
| 506 | * If the separator character is different from NUL, then any |
| 507 | * separator characters and backslash characters in the values will |
Robert P. J. Day | fc0b594 | 2016-09-07 14:27:59 -0400 | [diff] [blame] | 508 | * be escaped by a preceding backslash in output. This is needed for |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 509 | * example to enable multi-line values, especially when the output |
| 510 | * shall later be parsed (for example, for re-import). |
| 511 | * |
| 512 | * There are several options how the result buffer is handled: |
| 513 | * |
| 514 | * *resp size |
| 515 | * ----------- |
| 516 | * NULL 0 A string of sufficient length will be allocated. |
| 517 | * NULL >0 A string of the size given will be |
| 518 | * allocated. An error will be returned if the size is |
| 519 | * not sufficient. Any unused bytes in the string will |
| 520 | * be '\0'-padded. |
| 521 | * !NULL 0 The user-supplied buffer will be used. No length |
| 522 | * checking will be performed, i. e. it is assumed that |
| 523 | * the buffer size will always be big enough. DANGEROUS. |
| 524 | * !NULL >0 The user-supplied buffer will be used. An error will |
| 525 | * be returned if the size is not sufficient. Any unused |
| 526 | * bytes in the string will be '\0'-padded. |
| 527 | */ |
| 528 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 529 | static int cmpkey(const void *p1, const void *p2) |
| 530 | { |
| 531 | ENTRY *e1 = *(ENTRY **) p1; |
| 532 | ENTRY *e2 = *(ENTRY **) p2; |
| 533 | |
| 534 | return (strcmp(e1->key, e2->key)); |
| 535 | } |
| 536 | |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 537 | static int match_string(int flag, const char *str, const char *pat, void *priv) |
Wolfgang Denk | 5a31ea0 | 2013-03-23 23:50:29 +0000 | [diff] [blame] | 538 | { |
| 539 | switch (flag & H_MATCH_METHOD) { |
| 540 | case H_MATCH_IDENT: |
| 541 | if (strcmp(str, pat) == 0) |
| 542 | return 1; |
| 543 | break; |
| 544 | case H_MATCH_SUBSTR: |
| 545 | if (strstr(str, pat)) |
| 546 | return 1; |
| 547 | break; |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 548 | #ifdef CONFIG_REGEX |
| 549 | case H_MATCH_REGEX: |
| 550 | { |
| 551 | struct slre *slrep = (struct slre *)priv; |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 552 | |
Heinrich Schuchardt | 320194a | 2019-01-23 08:17:02 +0100 | [diff] [blame] | 553 | if (slre_match(slrep, str, strlen(str), NULL)) |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 554 | return 1; |
| 555 | } |
| 556 | break; |
| 557 | #endif |
Wolfgang Denk | 5a31ea0 | 2013-03-23 23:50:29 +0000 | [diff] [blame] | 558 | default: |
| 559 | printf("## ERROR: unsupported match method: 0x%02x\n", |
| 560 | flag & H_MATCH_METHOD); |
| 561 | break; |
| 562 | } |
| 563 | return 0; |
| 564 | } |
| 565 | |
| 566 | static int match_entry(ENTRY *ep, int flag, |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 567 | int argc, char * const argv[]) |
| 568 | { |
| 569 | int arg; |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 570 | void *priv = NULL; |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 571 | |
Pierre Aubert | 9a83233 | 2013-10-08 14:20:27 +0200 | [diff] [blame] | 572 | for (arg = 0; arg < argc; ++arg) { |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 573 | #ifdef CONFIG_REGEX |
| 574 | struct slre slre; |
| 575 | |
| 576 | if (slre_compile(&slre, argv[arg]) == 0) { |
| 577 | printf("Error compiling regex: %s\n", slre.err_str); |
| 578 | return 0; |
| 579 | } |
| 580 | |
| 581 | priv = (void *)&slre; |
| 582 | #endif |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 583 | if (flag & H_MATCH_KEY) { |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 584 | if (match_string(flag, ep->key, argv[arg], priv)) |
Wolfgang Denk | 5a31ea0 | 2013-03-23 23:50:29 +0000 | [diff] [blame] | 585 | return 1; |
| 586 | } |
| 587 | if (flag & H_MATCH_DATA) { |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 588 | if (match_string(flag, ep->data, argv[arg], priv)) |
Wolfgang Denk | 5a31ea0 | 2013-03-23 23:50:29 +0000 | [diff] [blame] | 589 | return 1; |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 590 | } |
| 591 | } |
| 592 | return 0; |
| 593 | } |
| 594 | |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 595 | ssize_t hexport_r(struct hsearch_data *htab, const char sep, int flag, |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 596 | char **resp, size_t size, |
| 597 | int argc, char * const argv[]) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 598 | { |
| 599 | ENTRY *list[htab->size]; |
| 600 | char *res, *p; |
| 601 | size_t totlen; |
| 602 | int i, n; |
| 603 | |
| 604 | /* Test for correct arguments. */ |
| 605 | if ((resp == NULL) || (htab == NULL)) { |
| 606 | __set_errno(EINVAL); |
| 607 | return (-1); |
| 608 | } |
| 609 | |
Simon Glass | c55d02b | 2016-07-22 09:22:48 -0600 | [diff] [blame] | 610 | debug("EXPORT table = %p, htab.size = %d, htab.filled = %d, size = %lu\n", |
| 611 | htab, htab->size, htab->filled, (ulong)size); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 612 | /* |
| 613 | * Pass 1: |
| 614 | * search used entries, |
| 615 | * save addresses and compute total length |
| 616 | */ |
| 617 | for (i = 1, n = 0, totlen = 0; i <= htab->size; ++i) { |
| 618 | |
Peter Barada | c81c122 | 2011-03-21 19:05:20 -0400 | [diff] [blame] | 619 | if (htab->table[i].used > 0) { |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 620 | ENTRY *ep = &htab->table[i].entry; |
Wolfgang Denk | 5a31ea0 | 2013-03-23 23:50:29 +0000 | [diff] [blame] | 621 | int found = match_entry(ep, flag, argc, argv); |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 622 | |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 623 | if ((argc > 0) && (found == 0)) |
| 624 | continue; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 625 | |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 626 | if ((flag & H_HIDE_DOT) && ep->key[0] == '.') |
| 627 | continue; |
| 628 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 629 | list[n++] = ep; |
| 630 | |
Zubair Lutfullah Kakakhel | f1b20ac | 2018-07-17 19:25:38 +0100 | [diff] [blame] | 631 | totlen += strlen(ep->key); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 632 | |
| 633 | if (sep == '\0') { |
| 634 | totlen += strlen(ep->data); |
| 635 | } else { /* check if escapes are needed */ |
| 636 | char *s = ep->data; |
| 637 | |
| 638 | while (*s) { |
| 639 | ++totlen; |
| 640 | /* add room for needed escape chars */ |
| 641 | if ((*s == sep) || (*s == '\\')) |
| 642 | ++totlen; |
| 643 | ++s; |
| 644 | } |
| 645 | } |
| 646 | totlen += 2; /* for '=' and 'sep' char */ |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | #ifdef DEBUG |
| 651 | /* Pass 1a: print unsorted list */ |
| 652 | printf("Unsorted: n=%d\n", n); |
| 653 | for (i = 0; i < n; ++i) { |
| 654 | printf("\t%3d: %p ==> %-10s => %s\n", |
| 655 | i, list[i], list[i]->key, list[i]->data); |
| 656 | } |
| 657 | #endif |
| 658 | |
| 659 | /* Sort list by keys */ |
| 660 | qsort(list, n, sizeof(ENTRY *), cmpkey); |
| 661 | |
| 662 | /* Check if the user supplied buffer size is sufficient */ |
| 663 | if (size) { |
| 664 | if (size < totlen + 1) { /* provided buffer too small */ |
Simon Glass | c55d02b | 2016-07-22 09:22:48 -0600 | [diff] [blame] | 665 | printf("Env export buffer too small: %lu, but need %lu\n", |
| 666 | (ulong)size, (ulong)totlen + 1); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 667 | __set_errno(ENOMEM); |
| 668 | return (-1); |
| 669 | } |
| 670 | } else { |
AKASHI Takahiro | 4bca324 | 2018-12-14 18:42:51 +0900 | [diff] [blame] | 671 | size = totlen + 1; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | /* Check if the user provided a buffer */ |
| 675 | if (*resp) { |
| 676 | /* yes; clear it */ |
| 677 | res = *resp; |
| 678 | memset(res, '\0', size); |
| 679 | } else { |
| 680 | /* no, allocate and clear one */ |
| 681 | *resp = res = calloc(1, size); |
| 682 | if (res == NULL) { |
| 683 | __set_errno(ENOMEM); |
| 684 | return (-1); |
| 685 | } |
| 686 | } |
| 687 | /* |
| 688 | * Pass 2: |
| 689 | * export sorted list of result data |
| 690 | */ |
| 691 | for (i = 0, p = res; i < n; ++i) { |
Wolfgang Denk | 84b5e80 | 2011-07-29 14:42:18 +0200 | [diff] [blame] | 692 | const char *s; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 693 | |
| 694 | s = list[i]->key; |
| 695 | while (*s) |
| 696 | *p++ = *s++; |
| 697 | *p++ = '='; |
| 698 | |
| 699 | s = list[i]->data; |
| 700 | |
| 701 | while (*s) { |
| 702 | if ((*s == sep) || (*s == '\\')) |
| 703 | *p++ = '\\'; /* escape */ |
| 704 | *p++ = *s++; |
| 705 | } |
| 706 | *p++ = sep; |
| 707 | } |
| 708 | *p = '\0'; /* terminate result */ |
| 709 | |
| 710 | return size; |
| 711 | } |
Ilya Yanok | 7ac2fe2 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 712 | #endif |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 713 | |
| 714 | |
| 715 | /* |
| 716 | * himport() |
| 717 | */ |
| 718 | |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 719 | /* |
| 720 | * Check whether variable 'name' is amongst vars[], |
| 721 | * and remove all instances by setting the pointer to NULL |
| 722 | */ |
| 723 | static int drop_var_from_set(const char *name, int nvars, char * vars[]) |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 724 | { |
| 725 | int i = 0; |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 726 | int res = 0; |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 727 | |
| 728 | /* No variables specified means process all of them */ |
| 729 | if (nvars == 0) |
| 730 | return 1; |
| 731 | |
| 732 | for (i = 0; i < nvars; i++) { |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 733 | if (vars[i] == NULL) |
| 734 | continue; |
| 735 | /* If we found it, delete all of them */ |
| 736 | if (!strcmp(name, vars[i])) { |
| 737 | vars[i] = NULL; |
| 738 | res = 1; |
| 739 | } |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 740 | } |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 741 | if (!res) |
| 742 | debug("Skipping non-listed variable %s\n", name); |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 743 | |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 744 | return res; |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 747 | /* |
| 748 | * Import linearized data into hash table. |
| 749 | * |
| 750 | * This is the inverse function to hexport(): it takes a linear list |
| 751 | * of "name=value" pairs and creates hash table entries from it. |
| 752 | * |
| 753 | * Entries without "value", i. e. consisting of only "name" or |
| 754 | * "name=", will cause this entry to be deleted from the hash table. |
| 755 | * |
| 756 | * The "flag" argument can be used to control the behaviour: when the |
| 757 | * H_NOCLEAR bit is set, then an existing hash table will kept, i. e. |
Quentin Schulz | d9fc907 | 2018-07-09 19:16:28 +0200 | [diff] [blame] | 758 | * new data will be added to an existing hash table; otherwise, if no |
| 759 | * vars are passed, old data will be discarded and a new hash table |
| 760 | * will be created. If vars are passed, passed vars that are not in |
| 761 | * the linear list of "name=value" pairs will be removed from the |
| 762 | * current hash table. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 763 | * |
| 764 | * The separator character for the "name=value" pairs can be selected, |
| 765 | * so we both support importing from externally stored environment |
| 766 | * data (separated by NUL characters) and from plain text files |
| 767 | * (entries separated by newline characters). |
| 768 | * |
| 769 | * To allow for nicely formatted text input, leading white space |
| 770 | * (sequences of SPACE and TAB chars) is ignored, and entries starting |
| 771 | * (after removal of any leading white space) with a '#' character are |
| 772 | * considered comments and ignored. |
| 773 | * |
| 774 | * [NOTE: this means that a variable name cannot start with a '#' |
| 775 | * character.] |
| 776 | * |
| 777 | * When using a non-NUL separator character, backslash is used as |
| 778 | * escape character in the value part, allowing for example for |
| 779 | * multi-line values. |
| 780 | * |
| 781 | * In theory, arbitrary separator characters can be used, but only |
| 782 | * '\0' and '\n' have really been tested. |
| 783 | */ |
| 784 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 785 | int himport_r(struct hsearch_data *htab, |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 786 | const char *env, size_t size, const char sep, int flag, |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 787 | int crlf_is_lf, int nvars, char * const vars[]) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 788 | { |
| 789 | char *data, *sp, *dp, *name, *value; |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 790 | char *localvars[nvars]; |
| 791 | int i; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 792 | |
| 793 | /* Test for correct arguments. */ |
| 794 | if (htab == NULL) { |
| 795 | __set_errno(EINVAL); |
| 796 | return 0; |
| 797 | } |
| 798 | |
| 799 | /* we allocate new space to make sure we can write to the array */ |
Lukasz Majewski | 817e48d | 2015-09-14 00:57:03 +0200 | [diff] [blame] | 800 | if ((data = malloc(size + 1)) == NULL) { |
Simon Glass | c55d02b | 2016-07-22 09:22:48 -0600 | [diff] [blame] | 801 | debug("himport_r: can't malloc %lu bytes\n", (ulong)size + 1); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 802 | __set_errno(ENOMEM); |
| 803 | return 0; |
| 804 | } |
| 805 | memcpy(data, env, size); |
Lukasz Majewski | 817e48d | 2015-09-14 00:57:03 +0200 | [diff] [blame] | 806 | data[size] = '\0'; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 807 | dp = data; |
| 808 | |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 809 | /* make a local copy of the list of variables */ |
| 810 | if (nvars) |
| 811 | memcpy(localvars, vars, sizeof(vars[0]) * nvars); |
| 812 | |
Quentin Schulz | d9fc907 | 2018-07-09 19:16:28 +0200 | [diff] [blame] | 813 | if ((flag & H_NOCLEAR) == 0 && !nvars) { |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 814 | /* Destroy old hash table if one exists */ |
| 815 | debug("Destroy Hash Table: %p table = %p\n", htab, |
| 816 | htab->table); |
| 817 | if (htab->table) |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 818 | hdestroy_r(htab); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | /* |
| 822 | * Create new hash table (if needed). The computation of the hash |
| 823 | * table size is based on heuristics: in a sample of some 70+ |
| 824 | * existing systems we found an average size of 39+ bytes per entry |
| 825 | * in the environment (for the whole key=value pair). Assuming a |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 826 | * size of 8 per entry (= safety factor of ~5) should provide enough |
| 827 | * safety margin for any existing environment definitions and still |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 828 | * allow for more than enough dynamic additions. Note that the |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 829 | * "size" argument is supposed to give the maximum environment size |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 830 | * (CONFIG_ENV_SIZE). This heuristics will result in |
| 831 | * unreasonably large numbers (and thus memory footprint) for |
| 832 | * big flash environments (>8,000 entries for 64 KB |
Robert P. J. Day | 62a3b7d | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 833 | * environment size), so we clip it to a reasonable value. |
Andreas Bießmann | fc5fc76 | 2010-10-01 22:51:02 +0200 | [diff] [blame] | 834 | * On the other hand we need to add some more entries for free |
| 835 | * space when importing very small buffers. Both boundaries can |
| 836 | * be overwritten in the board config file if needed. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 837 | */ |
| 838 | |
| 839 | if (!htab->table) { |
Andreas Bießmann | fc5fc76 | 2010-10-01 22:51:02 +0200 | [diff] [blame] | 840 | int nent = CONFIG_ENV_MIN_ENTRIES + size / 8; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 841 | |
| 842 | if (nent > CONFIG_ENV_MAX_ENTRIES) |
| 843 | nent = CONFIG_ENV_MAX_ENTRIES; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 844 | |
| 845 | debug("Create Hash Table: N=%d\n", nent); |
| 846 | |
| 847 | if (hcreate_r(nent, htab) == 0) { |
| 848 | free(data); |
| 849 | return 0; |
| 850 | } |
| 851 | } |
| 852 | |
Lukasz Majewski | 0226d87 | 2015-09-14 00:57:04 +0200 | [diff] [blame] | 853 | if (!size) { |
| 854 | free(data); |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 855 | return 1; /* everything OK */ |
Lukasz Majewski | 0226d87 | 2015-09-14 00:57:04 +0200 | [diff] [blame] | 856 | } |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 857 | if(crlf_is_lf) { |
| 858 | /* Remove Carriage Returns in front of Line Feeds */ |
| 859 | unsigned ignored_crs = 0; |
| 860 | for(;dp < data + size && *dp; ++dp) { |
| 861 | if(*dp == '\r' && |
| 862 | dp < data + size - 1 && *(dp+1) == '\n') |
| 863 | ++ignored_crs; |
| 864 | else |
| 865 | *(dp-ignored_crs) = *dp; |
| 866 | } |
| 867 | size -= ignored_crs; |
| 868 | dp = data; |
| 869 | } |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 870 | /* Parse environment; allow for '\0' and 'sep' as separators */ |
| 871 | do { |
| 872 | ENTRY e, *rv; |
| 873 | |
| 874 | /* skip leading white space */ |
Jason Hobbs | 4d91a6e | 2011-08-23 11:06:54 +0000 | [diff] [blame] | 875 | while (isblank(*dp)) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 876 | ++dp; |
| 877 | |
| 878 | /* skip comment lines */ |
| 879 | if (*dp == '#') { |
| 880 | while (*dp && (*dp != sep)) |
| 881 | ++dp; |
| 882 | ++dp; |
| 883 | continue; |
| 884 | } |
| 885 | |
| 886 | /* parse name */ |
| 887 | for (name = dp; *dp != '=' && *dp && *dp != sep; ++dp) |
| 888 | ; |
| 889 | |
| 890 | /* deal with "name" and "name=" entries (delete var) */ |
| 891 | if (*dp == '\0' || *(dp + 1) == '\0' || |
| 892 | *dp == sep || *(dp + 1) == sep) { |
| 893 | if (*dp == '=') |
| 894 | *dp++ = '\0'; |
| 895 | *dp++ = '\0'; /* terminate name */ |
| 896 | |
| 897 | debug("DELETE CANDIDATE: \"%s\"\n", name); |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 898 | if (!drop_var_from_set(name, nvars, localvars)) |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 899 | continue; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 900 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 901 | if (hdelete_r(name, htab, flag) == 0) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 902 | debug("DELETE ERROR ##############################\n"); |
| 903 | |
| 904 | continue; |
| 905 | } |
| 906 | *dp++ = '\0'; /* terminate name */ |
| 907 | |
| 908 | /* parse value; deal with escapes */ |
| 909 | for (value = sp = dp; *dp && (*dp != sep); ++dp) { |
| 910 | if ((*dp == '\\') && *(dp + 1)) |
| 911 | ++dp; |
| 912 | *sp++ = *dp; |
| 913 | } |
| 914 | *sp++ = '\0'; /* terminate value */ |
| 915 | ++dp; |
| 916 | |
Lucian Cojocar | e4fdcad | 2013-04-28 11:31:57 +0000 | [diff] [blame] | 917 | if (*name == 0) { |
| 918 | debug("INSERT: unable to use an empty key\n"); |
| 919 | __set_errno(EINVAL); |
Lukasz Majewski | 0226d87 | 2015-09-14 00:57:04 +0200 | [diff] [blame] | 920 | free(data); |
Lucian Cojocar | e4fdcad | 2013-04-28 11:31:57 +0000 | [diff] [blame] | 921 | return 0; |
| 922 | } |
| 923 | |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 924 | /* Skip variables which are not supposed to be processed */ |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 925 | if (!drop_var_from_set(name, nvars, localvars)) |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 926 | continue; |
| 927 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 928 | /* enter into hash table */ |
| 929 | e.key = name; |
| 930 | e.data = value; |
| 931 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 932 | hsearch_r(e, ENTER, &rv, htab, flag); |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 933 | if (rv == NULL) |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 934 | printf("himport_r: can't insert \"%s=%s\" into hash table\n", |
| 935 | name, value); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 936 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 937 | debug("INSERT: table %p, filled %d/%d rv %p ==> name=\"%s\" value=\"%s\"\n", |
| 938 | htab, htab->filled, htab->size, |
| 939 | rv, name, value); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 940 | } while ((dp < data + size) && *dp); /* size check needed for text */ |
| 941 | /* without '\0' termination */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 942 | debug("INSERT: free(data = %p)\n", data); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 943 | free(data); |
| 944 | |
Quentin Schulz | d9fc907 | 2018-07-09 19:16:28 +0200 | [diff] [blame] | 945 | if (flag & H_NOCLEAR) |
| 946 | goto end; |
| 947 | |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 948 | /* process variables which were not considered */ |
| 949 | for (i = 0; i < nvars; i++) { |
| 950 | if (localvars[i] == NULL) |
| 951 | continue; |
| 952 | /* |
| 953 | * All variables which were not deleted from the variable list |
| 954 | * were not present in the imported env |
| 955 | * This could mean two things: |
| 956 | * a) if the variable was present in current env, we delete it |
| 957 | * b) if the variable was not present in current env, we notify |
| 958 | * it might be a typo |
| 959 | */ |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 960 | if (hdelete_r(localvars[i], htab, flag) == 0) |
Gerlando Falauto | d5370fe | 2012-08-26 21:53:00 +0000 | [diff] [blame] | 961 | printf("WARNING: '%s' neither in running nor in imported env!\n", localvars[i]); |
| 962 | else |
| 963 | printf("WARNING: '%s' not in imported env, deleting it!\n", localvars[i]); |
| 964 | } |
| 965 | |
Quentin Schulz | d9fc907 | 2018-07-09 19:16:28 +0200 | [diff] [blame] | 966 | end: |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 967 | debug("INSERT: done\n"); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 968 | return 1; /* everything OK */ |
| 969 | } |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 970 | |
| 971 | /* |
| 972 | * hwalk_r() |
| 973 | */ |
| 974 | |
| 975 | /* |
| 976 | * Walk all of the entries in the hash, calling the callback for each one. |
| 977 | * this allows some generic operation to be performed on each element. |
| 978 | */ |
| 979 | int hwalk_r(struct hsearch_data *htab, int (*callback)(ENTRY *)) |
| 980 | { |
| 981 | int i; |
| 982 | int retval; |
| 983 | |
| 984 | for (i = 1; i <= htab->size; ++i) { |
| 985 | if (htab->table[i].used > 0) { |
| 986 | retval = callback(&htab->table[i].entry); |
| 987 | if (retval) |
| 988 | return retval; |
| 989 | } |
| 990 | } |
| 991 | |
| 992 | return 0; |
| 993 | } |