blob: 2476043b0e38abdb94662f34a45a31a3f1e4cbfb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Joe Hershberger71497d02012-12-11 22:16:31 -06002/*
3 * (C) Copyright 2012
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
Joe Hershberger71497d02012-12-11 22:16:31 -06005 */
6
7#ifndef __ENV_FLAGS_H__
8#define __ENV_FLAGS_H__
9
Tom Rinidec7ea02024-05-20 13:35:03 -060010#include <config.h>
11
Joe Hershberger71497d02012-12-11 22:16:31 -060012enum env_flags_vartype {
13 env_flags_vartype_string,
14 env_flags_vartype_decimal,
15 env_flags_vartype_hex,
16 env_flags_vartype_bool,
Jan Kiszka59b328d2023-02-03 13:22:52 +010017#ifdef CONFIG_NET
Joe Hershberger71497d02012-12-11 22:16:31 -060018 env_flags_vartype_ipaddr,
19 env_flags_vartype_macaddr,
20#endif
21 env_flags_vartype_end
22};
23
Joe Hershberger6fe26c92012-12-11 22:16:34 -060024enum env_flags_varaccess {
25 env_flags_varaccess_any,
26 env_flags_varaccess_readonly,
27 env_flags_varaccess_writeonce,
28 env_flags_varaccess_changedefault,
Marek Vasut803549f2020-07-07 20:51:39 +020029#ifdef CONFIG_ENV_WRITEABLE_LIST
30 env_flags_varaccess_writeable,
31#endif
Joe Hershberger6fe26c92012-12-11 22:16:34 -060032 env_flags_varaccess_end
33};
34
Joe Hershberger71497d02012-12-11 22:16:31 -060035#define ENV_FLAGS_VAR ".flags"
36#define ENV_FLAGS_ATTR_MAX_LEN 2
37#define ENV_FLAGS_VARTYPE_LOC 0
Joe Hershberger6fe26c92012-12-11 22:16:34 -060038#define ENV_FLAGS_VARACCESS_LOC 1
Joe Hershberger71497d02012-12-11 22:16:31 -060039
Tom Rini0297e5f2022-12-04 10:03:40 -050040#ifndef CFG_ENV_FLAGS_LIST_STATIC
41#define CFG_ENV_FLAGS_LIST_STATIC ""
Joe Hershberger71497d02012-12-11 22:16:31 -060042#endif
43
Heinrich Schuchardtfe04d062019-09-02 10:10:34 +020044#ifdef CONFIG_NET
Joe Hershbergere84ca292015-05-20 14:27:22 -050045#ifdef CONFIG_REGEX
Simon Goldschmidt7da02292018-11-22 17:06:39 +010046#define ETHADDR_WILDCARD "\\d*"
Joe Hershbergere84ca292015-05-20 14:27:22 -050047#else
48#define ETHADDR_WILDCARD
49#endif
Joe Hershberger2289ec12012-12-11 22:16:37 -060050#ifdef CONFIG_ENV_OVERWRITE
Joe Hershbergere84ca292015-05-20 14:27:22 -050051#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:ma,"
Joe Hershberger2289ec12012-12-11 22:16:37 -060052#else
53#ifdef CONFIG_OVERWRITE_ETHADDR_ONCE
Joe Hershbergere84ca292015-05-20 14:27:22 -050054#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:mc,"
Joe Hershberger2289ec12012-12-11 22:16:37 -060055#else
Joe Hershbergere84ca292015-05-20 14:27:22 -050056#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:mo,"
Joe Hershberger2289ec12012-12-11 22:16:37 -060057#endif
58#endif
Joe Hershbergerd26195e72015-05-20 14:27:24 -050059#define NET_FLAGS \
60 "ipaddr:i," \
61 "gatewayip:i," \
62 "netmask:i," \
63 "serverip:i," \
Stefan Agner18c067f2016-04-13 16:38:01 -070064 "nvlan:d," \
65 "vlan:d," \
Joe Hershbergerd26195e72015-05-20 14:27:24 -050066 "dnsip:i,"
Joe Hershberger2289ec12012-12-11 22:16:37 -060067#else
Joe Hershbergerd26195e72015-05-20 14:27:24 -050068#define ETHADDR_FLAGS
69#define NET_FLAGS
Joe Hershberger2289ec12012-12-11 22:16:37 -060070#endif
71
Viacheslav Mitrofanovdf264cf2022-12-02 12:18:00 +030072#ifdef CONFIG_IPV6
73#define NET6_FLAGS \
74 "ip6addr:s," \
75 "serverip6:s," \
Sean Edmond65815e72023-02-15 20:38:36 -080076 "gatewayip6:s,"
Viacheslav Mitrofanovdf264cf2022-12-02 12:18:00 +030077#else
78#define NET6_FLAGS
79#endif
80
Joe Hershberger2289ec12012-12-11 22:16:37 -060081#ifndef CONFIG_ENV_OVERWRITE
82#define SERIAL_FLAGS "serial#:so,"
83#else
84#define SERIAL_FLAGS ""
85#endif
86
Joe Hershberger71497d02012-12-11 22:16:31 -060087#define ENV_FLAGS_LIST_STATIC \
Joe Hershberger2289ec12012-12-11 22:16:37 -060088 ETHADDR_FLAGS \
Joe Hershbergerd26195e72015-05-20 14:27:24 -050089 NET_FLAGS \
Viacheslav Mitrofanovdf264cf2022-12-02 12:18:00 +030090 NET6_FLAGS \
Joe Hershberger2289ec12012-12-11 22:16:37 -060091 SERIAL_FLAGS \
Tom Rini0297e5f2022-12-04 10:03:40 -050092 CFG_ENV_FLAGS_LIST_STATIC
Joe Hershberger71497d02012-12-11 22:16:31 -060093
Joe Hershbergera2d62b72012-12-11 22:16:33 -060094#ifdef CONFIG_CMD_ENV_FLAGS
95/*
96 * Print the whole list of available type flags.
97 */
98void env_flags_print_vartypes(void);
99/*
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600100 * Print the whole list of available access flags.
101 */
102void env_flags_print_varaccess(void);
103/*
Joe Hershbergera2d62b72012-12-11 22:16:33 -0600104 * Return the name of the type.
105 */
106const char *env_flags_get_vartype_name(enum env_flags_vartype type);
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600107/*
108 * Return the name of the access.
109 */
110const char *env_flags_get_varaccess_name(enum env_flags_varaccess access);
Joe Hershbergera2d62b72012-12-11 22:16:33 -0600111#endif
112
Joe Hershberger71497d02012-12-11 22:16:31 -0600113/*
114 * Parse the flags string from a .flags attribute list into the vartype enum.
115 */
116enum env_flags_vartype env_flags_parse_vartype(const char *flags);
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600117/*
118 * Parse the flags string from a .flags attribute list into the varaccess enum.
119 */
120enum env_flags_varaccess env_flags_parse_varaccess(const char *flags);
121/*
122 * Parse the binary flags from a hash table entry into the varaccess enum.
123 */
124enum env_flags_varaccess env_flags_parse_varaccess_from_binflags(int binflags);
Joe Hershberger71497d02012-12-11 22:16:31 -0600125
Jan Kiszka59b328d2023-02-03 13:22:52 +0100126#ifdef CONFIG_NET
Codrin Ciubotariu265c0d32015-09-09 18:00:51 +0300127/*
128 * Check if a string has the format of an Ethernet MAC address
129 */
130int eth_validate_ethaddr_str(const char *addr);
131#endif
132
Joe Hershbergerdd7750a2012-12-11 22:16:32 -0600133#ifdef USE_HOSTCC
134/*
135 * Look up the type of a variable directly from the .flags var.
136 */
137enum env_flags_vartype env_flags_get_type(const char *name);
138/*
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600139 * Look up the access of a variable directly from the .flags var.
140 */
141enum env_flags_varaccess env_flags_get_access(const char *name);
142/*
Joe Hershbergerdd7750a2012-12-11 22:16:32 -0600143 * Validate the newval for its type to conform with the requirements defined by
144 * its flags (directly looked at the .flags var).
145 */
146int env_flags_validate_type(const char *name, const char *newval);
147/*
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600148 * Validate the newval for its access to conform with the requirements defined
149 * by its flags (directly looked at the .flags var).
150 */
151int env_flags_validate_access(const char *name, int check_mask);
152/*
153 * Validate that the proposed access to variable "name" is valid according to
154 * the defined flags for that variable, if any.
155 */
156int env_flags_validate_varaccess(const char *name, int check_mask);
157/*
Joe Hershbergerdd7750a2012-12-11 22:16:32 -0600158 * Validate the parameters passed to "env set" for type compliance
159 */
Andreas Fenkart4e336ee2015-12-09 13:13:21 +0100160int env_flags_validate_env_set_params(char *name, char *const val[], int count);
Joe Hershbergerdd7750a2012-12-11 22:16:32 -0600161
162#else /* !USE_HOSTCC */
163
Simon Glass5e6201b2019-08-01 09:46:51 -0600164#include <env.h>
Joe Hershberger71497d02012-12-11 22:16:31 -0600165#include <search.h>
166
167/*
168 * When adding a variable to the environment, initialize the flags for that
169 * variable.
170 */
Simon Glass1a236862019-08-02 09:44:18 -0600171void env_flags_init(struct env_entry *var_entry);
Joe Hershberger71497d02012-12-11 22:16:31 -0600172
173/*
174 * Validate the newval for to conform with the requirements defined by its flags
175 */
Simon Glass1a236862019-08-02 09:44:18 -0600176int env_flags_validate(const struct env_entry *item, const char *newval,
177 enum env_op op, int flag);
Joe Hershberger71497d02012-12-11 22:16:31 -0600178
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600179#endif /* USE_HOSTCC */
180
Joe Hershberger71497d02012-12-11 22:16:31 -0600181/*
182 * These are the binary flags used in the environment entry->flags variable to
183 * decribe properties of veriables in the table
184 */
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600185#define ENV_FLAGS_VARTYPE_BIN_MASK 0x00000007
Joe Hershberger71497d02012-12-11 22:16:31 -0600186/* The actual variable type values use the enum value (within the mask) */
Joe Hershberger6fe26c92012-12-11 22:16:34 -0600187#define ENV_FLAGS_VARACCESS_PREVENT_DELETE 0x00000008
188#define ENV_FLAGS_VARACCESS_PREVENT_CREATE 0x00000010
189#define ENV_FLAGS_VARACCESS_PREVENT_OVERWR 0x00000020
190#define ENV_FLAGS_VARACCESS_PREVENT_NONDEF_OVERWR 0x00000040
Marek Vasut803549f2020-07-07 20:51:39 +0200191#define ENV_FLAGS_VARACCESS_WRITEABLE 0x00000080
192#define ENV_FLAGS_VARACCESS_BIN_MASK 0x000000f8
Joe Hershbergerdd7750a2012-12-11 22:16:32 -0600193
Joe Hershberger71497d02012-12-11 22:16:31 -0600194#endif /* __ENV_FLAGS_H__ */