iPXE
efi_umalloc.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008 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 <string.h>
27 #include <errno.h>
28 #include <assert.h>
29 #include <ipxe/uaccess.h>
30 #include <ipxe/umalloc.h>
31 #include <ipxe/efi/efi.h>
32 
33 /** @file
34  *
35  * iPXE user memory allocation API for EFI
36  *
37  */
38 
39 /**
40  * Reallocate external memory
41  *
42  * @v old_ptr Memory previously allocated by umalloc(), or NULL
43  * @v new_size Requested size
44  * @ret new_ptr Allocated memory, or NULL
45  *
46  * Calling realloc() with a new size of zero is a valid way to free a
47  * memory block.
48  */
49 static void * efi_urealloc ( void *old_ptr, size_t new_size ) {
51  EFI_PHYSICAL_ADDRESS phys_addr;
52  unsigned int new_pages, old_pages;
53  void *new_ptr = NOWHERE;
54  size_t old_size;
55  size_t *info;
56  EFI_STATUS efirc;
57  int rc;
58 
59  /* Allocate new memory if necessary. If allocation fails,
60  * return without touching the old block.
61  */
62  if ( new_size ) {
63  new_pages = ( EFI_SIZE_TO_PAGES ( new_size ) + 1 );
64  if ( ( efirc = bs->AllocatePages ( AllocateAnyPages,
66  new_pages,
67  &phys_addr ) ) != 0 ) {
68  rc = -EEFI ( efirc );
69  DBG ( "EFI could not allocate %d pages: %s\n",
70  new_pages, strerror ( rc ) );
71  return NULL;
72  }
73  assert ( phys_addr != 0 );
74  new_ptr = phys_to_virt ( phys_addr + EFI_PAGE_SIZE );
75  info = ( new_ptr - EFI_PAGE_SIZE );
76  *info = new_size;
77  DBG ( "EFI allocated %d pages at %llx\n",
78  new_pages, phys_addr );
79  }
80 
81  /* Copy across relevant part of the old data region (if any),
82  * then free it. Note that at this point either (a) new_ptr
83  * is valid, or (b) new_size is 0; either way, the memcpy() is
84  * valid.
85  */
86  if ( old_ptr && ( old_ptr != NOWHERE ) ) {
87  info = ( old_ptr - EFI_PAGE_SIZE );
88  old_size = *info;
89  memcpy ( new_ptr, old_ptr,
90  ( (old_size < new_size) ? old_size : new_size ) );
91  old_pages = ( EFI_SIZE_TO_PAGES ( old_size ) + 1 );
92  phys_addr = virt_to_phys ( old_ptr - EFI_PAGE_SIZE );
93  if ( ( efirc = bs->FreePages ( phys_addr, old_pages ) ) != 0 ){
94  rc = -EEFI ( efirc );
95  DBG ( "EFI could not free %d pages at %llx: %s\n",
96  old_pages, phys_addr, strerror ( rc ) );
97  /* Not fatal; we have leaked memory but successfully
98  * allocated (if asked to do so).
99  */
100  }
101  DBG ( "EFI freed %d pages at %llx\n", old_pages, phys_addr );
102  }
103 
104  return new_ptr;
105 }
106 
static void * efi_urealloc(void *old_ptr, size_t new_size)
Reallocate external memory.
Definition: efi_umalloc.c:49
EFI_BOOT_SERVICES * BootServices
A pointer to the EFI Boot Services Table.
Definition: UefiSpec.h:2098
#define EFI_PAGE_SIZE
Definition: UefiBaseType.h:187
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define NOWHERE
Address for zero-length memory blocks.
Definition: malloc.h:41
#define EEFI(efirc)
Convert an EFI status code to an iPXE status code.
Definition: efi.h:174
u32 info
Definition: ar9003_mac.h:67
Error codes.
UINT64 EFI_PHYSICAL_ADDRESS
64-bit physical memory address.
Definition: UefiBaseType.h:52
void * memcpy(void *dest, const void *src, size_t len) __nonnull
PROVIDE_UMALLOC(efi, urealloc, efi_urealloc)
Assertions.
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
Access to external ("user") memory.
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
EFI Boot Services Table.
Definition: UefiSpec.h:1930
User memory allocation.
#define EFI_SIZE_TO_PAGES(Size)
Macro that converts a size, in bytes, to a number of EFI_PAGESs.
Definition: UefiBaseType.h:202
EFI API.
EFI_ALLOCATE_PAGES AllocatePages
Definition: UefiSpec.h:1945
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
Definition: UefiBaseType.h:31
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
Allocate any available range of pages that satisfies the request.
Definition: UefiSpec.h:35
EFI_SYSTEM_TABLE * efi_systab
void * urealloc(void *ptr, size_t new_size)
Reallocate external memory.
The data portions of a loaded Boot Serves Driver, and the default data allocation type used by a Boot...
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
EFI_FREE_PAGES FreePages
Definition: UefiSpec.h:1946
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
String functions.