~darkmuggle-deactivatedaccount/ubuntu/quantal/grub2/fix-872244

« back to all changes in this revision

Viewing changes to kern/i386/dl.c

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2006-01-05 15:20:40 UTC
  • mto: (17.3.1 squeeze) (1.9.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060105152040-b72i5pq1a82z22yi
Tags: upstream-1.92
ImportĀ upstreamĀ versionĀ 1.92

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  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 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program 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, write to the Free Software
 
18
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 */
 
20
 
 
21
#include <grub/dl.h>
 
22
#include <grub/elf.h>
 
23
#include <grub/misc.h>
 
24
#include <grub/err.h>
 
25
 
 
26
/* Check if EHDR is a valid ELF header.  */
 
27
grub_err_t
 
28
grub_arch_dl_check_header (void *ehdr)
 
29
{
 
30
  Elf32_Ehdr *e = ehdr;
 
31
 
 
32
  /* Check the magic numbers.  */
 
33
  if (e->e_ident[EI_CLASS] != ELFCLASS32
 
34
      || e->e_ident[EI_DATA] != ELFDATA2LSB
 
35
      || e->e_machine != EM_386)
 
36
    return grub_error (GRUB_ERR_BAD_OS, "invalid arch specific ELF magic");
 
37
 
 
38
  return GRUB_ERR_NONE;
 
39
}
 
40
 
 
41
/* Relocate symbols.  */
 
42
grub_err_t
 
43
grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
 
44
{
 
45
  Elf32_Ehdr *e = ehdr;
 
46
  Elf32_Shdr *s;
 
47
  Elf32_Sym *symtab;
 
48
  Elf32_Word entsize;
 
49
  unsigned i;
 
50
 
 
51
  /* Find a symbol table.  */
 
52
  for (i = 0, s = (Elf32_Shdr *) ((char *) e + e->e_shoff);
 
53
       i < e->e_shnum;
 
54
       i++, s = (Elf32_Shdr *) ((char *) s + e->e_shentsize))
 
55
    if (s->sh_type == SHT_SYMTAB)
 
56
      break;
 
57
 
 
58
  if (i == e->e_shnum)
 
59
    return grub_error (GRUB_ERR_BAD_MODULE, "no symtab found");
 
60
  
 
61
  symtab = (Elf32_Sym *) ((char *) e + s->sh_offset);
 
62
  entsize = s->sh_entsize;
 
63
 
 
64
  for (i = 0, s = (Elf32_Shdr *) ((char *) e + e->e_shoff);
 
65
       i < e->e_shnum;
 
66
       i++, s = (Elf32_Shdr *) ((char *) s + e->e_shentsize))
 
67
    if (s->sh_type == SHT_REL)
 
68
      {
 
69
        grub_dl_segment_t seg;
 
70
 
 
71
        /* Find the target segment.  */
 
72
        for (seg = mod->segment; seg; seg = seg->next)
 
73
          if (seg->section == s->sh_info)
 
74
            break;
 
75
 
 
76
        if (seg)
 
77
          {
 
78
            Elf32_Rel *rel, *max;
 
79
            
 
80
            for (rel = (Elf32_Rel *) ((char *) e + s->sh_offset),
 
81
                   max = rel + s->sh_size / s->sh_entsize;
 
82
                 rel < max;
 
83
                 rel++)
 
84
              {
 
85
                Elf32_Word *addr;
 
86
                Elf32_Sym *sym;
 
87
                
 
88
                if (seg->size < rel->r_offset)
 
89
                  return grub_error (GRUB_ERR_BAD_MODULE,
 
90
                                     "reloc offset is out of the segment");
 
91
                
 
92
                addr = (Elf32_Word *) ((char *) seg->addr + rel->r_offset);
 
93
                sym = (Elf32_Sym *) ((char *) symtab
 
94
                                     + entsize * ELF32_R_SYM (rel->r_info));
 
95
                
 
96
                switch (ELF32_R_TYPE (rel->r_info))
 
97
                  {
 
98
                  case R_386_32:
 
99
                    *addr += sym->st_value;
 
100
                    break;
 
101
 
 
102
                  case R_386_PC32:
 
103
                    *addr += (sym->st_value - (Elf32_Word) seg->addr
 
104
                              - rel->r_offset);
 
105
                    break;
 
106
                  }
 
107
              }
 
108
          }
 
109
      }
 
110
 
 
111
  return GRUB_ERR_NONE;
 
112
}