-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathprogram.c
More file actions
442 lines (364 loc) · 11.3 KB
/
program.c
File metadata and controls
442 lines (364 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2016-2017, Linaro Ltd.
* All rights reserved.
*/
#include <assert.h>
#define _FILE_OFFSET_BITS 64
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
#include "program.h"
#include "file.h"
#include "qdl.h"
#include "oscompat.h"
#include "firehose.h"
#include "sparse.h"
#include "gpt.h"
static int load_erase_tag(struct list_head *ops, xmlNode *node, bool is_nand)
{
struct firehose_op *program;
int errors = 0;
program = firehose_alloc_op(FIREHOSE_OP_ERASE);
if (!program)
return -1;
program->is_nand = is_nand;
program->sector_size = attr_as_unsigned(node, "SECTOR_SIZE_IN_BYTES", &errors);
program->num_sectors = attr_as_unsigned(node, "num_partition_sectors", &errors);
program->partition = attr_as_unsigned(node, "physical_partition_number", &errors);
program->start_sector = attr_as_string(node, "start_sector", &errors);
if (is_nand) {
program->pages_per_block = attr_as_unsigned(node, "PAGES_PER_BLOCK", &errors);
}
if (errors) {
ux_err("errors while parsing erase tag\n");
free(program);
return -EINVAL;
}
list_append(ops, &program->node);
return 0;
}
static int program_load_sparse(struct list_head *ops, struct firehose_op *program, struct qdl_file *file)
{
struct firehose_op *program_sparse = NULL;
char tmp[PATH_MAX];
sparse_header_t sparse_header;
unsigned int start_sector;
uint32_t sparse_fill_value;
uint64_t chunk_size;
off_t sparse_offset;
int chunk_type;
if (sparse_header_parse(file, &sparse_header)) {
/*
* If the XML tag "program" contains the attribute 'sparse="true"'
* for a partition node but lacks a sparse header,
* it will be validated against the defined partition size.
* If the sizes match, it is likely that the 'sparse="true"' attribute
* was set by mistake, fix the sparse flag and add the
* program entry to the list.
*/
if ((off_t)program->sector_size * program->num_sectors == qdl_file_seek(file, 0, SEEK_END)) {
program->sparse = false;
list_append(ops, &program->node);
return 0;
}
ux_err("[PROGRAM] Unable to parse sparse header at %s...failed\n",
program->filename);
return -1;
}
for (uint32_t i = 0; i < sparse_header.total_chunks; ++i) {
chunk_type = sparse_chunk_header_parse(file, &sparse_header,
&chunk_size,
&sparse_fill_value,
&sparse_offset);
if (chunk_type < 0) {
ux_err("[PROGRAM] Unable to parse sparse chunk %i at %s...failed\n",
i, program->filename);
return -1;
}
if (chunk_size == 0)
continue;
if (chunk_size % program->sector_size != 0) {
ux_err("[SPARSE] File chunk #%u size %" PRIu64 " is not a sector-multiple\n",
i, chunk_size);
return -1;
}
if (chunk_size / program->sector_size >= UINT_MAX) {
/*
* Perhaps the programmer can handle larger "num_sectors"?
* Let's cap it for now, it's big enough for now...
*/
ux_err("[SPARSE] File chunk #%u size %" PRIu64 " is too large\n",
i, chunk_size);
return -1;
}
if (chunk_type == CHUNK_TYPE_RAW || chunk_type == CHUNK_TYPE_FILL) {
program_sparse = firehose_alloc_op(FIREHOSE_OP_PROGRAM);
program_sparse->pages_per_block = program->pages_per_block;
program_sparse->sector_size = program->sector_size;
program_sparse->file_offset = program->file_offset;
program_sparse->filename = strdup(program->filename);
program_sparse->label = strdup(program->label);
program_sparse->partition = program->partition;
program_sparse->sparse = program->sparse;
program_sparse->start_sector = strdup(program->start_sector);
program_sparse->last_sector = program->last_sector;
program_sparse->is_nand = program->is_nand;
program_sparse->sparse_chunk_type = chunk_type;
program_sparse->num_sectors = chunk_size / program->sector_size;
if (chunk_type == CHUNK_TYPE_RAW)
program_sparse->sparse_offset = sparse_offset;
else
program_sparse->sparse_fill_value = sparse_fill_value;
list_append(ops, &program_sparse->node);
}
start_sector = (unsigned int)strtoul(program->start_sector, NULL, 0);
start_sector += chunk_size / program->sector_size;
sprintf(tmp, "%u", start_sector);
free((void *)program->start_sector);
program->start_sector = strdup(tmp);
}
return 0;
}
static int load_program_tag(struct list_head *ops, xmlNode *node, bool is_nand,
bool allow_missing, struct qdl_zip *zip, const char *incdir)
{
struct firehose_op *program;
struct qdl_file file = {};
char tmp[PATH_MAX];
int errors = 0;
int ret;
program = firehose_alloc_op(FIREHOSE_OP_PROGRAM);
if (!program)
return -1;
program->is_nand = is_nand;
program->sector_size = attr_as_unsigned(node, "SECTOR_SIZE_IN_BYTES", &errors);
program->zip = qdl_zip_get(zip);
program->filename = attr_as_string(node, "filename", &errors);
program->label = attr_as_string(node, "label", &errors);
program->num_sectors = attr_as_unsigned(node, "num_partition_sectors", &errors);
program->partition = attr_as_unsigned(node, "physical_partition_number", &errors);
program->sparse = attr_as_bool(node, "sparse", &errors);
program->start_sector = attr_as_string(node, "start_sector", &errors);
if (is_nand) {
program->pages_per_block = attr_as_unsigned(node, "PAGES_PER_BLOCK", &errors);
if (xmlGetProp(node, (xmlChar *)"last_sector")) {
program->last_sector = attr_as_unsigned(node, "last_sector", &errors);
}
} else {
program->file_offset = attr_as_unsigned(node, "file_sector_offset", &errors);
}
if (errors) {
ux_err("errors while parsing program tag\n");
free(program);
return -EINVAL;
}
if (program->filename) {
if (incdir) {
snprintf(tmp, PATH_MAX, "%s/%s", incdir, program->filename);
if (access(tmp, F_OK) != -1) {
free((void *)program->filename);
program->filename = strdup(tmp);
}
}
ret = qdl_file_open(zip, program->filename, &file);
if (ret < 0) {
ux_info("unable to open %s", program->filename);
if (!allow_missing) {
ux_info("...failing\n");
return -1;
}
ux_info("...ignoring\n");
free((void *)program->filename);
program->filename = NULL;
}
}
if (program->filename && program->sparse) {
ret = program_load_sparse(ops, program, &file);
if (ret < 0)
return -1;
/*
* Chunks were added to the program list, drop the filename of
* the parent, to prevent this from being written to the device
*/
free((void *)program->filename);
program->filename = NULL;
}
list_append(ops, &program->node);
qdl_file_close(&file);
return 0;
}
int program_load_xml(struct list_head *ops, xmlDoc *doc, struct qdl_zip *zip, const char *program_file,
bool is_nand, bool allow_missing, const char *incdir)
{
xmlNode *node;
xmlNode *root;
int errors = 0;
root = xmlDocGetRootElement(doc);
for (node = root->children; node ; node = node->next) {
if (node->type != XML_ELEMENT_NODE)
continue;
if (!xmlStrcmp(node->name, (xmlChar *)"erase"))
errors = load_erase_tag(ops, node, is_nand);
else if (!xmlStrcmp(node->name, (xmlChar *)"program"))
errors = load_program_tag(ops, node, is_nand, allow_missing, zip, incdir);
else {
ux_err("unrecognized tag \"%s\" in program-type file \"%s\"\n", node->name, program_file);
errors = -EINVAL;
}
if (errors)
break;
}
return errors;
}
int program_load(struct list_head *ops, const char *program_file, bool is_nand, bool allow_missing, const char *incdir)
{
xmlDoc *doc;
int errors;
doc = xmlReadFile(program_file, NULL, 0);
if (!doc) {
ux_err("failed to parse program-type file \"%s\"\n", program_file);
return -EINVAL;
}
errors = program_load_xml(ops, doc, NULL, program_file, is_nand, allow_missing, incdir);
xmlFreeDoc(doc);
return errors;
}
int erase_execute(struct qdl_device *qdl, struct firehose_op *op,
int (*apply)(struct qdl_device *qdl, struct firehose_op *op))
{
int ret;
assert(op->type == FIREHOSE_OP_ERASE);
ret = apply(qdl, op);
if (ret)
return ret;
return 0;
}
static struct firehose_op *program_find_partition(struct list_head *ops, const char *partition)
{
struct firehose_op *program;
const char *label;
list_for_each_entry(program, ops, node) {
if (program->type != FIREHOSE_OP_PROGRAM)
continue;
label = program->label;
if (!label)
continue;
if (!strcmp(label, partition))
return program;
}
return NULL;
}
/**
* program_find_bootable_partition() - find one bootable partition
*
* Returns partition number, or negative errno on failure.
*
* Scan program tags for a partition with the label "sbl1", "xbl" or "xbl_a"
* and return the partition number for this. If more than one line matches
* we're informing the caller so that they can warn the user about the
* uncertainty of this logic.
*/
int program_find_bootable_partition(struct list_head *ops, bool *multiple_found)
{
struct firehose_op *program;
int part = -ENOENT;
*multiple_found = false;
program = program_find_partition(ops, "xbl");
if (program)
part = program->partition;
program = program_find_partition(ops, "xbl_a");
if (program) {
if (part != -ENOENT)
*multiple_found = true;
else
part = program->partition;
}
program = program_find_partition(ops, "sbl1");
if (program) {
if (part != -ENOENT)
*multiple_found = true;
else
part = program->partition;
}
return part;
}
/**
* program_is_sec_partition_flashed() - find if secdata partition is flashed
*
* Returns true if filename for secdata is set in program*.xml,
* or false otherwise.
*/
int program_is_sec_partition_flashed(struct list_head *ops)
{
struct firehose_op *program;
program = program_find_partition(ops, "secdata");
if (!program)
return false;
if (program->filename)
return true;
return false;
}
int program_cmd_add(struct list_head *ops, const char *address, const char *filename)
{
unsigned int start_sector;
unsigned int num_sectors;
struct firehose_op *program;
char *gpt_partition;
int partition;
char buf[20];
int ret;
ret = parse_storage_address(address, &partition, &start_sector, &num_sectors, &gpt_partition);
if (ret < 0)
return ret;
program = firehose_alloc_op(FIREHOSE_OP_PROGRAM);
if (!program) {
ux_err("failed to allocate program command\n");
return -1;
}
program->sector_size = 0;
program->file_offset = 0;
program->filename = filename ? strdup(filename) : NULL;
program->label = filename ? strdup(filename) : NULL;
program->num_sectors = num_sectors;
program->partition = partition;
program->sparse = false;
sprintf(buf, "%u", start_sector);
program->start_sector = strdup(buf);
program->last_sector = 0;
program->is_nand = false;
program->gpt_partition = gpt_partition;
list_append(ops, &program->node);
return 0;
}
int erase_cmd_add(struct list_head *ops, const char *address)
{
unsigned int start_sector;
unsigned int num_sectors;
struct firehose_op *program;
char *gpt_partition;
int partition;
char buf[20];
int ret;
ret = parse_storage_address(address, &partition, &start_sector, &num_sectors, &gpt_partition);
if (ret < 0)
return ret;
program = firehose_alloc_op(FIREHOSE_OP_ERASE);
if (!program) {
ux_err("failed to allocate erase command\n");
return -1;
}
program->num_sectors = num_sectors;
program->partition = partition;
sprintf(buf, "%u", start_sector);
program->start_sector = strdup(buf);
program->gpt_partition = gpt_partition;
list_append(ops, &program->node);
return 0;
}