Blame tests/get-files.c

Packit 032894
/* Copyright (C) 2002, 2004, 2005, 2007 Red Hat, Inc.
Packit 032894
   This file is part of elfutils.
Packit 032894
   Written by Ulrich Drepper <drepper@redhat.com>, 2002.
Packit 032894
Packit 032894
   This file is free software; you can redistribute it and/or modify
Packit 032894
   it under the terms of the GNU General Public License as published by
Packit 032894
   the Free Software Foundation; either version 3 of the License, or
Packit 032894
   (at your option) any later version.
Packit 032894
Packit 032894
   elfutils is distributed in the hope that it will be useful, but
Packit 032894
   WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 032894
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 032894
   GNU General Public License for more details.
Packit 032894
Packit 032894
   You should have received a copy of the GNU General Public License
Packit 032894
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 032894
Packit 032894
#ifdef HAVE_CONFIG_H
Packit 032894
# include <config.h>
Packit 032894
#endif
Packit 032894
Packit 032894
#include <fcntl.h>
Packit 032894
#include <libelf.h>
Packit 032894
#include ELFUTILS_HEADER(dw)
Packit 032894
#include <stdio.h>
Packit 032894
#include <unistd.h>
Packit 032894
Packit 032894
Packit 032894
int
Packit 032894
main (int argc, char *argv[])
Packit 032894
{
Packit 032894
  int result = 0;
Packit 032894
  int cnt;
Packit 032894
Packit 032894
  for (cnt = 1; cnt < argc; ++cnt)
Packit 032894
    {
Packit 032894
      int fd = open (argv[cnt], O_RDONLY);
Packit 032894
Packit 032894
      Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ);
Packit 032894
      if (dbg == NULL)
Packit 032894
	{
Packit 032894
	  printf ("%s not usable\n", argv[cnt]);
Packit 032894
	  result = 1;
Packit 032894
	  if (fd != -1)
Packit 032894
	    close (fd);
Packit 032894
	  continue;
Packit 032894
	}
Packit 032894
Packit 032894
      Dwarf_Off o = 0;
Packit 032894
      Dwarf_Off ncu;
Packit 032894
      Dwarf_Off ao;
Packit 032894
      size_t cuhl;
Packit 032894
      uint8_t asz;
Packit 032894
      uint8_t osz;
Packit 032894
      while (dwarf_nextcu (dbg, o, &ncu, &cuhl, &ao, &asz, &osz) == 0)
Packit 032894
	{
Packit 032894
	  printf ("cuhl = %zu, o = %llu, asz = %hhu, osz = %hhu, ncu = %llu\n",
Packit 032894
		  cuhl, (unsigned long long int) ao,
Packit 032894
		  asz, osz, (unsigned long long int) ncu);
Packit 032894
Packit 032894
	  Dwarf_Die die_mem;
Packit 032894
	  Dwarf_Die *die = dwarf_offdie (dbg, o + cuhl, &die_mem);
Packit 032894
	  if (die == NULL)
Packit 032894
	    {
Packit 032894
	      printf ("%s: cannot get CU die\n", argv[cnt]);
Packit 032894
	      result = 1;
Packit 032894
	      break;
Packit 032894
	    }
Packit 032894
Packit 032894
	  Dwarf_Files *files;
Packit 032894
	  size_t nfiles;
Packit 032894
	  if (dwarf_getsrcfiles (die, &files, &nfiles) != 0)
Packit 032894
	    {
Packit 032894
	      printf ("%s: cannot get files\n", argv[cnt]);
Packit 032894
	      result = 1;
Packit 032894
	      break;
Packit 032894
	    }
Packit 032894
Packit 032894
	  const char *const *dirs;
Packit 032894
	  size_t ndirs;
Packit 032894
	  if (dwarf_getsrcdirs (files, &dirs, &ndirs) != 0)
Packit 032894
	    {
Packit 032894
	      printf ("%s: cannot get include directories\n", argv[cnt]);
Packit 032894
	      result = 1;
Packit 032894
	      break;
Packit 032894
	    }
Packit 032894
Packit 032894
	  if (dirs[0] == NULL)
Packit 032894
	    puts (" dirs[0] = (null)");
Packit 032894
	  else
Packit 032894
	    printf (" dirs[0] = \"%s\"\n", dirs[0]);
Packit 032894
	  for (size_t i = 1; i < ndirs; ++i)
Packit 032894
	    printf (" dirs[%zu] = \"%s\"\n", i, dirs[i]);
Packit 032894
Packit 032894
	  for (size_t i = 0; i < nfiles; ++i)
Packit 032894
	    printf (" file[%zu] = \"%s\"\n", i,
Packit 032894
		    dwarf_filesrc (files, i, NULL, NULL));
Packit 032894
Packit 032894
	  o = ncu;
Packit 032894
	}
Packit 032894
Packit 032894
      dwarf_end (dbg);
Packit 032894
      close (fd);
Packit 032894
    }
Packit 032894
Packit 032894
  return result;
Packit 032894
}