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 | * Declarations for System V style searching functions. |
| 4 | * Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. |
| 5 | * This file is part of the GNU C Library. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * Based on code from uClibc-0.9.30.3 |
| 10 | * Extensions for use within U-Boot |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 11 | * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 12 | */ |
| 13 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 14 | #ifndef _SEARCH_H_ |
| 15 | #define _SEARCH_H_ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 16 | |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 17 | #include <env.h> |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 18 | #include <stddef.h> |
| 19 | |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 20 | #define set_errno(val) do { errno = val; } while (0) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 21 | |
Simon Glass | 3f0d680 | 2019-08-01 09:47:09 -0600 | [diff] [blame] | 22 | /* enum env_action: action which shall be performed in the call to hsearch */ |
| 23 | enum env_action { |
| 24 | ENV_FIND, |
| 25 | ENV_ENTER, |
| 26 | }; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 27 | |
Simon Glass | dd2408c | 2019-08-02 09:44:18 -0600 | [diff] [blame] | 28 | /** struct env_entry - An entry in the environment hashtable */ |
| 29 | struct env_entry { |
Wolfgang Denk | 84b5e80 | 2011-07-29 14:42:18 +0200 | [diff] [blame] | 30 | const char *key; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 31 | char *data; |
Rasmus Villemoes | 080019b | 2020-02-27 13:56:12 +0000 | [diff] [blame] | 32 | #ifndef CONFIG_SPL_BUILD |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 33 | int (*callback)(const char *name, const char *value, enum env_op op, |
| 34 | int flags); |
Rasmus Villemoes | 080019b | 2020-02-27 13:56:12 +0000 | [diff] [blame] | 35 | #endif |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 36 | int flags; |
Simon Glass | dd2408c | 2019-08-02 09:44:18 -0600 | [diff] [blame] | 37 | }; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 38 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Family of hash table handling functions. The functions also |
| 41 | * have reentrant counterparts ending with _r. The non-reentrant |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 42 | * functions all work on a single internal hash table. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 43 | */ |
| 44 | |
| 45 | /* Data type for reentrant functions. */ |
| 46 | struct hsearch_data { |
Simon Glass | 25e51e9 | 2019-08-02 09:44:19 -0600 | [diff] [blame] | 47 | struct env_entry_node *table; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 48 | unsigned int size; |
| 49 | unsigned int filled; |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 50 | /* |
| 51 | * Callback function which will check whether the given change for variable |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 52 | * "item" to "newval" may be applied or not, and possibly apply such change. |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 53 | * When (flag & H_FORCE) is set, it shall not print out any error message and |
| 54 | * shall force overwriting of write-once variables. |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 55 | * Must return 0 for approval, 1 for denial. |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 56 | */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 57 | int (*change_ok)(const struct env_entry *item, const char *newval, |
Simon Glass | dd2408c | 2019-08-02 09:44:18 -0600 | [diff] [blame] | 58 | enum env_op, int flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 59 | }; |
| 60 | |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 61 | /* Create a new hash table which will contain at most "nel" elements. */ |
| 62 | int hcreate_r(size_t nel, struct hsearch_data *htab); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 63 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 64 | /* Destroy current internal hash table. */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 65 | void hdestroy_r(struct hsearch_data *htab); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 66 | |
| 67 | /* |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 68 | * Search for entry matching item.key in internal hash table. If |
| 69 | * action is `ENV_FIND' return found entry or signal error by returning |
| 70 | * NULL. If action is `ENV_ENTER' replace existing data (if any) with |
| 71 | * item.data. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 72 | * */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 73 | int hsearch_r(struct env_entry item, enum env_action action, |
| 74 | struct env_entry **retval, struct hsearch_data *htab, int flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 75 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 76 | /* |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 77 | * Search for an entry matching "match". Otherwise, Same semantics |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 78 | * as hsearch_r(). |
| 79 | */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 80 | int hmatch_r(const char *match, int last_idx, struct env_entry **retval, |
| 81 | struct hsearch_data *htab); |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 82 | |
Simon Glass | 96434a7 | 2020-11-05 10:33:37 -0700 | [diff] [blame] | 83 | /** |
| 84 | * hdelete_r() - Search and delete entry in internal hash table |
| 85 | * |
| 86 | * @key: Name of entry to delete |
| 87 | * @htab: Hash table |
| 88 | * @flag: Flags to use (H_...) |
| 89 | * @return 0 on success, -ENOENT if not found, -EPERM if the hash table callback |
| 90 | * rejected changing the variable, -EINVAL if the hash table refused to |
| 91 | * delete the variable |
| 92 | */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 93 | int hdelete_r(const char *key, struct hsearch_data *htab, int flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 94 | |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 95 | ssize_t hexport_r(struct hsearch_data *htab, const char sep, int flag, |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 96 | char **resp, size_t size, int argc, char *const argv[]); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 97 | |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 98 | /* |
| 99 | * nvars: length of vars array |
| 100 | * vars: array of strings (variable names) to import (nvars == 0 means all) |
| 101 | */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 102 | int himport_r(struct hsearch_data *htab, const char *env, size_t size, |
| 103 | const char sep, int flag, int crlf_is_lf, int nvars, |
| 104 | char * const vars[]); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 105 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 106 | /* Walk the whole table calling the callback on each element */ |
Simon Glass | cb2ba9d | 2019-08-01 09:47:10 -0600 | [diff] [blame] | 107 | int hwalk_r(struct hsearch_data *htab, |
| 108 | int (*callback)(struct env_entry *entry)); |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 109 | |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 110 | /* Flags for himport_r(), hexport_r(), hdelete_r(), and hsearch_r() */ |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 111 | #define H_NOCLEAR (1 << 0) /* do not clear hash table before importing */ |
| 112 | #define H_FORCE (1 << 1) /* overwrite read-only/write-once variables */ |
| 113 | #define H_INTERACTIVE (1 << 2) /* indicate that an import is user directed */ |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 114 | #define H_HIDE_DOT (1 << 3) /* don't print env vars that begin with '.' */ |
Wolfgang Denk | ea009d4 | 2013-03-23 23:50:28 +0000 | [diff] [blame] | 115 | #define H_MATCH_KEY (1 << 4) /* search/grep key = variable names */ |
| 116 | #define H_MATCH_DATA (1 << 5) /* search/grep data = variable values */ |
| 117 | #define H_MATCH_BOTH (H_MATCH_KEY | H_MATCH_DATA) /* search/grep both */ |
| 118 | #define H_MATCH_IDENT (1 << 6) /* search for indentical strings */ |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 119 | #define H_MATCH_SUBSTR (1 << 7) /* search for substring matches */ |
| 120 | #define H_MATCH_REGEX (1 << 8) /* search for regular expression matches */ |
| 121 | #define H_MATCH_METHOD (H_MATCH_IDENT | H_MATCH_SUBSTR | H_MATCH_REGEX) |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 122 | #define H_PROGRAMMATIC (1 << 9) /* indicate that an import is from env_set() */ |
Joe Hershberger | 94b467b | 2015-05-20 14:27:21 -0500 | [diff] [blame] | 123 | #define H_ORIGIN_FLAGS (H_INTERACTIVE | H_PROGRAMMATIC) |
Marek Vasut | ef9bef2 | 2020-07-07 20:51:34 +0200 | [diff] [blame] | 124 | #define H_DEFAULT (1 << 10) /* indicate that an import is default env */ |
Marek Vasut | 890feec | 2020-07-07 20:51:35 +0200 | [diff] [blame] | 125 | #define H_EXTERNAL (1 << 11) /* indicate that an import is external env */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 126 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 127 | #endif /* _SEARCH_H_ */ |