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 | |
| 17 | #include <stddef.h> |
| 18 | |
| 19 | #define __set_errno(val) do { errno = val; } while (0) |
| 20 | |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 21 | enum env_op { |
| 22 | env_op_create, |
| 23 | env_op_delete, |
| 24 | env_op_overwrite, |
| 25 | }; |
| 26 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 27 | /* Action which shall be performed in the call to hsearch. */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 28 | typedef enum { |
| 29 | FIND, |
| 30 | ENTER |
| 31 | } ACTION; |
| 32 | |
| 33 | typedef struct entry { |
Wolfgang Denk | 84b5e80 | 2011-07-29 14:42:18 +0200 | [diff] [blame] | 34 | const char *key; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 35 | char *data; |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 36 | int (*callback)(const char *name, const char *value, enum env_op op, |
| 37 | int flags); |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 38 | int flags; |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 39 | } ENTRY; |
| 40 | |
| 41 | /* Opaque type for internal use. */ |
| 42 | struct _ENTRY; |
| 43 | |
| 44 | /* |
| 45 | * Family of hash table handling functions. The functions also |
| 46 | * have reentrant counterparts ending with _r. The non-reentrant |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 47 | * functions all work on a single internal hash table. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 48 | */ |
| 49 | |
| 50 | /* Data type for reentrant functions. */ |
| 51 | struct hsearch_data { |
| 52 | struct _ENTRY *table; |
| 53 | unsigned int size; |
| 54 | unsigned int filled; |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 55 | /* |
| 56 | * Callback function which will check whether the given change for variable |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 57 | * "__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] | 58 | * When (flag & H_FORCE) is set, it shall not print out any error message and |
| 59 | * shall force overwriting of write-once variables. |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 60 | * Must return 0 for approval, 1 for denial. |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 61 | */ |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 62 | int (*change_ok)(const ENTRY *__item, const char *newval, enum env_op, |
| 63 | int flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 66 | /* Create a new hash table which will contain at most "__nel" elements. */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 67 | extern int hcreate_r(size_t __nel, struct hsearch_data *__htab); |
| 68 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 69 | /* Destroy current internal hash table. */ |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 70 | extern void hdestroy_r(struct hsearch_data *__htab); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 71 | |
| 72 | /* |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 73 | * Search for entry matching __item.key in internal hash table. If |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 74 | * ACTION is `FIND' return found entry or signal error by returning |
| 75 | * NULL. If ACTION is `ENTER' replace existing data (if any) with |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 76 | * __item.data. |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 77 | * */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 78 | extern int hsearch_r(ENTRY __item, ACTION __action, ENTRY ** __retval, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 79 | struct hsearch_data *__htab, int __flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 80 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 81 | /* |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 82 | * Search for an entry matching "__match". Otherwise, Same semantics |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 83 | * as hsearch_r(). |
| 84 | */ |
| 85 | extern int hmatch_r(const char *__match, int __last_idx, ENTRY ** __retval, |
| 86 | struct hsearch_data *__htab); |
| 87 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 88 | /* Search and delete entry matching "__key" in internal hash table. */ |
Gerlando Falauto | 152874b | 2012-08-24 00:11:40 +0000 | [diff] [blame] | 89 | extern int hdelete_r(const char *__key, struct hsearch_data *__htab, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 90 | int __flag); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 91 | |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 92 | extern ssize_t hexport_r(struct hsearch_data *__htab, |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 93 | const char __sep, int __flag, char **__resp, size_t __size, |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 94 | int argc, char * const argv[]); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 95 | |
Gerlando Falauto | 348b1f1 | 2012-08-24 00:11:38 +0000 | [diff] [blame] | 96 | /* |
| 97 | * nvars: length of vars array |
| 98 | * vars: array of strings (variable names) to import (nvars == 0 means all) |
| 99 | */ |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 100 | extern int himport_r(struct hsearch_data *__htab, |
| 101 | const char *__env, size_t __size, const char __sep, |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 102 | int __flag, int __crlf_is_lf, int nvars, |
| 103 | char * const vars[]); |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 104 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 105 | /* Walk the whole table calling the callback on each element */ |
| 106 | extern int hwalk_r(struct hsearch_data *__htab, int (*callback)(ENTRY *)); |
| 107 | |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 108 | /* Flags for himport_r(), hexport_r(), hdelete_r(), and hsearch_r() */ |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 109 | #define H_NOCLEAR (1 << 0) /* do not clear hash table before importing */ |
| 110 | #define H_FORCE (1 << 1) /* overwrite read-only/write-once variables */ |
| 111 | #define H_INTERACTIVE (1 << 2) /* indicate that an import is user directed */ |
Joe Hershberger | be11235 | 2012-12-11 22:16:23 -0600 | [diff] [blame] | 112 | #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] | 113 | #define H_MATCH_KEY (1 << 4) /* search/grep key = variable names */ |
| 114 | #define H_MATCH_DATA (1 << 5) /* search/grep data = variable values */ |
| 115 | #define H_MATCH_BOTH (H_MATCH_KEY | H_MATCH_DATA) /* search/grep both */ |
| 116 | #define H_MATCH_IDENT (1 << 6) /* search for indentical strings */ |
Wolfgang Denk | be29df6 | 2013-03-23 23:50:32 +0000 | [diff] [blame] | 117 | #define H_MATCH_SUBSTR (1 << 7) /* search for substring matches */ |
| 118 | #define H_MATCH_REGEX (1 << 8) /* search for regular expression matches */ |
| 119 | #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] | 120 | #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] | 121 | #define H_ORIGIN_FLAGS (H_INTERACTIVE | H_PROGRAMMATIC) |
Wolfgang Denk | a6826fb | 2010-06-20 13:17:12 +0200 | [diff] [blame] | 122 | |
Robert P. J. Day | 3626643 | 2016-09-09 06:22:10 -0400 | [diff] [blame] | 123 | #endif /* _SEARCH_H_ */ |