1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 #ifndef MOCKS_CBFS_UTIL_H 3 #define MOCKS_CBFS_UTIL_H 4 5 #include <cbfs.h> 6 #include <stddef.h> 7 #include <tests/test.h> 8 9 #define BE32(be32) EMPTY_WRAP(\ 10 ((be32) >> 24) & 0xff, ((be32) >> 16) & 0xff, \ 11 ((be32) >> 8) & 0xff, ((be32) >> 0) & 0xff) 12 13 #define BE64(be64) EMPTY_WRAP( \ 14 BE32(((be64) >> 32) & 0xFFFFFFFF), \ 15 BE32(((be64) >> 0) & 0xFFFFFFFF)) 16 17 #define LE32(val32) EMPTY_WRAP(\ 18 ((val32) >> 0) & 0xff, ((val32) >> 8) & 0xff, \ 19 ((val32) >> 16) & 0xff, ((val32) >> 24) & 0xff) 20 21 #define LE64(val64) EMPTY_WRAP( \ 22 BE32(((val64) >> 0) & 0xFFFFFFFF), \ 23 BE32(((val64) >> 32) & 0xFFFFFFFF)) 24 25 #define FILENAME_SIZE 16 26 27 struct cbfs_test_file { 28 struct cbfs_file header; 29 u8 filename[FILENAME_SIZE]; 30 u8 attrs_and_data[200]; 31 }; 32 33 #define TEST_MCACHE_SIZE (2 * MiB) 34 35 #define HEADER_INITIALIZER(ftype, attr_len, file_len) { \ 36 .magic = CBFS_FILE_MAGIC, \ 37 .len = htobe32(file_len), \ 38 .type = htobe32(ftype), \ 39 .attributes_offset = \ 40 htobe32(attr_len ? sizeof(struct cbfs_file) + FILENAME_SIZE : 0), \ 41 .offset = htobe32(sizeof(struct cbfs_file) + FILENAME_SIZE + attr_len), \ 42 } 43 44 #define HASH_ATTR_SIZE (offsetof(struct cbfs_file_attr_hash, hash.raw) + VB2_SHA256_DIGEST_SIZE) 45 46 /* This macro basically does nothing but suppresses linter messages */ 47 #define EMPTY_WRAP(...) __VA_ARGS__ 48 49 #define TEST_DATA_1_FILENAME "test/data/1" 50 #define TEST_DATA_1_SIZE sizeof((u8[]){TEST_DATA_1}) 51 #define TEST_DATA_1 EMPTY_WRAP( \ 52 '!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', \ 53 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '@', \ 54 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', \ 55 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', \ 56 '[', '\\', ']', '^', '_', '`', \ 57 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', \ 58 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z') 59 60 #define TEST_DATA_2_FILENAME "test/data/2" 61 #define TEST_DATA_2_SIZE sizeof((u8[]){TEST_DATA_2}) 62 #define TEST_DATA_2 EMPTY_WRAP( \ 63 0x9d, 0xa9, 0x91, 0xac, 0x5d, 0xb2, 0x70, 0x76, 0x37, 0x94, 0x94, 0xa8, 0x8b, 0x78, \ 64 0xb9, 0xaa, 0x1a, 0x8e, 0x9a, 0x16, 0xbe, 0xdc, 0x29, 0x42, 0x46, 0x58, 0xd4, 0x37, \ 65 0x94, 0xca, 0x05, 0xdb, 0x54, 0xfa, 0xd8, 0x6e, 0x54, 0xd8, 0x30, 0x46, 0x5d, 0x62, \ 66 0xc2, 0xce, 0xd8, 0x74, 0x60, 0xaf, 0x83, 0x8f, 0xfa, 0x97, 0xdd, 0x6e, 0xcb, 0x60, \ 67 0xfa, 0xed, 0x8b, 0x55, 0x9e, 0xc1, 0xc2, 0x18, 0x4f, 0xe2, 0x28, 0x7e, 0xd7, 0x2f, \ 68 0xa2, 0x86, 0xfb, 0x4d, 0x3e, 0x00, 0x5a, 0xf7, 0xc2, 0xad, 0x0e, 0xa7, 0xa2, 0xf7, \ 69 0x38, 0x66, 0xe6, 0x5c, 0x76, 0x98, 0x89, 0x63, 0xeb, 0xc5, 0xf5, 0xb7, 0xa7, 0x58, \ 70 0xe0, 0xf0, 0x2e, 0x2f, 0xb0, 0x95, 0xb7, 0x43, 0x28, 0x19, 0x2d, 0xef, 0x1a, 0xb3, \ 71 0x42, 0x31, 0x55, 0x0f, 0xbc, 0xcd, 0x01, 0xe5, 0x39, 0x18, 0x88, 0x83, 0xb2, 0xc5, \ 72 0x4b, 0x3b, 0x38, 0xe7) 73 74 #define TEST_DATA_INT_1_FILENAME "test-int-1" 75 #define TEST_DATA_INT_1_SIZE 8 76 #define TEST_DATA_INT_1 0xFEDCBA9876543210ULL 77 78 #define TEST_DATA_INT_2_FILENAME "test-int-2" 79 #define TEST_DATA_INT_2_SIZE 8 80 #define TEST_DATA_INT_2 0x10FE32DC54A97698ULL 81 82 #define TEST_DATA_INT_3_FILENAME "test-int-3" 83 #define TEST_DATA_INT_3_SIZE 8 84 #define TEST_DATA_INT_3 0xFA57F003B0036667ULL 85 86 #define TEST_SHA256 \ 87 EMPTY_WRAP(0xef, 0xc7, 0xb1, 0x0a, 0xbf, 0x54, 0x2f, 0xaa, 0x12, 0xa6, 0xeb, 0xf, \ 88 0xff, 0xf4, 0x19, 0xc1, 0x63, 0xf4, 0x60, 0x50, 0xc5, 0xb0, 0xbe, 0x37, \ 89 0x32, 0x11, 0x19, 0x63, 0x61, 0xe0, 0x53, 0xe0) 90 91 #define INVALID_SHA256 \ 92 EMPTY_WRAP('T', 'h', 'i', 's', ' ', 'i', 's', ' ', 'n', 'o', 't', ' ', 'a', ' ', 'v', \ 93 'a', 'l', 'i', 'd', ' ', 'S', 'H', 'A', '2', '5', '6', '!', '!', '!', '!', \ 94 '!', '!') 95 96 extern const u8 test_data_1[TEST_DATA_1_SIZE]; 97 extern const u8 test_data_2[TEST_DATA_2_SIZE]; 98 extern const u8 test_data_int_1[TEST_DATA_INT_1_SIZE]; 99 extern const u8 test_data_int_2[TEST_DATA_INT_2_SIZE]; 100 extern const u8 test_data_int_3[TEST_DATA_INT_3_SIZE]; 101 102 extern const u8 good_hash[VB2_SHA256_DIGEST_SIZE]; 103 extern const u8 bad_hash[VB2_SHA256_DIGEST_SIZE]; 104 105 extern const struct cbfs_test_file file_no_hash; 106 extern const struct cbfs_test_file file_valid_hash; 107 extern const struct cbfs_test_file file_broken_hash; 108 extern const struct cbfs_test_file test_file_1; 109 extern const struct cbfs_test_file test_file_2; 110 extern const struct cbfs_test_file test_file_int_1; 111 extern const struct cbfs_test_file test_file_int_2; 112 extern const struct cbfs_test_file test_file_int_3; 113 114 #endif /* MOCKS_CBFS_UTIL_H */ 115