diff options
author | Jan Janssen <medhefgo@web.de> | 2022-05-28 19:29:41 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2022-06-09 12:50:13 +0200 |
commit | 9148312fab2cb67c7716c228886f6615beb3b6a7 (patch) | |
tree | 55336a954202bb0bb349ba28c7f44060850ca6ab /src | |
parent | boot: Drop use of DevicePathFromHandle (diff) | |
download | systemd-9148312fab2cb67c7716c228886f6615beb3b6a7.tar.xz systemd-9148312fab2cb67c7716c228886f6615beb3b6a7.zip |
boot: Add xmalloc
Diffstat (limited to 'src')
-rw-r--r-- | src/boot/efi/util.h | 53 | ||||
-rw-r--r-- | src/fundamental/macro-fundamental.h | 3 |
2 files changed, 43 insertions, 13 deletions
diff --git a/src/boot/efi/util.h b/src/boot/efi/util.h index 75d3e51415..2245c21ce7 100644 --- a/src/boot/efi/util.h +++ b/src/boot/efi/util.h @@ -30,6 +30,48 @@ assert_cc(sizeof(int) == sizeof(UINT32)); # error "Unexpected pointer size" #endif +static inline void free(void *p) { + if (!p) + return; + + /* Debugging an invalid free requires trace logging to find the call site or a debugger attached. For + * release builds it is not worth the bother to even warn when we cannot even print a call stack. */ +#ifdef EFI_DEBUG + assert_se(BS->FreePool(p) == EFI_SUCCESS); +#else + (void) BS->FreePool(p); +#endif +} + +static inline void freep(void *p) { + free(*(void **) p); +} + +#define _cleanup_freepool_ _cleanup_free_ +#define _cleanup_free_ _cleanup_(freep) + +_malloc_ _alloc_(1) _returns_nonnull_ _warn_unused_result_ +static inline void *xmalloc(size_t size) { + void *p; + assert_se(BS->AllocatePool(EfiBootServicesData, size, &p) == EFI_SUCCESS); + return p; +} + +_malloc_ _alloc_(1, 2) _returns_nonnull_ _warn_unused_result_ +static inline void *xmalloc_multiply(size_t size, size_t n) { + assert_se(!__builtin_mul_overflow(size, n, &size)); + return xmalloc(size); +} + +/* Use malloc attribute as this never returns p like userspace realloc. */ +_malloc_ _alloc_(3) _returns_nonnull_ _warn_unused_result_ +static inline void *xrealloc(void *p, size_t old_size, size_t new_size) { + void *r = xmalloc(new_size); + memcpy(r, p, MIN(old_size, new_size)); + free(p); + return r; +} + #define xnew_alloc(type, n, alloc) \ ({ \ UINTN _alloc_size; \ @@ -65,17 +107,6 @@ CHAR16 *xstra_to_str(const CHAR8 *stra); EFI_STATUS file_read(EFI_FILE *dir, const CHAR16 *name, UINTN off, UINTN size, CHAR8 **content, UINTN *content_size); -static inline void free_poolp(void *p) { - void *q = *(void**) p; - - if (!q) - return; - - (void) BS->FreePool(q); -} - -#define _cleanup_freepool_ _cleanup_(free_poolp) - static inline void file_closep(EFI_FILE **handle) { if (!*handle) return; diff --git a/src/fundamental/macro-fundamental.h b/src/fundamental/macro-fundamental.h index f78c62ef25..18370ac46a 100644 --- a/src/fundamental/macro-fundamental.h +++ b/src/fundamental/macro-fundamental.h @@ -25,6 +25,7 @@ #define _public_ __attribute__((__visibility__("default"))) #define _pure_ __attribute__((__pure__)) #define _retain_ __attribute__((__retain__)) +#define _returns_nonnull_ __attribute__((__returns_nonnull__)) #define _section_(x) __attribute__((__section__(x))) #define _sentinel_ __attribute__((__sentinel__)) #define _unlikely_(x) (__builtin_expect(!!(x), 0)) @@ -76,8 +77,6 @@ #endif #define static_assert _Static_assert #define assert_se(expr) ({ _likely_(expr) ? VOID_0 : efi_assert(#expr, __FILE__, __LINE__, __PRETTY_FUNCTION__); }) - - #define free(a) FreePool(a) #endif /* This passes the argument through after (if asserts are enabled) checking that it is not null. */ |