1 /* Kernel module help for M32R.
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2 of the License, or
6 (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <linux/config.h>
19 #include <linux/moduleloader.h>
20 #include <linux/elf.h>
21 #include <linux/vmalloc.h>
23 #include <linux/string.h>
24 #include <linux/kernel.h>
29 #define DEBUGP(fmt...)
32 void *module_alloc(unsigned long size
)
37 return vmalloc_exec(size
);
44 /* Free memory returned from module_alloc */
45 void module_free(struct module
*mod
, void *module_region
)
48 /* FIXME: If module_region == mod->init_region, trim exception
52 /* We don't need anything special. */
53 int module_frob_arch_sections(Elf_Ehdr
*hdr
,
61 #define COPY_UNALIGNED_WORD(sw, tw, align) \
63 void *__s = &(sw), *__t = &(tw); \
64 unsigned short *__s2 = __s, *__t2 =__t; \
65 unsigned char *__s1 = __s, *__t1 =__t; \
69 *(unsigned long *) __t = *(unsigned long *) __s; \
84 #define COPY_UNALIGNED_HWORD(sw, tw, align) \
86 void *__s = &(sw), *__t = &(tw); \
87 unsigned short *__s2 = __s, *__t2 =__t; \
88 unsigned char *__s1 = __s, *__t1 =__t; \
101 int apply_relocate_add(Elf32_Shdr
*sechdrs
,
103 unsigned int symindex
,
108 Elf32_Rela
*rel
= (void *)sechdrs
[relsec
].sh_addr
;
110 Elf32_Addr relocation
;
113 unsigned short *hlocation
;
114 unsigned short hvalue
;
118 DEBUGP("Applying relocate section %u to %u\n", relsec
,
119 sechdrs
[relsec
].sh_info
);
120 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rel
); i
++) {
121 /* This is where to make the change */
122 location
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
124 /* This is the symbol it is referring to. Note that all
125 undefined symbols have been resolved. */
126 sym
= (Elf32_Sym
*)sechdrs
[symindex
].sh_addr
127 + ELF32_R_SYM(rel
[i
].r_info
);
128 relocation
= sym
->st_value
+ rel
[i
].r_addend
;
129 align
= (int)location
& 3;
131 switch (ELF32_R_TYPE(rel
[i
].r_info
)) {
133 COPY_UNALIGNED_WORD (*location
, value
, align
);
135 COPY_UNALIGNED_WORD (value
, *location
, align
);
137 case R_M32R_HI16_ULO_RELA
:
138 COPY_UNALIGNED_WORD (*location
, value
, align
);
139 relocation
= (relocation
>>16) & 0xffff;
140 /* RELA must has 0 at relocation field. */
142 COPY_UNALIGNED_WORD (value
, *location
, align
);
144 case R_M32R_HI16_SLO_RELA
:
145 COPY_UNALIGNED_WORD (*location
, value
, align
);
146 if (relocation
& 0x8000) relocation
+= 0x10000;
147 relocation
= (relocation
>>16) & 0xffff;
148 /* RELA must has 0 at relocation field. */
150 COPY_UNALIGNED_WORD (value
, *location
, align
);
153 hlocation
= (unsigned short *)location
;
154 relocation
= relocation
& 0xffff;
155 /* RELA must has 0 at relocation field. */
157 COPY_UNALIGNED_WORD (hvalue
, *hlocation
, align
);
159 case R_M32R_SDA16_RELA
:
160 case R_M32R_LO16_RELA
:
161 COPY_UNALIGNED_WORD (*location
, value
, align
);
162 relocation
= relocation
& 0xffff;
163 /* RELA must has 0 at relocation field. */
165 COPY_UNALIGNED_WORD (value
, *location
, align
);
168 COPY_UNALIGNED_WORD (*location
, value
, align
);
169 relocation
= relocation
& 0xffffff;
170 /* RELA must has 0 at relocation field. */
172 COPY_UNALIGNED_WORD (value
, *location
, align
);
174 case R_M32R_18_PCREL_RELA
:
175 relocation
= (relocation
- (Elf32_Addr
) location
);
176 if (relocation
< -0x20000 || 0x1fffc < relocation
)
178 printk(KERN_ERR
"module %s: relocation overflow: %u\n",
179 me
->name
, relocation
);
182 COPY_UNALIGNED_WORD (*location
, value
, align
);
185 /* RELA must has 0 at relocation field. */
186 printk(KERN_ERR
"module %s: illegal relocation field: %u\n",
190 relocation
= (relocation
>> 2) & 0xffff;
192 COPY_UNALIGNED_WORD (value
, *location
, align
);
194 case R_M32R_10_PCREL_RELA
:
195 hlocation
= (unsigned short *)location
;
196 relocation
= (relocation
- (Elf32_Addr
) location
);
197 COPY_UNALIGNED_HWORD (*hlocation
, hvalue
, align
);
198 svalue
= (int)hvalue
;
199 svalue
= (signed char)svalue
<< 2;
200 relocation
+= svalue
;
201 relocation
= (relocation
>> 2) & 0xff;
202 hvalue
= hvalue
& 0xff00;
203 hvalue
+= relocation
;
204 COPY_UNALIGNED_HWORD (hvalue
, *hlocation
, align
);
206 case R_M32R_26_PCREL_RELA
:
207 relocation
= (relocation
- (Elf32_Addr
) location
);
208 if (relocation
< -0x2000000 || 0x1fffffc < relocation
)
210 printk(KERN_ERR
"module %s: relocation overflow: %u\n",
211 me
->name
, relocation
);
214 COPY_UNALIGNED_WORD (*location
, value
, align
);
215 if (value
& 0xffffff)
217 /* RELA must has 0 at relocation field. */
218 printk(KERN_ERR
"module %s: illegal relocation field: %u\n",
222 relocation
= (relocation
>> 2) & 0xffffff;
224 COPY_UNALIGNED_WORD (value
, *location
, align
);
227 printk(KERN_ERR
"module %s: Unknown relocation: %u\n",
228 me
->name
, ELF32_R_TYPE(rel
[i
].r_info
));
235 int apply_relocate(Elf32_Shdr
*sechdrs
,
237 unsigned int symindex
,
242 printk(KERN_ERR
"module %s: REL RELOCATION unsupported\n",
250 int module_finalize(const Elf_Ehdr
*hdr
,
251 const Elf_Shdr
*sechdrs
,
257 void module_arch_cleanup(struct module
*mod
)
This page took 0.040142 seconds and 5 git commands to generate.