123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /*
- * Copyright (C) 2010 Michael Brown <mbrown@fensystems.co.uk>.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
- */
-
- #include <stdint.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
- #include <getopt.h>
- #include <ipxe/settings.h>
- #include <ipxe/command.h>
- #include <ipxe/parseopt.h>
- #include <readline/readline.h>
-
- FILE_LICENCE ( GPL2_OR_LATER );
-
- /** @file
- *
- * Non-volatile option commands
- *
- */
-
- /** "show" options */
- struct show_options {};
-
- /** "show" option list */
- static struct option_descriptor show_opts[] = {};
-
- /** "show" command descriptor */
- static struct command_descriptor show_cmd =
- COMMAND_DESC ( struct show_options, show_opts, 1, 1, "<setting>" );
-
- /**
- * "show" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int show_exec ( int argc, char **argv ) {
- struct show_options opts;
- struct named_setting setting;
- struct settings *origin;
- char name_buf[32];
- char *value;
- int rc;
-
- /* Parse options */
- if ( ( rc = parse_options ( argc, argv, &show_cmd, &opts ) ) != 0 )
- goto err_parse_options;
-
- /* Parse setting name */
- if ( ( rc = parse_existing_setting ( argv[optind], &setting ) ) != 0 )
- goto err_parse_setting;
-
- /* Fetch formatted setting value */
- if ( ( rc = fetchf_setting_copy ( setting.settings, &setting.setting,
- &value ) ) < 0 ) {
- printf ( "Could not find \"%s\": %s\n",
- setting.setting.name, strerror ( rc ) );
- goto err_fetchf;
- }
-
- /* Fetch origin and format fully-qualified name */
- origin = fetch_setting_origin ( setting.settings, &setting.setting );
- assert ( origin != NULL );
- setting_name ( origin, &setting.setting, name_buf, sizeof ( name_buf ));
-
- /* Print setting value */
- printf ( "%s = %s\n", name_buf, value );
-
- /* Success */
- rc = 0;
-
- free ( value );
- err_fetchf:
- err_parse_setting:
- err_parse_options:
- return rc;
- }
-
- /** "set", "clear", and "read" options */
- struct set_core_options {};
-
- /** "set", "clear", and "read" option list */
- static struct option_descriptor set_core_opts[] = {};
-
- /** "set" command descriptor */
- static struct command_descriptor set_cmd =
- COMMAND_DESC ( struct set_core_options, set_core_opts, 1, MAX_ARGUMENTS,
- "<setting> <value>" );
-
- /** "clear" and "read" command descriptor */
- static struct command_descriptor clear_read_cmd =
- COMMAND_DESC ( struct set_core_options, set_core_opts, 1, 1,
- "<setting>" );
-
- /**
- * "set", "clear", and "read" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @v cmd Command descriptor
- * @v get_value Method to obtain setting value
- * @ret rc Return status code
- */
- static int set_core_exec ( int argc, char **argv,
- struct command_descriptor *cmd,
- int ( * get_value ) ( struct named_setting *setting,
- char **args, char **value ) ) {
- struct set_core_options opts;
- struct named_setting setting;
- char *value;
- int rc;
-
- /* Parse options */
- if ( ( rc = parse_options ( argc, argv, cmd, &opts ) ) != 0 )
- goto err_parse_options;
-
- /* Parse setting name */
- if ( ( rc = parse_autovivified_setting ( argv[optind],
- &setting ) ) != 0 )
- goto err_parse_setting;
-
- /* Parse setting value */
- if ( ( rc = get_value ( &setting, &argv[ optind + 1 ], &value ) ) != 0 )
- goto err_get_value;
-
- /* Apply default type if necessary */
- if ( ! setting.setting.type )
- setting.setting.type = &setting_type_string;
-
- /* Store setting */
- if ( ( rc = storef_setting ( setting.settings, &setting.setting,
- value ) ) != 0 ) {
- printf ( "Could not store \"%s\": %s\n",
- setting.setting.name, strerror ( rc ) );
- goto err_store;
- }
-
- err_store:
- free ( value );
- err_get_value:
- err_parse_setting:
- err_parse_options:
- return rc;
- }
-
- /**
- * Get setting value for "set" command
- *
- * @v setting Named setting
- * @v args Remaining arguments
- * @ret value Setting value
- * @ret rc Return status code
- */
- static int set_value ( struct named_setting *setting __unused,
- char **args, char **value ) {
-
- *value = concat_args ( args );
- if ( ! *value )
- return -ENOMEM;
-
- return 0;
- }
-
- /**
- * "set" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int set_exec ( int argc, char **argv ) {
- return set_core_exec ( argc, argv, &set_cmd, set_value );
- }
-
- /**
- * Get setting value for "clear" command
- *
- * @v setting Named setting
- * @v args Remaining arguments
- * @ret value Setting value
- * @ret rc Return status code
- */
- static int clear_value ( struct named_setting *setting __unused,
- char **args __unused, char **value ) {
-
- *value = NULL;
- return 0;
- }
-
- /**
- * "clear" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int clear_exec ( int argc, char **argv ) {
- return set_core_exec ( argc, argv, &clear_read_cmd, clear_value );
- }
-
- /**
- * Get setting value for "read" command
- *
- * @v setting Named setting
- * @v args Remaining arguments
- * @ret value Setting value
- * @ret rc Return status code
- */
- static int read_value ( struct named_setting *setting, char **args __unused,
- char **value ) {
- char *existing;
- int rc;
-
- /* Read existing value, treating errors as equivalent to an
- * empty initial setting.
- */
- fetchf_setting_copy ( setting->settings, &setting->setting, &existing );
-
- /* Read new value */
- if ( ( rc = readline_history ( NULL, existing, NULL, value ) ) != 0 )
- goto err_readline;
-
- err_readline:
- free ( existing );
- return rc;
- }
-
- /**
- * "read" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int read_exec ( int argc, char **argv ) {
- return set_core_exec ( argc, argv, &clear_read_cmd, read_value );
- }
-
- /** Non-volatile option commands */
- struct command nvo_commands[] __command = {
- {
- .name = "show",
- .exec = show_exec,
- },
- {
- .name = "set",
- .exec = set_exec,
- },
- {
- .name = "clear",
- .exec = clear_exec,
- },
- {
- .name = "read",
- .exec = read_exec,
- },
- };
|