iPXE
image.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006 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 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 #include <stddef.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <assert.h>
33 #include <libgen.h>
34 #include <syslog.h>
35 #include <ipxe/list.h>
36 #include <ipxe/umalloc.h>
37 #include <ipxe/uri.h>
38 #include <ipxe/image.h>
39 
40 /** @file
41  *
42  * Executable images
43  *
44  */
45 
46 /* Disambiguate the various error causes */
47 #define EACCES_UNTRUSTED \
48  __einfo_error ( EINFO_EACCES_UNTRUSTED )
49 #define EINFO_EACCES_UNTRUSTED \
50  __einfo_uniqify ( EINFO_EACCES, 0x01, "Untrusted image" )
51 #define EACCES_PERMANENT \
52  __einfo_error ( EINFO_EACCES_PERMANENT )
53 #define EINFO_EACCES_PERMANENT \
54  __einfo_uniqify ( EINFO_EACCES, 0x02, "Trust requirement is permanent" )
55 
56 /** List of registered images */
58 
59 /** Image selected for execution */
61  .name = "SELECTED",
62 };
63 
64 /** Currently-executing image */
66  .name = "CURRENT",
67 };
68 
69 /** Current image trust requirement */
70 static int require_trusted_images = 0;
71 
72 /** Prevent changes to image trust requirement */
74 
75 /**
76  * Free executable image
77  *
78  * @v refcnt Reference counter
79  */
80 static void free_image ( struct refcnt *refcnt ) {
81  struct image *image = container_of ( refcnt, struct image, refcnt );
82  struct image_tag *tag;
83 
84  DBGC ( image, "IMAGE %s freed\n", image->name );
86  if ( tag->image == image )
87  tag->image = NULL;
88  }
89  free ( image->name );
90  free ( image->cmdline );
91  uri_put ( image->uri );
92  ufree ( image->data );
94  free ( image );
95 }
96 
97 /**
98  * Allocate executable image
99  *
100  * @v uri URI, or NULL
101  * @ret image Executable image
102  */
103 struct image * alloc_image ( struct uri *uri ) {
104  struct image *image;
105  int rc;
106 
107  /* Allocate image */
108  image = zalloc ( sizeof ( *image ) );
109  if ( ! image )
110  goto err_alloc;
111 
112  /* Initialise image */
114  if ( uri && ( ( rc = image_set_uri ( image, uri ) ) != 0 ) )
115  goto err_set_uri;
116 
117  return image;
118 
119  err_set_uri:
120  image_put ( image );
121  err_alloc:
122  return NULL;
123 }
124 
125 /**
126  * Set image URI
127  *
128  * @v image Image
129  * @v uri New image URI
130  * @ret rc Return status code
131  */
132 int image_set_uri ( struct image *image, struct uri *uri ) {
133  const char *name;
134  int rc;
135 
136  /* Set name, if image does not already have one */
137  if ( ! ( image->name && image->name[0] ) ) {
138  name = ( uri->path ? uri->path : uri->opaque );
139  if ( name ) {
140  name = basename ( ( char * ) name );
141  if ( ( rc = image_set_name ( image, name ) ) != 0 )
142  return rc;
143  }
144  }
145 
146  /* Update image URI */
147  uri_put ( image->uri );
148  image->uri = uri_get ( uri );
149 
150  return 0;
151 }
152 
153 /**
154  * Set image name
155  *
156  * @v image Image
157  * @v name New image name
158  * @ret rc Return status code
159  */
160 int image_set_name ( struct image *image, const char *name ) {
161  char *name_copy;
162 
163  /* Duplicate name */
164  name_copy = strdup ( name );
165  if ( ! name_copy )
166  return -ENOMEM;
167 
168  /* Replace existing name */
169  free ( image->name );
170  image->name = name_copy;
171 
172  return 0;
173 }
174 
175 /**
176  * Set image command line
177  *
178  * @v image Image
179  * @v cmdline New image command line, or NULL
180  * @ret rc Return status code
181  */
182 int image_set_cmdline ( struct image *image, const char *cmdline ) {
183 
184  free ( image->cmdline );
185  image->cmdline = NULL;
186  if ( cmdline ) {
187  image->cmdline = strdup ( cmdline );
188  if ( ! image->cmdline )
189  return -ENOMEM;
190  }
191  return 0;
192 }
193 
194 /**
195  * Set image length
196  *
197  * @v image Image
198  * @v len Length of image data
199  * @ret rc Return status code
200  */
201 int image_set_len ( struct image *image, size_t len ) {
202  userptr_t new;
203 
204  /* (Re)allocate image data */
205  new = urealloc ( image->data, len );
206  if ( ! new )
207  return -ENOMEM;
208  image->data = new;
209  image->len = len;
210 
211  return 0;
212 }
213 
214 /**
215  * Set image data
216  *
217  * @v image Image
218  * @v data Image data
219  * @v len Length of image data
220  * @ret rc Return status code
221  */
222 int image_set_data ( struct image *image, userptr_t data, size_t len ) {
223  int rc;
224 
225  /* Set image length */
226  if ( ( rc = image_set_len ( image, len ) ) != 0 )
227  return rc;
228 
229  /* Copy in new image data */
230  memcpy_user ( image->data, 0, data, 0, len );
231 
232  return 0;
233 }
234 
235 /**
236  * Determine image type
237  *
238  * @v image Executable image
239  * @ret rc Return status code
240  */
241 static int image_probe ( struct image *image ) {
242  struct image_type *type;
243  int rc;
244 
245  /* Try each type in turn */
247  if ( ( rc = type->probe ( image ) ) == 0 ) {
248  image->type = type;
249  DBGC ( image, "IMAGE %s is %s\n",
250  image->name, type->name );
251  return 0;
252  }
253  DBGC ( image, "IMAGE %s is not %s: %s\n", image->name,
254  type->name, strerror ( rc ) );
255  }
256 
257  DBGC ( image, "IMAGE %s format not recognised\n", image->name );
258  return -ENOTSUP;
259 }
260 
261 /**
262  * Register executable image
263  *
264  * @v image Executable image
265  * @ret rc Return status code
266  */
267 int register_image ( struct image *image ) {
268  static unsigned int imgindex = 0;
269  char name[8]; /* "imgXXXX" */
270  int rc;
271 
272  /* Create image name if it doesn't already have one */
273  if ( ! image->name ) {
274  snprintf ( name, sizeof ( name ), "img%d", imgindex++ );
275  if ( ( rc = image_set_name ( image, name ) ) != 0 )
276  return rc;
277  }
278 
279  /* Add to image list */
280  image_get ( image );
282  list_add_tail ( &image->list, &images );
283  DBGC ( image, "IMAGE %s at [%lx,%lx) registered\n",
284  image->name, user_to_phys ( image->data, 0 ),
285  user_to_phys ( image->data, image->len ) );
286 
287  /* Try to detect image type, if applicable. Ignore failures,
288  * since we expect to handle some unrecognised images
289  * (e.g. kernel initrds, multiboot modules, random files
290  * provided via our EFI virtual filesystem, etc).
291  */
292  if ( ! image->type )
293  image_probe ( image );
294 
295  return 0;
296 }
297 
298 /**
299  * Unregister executable image
300  *
301  * @v image Executable image
302  */
303 void unregister_image ( struct image *image ) {
304 
305  /* Do nothing unless image is registered */
306  if ( ! ( image->flags & IMAGE_REGISTERED ) )
307  return;
308 
309  DBGC ( image, "IMAGE %s unregistered\n", image->name );
310  list_del ( &image->list );
312  image_put ( image );
313 }
314 
315 /**
316  * Find image by name
317  *
318  * @v name Image name
319  * @ret image Executable image, or NULL
320  */
321 struct image * find_image ( const char *name ) {
322  struct image *image;
323 
324  for_each_image ( image ) {
325  if ( strcmp ( image->name, name ) == 0 )
326  return image;
327  }
328 
329  return NULL;
330 }
331 
332 /**
333  * Find image by tag
334  *
335  * @v tag Image tag
336  * @ret image Executable image, or NULL
337  */
338 struct image * find_image_tag ( struct image_tag *tag ) {
339  struct image *image;
340 
341  for_each_image ( image ) {
342  if ( tag->image == image )
343  return image;
344  }
345 
346  return NULL;
347 }
348 
349 /**
350  * Execute image
351  *
352  * @v image Executable image
353  * @ret rc Return status code
354  *
355  * The image must already be registered. Note that executing an image
356  * may cause it to unregister itself. The caller must therefore
357  * assume that the image pointer becomes invalid.
358  */
359 int image_exec ( struct image *image ) {
360  struct image *saved_current_image;
361  struct image *replacement = NULL;
362  struct uri *old_cwuri;
363  int rc;
364 
365  /* Sanity check */
367 
368  /* Switch current working directory to be that of the image
369  * itself, if applicable
370  */
371  old_cwuri = uri_get ( cwuri );
372  if ( image->uri )
373  churi ( image->uri );
374 
375  /* Set as currently running image */
376  saved_current_image = image_tag ( image, &current_image );
377 
378  /* Take out a temporary reference to the image, so that it
379  * does not get freed when temporarily unregistered.
380  */
381  image_get ( image );
382 
383  /* Check that this image can be executed */
384  if ( ! ( image->type && image->type->exec ) ) {
385  rc = -ENOEXEC;
386  goto err;
387  }
388 
389  /* Check that image is trusted (if applicable) */
390  if ( require_trusted_images && ! ( image->flags & IMAGE_TRUSTED ) ) {
391  DBGC ( image, "IMAGE %s is not trusted\n", image->name );
392  rc = -EACCES_UNTRUSTED;
393  goto err;
394  }
395 
396  /* Record boot attempt */
397  syslog ( LOG_NOTICE, "Executing \"%s\"\n", image->name );
398 
399  /* Temporarily unregister the image during its execution */
401 
402  /* Try executing the image */
403  if ( ( rc = image->type->exec ( image ) ) != 0 ) {
404  DBGC ( image, "IMAGE %s could not execute: %s\n",
405  image->name, strerror ( rc ) );
406  /* Do not return yet; we still have clean-up to do */
407  }
408 
409  /* Record result of boot attempt */
410  if ( rc == 0 ) {
411  syslog ( LOG_NOTICE, "Execution of \"%s\" completed\n",
412  image->name );
413  } else {
414  syslog ( LOG_ERR, "Execution of \"%s\" failed: %s\n",
415  image->name, strerror ( rc ) );
416  }
417 
418  /* Re-register image (unless due to be replaced) */
419  if ( ! image->replacement )
420  register_image ( image );
421 
422  /* Pick up replacement image before we drop the original
423  * image's temporary reference. The replacement image must
424  * already be registered, so we don't need to hold a temporary
425  * reference (which would complicate the tail-recursion).
426  */
428  if ( replacement )
429  assert ( replacement->flags & IMAGE_REGISTERED );
430 
431  err:
432  /* Unregister image if applicable */
435 
436  /* Debug message for tail-recursion. Placed here because the
437  * image_put() may end up freeing the image.
438  */
439  if ( replacement ) {
440  DBGC ( image, "IMAGE %s replacing self with IMAGE %s\n",
441  image->name, replacement->name );
442  }
443 
444  /* Drop temporary reference to the original image */
445  image_put ( image );
446 
447  /* Restore previous currently-running image */
448  image_tag ( saved_current_image, &current_image );
449 
450  /* Reset current working directory */
451  churi ( old_cwuri );
452  uri_put ( old_cwuri );
453 
454  /* Tail-recurse into replacement image, if one exists */
455  if ( replacement )
456  return image_exec ( replacement );
457 
458  return rc;
459 }
460 
461 /**
462  * Set replacement image
463  *
464  * @v replacement Replacement image
465  * @ret rc Return status code
466  *
467  * The replacement image must already be registered, and must remain
468  * registered until the currently-executing image returns.
469  */
470 int image_replace ( struct image *replacement ) {
471  struct image *image = current_image.image;
472  int rc;
473 
474  /* Sanity check */
475  assert ( replacement->flags & IMAGE_REGISTERED );
476 
477  /* Fail unless there is a currently-executing image */
478  if ( ! image ) {
479  rc = -ENOTTY;
480  DBGC ( replacement, "IMAGE %s cannot replace non-existent "
481  "image: %s\n", replacement->name, strerror ( rc ) );
482  return rc;
483  }
484 
485  /* Check that the replacement image can be executed */
486  if ( ! ( replacement->type && replacement->type->exec ) )
487  return -ENOEXEC;
488 
489  /* Clear any existing replacement */
491 
492  /* Set replacement */
494  DBGC ( image, "IMAGE %s will replace self with IMAGE %s\n",
495  image->name, replacement->name );
496 
497  return 0;
498 }
499 
500 /**
501  * Select image for execution
502  *
503  * @v image Executable image
504  * @ret rc Return status code
505  */
506 int image_select ( struct image *image ) {
507 
508  /* Check that this image can be executed */
509  if ( ! ( image->type && image->type->exec ) )
510  return -ENOEXEC;
511 
512  /* Mark image as selected */
514 
515  return 0;
516 }
517 
518 /**
519  * Change image trust requirement
520  *
521  * @v require_trusted Require trusted images
522  * @v permanent Make trust requirement permanent
523  * @ret rc Return status code
524  */
525 int image_set_trust ( int require_trusted, int permanent ) {
526 
527  /* Update trust requirement, if permitted to do so */
529  require_trusted_images = require_trusted;
531  }
532 
533  /* Fail if we attempted to change the trust requirement but
534  * were not permitted to do so.
535  */
536  if ( require_trusted_images != require_trusted )
537  return -EACCES_PERMANENT;
538 
539  return 0;
540 }
541 
542 /**
543  * Create registered image from block of memory
544  *
545  * @v name Name
546  * @v data Image data
547  * @v len Length
548  * @ret image Image, or NULL on error
549  */
550 struct image * image_memory ( const char *name, userptr_t data, size_t len ) {
551  struct image *image;
552  int rc;
553 
554  /* Allocate image */
555  image = alloc_image ( NULL );
556  if ( ! image ) {
557  rc = -ENOMEM;
558  goto err_alloc_image;
559  }
560 
561  /* Set name */
562  if ( ( rc = image_set_name ( image, name ) ) != 0 )
563  goto err_set_name;
564 
565  /* Set data */
566  if ( ( rc = image_set_data ( image, data, len ) ) != 0 )
567  goto err_set_data;
568 
569  /* Register image */
570  if ( ( rc = register_image ( image ) ) != 0 )
571  goto err_register;
572 
573  /* Drop local reference to image */
574  image_put ( image );
575 
576  return image;
577 
578  err_register:
579  err_set_data:
580  err_set_name:
581  image_put ( image );
582  err_alloc_image:
583  return NULL;
584 }
585 
586 /**
587  * Find argument within image command line
588  *
589  * @v image Image
590  * @v key Argument search key (including trailing delimiter)
591  * @ret value Argument value, or NULL if not found
592  */
593 const char * image_argument ( struct image *image, const char *key ) {
594  const char *cmdline = image->cmdline;
595  const char *search;
596  const char *match;
597  const char *next;
598 
599  /* Find argument */
600  for ( search = cmdline ; search ; search = next ) {
601 
602  /* Find next occurrence, if any */
603  match = strstr ( search, key );
604  if ( ! match )
605  break;
606  next = ( match + strlen ( key ) );
607 
608  /* Check preceding delimiter, if any */
609  if ( ( match == cmdline ) || isspace ( match[-1] ) )
610  return next;
611  }
612 
613  return NULL;
614 }
#define IMAGE_TYPES
Executable image type table.
Definition: image.h:148
int image_set_trust(int require_trusted, int permanent)
Change image trust requirement.
Definition: image.c:525
unsigned int flags
Flags.
Definition: image.h:36
struct image_tag selected_image
static int require_trusted_images_permanent
Prevent changes to image trust requirement.
Definition: image.c:73
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
const char * name
Definition: ath9k_hw.c:1984
int image_select(struct image *image)
Select image for execution.
Definition: image.c:506
int image_set_uri(struct image *image, struct uri *uri)
Set image URI.
Definition: image.c:132
userptr_t data
Raw file image.
Definition: image.h:41
static void uri_put(struct uri *uri)
Decrement URI reference count.
Definition: uri.h:205
An image tag.
Definition: image.h:154
static struct uri * uri_get(struct uri *uri)
Increment URI reference count.
Definition: uri.h:194
uint32_t next
Next descriptor address.
Definition: myson.h:18
struct image * find_image(const char *name)
Find image by name.
Definition: image.c:321
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
Error codes.
#define EACCES_UNTRUSTED
Definition: image.c:47
#define ENOEXEC
Exec format error.
Definition: errno.h:519
struct image_type * type
Image type, if known.
Definition: image.h:46
static struct image * image_get(struct image *image)
Increment reference count on an image.
Definition: image.h:218
unsigned long user_to_phys(userptr_t userptr, off_t offset)
Convert user pointer to physical address.
#define DBGC(...)
Definition: compiler.h:505
An executable image type.
Definition: image.h:76
struct image * image_memory(const char *name, userptr_t data, size_t len)
Create registered image from block of memory.
Definition: image.c:550
#define EACCES_PERMANENT
Definition: image.c:51
An executable image.
Definition: image.h:24
Character types.
struct image_tag selected_image __image_tag
Image selected for execution.
Definition: image.c:60
#define LOG_ERR
Error: error conditions.
Definition: syslog.h:35
Uniform Resource Identifiers.
struct image * image
Image (weak reference, nullified when image is freed)
Definition: image.h:158
#define IMAGE_AUTO_UNREGISTER
Image will be automatically unregistered after execution.
Definition: image.h:70
int(* exec)(struct image *image)
Execute image.
Definition: image.h:94
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
char * cmdline
Command line to pass to image.
Definition: image.h:39
A doubly-linked list entry (or list head)
Definition: list.h:18
A reference counter.
Definition: refcnt.h:26
int image_exec(struct image *image)
Execute image.
Definition: image.c:359
struct image * find_image_tag(struct image_tag *tag)
Find image by tag.
Definition: image.c:338
static void free_image(struct refcnt *refcnt)
Free executable image.
Definition: image.c:80
#define list_del(list)
Delete an entry from a list.
Definition: list.h:119
static int image_probe(struct image *image)
Determine image type.
Definition: image.c:241
char * strstr(const char *haystack, const char *needle)
Find substring.
Definition: string.c:309
#define ENOMEM
Not enough space.
Definition: errno.h:534
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
struct image_tag current_image
Assertions.
void churi(struct uri *uri)
Change working URI.
Definition: cwuri.c:45
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
Executable images.
const char * replacement
Definition: editstring.h:53
#define list_add_tail(new, head)
Add a new entry to the tail of a list.
Definition: list.h:93
const char * path
Path (after URI decoding)
Definition: uri.h:80
#define IMAGE_REGISTERED
Image is registered.
Definition: image.h:64
#define IMAGE_TAGS
Image tag table.
Definition: image.h:162
userptr_t urealloc(userptr_t userptr, size_t new_size)
Reallocate external memory.
Linked lists.
int register_image(struct image *image)
Register executable image.
Definition: image.c:267
#define for_each_image(image)
Iterate over all registered images.
Definition: image.h:172
System logger.
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
char * basename(char *path)
Return base name from path.
Definition: basename.c:42
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:624
size_t len
Length of raw file image.
Definition: image.h:43
int image_replace(struct image *replacement)
Set replacement image.
Definition: image.c:470
struct list_head images
List of registered images.
Definition: image.c:57
int image_set_name(struct image *image, const char *name)
Set image name.
Definition: image.c:160
#define IMAGE_TRUSTED
Image is trusted.
Definition: image.h:67
char * strdup(const char *src)
Duplicate string.
Definition: string.c:380
User memory allocation.
#define for_each_table_entry(pointer, table)
Iterate through all entries within a linker table.
Definition: tables.h:385
struct uri * uri
URI of image.
Definition: image.h:32
int isspace(int character)
Check to see if character is a space.
Definition: ctype.c:41
size_t strlen(const char *src)
Get length of string.
Definition: string.c:243
static void image_put(struct image *image)
Decrement reference count on an image.
Definition: image.h:228
int image_set_data(struct image *image, userptr_t data, size_t len)
Set image data.
Definition: image.c:222
void unregister_image(struct image *image)
Unregister executable image.
Definition: image.c:303
int image_set_len(struct image *image, size_t len)
Set image length.
Definition: image.c:201
static __always_inline void ufree(userptr_t userptr)
Free external memory.
Definition: umalloc.h:65
uint32_t len
Length.
Definition: ena.h:14
uint32_t type
Operating system type.
Definition: ena.h:12
const char * opaque
Opaque part.
Definition: uri.h:70
#define ENOTTY
Inappropriate I/O control operation.
Definition: errno.h:594
int strcmp(const char *first, const char *second)
Compare strings.
Definition: string.c:173
const char * image_argument(struct image *image, const char *key)
Find argument within image command line.
Definition: image.c:593
#define syslog(priority, fmt,...)
Write message to system log.
Definition: syslog.h:93
uint8_t data[48]
Additional event data.
Definition: ena.h:22
struct image * replacement
Replacement image.
Definition: image.h:60
int image_set_cmdline(struct image *image, const char *cmdline)
Set image command line.
Definition: image.c:182
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382
A Uniform Resource Identifier.
Definition: uri.h:64
static int require_trusted_images
Current image trust requirement.
Definition: image.c:70
#define LIST_HEAD_INIT(list)
Initialise a static list head.
Definition: list.h:30
struct list_head list
List of registered images.
Definition: image.h:29
struct uri * cwuri
Current working URI.
Definition: cwuri.c:38
static struct image * image_tag(struct image *image, struct image_tag *tag)
Tag image.
Definition: image.h:275
uint32_t cmdline
Definition: multiboot.h:16
struct image * alloc_image(struct uri *uri)
Allocate executable image.
Definition: image.c:103
uint64_t tag
Identity tag.
Definition: edd.h:30
char * name
Name.
Definition: image.h:34
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
String functions.
#define LOG_NOTICE
Notice: normal but significant conditions.
Definition: syslog.h:41
const char * name
Name.
Definition: image.h:156
union @382 key
Sense key.
Definition: crypto.h:284
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
struct refcnt refcnt
Reference count.
Definition: image.h:26