blob: f9fb29fdf9984d6d48d92f652f87a68c46fa58be [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: LGPL-2.1+ */
Wolfgang Denka6826fb2010-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 Denka6826fb2010-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 Denkea009d42013-03-23 23:50:28 +000011 * Copyright (C) 2010-2013 Wolfgang Denk <wd@denx.de>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020012 */
13
Robert P. J. Day36266432016-09-09 06:22:10 -040014#ifndef _SEARCH_H_
15#define _SEARCH_H_
Wolfgang Denka6826fb2010-06-20 13:17:12 +020016
Simon Glass9fb625c2019-08-01 09:46:51 -060017#include <env.h>
Wolfgang Denka6826fb2010-06-20 13:17:12 +020018#include <stddef.h>
19
20#define __set_errno(val) do { errno = val; } while (0)
21
Robert P. J. Day36266432016-09-09 06:22:10 -040022/* Action which shall be performed in the call to hsearch. */
Wolfgang Denka6826fb2010-06-20 13:17:12 +020023typedef enum {
24 FIND,
25 ENTER
26} ACTION;
27
28typedef struct entry {
Wolfgang Denk84b5e802011-07-29 14:42:18 +020029 const char *key;
Wolfgang Denka6826fb2010-06-20 13:17:12 +020030 char *data;
Joe Hershberger170ab112012-12-11 22:16:24 -060031 int (*callback)(const char *name, const char *value, enum env_op op,
32 int flags);
Joe Hershberger25980902012-12-11 22:16:31 -060033 int flags;
Wolfgang Denka6826fb2010-06-20 13:17:12 +020034} ENTRY;
35
36/* Opaque type for internal use. */
37struct _ENTRY;
38
39/*
40 * Family of hash table handling functions. The functions also
41 * have reentrant counterparts ending with _r. The non-reentrant
Robert P. J. Day36266432016-09-09 06:22:10 -040042 * functions all work on a single internal hash table.
Wolfgang Denka6826fb2010-06-20 13:17:12 +020043 */
44
45/* Data type for reentrant functions. */
46struct hsearch_data {
47 struct _ENTRY *table;
48 unsigned int size;
49 unsigned int filled;
Gerlando Falautoc5983592012-08-24 00:11:39 +000050/*
51 * Callback function which will check whether the given change for variable
Robert P. J. Day36266432016-09-09 06:22:10 -040052 * "__item" to "newval" may be applied or not, and possibly apply such change.
Gerlando Falautoc5983592012-08-24 00:11:39 +000053 * 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. Day36266432016-09-09 06:22:10 -040055 * Must return 0 for approval, 1 for denial.
Gerlando Falautoc5983592012-08-24 00:11:39 +000056 */
Joe Hershberger7afcf3a2012-12-11 22:16:21 -060057 int (*change_ok)(const ENTRY *__item, const char *newval, enum env_op,
58 int flag);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020059};
60
Robert P. J. Day36266432016-09-09 06:22:10 -040061/* Create a new hash table which will contain at most "__nel" elements. */
Wolfgang Denka6826fb2010-06-20 13:17:12 +020062extern int hcreate_r(size_t __nel, struct hsearch_data *__htab);
63
Robert P. J. Day36266432016-09-09 06:22:10 -040064/* Destroy current internal hash table. */
Joe Hershbergerc4e00572012-12-11 22:16:19 -060065extern void hdestroy_r(struct hsearch_data *__htab);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020066
67/*
Robert P. J. Day36266432016-09-09 06:22:10 -040068 * Search for entry matching __item.key in internal hash table. If
Wolfgang Denka6826fb2010-06-20 13:17:12 +020069 * ACTION is `FIND' return found entry or signal error by returning
70 * NULL. If ACTION is `ENTER' replace existing data (if any) with
Robert P. J. Day36266432016-09-09 06:22:10 -040071 * __item.data.
Wolfgang Denka6826fb2010-06-20 13:17:12 +020072 * */
Wolfgang Denka6826fb2010-06-20 13:17:12 +020073extern int hsearch_r(ENTRY __item, ACTION __action, ENTRY ** __retval,
Joe Hershbergerc4e00572012-12-11 22:16:19 -060074 struct hsearch_data *__htab, int __flag);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020075
Mike Frysinger560d4242010-12-17 16:51:59 -050076/*
Robert P. J. Day36266432016-09-09 06:22:10 -040077 * Search for an entry matching "__match". Otherwise, Same semantics
Mike Frysinger560d4242010-12-17 16:51:59 -050078 * as hsearch_r().
79 */
80extern int hmatch_r(const char *__match, int __last_idx, ENTRY ** __retval,
81 struct hsearch_data *__htab);
82
Robert P. J. Day36266432016-09-09 06:22:10 -040083/* Search and delete entry matching "__key" in internal hash table. */
Gerlando Falauto152874b2012-08-24 00:11:40 +000084extern int hdelete_r(const char *__key, struct hsearch_data *__htab,
Joe Hershbergerc4e00572012-12-11 22:16:19 -060085 int __flag);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020086
Wolfgang Denka6826fb2010-06-20 13:17:12 +020087extern ssize_t hexport_r(struct hsearch_data *__htab,
Joe Hershbergerbe112352012-12-11 22:16:23 -060088 const char __sep, int __flag, char **__resp, size_t __size,
Wolfgang Denk37f2fe72011-11-06 22:49:44 +010089 int argc, char * const argv[]);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020090
Gerlando Falauto348b1f12012-08-24 00:11:38 +000091/*
92 * nvars: length of vars array
93 * vars: array of strings (variable names) to import (nvars == 0 means all)
94 */
Wolfgang Denka6826fb2010-06-20 13:17:12 +020095extern int himport_r(struct hsearch_data *__htab,
96 const char *__env, size_t __size, const char __sep,
Alexander Hollerecd14462014-07-14 17:49:55 +020097 int __flag, int __crlf_is_lf, int nvars,
98 char * const vars[]);
Wolfgang Denka6826fb2010-06-20 13:17:12 +020099
Joe Hershberger170ab112012-12-11 22:16:24 -0600100/* Walk the whole table calling the callback on each element */
101extern int hwalk_r(struct hsearch_data *__htab, int (*callback)(ENTRY *));
102
Joe Hershbergerbe112352012-12-11 22:16:23 -0600103/* Flags for himport_r(), hexport_r(), hdelete_r(), and hsearch_r() */
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600104#define H_NOCLEAR (1 << 0) /* do not clear hash table before importing */
105#define H_FORCE (1 << 1) /* overwrite read-only/write-once variables */
106#define H_INTERACTIVE (1 << 2) /* indicate that an import is user directed */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600107#define H_HIDE_DOT (1 << 3) /* don't print env vars that begin with '.' */
Wolfgang Denkea009d42013-03-23 23:50:28 +0000108#define H_MATCH_KEY (1 << 4) /* search/grep key = variable names */
109#define H_MATCH_DATA (1 << 5) /* search/grep data = variable values */
110#define H_MATCH_BOTH (H_MATCH_KEY | H_MATCH_DATA) /* search/grep both */
111#define H_MATCH_IDENT (1 << 6) /* search for indentical strings */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000112#define H_MATCH_SUBSTR (1 << 7) /* search for substring matches */
113#define H_MATCH_REGEX (1 << 8) /* search for regular expression matches */
114#define H_MATCH_METHOD (H_MATCH_IDENT | H_MATCH_SUBSTR | H_MATCH_REGEX)
Simon Glass382bee52017-08-03 12:22:09 -0600115#define H_PROGRAMMATIC (1 << 9) /* indicate that an import is from env_set() */
Joe Hershberger94b467b2015-05-20 14:27:21 -0500116#define H_ORIGIN_FLAGS (H_INTERACTIVE | H_PROGRAMMATIC)
Wolfgang Denka6826fb2010-06-20 13:17:12 +0200117
Robert P. J. Day36266432016-09-09 06:22:10 -0400118#endif /* _SEARCH_H_ */