2003-02-08 11:10:59 +01:00
|
|
|
/* libunwind - a platform-independent unwind library
|
2005-05-20 11:48:08 +02:00
|
|
|
Copyright (C) 2003, 2005 Hewlett-Packard Co
|
Introduce a tdep_get_func_addr_hook() in the ELF lookup_symbol()
routine and add address-space argument. This is needed because on
PPC64, a the function-name symbol refers to a function descriptor
(unlike, for example, on ia64, where the @fptr() operator is needed to
refer to a function descriptor). Thus, in order to look up the name
of a function, we need to dereference the function descriptor. To
make matters more "interesting", the function descriptors are normally
resolved by the dynamic linker, so we can't get their values from the
ELF file. Instead, we have to read them from the running image, hence
the need for the address-space argument.
2007-08-22 21:02:09 +02:00
|
|
|
Copyright (C) 2007 David Mosberger-Tang
|
|
|
|
Contributed by David Mosberger-Tang <dmosberger@gmail.com>
|
2003-02-08 11:10:59 +01:00
|
|
|
|
|
|
|
This file is part of libunwind.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
|
|
|
|
#include <elf.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/mman.h>
|
2003-03-19 20:25:18 +01:00
|
|
|
#include <sys/stat.h>
|
2003-02-08 11:10:59 +01:00
|
|
|
|
2005-05-20 11:48:08 +02:00
|
|
|
#include "libunwind_i.h"
|
2003-02-08 11:10:59 +01:00
|
|
|
|
|
|
|
#if ELF_CLASS == ELFCLASS32
|
2003-12-20 12:23:44 +01:00
|
|
|
# define ELF_W(x) ELF32_##x
|
|
|
|
# define Elf_W(x) Elf32_##x
|
|
|
|
# define elf_w(x) _Uelf32_##x
|
2003-02-08 11:10:59 +01:00
|
|
|
#else
|
2003-12-20 12:23:44 +01:00
|
|
|
# define ELF_W(x) ELF64_##x
|
|
|
|
# define Elf_W(x) Elf64_##x
|
|
|
|
# define elf_w(x) _Uelf64_##x
|
2003-02-08 11:10:59 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline int
|
2003-04-03 09:59:15 +02:00
|
|
|
elf_map_image (struct elf_image *ei, const char *path)
|
2003-02-08 11:10:59 +01:00
|
|
|
{
|
|
|
|
struct stat stat;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = open (path, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (fstat (fd, &stat) < 0)
|
|
|
|
{
|
|
|
|
close (fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ei->size = stat.st_size;
|
|
|
|
ei->image = mmap (NULL, ei->size, PROT_READ, MAP_PRIVATE, fd, 0);
|
|
|
|
close (fd);
|
|
|
|
if (ei->image == MAP_FAILED)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-21 08:57:42 +01:00
|
|
|
extern int elf_w (valid_object) (struct elf_image *ei);
|
Introduce a tdep_get_func_addr_hook() in the ELF lookup_symbol()
routine and add address-space argument. This is needed because on
PPC64, a the function-name symbol refers to a function descriptor
(unlike, for example, on ia64, where the @fptr() operator is needed to
refer to a function descriptor). Thus, in order to look up the name
of a function, we need to dereference the function descriptor. To
make matters more "interesting", the function descriptors are normally
resolved by the dynamic linker, so we can't get their values from the
ELF file. Instead, we have to read them from the running image, hence
the need for the address-space argument.
2007-08-22 21:02:09 +02:00
|
|
|
extern int elf_w (get_proc_name) (unw_addr_space_t as,
|
|
|
|
pid_t pid, unw_word_t ip,
|
2003-12-21 08:57:42 +01:00
|
|
|
char *buf, size_t len,
|
|
|
|
unw_word_t *offp);
|