2014-03-07 22:11:53 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Google, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
2015-03-26 15:17:45 +01:00
|
|
|
* Foundation, Inc.
|
2014-03-07 22:11:53 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TOOL_RMODULE_H
|
|
|
|
#define TOOL_RMODULE_H
|
|
|
|
|
2015-09-09 00:24:04 +02:00
|
|
|
#include "elfparsing.h"
|
2014-03-07 22:11:53 +01:00
|
|
|
#include "common.h"
|
|
|
|
|
2015-09-09 00:24:04 +02:00
|
|
|
struct arch_ops {
|
|
|
|
int arch;
|
|
|
|
/* Determine if relocation is a valid type for the architecture. */
|
|
|
|
int (*valid_type)(Elf64_Rela *rel);
|
|
|
|
/* Determine if relocation should be emitted. */
|
|
|
|
int (*should_emit)(Elf64_Rela *rel);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The fields in rmod_context are read-only to the user. These are
|
|
|
|
* exposed for easy shareability.
|
|
|
|
*/
|
|
|
|
struct rmod_context {
|
|
|
|
/* Ops to process relocations. */
|
|
|
|
const struct arch_ops *ops;
|
|
|
|
|
|
|
|
/* endian conversion ops */
|
|
|
|
struct xdr *xdr;
|
|
|
|
|
|
|
|
/* Parsed ELF sturcture. */
|
|
|
|
struct parsed_elf pelf;
|
|
|
|
/* Program segment. */
|
|
|
|
Elf64_Phdr *phdr;
|
|
|
|
|
|
|
|
/* Collection of relocation addresses fixup in the module. */
|
|
|
|
Elf64_Xword nrelocs;
|
|
|
|
Elf64_Addr *emitted_relocs;
|
|
|
|
|
|
|
|
/* The following fields are addresses within the linked program. */
|
|
|
|
Elf64_Addr parameters_begin;
|
|
|
|
Elf64_Addr parameters_end;
|
|
|
|
Elf64_Addr bss_begin;
|
|
|
|
Elf64_Addr bss_end;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reloc_filter {
|
|
|
|
/* Return < 0 on error. 0 to ignore relocation and 1 to include
|
|
|
|
* relocation. */
|
|
|
|
int (*filter)(struct reloc_filter *f, const Elf64_Rela *r);
|
|
|
|
/* Pointer for filter provides */
|
|
|
|
void *context;
|
|
|
|
};
|
|
|
|
|
2014-03-07 22:11:53 +01:00
|
|
|
/*
|
|
|
|
* Parse an ELF file within the elfin buffer and fill in the elfout buffer
|
|
|
|
* with a created rmodule in ELF format. Return 0 on success, < 0 on error.
|
|
|
|
*/
|
|
|
|
int rmodule_create(const struct buffer *elfin, struct buffer *elfout);
|
|
|
|
|
2015-09-09 00:24:04 +02:00
|
|
|
/*
|
|
|
|
* Initialize an rmodule context from an ELF buffer. Returns 0 on scucess, < 0
|
|
|
|
* on error.
|
|
|
|
*/
|
|
|
|
int rmodule_init(struct rmod_context *ctx, const struct buffer *elfin);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Collect all the relocations that apply to the program in
|
|
|
|
* nrelocs/emitted_relocs. One can optionally provide a reloc_filter object
|
|
|
|
* to help in relocation filtering. The filter function will be called twice:
|
|
|
|
* once for counting and once for emitting. The same response should be
|
|
|
|
* provided for each call. Returns 0 on success, < 0 on error.
|
|
|
|
*/
|
|
|
|
int rmodule_collect_relocations(struct rmod_context *c, struct reloc_filter *f);
|
|
|
|
|
|
|
|
/* Clean up the memory consumed by the rmdoule context. */
|
|
|
|
void rmodule_cleanup(struct rmod_context *ctx);
|
|
|
|
|
2014-03-07 22:11:53 +01:00
|
|
|
#endif /* TOOL_RMODULE_H */
|