blob: 81745a917d6a2787767cf6dc419bdccc5a08df3b [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 * 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 Denkc9ae9862010-06-20 13:17:12 +02006 */
7
8/*
9 * Based on code from uClibc-0.9.30.3
10 * Extensions for use within U-Boot
Wolfgang Denk565af272013-03-23 23:50:28 +000011 * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020012 */
13
Robert P. J. Daya3297a62016-09-09 06:22:10 -040014#ifndef _SEARCH_H_
15#define _SEARCH_H_
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020016
Simon Glass5e6201b2019-08-01 09:46:51 -060017#include <env.h>
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020018#include <stddef.h>
19
20#define __set_errno(val) do { errno = val; } while (0)
21
Robert P. J. Daya3297a62016-09-09 06:22:10 -040022/* Action which shall be performed in the call to hsearch. */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020023typedef enum {
24 FIND,
25 ENTER
26} ACTION;
27
Simon Glass1a236862019-08-02 09:44:18 -060028/** struct env_entry - An entry in the environment hashtable */
29struct env_entry {
Wolfgang Denkd67abff2011-07-29 14:42:18 +020030 const char *key;
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020031 char *data;
Joe Hershberger60fd3ad2012-12-11 22:16:24 -060032 int (*callback)(const char *name, const char *value, enum env_op op,
33 int flags);
Joe Hershberger71497d02012-12-11 22:16:31 -060034 int flags;
Simon Glass1a236862019-08-02 09:44:18 -060035};
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020036
37/* Opaque type for internal use. */
38struct _ENTRY;
39
40/*
41 * Family of hash table handling functions. The functions also
42 * have reentrant counterparts ending with _r. The non-reentrant
Robert P. J. Daya3297a62016-09-09 06:22:10 -040043 * functions all work on a single internal hash table.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020044 */
45
46/* Data type for reentrant functions. */
47struct hsearch_data {
48 struct _ENTRY *table;
49 unsigned int size;
50 unsigned int filled;
Gerlando Falautod3925952012-08-24 00:11:39 +000051/*
52 * Callback function which will check whether the given change for variable
Robert P. J. Daya3297a62016-09-09 06:22:10 -040053 * "__item" to "newval" may be applied or not, and possibly apply such change.
Gerlando Falautod3925952012-08-24 00:11:39 +000054 * When (flag & H_FORCE) is set, it shall not print out any error message and
55 * shall force overwriting of write-once variables.
Robert P. J. Daya3297a62016-09-09 06:22:10 -040056 * Must return 0 for approval, 1 for denial.
Gerlando Falautod3925952012-08-24 00:11:39 +000057 */
Simon Glass1a236862019-08-02 09:44:18 -060058 int (*change_ok)(const struct env_entry *__item, const char *newval,
59 enum env_op, int flag);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020060};
61
Robert P. J. Daya3297a62016-09-09 06:22:10 -040062/* Create a new hash table which will contain at most "__nel" elements. */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020063extern int hcreate_r(size_t __nel, struct hsearch_data *__htab);
64
Robert P. J. Daya3297a62016-09-09 06:22:10 -040065/* Destroy current internal hash table. */
Joe Hershbergera46f7702012-12-11 22:16:19 -060066extern void hdestroy_r(struct hsearch_data *__htab);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020067
68/*
Robert P. J. Daya3297a62016-09-09 06:22:10 -040069 * Search for entry matching __item.key in internal hash table. If
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020070 * ACTION is `FIND' return found entry or signal error by returning
71 * NULL. If ACTION is `ENTER' replace existing data (if any) with
Robert P. J. Daya3297a62016-09-09 06:22:10 -040072 * __item.data.
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020073 * */
Simon Glass1a236862019-08-02 09:44:18 -060074extern int hsearch_r(struct env_entry __item, ACTION __action,
75 struct env_entry **__retval, struct hsearch_data *__htab,
76 int __flag);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020077
Mike Frysinger8d882322010-12-17 16:51:59 -050078/*
Robert P. J. Daya3297a62016-09-09 06:22:10 -040079 * Search for an entry matching "__match". Otherwise, Same semantics
Mike Frysinger8d882322010-12-17 16:51:59 -050080 * as hsearch_r().
81 */
Simon Glass1a236862019-08-02 09:44:18 -060082extern int hmatch_r(const char *__match, int __last_idx,
83 struct env_entry **__retval, struct hsearch_data *__htab);
Mike Frysinger8d882322010-12-17 16:51:59 -050084
Robert P. J. Daya3297a62016-09-09 06:22:10 -040085/* Search and delete entry matching "__key" in internal hash table. */
Gerlando Falauto393acf02012-08-24 00:11:40 +000086extern int hdelete_r(const char *__key, struct hsearch_data *__htab,
Joe Hershbergera46f7702012-12-11 22:16:19 -060087 int __flag);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020088
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020089extern ssize_t hexport_r(struct hsearch_data *__htab,
Joe Hershberger79a905e2012-12-11 22:16:23 -060090 const char __sep, int __flag, char **__resp, size_t __size,
Wolfgang Denk1e3cdf32011-11-06 22:49:44 +010091 int argc, char * const argv[]);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020092
Gerlando Falauto9b0e1ff2012-08-24 00:11:38 +000093/*
94 * nvars: length of vars array
95 * vars: array of strings (variable names) to import (nvars == 0 means all)
96 */
Wolfgang Denkc9ae9862010-06-20 13:17:12 +020097extern int himport_r(struct hsearch_data *__htab,
98 const char *__env, size_t __size, const char __sep,
Alexander Holler3e12be72014-07-14 17:49:55 +020099 int __flag, int __crlf_is_lf, int nvars,
100 char * const vars[]);
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200101
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600102/* Walk the whole table calling the callback on each element */
Simon Glass1a236862019-08-02 09:44:18 -0600103extern int hwalk_r(struct hsearch_data *__htab,
104 int (*callback)(struct env_entry *entry));
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600105
Joe Hershberger79a905e2012-12-11 22:16:23 -0600106/* Flags for himport_r(), hexport_r(), hdelete_r(), and hsearch_r() */
Joe Hershbergera46f7702012-12-11 22:16:19 -0600107#define H_NOCLEAR (1 << 0) /* do not clear hash table before importing */
108#define H_FORCE (1 << 1) /* overwrite read-only/write-once variables */
109#define H_INTERACTIVE (1 << 2) /* indicate that an import is user directed */
Joe Hershberger79a905e2012-12-11 22:16:23 -0600110#define H_HIDE_DOT (1 << 3) /* don't print env vars that begin with '.' */
Wolfgang Denk565af272013-03-23 23:50:28 +0000111#define H_MATCH_KEY (1 << 4) /* search/grep key = variable names */
112#define H_MATCH_DATA (1 << 5) /* search/grep data = variable values */
113#define H_MATCH_BOTH (H_MATCH_KEY | H_MATCH_DATA) /* search/grep both */
114#define H_MATCH_IDENT (1 << 6) /* search for indentical strings */
Wolfgang Denkac9c3012013-03-23 23:50:32 +0000115#define H_MATCH_SUBSTR (1 << 7) /* search for substring matches */
116#define H_MATCH_REGEX (1 << 8) /* search for regular expression matches */
117#define H_MATCH_METHOD (H_MATCH_IDENT | H_MATCH_SUBSTR | H_MATCH_REGEX)
Simon Glass6a38e412017-08-03 12:22:09 -0600118#define H_PROGRAMMATIC (1 << 9) /* indicate that an import is from env_set() */
Joe Hershbergerdfc382a2015-05-20 14:27:21 -0500119#define H_ORIGIN_FLAGS (H_INTERACTIVE | H_PROGRAMMATIC)
Wolfgang Denkc9ae9862010-06-20 13:17:12 +0200120
Robert P. J. Daya3297a62016-09-09 06:22:10 -0400121#endif /* _SEARCH_H_ */