Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Guillaume GARDET | 7a77e90 | 2016-06-17 11:45:37 +0200 | [diff] [blame] | 6 | #include <common.h> |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 7 | #include <cbfs.h> |
| 8 | #include <malloc.h> |
| 9 | #include <asm/byteorder.h> |
| 10 | |
Simon Glass | fc7b9e1 | 2019-08-14 19:56:11 -0600 | [diff] [blame] | 11 | static const u32 good_magic = 0x4f524243; |
| 12 | static const u8 good_file_magic[] = "LARCHIVE"; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 13 | |
| 14 | struct cbfs_priv { |
| 15 | int initialized; |
| 16 | struct cbfs_header header; |
| 17 | struct cbfs_cachenode *file_cache; |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 18 | enum cbfs_result result; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | static struct cbfs_priv cbfs_s; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 22 | |
| 23 | const char *file_cbfs_error(void) |
| 24 | { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 25 | switch (cbfs_s.result) { |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 26 | case CBFS_SUCCESS: |
| 27 | return "Success"; |
| 28 | case CBFS_NOT_INITIALIZED: |
| 29 | return "CBFS not initialized"; |
| 30 | case CBFS_BAD_HEADER: |
| 31 | return "Bad CBFS header"; |
| 32 | case CBFS_BAD_FILE: |
| 33 | return "Bad CBFS file"; |
| 34 | case CBFS_FILE_NOT_FOUND: |
| 35 | return "File not found"; |
| 36 | default: |
| 37 | return "Unknown"; |
| 38 | } |
| 39 | } |
| 40 | |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 41 | enum cbfs_result cbfs_get_result(void) |
| 42 | { |
| 43 | return cbfs_s.result; |
| 44 | } |
| 45 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 46 | /* Do endian conversion on the CBFS header structure. */ |
| 47 | static void swap_header(struct cbfs_header *dest, struct cbfs_header *src) |
| 48 | { |
| 49 | dest->magic = be32_to_cpu(src->magic); |
| 50 | dest->version = be32_to_cpu(src->version); |
| 51 | dest->rom_size = be32_to_cpu(src->rom_size); |
| 52 | dest->boot_block_size = be32_to_cpu(src->boot_block_size); |
| 53 | dest->align = be32_to_cpu(src->align); |
| 54 | dest->offset = be32_to_cpu(src->offset); |
| 55 | } |
| 56 | |
| 57 | /* Do endian conversion on a CBFS file header. */ |
| 58 | static void swap_file_header(struct cbfs_fileheader *dest, |
| 59 | const struct cbfs_fileheader *src) |
| 60 | { |
| 61 | memcpy(&dest->magic, &src->magic, sizeof(dest->magic)); |
| 62 | dest->len = be32_to_cpu(src->len); |
| 63 | dest->type = be32_to_cpu(src->type); |
Simon Glass | ababe10 | 2019-07-08 13:18:22 -0600 | [diff] [blame] | 64 | dest->attributes_offset = be32_to_cpu(src->attributes_offset); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 65 | dest->offset = be32_to_cpu(src->offset); |
| 66 | } |
| 67 | |
| 68 | /* |
| 69 | * Given a starting position in memory, scan forward, bounded by a size, and |
| 70 | * find the next valid CBFS file. No memory is allocated by this function. The |
| 71 | * caller is responsible for allocating space for the new file structure. |
| 72 | * |
| 73 | * @param start The location in memory to start from. |
| 74 | * @param size The size of the memory region to search. |
| 75 | * @param align The alignment boundaries to check on. |
| 76 | * @param newNode A pointer to the file structure to load. |
| 77 | * @param used A pointer to the count of of bytes scanned through, |
| 78 | * including the file if one is found. |
| 79 | * |
| 80 | * @return 1 if a file is found, 0 if one isn't. |
| 81 | */ |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 82 | static int file_cbfs_next_file(struct cbfs_priv *priv, u8 *start, u32 size, |
| 83 | u32 align, struct cbfs_cachenode *newNode, |
| 84 | u32 *used) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 85 | { |
| 86 | struct cbfs_fileheader header; |
| 87 | |
| 88 | *used = 0; |
| 89 | |
| 90 | while (size >= align) { |
| 91 | const struct cbfs_fileheader *fileHeader = |
| 92 | (const struct cbfs_fileheader *)start; |
| 93 | u32 name_len; |
| 94 | u32 step; |
| 95 | |
| 96 | /* Check if there's a file here. */ |
| 97 | if (memcmp(good_file_magic, &(fileHeader->magic), |
| 98 | sizeof(fileHeader->magic))) { |
| 99 | *used += align; |
| 100 | size -= align; |
| 101 | start += align; |
| 102 | continue; |
| 103 | } |
| 104 | |
| 105 | swap_file_header(&header, fileHeader); |
Christian Gmeiner | 9914c73 | 2018-12-22 01:55:48 -0800 | [diff] [blame] | 106 | if (header.offset < sizeof(struct cbfs_fileheader)) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 107 | priv->result = CBFS_BAD_FILE; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 108 | return -1; |
| 109 | } |
| 110 | newNode->next = NULL; |
| 111 | newNode->type = header.type; |
| 112 | newNode->data = start + header.offset; |
| 113 | newNode->data_length = header.len; |
Yaroslav K | cc7ed26 | 2016-08-08 20:32:15 -0700 | [diff] [blame] | 114 | name_len = header.offset - sizeof(struct cbfs_fileheader); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 115 | newNode->name = (char *)fileHeader + |
Yaroslav K | cc7ed26 | 2016-08-08 20:32:15 -0700 | [diff] [blame] | 116 | sizeof(struct cbfs_fileheader); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 117 | newNode->name_length = name_len; |
Simon Glass | ababe10 | 2019-07-08 13:18:22 -0600 | [diff] [blame] | 118 | newNode->attributes_offset = header.attributes_offset; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 119 | |
| 120 | step = header.len; |
| 121 | if (step % align) |
| 122 | step = step + align - step % align; |
| 123 | |
| 124 | *used += step; |
| 125 | return 1; |
| 126 | } |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | /* Look through a CBFS instance and copy file metadata into regular memory. */ |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 131 | static void file_cbfs_fill_cache(struct cbfs_priv *priv, u8 *start, u32 size, |
| 132 | u32 align) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 133 | { |
| 134 | struct cbfs_cachenode *cache_node; |
| 135 | struct cbfs_cachenode *newNode; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 136 | struct cbfs_cachenode **cache_tail = &priv->file_cache; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 137 | |
| 138 | /* Clear out old information. */ |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 139 | cache_node = priv->file_cache; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 140 | while (cache_node) { |
| 141 | struct cbfs_cachenode *oldNode = cache_node; |
| 142 | cache_node = cache_node->next; |
| 143 | free(oldNode); |
| 144 | } |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 145 | priv->file_cache = NULL; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 146 | |
| 147 | while (size >= align) { |
| 148 | int result; |
| 149 | u32 used; |
| 150 | |
| 151 | newNode = (struct cbfs_cachenode *) |
| 152 | malloc(sizeof(struct cbfs_cachenode)); |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 153 | result = file_cbfs_next_file(priv, start, size, align, newNode, |
| 154 | &used); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 155 | |
| 156 | if (result < 0) { |
| 157 | free(newNode); |
| 158 | return; |
| 159 | } else if (result == 0) { |
| 160 | free(newNode); |
| 161 | break; |
| 162 | } |
| 163 | *cache_tail = newNode; |
| 164 | cache_tail = &newNode->next; |
| 165 | |
| 166 | size -= used; |
| 167 | start += used; |
| 168 | } |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 169 | priv->result = CBFS_SUCCESS; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /* Get the CBFS header out of the ROM and do endian conversion. */ |
| 173 | static int file_cbfs_load_header(uintptr_t end_of_rom, |
| 174 | struct cbfs_header *header) |
| 175 | { |
| 176 | struct cbfs_header *header_in_rom; |
Andre Heider | 4468317 | 2018-02-15 07:40:11 +0100 | [diff] [blame] | 177 | int32_t offset = *(u32 *)(end_of_rom - 3); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 178 | |
Andre Heider | 4468317 | 2018-02-15 07:40:11 +0100 | [diff] [blame] | 179 | header_in_rom = (struct cbfs_header *)(end_of_rom + offset + 1); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 180 | swap_header(header, header_in_rom); |
| 181 | |
| 182 | if (header->magic != good_magic || header->offset > |
| 183 | header->rom_size - header->boot_block_size) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 184 | cbfs_s.result = CBFS_BAD_HEADER; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 185 | return 1; |
| 186 | } |
| 187 | return 0; |
| 188 | } |
| 189 | |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame^] | 190 | static int cbfs_load_header_ptr(struct cbfs_priv *priv, ulong base, |
| 191 | struct cbfs_header *header) |
| 192 | { |
| 193 | struct cbfs_header *header_in_rom; |
| 194 | |
| 195 | header_in_rom = (struct cbfs_header *)base; |
| 196 | swap_header(header, header_in_rom); |
| 197 | |
| 198 | if (header->magic != good_magic || header->offset > |
| 199 | header->rom_size - header->boot_block_size) { |
| 200 | priv->result = CBFS_BAD_HEADER; |
| 201 | return -EFAULT; |
| 202 | } |
| 203 | |
| 204 | return 0; |
| 205 | } |
| 206 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 207 | static void cbfs_init(struct cbfs_priv *priv, uintptr_t end_of_rom) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 208 | { |
| 209 | u8 *start_of_rom; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 210 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 211 | priv->initialized = 0; |
| 212 | |
| 213 | if (file_cbfs_load_header(end_of_rom, &priv->header)) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 214 | return; |
| 215 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 216 | start_of_rom = (u8 *)(end_of_rom + 1 - priv->header.rom_size); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 217 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 218 | file_cbfs_fill_cache(priv, start_of_rom, priv->header.rom_size, |
| 219 | priv->header.align); |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 220 | if (priv->result == CBFS_SUCCESS) |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 221 | priv->initialized = 1; |
| 222 | } |
| 223 | |
| 224 | void file_cbfs_init(uintptr_t end_of_rom) |
| 225 | { |
| 226 | cbfs_init(&cbfs_s, end_of_rom); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Simon Glass | 630b2f3 | 2019-08-14 19:56:14 -0600 | [diff] [blame^] | 229 | int cbfs_init_mem(ulong base, ulong size, struct cbfs_priv **privp) |
| 230 | { |
| 231 | struct cbfs_priv priv_s, *priv = &priv_s; |
| 232 | int ret; |
| 233 | |
| 234 | /* |
| 235 | * Use a local variable to start with until we know that the CBFS is |
| 236 | * valid. Assume that a master header appears at the start, at offset |
| 237 | * 0x38. |
| 238 | */ |
| 239 | ret = cbfs_load_header_ptr(priv, base + 0x38, &priv->header); |
| 240 | if (ret) |
| 241 | return ret; |
| 242 | |
| 243 | file_cbfs_fill_cache(priv, (u8 *)base, priv->header.rom_size, |
| 244 | priv->header.align); |
| 245 | if (priv->result != CBFS_SUCCESS) |
| 246 | return -EINVAL; |
| 247 | |
| 248 | priv->initialized = 1; |
| 249 | priv = malloc(sizeof(priv_s)); |
| 250 | if (!priv) |
| 251 | return -ENOMEM; |
| 252 | memcpy(priv, &priv_s, sizeof(priv_s)); |
| 253 | *privp = priv; |
| 254 | |
| 255 | return 0; |
| 256 | } |
| 257 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 258 | const struct cbfs_header *file_cbfs_get_header(void) |
| 259 | { |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 260 | struct cbfs_priv *priv = &cbfs_s; |
| 261 | |
| 262 | if (priv->initialized) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 263 | priv->result = CBFS_SUCCESS; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 264 | return &priv->header; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 265 | } else { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 266 | priv->result = CBFS_NOT_INITIALIZED; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 267 | return NULL; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | const struct cbfs_cachenode *file_cbfs_get_first(void) |
| 272 | { |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 273 | struct cbfs_priv *priv = &cbfs_s; |
| 274 | |
| 275 | if (!priv->initialized) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 276 | priv->result = CBFS_NOT_INITIALIZED; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 277 | return NULL; |
| 278 | } else { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 279 | priv->result = CBFS_SUCCESS; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 280 | return priv->file_cache; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 281 | } |
| 282 | } |
| 283 | |
| 284 | void file_cbfs_get_next(const struct cbfs_cachenode **file) |
| 285 | { |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 286 | struct cbfs_priv *priv = &cbfs_s; |
| 287 | |
| 288 | if (!priv->initialized) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 289 | priv->result = CBFS_NOT_INITIALIZED; |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 290 | *file = NULL; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 291 | return; |
| 292 | } |
| 293 | |
| 294 | if (*file) |
| 295 | *file = (*file)->next; |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 296 | priv->result = CBFS_SUCCESS; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 299 | const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *priv, |
| 300 | const char *name) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 301 | { |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 302 | struct cbfs_cachenode *cache_node = priv->file_cache; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 303 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 304 | if (!priv->initialized) { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 305 | priv->result = CBFS_NOT_INITIALIZED; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 306 | return NULL; |
| 307 | } |
| 308 | |
| 309 | while (cache_node) { |
| 310 | if (!strcmp(name, cache_node->name)) |
| 311 | break; |
| 312 | cache_node = cache_node->next; |
| 313 | } |
| 314 | if (!cache_node) |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 315 | priv->result = CBFS_FILE_NOT_FOUND; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 316 | else |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 317 | priv->result = CBFS_SUCCESS; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 318 | |
| 319 | return cache_node; |
| 320 | } |
| 321 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 322 | const struct cbfs_cachenode *file_cbfs_find(const char *name) |
| 323 | { |
| 324 | return cbfs_find_file(&cbfs_s, name); |
| 325 | } |
| 326 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 327 | const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom, |
| 328 | const char *name) |
| 329 | { |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 330 | struct cbfs_priv *priv = &cbfs_s; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 331 | u8 *start; |
| 332 | u32 size; |
| 333 | u32 align; |
| 334 | static struct cbfs_cachenode node; |
| 335 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 336 | if (file_cbfs_load_header(end_of_rom, &priv->header)) |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 337 | return NULL; |
| 338 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 339 | start = (u8 *)(end_of_rom + 1 - priv->header.rom_size); |
| 340 | size = priv->header.rom_size; |
| 341 | align = priv->header.align; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 342 | |
| 343 | while (size >= align) { |
| 344 | int result; |
| 345 | u32 used; |
| 346 | |
Simon Glass | 02e4af6 | 2019-08-14 19:56:12 -0600 | [diff] [blame] | 347 | result = file_cbfs_next_file(priv, start, size, align, &node, |
| 348 | &used); |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 349 | |
| 350 | if (result < 0) |
| 351 | return NULL; |
| 352 | else if (result == 0) |
| 353 | break; |
| 354 | |
| 355 | if (!strcmp(name, node.name)) |
| 356 | return &node; |
| 357 | |
| 358 | size -= used; |
| 359 | start += used; |
| 360 | } |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 361 | cbfs_s.result = CBFS_FILE_NOT_FOUND; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 362 | return NULL; |
| 363 | } |
| 364 | |
| 365 | const char *file_cbfs_name(const struct cbfs_cachenode *file) |
| 366 | { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 367 | cbfs_s.result = CBFS_SUCCESS; |
| 368 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 369 | return file->name; |
| 370 | } |
| 371 | |
| 372 | u32 file_cbfs_size(const struct cbfs_cachenode *file) |
| 373 | { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 374 | cbfs_s.result = CBFS_SUCCESS; |
| 375 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 376 | return file->data_length; |
| 377 | } |
| 378 | |
| 379 | u32 file_cbfs_type(const struct cbfs_cachenode *file) |
| 380 | { |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 381 | cbfs_s.result = CBFS_SUCCESS; |
| 382 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 383 | return file->type; |
| 384 | } |
| 385 | |
| 386 | long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer, |
| 387 | unsigned long maxsize) |
| 388 | { |
| 389 | u32 size; |
| 390 | |
| 391 | size = file->data_length; |
| 392 | if (maxsize && size > maxsize) |
| 393 | size = maxsize; |
| 394 | |
| 395 | memcpy(buffer, file->data, size); |
Simon Glass | c7f1693 | 2019-08-14 19:56:13 -0600 | [diff] [blame] | 396 | cbfs_s.result = CBFS_SUCCESS; |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 397 | |
Gabe Black | 84cd932 | 2012-10-12 14:26:11 +0000 | [diff] [blame] | 398 | return size; |
| 399 | } |