/* * This file is part of the flashrom project. * * Copyright (C) 2005-2008 coresystems GmbH * (Written by Stefan Reinauer for coresystems GmbH) * Copyright (C) 2011-2013 Stefan Tauner * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include #include #include #include #include "flash.h" #include "programmer.h" #include "layout.h" struct romentry entries[MAX_ROMLAYOUT]; static struct flashrom_layout layout = { entries, 0 }; struct flashrom_layout *get_global_layout(void) { return &layout; } const struct flashrom_layout *get_layout(const struct flashrom_flashctx *const flashctx) { if (flashctx->layout && flashctx->layout->num_entries) return flashctx->layout; else return &flashctx->fallback_layout.base; } #ifndef __LIBPAYLOAD__ int read_romlayout(const char *name) { FILE *romlayout; char tempstr[256]; int i; romlayout = fopen(name, "r"); if (!romlayout) { msg_gerr("ERROR: Could not open ROM layout (%s).\n", name); return -1; } while (!feof(romlayout)) { char *tstr1, *tstr2; if (layout.num_entries >= MAX_ROMLAYOUT) { msg_gerr("Maximum number of ROM images (%i) in layout " "file reached.\n", MAX_ROMLAYOUT); (void)fclose(romlayout); return 1; } if (2 != fscanf(romlayout, "%255s %255s\n", tempstr, layout.entries[layout.num_entries].name)) continue; #if 0 // fscanf does not like arbitrary comments like that :( later if (tempstr[0] == '#') { continue; } #endif tstr1 = strtok(tempstr, ":"); tstr2 = strtok(NULL, ":"); if (!tstr1 || !tstr2) { msg_gerr("Error parsing layout file. Offending string: \"%s\"\n", tempstr); (void)fclose(romlayout); return 1; } layout.entries[layout.num_entries].start = strtol(tstr1, (char **)NULL, 16); layout.entries[layout.num_entries].end = strtol(tstr2, (char **)NULL, 16); layout.entries[layout.num_entries].included = 0; layout.num_entries++; } for (i = 0; i < layout.num_entries; i++) { msg_gdbg("romlayout %08x - %08x named %s\n", layout.entries[i].start, layout.entries[i].end, layout.entries[i].name); } (void)fclose(romlayout); return 0; } #endif /* register an include argument (-i) for later processing */ int register_include_arg(struct layout_include_args **args, char *name) { struct layout_include_args *tmp; if (name == NULL) { msg_gerr(" is a bad region name.\n"); return 1; } tmp = *args; while (tmp) { if (!strcmp(tmp->name, name)) { msg_gerr("Duplicate region name: \"%s\".\n", name); return 1; } tmp = tmp->next; } tmp = malloc(sizeof(struct layout_include_args)); if (tmp == NULL) { msg_gerr("Could not allocate memory"); return 1; } tmp->name = name; tmp->next = *args; *args = tmp; return 0; } /* returns -1 if an entry is not found, 0 if found. */ static int find_romentry(struct flashrom_layout *const l, char *name) { if (l->num_entries == 0) return -1; msg_gspew("Looking for region \"%s\"... ", name); if (flashrom_layout_include_region(l, name)) { msg_gspew("not found.\n"); return -1; } msg_gspew("found.\n"); return 0; } /* process -i arguments * returns 0 to indicate success, >0 to indicate failure */ int process_include_args(struct flashrom_layout *l, const struct layout_include_args *const args) { int found = 0; const struct layout_include_args *tmp; if (args == NULL) return 0; /* User has specified an area, but no layout file is loaded. */ if (l->num_entries == 0) { msg_gerr("Region requested (with -i \"%s\"), " "but no layout data is available.\n", args->name); return 1; } tmp = args; while (tmp) { if (find_romentry(l, tmp->name) < 0) { msg_gerr("Invalid region specified: \"%s\".\n", tmp->name); return 1; } tmp = tmp->next; found++; } msg_ginfo("Using region%s:", found > 1 ? "s" : ""); tmp = args; while (tmp) { msg_ginfo(" \"%s\"%s", tmp->name, found > 1 ? "," : ""); found--; tmp = tmp->next; } msg_ginfo(".\n"); return 0; } void layout_cleanup(struct layout_include_args **args) { int i; struct layout_include_args *tmp; while (*args) { tmp = (*args)->next; free(*args); *args = tmp; } for (i = 0; i < layout.num_entries; i++) { layout.entries[i].included = 0; } layout.num_entries = 0; } /* Validate and - if needed - normalize layout entries. */ int normalize_romentries(const struct flashctx *flash) { chipsize_t total_size = flash->chip->total_size * 1024; int ret = 0; int i; for (i = 0; i < layout.num_entries; i++) { if (layout.entries[i].start >= total_size || layout.entries[i].end >= total_size) { msg_gwarn("Warning: Address range of region \"%s\" exceeds the current chip's " "address space.\n", layout.entries[i].name); if (layout.entries[i].included) ret = 1; } if (layout.entries[i].start > layout.entries[i].end) { msg_gerr("Error: Size of the address range of region \"%s\" is not positive.\n", layout.entries[i].name); ret = 1; } } return ret; } const struct romentry *layout_next_included_region( const struct flashrom_layout *const l, const chipoff_t where) { unsigned int i; const struct romentry *lowest = NULL; for (i = 0; i < l->num_entries; ++i) { if (!l->entries[i].included) continue; if (l->entries[i].end < where) continue; if (!lowest || lowest->start > l->entries[i].start) lowest = &l->entries[i]; } return lowest; }