iPXE
init.c File Reference

Initialisation, startup and shutdown routines. More...

#include <ipxe/device.h>
#include <ipxe/console.h>
#include <ipxe/init.h>

Go to the source code of this file.

Macros

#define colour   table_start ( INIT_FNS )
 Colour for debug messages.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 FILE_SECBOOT (PERMITTED)
void initialise (void)
 Initialise iPXE.
void startup (void)
 Start up iPXE.
void shutdown (int flags)
 Shut down iPXE.

Variables

static int started = 0
 "startup() has been called" flag

Detailed Description

Initialisation, startup and shutdown routines.

Definition in file init.c.

Macro Definition Documentation

◆ colour

#define colour   table_start ( INIT_FNS )

Colour for debug messages.

Definition at line 41 of file init.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

◆ initialise()

void initialise ( void )

Initialise iPXE.

This function performs the one-time-only and irreversible initialisation steps, such as initialising the heap. It must be called before (almost) any other function.

There is, by definition, no counterpart to this function on the shutdown path.

Definition at line 53 of file init.c.

53 {
54 struct init_fn *init_fn;
55
56 /* Call registered initialisation functions */
58 DBGC ( colour, "INIT initialising %s...\n", init_fn->name );
60 }
61}
#define colour
Colour for debug messages.
Definition acpi.c:42
#define DBGC(...)
Definition compiler.h:505
#define INIT_FNS
Initialisation function table.
Definition init.h:21
An initialisation function.
Definition init.h:15
const char * name
Definition init.h:16
void(* initialise)(void)
Definition init.h:17
#define for_each_table_entry(pointer, table)
Iterate through all entries within a linker table.
Definition tables.h:386

References colour, DBGC, for_each_table_entry, INIT_FNS, init_fn::initialise, and init_fn::name.

Referenced by _efidrv_start(), main(), and undi_loader().

◆ startup()

void startup ( void )

Start up iPXE.

This function performs the repeatable initialisation steps, such as probing devices. You may call startup() and shutdown() multiple times (as is done via the PXE API when PXENV_START_UNDI is used).

Definition at line 70 of file init.c.

70 {
71 struct startup_fn *startup_fn;
72
73 if ( started )
74 return;
75
76 /* Call registered startup functions */
78 if ( startup_fn->startup ) {
79 DBGC ( colour, "INIT startup %s...\n",
82 }
83 }
84
85 started = 1;
86 DBGC ( colour, "INIT startup complete\n" );
87}
static int started
"startup() has been called" flag
Definition init.c:38
#define STARTUP_FNS
Startup/shutdown function table.
Definition init.h:50
A startup/shutdown function.
Definition init.h:43
void(* startup)(void)
Definition init.h:45
const char * name
Definition init.h:44

References colour, DBGC, for_each_table_entry, startup_fn::name, started, startup_fn::startup, and STARTUP_FNS.

Referenced by _efidrv_start(), main(), pnic_do_nway(), pxenv_start_undi(), and select_media().

◆ shutdown()

void shutdown ( int flags)

Shut down iPXE.

Parameters
flagsShutdown behaviour flags

This function reverses the actions of startup(), and leaves iPXE in a state ready to be removed from memory. You may call startup() again after calling shutdown().

Call this function only once, before either exiting main() or starting up a non-returnable image.

Definition at line 101 of file init.c.

101 {
102 struct startup_fn *startup_fn;
103
104 if ( ! started )
105 return;
106
107 /* Call registered shutdown functions (in reverse order) */
109 if ( startup_fn->shutdown ) {
110 DBGC ( colour, "INIT shutdown %s...\n",
111 startup_fn->name );
113 }
114 }
115
116 /* Reset console */
118
119 started = 0;
120 DBGC ( colour, "INIT shutdown complete\n" );
121}
uint8_t flags
Flags.
Definition ena.h:7
static void console_reset(void)
Reset console.
Definition console.h:215
void(* shutdown)(int booting)
Definition init.h:46
#define for_each_table_entry_reverse(pointer, table)
Iterate through all entries within a linker table in reverse order.
Definition tables.h:441

References colour, console_reset(), DBGC, flags, for_each_table_entry_reverse, startup_fn::name, startup_fn::shutdown, started, and STARTUP_FNS.

Referenced by intelxl_admin_shutdown(), shutdown_boot(), and shutdown_exit().

Variable Documentation

◆ started

int started = 0
static

"startup() has been called" flag

Definition at line 38 of file init.c.

Referenced by librm_test_exec(), profile_start_at(), shutdown(), startup(), undinet_call(), and xenbus_backend_wait().