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"
42 static struct option long_options[] = {
43 {"script", required_argument, NULL, 's'},
44 {"help", no_argument, NULL, 'h'},
48 struct common_args common_args;
49 struct printenv_args printenv_args;
50 struct setenv_args setenv_args;
55 fprintf(stderr, "fw_printenv/fw_setenv, "
56 "a command line interface to U-Boot environment\n\n"
58 "usage:\tfw_printenv [-a key] [-n] [variable name]\n"
59 "\tfw_setenv [-a key] [variable name] [variable value]\n"
61 "usage:\tfw_printenv [-c /my/fw_env.config] [-a key] [-n] [variable name]\n"
62 "\tfw_setenv [-c /my/fw_env.config] [-a key] [variable name] [variable value]\n"
64 "\tfw_setenv -s [ file ]\n"
65 "\tfw_setenv -s - < [ file ]\n\n"
66 "The file passed as argument contains only pairs "
69 "# Any line starting with # is treated as comment\n"
72 "\t kernel_addr 400000\n"
74 "\t var2 The quick brown fox jumps over the "
77 "A variable without value will be dropped. It is possible\n"
78 "to put any number of spaces between the fields, but any\n"
79 "space inside the value is treated as part of the value "
84 int parse_printenv_args(int argc, char *argv[])
89 common_args.config_file = CONFIG_FILE;
92 while ((c = getopt_long (argc, argv, "a:c:ns:h",
93 long_options, NULL)) != EOF) {
96 if (parse_aes_key(optarg, common_args.aes_key)) {
97 fprintf(stderr, "AES key parse error\n");
100 common_args.aes_flag = 1;
104 common_args.config_file = optarg;
108 printenv_args.name_suppress = 1;
123 int parse_setenv_args(int argc, char *argv[])
128 common_args.config_file = CONFIG_FILE;
131 while ((c = getopt_long (argc, argv, "a:c:ns:h",
132 long_options, NULL)) != EOF) {
135 if (parse_aes_key(optarg, common_args.aes_key)) {
136 fprintf(stderr, "AES key parse error\n");
139 common_args.aes_flag = 1;
143 common_args.config_file = optarg;
147 setenv_args.script_file = optarg;
162 int main(int argc, char *argv[])
164 char *cmdname = *argv;
165 const char *lockname = "/var/lock/" CMD_PRINTENV ".lock";
167 int retval = EXIT_SUCCESS;
169 if (strrchr(cmdname, '/') != NULL)
170 cmdname = strrchr(cmdname, '/') + 1;
172 if (strcmp(cmdname, CMD_PRINTENV) == 0) {
173 if (parse_printenv_args(argc, argv))
175 } else if (strcmp(cmdname, CMD_SETENV) == 0) {
176 if (parse_setenv_args(argc, argv))
180 "Identity crisis - may be called as `%s' or as `%s' but not as `%s'\n",
181 CMD_PRINTENV, CMD_SETENV, cmdname);
185 lockfd = open(lockname, O_WRONLY | O_CREAT | O_TRUNC, 0666);
187 fprintf(stderr, "Error opening lock file %s\n", lockname);
191 if (-1 == flock(lockfd, LOCK_EX)) {
192 fprintf(stderr, "Error locking file %s\n", lockname);
197 if (strcmp(cmdname, CMD_PRINTENV) == 0) {
198 if (fw_printenv(argc, argv) != 0)
199 retval = EXIT_FAILURE;
200 } else if (strcmp(cmdname, CMD_SETENV) == 0) {
201 if (!setenv_args.script_file) {
202 if (fw_setenv(argc, argv) != 0)
203 retval = EXIT_FAILURE;
205 if (fw_parse_script(setenv_args.script_file) != 0)
206 retval = EXIT_FAILURE;
210 flock(lockfd, LOCK_UN);