summaryrefslogtreecommitdiffstats
path: root/tests/dwfl-addr-sect.c
blob: 4d85c0077b985c131ea81c359ea1c5a03a8c969d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Test program for libdwfl ... foo
   Copyright (C) 2007 Red Hat, Inc.
   This file is part of elfutils.

   This file is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   elfutils is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

#include <config.h>
#include <assert.h>
#include <inttypes.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <argp.h>
#include ELFUTILS_HEADER(dwfl)
#include <dwarf.h>
#include "system.h"

static int
handle_address (Dwfl *dwfl, Dwarf_Addr address)
{
  Dwfl_Module *mod = dwfl_addrmodule (dwfl, address);
  Dwarf_Addr adjusted = address;
  Dwarf_Addr bias;
  Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
  if (scn == NULL)
    {
      error (0, 0, "%#" PRIx64 ": dwfl_module_address_section: %s",
	     address, dwfl_errmsg (-1));
      return 1;
    }
  printf ("address %#" PRIx64 " => module \"%s\" section %zu + %#" PRIx64 "\n",
	  address,
	  dwfl_module_info (mod, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
	  elf_ndxscn (scn), adjusted);
  return 0;
}

int
main (int argc, char **argv)
{
  /* We use no threads here which can interfere with handling a stream.  */
  (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);

  /* Set locale.  */
  (void) setlocale (LC_ALL, "");

  int remaining;
  Dwfl *dwfl = NULL;
  (void) argp_parse (dwfl_standard_argp (), argc, argv, 0, &remaining, &dwfl);
  assert (dwfl != NULL);

  int result = 0;
  for (; remaining < argc; ++remaining)
    {
      char *endp;
      uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
      if (endp != argv[remaining])
	result |= handle_address (dwfl, addr);
      else
	result = 1;
    }

  dwfl_end (dwfl);

  return result;
}