2017-07-24 23:46:13 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016-2017, Linaro Ltd.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
|
* may be used to endorse or promote products derived from this software without
|
|
|
|
|
* specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
2016-07-08 11:26:26 -07:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
|
|
|
|
|
|
#include "program.h"
|
2018-10-05 12:55:56 +08:00
|
|
|
#include "qdl.h"
|
2016-07-08 11:26:26 -07:00
|
|
|
|
|
|
|
|
static struct program *programes;
|
|
|
|
|
static struct program *programes_last;
|
|
|
|
|
|
|
|
|
|
int program_load(const char *program_file)
|
|
|
|
|
{
|
|
|
|
|
struct program *program;
|
|
|
|
|
xmlNode *node;
|
|
|
|
|
xmlNode *root;
|
|
|
|
|
xmlDoc *doc;
|
|
|
|
|
int errors;
|
|
|
|
|
|
|
|
|
|
doc = xmlReadFile(program_file, NULL, 0);
|
|
|
|
|
if (!doc) {
|
|
|
|
|
fprintf(stderr, "[PROGRAM] failed to parse %s\n", program_file);
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
root = xmlDocGetRootElement(doc);
|
|
|
|
|
for (node = root->children; node ; node = node->next) {
|
|
|
|
|
if (node->type != XML_ELEMENT_NODE)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (xmlStrcmp(node->name, (xmlChar*)"program")) {
|
|
|
|
|
fprintf(stderr, "[PROGRAM] unrecognized tag \"%s\", ignoring\n", node->name);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
errors = 0;
|
|
|
|
|
|
|
|
|
|
program = calloc(1, sizeof(struct program));
|
|
|
|
|
|
|
|
|
|
program->sector_size = attr_as_unsigned(node, "SECTOR_SIZE_IN_BYTES", &errors);
|
|
|
|
|
program->file_offset = attr_as_unsigned(node, "file_sector_offset", &errors);
|
|
|
|
|
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->start_sector = attr_as_string(node, "start_sector", &errors);
|
|
|
|
|
|
|
|
|
|
if (errors) {
|
|
|
|
|
fprintf(stderr, "[PROGRAM] errors while parsing program\n");
|
|
|
|
|
free(program);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (programes) {
|
|
|
|
|
programes_last->next = program;
|
|
|
|
|
programes_last = program;
|
|
|
|
|
} else {
|
|
|
|
|
programes = program;
|
|
|
|
|
programes_last = program;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-09 17:33:51 -08:00
|
|
|
int program_execute(struct qdl_device *qdl, int (*apply)(struct qdl_device *qdl, struct program *program, int fd),
|
2018-03-26 16:55:11 +02:00
|
|
|
const char *incdir)
|
2016-07-08 11:26:26 -07:00
|
|
|
{
|
|
|
|
|
struct program *program;
|
2018-03-26 16:55:11 +02:00
|
|
|
const char *filename;
|
|
|
|
|
char tmp[PATH_MAX];
|
2016-09-21 11:52:27 -07:00
|
|
|
int ret;
|
2016-07-08 11:26:26 -07:00
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
for (program = programes; program; program = program->next) {
|
2017-11-29 21:07:39 -08:00
|
|
|
if (!program->filename)
|
|
|
|
|
continue;
|
|
|
|
|
|
2018-03-26 16:55:11 +02:00
|
|
|
filename = program->filename;
|
|
|
|
|
if (incdir) {
|
|
|
|
|
snprintf(tmp, PATH_MAX, "%s/%s", incdir, filename);
|
|
|
|
|
if (access(tmp, F_OK) != -1)
|
|
|
|
|
filename = tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
|
|
2017-11-29 21:07:39 -08:00
|
|
|
if (fd < 0) {
|
|
|
|
|
printf("Unable to open %s...ignoring\n", program->filename);
|
|
|
|
|
continue;
|
2016-07-08 11:26:26 -07:00
|
|
|
}
|
2017-11-29 21:07:39 -08:00
|
|
|
|
2018-11-09 17:33:51 -08:00
|
|
|
ret = apply(qdl, program, fd);
|
2016-07-08 11:26:26 -07:00
|
|
|
|
|
|
|
|
close(fd);
|
2016-09-21 11:52:27 -07:00
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
2016-07-08 11:26:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-06 23:21:15 -08:00
|
|
|
/**
|
|
|
|
|
* program_find_bootable_partition() - find one bootable partition
|
|
|
|
|
*
|
|
|
|
|
* Returns partition number, or negative errno on failure.
|
|
|
|
|
*
|
2019-02-27 09:10:12 -08:00
|
|
|
* 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 assuming our logic is flawed and return an error.
|
2017-11-06 23:21:15 -08:00
|
|
|
*/
|
|
|
|
|
int program_find_bootable_partition(void)
|
|
|
|
|
{
|
|
|
|
|
struct program *program;
|
|
|
|
|
const char *label;
|
|
|
|
|
int part = -ENOENT;
|
|
|
|
|
|
|
|
|
|
for (program = programes; program; program = program->next) {
|
|
|
|
|
label = program->label;
|
|
|
|
|
|
2019-02-27 09:10:12 -08:00
|
|
|
if (!strcmp(label, "xbl") || !strcmp(label, "xbl_a") ||
|
|
|
|
|
!strcmp(label, "sbl1")) {
|
2017-11-06 23:21:15 -08:00
|
|
|
if (part != -ENOENT)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
part = program->partition;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return part;
|
|
|
|
|
}
|