2 * (C) Copyright 2000-2008
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
9 * Command line user interface to firmware (=U-Boot) environment.
12 * fw_printenv [ -a key ] [[ -n name ] | [ name ... ]]
13 * - prints the value of a single environment variable
14 * "name", the ``name=value'' pairs of one or more
15 * environment variables "name", or the whole
16 * environment if no names are specified.
17 * fw_setenv [ -a key ] name [ value ... ]
18 * - If a name without any values is given, the variable
19 * with this name is deleted from the environment;
20 * otherwise, all "value" arguments are concatenated,
21 * separated by single blank characters, and the
22 * resulting string is assigned to the environment
25 * If '-a key' is specified, the env block is encrypted with AES 128 CBC.
26 * The 'key' argument is in the format of 32 hexadecimal numbers (16 bytes
27 * of AES key), eg. '-a aabbccddeeff00112233445566778899'.
39 #define CMD_PRINTENV "fw_printenv"
40 #define CMD_SETENV "fw_setenv"
41 static int do_printenv;
43 static struct option long_options[] = {
44 {"aes", required_argument, NULL, 'a'},
45 {"config", required_argument, NULL, 'c'},
46 {"help", no_argument, NULL, 'h'},
47 {"script", required_argument, NULL, 's'},
48 {"noheader", required_argument, NULL, 'n'},
52 static struct env_opts env_opts;
58 static char *script_file;
60 void usage_printenv(void)
64 "Usage: fw_printenv [OPTIONS]... [VARIABLE]...\n"
65 "Print variables from U-Boot environment\n"
67 " -h, --help print this help.\n"
69 " -a, --aes aes key to access environment\n"
72 " -c, --config configuration file, default:" CONFIG_FILE "\n"
74 " -n, --noheader do not repeat variable name in output\n"
78 void usage_setenv(void)
81 "Usage: fw_setenv [OPTIONS]... [VARIABLE]...\n"
82 "Modify variables in U-Boot environment\n"
84 " -h, --help print this help.\n"
86 " -a, --aes aes key to access environment\n"
89 " -c, --config configuration file, default:" CONFIG_FILE "\n"
91 " -s, --script batch mode to minimize writes\n"
94 " fw_setenv foo bar set variable foo equal bar\n"
95 " fw_setenv foo clear variable foo\n"
96 " fw_setenv --script file run batch script\n"
99 " key [space] value\n"
100 " lines starting with '#' are treated as comment\n"
102 " A variable without value will be deleted. Any number of spaces are\n"
103 " allowed between key and value. Space inside of the value is treated\n"
104 " as part of the value itself.\n"
108 " kernel_addr 400000\n"
109 " foo empty empty empty empty empty empty\n"
114 static void parse_common_args(int argc, char *argv[])
119 env_opts.config_file = CONFIG_FILE;
122 while ((c = getopt_long(argc, argv, ":a:c:h", long_options, NULL)) !=
126 if (parse_aes_key(optarg, env_opts.aes_key)) {
127 fprintf(stderr, "AES key parse error\n");
130 env_opts.aes_flag = 1;
134 env_opts.config_file = optarg;
138 do_printenv ? usage_printenv() : usage_setenv();
142 /* ignore unknown options */
147 /* Reset getopt for the next pass. */
152 int parse_printenv_args(int argc, char *argv[])
156 parse_common_args(argc, argv);
158 while ((c = getopt_long(argc, argv, "a:c:ns:h", long_options, NULL)) !=
167 /* ignore common options */
178 int parse_setenv_args(int argc, char *argv[])
182 parse_common_args(argc, argv);
184 while ((c = getopt_long(argc, argv, "a:c:ns:h", long_options, NULL)) !=
188 script_file = optarg;
193 /* ignore common options */
204 int main(int argc, char *argv[])
206 const char *lockname = "/var/lock/" CMD_PRINTENV ".lock";
208 int retval = EXIT_SUCCESS;
212 if (strrchr(_cmdname, '/') != NULL)
213 _cmdname = strrchr(_cmdname, '/') + 1;
215 if (strcmp(_cmdname, CMD_PRINTENV) == 0) {
217 } else if (strcmp(_cmdname, CMD_SETENV) == 0) {
221 "Identity crisis - may be called as `%s' or as `%s' but not as `%s'\n",
222 CMD_PRINTENV, CMD_SETENV, _cmdname);
227 if (parse_printenv_args(argc, argv))
230 if (parse_setenv_args(argc, argv))
234 /* shift parsed flags, jump to non-option arguments */
238 lockfd = open(lockname, O_WRONLY | O_CREAT | O_TRUNC, 0666);
240 fprintf(stderr, "Error opening lock file %s\n", lockname);
244 if (-1 == flock(lockfd, LOCK_EX)) {
245 fprintf(stderr, "Error locking file %s\n", lockname);
251 if (fw_printenv(argc, argv, noheader, &env_opts) != 0)
252 retval = EXIT_FAILURE;
255 if (fw_setenv(argc, argv, &env_opts) != 0)
256 retval = EXIT_FAILURE;
258 if (fw_parse_script(script_file, &env_opts) != 0)
259 retval = EXIT_FAILURE;
263 flock(lockfd, LOCK_UN);