~ubuntu-branches/ubuntu/quantal/elfutils/quantal

« back to all changes in this revision

Viewing changes to libdwfl/offline.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2006-08-27 15:48:23 UTC
  • Revision ID: james.westby@ubuntu.com-20060827154823-mjwd7ydlbxgwqn4u
Tags: upstream-0.123
ImportĀ upstreamĀ versionĀ 0.123

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Recover relocatibility for addresses computed from debug information.
 
2
   Copyright (C) 2005, 2006 Red Hat, Inc.
 
3
   This file is part of Red Hat elfutils.
 
4
 
 
5
   Red Hat elfutils is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by the
 
7
   Free Software Foundation; version 2 of the License.
 
8
 
 
9
   Red Hat elfutils is distributed in the hope that it will be useful, but
 
10
   WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
   General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License along
 
15
   with Red Hat elfutils; if not, write to the Free Software Foundation,
 
16
   Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA.
 
17
 
 
18
   In addition, as a special exception, Red Hat, Inc. gives You the
 
19
   additional right to link the code of Red Hat elfutils with code licensed
 
20
   under any Open Source Initiative certified open source license
 
21
   (http://www.opensource.org/licenses/index.php) which requires the
 
22
   distribution of source code with any binary distribution and to
 
23
   distribute linked combinations of the two.  Non-GPL Code permitted under
 
24
   this exception must only link to the code of Red Hat elfutils through
 
25
   those well defined interfaces identified in the file named EXCEPTION
 
26
   found in the source code files (the "Approved Interfaces").  The files
 
27
   of Non-GPL Code may instantiate templates or use macros or inline
 
28
   functions from the Approved Interfaces without causing the resulting
 
29
   work to be covered by the GNU General Public License.  Only Red Hat,
 
30
   Inc. may make changes or additions to the list of Approved Interfaces.
 
31
   Red Hat's grant of this exception is conditioned upon your not adding
 
32
   any new exceptions.  If you wish to add a new Approved Interface or
 
33
   exception, please contact Red Hat.  You must obey the GNU General Public
 
34
   License in all respects for all of the Red Hat elfutils code and other
 
35
   code used in conjunction with Red Hat elfutils except the Non-GPL Code
 
36
   covered by this exception.  If you modify this file, you may extend this
 
37
   exception to your version of the file, but you are not obligated to do
 
38
   so.  If you do not wish to provide this exception without modification,
 
39
   you must delete this exception statement from your version and license
 
40
   this file solely under the GPL without exception.
 
41
 
 
42
   Red Hat elfutils is an included package of the Open Invention Network.
 
43
   An included package of the Open Invention Network is a package for which
 
44
   Open Invention Network licensees cross-license their patents.  No patent
 
45
   license is granted, either expressly or impliedly, by designation as an
 
46
   included package.  Should you wish to participate in the Open Invention
 
47
   Network licensing program, please visit www.openinventionnetwork.com
 
48
   <http://www.openinventionnetwork.com>.  */
 
49
 
 
50
#include "libdwflP.h"
 
51
#include <unistd.h>
 
52
 
 
53
/* Since dwfl_report_elf lays out the sections already, this will only be
 
54
   called when the section headers of the debuginfo file are being
 
55
   consulted instead.  With binutils strip-to-debug, the symbol table
 
56
   is in the debuginfo file and relocation looks there.  */
 
57
int
 
58
dwfl_offline_section_address (Dwfl_Module *mod,
 
59
                              void **userdata __attribute__ ((unused)),
 
60
                              const char *modname __attribute__ ((unused)),
 
61
                              Dwarf_Addr base __attribute__ ((unused)),
 
62
                              const char *secname __attribute__ ((unused)),
 
63
                              Elf32_Word shndx,
 
64
                              const GElf_Shdr *shdr __attribute__ ((unused)),
 
65
                              Dwarf_Addr *addr)
 
66
{
 
67
  assert (mod->symfile != &mod->main);
 
68
 
 
69
  GElf_Shdr shdr_mem;
 
70
  GElf_Shdr *main_shdr = gelf_getshdr (elf_getscn (mod->main.elf, shndx),
 
71
                                       &shdr_mem);
 
72
  if (unlikely (main_shdr == NULL))
 
73
    return -1;
 
74
 
 
75
  assert (shdr->sh_addr == 0);
 
76
  assert (shdr->sh_flags & SHF_ALLOC);
 
77
  assert (main_shdr->sh_addr != 0);
 
78
  assert (main_shdr->sh_flags == shdr->sh_flags);
 
79
 
 
80
  *addr = main_shdr->sh_addr;
 
81
  return 0;
 
82
}
 
83
INTDEF (dwfl_offline_section_address)
 
84
 
 
85
Dwfl_Module *
 
86
dwfl_report_offline (Dwfl *dwfl, const char *name,
 
87
                     const char *file_name, int fd)
 
88
{
 
89
  if (dwfl == NULL)
 
90
    return NULL;
 
91
 
 
92
  Dwfl_Module *mod = INTUSE(dwfl_report_elf) (dwfl, name, file_name, fd,
 
93
                                              dwfl->offline_next_address);
 
94
  if (mod != NULL)
 
95
    {
 
96
      /* If this is an ET_EXEC file with fixed addresses, the address range
 
97
         it consumed may or may not intersect with the arbitrary range we
 
98
         will use for relocatable modules.  Make sure we always use a free
 
99
         range for the offline allocations.  If this module did use
 
100
         offline_next_address, it may have rounded it up for the module's
 
101
         alignment requirements.  */
 
102
      if ((dwfl->offline_next_address >= mod->low_addr
 
103
           || mod->low_addr - dwfl->offline_next_address < OFFLINE_REDZONE)
 
104
          && dwfl->offline_next_address < mod->high_addr + OFFLINE_REDZONE)
 
105
        dwfl->offline_next_address = mod->high_addr + OFFLINE_REDZONE;
 
106
 
 
107
      /* Don't keep the file descriptor around.  */
 
108
      if (mod->main.fd != -1 && elf_cntl (mod->main.elf, ELF_C_FDREAD) == 0)
 
109
        {
 
110
          close (mod->main.fd);
 
111
          mod->main.fd = -1;
 
112
        }
 
113
    }
 
114
 
 
115
  return mod;
 
116
}
 
117
INTDEF (dwfl_report_offline)