proc->thread stage 4: rework the VFS and DEVICE subsystems to take thread
[dragonfly.git] / sys / i386 / i386 / elf_machdep.c
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: src/sys/i386/i386/elf_machdep.c,v 1.8 1999/12/21 11:14:02 eivind Exp $
26  * $DragonFly: src/sys/i386/i386/Attic/elf_machdep.c,v 1.2 2003/06/17 04:28:35 dillon Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/linker.h>
32 #include <machine/elf.h>
33
34 /* Process one elf relocation with addend. */
35 int
36 elf_reloc(linker_file_t lf, const void *data, int type, const char *sym)
37 {
38         Elf_Addr relocbase = (Elf_Addr) lf->address;
39         Elf_Addr *where;
40         Elf_Addr addr;
41         Elf_Addr addend;
42         Elf_Word rtype;
43         const Elf_Rel *rel;
44         const Elf_Rela *rela;
45
46         switch (type) {
47         case ELF_RELOC_REL:
48                 rel = (const Elf_Rel *)data;
49                 where = (Elf_Addr *) (relocbase + rel->r_offset);
50                 addend = *where;
51                 rtype = ELF_R_TYPE(rel->r_info);
52                 break;
53         case ELF_RELOC_RELA:
54                 rela = (const Elf_Rela *)data;
55                 where = (Elf_Addr *) (relocbase + rela->r_offset);
56                 addend = rela->r_addend;
57                 rtype = ELF_R_TYPE(rela->r_info);
58                 break;
59         default:
60                 panic("unknown reloc type %d\n", type);
61         }
62
63         switch (rtype) {
64
65                 case R_386_NONE:        /* none */
66                         break;
67
68                 case R_386_32:          /* S + A */
69                         if (sym == NULL)
70                                 return -1;
71                         addr = (Elf_Addr)linker_file_lookup_symbol(lf, sym, 1);
72                         if (addr == 0)
73                                 return -1;
74                         addr += addend;
75                         if (*where != addr)
76                                 *where = addr;
77                         break;
78
79                 case R_386_PC32:        /* S + A - P */
80                         if (sym == NULL)
81                                 return -1;
82                         addr = (Elf_Addr)linker_file_lookup_symbol(lf, sym, 1);
83                         if (addr == 0)
84                                 return -1;
85                         addr += addend - (Elf_Addr)where;
86                         if (*where != addr)
87                                 *where = addr;
88                         break;
89
90                 case R_386_COPY:        /* none */
91                         /*
92                          * There shouldn't be copy relocations in kernel
93                          * objects.
94                          */
95                         printf("kldload: unexpected R_COPY relocation\n");
96                         return -1;
97                         break;
98
99                 case R_386_GLOB_DAT:    /* S */
100                         if (sym == NULL)
101                                 return -1;
102                         addr = (Elf_Addr)linker_file_lookup_symbol(lf, sym, 1);
103                         if (addr == 0)
104                                 return -1;
105                         if (*where != addr)
106                                 *where = addr;
107                         break;
108
109                 case R_386_RELATIVE:    /* B + A */
110                         addr = relocbase + addend;
111                         if (*where != addr)
112                                 *where = addr;
113                         break;
114
115                 default:
116                         printf("kldload: unexpected relocation type %d\n",
117                                rtype);
118                         return -1;
119         }
120         return(0);
121 }