Coverage Report

Created: 2025-08-29 06:10

/src/elfutils/backends/sparc_symbol.c
Line
Count
Source (jump to first uncovered line)
1
/* SPARC specific symbolic name handling.
2
   Copyright (C) 2002, 2003, 2005, 2007, 2008 Red Hat, Inc.
3
   This file is part of elfutils.
4
   Written by Jakub Jelinek <jakub@redhat.com>, 2002.
5
6
   This file is free software; you can redistribute it and/or modify
7
   it under the terms of either
8
9
     * the GNU Lesser General Public License as published by the Free
10
       Software Foundation; either version 3 of the License, or (at
11
       your option) any later version
12
13
   or
14
15
     * the GNU General Public License as published by the Free
16
       Software Foundation; either version 2 of the License, or (at
17
       your option) any later version
18
19
   or both in parallel, as here.
20
21
   elfutils is distributed in the hope that it will be useful, but
22
   WITHOUT ANY WARRANTY; without even the implied warranty of
23
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24
   General Public License for more details.
25
26
   You should have received copies of the GNU General Public License and
27
   the GNU Lesser General Public License along with this program.  If
28
   not, see <http://www.gnu.org/licenses/>.  */
29
30
#ifdef HAVE_CONFIG_H
31
# include <config.h>
32
#endif
33
34
#include <elf.h>
35
#include <stddef.h>
36
37
#define BACKEND   sparc_
38
#include "libebl_CPU.h"
39
40
/* Check for the simple reloc types.  */
41
Elf_Type
42
sparc_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type,
43
       int *addsub __attribute__ ((unused)))
44
0
{
45
0
  switch (type)
46
0
    {
47
0
    case R_SPARC_8:
48
0
      return ELF_T_BYTE;
49
0
    case R_SPARC_16:
50
0
    case R_SPARC_UA16:
51
0
      return ELF_T_HALF;
52
0
    case R_SPARC_32:
53
0
    case R_SPARC_UA32:
54
0
      return ELF_T_WORD;
55
0
    case R_SPARC_64:
56
0
    case R_SPARC_UA64:
57
0
      return ELF_T_XWORD;
58
0
    default:
59
0
      return ELF_T_NUM;
60
0
    }
61
0
}
62
63
/* Check whether machine flags are valid.  */
64
bool
65
sparc_machine_flag_check (GElf_Word flags)
66
0
{
67
0
  return ((flags &~ (EF_SPARCV9_MM
68
0
         | EF_SPARC_LEDATA
69
0
         | EF_SPARC_32PLUS
70
0
         | EF_SPARC_SUN_US1
71
0
         | EF_SPARC_SUN_US3)) == 0);
72
0
}
73
74
bool
75
sparc_check_special_section (Ebl *ebl,
76
           int ndx __attribute__ ((unused)),
77
           const GElf_Shdr *shdr,
78
           const char *sname __attribute__ ((unused)))
79
0
{
80
0
  if ((shdr->sh_flags & (SHF_WRITE | SHF_EXECINSTR))
81
0
      == (SHF_WRITE | SHF_EXECINSTR))
82
0
    {
83
      /* This is ordinarily flagged, but is valid for a PLT on SPARC.
84
85
   Look for the SHT_DYNAMIC section and the DT_PLTGOT tag in it.
86
   Its d_ptr should match the .plt section's sh_addr.  */
87
88
0
      Elf_Scn *scn = NULL;
89
0
      while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
90
0
  {
91
0
    GElf_Shdr scn_shdr;
92
0
    if (likely (gelf_getshdr (scn, &scn_shdr) != NULL)
93
0
        && scn_shdr.sh_type == SHT_DYNAMIC
94
0
        && scn_shdr.sh_entsize != 0)
95
0
      {
96
0
        Elf_Data *data = elf_getdata (scn, NULL);
97
0
        if (data != NULL)
98
0
    for (size_t i = 0; i < data->d_size / scn_shdr.sh_entsize; ++i)
99
0
      {
100
0
        GElf_Dyn dyn;
101
0
        if (unlikely (gelf_getdyn (data, i, &dyn) == NULL))
102
0
          break;
103
0
        if (dyn.d_tag == DT_PLTGOT)
104
0
          return dyn.d_un.d_ptr == shdr->sh_addr;
105
0
      }
106
0
        break;
107
0
      }
108
0
  }
109
0
    }
110
111
0
  return false;
112
0
}
113
114
const char *
115
sparc_symbol_type_name (int type,
116
      char *buf __attribute__ ((unused)),
117
      size_t len __attribute__ ((unused)))
118
0
{
119
0
  switch (type)
120
0
    {
121
0
    case STT_SPARC_REGISTER:
122
0
      return "SPARC_REGISTER";
123
0
    }
124
0
  return NULL;
125
0
}
126
127
const char *
128
sparc_dynamic_tag_name (int64_t tag,
129
      char *buf __attribute__ ((unused)),
130
      size_t len __attribute__ ((unused)))
131
0
{
132
0
  switch (tag)
133
0
    {
134
0
    case DT_SPARC_REGISTER:
135
0
      return "SPARC_REGISTER";
136
0
    }
137
0
  return NULL;
138
0
}
139
140
bool
141
sparc_dynamic_tag_check (int64_t tag)
142
0
{
143
0
  switch (tag)
144
0
    {
145
0
    case DT_SPARC_REGISTER:
146
0
      return true;
147
0
    }
148
0
  return false;
149
0
}