123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- /*
- * Copyright (C) 2007 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.
- */
-
- FILE_LICENCE ( GPL2_OR_LATER );
-
- /**
- * @file
- *
- * iPXE scripts
- *
- */
-
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <errno.h>
- #include <getopt.h>
- #include <ipxe/command.h>
- #include <ipxe/parseopt.h>
- #include <ipxe/image.h>
- #include <ipxe/shell.h>
- #include <usr/prompt.h>
- #include <ipxe/script.h>
-
- /** Offset within current script
- *
- * This is a global in order to allow goto_exec() to update the
- * offset.
- */
- static size_t script_offset;
-
- /**
- * Process script lines
- *
- * @v image Script
- * @v process_line Line processor
- * @v terminate Termination check
- * @ret rc Return status code
- */
- static int process_script ( struct image *image,
- int ( * process_line ) ( const char *line ),
- int ( * terminate ) ( int rc ) ) {
- off_t eol;
- size_t len;
- char *line;
- int rc;
-
- script_offset = 0;
-
- do {
-
- /* Find length of next line, excluding any terminating '\n' */
- eol = memchr_user ( image->data, script_offset, '\n',
- ( image->len - script_offset ) );
- if ( eol < 0 )
- eol = image->len;
- len = ( eol - script_offset );
-
- /* Allocate buffer for line */
- line = zalloc ( len + 1 /* NUL */ );
- if ( ! line )
- return -ENOMEM;
-
- /* Copy line */
- copy_from_user ( line, image->data, script_offset, len );
- DBG ( "$ %s\n", line );
-
- /* Move to next line */
- script_offset += ( len + 1 );
-
- /* Process and free line */
- rc = process_line ( line );
- free ( line );
- if ( terminate ( rc ) )
- return rc;
-
- } while ( script_offset < image->len );
-
- return rc;
- }
-
- /**
- * Terminate script processing on shell exit or command failure
- *
- * @v rc Line processing status
- * @ret terminate Terminate script processing
- */
- static int terminate_on_exit_or_failure ( int rc ) {
-
- return ( shell_stopped ( SHELL_STOP_COMMAND_SEQUENCE ) ||
- ( rc != 0 ) );
- }
-
- /**
- * Execute script line
- *
- * @v line Line of script
- * @ret rc Return status code
- */
- static int script_exec_line ( const char *line ) {
- int rc;
-
- /* Skip label lines */
- if ( line[0] == ':' )
- return 0;
-
- /* Execute command */
- if ( ( rc = system ( line ) ) != 0 )
- return rc;
-
- return 0;
- }
-
- /**
- * Execute script
- *
- * @v image Script
- * @ret rc Return status code
- */
- static int script_exec ( struct image *image ) {
- size_t saved_offset;
- int rc;
-
- /* Temporarily de-register image, so that a "boot" command
- * doesn't throw us into an execution loop.
- */
- unregister_image ( image );
-
- /* Preserve state of any currently-running script */
- saved_offset = script_offset;
-
- /* Process script */
- rc = process_script ( image, script_exec_line,
- terminate_on_exit_or_failure );
-
- /* Restore saved state */
- script_offset = saved_offset;
-
- /* Re-register image (unless we have been replaced) */
- if ( ! image->replacement )
- register_image ( image );
-
- return rc;
- }
-
- /**
- * Probe script image
- *
- * @v image Script
- * @ret rc Return status code
- */
- static int script_probe ( struct image *image ) {
- static const char ipxe_magic[] = "#!ipxe";
- static const char gpxe_magic[] = "#!gpxe";
- linker_assert ( sizeof ( ipxe_magic ) == sizeof ( gpxe_magic ),
- magic_size_mismatch );
- char test[ sizeof ( ipxe_magic ) - 1 /* NUL */
- + 1 /* terminating space */];
-
- /* Sanity check */
- if ( image->len < sizeof ( test ) ) {
- DBG ( "Too short to be a script\n" );
- return -ENOEXEC;
- }
-
- /* Check for magic signature */
- copy_from_user ( test, image->data, 0, sizeof ( test ) );
- if ( ! ( ( ( memcmp ( test, ipxe_magic, sizeof ( test ) - 1 ) == 0 ) ||
- ( memcmp ( test, gpxe_magic, sizeof ( test ) - 1 ) == 0 )) &&
- isspace ( test[ sizeof ( test ) - 1 ] ) ) ) {
- DBG ( "Invalid magic signature\n" );
- return -ENOEXEC;
- }
-
- return 0;
- }
-
- /** Script image type */
- struct image_type script_image_type __image_type ( PROBE_NORMAL ) = {
- .name = "script",
- .probe = script_probe,
- .exec = script_exec,
- };
-
- /** "goto" options */
- struct goto_options {};
-
- /** "goto" option list */
- static struct option_descriptor goto_opts[] = {};
-
- /** "goto" command descriptor */
- static struct command_descriptor goto_cmd =
- COMMAND_DESC ( struct goto_options, goto_opts, 1, 1, "<label>" );
-
- /**
- * Current "goto" label
- *
- * Valid only during goto_exec(). Consider this part of a closure.
- */
- static const char *goto_label;
-
- /**
- * Check for presence of label
- *
- * @v line Script line
- * @ret rc Return status code
- */
- static int goto_find_label ( const char *line ) {
- size_t len = strlen ( goto_label );
-
- if ( line[0] != ':' )
- return -ENOENT;
-
- if ( strncmp ( goto_label, &line[1], len ) != 0 )
- return -ENOENT;
-
- if ( line[ 1 + len ] && ! isspace ( line[ 1 + len ] ) )
- return -ENOENT;
-
- return 0;
- }
-
- /**
- * Terminate script processing when label is found
- *
- * @v rc Line processing status
- * @ret terminate Terminate script processing
- */
- static int terminate_on_label_found ( int rc ) {
- return ( rc == 0 );
- }
-
- /**
- * "goto" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int goto_exec ( int argc, char **argv ) {
- struct goto_options opts;
- size_t saved_offset;
- int rc;
-
- /* Parse options */
- if ( ( rc = parse_options ( argc, argv, &goto_cmd, &opts ) ) != 0 )
- return rc;
-
- /* Sanity check */
- if ( ! current_image ) {
- rc = -ENOTTY;
- printf ( "Not in a script: %s\n", strerror ( rc ) );
- return rc;
- }
-
- /* Parse label */
- goto_label = argv[optind];
-
- /* Find label */
- saved_offset = script_offset;
- if ( ( rc = process_script ( current_image, goto_find_label,
- terminate_on_label_found ) ) != 0 ) {
- script_offset = saved_offset;
- return rc;
- }
-
- /* Terminate processing of current command */
- shell_stop ( SHELL_STOP_COMMAND );
-
- return 0;
- }
-
- /** "goto" command */
- struct command goto_command __command = {
- .name = "goto",
- .exec = goto_exec,
- };
-
- /** "prompt" options */
- struct prompt_options {
- /** Key to wait for */
- unsigned int key;
- /** Timeout */
- unsigned int timeout;
- };
-
- /** "prompt" option list */
- static struct option_descriptor prompt_opts[] = {
- OPTION_DESC ( "key", 'k', required_argument,
- struct prompt_options, key, parse_key ),
- OPTION_DESC ( "timeout", 't', required_argument,
- struct prompt_options, timeout, parse_integer ),
- };
-
- /** "prompt" command descriptor */
- static struct command_descriptor prompt_cmd =
- COMMAND_DESC ( struct prompt_options, prompt_opts, 0, MAX_ARGUMENTS,
- "[--key <key>] [--timeout <timeout>] [<text>]" );
-
- /**
- * "prompt" command
- *
- * @v argc Argument count
- * @v argv Argument list
- * @ret rc Return status code
- */
- static int prompt_exec ( int argc, char **argv ) {
- struct prompt_options opts;
- char *text;
- int rc;
-
- /* Parse options */
- if ( ( rc = parse_options ( argc, argv, &prompt_cmd, &opts ) ) != 0 )
- goto err_parse;
-
- /* Parse prompt text */
- text = concat_args ( &argv[optind] );
- if ( ! text ) {
- rc = -ENOMEM;
- goto err_concat;
- }
-
- /* Display prompt and wait for key */
- if ( ( rc = prompt ( text, opts.timeout, opts.key ) ) != 0 )
- goto err_prompt;
-
- /* Free prompt text */
- free ( text );
-
- return 0;
-
- err_prompt:
- free ( text );
- err_concat:
- err_parse:
- return rc;
- }
-
- /** "prompt" command */
- struct command prompt_command __command = {
- .name = "prompt",
- .exec = prompt_exec,
- };
|