Gaurav Shah | 322536d | 2010-01-28 15:01:23 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | * Use of this source code is governed by a BSD-style license that can be |
| 3 | * found in the LICENSE file. |
| 4 | */ |
| 5 | |
| 6 | /* Helper functions/wrappers for memory allocations, manipulation and |
| 7 | * comparison. |
| 8 | */ |
| 9 | |
| 10 | #ifndef VBOOT_REFERENCE_UTILITY_H_ |
| 11 | #define VBOOT_REFERENCE_UTILITY_H_ |
| 12 | |
Gaurav Shah | d067712 | 2010-02-04 19:35:03 -0800 | [diff] [blame] | 13 | #include <inttypes.h> |
Gaurav Shah | 322536d | 2010-01-28 15:01:23 -0800 | [diff] [blame] | 14 | #include <string.h> |
| 15 | |
| 16 | /* Allocate [size] bytes and return a pointer to the allocated memory. Abort |
| 17 | * on error. |
| 18 | */ |
| 19 | void* Malloc(size_t size); |
| 20 | |
| 21 | /* Free memory pointed by [ptr] previously allocated by Malloc(). */ |
| 22 | void Free(void* ptr); |
| 23 | |
| 24 | /* Copy [n] bytes from [src] to [dest]. */ |
| 25 | void* Memcpy(void* dest, const void* src, size_t n); |
| 26 | |
Gaurav Shah | d067712 | 2010-02-04 19:35:03 -0800 | [diff] [blame] | 27 | /* Set [n] bytes starting at [s] to [c]. */ |
| 28 | void* Memset(void *dest, const uint8_t c, size_t n); |
| 29 | |
Gaurav Shah | 08df9b8 | 2010-02-23 16:16:23 -0800 | [diff] [blame] | 30 | /* Compare [n] bytes starting at [s1] with [s2] and return 0 if they match, |
| 31 | * 1 if they don't. Time taken to perform the comparison is only dependent on |
Gaurav Shah | 322536d | 2010-01-28 15:01:23 -0800 | [diff] [blame] | 32 | * [n] and not on the relationship of the match between [s1] and [s2]. |
| 33 | */ |
| 34 | int SafeMemcmp(const void* s1, const void* s2, size_t n); |
| 35 | |
Gaurav Shah | d067712 | 2010-02-04 19:35:03 -0800 | [diff] [blame] | 36 | /* Track remaining data to be read in a buffer. */ |
| 37 | typedef struct MemcpyState { |
| 38 | void* remaining_buf; |
| 39 | int remaining_len; |
| 40 | } MemcpyState; |
| 41 | |
| 42 | /* Copy [len] bytes into [dst] only if there's enough data to read according |
| 43 | * to [state]. |
Gaurav Shah | f5564fa | 2010-03-02 15:40:01 -0800 | [diff] [blame^] | 44 | * On success, return [dst] and update [state]. |
Gaurav Shah | d067712 | 2010-02-04 19:35:03 -0800 | [diff] [blame] | 45 | * On failure, return NULL, set remaining len in state to -1. |
| 46 | * |
| 47 | * Useful for iterating through a binary blob to populate a struct. After the |
| 48 | * first failure (buffer overrun), successive calls will always fail. |
| 49 | */ |
| 50 | void* StatefulMemcpy(MemcpyState* state, void* dst, int len); |
| 51 | |
Gaurav Shah | f5564fa | 2010-03-02 15:40:01 -0800 | [diff] [blame^] | 52 | /* Like StatefulMemcpy() but copies in the opposite direction, populating |
| 53 | * data from [src] into the buffer encapsulated in state [state]. |
| 54 | * On success, return [src] and update [state]. |
| 55 | * On failure, return NULL, set remaining_len in state to -1. |
| 56 | * |
| 57 | * Useful for iterating through a structure to populate a binary blob. After the |
| 58 | * first failure (buffer overrun), successive calls will always fail. |
| 59 | */ |
| 60 | const void* StatefulMemcpy_r(MemcpyState* state, const void* src, int len); |
Gaurav Shah | d067712 | 2010-02-04 19:35:03 -0800 | [diff] [blame] | 61 | |
Gaurav Shah | 322536d | 2010-01-28 15:01:23 -0800 | [diff] [blame] | 62 | #endif /* VBOOT_REFERENCE_UTILITY_H_ */ |