2009-09-14 15:29:27 +02:00
|
|
|
/*
|
|
|
|
* common utility functions for cbfstool
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 coresystems GmbH
|
|
|
|
* written by Patrick Georgi <patrick.georgi@coresystems.de>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2010-02-10 20:52:35 +01:00
|
|
|
#include <libgen.h>
|
2009-09-14 15:29:27 +02:00
|
|
|
#include "common.h"
|
|
|
|
#include "cbfs.h"
|
|
|
|
#include "elf.h"
|
|
|
|
|
2011-10-21 23:24:57 +02:00
|
|
|
#define dprintf(x...)
|
2009-09-14 15:29:27 +02:00
|
|
|
|
2009-11-09 18:18:02 +01:00
|
|
|
uint32_t getfilesize(const char *filename)
|
|
|
|
{
|
|
|
|
uint32_t size;
|
|
|
|
FILE *file = fopen(filename, "rb");
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
size = ftell(file);
|
|
|
|
fclose(file);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
|
|
|
|
int place)
|
|
|
|
{
|
|
|
|
FILE *file = fopen(filename, "rb");
|
2009-09-15 10:21:46 +02:00
|
|
|
if (file == NULL)
|
|
|
|
return NULL;
|
2009-09-14 15:29:27 +02:00
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
*romsize_p = ftell(file);
|
|
|
|
fseek(file, 0, SEEK_SET);
|
2009-09-22 17:55:01 +02:00
|
|
|
if (!content) {
|
2009-09-14 15:29:27 +02:00
|
|
|
content = malloc(*romsize_p);
|
2009-09-22 17:55:01 +02:00
|
|
|
if (!content) {
|
|
|
|
printf("Could not get %d bytes for file %s\n",
|
2009-09-30 13:21:18 +02:00
|
|
|
*romsize_p, filename);
|
2009-09-22 17:55:01 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (place == SEEK_END)
|
2009-09-14 15:29:27 +02:00
|
|
|
content -= *romsize_p;
|
2009-09-22 17:55:01 +02:00
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
if (!fread(content, *romsize_p, 1, file)) {
|
|
|
|
printf("failed to read %s\n", filename);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cbfs_header *master_header;
|
|
|
|
uint32_t phys_start, phys_end, align, romsize;
|
|
|
|
void *offset;
|
|
|
|
|
|
|
|
void recalculate_rom_geometry(void *romarea)
|
|
|
|
{
|
|
|
|
offset = romarea + romsize - 0x100000000ULL;
|
|
|
|
master_header = (struct cbfs_header *)
|
|
|
|
phys_to_virt(*((uint32_t *) phys_to_virt(0xfffffffc)));
|
|
|
|
phys_start = (0 - romsize + ntohl(master_header->offset)) & 0xffffffff;
|
|
|
|
phys_end =
|
|
|
|
(0 - ntohl(master_header->bootblocksize) -
|
|
|
|
sizeof(struct cbfs_header)) & 0xffffffff;
|
|
|
|
align = ntohl(master_header->align);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *loadrom(const char *filename)
|
|
|
|
{
|
|
|
|
void *romarea = loadfile(filename, &romsize, 0, SEEK_SET);
|
2009-09-15 10:21:46 +02:00
|
|
|
if (romarea == NULL)
|
|
|
|
return NULL;
|
2009-09-14 15:29:27 +02:00
|
|
|
recalculate_rom_geometry(romarea);
|
|
|
|
return romarea;
|
|
|
|
}
|
|
|
|
|
2010-06-24 15:37:59 +02:00
|
|
|
int writerom(const char *filename, void *start, uint32_t size)
|
2009-09-14 15:29:27 +02:00
|
|
|
{
|
|
|
|
FILE *file = fopen(filename, "wb");
|
2010-06-24 15:37:59 +02:00
|
|
|
if (!file) {
|
|
|
|
fprintf(stderr, "Could not open '%s' for writing: ", filename);
|
|
|
|
perror("");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fwrite(start, size, 1, file) != 1) {
|
|
|
|
fprintf(stderr, "Could not write to '%s': ", filename);
|
|
|
|
perror("");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
fclose(file);
|
2010-06-24 15:37:59 +02:00
|
|
|
return 0;
|
2009-09-14 15:29:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cbfs_file_header(uint32_t physaddr)
|
|
|
|
{
|
|
|
|
/* maybe improve this test */
|
|
|
|
return (strncmp(phys_to_virt(physaddr), "LARCHIVE", 8) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cbfs_file *cbfs_create_empty_file(uint32_t physaddr, uint32_t size)
|
|
|
|
{
|
|
|
|
struct cbfs_file *nextfile = (struct cbfs_file *)phys_to_virt(physaddr);
|
2011-10-21 23:24:57 +02:00
|
|
|
strncpy((char *)(nextfile->magic), "LARCHIVE", 8);
|
2009-09-14 15:29:27 +02:00
|
|
|
nextfile->len = htonl(size);
|
|
|
|
nextfile->type = htonl(0xffffffff);
|
|
|
|
nextfile->checksum = 0; // FIXME?
|
|
|
|
nextfile->offset = htonl(sizeof(struct cbfs_file) + 16);
|
|
|
|
memset(((void *)nextfile) + sizeof(struct cbfs_file), 0, 16);
|
|
|
|
return nextfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
int iself(unsigned char *input)
|
|
|
|
{
|
|
|
|
Elf32_Ehdr *ehdr = (Elf32_Ehdr *) input;
|
|
|
|
return !memcmp(ehdr->e_ident, ELFMAG, 4);
|
|
|
|
}
|
|
|
|
|
2012-04-12 21:36:23 +02:00
|
|
|
static struct filetypes_t {
|
2009-09-14 15:29:27 +02:00
|
|
|
uint32_t type;
|
|
|
|
const char *name;
|
|
|
|
} filetypes[] = {
|
|
|
|
{CBFS_COMPONENT_STAGE, "stage"},
|
|
|
|
{CBFS_COMPONENT_PAYLOAD, "payload"},
|
|
|
|
{CBFS_COMPONENT_OPTIONROM, "optionrom"},
|
2010-03-01 09:34:19 +01:00
|
|
|
{CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
|
|
|
|
{CBFS_COMPONENT_RAW, "raw"},
|
|
|
|
{CBFS_COMPONENT_VSA, "vsa"},
|
|
|
|
{CBFS_COMPONENT_MBI, "mbi"},
|
|
|
|
{CBFS_COMPONENT_MICROCODE, "microcode"},
|
2011-01-14 08:40:24 +01:00
|
|
|
{CBFS_COMPONENT_CMOS_DEFAULT, "cmos default"},
|
2012-04-12 21:36:23 +02:00
|
|
|
{CBFS_COMPONENT_CMOS_LAYOUT, "cmos layout"},
|
2009-09-14 15:29:27 +02:00
|
|
|
{CBFS_COMPONENT_DELETED, "deleted"},
|
|
|
|
{CBFS_COMPONENT_NULL, "null"}
|
|
|
|
};
|
|
|
|
|
2010-04-24 23:24:06 +02:00
|
|
|
void print_supported_filetypes(void)
|
|
|
|
{
|
|
|
|
int i, number = ARRAY_SIZE(filetypes);
|
|
|
|
|
|
|
|
for (i=0; i<number; i++) {
|
|
|
|
printf(" %s%c", filetypes[i].name, (i==(number-1))?'\n':',');
|
|
|
|
if ((i%8) == 7)
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
const char *strfiletype(uint32_t number)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (sizeof(filetypes) / sizeof(struct filetypes_t)); i++)
|
|
|
|
if (filetypes[i].type == number)
|
|
|
|
return filetypes[i].name;
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t intfiletype(const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (sizeof(filetypes) / sizeof(struct filetypes_t)); i++)
|
|
|
|
if (strcmp(filetypes[i].name, name) == 0)
|
|
|
|
return filetypes[i].type;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_cbfs_directory(const char *filename)
|
|
|
|
{
|
|
|
|
printf
|
|
|
|
("%s: %d kB, bootblocksize %d, romsize %d, offset 0x%x\nAlignment: %d bytes\n\n",
|
2010-02-10 20:52:35 +01:00
|
|
|
basename((char *)filename), romsize / 1024, ntohl(master_header->bootblocksize),
|
2009-09-14 15:29:27 +02:00
|
|
|
romsize, ntohl(master_header->offset), align);
|
|
|
|
printf("%-30s %-10s %-12s Size\n", "Name", "Offset", "Type");
|
|
|
|
uint32_t current = phys_start;
|
|
|
|
while (current < phys_end) {
|
|
|
|
if (!cbfs_file_header(current)) {
|
|
|
|
current += align;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
struct cbfs_file *thisfile =
|
|
|
|
(struct cbfs_file *)phys_to_virt(current);
|
|
|
|
uint32_t length = ntohl(thisfile->len);
|
2010-01-07 22:37:18 +01:00
|
|
|
char *fname = (char *)(phys_to_virt(current) + sizeof(struct cbfs_file));
|
2010-04-27 08:56:47 +02:00
|
|
|
if (strlen(fname) == 0)
|
2010-01-07 22:37:18 +01:00
|
|
|
fname = "(empty)";
|
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
printf("%-30s 0x%-8x %-12s %d\n", fname,
|
2009-09-14 15:29:27 +02:00
|
|
|
current - phys_start, strfiletype(ntohl(thisfile->type)),
|
|
|
|
length);
|
|
|
|
current =
|
|
|
|
ALIGN(current + ntohl(thisfile->len) +
|
|
|
|
ntohl(thisfile->offset), align);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-13 10:09:21 +01:00
|
|
|
int extract_file_from_cbfs(const char *filename, const char *payloadname, const char *outpath)
|
|
|
|
{
|
|
|
|
// Identify the coreboot image.
|
|
|
|
printf(
|
|
|
|
"%s: %d kB, bootblocksize %d, romsize %d, offset 0x%x\nAlignment: %d bytes\n\n",
|
|
|
|
basename((char *)filename), romsize / 1024, ntohl(master_header->bootblocksize),
|
|
|
|
romsize, ntohl(master_header->offset), align);
|
|
|
|
|
|
|
|
FILE *outfile = NULL;
|
|
|
|
uint32_t current = phys_start;
|
|
|
|
while (current < phys_end) {
|
|
|
|
if (!cbfs_file_header(current)) {
|
|
|
|
current += align;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Locate the file start struct
|
|
|
|
struct cbfs_file *thisfile =
|
|
|
|
(struct cbfs_file *)phys_to_virt(current);
|
|
|
|
// And its length
|
|
|
|
uint32_t length = ntohl(thisfile->len);
|
|
|
|
// Locate the file name
|
|
|
|
char *fname = (char *)(phys_to_virt(current) + sizeof(struct cbfs_file));
|
2011-10-21 23:24:57 +02:00
|
|
|
|
2011-01-13 10:09:21 +01:00
|
|
|
// It's not the file we are looking for..
|
|
|
|
if (strcmp(fname, payloadname) != 0)
|
|
|
|
{
|
|
|
|
current =
|
|
|
|
ALIGN(current + ntohl(thisfile->len) +
|
|
|
|
ntohl(thisfile->offset), align);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Else, it's our file.
|
2011-01-17 06:08:32 +01:00
|
|
|
printf("Found file %.30s at 0x%x, type %.12s, size %d\n", fname,
|
2011-01-13 10:09:21 +01:00
|
|
|
current - phys_start, strfiletype(ntohl(thisfile->type)),
|
|
|
|
length);
|
|
|
|
|
|
|
|
// If we are not dumping to stdout, open the out file.
|
|
|
|
outfile = fopen(outpath, "wb");
|
|
|
|
if (!outfile)
|
|
|
|
{
|
|
|
|
printf("Could not open the file %s for writing. Aborting.\n", outpath);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ntohl(thisfile->type) != CBFS_COMPONENT_RAW)
|
|
|
|
{
|
|
|
|
printf("Warning: only 'raw' files are safe to extract.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fwrite(((char *)thisfile)
|
|
|
|
+ ntohl(thisfile->offset), length, 1, outfile);
|
|
|
|
|
|
|
|
fclose(outfile);
|
2011-01-17 06:08:32 +01:00
|
|
|
printf("Successfully dumped the file.\n");
|
2011-01-13 10:09:21 +01:00
|
|
|
|
|
|
|
// We'll only dump one file.
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-21 23:24:57 +02:00
|
|
|
printf("File %s not found.\n", payloadname);
|
|
|
|
return 1;
|
2011-01-13 10:09:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location)
|
|
|
|
{
|
|
|
|
uint32_t current = phys_start;
|
|
|
|
while (current < phys_end) {
|
|
|
|
if (!cbfs_file_header(current)) {
|
|
|
|
current += align;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
struct cbfs_file *thisfile =
|
|
|
|
(struct cbfs_file *)phys_to_virt(current);
|
|
|
|
uint32_t length = ntohl(thisfile->len);
|
|
|
|
|
|
|
|
dprintf("at %x, %x bytes\n", current, length);
|
|
|
|
/* Is this a free chunk? */
|
|
|
|
if ((thisfile->type == CBFS_COMPONENT_DELETED)
|
|
|
|
|| (thisfile->type == CBFS_COMPONENT_NULL)) {
|
|
|
|
dprintf("null||deleted at %x, %x bytes\n", current,
|
|
|
|
length);
|
|
|
|
/* if this is the right size, and if specified, the right location, use it */
|
|
|
|
if ((contentsize <= length)
|
|
|
|
&& ((location == 0) || (current == location))) {
|
|
|
|
if (contentsize < length) {
|
|
|
|
dprintf
|
|
|
|
("this chunk is %x bytes, we need %x. create a new chunk at %x with %x bytes\n",
|
|
|
|
length, contentsize,
|
|
|
|
ALIGN(current + contentsize,
|
|
|
|
align),
|
|
|
|
length - contentsize);
|
|
|
|
uint32_t start =
|
|
|
|
ALIGN(current + contentsize, align);
|
|
|
|
uint32_t size =
|
|
|
|
current + ntohl(thisfile->offset)
|
|
|
|
+ length - start - 16 -
|
|
|
|
sizeof(struct cbfs_file);
|
|
|
|
cbfs_create_empty_file(start, size);
|
|
|
|
}
|
|
|
|
dprintf("copying data\n");
|
|
|
|
memcpy(phys_to_virt(current), content,
|
|
|
|
contentsize);
|
2009-09-30 13:21:18 +02:00
|
|
|
return 0;
|
2009-09-14 15:29:27 +02:00
|
|
|
}
|
2009-09-30 13:21:18 +02:00
|
|
|
if (location != 0) {
|
|
|
|
/* CBFS has the constraint that the chain always moves up in memory. so once
|
|
|
|
we're past the place we seek, we don't need to look any further */
|
|
|
|
if (current > location) {
|
|
|
|
printf
|
|
|
|
("the requested space is not available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2009-09-14 15:29:27 +02:00
|
|
|
|
2009-09-30 13:21:18 +02:00
|
|
|
/* Is the requested location inside the current chunk? */
|
|
|
|
if ((current < location)
|
|
|
|
&& ((location + contentsize) <=
|
|
|
|
(current + length))) {
|
|
|
|
/* Split it up. In the next iteration the code will be at the right place. */
|
|
|
|
dprintf("split up. new length: %x\n",
|
|
|
|
location - current -
|
|
|
|
ntohl(thisfile->offset));
|
|
|
|
thisfile->len =
|
|
|
|
htonl(location - current -
|
|
|
|
ntohl(thisfile->offset));
|
2011-10-21 23:24:57 +02:00
|
|
|
cbfs_create_empty_file(location,
|
2009-09-30 13:21:18 +02:00
|
|
|
length -
|
|
|
|
(location -
|
|
|
|
current));
|
|
|
|
}
|
2009-09-14 15:29:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
current =
|
|
|
|
ALIGN(current + ntohl(thisfile->len) +
|
|
|
|
ntohl(thisfile->offset), align);
|
|
|
|
}
|
2009-09-30 13:21:18 +02:00
|
|
|
printf("Could not add the file to CBFS, it's probably too big.\n");
|
2009-11-12 21:06:32 +01:00
|
|
|
printf("File size: %d bytes (%d KB).\n", contentsize, contentsize/1024);
|
2009-09-30 13:21:18 +02:00
|
|
|
return 1;
|
2009-09-14 15:29:27 +02:00
|
|
|
}
|
|
|
|
|
2012-01-27 09:33:47 +01:00
|
|
|
|
|
|
|
static struct cbfs_file *merge_adjacent_files(struct cbfs_file *first,
|
|
|
|
struct cbfs_file *second)
|
|
|
|
{
|
|
|
|
uint32_t new_length =
|
|
|
|
ntohl(first->len) + ntohl(second->len) + ntohl(second->offset);
|
|
|
|
first->len = htonl(new_length);
|
|
|
|
first->checksum = 0; // FIXME?
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cbfs_file *next_file(struct cbfs_file *prev)
|
|
|
|
{
|
|
|
|
uint32_t pos = (prev == NULL) ? phys_start :
|
|
|
|
ALIGN(virt_to_phys(prev) + ntohl(prev->len) + ntohl(prev->offset),
|
|
|
|
align);
|
|
|
|
|
|
|
|
for (; pos < phys_end; pos += align) {
|
|
|
|
if (cbfs_file_header(pos))
|
|
|
|
return (struct cbfs_file *)phys_to_virt(pos);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int remove_file_from_cbfs(const char *filename)
|
|
|
|
{
|
|
|
|
struct cbfs_file *prev = NULL;
|
|
|
|
struct cbfs_file *cur = next_file(prev);
|
|
|
|
struct cbfs_file *next = next_file(cur);
|
|
|
|
for (; cur; prev = cur, cur = next, next = next_file(next)) {
|
|
|
|
|
|
|
|
/* Check if this is the file to remove. */
|
|
|
|
char *name = (char *)cur + sizeof(*cur);
|
|
|
|
if (strcmp(name, filename))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Mark the file as free space and erase its name. */
|
|
|
|
cur->type = CBFS_COMPONENT_NULL;
|
|
|
|
name[0] = '\0';
|
|
|
|
|
|
|
|
/* Merge it with the previous file if possible. */
|
|
|
|
if (prev && prev->type == CBFS_COMPONENT_NULL)
|
|
|
|
cur = merge_adjacent_files(prev, cur);
|
|
|
|
|
|
|
|
/* Merge it with the next file if possible. */
|
|
|
|
if (next && next->type == CBFS_COMPONENT_NULL)
|
|
|
|
merge_adjacent_files(cur, next);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
printf("CBFS file %s not found.\n", filename);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
/* returns new data block with cbfs_file header, suitable to dump into the ROM. location returns
|
|
|
|
the new location that points to the cbfs_file header */
|
|
|
|
void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
|
|
|
|
uint32_t type, uint32_t * location)
|
|
|
|
{
|
|
|
|
uint32_t filename_len = ALIGN(strlen(filename) + 1, 16);
|
|
|
|
uint32_t headersize = sizeof(struct cbfs_file) + filename_len;
|
|
|
|
if ((location != 0) && (*location != 0)) {
|
|
|
|
uint32_t offset = *location % align;
|
|
|
|
/* If offset >= (headersize % align), we can stuff the header into the offset.
|
|
|
|
Otherwise the header has to be aligned itself, and put before the offset data */
|
|
|
|
if (offset >= (headersize % align)) {
|
|
|
|
offset -= (headersize % align);
|
|
|
|
} else {
|
|
|
|
offset += align - (headersize % align);
|
|
|
|
}
|
|
|
|
headersize += offset;
|
|
|
|
*location -= headersize;
|
|
|
|
}
|
|
|
|
void *newdata = malloc(*datasize + headersize);
|
2009-09-22 17:55:01 +02:00
|
|
|
if (!newdata) {
|
|
|
|
printf("Could not get %d bytes for CBFS file.\n", *datasize +
|
2009-09-30 13:21:18 +02:00
|
|
|
headersize);
|
2009-09-22 17:55:01 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2009-12-06 13:14:39 +01:00
|
|
|
memset(newdata, 0xff, *datasize + headersize);
|
2009-09-14 15:29:27 +02:00
|
|
|
struct cbfs_file *nextfile = (struct cbfs_file *)newdata;
|
2011-10-21 23:24:57 +02:00
|
|
|
strncpy((char *)(nextfile->magic), "LARCHIVE", 8);
|
2009-09-14 15:29:27 +02:00
|
|
|
nextfile->len = htonl(*datasize);
|
|
|
|
nextfile->type = htonl(type);
|
|
|
|
nextfile->checksum = 0; // FIXME?
|
|
|
|
nextfile->offset = htonl(headersize);
|
|
|
|
strcpy(newdata + sizeof(struct cbfs_file), filename);
|
|
|
|
memcpy(newdata + headersize, data, *datasize);
|
|
|
|
*datasize += headersize;
|
|
|
|
return newdata;
|
|
|
|
}
|
|
|
|
|
|
|
|
int create_cbfs_image(const char *romfile, uint32_t _romsize,
|
|
|
|
const char *bootblock, uint32_t align)
|
|
|
|
{
|
|
|
|
romsize = _romsize;
|
|
|
|
unsigned char *romarea = malloc(romsize);
|
2009-09-22 17:55:01 +02:00
|
|
|
if (!romarea) {
|
|
|
|
printf("Could not get %d bytes of memory for CBFS image.\n",
|
2009-09-30 13:21:18 +02:00
|
|
|
romsize);
|
2009-09-22 17:55:01 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2009-09-14 15:29:27 +02:00
|
|
|
memset(romarea, 0xff, romsize);
|
2009-09-22 17:55:01 +02:00
|
|
|
|
|
|
|
// Set up physical/virtual mapping
|
|
|
|
offset = romarea + romsize - 0x100000000ULL;
|
2009-09-14 15:29:27 +02:00
|
|
|
|
|
|
|
if (align == 0)
|
|
|
|
align = 64;
|
|
|
|
|
|
|
|
uint32_t bootblocksize = 0;
|
|
|
|
loadfile(bootblock, &bootblocksize, romarea + romsize, SEEK_END);
|
|
|
|
struct cbfs_header *master_header =
|
|
|
|
(struct cbfs_header *)(romarea + romsize - bootblocksize -
|
|
|
|
sizeof(struct cbfs_header));
|
|
|
|
master_header->magic = ntohl(0x4f524243);
|
|
|
|
master_header->version = ntohl(0x31313131);
|
|
|
|
master_header->romsize = htonl(romsize);
|
|
|
|
master_header->bootblocksize = htonl(bootblocksize);
|
|
|
|
master_header->align = htonl(align);
|
|
|
|
master_header->offset = htonl(0);
|
|
|
|
((uint32_t *) phys_to_virt(0xfffffffc))[0] =
|
|
|
|
virt_to_phys(master_header);
|
2009-09-22 17:55:01 +02:00
|
|
|
|
|
|
|
recalculate_rom_geometry(romarea);
|
|
|
|
|
2011-10-21 23:24:57 +02:00
|
|
|
cbfs_create_empty_file((0 - romsize) & 0xffffffff,
|
2009-09-14 15:29:27 +02:00
|
|
|
romsize - bootblocksize -
|
|
|
|
sizeof(struct cbfs_header) -
|
|
|
|
sizeof(struct cbfs_file) - 16);
|
|
|
|
|
|
|
|
writerom(romfile, romarea, romsize);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-11-09 18:18:02 +01:00
|
|
|
|
|
|
|
static int in_segment(int addr, int size, int gran)
|
|
|
|
{
|
|
|
|
return ((addr & ~(gran - 1)) == ((addr + size) & ~(gran - 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
|
|
|
|
const char *filename, uint32_t alignment)
|
|
|
|
{
|
2011-10-21 23:24:57 +02:00
|
|
|
loadrom(romfile);
|
2009-11-09 18:18:02 +01:00
|
|
|
int filename_size = strlen(filename);
|
|
|
|
|
|
|
|
int headersize =
|
|
|
|
sizeof(struct cbfs_file) + ALIGN(filename_size + 1,
|
|
|
|
16) + sizeof(struct cbfs_stage);
|
|
|
|
int totalsize = headersize + filesize;
|
|
|
|
|
|
|
|
uint32_t current = phys_start;
|
|
|
|
while (current < phys_end) {
|
|
|
|
if (!cbfs_file_header(current)) {
|
|
|
|
current += align;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
struct cbfs_file *thisfile =
|
|
|
|
(struct cbfs_file *)phys_to_virt(current);
|
|
|
|
|
|
|
|
uint32_t top =
|
|
|
|
current + ntohl(thisfile->len) + ntohl(thisfile->offset);
|
|
|
|
if (((ntohl(thisfile->type) == 0x0)
|
|
|
|
|| (ntohl(thisfile->type) == 0xffffffff))
|
|
|
|
&& (ntohl(thisfile->len) + ntohl(thisfile->offset) >=
|
|
|
|
totalsize)) {
|
|
|
|
if (in_segment
|
|
|
|
(current + headersize, filesize, alignment))
|
|
|
|
return current + headersize;
|
|
|
|
if ((ALIGN(current, alignment) + filesize < top)
|
|
|
|
&& (ALIGN(current, alignment) - headersize >
|
|
|
|
current)
|
|
|
|
&& in_segment(ALIGN(current, alignment), filesize,
|
|
|
|
alignment))
|
|
|
|
return ALIGN(current, alignment);
|
|
|
|
if ((ALIGN(current, alignment) + alignment + filesize <
|
|
|
|
top)
|
|
|
|
&& (ALIGN(current, alignment) + alignment -
|
|
|
|
headersize > current)
|
|
|
|
&& in_segment(ALIGN(current, alignment) + alignment,
|
|
|
|
filesize, alignment))
|
|
|
|
return ALIGN(current, alignment) + alignment;
|
|
|
|
}
|
|
|
|
current =
|
|
|
|
ALIGN(current + ntohl(thisfile->len) +
|
|
|
|
ntohl(thisfile->offset), align);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|