blob: 8e920e869455fea83679181dd7b039a30c76ed20 [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * opts.c
Stefan Reinauer6540ae52007-07-12 16:35:42 +00003 *****************************************************************************
4 * Copyright (C) 2002-2005 The Regents of the University of California.
5 * Produced at the Lawrence Livermore National Laboratory.
6 * Written by Dave Peterson <dsp@llnl.gov> <dave_peterson@pobox.com>.
7 * UCRL-CODE-2003-012
8 * All rights reserved.
9 *
Uwe Hermann6e565942008-03-01 19:06:32 +000010 * This file is part of nvramtool, a utility for reading/writing coreboot
Stefan Reinauerf527e702008-01-18 15:33:49 +000011 * parameters and displaying information from the coreboot table.
Uwe Hermann6e565942008-03-01 19:06:32 +000012 * For details, see http://coreboot.org/nvramtool.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000013 *
14 * Please also read the file DISCLAIMER which is included in this software
15 * distribution.
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License (as published by the
19 * Free Software Foundation) version 2, dated June 1991.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
24 * conditions of the GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License along
27 * with this program; if not, write to the Free Software Foundation, Inc.,
Stefan Reinauerac7a2d22009-09-23 21:53:25 +000028 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000029\*****************************************************************************/
30
31#include "common.h"
32#include "opts.h"
33
Uwe Hermann6e565942008-03-01 19:06:32 +000034nvramtool_op_info_t nvramtool_op;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000035
Uwe Hermann6e565942008-03-01 19:06:32 +000036nvramtool_op_modifier_info_t nvramtool_op_modifiers[NVRAMTOOL_NUM_OP_MODIFIERS];
Stefan Reinauer6540ae52007-07-12 16:35:42 +000037
Stefan Reinauer90b96b62010-01-13 21:00:23 +000038static char *handle_optional_arg(int argc, char *argv[]);
39static void register_op(int *op_found, nvramtool_op_t op, char op_param[]);
40static void register_op_modifier(nvramtool_op_modifier_t mod, char mod_param[]);
41static void resolve_op_modifiers(void);
42static void sanity_check_args(void);
Stefan Reinauer6540ae52007-07-12 16:35:42 +000043
Vikram Narayanana8111cf2012-04-14 15:25:13 +053044static const char getopt_string[] = "-ab:B:c::C:dD:e:hH:iL:l::np:r:tvw:xX:y:Y";
Stefan Reinauer6540ae52007-07-12 16:35:42 +000045
46/****************************************************************************
Uwe Hermann6e565942008-03-01 19:06:32 +000047 * parse_nvramtool_args
Stefan Reinauer6540ae52007-07-12 16:35:42 +000048 *
49 * Parse command line arguments.
50 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000051void parse_nvramtool_args(int argc, char *argv[])
52{
53 nvramtool_op_modifier_info_t *mod_info;
54 int i, op_found;
55 char c;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000056
Stefan Reinauer90b96b62010-01-13 21:00:23 +000057 for (i = 0, mod_info = nvramtool_op_modifiers;
58 i < NVRAMTOOL_NUM_OP_MODIFIERS; i++, mod_info++) {
59 mod_info->found = FALSE;
60 mod_info->found_seq = 0;
61 mod_info->param = NULL;
62 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +000063
Stefan Reinauer90b96b62010-01-13 21:00:23 +000064 op_found = FALSE;
65 opterr = 0;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000066
Stefan Reinauer90b96b62010-01-13 21:00:23 +000067 do {
68 switch (c = getopt(argc, argv, getopt_string)) {
69 case 'a':
70 register_op(&op_found,
71 NVRAMTOOL_OP_CMOS_SHOW_ALL_PARAMS, NULL);
72 break;
73 case 'b':
74 register_op(&op_found, NVRAMTOOL_OP_WRITE_CMOS_DUMP,
75 optarg);
76 break;
77 case 'B':
78 register_op(&op_found, NVRAMTOOL_OP_READ_CMOS_DUMP,
79 optarg);
80 break;
81 case 'c':
82 register_op(&op_found, NVRAMTOOL_OP_CMOS_CHECKSUM,
83 handle_optional_arg(argc, argv));
84 break;
Patrick Georgi269e9322011-01-21 07:24:08 +000085 case 'C':
86 register_op_modifier(NVRAMTOOL_MOD_USE_CBFS_FILE,
87 optarg);
88 break;
Stefan Reinauer90b96b62010-01-13 21:00:23 +000089 case 'd':
90 register_op(&op_found, NVRAMTOOL_OP_LBTABLE_DUMP, NULL);
91 break;
Patrick Georgi202be7b2011-01-21 07:29:40 +000092 case 'D':
93 register_op_modifier(NVRAMTOOL_MOD_USE_CMOS_FILE,
94 optarg);
95 break;
Stefan Reinauer90b96b62010-01-13 21:00:23 +000096 case 'e':
97 register_op(&op_found, NVRAMTOOL_OP_SHOW_PARAM_VALUES,
98 optarg);
99 break;
100 case 'h':
101 register_op(&op_found, NVRAMTOOL_OP_SHOW_USAGE, NULL);
102 break;
Vikram Narayanana8111cf2012-04-14 15:25:13 +0530103 case 'H':
104 register_op(&op_found, NVRAMTOOL_OP_WRITE_HEADER_FILE, optarg);
105 break;
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000106 case 'i':
107 register_op(&op_found,
108 NVRAMTOOL_OP_CMOS_SET_PARAMS_STDIN, NULL);
109 break;
110 case 'l':
111 register_op(&op_found, NVRAMTOOL_OP_LBTABLE_SHOW_INFO,
112 handle_optional_arg(argc, argv));
113 break;
Vikram Narayanana8111cf2012-04-14 15:25:13 +0530114 case 'L':
115 register_op(&op_found, NVRAMTOOL_OP_WRITE_BINARY_FILE,
116 optarg);
117 break;
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000118 case 'n':
119 register_op_modifier(NVRAMTOOL_MOD_SHOW_VALUE_ONLY,
120 NULL);
121 break;
122 case 'p':
123 register_op(&op_found,
124 NVRAMTOOL_OP_CMOS_SET_PARAMS_FILE, optarg);
125 break;
126 case 'r':
127 register_op(&op_found, NVRAMTOOL_OP_CMOS_SHOW_ONE_PARAM,
128 optarg);
129 break;
130 case 't':
131 register_op_modifier(NVRAMTOOL_MOD_USE_CMOS_OPT_TABLE,
132 NULL);
133 break;
134 case 'v':
135 register_op(&op_found, NVRAMTOOL_OP_SHOW_VERSION, NULL);
136 break;
137 case 'w':
138 register_op(&op_found, NVRAMTOOL_OP_CMOS_SET_ONE_PARAM,
139 optarg);
140 break;
141 case 'x':
142 register_op(&op_found, NVRAMTOOL_OP_SHOW_CMOS_HEX_DUMP,
143 NULL);
144 break;
145 case 'X':
146 register_op(&op_found, NVRAMTOOL_OP_SHOW_CMOS_DUMPFILE,
147 optarg);
148 break;
149 case 'y':
150 register_op_modifier(NVRAMTOOL_MOD_USE_CMOS_LAYOUT_FILE,
151 optarg);
152 break;
153 case 'Y':
154 register_op(&op_found, NVRAMTOOL_OP_SHOW_LAYOUT, NULL);
155 break;
156 case -1: /* no more command line args */
157 break;
158 case '?': /* unknown option found */
159 case 1: /* nonoption command line arg found */
160 default:
161 usage(stderr);
162 break;
163 }
164 } while (c != -1);
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000165
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000166 if (!op_found)
167 usage(stderr);
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000168
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000169 resolve_op_modifiers();
170 sanity_check_args();
171}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000172
173/****************************************************************************
174 * handle_optional_arg
175 *
176 * Handle a command line option with an optional argument.
177 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000178static char *handle_optional_arg(int argc, char *argv[])
179{
180 char *arg;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000181
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000182 if (optarg != NULL) {
183 /* optional arg is present and arg was specified as
184 * "-zarg" (with no whitespace between "z" and "arg"),
185 * where -z is the option and "arg" is the value of the
186 * optional arg
187 */
188 return optarg;
189 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000190
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000191 if ((argv[optind] == NULL) || (argv[optind][0] == '-'))
192 return NULL;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000193
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000194 arg = argv[optind]; /* optional arg is present */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000195
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000196 /* This call to getopt yields the optional arg we just found,
197 * which we want to skip.
198 */
199 getopt(argc, argv, getopt_string);
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000200
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000201 return arg;
202}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000203
204/****************************************************************************
205 * register_op
206 *
207 * Store the user's selection of which operation this program should perform.
208 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000209static void register_op(int *op_found, nvramtool_op_t op, char op_param[])
210{
211 if (*op_found && (op != nvramtool_op.op))
212 usage(stderr);
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000213
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000214 *op_found = TRUE;
215 nvramtool_op.op = op;
216 nvramtool_op.param = op_param;
217}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000218
219/****************************************************************************
220 * register_op_modifier
221 *
222 * Store information regarding an optional argument specified in addition to
223 * the user's selection of which operation this program should perform.
224 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000225static void register_op_modifier(nvramtool_op_modifier_t mod, char mod_param[])
226{
227 static int found_seq = 0;
228 nvramtool_op_modifier_info_t *mod_info;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000229
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000230 mod_info = &nvramtool_op_modifiers[mod];
231 mod_info->found = TRUE;
232 mod_info->found_seq = ++found_seq;
233 mod_info->param = mod_param;
234}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000235
236/****************************************************************************
237 * resolve_op_modifiers
238 *
239 * If the user specifies multiple arguments that conflict with each other,
240 * the last specified argument overrides previous conflicting arguments.
241 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000242static void resolve_op_modifiers(void)
243{
244 if (nvramtool_op_modifiers[NVRAMTOOL_MOD_USE_CMOS_LAYOUT_FILE].found &&
245 nvramtool_op_modifiers[NVRAMTOOL_MOD_USE_CMOS_OPT_TABLE].found) {
246 if (nvramtool_op_modifiers[NVRAMTOOL_MOD_USE_CMOS_LAYOUT_FILE].found_seq >
247 nvramtool_op_modifiers[NVRAMTOOL_MOD_USE_CMOS_OPT_TABLE].found_seq)
248 nvramtool_op_modifiers
249 [NVRAMTOOL_MOD_USE_CMOS_OPT_TABLE].found = FALSE;
250 else
251 nvramtool_op_modifiers
252 [NVRAMTOOL_MOD_USE_CMOS_LAYOUT_FILE].found = FALSE;
253 }
254}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000255
256/****************************************************************************
257 * sanity_check_args
258 *
259 * Perform sanity checking on command line arguments.
260 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000261static void sanity_check_args(void)
262{
263 if ((nvramtool_op_modifiers[NVRAMTOOL_MOD_SHOW_VALUE_ONLY].found) &&
264 (nvramtool_op.op != NVRAMTOOL_OP_CMOS_SHOW_ONE_PARAM))
265 usage(stderr);
266}