~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to grub-core/kern/i386/dl.c

Tags: upstream-1.99~20101122
ImportĀ upstreamĀ versionĀ 1.99~20101122

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* dl-386.c - arch-dependent part of loadable module support */
 
2
/*
 
3
 *  GRUB  --  GRand Unified Bootloader
 
4
 *  Copyright (C) 2002,2005,2007,2009  Free Software Foundation, Inc.
 
5
 *
 
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.
 
10
 *
 
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.
 
15
 *
 
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/>.
 
18
 */
 
19
 
 
20
#include <grub/dl.h>
 
21
#include <grub/elf.h>
 
22
#include <grub/misc.h>
 
23
#include <grub/err.h>
 
24
 
 
25
/* Check if EHDR is a valid ELF header.  */
 
26
grub_err_t
 
27
grub_arch_dl_check_header (void *ehdr)
 
28
{
 
29
  Elf_Ehdr *e = ehdr;
 
30
 
 
31
  /* Check the magic numbers.  */
 
32
  if (e->e_ident[EI_CLASS] != ELFCLASS32
 
33
      || e->e_ident[EI_DATA] != ELFDATA2LSB
 
34
      || e->e_machine != EM_386)
 
35
    return grub_error (GRUB_ERR_BAD_OS, "invalid arch specific ELF magic");
 
36
 
 
37
  return GRUB_ERR_NONE;
 
38
}
 
39
 
 
40
/* Relocate symbols.  */
 
41
grub_err_t
 
42
grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
 
43
{
 
44
  Elf_Ehdr *e = ehdr;
 
45
  Elf_Shdr *s;
 
46
  Elf_Word entsize;
 
47
  unsigned i;
 
48
 
 
49
  /* Find a symbol table.  */
 
50
  for (i = 0, s = (Elf_Shdr *) ((char *) e + e->e_shoff);
 
51
       i < e->e_shnum;
 
52
       i++, s = (Elf_Shdr *) ((char *) s + e->e_shentsize))
 
53
    if (s->sh_type == SHT_SYMTAB)
 
54
      break;
 
55
 
 
56
  if (i == e->e_shnum)
 
57
    return grub_error (GRUB_ERR_BAD_MODULE, "no symtab found");
 
58
 
 
59
  entsize = s->sh_entsize;
 
60
 
 
61
  for (i = 0, s = (Elf_Shdr *) ((char *) e + e->e_shoff);
 
62
       i < e->e_shnum;
 
63
       i++, s = (Elf_Shdr *) ((char *) s + e->e_shentsize))
 
64
    if (s->sh_type == SHT_REL)
 
65
      {
 
66
        grub_dl_segment_t seg;
 
67
 
 
68
        /* Find the target segment.  */
 
69
        for (seg = mod->segment; seg; seg = seg->next)
 
70
          if (seg->section == s->sh_info)
 
71
            break;
 
72
 
 
73
        if (seg)
 
74
          {
 
75
            Elf_Rel *rel, *max;
 
76
 
 
77
            for (rel = (Elf_Rel *) ((char *) e + s->sh_offset),
 
78
                   max = rel + s->sh_size / s->sh_entsize;
 
79
                 rel < max;
 
80
                 rel++)
 
81
              {
 
82
                Elf_Word *addr;
 
83
                Elf_Sym *sym;
 
84
 
 
85
                if (seg->size < rel->r_offset)
 
86
                  return grub_error (GRUB_ERR_BAD_MODULE,
 
87
                                     "reloc offset is out of the segment");
 
88
 
 
89
                addr = (Elf_Word *) ((char *) seg->addr + rel->r_offset);
 
90
                sym = (Elf_Sym *) ((char *) mod->symtab
 
91
                                     + entsize * ELF_R_SYM (rel->r_info));
 
92
 
 
93
                switch (ELF_R_TYPE (rel->r_info))
 
94
                  {
 
95
                  case R_386_32:
 
96
                    *addr += sym->st_value;
 
97
                    break;
 
98
 
 
99
                  case R_386_PC32:
 
100
                    *addr += (sym->st_value - (Elf_Word) seg->addr
 
101
                              - rel->r_offset);
 
102
                    break;
 
103
                  }
 
104
              }
 
105
          }
 
106
      }
 
107
 
 
108
  return GRUB_ERR_NONE;
 
109
}