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

Multiboot image format. More...

#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include <realmode.h>
#include <multiboot.h>
#include <ipxe/uaccess.h>
#include <ipxe/image.h>
#include <ipxe/segment.h>
#include <ipxe/io.h>
#include <ipxe/elf.h>
#include <ipxe/init.h>
#include <ipxe/features.h>
#include <ipxe/uri.h>
#include <ipxe/version.h>

Go to the source code of this file.

Data Structures

struct  multiboot_header_info
 A multiboot header descriptor. More...
 

Macros

#define MAX_MODULES   8
 Maximum number of modules we will allow for. More...
 
#define MB_MAX_CMDLINE   512
 Maximum combined length of command lines. More...
 
#define MB_SUPPORTED_FLAGS
 Multiboot flags that we support. More...
 
#define MB_COMPULSORY_FLAGS   0x0000ffff
 Compulsory feature multiboot flags. More...
 
#define MB_OPTIONAL_FLAGS   0xffff0000
 Optional feature multiboot flags. More...
 
#define MB_UNSUPPORTED_FLAGS   ( MB_COMPULSORY_FLAGS & ~MB_SUPPORTED_FLAGS )
 Multiboot flags that we don't support. More...
 
#define mb_cmdlines   __use_data16 ( mb_cmdlines )
 
#define mbinfo   __use_data16 ( mbinfo )
 
#define mb_bootloader_name   __use_data16 ( mb_bootloader_name )
 
#define mbmemmap   __use_data16 ( mbmemmap )
 
#define mbmodules   __use_data16 ( mbmodules )
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
 FEATURE (FEATURE_IMAGE, "MBOOT", DHCP_EB_FEATURE_MULTIBOOT, 1)
 
static char __bss16_array (mb_cmdlines, [MB_MAX_CMDLINE])
 Multiboot module command lines. More...
 
static void multiboot_build_memmap (struct image *image, struct multiboot_info *mbinfo, struct multiboot_memory_map *mbmemmap, unsigned int limit)
 Build multiboot memory map. More...
 
static physaddr_t multiboot_add_cmdline (struct image *image)
 Add command line in base memory. More...
 
static int multiboot_add_modules (struct image *image, physaddr_t start, struct multiboot_info *mbinfo, struct multiboot_module *modules, unsigned int limit)
 Add multiboot modules. More...
 
static struct multiboot_info __bss16 (mbinfo)
 The multiboot information structure. More...
 
static char __bss16_array (mb_bootloader_name, [32])
 The multiboot bootloader name. More...
 
static struct multiboot_memory_map __bss16_array (mbmemmap, [MAX_MEMORY_REGIONS])
 The multiboot memory map. More...
 
static struct multiboot_module __bss16_array (mbmodules, [MAX_MODULES])
 The multiboot module list. More...
 
static int multiboot_find_header (struct image *image, struct multiboot_header_info *hdr)
 Find multiboot header. More...
 
static int multiboot_load_raw (struct image *image, struct multiboot_header_info *hdr, physaddr_t *entry, physaddr_t *max)
 Load raw multiboot image into memory. More...
 
static int multiboot_load_elf (struct image *image, physaddr_t *entry, physaddr_t *max)
 Load ELF multiboot image into memory. More...
 
static int multiboot_exec (struct image *image)
 Execute multiboot image. More...
 
static int multiboot_probe (struct image *image)
 Probe multiboot image. More...
 
struct image_type multiboot_image_type __image_type (PROBE_MULTIBOOT)
 Multiboot image type. More...
 

Variables

static unsigned int mb_cmdline_offset
 Offset within module command lines. More...
 

Detailed Description

Multiboot image format.

Definition in file multiboot.c.

Macro Definition Documentation

◆ MAX_MODULES

#define MAX_MODULES   8

Maximum number of modules we will allow for.

If this has bitten you: sorry. I did have a perfect scheme with a dynamically allocated list of modules on the protected-mode stack, but it was incompatible with some broken OSes that can only access low memory at boot time (even though we kindly set up 4GB flat physical addressing as per the multiboot specification.

Definition at line 60 of file multiboot.c.

◆ MB_MAX_CMDLINE

#define MB_MAX_CMDLINE   512

Maximum combined length of command lines.

Again; sorry. Some broken OSes zero out any non-base memory that isn't part of the loaded module set, so we can't just use virt_to_phys(cmdline) to point to the command lines, even though this would comply with the Multiboot spec.

Definition at line 70 of file multiboot.c.

◆ MB_SUPPORTED_FLAGS

#define MB_SUPPORTED_FLAGS
Value:
MB_FLAG_VIDMODE | MB_FLAG_RAW )
#define MB_FLAG_PGALIGN
Boot modules must be page aligned.
Definition: multiboot.h:19
#define MB_FLAG_MEMMAP
Memory map must be provided.
Definition: multiboot.h:22
#define MB_FLAG_RAW
Image is a raw multiboot image (not ELF)
Definition: multiboot.h:28

Multiboot flags that we support.

Definition at line 73 of file multiboot.c.

◆ MB_COMPULSORY_FLAGS

#define MB_COMPULSORY_FLAGS   0x0000ffff

Compulsory feature multiboot flags.

Definition at line 77 of file multiboot.c.

◆ MB_OPTIONAL_FLAGS

#define MB_OPTIONAL_FLAGS   0xffff0000

Optional feature multiboot flags.

Definition at line 80 of file multiboot.c.

◆ MB_UNSUPPORTED_FLAGS

#define MB_UNSUPPORTED_FLAGS   ( MB_COMPULSORY_FLAGS & ~MB_SUPPORTED_FLAGS )

Multiboot flags that we don't support.

We only care about the compulsory feature flags (bits 0-15); we are allowed to ignore the optional feature flags.

Definition at line 88 of file multiboot.c.

◆ mb_cmdlines

#define mb_cmdlines   __use_data16 ( mb_cmdlines )

Definition at line 100 of file multiboot.c.

◆ mbinfo

#define mbinfo   __use_data16 ( mbinfo )

Definition at line 251 of file multiboot.c.

◆ mb_bootloader_name

#define mb_bootloader_name   __use_data16 ( mb_bootloader_name )

Definition at line 255 of file multiboot.c.

◆ mbmemmap

#define mbmemmap   __use_data16 ( mbmemmap )

Definition at line 260 of file multiboot.c.

◆ mbmodules

#define mbmodules   __use_data16 ( mbmodules )

Definition at line 264 of file multiboot.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ FEATURE()

FEATURE ( FEATURE_IMAGE  ,
"MBOOT"  ,
DHCP_EB_FEATURE_MULTIBOOT  ,
 
)

◆ __bss16_array() [1/4]

static char __bss16_array ( mb_cmdlines  )
static

Multiboot module command lines.

◆ multiboot_build_memmap()

static void multiboot_build_memmap ( struct image image,
struct multiboot_info mbinfo,
struct multiboot_memory_map mbmemmap,
unsigned int  limit 
)
static

Build multiboot memory map.

Parameters
imageMultiboot image
mbinfoMultiboot information structure
mbmemmapMultiboot memory map
limitMaxmimum number of memory map entries

Definition at line 113 of file multiboot.c.

116  {
117  struct memory_map memmap;
118  unsigned int i;
119 
120  /* Get memory map */
121  get_memmap ( &memmap );
122 
123  /* Translate into multiboot format */
124  memset ( mbmemmap, 0, sizeof ( *mbmemmap ) );
125  for ( i = 0 ; i < memmap.count ; i++ ) {
126  if ( i >= limit ) {
127  DBGC ( image, "MULTIBOOT %p limit of %d memmap "
128  "entries reached\n", image, limit );
129  break;
130  }
131  mbmemmap[i].size = ( sizeof ( mbmemmap[i] ) -
132  sizeof ( mbmemmap[i].size ) );
133  mbmemmap[i].base_addr = memmap.regions[i].start;
134  mbmemmap[i].length = ( memmap.regions[i].end -
135  memmap.regions[i].start );
136  mbmemmap[i].type = MBMEM_RAM;
137  mbinfo->mmap_length += sizeof ( mbmemmap[i] );
138  if ( memmap.regions[i].start == 0 )
139  mbinfo->mem_lower = ( memmap.regions[i].end / 1024 );
140  if ( memmap.regions[i].start == 0x100000 )
141  mbinfo->mem_upper = ( ( memmap.regions[i].end -
142  0x100000 ) / 1024 );
143  }
144 }
void get_memmap(struct memory_map *memmap)
Get memory map.
#define DBGC(...)
Definition: compiler.h:505
An executable image.
Definition: image.h:24
A memory map.
Definition: io.h:499
#define mbinfo
Definition: multiboot.c:251
uint16_t limit
Limit.
Definition: librm.h:250
#define MBMEM_RAM
Usable RAM.
Definition: multiboot.h:147
#define mbmemmap
Definition: multiboot.c:260
uint8_t size
Entry size (in 32-bit words)
Definition: ena.h:16
void * memset(void *dest, int character, size_t len) __nonnull

References memory_map::count, DBGC, memory_region::end, get_memmap(), limit, mbinfo, MBMEM_RAM, mbmemmap, memset(), memory_map::regions, size, and memory_region::start.

Referenced by multiboot_exec().

◆ multiboot_add_cmdline()

static physaddr_t multiboot_add_cmdline ( struct image image)
static

Add command line in base memory.

Parameters
imageImage
Return values
physaddrPhysical address of command line

Definition at line 152 of file multiboot.c.

152  {
153  char *mb_cmdline = ( mb_cmdlines + mb_cmdline_offset );
154  size_t remaining = ( sizeof ( mb_cmdlines ) - mb_cmdline_offset );
155  char *buf = mb_cmdline;
156  size_t len;
157 
158  /* Copy image URI to base memory buffer as start of command line */
159  len = ( format_uri ( image->uri, buf, remaining ) + 1 /* NUL */ );
160  if ( len > remaining )
161  len = remaining;
163  buf += len;
164  remaining -= len;
165 
166  /* Copy command line to base memory buffer, if present */
167  if ( image->cmdline ) {
168  mb_cmdline_offset--; /* Strip NUL */
169  buf--;
170  remaining++;
171  len = ( snprintf ( buf, remaining, " %s",
172  image->cmdline ) + 1 /* NUL */ );
173  if ( len > remaining )
174  len = remaining;
176  }
177 
178  return virt_to_phys ( mb_cmdline );
179 }
An executable image.
Definition: image.h:24
static __always_inline unsigned long virt_to_phys(volatile const void *addr)
Convert virtual address to a physical address.
Definition: uaccess.h:287
#define mb_cmdlines
Definition: multiboot.c:100
char * cmdline
Command line to pass to image.
Definition: image.h:39
size_t format_uri(const struct uri *uri, char *buf, size_t len)
Format URI.
Definition: uri.c:471
static unsigned int mb_cmdline_offset
Offset within module command lines.
Definition: multiboot.c:103
struct uri * uri
URI of image.
Definition: image.h:32
uint32_t len
Length.
Definition: ena.h:14
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382

References image::cmdline, format_uri(), len, mb_cmdline_offset, mb_cmdlines, snprintf(), image::uri, and virt_to_phys().

Referenced by multiboot_add_modules(), and multiboot_exec().

◆ multiboot_add_modules()

static int multiboot_add_modules ( struct image image,
physaddr_t  start,
struct multiboot_info mbinfo,
struct multiboot_module modules,
unsigned int  limit 
)
static

Add multiboot modules.

Parameters
imageMultiboot image
startStart address for modules
mbinfoMultiboot information structure
modulesMultiboot module list
Return values
rcReturn status code

Definition at line 190 of file multiboot.c.

193  {
194  struct image *module_image;
195  struct multiboot_module *module;
196  int rc;
197 
198  /* Add each image as a multiboot module */
199  for_each_image ( module_image ) {
200 
201  if ( mbinfo->mods_count >= limit ) {
202  DBGC ( image, "MULTIBOOT %p limit of %d modules "
203  "reached\n", image, limit );
204  break;
205  }
206 
207  /* Skip hidden images */
208  if ( module_image->flags & IMAGE_HIDDEN )
209  continue;
210 
211  /* Page-align the module */
212  start = ( ( start + 0xfff ) & ~0xfff );
213 
214  /* Prepare segment */
215  if ( ( rc = prep_segment ( phys_to_user ( start ),
216  module_image->len,
217  module_image->len ) ) != 0 ) {
218  DBGC ( image, "MULTIBOOT %p could not prepare module "
219  "%s: %s\n", image, module_image->name,
220  strerror ( rc ) );
221  return rc;
222  }
223 
224  /* Copy module */
225  memcpy_user ( phys_to_user ( start ), 0,
226  module_image->data, 0, module_image->len );
227 
228  /* Add module to list */
229  module = &modules[mbinfo->mods_count++];
230  module->mod_start = start;
231  module->mod_end = ( start + module_image->len );
232  module->string = multiboot_add_cmdline ( module_image );
233  module->reserved = 0;
234  DBGC ( image, "MULTIBOOT %p module %s is [%x,%x)\n",
235  image, module_image->name, module->mod_start,
236  module->mod_end );
237  start += module_image->len;
238  }
239 
240  return 0;
241 }
unsigned int flags
Flags.
Definition: image.h:36
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
userptr_t data
Raw file image.
Definition: image.h:41
static physaddr_t multiboot_add_cmdline(struct image *image)
Add command line in base memory.
Definition: multiboot.c:152
#define DBGC(...)
Definition: compiler.h:505
userptr_t phys_to_user(unsigned long phys_addr)
Convert physical address to user pointer.
An executable image.
Definition: image.h:24
#define mbinfo
Definition: multiboot.c:251
A multiboot module structure.
Definition: multiboot.h:131
uint32_t start
Starting offset.
Definition: netvsc.h:12
uint32_t mod_end
Definition: multiboot.h:133
int prep_segment(userptr_t segment, size_t filesz, size_t memsz)
Prepare segment for loading.
Definition: segment.c:60
#define for_each_image(image)
Iterate over all registered images.
Definition: image.h:172
uint16_t limit
Limit.
Definition: librm.h:250
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:43
#define IMAGE_HIDDEN
Image will be hidden from enumeration.
Definition: image.h:73
uint32_t reserved
Definition: multiboot.h:135
uint32_t mod_start
Definition: multiboot.h:132
uint32_t string
Definition: multiboot.h:134
char * name
Name.
Definition: image.h:34
void memcpy_user(userptr_t dest, off_t dest_off, userptr_t src, off_t src_off, size_t len)
Copy data between user buffers.

References image::data, DBGC, image::flags, for_each_image, IMAGE_HIDDEN, image::len, limit, mbinfo, memcpy_user(), multiboot_module::mod_end, multiboot_module::mod_start, multiboot_add_cmdline(), image::name, phys_to_user(), prep_segment(), rc, multiboot_module::reserved, start, strerror(), and multiboot_module::string.

Referenced by multiboot_exec().

◆ __bss16()

static struct multiboot_info __bss16 ( mbinfo  )
static

The multiboot information structure.

Kept in base memory because some OSes won't find it elsewhere, along with the other structures belonging to the Multiboot information table.

◆ __bss16_array() [2/4]

static char __bss16_array ( mb_bootloader_name  )
static

The multiboot bootloader name.

◆ __bss16_array() [3/4]

static struct multiboot_memory_map __bss16_array ( mbmemmap  )
static

The multiboot memory map.

◆ __bss16_array() [4/4]

static struct multiboot_module __bss16_array ( mbmodules  )
static

The multiboot module list.

◆ multiboot_find_header()

static int multiboot_find_header ( struct image image,
struct multiboot_header_info hdr 
)
static

Find multiboot header.

Parameters
imageMultiboot file
hdrMultiboot header descriptor to fill in
Return values
rcReturn status code

Definition at line 273 of file multiboot.c.

274  {
275  uint32_t buf[64];
276  size_t offset;
277  unsigned int buf_idx;
279 
280  /* Scan through first 8kB of image file 256 bytes at a time.
281  * (Use the buffering to avoid the overhead of a
282  * copy_from_user() for every dword.)
283  */
284  for ( offset = 0 ; offset < 8192 ; offset += sizeof ( buf[0] ) ) {
285  /* Check for end of image */
286  if ( offset > image->len )
287  break;
288  /* Refill buffer if applicable */
289  buf_idx = ( ( offset % sizeof ( buf ) ) / sizeof ( buf[0] ) );
290  if ( buf_idx == 0 ) {
291  copy_from_user ( buf, image->data, offset,
292  sizeof ( buf ) );
293  }
294  /* Check signature */
295  if ( buf[buf_idx] != MULTIBOOT_HEADER_MAGIC )
296  continue;
297  /* Copy header and verify checksum */
298  copy_from_user ( &hdr->mb, image->data, offset,
299  sizeof ( hdr->mb ) );
300  checksum = ( hdr->mb.magic + hdr->mb.flags +
301  hdr->mb.checksum );
302  if ( checksum != 0 )
303  continue;
304  /* Record offset of multiboot header and return */
305  hdr->offset = offset;
306  return 0;
307  }
308 
309  /* No multiboot header found */
310  return -ENOEXEC;
311 }
userptr_t data
Raw file image.
Definition: image.h:41
struct golan_inbox_hdr hdr
Message header.
Definition: CIB_PRM.h:28
#define ENOEXEC
Exec format error.
Definition: errno.h:519
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
An executable image.
Definition: image.h:24
#define MULTIBOOT_HEADER_MAGIC
The magic number for the Multiboot header.
Definition: multiboot.h:16
uint8_t checksum
Checksum.
Definition: pnpbios.c:37
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
size_t len
Length of raw file image.
Definition: image.h:43
unsigned int uint32_t
Definition: stdint.h:12

References checksum, copy_from_user(), image::data, ENOEXEC, hdr, image::len, MULTIBOOT_HEADER_MAGIC, and offset.

Referenced by multiboot_exec(), and multiboot_probe().

◆ multiboot_load_raw()

static int multiboot_load_raw ( struct image image,
struct multiboot_header_info hdr,
physaddr_t entry,
physaddr_t max 
)
static

Load raw multiboot image into memory.

Parameters
imageMultiboot file
hdrMultiboot header descriptor
Return values
entryEntry point
maxMaximum used address
rcReturn status code

Definition at line 322 of file multiboot.c.

324  {
325  size_t offset;
326  size_t filesz;
327  size_t memsz;
329  int rc;
330 
331  /* Sanity check */
332  if ( ! ( hdr->mb.flags & MB_FLAG_RAW ) ) {
333  DBGC ( image, "MULTIBOOT %p is not flagged as a raw image\n",
334  image );
335  return -EINVAL;
336  }
337 
338  /* Verify and prepare segment */
339  offset = ( hdr->offset - hdr->mb.header_addr + hdr->mb.load_addr );
340  filesz = ( hdr->mb.load_end_addr ?
341  ( hdr->mb.load_end_addr - hdr->mb.load_addr ) :
342  ( image->len - offset ) );
343  memsz = ( hdr->mb.bss_end_addr ?
344  ( hdr->mb.bss_end_addr - hdr->mb.load_addr ) : filesz );
345  buffer = phys_to_user ( hdr->mb.load_addr );
346  if ( ( rc = prep_segment ( buffer, filesz, memsz ) ) != 0 ) {
347  DBGC ( image, "MULTIBOOT %p could not prepare segment: %s\n",
348  image, strerror ( rc ) );
349  return rc;
350  }
351 
352  /* Copy image to segment */
353  memcpy_user ( buffer, 0, image->data, offset, filesz );
354 
355  /* Record execution entry point and maximum used address */
356  *entry = hdr->mb.entry_addr;
357  *max = ( hdr->mb.load_addr + memsz );
358 
359  return 0;
360 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
userptr_t data
Raw file image.
Definition: image.h:41
#define max(x, y)
Definition: ath.h:39
struct golan_inbox_hdr hdr
Message header.
Definition: CIB_PRM.h:28
#define DBGC(...)
Definition: compiler.h:505
userptr_t phys_to_user(unsigned long phys_addr)
Convert physical address to user pointer.
uint32_t buffer
Buffer index (or NETVSC_RNDIS_NO_BUFFER)
Definition: netvsc.h:16
An executable image.
Definition: image.h:24
int prep_segment(userptr_t segment, size_t filesz, size_t memsz)
Prepare segment for loading.
Definition: segment.c:60
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
#define MB_FLAG_RAW
Image is a raw multiboot image (not ELF)
Definition: multiboot.h:28
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
union aes_table_entry entry[256]
Table entries, indexed by S(N)
Definition: aes.c:26
size_t len
Length of raw file image.
Definition: image.h:43
void memcpy_user(userptr_t dest, off_t dest_off, userptr_t src, off_t src_off, size_t len)
Copy data between user buffers.
unsigned long userptr_t
A pointer to a user buffer.
Definition: uaccess.h:33

References buffer, image::data, DBGC, EINVAL, entry, hdr, image::len, max, MB_FLAG_RAW, memcpy_user(), offset, phys_to_user(), prep_segment(), rc, and strerror().

Referenced by multiboot_exec().

◆ multiboot_load_elf()

static int multiboot_load_elf ( struct image image,
physaddr_t entry,
physaddr_t max 
)
static

Load ELF multiboot image into memory.

Parameters
imageMultiboot file
Return values
entryEntry point
maxMaximum used address
rcReturn status code

Definition at line 370 of file multiboot.c.

371  {
372  int rc;
373 
374  /* Load ELF image*/
375  if ( ( rc = elf_load ( image, entry, max ) ) != 0 ) {
376  DBGC ( image, "MULTIBOOT %p ELF image failed to load: %s\n",
377  image, strerror ( rc ) );
378  return rc;
379  }
380 
381  return 0;
382 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define max(x, y)
Definition: ath.h:39
#define DBGC(...)
Definition: compiler.h:505
An executable image.
Definition: image.h:24
int elf_load(struct image *image, physaddr_t *entry, physaddr_t *max)
Load ELF image into memory.
Definition: elf.c:201
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
union aes_table_entry entry[256]
Table entries, indexed by S(N)
Definition: aes.c:26

References DBGC, elf_load(), entry, max, rc, and strerror().

Referenced by multiboot_exec().

◆ multiboot_exec()

static int multiboot_exec ( struct image image)
static

Execute multiboot image.

Parameters
imageMultiboot image
Return values
rcReturn status code

Definition at line 390 of file multiboot.c.

390  {
391  struct multiboot_header_info hdr;
393  physaddr_t max;
394  int rc;
395 
396  /* Locate multiboot header, if present */
397  if ( ( rc = multiboot_find_header ( image, &hdr ) ) != 0 ) {
398  DBGC ( image, "MULTIBOOT %p has no multiboot header\n",
399  image );
400  return rc;
401  }
402 
403  /* Abort if we detect flags that we cannot support */
404  if ( hdr.mb.flags & MB_UNSUPPORTED_FLAGS ) {
405  DBGC ( image, "MULTIBOOT %p flags %08x not supported\n",
406  image, ( hdr.mb.flags & MB_UNSUPPORTED_FLAGS ) );
407  return -ENOTSUP;
408  }
409 
410  /* There is technically a bit MB_FLAG_RAW to indicate whether
411  * this is an ELF or a raw image. In practice, grub will use
412  * the ELF header if present, and Solaris relies on this
413  * behaviour.
414  */
415  if ( ( ( rc = multiboot_load_elf ( image, &entry, &max ) ) != 0 ) &&
416  ( ( rc = multiboot_load_raw ( image, &hdr, &entry, &max ) ) != 0 ))
417  return rc;
418 
419  /* Populate multiboot information structure */
420  memset ( &mbinfo, 0, sizeof ( mbinfo ) );
423  mb_cmdline_offset = 0;
424  mbinfo.cmdline = multiboot_add_cmdline ( image );
425  mbinfo.mods_addr = virt_to_phys ( mbmodules );
426  mbinfo.mmap_addr = virt_to_phys ( mbmemmap );
428  "iPXE %s", product_version );
429  mbinfo.boot_loader_name = virt_to_phys ( mb_bootloader_name );
431  ( sizeof ( mbmodules ) /
432  sizeof ( mbmodules[0] ) ) ) ) !=0)
433  return rc;
434 
435  /* Multiboot images may not return and have no callback
436  * interface, so shut everything down prior to booting the OS.
437  */
438  shutdown_boot();
439 
440  /* Build memory map after unhiding bootloader memory regions as part of
441  * shutting everything down.
442  */
444  ( sizeof(mbmemmap) / sizeof(mbmemmap[0]) ) );
445 
446  /* Jump to OS with flat physical addressing */
447  DBGC ( image, "MULTIBOOT %p starting execution at %lx\n",
448  image, entry );
449  __asm__ __volatile__ ( PHYS_CODE ( "pushl %%ebp\n\t"
450  "call *%%edi\n\t"
451  "popl %%ebp\n\t" )
452  : : "a" ( MULTIBOOT_BOOTLOADER_MAGIC ),
453  "b" ( virt_to_phys ( &mbinfo ) ),
454  "D" ( entry )
455  : "ecx", "edx", "esi", "memory" );
456 
457  DBGC ( image, "MULTIBOOT %p returned\n", image );
458 
459  /* It isn't safe to continue after calling shutdown() */
460  while ( 1 ) {}
461 
462  return -ECANCELED; /* -EIMPOSSIBLE, anyone? */
463 }
#define PHYS_CODE(asm_code_str)
Definition: librm.h:281
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define MBI_FLAG_CMDLINE
Multiboot information structure cmdline field is valid.
Definition: multiboot.h:45
#define max(x, y)
Definition: ath.h:39
static int multiboot_add_modules(struct image *image, physaddr_t start, struct multiboot_info *mbinfo, struct multiboot_module *modules, unsigned int limit)
Add multiboot modules.
Definition: multiboot.c:190
struct golan_inbox_hdr hdr
Message header.
Definition: CIB_PRM.h:28
static physaddr_t multiboot_add_cmdline(struct image *image)
Add command line in base memory.
Definition: multiboot.c:152
#define DBGC(...)
Definition: compiler.h:505
An executable image.
Definition: image.h:24
#define mbinfo
Definition: multiboot.c:251
A multiboot header descriptor.
Definition: multiboot.c:91
static __always_inline unsigned long virt_to_phys(volatile const void *addr)
Convert virtual address to a physical address.
Definition: uaccess.h:287
#define MBI_FLAG_MMAP
Multiboot information structure memory map is valid.
Definition: multiboot.h:57
#define ECANCELED
Operation canceled.
Definition: errno.h:343
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
static void multiboot_build_memmap(struct image *image, struct multiboot_info *mbinfo, struct multiboot_memory_map *mbmemmap, unsigned int limit)
Build multiboot memory map.
Definition: multiboot.c:113
static unsigned int mb_cmdline_offset
Offset within module command lines.
Definition: multiboot.c:103
union aes_table_entry entry[256]
Table entries, indexed by S(N)
Definition: aes.c:26
const char product_version[]
Product version string.
Definition: version.c:70
#define mb_bootloader_name
Definition: multiboot.c:255
static int multiboot_find_header(struct image *image, struct multiboot_header_info *hdr)
Find multiboot header.
Definition: multiboot.c:273
static int multiboot_load_elf(struct image *image, physaddr_t *entry, physaddr_t *max)
Load ELF multiboot image into memory.
Definition: multiboot.c:370
__asm__ __volatile__("\n1:\n\t" "movb -1(%3,%1), %%al\n\t" "stosb\n\t" "loop 1b\n\t" "xorl %%eax, %%eax\n\t" "mov %4, %1\n\t" "rep stosb\n\t" :"=&D"(discard_D), "=&c"(discard_c), "+m"(*value) :"r"(data), "g"(pad_len), "0"(value0), "1"(len) :"eax")
unsigned long physaddr_t
Definition: stdint.h:20
__asm__(".section \".rodata\", \"a\", " PROGBITS "\n\t" "\nprivate_key_data:\n\t" ".size private_key_data, ( . - private_key_data )\n\t" ".equ private_key_len, ( . - private_key_data )\n\t" ".previous\n\t")
#define MULTIBOOT_BOOTLOADER_MAGIC
The magic number passed by a Multiboot-compliant boot loader.
Definition: multiboot.h:36
#define MBI_FLAG_MODS
Multiboot information structure module fields are valid.
Definition: multiboot.h:48
#define MBI_FLAG_MEM
Multiboot information structure mem_* fields are valid.
Definition: multiboot.h:39
#define mbmemmap
Definition: multiboot.c:260
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382
static int multiboot_load_raw(struct image *image, struct multiboot_header_info *hdr, physaddr_t *entry, physaddr_t *max)
Load raw multiboot image into memory.
Definition: multiboot.c:322
#define MB_UNSUPPORTED_FLAGS
Multiboot flags that we don't support.
Definition: multiboot.c:88
#define mbmodules
Definition: multiboot.c:264
#define MBI_FLAG_LOADER
Multiboot information structure boot loader name field is valid.
Definition: multiboot.h:66
static void shutdown_boot(void)
Shut down system for OS boot.
Definition: init.h:76
void * memset(void *dest, int character, size_t len) __nonnull

References __asm__(), __volatile__(), DBGC, ECANCELED, ENOTSUP, entry, hdr, max, mb_bootloader_name, mb_cmdline_offset, MB_UNSUPPORTED_FLAGS, MBI_FLAG_CMDLINE, MBI_FLAG_LOADER, MBI_FLAG_MEM, MBI_FLAG_MMAP, MBI_FLAG_MODS, mbinfo, mbmemmap, mbmodules, memset(), multiboot_add_cmdline(), multiboot_add_modules(), MULTIBOOT_BOOTLOADER_MAGIC, multiboot_build_memmap(), multiboot_find_header(), multiboot_load_elf(), multiboot_load_raw(), PHYS_CODE, product_version, rc, shutdown_boot(), snprintf(), and virt_to_phys().

◆ multiboot_probe()

static int multiboot_probe ( struct image image)
static

Probe multiboot image.

Parameters
imageMultiboot file
Return values
rcReturn status code

Definition at line 471 of file multiboot.c.

471  {
472  struct multiboot_header_info hdr;
473  int rc;
474 
475  /* Locate multiboot header, if present */
476  if ( ( rc = multiboot_find_header ( image, &hdr ) ) != 0 ) {
477  DBGC ( image, "MULTIBOOT %p has no multiboot header\n",
478  image );
479  return rc;
480  }
481  DBGC ( image, "MULTIBOOT %p found header with flags %08x\n",
482  image, hdr.mb.flags );
483 
484  return 0;
485 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct golan_inbox_hdr hdr
Message header.
Definition: CIB_PRM.h:28
#define DBGC(...)
Definition: compiler.h:505
An executable image.
Definition: image.h:24
A multiboot header descriptor.
Definition: multiboot.c:91
static int multiboot_find_header(struct image *image, struct multiboot_header_info *hdr)
Find multiboot header.
Definition: multiboot.c:273

References DBGC, hdr, multiboot_find_header(), and rc.

◆ __image_type()

struct image_type multiboot_image_type __image_type ( PROBE_MULTIBOOT  )

Multiboot image type.

Variable Documentation

◆ mb_cmdline_offset

unsigned int mb_cmdline_offset
static

Offset within module command lines.

Definition at line 103 of file multiboot.c.

Referenced by multiboot_add_cmdline(), and multiboot_exec().