2013-10-08 15:07:03 +08:00
|
|
|
/* basetypes.h
|
|
|
|
|
2016-02-02 09:08:08 +08:00
|
|
|
Copyright (c) 2016, Nikolaj Schlej. All rights reserved.
|
2013-12-29 23:13:46 +08:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2013-12-29 23:13:46 +08:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-04-09 18:47:19 +08:00
|
|
|
#ifndef BASETYPES_H
|
|
|
|
#define BASETYPES_H
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdint.h>
|
2018-05-09 00:02:25 +08:00
|
|
|
#include <stddef.h>
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2018-05-09 00:02:25 +08:00
|
|
|
typedef size_t USTATUS;
|
2016-06-26 11:54:21 +08:00
|
|
|
#define U_SUCCESS 0
|
|
|
|
#define U_INVALID_PARAMETER 1
|
|
|
|
#define U_BUFFER_TOO_SMALL 2
|
|
|
|
#define U_OUT_OF_RESOURCES 3
|
|
|
|
#define U_OUT_OF_MEMORY 4
|
|
|
|
#define U_FILE_OPEN 5
|
|
|
|
#define U_FILE_READ 6
|
|
|
|
#define U_FILE_WRITE 7
|
|
|
|
#define U_ITEM_NOT_FOUND 8
|
|
|
|
#define U_UNKNOWN_ITEM_TYPE 9
|
|
|
|
#define U_INVALID_FLASH_DESCRIPTOR 10
|
|
|
|
#define U_INVALID_REGION 11
|
|
|
|
#define U_EMPTY_REGION 12
|
|
|
|
#define U_BIOS_REGION_NOT_FOUND 13
|
|
|
|
#define U_VOLUMES_NOT_FOUND 14
|
|
|
|
#define U_INVALID_VOLUME 15
|
|
|
|
#define U_VOLUME_REVISION_NOT_SUPPORTED 16
|
|
|
|
#define U_COMPLEX_BLOCK_MAP 17
|
|
|
|
#define U_UNKNOWN_FFS 18
|
|
|
|
#define U_INVALID_FILE 19
|
|
|
|
#define U_INVALID_SECTION 20
|
|
|
|
#define U_UNKNOWN_SECTION 21
|
|
|
|
#define U_STANDARD_COMPRESSION_FAILED 22
|
|
|
|
#define U_CUSTOMIZED_COMPRESSION_FAILED 23
|
|
|
|
#define U_STANDARD_DECOMPRESSION_FAILED 24
|
|
|
|
#define U_CUSTOMIZED_DECOMPRESSION_FAILED 25
|
|
|
|
#define U_UNKNOWN_COMPRESSION_TYPE 26
|
|
|
|
#define U_DEPEX_PARSE_FAILED 27
|
|
|
|
#define U_UNKNOWN_EXTRACT_MODE 28
|
|
|
|
#define U_UNKNOWN_REPLACE_MODE 29
|
|
|
|
#define U_UNKNOWN_IMAGE_TYPE 30
|
|
|
|
#define U_UNKNOWN_PE_OPTIONAL_HEADER_TYPE 31
|
|
|
|
#define U_UNKNOWN_RELOCATION_TYPE 32
|
|
|
|
#define U_DIR_ALREADY_EXIST 33
|
|
|
|
#define U_DIR_CREATE 34
|
2016-07-09 14:31:08 +08:00
|
|
|
#define U_DIR_CHANGE 35
|
|
|
|
#define U_TRUNCATED_IMAGE 36
|
|
|
|
#define U_INVALID_CAPSULE 37
|
|
|
|
#define U_STORES_NOT_FOUND 38
|
2017-02-14 14:39:16 +08:00
|
|
|
#define U_INVALID_IMAGE 39
|
|
|
|
#define U_INVALID_RAW_AREA 40
|
2017-10-12 13:59:23 +08:00
|
|
|
#define U_INVALID_FIT 41
|
|
|
|
#define U_INVALID_MICROCODE 42
|
|
|
|
#define U_INVALID_ACM 43
|
|
|
|
#define U_INVALID_BG_KEY_MANIFEST 44
|
|
|
|
#define U_INVALID_BG_BOOT_POLICY 45
|
2018-10-08 17:58:12 +08:00
|
|
|
#define U_INVALID_TXT_CONF 46
|
|
|
|
#define U_ELEMENTS_NOT_FOUND 47
|
2016-06-26 11:54:21 +08:00
|
|
|
#define U_NOT_IMPLEMENTED 0xFF
|
|
|
|
|
|
|
|
// UDK porting definitions
|
2015-01-31 22:00:00 +08:00
|
|
|
typedef uint8_t BOOLEAN;
|
|
|
|
typedef int8_t INT8;
|
|
|
|
typedef uint8_t UINT8;
|
|
|
|
typedef int16_t INT16;
|
|
|
|
typedef uint16_t UINT16;
|
|
|
|
typedef int32_t INT32;
|
|
|
|
typedef uint32_t UINT32;
|
|
|
|
typedef int64_t INT64;
|
|
|
|
typedef uint64_t UINT64;
|
|
|
|
typedef char CHAR8;
|
|
|
|
typedef uint16_t CHAR16;
|
2018-05-09 00:02:25 +08:00
|
|
|
typedef size_t UINTN;
|
2018-08-02 08:41:11 +08:00
|
|
|
typedef ptrdiff_t INTN;
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
#define CONST const
|
|
|
|
#define VOID void
|
|
|
|
#define STATIC static
|
|
|
|
|
2018-10-08 17:58:12 +08:00
|
|
|
#ifndef INT32_MAX
|
|
|
|
#define INT32_MAX 0x7fffffff
|
|
|
|
#endif
|
|
|
|
|
2013-10-08 15:07:03 +08:00
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE ((BOOLEAN)(1==1))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE ((BOOLEAN)(0==1))
|
|
|
|
#endif
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
#define IN
|
|
|
|
#define OUT
|
|
|
|
#define EFIAPI
|
2015-01-31 22:00:00 +08:00
|
|
|
#define EFI_STATUS UINTN
|
2016-06-26 11:54:21 +08:00
|
|
|
#define EFI_SUCCESS U_SUCCESS
|
|
|
|
#define EFI_INVALID_PARAMETER U_INVALID_PARAMETER
|
|
|
|
#define EFI_OUT_OF_RESOURCES U_OUT_OF_RESOURCES
|
|
|
|
#define EFI_BUFFER_TOO_SMALL U_BUFFER_TOO_SMALL
|
2015-01-31 22:00:00 +08:00
|
|
|
#define EFI_ERROR(X) (X)
|
2014-07-05 20:56:56 +08:00
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
// Compression algorithms
|
2016-02-02 09:08:08 +08:00
|
|
|
#define COMPRESSION_ALGORITHM_UNKNOWN 0
|
|
|
|
#define COMPRESSION_ALGORITHM_NONE 1
|
|
|
|
#define COMPRESSION_ALGORITHM_EFI11 2
|
|
|
|
#define COMPRESSION_ALGORITHM_TIANO 3
|
|
|
|
#define COMPRESSION_ALGORITHM_UNDECIDED 4
|
|
|
|
#define COMPRESSION_ALGORITHM_LZMA 5
|
|
|
|
#define COMPRESSION_ALGORITHM_IMLZMA 6
|
2018-11-11 21:33:13 +08:00
|
|
|
#define COMPRESSION_ALGORITHM_GZIP 7
|
2013-11-07 21:46:28 +08:00
|
|
|
|
2013-12-12 19:28:39 +08:00
|
|
|
// Item create modes
|
|
|
|
#define CREATE_MODE_APPEND 0
|
|
|
|
#define CREATE_MODE_PREPEND 1
|
|
|
|
#define CREATE_MODE_BEFORE 2
|
|
|
|
#define CREATE_MODE_AFTER 3
|
|
|
|
|
2013-11-17 17:01:11 +08:00
|
|
|
// Item extract modes
|
2015-09-01 03:34:42 +08:00
|
|
|
#define EXTRACT_MODE_AS_IS 0
|
|
|
|
#define EXTRACT_MODE_BODY 1
|
|
|
|
#define EXTRACT_MODE_BODY_UNCOMPRESSED 2
|
2013-11-17 17:01:11 +08:00
|
|
|
|
2013-12-12 19:28:39 +08:00
|
|
|
// Item replace modes
|
|
|
|
#define REPLACE_MODE_AS_IS 0
|
|
|
|
#define REPLACE_MODE_BODY 1
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2014-06-19 11:45:20 +08:00
|
|
|
// Item patch modes
|
|
|
|
#define PATCH_MODE_HEADER 0
|
|
|
|
#define PATCH_MODE_BODY 1
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
// Patch types
|
2015-01-31 22:00:00 +08:00
|
|
|
#define PATCH_TYPE_OFFSET 'O'
|
|
|
|
#define PATCH_TYPE_PATTERN 'P'
|
2014-07-05 20:56:56 +08:00
|
|
|
|
2013-11-18 23:23:59 +08:00
|
|
|
// Erase polarity types
|
|
|
|
#define ERASE_POLARITY_FALSE 0
|
|
|
|
#define ERASE_POLARITY_TRUE 1
|
|
|
|
#define ERASE_POLARITY_UNKNOWN 0xFF
|
|
|
|
|
2013-12-05 04:27:12 +08:00
|
|
|
// Search modes
|
2015-01-31 22:00:00 +08:00
|
|
|
#define SEARCH_MODE_HEADER 1
|
|
|
|
#define SEARCH_MODE_BODY 2
|
|
|
|
#define SEARCH_MODE_ALL 3
|
2013-12-29 23:13:46 +08:00
|
|
|
|
2013-10-08 15:07:03 +08:00
|
|
|
// EFI GUID
|
2016-04-09 19:47:28 +08:00
|
|
|
typedef struct EFI_GUID_ {
|
2016-10-28 00:31:15 +08:00
|
|
|
UINT32 Data1;
|
|
|
|
UINT16 Data2;
|
|
|
|
UINT16 Data3;
|
|
|
|
UINT8 Data4[8];
|
2013-12-29 23:13:46 +08:00
|
|
|
} EFI_GUID;
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2016-03-28 21:03:32 +08:00
|
|
|
// EFI Time
|
2016-04-09 19:47:28 +08:00
|
|
|
typedef struct EFI_TIME_ {
|
2016-03-28 21:03:32 +08:00
|
|
|
UINT16 Year; // Year: 2000 - 20XX
|
|
|
|
UINT8 Month; // Month: 1 - 12
|
|
|
|
UINT8 Day; // Day: 1 - 31
|
|
|
|
UINT8 Hour; // Hour: 0 - 23
|
|
|
|
UINT8 Minute; // Minute: 0 - 59
|
|
|
|
UINT8 Second; // Second: 0 - 59
|
2018-05-09 00:02:25 +08:00
|
|
|
UINT8 Reserved0;
|
2016-03-28 21:03:32 +08:00
|
|
|
UINT32 Nanosecond; // Nanosecond: 0 - 999,999,999
|
|
|
|
INT16 TimeZone; // TimeZone: -1440 to 1440 or UNSPECIFIED (0x07FF)
|
|
|
|
UINT8 Daylight; // Daylight: ADJUST_DAYLIGHT (1) or IN_DAYLIGHT (2)
|
2018-05-09 00:02:25 +08:00
|
|
|
UINT8 Reserved1;
|
2016-03-28 21:03:32 +08:00
|
|
|
} EFI_TIME;
|
|
|
|
|
2017-07-31 14:06:11 +08:00
|
|
|
// Align to 4 or 8 bytes
|
2013-10-08 15:07:03 +08:00
|
|
|
#define ALIGN4(Value) (((Value)+3) & ~3)
|
|
|
|
#define ALIGN8(Value) (((Value)+7) & ~7)
|
|
|
|
|
2016-10-28 00:31:15 +08:00
|
|
|
// Unused parameter declaration
|
|
|
|
#define U_UNUSED_PARAMETER(x) ((void)x)
|
|
|
|
|
|
|
|
// Assert macro
|
2013-10-08 15:07:03 +08:00
|
|
|
#include <assert.h>
|
|
|
|
#define ASSERT(x) assert(x)
|
|
|
|
|
2016-04-17 07:25:44 +08:00
|
|
|
// SHA256 hash size in bytes
|
|
|
|
#define SHA256_HASH_SIZE 0x20
|
|
|
|
|
2016-04-09 18:47:19 +08:00
|
|
|
#endif // BASETYPES_H
|