iPXE
Data Structures | Macros | Functions | Variables
shim_cmd.c File Reference

EFI shim command. More...

#include <getopt.h>
#include <ipxe/command.h>
#include <ipxe/parseopt.h>
#include <ipxe/efi/efi_image.h>
#include <usr/imgmgmt.h>
#include <usr/shimmgmt.h>

Go to the source code of this file.

Data Structures

struct  shim_options
 "shim" options More...
 

Macros

#define shim_dummy   1
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
 FILE_SECBOOT (PERMITTED)
 
static int shim_exec (int argc, char **argv)
 The "shim" command. More...
 
 COMMAND (shim, shim_exec)
 Shim commands. More...
 

Variables

static struct option_descriptor shim_opts []
 "shim" option list More...
 
static struct command_descriptor shim_cmd
 "shim" command descriptor More...
 

Detailed Description

EFI shim command.

Definition in file shim_cmd.c.

Macro Definition Documentation

◆ shim_dummy

#define shim_dummy   1

Definition at line 44 of file shim_cmd.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED  )

◆ shim_exec()

static int shim_exec ( int  argc,
char **  argv 
)
static

The "shim" command.

Parameters
argcArgument count
argvArgument list
Return values
rcReturn status code

Definition at line 82 of file shim_cmd.c.

82  {
83  struct shim_options opts;
84  struct image *image = NULL;
85  struct image *kernel;
86  char *name_uri;
87  int download;
88  int rc;
89 
90  /* Do absolutely nothing if this is a non-EFI platform */
91  if ( shim_dummy ) {
92  rc = 0;
93  goto err_dummy;
94  }
95 
96  /* Parse options */
97  if ( ( rc = parse_options ( argc, argv, &shim_cmd, &opts ) ) != 0 )
98  goto err_parse;
99 
100  /* Decide whether or not to download images */
102  download = ( ! ( kernel && efi_can_load ( kernel ) ) );
103 
104  /* Parse name/URI string */
105  name_uri = argv[optind];
106 
107  /* Acquire image, if applicable */
108  if ( download && name_uri &&
109  ( ( rc = imgacquire ( name_uri, opts.timeout,
110  &image ) ) != 0 ) ) {
111  goto err_image;
112  }
113 
114  /* (Un)register as shim */
115  if ( ( rc = shim ( image, opts.require_loader, opts.allow_pxe,
116  opts.allow_sbat ) ) != 0 )
117  goto err_shim;
118 
119  err_shim:
120  err_image:
121  err_parse:
122  err_dummy:
123  return rc;
124 }
struct image_tag selected_image
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int optind
Current option index.
Definition: getopt.c:52
static struct command_descriptor shim_cmd
"shim" command descriptor
Definition: shim_cmd.c:72
"shim" options
Definition: shim_cmd.c:48
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition: parseopt.c:485
An executable image.
Definition: image.h:24
struct image * find_image_tag(struct image_tag *tag)
Find image by tag.
Definition: image.c:393
uint32_t kernel
Kernel version (numeric)
Definition: ena.h:20
static int efi_can_load(struct image *image)
Check if EFI image can be loaded directly.
Definition: efi_image.h:23
static union @447 opts
"cert<xxx>" option list
#define shim_dummy
Definition: shim_cmd.c:44
int shim(struct image *image, int require_loader, int allow_pxe, int allow_sbat)
Set shim image.
Definition: shimmgmt.c:46
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
int imgacquire(const char *name_uri, unsigned long timeout, struct image **image)
Acquire an image.
Definition: imgmgmt.c:143

References efi_can_load(), find_image_tag(), imgacquire(), kernel, NULL, optind, opts, parse_options(), rc, selected_image, shim(), shim_cmd, and shim_dummy.

◆ COMMAND()

COMMAND ( shim  ,
shim_exec   
)

Shim commands.

Variable Documentation

◆ shim_opts

struct option_descriptor shim_opts[]
static
Initial value:
= {
OPTION_DESC ( "timeout", 't', required_argument,
OPTION_DESC ( "require-loader", 'l', no_argument,
struct shim_options, require_loader, parse_flag ),
OPTION_DESC ( "allow-pxe", 'p', no_argument,
struct shim_options, allow_pxe, parse_flag ),
OPTION_DESC ( "allow-sbat", 's', no_argument,
struct shim_options, allow_sbat, parse_flag ),
}
int parse_timeout(char *text, unsigned long *value)
Parse timeout value (in ms)
Definition: parseopt.c:115
"shim" options
Definition: shim_cmd.c:48
int parse_flag(char *text __unused, int *flag)
Parse flag.
Definition: parseopt.c:227
Option does not take an argument.
Definition: getopt.h:17
#define OPTION_DESC(_longopt, _shortopt, _has_arg, _struct, _field, _parse)
Construct option descriptor.
Definition: parseopt.h:68
Option requires an argument.
Definition: getopt.h:19
void timeout(int)

"shim" option list

Definition at line 60 of file shim_cmd.c.

◆ shim_cmd

struct command_descriptor shim_cmd
static
Initial value:
=
"shim" options
Definition: shim_cmd.c:48
static struct option_descriptor shim_opts[]
"shim" option list
Definition: shim_cmd.c:60
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition: parseopt.h:109
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322

"shim" command descriptor

Definition at line 72 of file shim_cmd.c.

Referenced by shim_exec().