blob: 924cb9efd8929824c10d4197007d9dd4dbb064a9 [file] [log] [blame]
Roland McGrath13b69602008-04-01 02:30:05 +00001/* Copyright (C) 2008 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02002 This file is part of elfutils.
Roland McGrath13b69602008-04-01 02:30:05 +00003
Mark Wielaardde2ed972012-06-05 17:15:16 +02004 This file is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
Roland McGrath13b69602008-04-01 02:30:05 +00008
Mark Wielaardde2ed972012-06-05 17:15:16 +02009 elfutils is distributed in the hope that it will be useful, but
Roland McGrath13b69602008-04-01 02:30:05 +000010 WITHOUT ANY WARRANTY; without even the implied warranty of
Mark Wielaardde2ed972012-06-05 17:15:16 +020011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
Roland McGrath13b69602008-04-01 02:30:05 +000013
Mark Wielaardde2ed972012-06-05 17:15:16 +020014 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
Roland McGrath13b69602008-04-01 02:30:05 +000016
17#ifdef HAVE_CONFIG_H
18# include <config.h>
19#endif
20
21#include <errno.h>
22#include <error.h>
23#include <fcntl.h>
24#include <gelf.h>
25#include <stdio.h>
26#include <stdlib.h>
27
28int
29main (int argc, char *argv[])
30{
31 if (argc < 2)
32 error (1, 0, "Usage: %s FILE OFFSET", argv[0]);
33
34 /* Set the ELF version. */
35 elf_version (EV_CURRENT);
36
37 /* Open the archive. */
38 int fd = open (argv[1], O_RDONLY);
39 if (fd < 0)
40 error (1, errno, "cannot open '%s'", argv[1]);
41
42 Elf *elf = elf_begin (fd, ELF_C_READ, NULL);
43 if (elf == NULL)
44 error (2, 0, "elf_begin: %s", elf_errmsg (-1));
45
46 Elf_Scn *scn = gelf_offscn (elf, strtoull (argv[2], NULL, 0));
47 if (scn == NULL)
48 error (3, 0, "gelf_offscn: %s", elf_errmsg (-1));
49
50 elf_end (elf);
51 return 0;
52}