blob: 36fa0b6d68db73a11a81b2cca9e16fd2a66e0f9d [file] [log] [blame]
Uwe Hermann75f51072008-03-04 16:29:54 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2005-2008 coresystems GmbH
5 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
Stefan Tauner949ccc82013-09-15 14:01:06 +00006 * Copyright (C) 2011-2013 Stefan Tauner
Uwe Hermann75f51072008-03-04 16:29:54 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
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.
Uwe Hermann75f51072008-03-04 16:29:54 +000016 */
17
Nico Huber70461a92019-06-15 14:56:19 +020018#include <errno.h>
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000019#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000020#include <stdlib.h>
21#include <string.h>
Carl-Daniel Hailfingercb6ad162010-11-02 03:12:51 +000022#include <limits.h>
Uwe Hermann0846f892007-08-23 13:34:59 +000023#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000024#include "programmer.h"
Nico Huber3a9939b2016-04-27 15:56:14 +020025#include "layout.h"
Ollie Lho184a4042005-11-26 21:55:36 +000026
Jacob Garberafc3ad62019-06-24 16:05:28 -060027static struct romentry entries[MAX_ROMLAYOUT];
Nico Huber3a97fd52019-06-15 15:44:39 +020028static struct flashrom_layout global_layout = { entries, MAX_ROMLAYOUT, 0 };
Stefan Taunerc70bc8a2013-08-30 22:22:57 +000029
Nico Huber305f4172013-06-14 11:55:26 +020030struct flashrom_layout *get_global_layout(void)
Nico Huber3a9939b2016-04-27 15:56:14 +020031{
Nico Huber2b94cdb2019-06-15 18:19:26 +020032 return &global_layout;
Nico Huber3a9939b2016-04-27 15:56:14 +020033}
34
Nico Huber8edcd152019-06-16 03:22:58 +020035const struct flashrom_layout *get_default_layout(const struct flashrom_flashctx *const flashctx)
36{
37 return flashctx->default_layout;
38}
39
dhendrixbeaefe02017-09-03 18:06:53 -070040const struct flashrom_layout *get_layout(const struct flashrom_flashctx *const flashctx)
41{
42 if (flashctx->layout && flashctx->layout->num_entries)
43 return flashctx->layout;
44 else
Nico Huber8edcd152019-06-16 03:22:58 +020045 return get_default_layout(flashctx);
dhendrixbeaefe02017-09-03 18:06:53 -070046}
47
Nico Huber354766b2019-06-16 19:28:35 +020048static struct romentry *mutable_layout_next(
49 const struct flashrom_layout *const layout, struct romentry *iterator)
50{
51 const struct romentry *const end = layout->entries + layout->num_entries;
52
53 if (iterator)
54 ++iterator;
55 else
56 iterator = &layout->entries[0];
57
58 if (iterator < end)
59 return iterator;
60 return NULL;
61}
62
Patrick Georgia9095a92010-09-30 17:03:32 +000063#ifndef __LIBPAYLOAD__
Mark Marshallf20b7be2014-05-09 21:16:21 +000064int read_romlayout(const char *name)
Ollie Lho184a4042005-11-26 21:55:36 +000065{
Nico Huber2b94cdb2019-06-15 18:19:26 +020066 struct flashrom_layout *const layout = get_global_layout();
Ollie Lho184a4042005-11-26 21:55:36 +000067 FILE *romlayout;
Nico Huber70461a92019-06-15 14:56:19 +020068 char tempstr[256], tempname[256];
Nico Huber519be662018-12-23 20:03:35 +010069 int ret = 1;
Ollie Lho184a4042005-11-26 21:55:36 +000070
Uwe Hermanna7e05482007-05-09 10:17:44 +000071 romlayout = fopen(name, "r");
72
73 if (!romlayout) {
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000074 msg_gerr("ERROR: Could not open ROM layout (%s).\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +000075 name);
Ollie Lho184a4042005-11-26 21:55:36 +000076 return -1;
77 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000078
79 while (!feof(romlayout)) {
Ollie Lho184a4042005-11-26 21:55:36 +000080 char *tstr1, *tstr2;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +000081
Nico Huber3a97fd52019-06-15 15:44:39 +020082 if (layout->num_entries >= layout->capacity) {
83 msg_gerr("Maximum number of ROM images (%zu) in layout "
84 "file reached.\n", layout->capacity);
Nico Huber70461a92019-06-15 14:56:19 +020085 goto _close_ret;
Carl-Daniel Hailfingerda53ada2010-12-04 11:56:52 +000086 }
Nico Huber70461a92019-06-15 14:56:19 +020087 if (2 != fscanf(romlayout, "%255s %255s\n", tempstr, tempname))
Peter Stuge1fec0f32009-01-12 21:00:35 +000088 continue;
Ollie Lho184a4042005-11-26 21:55:36 +000089#if 0
90 // fscanf does not like arbitrary comments like that :( later
Uwe Hermanna7e05482007-05-09 10:17:44 +000091 if (tempstr[0] == '#') {
Ollie Lho184a4042005-11-26 21:55:36 +000092 continue;
93 }
94#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +000095 tstr1 = strtok(tempstr, ":");
96 tstr2 = strtok(NULL, ":");
Uwe Hermann58783e32008-12-22 16:42:59 +000097 if (!tstr1 || !tstr2) {
Stefan Taunereb582572012-09-21 12:52:50 +000098 msg_gerr("Error parsing layout file. Offending string: \"%s\"\n", tempstr);
Nico Huber70461a92019-06-15 14:56:19 +020099 goto _close_ret;
Uwe Hermann58783e32008-12-22 16:42:59 +0000100 }
Nico Huber92e0b622019-06-15 15:55:11 +0200101 if (flashrom_layout_add_region(layout,
102 strtol(tstr1, NULL, 16), strtol(tstr2, NULL, 16), tempname))
Nico Huber70461a92019-06-15 14:56:19 +0200103 goto _close_ret;
Ollie Lho184a4042005-11-26 21:55:36 +0000104 }
Nico Huber70461a92019-06-15 14:56:19 +0200105 ret = 0;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000106
Nico Huber70461a92019-06-15 14:56:19 +0200107_close_ret:
108 (void)fclose(romlayout);
109 return ret;
Ollie Lho184a4042005-11-26 21:55:36 +0000110}
Patrick Georgia9095a92010-09-30 17:03:32 +0000111#endif
Ollie Lho184a4042005-11-26 21:55:36 +0000112
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000113/* register an include argument (-i) for later processing */
Arthur Heymansb04fef92019-02-05 17:35:05 +0100114int register_include_arg(struct layout_include_args **args, char *name)
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000115{
Arthur Heymansb04fef92019-02-05 17:35:05 +0100116 struct layout_include_args *tmp;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000117 if (name == NULL) {
118 msg_gerr("<NULL> is a bad region name.\n");
119 return 1;
120 }
121
Arthur Heymansb04fef92019-02-05 17:35:05 +0100122 tmp = *args;
123 while (tmp) {
124 if (!strcmp(tmp->name, name)) {
125 msg_gerr("Duplicate region name: \"%s\".\n", name);
126 return 1;
127 }
128 tmp = tmp->next;
129 }
130
Angel Pons690a9442021-06-07 12:33:53 +0200131 tmp = malloc(sizeof(*tmp));
Arthur Heymansb04fef92019-02-05 17:35:05 +0100132 if (tmp == NULL) {
Edward O'Callaghana31a5722022-11-12 12:05:36 +1100133 msg_gerr("Out of memory");
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000134 return 1;
135 }
136
Arthur Heymansb04fef92019-02-05 17:35:05 +0100137 tmp->name = name;
138 tmp->next = *args;
139 *args = tmp;
140
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000141 return 0;
142}
143
Arthur Heymans32b9f5c2019-02-05 16:14:55 +0100144/* returns -1 if an entry is not found, 0 if found. */
Nico Huber305f4172013-06-14 11:55:26 +0200145static int find_romentry(struct flashrom_layout *const l, char *name)
Ollie Lho184a4042005-11-26 21:55:36 +0000146{
Nico Huber305f4172013-06-14 11:55:26 +0200147 if (l->num_entries == 0)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000148 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000149
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000150 msg_gspew("Looking for region \"%s\"... ", name);
Arthur Heymans32b9f5c2019-02-05 16:14:55 +0100151 if (flashrom_layout_include_region(l, name)) {
152 msg_gspew("not found.\n");
153 return -1;
Ollie Lho184a4042005-11-26 21:55:36 +0000154 }
Arthur Heymans32b9f5c2019-02-05 16:14:55 +0100155 msg_gspew("found.\n");
156 return 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000157}
158
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000159/* process -i arguments
160 * returns 0 to indicate success, >0 to indicate failure
161 */
Arthur Heymansb04fef92019-02-05 17:35:05 +0100162int process_include_args(struct flashrom_layout *l, const struct layout_include_args *const args)
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000163{
Nico Huber519be662018-12-23 20:03:35 +0100164 unsigned int found = 0;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100165 const struct layout_include_args *tmp;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000166
Arthur Heymansb04fef92019-02-05 17:35:05 +0100167 if (args == NULL)
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000168 return 0;
169
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000170 /* User has specified an area, but no layout file is loaded. */
Nico Huber305f4172013-06-14 11:55:26 +0200171 if (l->num_entries == 0) {
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000172 msg_gerr("Region requested (with -i \"%s\"), "
173 "but no layout data is available.\n",
Arthur Heymansb04fef92019-02-05 17:35:05 +0100174 args->name);
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000175 return 1;
176 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000177
Arthur Heymansb04fef92019-02-05 17:35:05 +0100178 tmp = args;
179 while (tmp) {
180 if (find_romentry(l, tmp->name) < 0) {
Stefan Tauner23bb6d52012-04-15 14:09:16 +0000181 msg_gerr("Invalid region specified: \"%s\".\n",
Arthur Heymansb04fef92019-02-05 17:35:05 +0100182 tmp->name);
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000183 return 1;
184 }
Arthur Heymansb04fef92019-02-05 17:35:05 +0100185 tmp = tmp->next;
186 found++;
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000187 }
188
Arthur Heymansb04fef92019-02-05 17:35:05 +0100189 msg_ginfo("Using region%s:", found > 1 ? "s" : "");
190 tmp = args;
191 while (tmp) {
192 msg_ginfo(" \"%s\"%s", tmp->name, found > 1 ? "," : "");
193 found--;
194 tmp = tmp->next;
195 }
Louis Yung-Chieh Lo9bcf2682011-12-25 09:12:16 +0000196 msg_ginfo(".\n");
197 return 0;
198}
199
Arthur Heymansb04fef92019-02-05 17:35:05 +0100200void layout_cleanup(struct layout_include_args **args)
Stefan Tauner949ccc82013-09-15 14:01:06 +0000201{
Nico Huber2b94cdb2019-06-15 18:19:26 +0200202 struct flashrom_layout *const layout = get_global_layout();
Nico Huber519be662018-12-23 20:03:35 +0100203 unsigned int i;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100204 struct layout_include_args *tmp;
205
206 while (*args) {
207 tmp = (*args)->next;
208 free(*args);
209 *args = tmp;
Stefan Tauner949ccc82013-09-15 14:01:06 +0000210 }
Stefan Tauner949ccc82013-09-15 14:01:06 +0000211
Nico Huber2b94cdb2019-06-15 18:19:26 +0200212 for (i = 0; i < layout->num_entries; i++) {
Nico Huber70461a92019-06-15 14:56:19 +0200213 free(layout->entries[i].name);
Edward O'Callaghan405e72a2020-12-19 11:21:49 +1100214 layout->entries[i].included = false;
Stefan Tauner949ccc82013-09-15 14:01:06 +0000215 }
Nico Huber2b94cdb2019-06-15 18:19:26 +0200216 layout->num_entries = 0;
Stefan Tauner949ccc82013-09-15 14:01:06 +0000217}
218
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000219/* Validate and - if needed - normalize layout entries. */
220int normalize_romentries(const struct flashctx *flash)
221{
Nico Huber2b94cdb2019-06-15 18:19:26 +0200222 struct flashrom_layout *const layout = get_global_layout();
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000223 chipsize_t total_size = flash->chip->total_size * 1024;
224 int ret = 0;
225
Nico Huber354766b2019-06-16 19:28:35 +0200226 const struct romentry *entry = NULL;
227 while ((entry = layout_next(layout, entry))) {
228 if (entry->start >= total_size || entry->end >= total_size) {
229 msg_gwarn("Warning: Address range of region \"%s\" "
230 "exceeds the current chip's address space.\n", entry->name);
231 if (entry->included)
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000232 ret = 1;
233 }
Nico Huber354766b2019-06-16 19:28:35 +0200234 if (entry->start > entry->end) {
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000235 msg_gerr("Error: Size of the address range of region \"%s\" is not positive.\n",
Nico Huber354766b2019-06-16 19:28:35 +0200236 entry->name);
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000237 ret = 1;
238 }
239 }
240
241 return ret;
242}
Nico Huber3d7b1e32018-12-22 00:53:14 +0100243
244const struct romentry *layout_next_included_region(
245 const struct flashrom_layout *const l, const chipoff_t where)
246{
Nico Huber354766b2019-06-16 19:28:35 +0200247 const struct romentry *entry = NULL, *lowest = NULL;
Nico Huber3d7b1e32018-12-22 00:53:14 +0100248
Nico Huber354766b2019-06-16 19:28:35 +0200249 while ((entry = layout_next(l, entry))) {
250 if (!entry->included)
Nico Huber3d7b1e32018-12-22 00:53:14 +0100251 continue;
Nico Huber354766b2019-06-16 19:28:35 +0200252 if (entry->end < where)
Nico Huber3d7b1e32018-12-22 00:53:14 +0100253 continue;
Nico Huber354766b2019-06-16 19:28:35 +0200254 if (!lowest || lowest->start > entry->start)
255 lowest = entry;
Nico Huber3d7b1e32018-12-22 00:53:14 +0100256 }
257
258 return lowest;
259}
Nico Huber4f213282019-06-15 17:33:49 +0200260
Nico Huber5ca55232019-06-15 22:29:08 +0200261const struct romentry *layout_next_included(
262 const struct flashrom_layout *const layout, const struct romentry *iterator)
263{
Nico Huber354766b2019-06-16 19:28:35 +0200264 while ((iterator = layout_next(layout, iterator))) {
265 if (iterator->included)
266 break;
Nico Huber5ca55232019-06-15 22:29:08 +0200267 }
Nico Huber354766b2019-06-16 19:28:35 +0200268 return iterator;
269}
270
271const struct romentry *layout_next(
272 const struct flashrom_layout *const layout, const struct romentry *iterator)
273{
274 return mutable_layout_next(layout, (struct romentry *)iterator);
Nico Huber5ca55232019-06-15 22:29:08 +0200275}
276
Nico Huber4f213282019-06-15 17:33:49 +0200277/**
278 * @addtogroup flashrom-layout
279 * @{
280 */
281
282/**
Nico Huber5bd990c2019-06-16 19:46:46 +0200283 * @brief Create a new, empty layout.
284 *
285 * @param layout Pointer to returned layout reference.
286 * @param count Number of layout entries to allocate.
287 *
288 * @return 0 on success,
289 * 1 if out of memory.
290 */
291int flashrom_layout_new(struct flashrom_layout **const layout, const unsigned int count)
292{
293 *layout = malloc(sizeof(**layout) + count * sizeof(struct romentry));
294 if (!*layout) {
295 msg_gerr("Error creating layout: %s\n", strerror(errno));
296 return 1;
297 }
298
299 const struct flashrom_layout tmp = {
300 .entries = (void *)((char *)*layout + sizeof(**layout)),
301 .capacity = count,
302 .num_entries = 0,
303 };
304 **layout = tmp;
305 return 0;
306}
307
308/**
Nico Huber92e0b622019-06-15 15:55:11 +0200309 * @brief Add another region to an existing layout.
310 *
311 * @param layout The existing layout.
312 * @param start Start address of the region.
313 * @param end End address (inclusive) of the region.
314 * @param name Name of the region.
315 *
316 * @return 0 on success,
317 * 1 if out of memory,
318 * 2 if the layout is full already.
319 */
320int flashrom_layout_add_region(
321 struct flashrom_layout *const layout,
322 const size_t start, const size_t end, const char *const name)
323{
324 if (layout->num_entries >= layout->capacity) {
325 msg_gerr("Error adding layout entry: No space left\n");
326 return 2;
327 }
328
329 struct romentry *const entry = &layout->entries[layout->num_entries];
330 entry->start = start;
331 entry->end = end;
332 entry->included = false;
333 entry->name = strdup(name);
334 if (!entry->name) {
335 msg_gerr("Error adding layout entry: %s\n", strerror(errno));
336 return 1;
337 }
338
339 msg_gdbg("Added layout entry %08zx - %08zx named %s\n", start, end, name);
340 ++layout->num_entries;
341 return 0;
342}
343
344/**
Nico Huber4f213282019-06-15 17:33:49 +0200345 * @brief Mark given region as included.
346 *
347 * @param layout The layout to alter.
348 * @param name The name of the region to include.
349 *
350 * @return 0 on success,
351 * 1 if the given name can't be found.
352 */
353int flashrom_layout_include_region(struct flashrom_layout *const layout, const char *name)
354{
Nico Huber354766b2019-06-16 19:28:35 +0200355 struct romentry *entry = NULL;
356 while ((entry = mutable_layout_next(layout, entry))) {
357 if (!strcmp(entry->name, name)) {
358 entry->included = true;
Nico Huber4f213282019-06-15 17:33:49 +0200359 return 0;
360 }
361 }
362 return 1;
363}
364
365/**
366 * @brief Free a layout.
367 *
368 * @param layout Layout to free.
369 */
370void flashrom_layout_release(struct flashrom_layout *const layout)
371{
Nico Huber70461a92019-06-15 14:56:19 +0200372 unsigned int i;
373
374 if (!layout || layout == get_global_layout())
Nico Huber4f213282019-06-15 17:33:49 +0200375 return;
376
Nico Huber70461a92019-06-15 14:56:19 +0200377 for (i = 0; i < layout->num_entries; ++i)
378 free(layout->entries[i].name);
Nico Huber4f213282019-06-15 17:33:49 +0200379 free(layout);
380}
381
382/** @} */ /* end flashrom-layout */