iPXE
Functions
imgmgmt.c File Reference

Image management. More...

#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <ipxe/image.h>
#include <ipxe/downloader.h>
#include <ipxe/monojob.h>
#include <ipxe/open.h>
#include <ipxe/uri.h>
#include <usr/imgmgmt.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
int imgdownload (struct uri *uri, unsigned long timeout, struct image **image)
 Download a new image. More...
 
int imgdownload_string (const char *uri_string, unsigned long timeout, struct image **image)
 Download a new image. More...
 
int imgacquire (const char *name_uri, unsigned long timeout, struct image **image)
 Acquire an image. More...
 
void imgstat (struct image *image)
 Display status of an image. More...
 
int imgmem (const char *name, const void *data, size_t len)
 Create image from block of memory. More...
 

Detailed Description

Image management.

Definition in file imgmgmt.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ imgdownload()

int imgdownload ( struct uri uri,
unsigned long  timeout,
struct image **  image 
)

Download a new image.

Parameters
uriURI
timeoutDownload timeout
imageImage to fill in
Return values
rcReturn status code

Definition at line 52 of file imgmgmt.c.

53  {
54  struct uri uri_redacted;
55  char *uri_string_redacted;
56  int rc;
57 
58  /* Construct redacted URI */
59  memcpy ( &uri_redacted, uri, sizeof ( uri_redacted ) );
60  uri_redacted.user = NULL;
61  uri_redacted.password = NULL;
62  uri_redacted.equery = NULL;
63  uri_redacted.efragment = NULL;
64  uri_string_redacted = format_uri_alloc ( &uri_redacted );
65  if ( ! uri_string_redacted ) {
66  rc = -ENOMEM;
67  goto err_uri_string;
68  }
69 
70  /* Resolve URI */
71  uri = resolve_uri ( cwuri, uri );
72  if ( ! uri ) {
73  rc = -ENOMEM;
74  goto err_resolve_uri;
75  }
76 
77  /* Allocate image */
78  *image = alloc_image ( uri );
79  if ( ! *image ) {
80  rc = -ENOMEM;
81  goto err_alloc_image;
82  }
83 
84  /* Create downloader */
85  if ( ( rc = create_downloader ( &monojob, *image ) ) != 0 ) {
86  printf ( "Could not start download: %s\n", strerror ( rc ) );
87  goto err_create_downloader;
88  }
89 
90  /* Wait for download to complete */
91  if ( ( rc = monojob_wait ( uri_string_redacted, timeout ) ) != 0 )
92  goto err_monojob_wait;
93 
94  /* Register image */
95  if ( ( rc = register_image ( *image ) ) != 0 ) {
96  printf ( "Could not register image: %s\n", strerror ( rc ) );
97  goto err_register_image;
98  }
99 
100  err_register_image:
101  err_monojob_wait:
102  err_create_downloader:
103  image_put ( *image );
104  err_alloc_image:
105  uri_put ( uri );
106  err_resolve_uri:
107  free ( uri_string_redacted );
108  err_uri_string:
109  return rc;
110 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:464
static void uri_put(struct uri *uri)
Decrement URI reference count.
Definition: uri.h:205
int monojob_wait(const char *string, unsigned long timeout)
Wait for single foreground job to complete.
Definition: monojob.c:81
An executable image.
Definition: image.h:23
#define ENOMEM
Not enough space.
Definition: errno.h:534
void * memcpy(void *dest, const void *src, size_t len) __nonnull
struct interface monojob
Definition: monojob.c:56
char * format_uri_alloc(const struct uri *uri)
Format URI.
Definition: uri.c:540
int create_downloader(struct interface *job, struct image *image)
Instantiate a downloader.
Definition: downloader.c:262
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
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
static void image_put(struct image *image)
Decrement reference count on an image.
Definition: image.h:249
A Uniform Resource Identifier.
Definition: uri.h:64
void timeout(int)
struct uri * resolve_uri(const struct uri *base_uri, struct uri *relative_uri)
Resolve base+relative URI.
Definition: uri.c:694
struct uri * cwuri
Current working URI.
Definition: cwuri.c:38
struct image * alloc_image(struct uri *uri)
Allocate executable image.
Definition: image.c:123
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References alloc_image(), create_downloader(), cwuri, uri::efragment, ENOMEM, uri::equery, format_uri_alloc(), free, image_put(), memcpy(), monojob, monojob_wait(), NULL, uri::password, printf(), rc, register_image(), resolve_uri(), strerror(), timeout(), uri_put(), and uri::user.

Referenced by imgdownload_string(), and uriboot().

◆ imgdownload_string()

int imgdownload_string ( const char *  uri_string,
unsigned long  timeout,
struct image **  image 
)

Download a new image.

Parameters
uri_stringURI string
timeoutDownload timeout
imageImage to fill in
Return values
rcReturn status code

Definition at line 120 of file imgmgmt.c.

121  {
122  struct uri *uri;
123  int rc;
124 
125  if ( ! ( uri = parse_uri ( uri_string ) ) )
126  return -ENOMEM;
127 
128  rc = imgdownload ( uri, timeout, image );
129 
130  uri_put ( uri );
131  return rc;
132 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static void uri_put(struct uri *uri)
Decrement URI reference count.
Definition: uri.h:205
An executable image.
Definition: image.h:23
#define ENOMEM
Not enough space.
Definition: errno.h:534
A Uniform Resource Identifier.
Definition: uri.h:64
int imgdownload(struct uri *uri, unsigned long timeout, struct image **image)
Download a new image.
Definition: imgmgmt.c:52
void timeout(int)
struct uri * parse_uri(const char *uri_string)
Parse URI.
Definition: uri.c:296

References ENOMEM, imgdownload(), parse_uri(), rc, timeout(), and uri_put().

Referenced by comboot_fetch_kernel(), and imgacquire().

◆ imgacquire()

int imgacquire ( const char *  name_uri,
unsigned long  timeout,
struct image **  image 
)

Acquire an image.

Parameters
name_uriName or URI string
timeoutDownload timeout
imageImage to fill in
Return values
rcReturn status code

Definition at line 142 of file imgmgmt.c.

143  {
144 
145  /* If we already have an image with the specified name, use it */
146  *image = find_image ( name_uri );
147  if ( *image )
148  return 0;
149 
150  /* Otherwise, download a new image */
151  return imgdownload_string ( name_uri, timeout, image );
152 }
struct image * find_image(const char *name)
Find image by name.
Definition: image.c:375
An executable image.
Definition: image.h:23
int imgdownload_string(const char *uri_string, unsigned long timeout, struct image **image)
Download a new image.
Definition: imgmgmt.c:120
void timeout(int)

References find_image(), imgdownload_string(), and timeout().

Referenced by cert_exec(), console_exec(), digest_exec(), efi_autoexec_filesystem(), efi_autoexec_network(), fdt_exec(), imgdecrypt_exec(), imgextract_exec(), imgverify_exec(), and shim_exec().

◆ imgstat()

void imgstat ( struct image image)

Display status of an image.

Parameters
imageExecutable/loadable image

Definition at line 159 of file imgmgmt.c.

159  {
160  struct image_tag *tag;
161 
162  printf ( "%s : %zd bytes", image->name, image->len );
163  if ( image->type )
164  printf ( " [%s]", image->type->name );
166  if ( tag->image == image )
167  printf ( " [%s]", tag->name );
168  }
169  if ( image->flags & IMAGE_TRUSTED )
170  printf ( " [TRUSTED]" );
172  printf ( " [AUTOFREE]" );
173  if ( image->flags & IMAGE_HIDDEN )
174  printf ( " [HIDDEN]" );
175  if ( image->cmdline )
176  printf ( " \"%s\"", image->cmdline );
177  printf ( "\n" );
178 }
unsigned int flags
Flags.
Definition: image.h:39
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:464
An image tag.
Definition: image.h:172
struct image_type * type
Image type, if known.
Definition: image.h:58
An executable image.
Definition: image.h:23
#define IMAGE_AUTO_UNREGISTER
Image will be automatically unregistered after execution.
Definition: image.h:82
char * name
Name of this image type.
Definition: image.h:96
char * cmdline
Command line to pass to image.
Definition: image.h:42
#define IMAGE_TAGS
Image tag table.
Definition: image.h:180
size_t len
Length of raw file image.
Definition: image.h:55
#define IMAGE_HIDDEN
Image will be hidden from enumeration.
Definition: image.h:85
#define IMAGE_TRUSTED
Image is trusted.
Definition: image.h:79
#define for_each_table_entry(pointer, table)
Iterate through all entries within a linker table.
Definition: tables.h:385
uint64_t tag
Identity tag.
Definition: edd.h:30
char * name
Name.
Definition: image.h:37

References image::cmdline, image::flags, for_each_table_entry, IMAGE_AUTO_UNREGISTER, IMAGE_HIDDEN, IMAGE_TAGS, IMAGE_TRUSTED, image::len, image::name, image_type::name, printf(), tag, and image::type.

Referenced by imgstat_exec(), and uriboot().

◆ imgmem()

int imgmem ( const char *  name,
const void *  data,
size_t  len 
)

Create image from block of memory.

Parameters
nameName
dataImage data
lenLength
Return values
rcReturn status code

Definition at line 188 of file imgmgmt.c.

188  {
189  struct image *image;
190 
191  /* Create image */
192  image = image_memory ( name, data, len );
193  if ( ! image ) {
194  printf ( "Could not create image\n" );
195  return -ENOMEM;
196  }
197 
198  return 0;
199 }
const char * name
Definition: ath9k_hw.c:1984
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:464
An executable image.
Definition: image.h:23
#define ENOMEM
Not enough space.
Definition: errno.h:534
ring len
Length.
Definition: dwmac.h:231
struct image * image_memory(const char *name, const void *data, size_t len)
Create registered image from block of memory.
Definition: image.c:608
uint8_t data[48]
Additional event data.
Definition: ena.h:22

References data, ENOMEM, image_memory(), len, name, and printf().

Referenced by imgmem_exec().