iPXE
Macros | Functions | Variables
embedded.c File Reference

Embedded image support. More...

#include <string.h>
#include <ipxe/image.h>
#include <ipxe/init.h>

Go to the source code of this file.

Macros

#define EMBED(_index, _path, _name)
 
#define EMBED(_index, _path, _name)
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static void embedded_init (void)
 Register all embedded images. More...
 
struct init_fn embedded_init_fn __init_fn (INIT_LATE)
 Embedded image initialisation function. More...
 

Variables

static struct image embedded_images []
 

Detailed Description

Embedded image support.

Embedded images are images built into the iPXE binary and do not require fetching over the network.

Definition in file embedded.c.

Macro Definition Documentation

◆ EMBED [1/2]

#define EMBED (   _index,
  _path,
  _name 
)
Value:
extern char embedded_image_ ## _index ## _data[]; \
extern size_t ABS_SYMBOL ( embedded_image_ ## _index ## _len ); \
__asm__ ( ".section \".data\", \"aw\", " PROGBITS "\n\t" \
"\nembedded_image_" #_index "_data:\n\t" \
".incbin \"" _path "\"\n\t" \
"\nembedded_image_" #_index "_end:\n\t" \
".equ embedded_image_" #_index "_len, " \
"( embedded_image_" #_index "_end - " \
" embedded_image_" #_index "_data )\n\t" \
".previous\n\t" );
#define PROGBITS
Definition: compiler.h:61
#define ABS_SYMBOL(name)
Declare an absolute symbol (e.g.
Definition: compiler.h:655

Definition at line 32 of file embedded.c.

◆ EMBED [2/2]

#define EMBED (   _index,
  _path,
  _name 
)
Value:
{ \
.refcnt = REF_INIT ( free_image ), \
.name = _name, \
.flags = ( IMAGE_STATIC | IMAGE_STATIC_NAME ), \
.rwdata = embedded_image_ ## _index ## _data, \
.len = ABS_VALUE_INIT ( embedded_image_ ## _index ## _len ), \
},
void free_image(struct refcnt *refcnt)
Free executable image.
Definition: image.c:85
#define IMAGE_STATIC
Image is statically allocated.
Definition: image.h:88
ring len
Length.
Definition: dwmac.h:231
#define IMAGE_STATIC_NAME
Image name is statically allocated.
Definition: image.h:91
#define REF_INIT(free_fn)
Initialise a static reference counter.
Definition: refcnt.h:77
#define ABS_VALUE_INIT(name)
Get value of an absolute symbol for use in a static initializer.
Definition: compiler.h:668

Definition at line 32 of file embedded.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ embedded_init()

static void embedded_init ( void  )
static

Register all embedded images.

Definition at line 46 of file embedded.c.

46  {
47  int i;
48  struct image *image;
49  void *data;
50  int rc;
51 
52  /* Skip if we have no embedded images */
53  if ( ! sizeof ( embedded_images ) )
54  return;
55 
56  /* Fix up data pointers and register images */
57  for ( i = 0 ; i < ( int ) ( sizeof ( embedded_images ) /
58  sizeof ( embedded_images[0] ) ) ; i++ ) {
59  image = &embedded_images[i];
60  DBG ( "Embedded image \"%s\": %zd bytes at %p\n",
61  image->name, image->len, data );
62  if ( ( rc = register_image ( image ) ) != 0 ) {
63  DBG ( "Could not register embedded image \"%s\": "
64  "%s\n", image->name, strerror ( rc ) );
65  return;
66  }
67  }
68 
69  /* Select the first image */
70  image = &embedded_images[0];
71  if ( ( rc = image_select ( image ) ) != 0 ) {
72  DBG ( "Could not select embedded image \"%s\": %s\n",
73  image->name, strerror ( rc ) );
74  return;
75  }
76 
77  /* Trust the selected image implicitly */
78  image_trust ( image );
79 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int image_select(struct image *image)
Select image for execution.
Definition: image.c:564
static struct image embedded_images[]
Definition: embedded.c:39
An executable image.
Definition: image.h:23
int register_image(struct image *image)
Register executable image.
Definition: image.c:314
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
size_t len
Length of raw file image.
Definition: image.h:55
uint8_t data[48]
Additional event data.
Definition: ena.h:22
static void image_trust(struct image *image)
Set image as trusted.
Definition: image.h:267
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
char * name
Name.
Definition: image.h:37

References data, DBG, embedded_images, image_select(), image_trust(), image::len, image::name, rc, register_image(), and strerror().

◆ __init_fn()

struct init_fn embedded_init_fn __init_fn ( INIT_LATE  )

Embedded image initialisation function.

Variable Documentation

◆ embedded_images

struct image embedded_images[]
static
Initial value:
= {
EMBED_ALL
}

Definition at line 39 of file embedded.c.

Referenced by embedded_init().