Blame libebl/ebldynamictagname.c

Packit 032894
/* Return dynamic tag name.
Packit 032894
   Copyright (C) 2001, 2002, 2006, 2008 Red Hat, Inc.
Packit 032894
   This file is part of elfutils.
Packit 032894
   Written by Ulrich Drepper <drepper@redhat.com>, 2001.
Packit 032894
Packit 032894
   This file is free software; you can redistribute it and/or modify
Packit 032894
   it under the terms of either
Packit 032894
Packit 032894
     * the GNU Lesser General Public License as published by the Free
Packit 032894
       Software Foundation; either version 3 of the License, or (at
Packit 032894
       your option) any later version
Packit 032894
Packit 032894
   or
Packit 032894
Packit 032894
     * the GNU General Public License as published by the Free
Packit 032894
       Software Foundation; either version 2 of the License, or (at
Packit 032894
       your option) any later version
Packit 032894
Packit 032894
   or both in parallel, as here.
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 GNU
Packit 032894
   General Public License for more details.
Packit 032894
Packit 032894
   You should have received copies of the GNU General Public License and
Packit 032894
   the GNU Lesser General Public License along with this program.  If
Packit 032894
   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 <inttypes.h>
Packit 032894
#include <stdio.h>
Packit 032894
#include <libeblP.h>
Packit 032894
#include "system.h"
Packit 032894
Packit 032894
Packit 032894
const char *
Packit 032894
ebl_dynamic_tag_name (Ebl *ebl, int64_t tag, char *buf, size_t len)
Packit 032894
{
Packit 032894
  const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL;
Packit 032894
Packit 032894
  if (res == NULL)
Packit 032894
    {
Packit 032894
      if (tag >= 0 && tag < DT_NUM)
Packit 032894
	{
Packit 032894
	  static const char *stdtags[] =
Packit 032894
	    {
Packit 032894
	      "NULL", "NEEDED", "PLTRELSZ", "PLTGOT", "HASH", "STRTAB",
Packit 032894
	      "SYMTAB", "RELA", "RELASZ", "RELAENT", "STRSZ", "SYMENT",
Packit 032894
	      "INIT", "FINI", "SONAME", "RPATH", "SYMBOLIC", "REL", "RELSZ",
Packit 032894
	      "RELENT", "PLTREL", "DEBUG", "TEXTREL", "JMPREL", "BIND_NOW",
Packit 032894
	      "INIT_ARRAY", "FINI_ARRAY", "INIT_ARRAYSZ", "FINI_ARRAYSZ",
Packit 032894
	      "RUNPATH", "FLAGS", "ENCODING", "PREINIT_ARRAY",
Packit 032894
	      "PREINIT_ARRAYSZ", "SYMTAB_SHNDX"
Packit 032894
	    };
Packit 032894
	  eu_static_assert (sizeof (stdtags) / sizeof (const char *) == DT_NUM);
Packit 032894
Packit 032894
	  res = stdtags[tag];
Packit 032894
	}
Packit 032894
      else if (tag == DT_VERSYM)
Packit 032894
	res = "VERSYM";
Packit 032894
      else if (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT)
Packit 032894
	{
Packit 032894
	  static const char *valrntags[] =
Packit 032894
	    {
Packit 032894
	      "GNU_PRELINKED", "GNU_CONFLICTSZ", "GNU_LIBLISTSZ",
Packit 032894
	      "CHECKSUM", "PLTPADSZ", "MOVEENT", "MOVESZ", "FEATURE_1",
Packit 032894
	      "POSFLAG_1", "SYMINSZ", "SYMINENT"
Packit 032894
	    };
Packit 032894
Packit 032894
	  res = valrntags[tag - DT_GNU_PRELINKED];
Packit 032894
	}
Packit 032894
      else if (tag >= DT_GNU_HASH && tag <= DT_SYMINFO)
Packit 032894
	{
Packit 032894
	  static const char *addrrntags[] =
Packit 032894
	    {
Packit 032894
	      "GNU_HASH", "TLSDESC_PLT", "TLSDESC_GOT",
Packit 032894
	      "GNU_CONFLICT", "GNU_LIBLIST", "CONFIG", "DEPAUDIT", "AUDIT",
Packit 032894
	      "PLTPAD", "MOVETAB", "SYMINFO"
Packit 032894
	    };
Packit 032894
Packit 032894
	  res = addrrntags[tag - DT_GNU_HASH];
Packit 032894
	}
Packit 032894
      else if (tag >= DT_RELACOUNT && tag <= DT_VERNEEDNUM)
Packit 032894
	{
Packit 032894
	  static const char *suntags[] =
Packit 032894
	    {
Packit 032894
	      "RELACOUNT", "RELCOUNT", "FLAGS_1", "VERDEF", "VERDEFNUM",
Packit 032894
	      "VERNEED", "VERNEEDNUM"
Packit 032894
	    };
Packit 032894
Packit 032894
	  res = suntags[tag - DT_RELACOUNT];
Packit 032894
	}
Packit 032894
      else if (tag == DT_AUXILIARY)
Packit 032894
	res = "AUXILIARY";
Packit 032894
      else if (tag == DT_FILTER)
Packit 032894
	res = "FILTER";
Packit 032894
      else
Packit 032894
	{
Packit 032894
	  snprintf (buf, len, gettext ("<unknown>: %#" PRIx64), tag);
Packit 032894
Packit 032894
	  res = buf;
Packit 032894
Packit 032894
	}
Packit 032894
    }
Packit 032894
Packit 032894
  return res;
Packit 032894
}