Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2012, 2016 secunet Security Networks AG |
| 5 | * (Written by Nico Huber <nico.huber@secunet.com> for secunet) |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 16 | */ |
| 17 | /** |
| 18 | * @mainpage |
| 19 | * |
| 20 | * Have a look at the Modules section for a function reference. |
| 21 | */ |
| 22 | |
Nico Huber | 70461a9 | 2019-06-15 14:56:19 +0200 | [diff] [blame] | 23 | #include <errno.h> |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <stdarg.h> |
| 27 | |
| 28 | #include "flash.h" |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 29 | #include "fmap.h" |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 30 | #include "programmer.h" |
| 31 | #include "layout.h" |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 32 | #include "hwaccess.h" |
| 33 | #include "ich_descriptors.h" |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 34 | #include "libflashrom.h" |
| 35 | |
| 36 | /** |
| 37 | * @defgroup flashrom-general General |
| 38 | * @{ |
| 39 | */ |
| 40 | |
| 41 | /** Pointer to log callback function. */ |
| 42 | static flashrom_log_callback *global_log_callback = NULL; |
| 43 | |
| 44 | /** |
| 45 | * @brief Initialize libflashrom. |
| 46 | * |
| 47 | * @param perform_selfcheck If not zero, perform a self check. |
| 48 | * @return 0 on success |
| 49 | */ |
| 50 | int flashrom_init(const int perform_selfcheck) |
| 51 | { |
| 52 | if (perform_selfcheck && selfcheck()) |
| 53 | return 1; |
| 54 | myusec_calibrate_delay(); |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * @brief Shut down libflashrom. |
| 60 | * @return 0 on success |
| 61 | */ |
| 62 | int flashrom_shutdown(void) |
| 63 | { |
| 64 | return 0; /* TODO: nothing to do? */ |
| 65 | } |
| 66 | |
| 67 | /* TODO: flashrom_set_loglevel()? do we need it? |
| 68 | For now, let the user decide in his callback. */ |
| 69 | |
| 70 | /** |
| 71 | * @brief Set the log callback function. |
| 72 | * |
| 73 | * Set a callback function which will be invoked whenever libflashrom wants |
| 74 | * to output messages. This allows frontends to do whatever they see fit with |
| 75 | * such messages, e.g. write them to syslog, or to file, or print them in a |
| 76 | * GUI window, etc. |
| 77 | * |
| 78 | * @param log_callback Pointer to the new log callback function. |
| 79 | */ |
| 80 | void flashrom_set_log_callback(flashrom_log_callback *const log_callback) |
| 81 | { |
| 82 | global_log_callback = log_callback; |
| 83 | } |
| 84 | /** @private */ |
Nico Huber | d152fb9 | 2017-06-19 12:57:10 +0200 | [diff] [blame] | 85 | int print(const enum flashrom_log_level level, const char *const fmt, ...) |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 86 | { |
| 87 | if (global_log_callback) { |
| 88 | int ret; |
| 89 | va_list args; |
| 90 | va_start(args, fmt); |
Nico Huber | d152fb9 | 2017-06-19 12:57:10 +0200 | [diff] [blame] | 91 | ret = global_log_callback(level, fmt, args); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 92 | va_end(args); |
| 93 | return ret; |
| 94 | } |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | /** @} */ /* end flashrom-general */ |
| 99 | |
| 100 | |
| 101 | |
| 102 | /** |
| 103 | * @defgroup flashrom-query Querying |
| 104 | * @{ |
| 105 | */ |
| 106 | |
Artur Raglis | 71b706f | 2019-06-05 19:24:52 +0200 | [diff] [blame^] | 107 | /** |
| 108 | * @brief Returns flashrom version |
| 109 | * @return flashrom version |
| 110 | */ |
| 111 | const char *flashrom_version_info(void) |
| 112 | { |
| 113 | return flashrom_version; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * @brief Returns list of supported programmers |
| 118 | * @return List of supported programmers, or NULL if an error occurred |
| 119 | */ |
| 120 | const char **flashrom_supported_programmers(void) |
| 121 | { |
| 122 | enum programmer p = 0; |
| 123 | const char **supported_programmers = malloc((PROGRAMMER_INVALID + 1) * sizeof(char*)); |
| 124 | |
| 125 | if (supported_programmers != NULL) { |
| 126 | for (; p < PROGRAMMER_INVALID; ++p) { |
| 127 | supported_programmers[p] = programmer_table[p].name; |
| 128 | } |
| 129 | } else { |
| 130 | msg_gerr("Memory allocation error!\n"); |
| 131 | } |
| 132 | |
| 133 | return supported_programmers; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * @brief Returns list of supported flash chips |
| 138 | * @return List of supported flash chips, or NULL if an error occurred |
| 139 | */ |
| 140 | struct flashrom_flashchip_info *flashrom_supported_flash_chips(void) |
| 141 | { |
| 142 | int i = 0; |
| 143 | struct flashrom_flashchip_info *supported_flashchips = |
| 144 | malloc(flashchips_size * sizeof(*supported_flashchips)); |
| 145 | |
| 146 | if (supported_flashchips != NULL) { |
| 147 | for (; i < flashchips_size; ++i) { |
| 148 | supported_flashchips[i].vendor = flashchips[i].vendor; |
| 149 | supported_flashchips[i].name = flashchips[i].name; |
| 150 | supported_flashchips[i].tested.erase = |
| 151 | (enum flashrom_test_state)flashchips[i].tested.erase; |
| 152 | supported_flashchips[i].tested.probe = |
| 153 | (enum flashrom_test_state)flashchips[i].tested.probe; |
| 154 | supported_flashchips[i].tested.read = |
| 155 | (enum flashrom_test_state)flashchips[i].tested.read; |
| 156 | supported_flashchips[i].tested.write = |
| 157 | (enum flashrom_test_state)flashchips[i].tested.write; |
| 158 | supported_flashchips[i].total_size = flashchips[i].total_size; |
| 159 | } |
| 160 | } else { |
| 161 | msg_gerr("Memory allocation error!\n"); |
| 162 | } |
| 163 | |
| 164 | return supported_flashchips; |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * @brief Returns list of supported mainboards |
| 169 | * @return List of supported mainboards, or NULL if an error occurred |
| 170 | */ |
| 171 | struct flashrom_board_info *flashrom_supported_boards(void) |
| 172 | { |
| 173 | int boards_known_size = 0; |
| 174 | int i = 0; |
| 175 | const struct board_info *binfo = boards_known; |
| 176 | |
| 177 | while ((binfo++)->vendor) |
| 178 | ++boards_known_size; |
| 179 | binfo = boards_known; |
| 180 | /* add place for {0} */ |
| 181 | ++boards_known_size; |
| 182 | |
| 183 | struct flashrom_board_info *supported_boards = |
| 184 | malloc(boards_known_size * sizeof(*binfo)); |
| 185 | |
| 186 | if (supported_boards != NULL) { |
| 187 | for (; i < boards_known_size; ++i) { |
| 188 | supported_boards[i].vendor = binfo[i].vendor; |
| 189 | supported_boards[i].name = binfo[i].name; |
| 190 | supported_boards[i].working = binfo[i].working; |
| 191 | } |
| 192 | } else { |
| 193 | msg_gerr("Memory allocation error!\n"); |
| 194 | } |
| 195 | |
| 196 | return supported_boards; |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * @brief Returns list of supported chipsets |
| 201 | * @return List of supported chipsets, or NULL if an error occurred |
| 202 | */ |
| 203 | struct flashrom_chipset_info *flashrom_supported_chipsets(void) |
| 204 | { |
| 205 | int chipset_enables_size = 0; |
| 206 | int i = 0; |
| 207 | const struct penable *chipset = chipset_enables; |
| 208 | |
| 209 | while ((chipset++)->vendor_name) |
| 210 | ++chipset_enables_size; |
| 211 | chipset = chipset_enables; |
| 212 | /* add place for {0}*/ |
| 213 | ++chipset_enables_size; |
| 214 | |
| 215 | struct flashrom_chipset_info *supported_chipsets = |
| 216 | malloc(chipset_enables_size * sizeof(*supported_chipsets)); |
| 217 | |
| 218 | if (supported_chipsets != NULL) { |
| 219 | for (; i < chipset_enables_size; ++i) { |
| 220 | supported_chipsets[i].vendor = chipset[i].vendor_name; |
| 221 | supported_chipsets[i].chipset = chipset[i].device_name; |
| 222 | supported_chipsets[i].vendor_id = chipset[i].vendor_id; |
| 223 | supported_chipsets[i].chipset_id = chipset[i].device_id; |
| 224 | supported_chipsets[i].status = chipset[i].status; |
| 225 | } |
| 226 | } else { |
| 227 | msg_gerr("Memory allocation error!\n"); |
| 228 | } |
| 229 | |
| 230 | return supported_chipsets; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * @brief Frees memory allocated by libflashrom API |
| 235 | * @param Pointer to block of memory which should be freed |
| 236 | * @return 0 on success |
| 237 | */ |
| 238 | int flashrom_data_free(void *const p) |
| 239 | { |
| 240 | free(p); |
| 241 | return 0; |
| 242 | } |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 243 | |
| 244 | /** @} */ /* end flashrom-query */ |
| 245 | |
| 246 | |
| 247 | |
| 248 | /** |
| 249 | * @defgroup flashrom-prog Programmers |
| 250 | * @{ |
| 251 | */ |
| 252 | |
| 253 | /** |
| 254 | * @brief Initialize the specified programmer. |
| 255 | * |
| 256 | * Currently, only one programmer may be initialized at a time. |
| 257 | * |
| 258 | * @param[out] flashprog Points to a pointer of type struct flashrom_programmer |
| 259 | * that will be set if programmer initialization succeeds. |
| 260 | * *flashprog has to be shutdown by the caller with @ref |
| 261 | * flashrom_programmer_shutdown. |
| 262 | * @param[in] prog_name Name of the programmer to initialize. |
| 263 | * @param[in] prog_param Pointer to programmer specific parameters. |
| 264 | * @return 0 on success |
| 265 | */ |
| 266 | int flashrom_programmer_init(struct flashrom_programmer **const flashprog, |
| 267 | const char *const prog_name, const char *const prog_param) |
| 268 | { |
| 269 | unsigned prog; |
| 270 | |
| 271 | for (prog = 0; prog < PROGRAMMER_INVALID; prog++) { |
| 272 | if (strcmp(prog_name, programmer_table[prog].name) == 0) |
| 273 | break; |
| 274 | } |
| 275 | if (prog >= PROGRAMMER_INVALID) { |
| 276 | msg_ginfo("Error: Unknown programmer \"%s\". Valid choices are:\n", prog_name); |
| 277 | list_programmers_linebreak(0, 80, 0); |
| 278 | return 1; |
| 279 | } |
| 280 | return programmer_init(prog, prog_param); |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * @brief Shut down the initialized programmer. |
| 285 | * |
| 286 | * @param flashprog The programmer to shut down. |
| 287 | * @return 0 on success |
| 288 | */ |
| 289 | int flashrom_programmer_shutdown(struct flashrom_programmer *const flashprog) |
| 290 | { |
| 291 | return programmer_shutdown(); |
| 292 | } |
| 293 | |
| 294 | /* TODO: flashrom_programmer_capabilities()? */ |
| 295 | |
| 296 | /** @} */ /* end flashrom-prog */ |
| 297 | |
| 298 | |
| 299 | |
| 300 | /** |
| 301 | * @defgroup flashrom-flash Flash chips |
| 302 | * @{ |
| 303 | */ |
| 304 | |
| 305 | /** |
| 306 | * @brief Probe for a flash chip. |
| 307 | * |
| 308 | * Probes for a flash chip and returns a flash context, that can be used |
| 309 | * later with flash chip and @ref flashrom-ops "image operations", if |
| 310 | * exactly one matching chip is found. |
| 311 | * |
| 312 | * @param[out] flashctx Points to a pointer of type struct flashrom_flashctx |
| 313 | * that will be set if exactly one chip is found. *flashctx |
| 314 | * has to be freed by the caller with @ref flashrom_flash_release. |
| 315 | * @param[in] flashprog The flash programmer used to access the chip. |
| 316 | * @param[in] chip_name Name of a chip to probe for, or NULL to probe for |
| 317 | * all known chips. |
| 318 | * @return 0 on success, |
| 319 | * 3 if multiple chips were found, |
| 320 | * 2 if no chip was found, |
| 321 | * or 1 on any other error. |
| 322 | */ |
| 323 | int flashrom_flash_probe(struct flashrom_flashctx **const flashctx, |
| 324 | const struct flashrom_programmer *const flashprog, |
| 325 | const char *const chip_name) |
| 326 | { |
| 327 | int i, ret = 2; |
| 328 | struct flashrom_flashctx second_flashctx = { 0, }; |
| 329 | |
| 330 | chip_to_probe = chip_name; /* chip_to_probe is global in flashrom.c */ |
| 331 | |
| 332 | *flashctx = malloc(sizeof(**flashctx)); |
| 333 | if (!*flashctx) |
| 334 | return 1; |
| 335 | memset(*flashctx, 0, sizeof(**flashctx)); |
| 336 | |
| 337 | for (i = 0; i < registered_master_count; ++i) { |
| 338 | int flash_idx = -1; |
| 339 | if (!ret || (flash_idx = probe_flash(®istered_masters[i], 0, *flashctx, 0)) != -1) { |
| 340 | ret = 0; |
| 341 | /* We found one chip, now check that there is no second match. */ |
| 342 | if (probe_flash(®istered_masters[i], flash_idx + 1, &second_flashctx, 0) != -1) { |
| 343 | ret = 3; |
| 344 | break; |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | if (ret) { |
| 349 | free(*flashctx); |
| 350 | *flashctx = NULL; |
| 351 | } |
| 352 | return ret; |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * @brief Returns the size of the specified flash chip in bytes. |
| 357 | * |
| 358 | * @param flashctx The queried flash context. |
| 359 | * @return Size of flash chip in bytes. |
| 360 | */ |
| 361 | size_t flashrom_flash_getsize(const struct flashrom_flashctx *const flashctx) |
| 362 | { |
| 363 | return flashctx->chip->total_size * 1024; |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * @brief Free a flash context. |
| 368 | * |
| 369 | * @param flashctx Flash context to free. |
| 370 | */ |
| 371 | void flashrom_flash_release(struct flashrom_flashctx *const flashctx) |
| 372 | { |
| 373 | free(flashctx); |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * @brief Set a flag in the given flash context. |
| 378 | * |
| 379 | * @param flashctx Flash context to alter. |
| 380 | * @param flag Flag that is to be set / cleared. |
| 381 | * @param value Value to set. |
| 382 | */ |
| 383 | void flashrom_flag_set(struct flashrom_flashctx *const flashctx, |
| 384 | const enum flashrom_flag flag, const bool value) |
| 385 | { |
| 386 | switch (flag) { |
| 387 | case FLASHROM_FLAG_FORCE: flashctx->flags.force = value; break; |
| 388 | case FLASHROM_FLAG_FORCE_BOARDMISMATCH: flashctx->flags.force_boardmismatch = value; break; |
| 389 | case FLASHROM_FLAG_VERIFY_AFTER_WRITE: flashctx->flags.verify_after_write = value; break; |
| 390 | case FLASHROM_FLAG_VERIFY_WHOLE_CHIP: flashctx->flags.verify_whole_chip = value; break; |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * @brief Return the current value of a flag in the given flash context. |
| 396 | * |
| 397 | * @param flashctx Flash context to read from. |
| 398 | * @param flag Flag to be read. |
| 399 | * @return Current value of the flag. |
| 400 | */ |
| 401 | bool flashrom_flag_get(const struct flashrom_flashctx *const flashctx, const enum flashrom_flag flag) |
| 402 | { |
| 403 | switch (flag) { |
| 404 | case FLASHROM_FLAG_FORCE: return flashctx->flags.force; |
| 405 | case FLASHROM_FLAG_FORCE_BOARDMISMATCH: return flashctx->flags.force_boardmismatch; |
| 406 | case FLASHROM_FLAG_VERIFY_AFTER_WRITE: return flashctx->flags.verify_after_write; |
| 407 | case FLASHROM_FLAG_VERIFY_WHOLE_CHIP: return flashctx->flags.verify_whole_chip; |
| 408 | default: return false; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | /** @} */ /* end flashrom-flash */ |
| 413 | |
| 414 | |
| 415 | |
| 416 | /** |
| 417 | * @defgroup flashrom-layout Layout handling |
| 418 | * @{ |
| 419 | */ |
| 420 | |
| 421 | /** |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 422 | * @brief Read a layout from the Intel ICH descriptor in the flash. |
| 423 | * |
| 424 | * Optionally verify that the layout matches the one in the given |
| 425 | * descriptor dump. |
| 426 | * |
| 427 | * @param[out] layout Points to a struct flashrom_layout pointer that |
| 428 | * gets set if the descriptor is read and parsed |
| 429 | * successfully. |
| 430 | * @param[in] flashctx Flash context to read the descriptor from flash. |
| 431 | * @param[in] dump The descriptor dump to compare to or NULL. |
| 432 | * @param[in] len The length of the descriptor dump. |
| 433 | * |
| 434 | * @return 0 on success, |
| 435 | * 6 if descriptor parsing isn't implemented for the host, |
| 436 | * 5 if the descriptors don't match, |
| 437 | * 4 if the descriptor dump couldn't be parsed, |
| 438 | * 3 if the descriptor on flash couldn't be parsed, |
| 439 | * 2 if the descriptor on flash couldn't be read, |
| 440 | * 1 on any other error. |
| 441 | */ |
| 442 | int flashrom_layout_read_from_ifd(struct flashrom_layout **const layout, struct flashctx *const flashctx, |
| 443 | const void *const dump, const size_t len) |
| 444 | { |
| 445 | #ifndef __FLASHROM_LITTLE_ENDIAN__ |
| 446 | return 6; |
| 447 | #else |
| 448 | struct ich_layout dump_layout; |
| 449 | int ret = 1; |
| 450 | |
| 451 | void *const desc = malloc(0x1000); |
| 452 | struct ich_layout *const chip_layout = malloc(sizeof(*chip_layout)); |
| 453 | if (!desc || !chip_layout) { |
| 454 | msg_gerr("Out of memory!\n"); |
| 455 | goto _free_ret; |
| 456 | } |
| 457 | |
| 458 | if (prepare_flash_access(flashctx, true, false, false, false)) |
| 459 | goto _free_ret; |
| 460 | |
| 461 | msg_cinfo("Reading ich descriptor... "); |
| 462 | if (flashctx->chip->read(flashctx, desc, 0, 0x1000)) { |
| 463 | msg_cerr("Read operation failed!\n"); |
| 464 | msg_cinfo("FAILED.\n"); |
| 465 | ret = 2; |
| 466 | goto _finalize_ret; |
| 467 | } |
| 468 | msg_cinfo("done.\n"); |
| 469 | |
| 470 | if (layout_from_ich_descriptors(chip_layout, desc, 0x1000)) { |
Patrick Rudolph | 911b8d8 | 2019-06-06 11:23:55 +0200 | [diff] [blame] | 471 | msg_cerr("Couldn't parse the descriptor!\n"); |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 472 | ret = 3; |
| 473 | goto _finalize_ret; |
| 474 | } |
| 475 | |
| 476 | if (dump) { |
| 477 | if (layout_from_ich_descriptors(&dump_layout, dump, len)) { |
Patrick Rudolph | 911b8d8 | 2019-06-06 11:23:55 +0200 | [diff] [blame] | 478 | msg_cerr("Couldn't parse the descriptor!\n"); |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 479 | ret = 4; |
| 480 | goto _finalize_ret; |
| 481 | } |
| 482 | |
| 483 | if (chip_layout->base.num_entries != dump_layout.base.num_entries || |
| 484 | memcmp(chip_layout->entries, dump_layout.entries, sizeof(dump_layout.entries))) { |
Patrick Rudolph | 911b8d8 | 2019-06-06 11:23:55 +0200 | [diff] [blame] | 485 | msg_cerr("Descriptors don't match!\n"); |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 486 | ret = 5; |
| 487 | goto _finalize_ret; |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | *layout = (struct flashrom_layout *)chip_layout; |
| 492 | ret = 0; |
| 493 | |
| 494 | _finalize_ret: |
| 495 | finalize_flash_access(flashctx); |
| 496 | _free_ret: |
| 497 | if (ret) |
| 498 | free(chip_layout); |
| 499 | free(desc); |
| 500 | return ret; |
| 501 | #endif |
| 502 | } |
| 503 | |
Nico Huber | ee13d0c | 2019-06-07 17:47:40 +0200 | [diff] [blame] | 504 | #ifdef __FLASHROM_LITTLE_ENDIAN__ |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 505 | static int flashrom_layout_parse_fmap(struct flashrom_layout **layout, |
| 506 | struct flashctx *const flashctx, const struct fmap *const fmap) |
| 507 | { |
| 508 | int i; |
| 509 | struct flashrom_layout *l = get_global_layout(); |
| 510 | |
| 511 | if (!fmap || !l) |
| 512 | return 1; |
| 513 | |
| 514 | if (l->num_entries + fmap->nareas > MAX_ROMLAYOUT) { |
| 515 | msg_gerr("Cannot add fmap entries to layout - Too many entries.\n"); |
| 516 | return 1; |
| 517 | } |
| 518 | |
| 519 | for (i = 0; i < fmap->nareas; i++) { |
| 520 | l->entries[l->num_entries].start = fmap->areas[i].offset; |
| 521 | l->entries[l->num_entries].end = fmap->areas[i].offset + fmap->areas[i].size - 1; |
| 522 | l->entries[l->num_entries].included = false; |
Nico Huber | 70461a9 | 2019-06-15 14:56:19 +0200 | [diff] [blame] | 523 | l->entries[l->num_entries].name = |
| 524 | strndup((const char *)fmap->areas[i].name, FMAP_STRLEN); |
| 525 | if (!l->entries[l->num_entries].name) { |
| 526 | msg_gerr("Error adding layout entry: %s\n", strerror(errno)); |
| 527 | return 1; |
| 528 | } |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 529 | msg_gdbg("fmap %08x - %08x named %s\n", |
| 530 | l->entries[l->num_entries].start, |
| 531 | l->entries[l->num_entries].end, |
| 532 | l->entries[l->num_entries].name); |
| 533 | l->num_entries++; |
| 534 | } |
| 535 | |
| 536 | *layout = l; |
| 537 | return 0; |
| 538 | } |
Nico Huber | ee13d0c | 2019-06-07 17:47:40 +0200 | [diff] [blame] | 539 | #endif /* __FLASHROM_LITTLE_ENDIAN__ */ |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 540 | |
| 541 | /** |
| 542 | * @brief Read a layout by searching the flash chip for fmap. |
| 543 | * |
| 544 | * @param[out] layout Points to a struct flashrom_layout pointer that |
| 545 | * gets set if the fmap is read and parsed successfully. |
| 546 | * @param[in] flashctx Flash context |
| 547 | * @param[in] offset Offset to begin searching for fmap. |
| 548 | * @param[in] offset Length of address space to search. |
| 549 | * |
| 550 | * @return 0 on success, |
| 551 | * 3 if fmap parsing isn't implemented for the host, |
| 552 | * 2 if the fmap couldn't be read, |
| 553 | * 1 on any other error. |
| 554 | */ |
| 555 | int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **const layout, |
| 556 | struct flashctx *const flashctx, off_t offset, size_t len) |
| 557 | { |
| 558 | #ifndef __FLASHROM_LITTLE_ENDIAN__ |
| 559 | return 3; |
| 560 | #else |
| 561 | struct fmap *fmap = NULL; |
| 562 | int ret = 0; |
| 563 | |
| 564 | msg_gdbg("Attempting to read fmap from ROM content.\n"); |
| 565 | if (fmap_read_from_rom(&fmap, flashctx, offset, len)) { |
| 566 | msg_gerr("Failed to read fmap from ROM.\n"); |
| 567 | return 1; |
| 568 | } |
| 569 | |
| 570 | msg_gdbg("Adding fmap layout to global layout.\n"); |
| 571 | if (flashrom_layout_parse_fmap(layout, flashctx, fmap)) { |
| 572 | msg_gerr("Failed to add fmap regions to layout.\n"); |
| 573 | ret = 1; |
| 574 | } |
| 575 | |
| 576 | free(fmap); |
| 577 | return ret; |
| 578 | #endif |
| 579 | } |
| 580 | |
| 581 | /** |
| 582 | * @brief Read a layout by searching buffer for fmap. |
| 583 | * |
| 584 | * @param[out] layout Points to a struct flashrom_layout pointer that |
| 585 | * gets set if the fmap is read and parsed successfully. |
| 586 | * @param[in] flashctx Flash context |
| 587 | * @param[in] buffer Buffer to search in |
| 588 | * @param[in] size Size of buffer to search |
| 589 | * |
| 590 | * @return 0 on success, |
| 591 | * 3 if fmap parsing isn't implemented for the host, |
| 592 | * 2 if the fmap couldn't be read, |
| 593 | * 1 on any other error. |
| 594 | */ |
| 595 | int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **const layout, |
| 596 | struct flashctx *const flashctx, const uint8_t *const buf, size_t size) |
| 597 | { |
| 598 | #ifndef __FLASHROM_LITTLE_ENDIAN__ |
| 599 | return 3; |
| 600 | #else |
| 601 | struct fmap *fmap = NULL; |
| 602 | int ret = 1; |
| 603 | |
| 604 | if (!buf || !size) |
| 605 | goto _ret; |
| 606 | |
| 607 | msg_gdbg("Attempting to read fmap from buffer.\n"); |
| 608 | if (fmap_read_from_buffer(&fmap, buf, size)) { |
| 609 | msg_gerr("Failed to read fmap from buffer.\n"); |
| 610 | goto _ret; |
| 611 | } |
| 612 | |
| 613 | msg_gdbg("Adding fmap layout to global layout.\n"); |
| 614 | if (flashrom_layout_parse_fmap(layout, flashctx, fmap)) { |
| 615 | msg_gerr("Failed to add fmap regions to layout.\n"); |
| 616 | goto _free_ret; |
| 617 | } |
| 618 | |
| 619 | ret = 0; |
| 620 | _free_ret: |
| 621 | free(fmap); |
| 622 | _ret: |
| 623 | return ret; |
| 624 | #endif |
| 625 | } |
| 626 | |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 627 | /** |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 628 | * @brief Set the active layout for a flash context. |
| 629 | * |
| 630 | * Note: This just sets a pointer. The caller must not release the layout |
| 631 | * as long as he uses it through the given flash context. |
| 632 | * |
| 633 | * @param flashctx Flash context whose layout will be set. |
| 634 | * @param layout Layout to bet set. |
| 635 | */ |
| 636 | void flashrom_layout_set(struct flashrom_flashctx *const flashctx, const struct flashrom_layout *const layout) |
| 637 | { |
| 638 | flashctx->layout = layout; |
| 639 | } |
| 640 | |
| 641 | /** @} */ /* end flashrom-layout */ |