1/* reloc_ia32.c - position independent x86 ELF shared object relocator
2   Copyright (C) 1999 Hewlett-Packard Co.
3        Contributed by David Mosberger <davidm@hpl.hp.com>.
4
5    All rights reserved.
6
7    Redistribution and use in source and binary forms, with or without
8    modification, are permitted provided that the following conditions
9    are met:
10
11    * Redistributions of source code must retain the above copyright
12      notice, this list of conditions and the following disclaimer.
13    * Redistributions in binary form must reproduce the above
14      copyright notice, this list of conditions and the following
15      disclaimer in the documentation and/or other materials
16      provided with the distribution.
17    * Neither the name of Hewlett-Packard Co. nor the names of its
18      contributors may be used to endorse or promote products derived
19      from this software without specific prior written permission.
20
21    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
22    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
23    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
26    BE LIABLE FOR ANYDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
27    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
31    TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
32    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33    SUCH DAMAGE.
34*/
35
36#include <efi/types.h>
37#include <efi/system-table.h>
38
39#include <elf.h>
40
41
42extern "C" efi_status _relocate (long ldbase, Elf32_Dyn *dyn,
43	efi_handle image __attribute__((__unused__)),
44	efi_system_table *systab __attribute__((__unused__)))
45{
46	long relsz = 0, relent = 0;
47	Elf32_Rel *rel = 0;
48	unsigned long *addr;
49	int i;
50
51	for (i = 0; dyn[i].d_tag != DT_NULL; ++i) {
52		switch (dyn[i].d_tag) {
53			case DT_REL:
54				rel = (Elf32_Rel*)
55					((unsigned long)dyn[i].d_un.d_ptr
56					 + ldbase);
57				break;
58
59			case DT_RELSZ:
60				relsz = dyn[i].d_un.d_val;
61				break;
62
63			case DT_RELENT:
64				relent = dyn[i].d_un.d_val;
65				break;
66
67			case DT_RELA:
68				break;
69
70			default:
71				break;
72		}
73	}
74
75	if (!rel && relent == 0)
76		return EFI_SUCCESS;
77
78	if (!rel || relent == 0)
79		return EFI_LOAD_ERROR;
80
81	while (relsz > 0) {
82		/* apply the relocs */
83		switch (ELF32_R_TYPE (rel->r_info)) {
84			case R_386_NONE:
85				break;
86
87			case R_386_RELATIVE:
88				addr = (unsigned long *)
89					(ldbase + rel->r_offset);
90				*addr += ldbase;
91				break;
92
93			default:
94				break;
95		}
96		rel = (Elf32_Rel*) ((char *) rel + relent);
97		relsz -= relent;
98	}
99
100	return EFI_SUCCESS;
101}
102