iPXE
script.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 /**
27  * @file
28  *
29  * iPXE scripts
30  *
31  */
32 
33 #include <string.h>
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <getopt.h>
39 #include <ipxe/command.h>
40 #include <ipxe/parseopt.h>
41 #include <ipxe/image.h>
42 #include <ipxe/shell.h>
43 #include <usr/prompt.h>
44 #include <ipxe/script.h>
45 
46 /** Offset within current script
47  *
48  * This is a global in order to allow goto_exec() to update the
49  * offset.
50  */
51 static size_t script_offset;
52 
53 /**
54  * Process script lines
55  *
56  * @v image Script
57  * @v process_line Line processor
58  * @v terminate Termination check
59  * @ret rc Return status code
60  */
61 static int process_script ( struct image *image,
62  int ( * process_line ) ( struct image *image,
63  size_t offset,
64  const char *label,
65  const char *command ),
66  int ( * terminate ) ( int rc ) ) {
67  size_t len = 0;
68  char *line = NULL;
69  size_t line_offset;
70  char *label;
71  char *command;
72  const void *eol;
73  size_t frag_len;
74  char *tmp;
75  int rc;
76 
77  /* Initialise script and line offsets */
78  script_offset = 0;
79  line_offset = 0;
80 
81  do {
82 
83  /* Find length of next line, excluding any terminating '\n' */
84  eol = memchr ( ( image->data + script_offset ), '\n',
85  ( image->len - script_offset ) );
86  if ( eol ) {
87  frag_len = ( ( eol - image->data ) - script_offset );
88  } else {
89  frag_len = ( image->len - script_offset );
90  }
91 
92  /* Allocate buffer for line */
93  tmp = realloc ( line, ( len + frag_len + 1 /* NUL */ ) );
94  if ( ! tmp ) {
95  rc = -ENOMEM;
96  goto err_alloc;
97  }
98  line = tmp;
99 
100  /* Copy line */
101  memcpy ( ( line + len ), ( image->data + script_offset ),
102  frag_len );
103  len += frag_len;
104 
105  /* Move to next line in script */
106  script_offset += ( frag_len + 1 );
107 
108  /* Strip trailing CR, if present */
109  if ( len && ( line[ len - 1 ] == '\r' ) )
110  len--;
111 
112  /* Handle backslash continuations */
113  if ( len && ( line[ len - 1 ] == '\\' ) ) {
114  len--;
115  rc = -EINVAL;
116  continue;
117  }
118 
119  /* Terminate line */
120  line[len] = '\0';
121 
122  /* Split line into (optional) label and command */
123  command = line;
124  while ( isspace ( *command ) )
125  command++;
126  if ( *command == ':' ) {
127  label = ++command;
128  while ( *command && ! isspace ( *command ) )
129  command++;
130  if ( *command )
131  *(command++) = '\0';
132  } else {
133  label = NULL;
134  }
135 
136  /* Process line */
137  rc = process_line ( image, line_offset, label, command );
138  if ( terminate ( rc ) )
139  goto err_process;
140 
141  /* Free line */
142  free ( line );
143  line = NULL;
144  len = 0;
145 
146  /* Update line offset */
147  line_offset = script_offset;
148 
149  } while ( script_offset < image->len );
150 
151  err_process:
152  err_alloc:
153  free ( line );
154  return rc;
155 }
156 
157 /**
158  * Terminate script processing on shell exit or command failure
159  *
160  * @v rc Line processing status
161  * @ret terminate Terminate script processing
162  */
163 static int terminate_on_exit_or_failure ( int rc ) {
164 
166  ( rc != 0 ) );
167 }
168 
169 /**
170  * Execute script line
171  *
172  * @v image Script
173  * @v offset Offset within script
174  * @v label Label, or NULL
175  * @v command Command
176  * @ret rc Return status code
177  */
178 static int script_exec_line ( struct image *image, size_t offset,
179  const char *label __unused,
180  const char *command ) {
181  int rc;
182 
183  DBGC ( image, "[%04zx] $ %s\n", offset, command );
184 
185  /* Execute command */
186  if ( ( rc = system ( command ) ) != 0 )
187  return rc;
188 
189  return 0;
190 }
191 
192 /**
193  * Execute script
194  *
195  * @v image Script
196  * @ret rc Return status code
197  */
198 static int script_exec ( struct image *image ) {
199  size_t saved_offset;
200  int rc;
201 
202  /* Preserve state of any currently-running script */
203  saved_offset = script_offset;
204 
205  /* Process script */
208 
209  /* Restore saved state */
210  script_offset = saved_offset;
211 
212  return rc;
213 }
214 
215 /**
216  * Probe script image
217  *
218  * @v image Script
219  * @ret rc Return status code
220  */
221 static int script_probe ( struct image *image ) {
222  static const char ipxe_magic[] = "#!ipxe";
223  static const char gpxe_magic[] = "#!gpxe";
224  static_assert ( sizeof ( ipxe_magic ) == sizeof ( gpxe_magic ) );
225  const struct {
226  char magic[ sizeof ( ipxe_magic ) - 1 /* NUL */ ];
227  char space;
228  } __attribute__ (( packed )) *test;
229 
230  /* Sanity check */
231  if ( image->len < sizeof ( *test ) ) {
232  DBGC ( image, "Too short to be a script\n" );
233  return -ENOEXEC;
234  }
235 
236  /* Check for magic signature */
237  test = image->data;
238  if ( ! ( ( ( memcmp ( test->magic, ipxe_magic,
239  sizeof ( test->magic ) ) == 0 ) ||
240  ( memcmp ( test->magic, gpxe_magic,
241  sizeof ( test->magic ) ) == 0 ) ) &&
242  isspace ( test->space ) ) ) {
243  DBGC ( image, "Invalid magic signature\n" );
244  return -ENOEXEC;
245  }
246 
247  return 0;
248 }
249 
250 /** Script image type */
251 struct image_type script_image_type __image_type ( PROBE_NORMAL ) = {
252  .name = "script",
253  .probe = script_probe,
254  .exec = script_exec,
255 };
256 
257 /** "goto" options */
258 struct goto_options {};
259 
260 /** "goto" option list */
261 static struct option_descriptor goto_opts[] = {};
262 
263 /** "goto" command descriptor */
265  COMMAND_DESC ( struct goto_options, goto_opts, 1, 1, "<label>" );
266 
267 /**
268  * Current "goto" label
269  *
270  * Valid only during goto_exec(). Consider this part of a closure.
271  */
272 static const char *goto_label;
273 
274 /**
275  * Check for presence of label
276  *
277  * @v image Script
278  * @v offset Offset within script
279  * @v label Label
280  * @v command Command
281  * @ret rc Return status code
282  */
283 static int goto_find_label ( struct image *image, size_t offset,
284  const char *label, const char *command __unused ) {
285 
286  /* Check label exists */
287  if ( ! label )
288  return -ENOENT;
289 
290  /* Check label matches */
291  if ( strcmp ( goto_label, label ) != 0 )
292  return -ENOENT;
293 
294  /* Update script offset */
296  DBGC ( image, "[%04zx] Gone to :%s\n", offset, label );
297 
298  return 0;
299 }
300 
301 /**
302  * Terminate script processing when label is found
303  *
304  * @v rc Line processing status
305  * @ret terminate Terminate script processing
306  */
307 static int terminate_on_label_found ( int rc ) {
308  return ( rc == 0 );
309 }
310 
311 /**
312  * "goto" command
313  *
314  * @v argc Argument count
315  * @v argv Argument list
316  * @ret rc Return status code
317  */
318 static int goto_exec ( int argc, char **argv ) {
319  struct image *image = current_image.image;
320  struct goto_options opts;
321  size_t saved_offset;
322  int rc;
323 
324  /* Parse options */
325  if ( ( rc = parse_options ( argc, argv, &goto_cmd, &opts ) ) != 0 )
326  return rc;
327 
328  /* Sanity check */
329  if ( ! image ) {
330  rc = -ENOTTY;
331  printf ( "Not in a script: %s\n", strerror ( rc ) );
332  return rc;
333  }
334 
335  /* Parse label */
336  goto_label = argv[optind];
337 
338  /* Find label */
339  saved_offset = script_offset;
341  terminate_on_label_found ) ) != 0 ) {
342  script_offset = saved_offset;
343  DBGC ( image, "[%04zx] No such label :%s\n",
345  return rc;
346  }
347 
348  /* Terminate processing of current command */
350 
351  return 0;
352 }
353 
354 /** "goto" command */
355 COMMAND ( goto, goto_exec );
356 
357 /** "prompt" options */
359  /** Key to wait for */
360  unsigned int key;
361  /** Timeout */
362  unsigned long timeout;
363 };
364 
365 /** "prompt" option list */
366 static struct option_descriptor prompt_opts[] = {
367  OPTION_DESC ( "key", 'k', required_argument,
368  struct prompt_options, key, parse_key ),
369  OPTION_DESC ( "timeout", 't', required_argument,
371 };
372 
373 /** "prompt" command descriptor */
376  "[<text>]" );
377 
378 /**
379  * "prompt" command
380  *
381  * @v argc Argument count
382  * @v argv Argument list
383  * @ret rc Return status code
384  */
385 static int prompt_exec ( int argc, char **argv ) {
386  struct prompt_options opts;
387  char *text;
388  int rc;
389 
390  /* Parse options */
391  if ( ( rc = parse_options ( argc, argv, &prompt_cmd, &opts ) ) != 0 )
392  goto err_parse;
393 
394  /* Parse prompt text */
395  text = concat_args ( &argv[optind] );
396  if ( ! text ) {
397  rc = -ENOMEM;
398  goto err_concat;
399  }
400 
401  /* Display prompt and wait for key */
402  if ( ( rc = prompt ( text, opts.timeout, opts.key ) ) != 0 )
403  goto err_prompt;
404 
405  /* Free prompt text */
406  free ( text );
407 
408  return 0;
409 
410  err_prompt:
411  free ( text );
412  err_concat:
413  err_parse:
414  return rc;
415 }
416 
417 /** "prompt" command */
#define __attribute__(x)
Definition: compiler.h:10
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
A text label widget.
Definition: label.h:16
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:464
int parse_key(char *text, unsigned int *key)
Parse key.
Definition: parseopt.c:241
Minimal command shell.
int optind
Current option index.
Definition: getopt.c:51
static int script_exec(struct image *image)
Execute script.
Definition: script.c:198
Error codes.
const void * data
Read-only data.
Definition: image.h:50
uint16_t magic
Magic signature.
Definition: bzimage.h:6
A command-line command.
Definition: command.h:9
#define ENOEXEC
Exec format error.
Definition: errno.h:519
int parse_timeout(char *text, unsigned long *value)
Parse timeout value (in ms)
Definition: parseopt.c:114
struct image_type script_image_type __image_type(PROBE_NORMAL)
Script image type.
#define DBGC(...)
Definition: compiler.h:505
"goto" options
Definition: script.c:258
An executable image type.
Definition: image.h:94
#define ENOENT
No such file or directory.
Definition: errno.h:514
#define PROBE_NORMAL
Normal image probe priority.
Definition: image.h:155
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition: parseopt.c:484
Prompt for keypress.
COMMAND(goto, goto_exec)
"goto" command
An executable image.
Definition: image.h:23
Character types.
#define static_assert(x)
Assert a condition at build time.
Definition: assert.h:65
A command descriptor.
Definition: parseopt.h:77
void shell_stop(int stop)
Set shell stop state.
Definition: exec.c:217
static struct option_descriptor goto_opts[]
"goto" option list
Definition: script.c:261
struct image * image
Image (weak reference, nullified when image is freed)
Definition: image.h:176
iPXE scripts
char * name
Name of this image type.
Definition: image.h:96
void * memchr(const void *src, int character, size_t len)
Find character within a memory region.
Definition: string.c:135
unsigned long tmp
Definition: linux_pci.h:64
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
#define ENOMEM
Not enough space.
Definition: errno.h:534
Stop processing current command line.
Definition: shell.h:22
void * memcpy(void *dest, const void *src, size_t len) __nonnull
struct image_tag current_image
Parse command-line options.
unsigned long timeout
Timeout.
Definition: script.c:362
Executable images.
#define __unused
Declare a variable or data structure as unused.
Definition: compiler.h:573
ring len
Length.
Definition: dwmac.h:231
"prompt" options
Definition: script.c:358
#define MAX_ARGUMENTS
No maximum number of arguments.
Definition: parseopt.h:97
static int terminate_on_label_found(int rc)
Terminate script processing when label is found.
Definition: script.c:307
char * concat_args(char **args)
Concatenate arguments.
Definition: exec.c:358
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
size_t len
Length of raw file image.
Definition: image.h:55
Command line option parsing.
int isspace(int character)
Check to see if character is a space.
Definition: ctype.c:41
static int script_exec_line(struct image *image, size_t offset, const char *label __unused, const char *command)
Execute script line.
Definition: script.c:178
int prompt(const char *text, unsigned long timeout, int key)
Prompt for keypress.
Definition: prompt.c:48
static int goto_exec(int argc, char **argv)
"goto" command
Definition: script.c:318
static struct option_descriptor prompt_opts[]
"prompt" option list
Definition: script.c:366
static int command
Definition: epic100.c:68
static int script_probe(struct image *image)
Probe script image.
Definition: script.c:221
int shell_stopped(int stop)
Test and consume shell stop state.
Definition: exec.c:227
#define ENOTTY
Inappropriate I/O control operation.
Definition: errno.h:594
int strcmp(const char *first, const char *second)
Compare strings.
Definition: string.c:173
#define OPTION_DESC(_longopt, _shortopt, _has_arg, _struct, _field, _parse)
Construct option descriptor.
Definition: parseopt.h:67
Option requires an argument.
Definition: getopt.h:18
Stop processing commands.
Definition: shell.h:29
A command-line option descriptor.
Definition: parseopt.h:23
static int terminate_on_exit_or_failure(int rc)
Terminate script processing on shell exit or command failure.
Definition: script.c:163
static union @447 opts
"cert<xxx>" option list
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition: parseopt.h:108
void * realloc(void *old_ptr, size_t new_size)
Reallocate memory.
Definition: malloc.c:606
static int prompt_exec(int argc, char **argv)
"prompt" command
Definition: script.c:385
static size_t script_offset
Offset within current script.
Definition: script.c:51
void timeout(int)
static int goto_find_label(struct image *image, size_t offset, const char *label, const char *command __unused)
Check for presence of label.
Definition: script.c:283
uint16_t offset
Offset to command line.
Definition: bzimage.h:8
static const char * goto_label
Current "goto" label.
Definition: script.c:272
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition: string.c:114
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
String functions.
union @391 key
Sense key.
Definition: scsi.h:17
static int test
Definition: epic100.c:73
unsigned int key
Key to wait for.
Definition: script.c:360
static struct command_descriptor prompt_cmd
"prompt" command descriptor
Definition: script.c:374
uint8_t system[ETH_ALEN]
System identifier.
Definition: eth_slow.h:24
static struct command_descriptor goto_cmd
"goto" command descriptor
Definition: script.c:264
static int process_script(struct image *image, int(*process_line)(struct image *image, size_t offset, const char *label, const char *command), int(*terminate)(int rc))
Process script lines.
Definition: script.c:61