elf32_machdep.c revision 78307
1/*-
2 * Copyright 1996-1998 John D. Polstra.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * $FreeBSD: head/sys/powerpc/powerpc/elf_machdep.c 50477 1999-08-28 01:08:13Z peter $
26 */
27
28#include <sys/param.h>
29#include <sys/kernel.h>
30#include <sys/systm.h>
31#include <sys/malloc.h>
32#include <sys/proc.h>
33#include <sys/namei.h>
34#include <sys/fcntl.h>
35#include <sys/vnode.h>
36#include <sys/linker.h>
37#include <machine/elf.h>
38
39/* Process one elf relocation with addend. */
40int
41elf_reloc(linker_file_t lf, const void *data, int type, const char *sym)
42{
43	Elf_Addr relocbase = (Elf_Addr) lf->address;
44	Elf_Addr *where;
45	Elf_Addr addr;
46	Elf_Addr addend;
47	Elf_Word rtype;
48	const Elf_Rel *rel;
49	const Elf_Rela *rela;
50
51	switch (type) {
52	case ELF_RELOC_REL:
53		rel = (const Elf_Rel *)data;
54		where = (Elf_Addr *) (relocbase + rel->r_offset);
55		addend = *where;
56		rtype = ELF_R_TYPE(rel->r_info);
57		break;
58	case ELF_RELOC_RELA:
59		rela = (const Elf_Rela *)data;
60		where = (Elf_Addr *) (relocbase + rela->r_offset);
61		addend = rela->r_addend;
62		rtype = ELF_R_TYPE(rela->r_info);
63		break;
64	default:
65		panic("elf_reloc: unknown relocation mode %d\n", type);
66	}
67
68	switch (rtype) {
69
70		case R_ALPHA_NONE:
71			break;
72
73		case R_ALPHA_REFQUAD:
74			addr = (Elf_Addr)
75				linker_file_lookup_symbol(lf, sym, 1);
76			if (addr == NULL)
77				return -1;
78			addr += addend;
79			if (*where != addr)
80				*where = addr;
81			break;
82
83		case R_ALPHA_GLOB_DAT:
84			addr = (Elf_Addr)
85				linker_file_lookup_symbol(lf, sym, 1);
86			if (addr == NULL)
87				return -1;
88                        addr += addend;
89			if (*where != addr)
90				*where = addr;
91			break;
92
93		case R_ALPHA_JMP_SLOT:
94			/* No point in lazy binding for kernel modules. */
95			addr = (Elf_Addr)
96				linker_file_lookup_symbol(lf, sym, 1);
97			if (addr == NULL)
98				return -1;
99			if (*where != addr)
100				*where = addr;
101			break;
102
103		case R_ALPHA_RELATIVE:
104			addr = relocbase + addend + *where;
105			if (*where != addr)
106				*where = addr;
107			break;
108
109		case R_ALPHA_COPY:
110			/*
111			 * There shouldn't be copy relocations in kernel
112			 * objects.
113			 */
114			printf("kldload: unexpected R_COPY relocation\n");
115			return -1;
116
117		default:
118			printf("kldload: unexpected relocation type %d\n",
119			       (int) rtype);
120			return -1;
121	}
122	return(0);
123}
124