2009-05-16 Pavel Roskin <proski@gnu.org>
[grub2/bean.git] / kern / x86_64 / dl.c
bloba60690148d4438c799c2e6b142c8e1c6c01851f6
1 /* dl-x86_64.c - arch-dependent part of loadable module support */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2002,2005,2007 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/dl.h>
21 #include <grub/elf.h>
22 #include <grub/misc.h>
23 #include <grub/err.h>
25 /* Check if EHDR is a valid ELF header. */
26 grub_err_t
27 grub_arch_dl_check_header (void *ehdr)
29 Elf64_Ehdr *e = ehdr;
31 /* Check the magic numbers. */
32 if (e->e_ident[EI_CLASS] != ELFCLASS64
33 || e->e_ident[EI_DATA] != ELFDATA2LSB
34 || e->e_machine != EM_X86_64)
35 return grub_error (GRUB_ERR_BAD_OS, "invalid arch specific ELF magic");
37 return GRUB_ERR_NONE;
40 /* Relocate symbols. */
41 grub_err_t
42 grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
44 Elf64_Ehdr *e = ehdr;
45 Elf64_Shdr *s;
46 Elf64_Sym *symtab;
47 Elf64_Word entsize;
48 unsigned i;
50 /* Find a symbol table. */
51 for (i = 0, s = (Elf64_Shdr *) ((char *) e + e->e_shoff);
52 i < e->e_shnum;
53 i++, s = (Elf64_Shdr *) ((char *) s + e->e_shentsize))
54 if (s->sh_type == SHT_SYMTAB)
55 break;
57 if (i == e->e_shnum)
58 return grub_error (GRUB_ERR_BAD_MODULE, "no symtab found");
60 symtab = (Elf64_Sym *) ((char *) e + s->sh_offset);
61 entsize = s->sh_entsize;
63 for (i = 0, s = (Elf64_Shdr *) ((char *) e + e->e_shoff);
64 i < e->e_shnum;
65 i++, s = (Elf64_Shdr *) ((char *) s + e->e_shentsize))
66 if (s->sh_type == SHT_RELA)
68 grub_dl_segment_t seg;
70 /* Find the target segment. */
71 for (seg = mod->segment; seg; seg = seg->next)
72 if (seg->section == s->sh_info)
73 break;
75 if (seg)
77 Elf64_Rela *rel, *max;
79 for (rel = (Elf64_Rela *) ((char *) e + s->sh_offset),
80 max = rel + s->sh_size / s->sh_entsize;
81 rel < max;
82 rel++)
84 Elf64_Word *addr32;
85 Elf64_Xword *addr64;
86 Elf64_Sym *sym;
88 if (seg->size < rel->r_offset)
89 return grub_error (GRUB_ERR_BAD_MODULE,
90 "reloc offset is out of the segment");
92 addr32 = (Elf64_Word *) ((char *) seg->addr + rel->r_offset);
93 addr64 = (Elf64_Xword *) addr32;
94 sym = (Elf64_Sym *) ((char *) symtab
95 + entsize * ELF64_R_SYM (rel->r_info));
97 switch (ELF64_R_TYPE (rel->r_info))
99 case R_X86_64_64:
100 *addr64 += rel->r_addend + sym->st_value;
101 break;
103 case R_X86_64_PC32:
104 *addr32 += rel->r_addend + sym->st_value -
105 (Elf64_Xword) seg->addr - rel->r_offset;
106 break;
108 case R_X86_64_32:
109 case R_X86_64_32S:
110 *addr32 += rel->r_addend + sym->st_value;
111 break;
113 default:
114 grub_fatal ("Unrecognized relocation: %d\n", ELF64_R_TYPE (rel->r_info));
120 return GRUB_ERR_NONE;