iPXE
reboot_cmd.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010 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 #include <getopt.h>
25 #include <ipxe/command.h>
26 #include <ipxe/parseopt.h>
27 #include <ipxe/reboot.h>
28 
29 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
30 FILE_SECBOOT ( PERMITTED );
31 
32 /** @file
33  *
34  * Reboot command
35  *
36  */
37 
38 /** "reboot" options */
40  /** Perform a warm reboot */
41  int warm;
42  /** Reboot to firmware setup */
43  int setup;
44 };
45 
46 /** "reboot" option list */
47 static struct option_descriptor reboot_opts[] = {
48  OPTION_DESC ( "warm", 'w', no_argument,
49  struct reboot_options, warm, parse_flag ),
50  OPTION_DESC ( "setup", 's', no_argument,
51  struct reboot_options, setup, parse_flag ),
52 };
53 
54 /** "reboot" command descriptor */
56  COMMAND_DESC ( struct reboot_options, reboot_opts, 0, 0, NULL );
57 
58 /**
59  * The "reboot" command
60  *
61  * @v argc Argument count
62  * @v argv Argument list
63  * @ret rc Return status code
64  */
65 static int reboot_exec ( int argc, char **argv ) {
66  struct reboot_options opts;
67  int flags = 0;
68  int rc;
69 
70  /* Parse options */
71  if ( ( rc = parse_options ( argc, argv, &reboot_cmd, &opts ) ) != 0 )
72  return rc;
73 
74  /* Reboot system */
75  if ( opts.warm )
76  flags |= REBOOT_WARM;
77  if ( opts.setup )
79  reboot ( flags );
80 
81  return 0;
82 }
83 
84 /** "reboot" command */
static struct option_descriptor reboot_opts[]
"reboot" option list
Definition: reboot_cmd.c:47
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static struct command_descriptor reboot_cmd
"reboot" command descriptor
Definition: reboot_cmd.c:55
#define REBOOT_SETUP
Reboot to firmware setup.
Definition: reboot.h:60
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition: parseopt.c:485
A command descriptor.
Definition: parseopt.h:78
FILE_SECBOOT(PERMITTED)
iPXE reboot API
Parse command-line options.
int parse_flag(char *text __unused, int *flag)
Parse flag.
Definition: parseopt.c:227
uint8_t flags
Flags.
Definition: ena.h:18
int warm
Perform a warm reboot.
Definition: reboot_cmd.c:41
Command line option parsing.
#define REBOOT_WARM
Perform a warm reboot.
Definition: reboot.h:59
Option does not take an argument.
Definition: getopt.h:17
"reboot" options
Definition: reboot_cmd.c:39
int setup
Reboot to firmware setup.
Definition: reboot_cmd.c:43
#define OPTION_DESC(_longopt, _shortopt, _has_arg, _struct, _field, _parse)
Construct option descriptor.
Definition: parseopt.h:68
A command-line option descriptor.
Definition: parseopt.h:24
static union @447 opts
"cert<xxx>" option list
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition: parseopt.h:109
COMMAND(reboot, reboot_exec)
"reboot" command
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
void reboot(int flags)
Reboot system.
static int reboot_exec(int argc, char **argv)
The "reboot" command.
Definition: reboot_cmd.c:65