Coverage Report

Created: 2025-12-14 06:34

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/elfutils/libelf/gelf_xlate.c
Line
Count
Source
1
/* Transformation functions for ELF data types.
2
   Copyright (C) 1998,1999,2000,2002,2004,2005,2006,2007,2015 Red Hat, Inc.
3
   Copyright (C) 2022 Mark J. Wielaard <mark@klomp.org>
4
   This file is part of elfutils.
5
   Written by Ulrich Drepper <drepper@redhat.com>, 1998.
6
7
   This file is free software; you can redistribute it and/or modify
8
   it under the terms of either
9
10
     * the GNU Lesser General Public License as published by the Free
11
       Software Foundation; either version 3 of the License, or (at
12
       your option) any later version
13
14
   or
15
16
     * the GNU General Public License as published by the Free
17
       Software Foundation; either version 2 of the License, or (at
18
       your option) any later version
19
20
   or both in parallel, as here.
21
22
   elfutils is distributed in the hope that it will be useful, but
23
   WITHOUT ANY WARRANTY; without even the implied warranty of
24
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25
   General Public License for more details.
26
27
   You should have received copies of the GNU General Public License and
28
   the GNU Lesser General Public License along with this program.  If
29
   not, see <http://www.gnu.org/licenses/>.  */
30
31
#ifdef HAVE_CONFIG_H
32
# include <config.h>
33
#endif
34
35
#include <stdint.h>
36
#include <string.h>
37
#include <stdlib.h>
38
39
#include "libelfP.h"
40
41
#ifndef LIBELFBITS
42
# define LIBELFBITS 32
43
#endif
44
45
46
/* Well, what shall I say.  Nothing to do here.  */
47
#define elf_cvt_Byte(dest, src, n) \
48
  (__builtin_constant_p (n) && (n) == 1               \
49
   ? (void) (*((char *) (dest)) = *((char *) (src)))            \
50
   : Elf32_cvt_Byte (dest, src, n))
51
static void
52
(elf_cvt_Byte) (void *dest, const void *src, size_t n,
53
    int encode __attribute__ ((unused)))
54
0
{
55
0
  if (n != 0)
56
0
    memmove (dest, src, n);
57
0
}
58
59
60
/* We'll optimize the definition of the conversion functions here a
61
   bit.  We need only functions for 16, 32, and 64 bits.  The
62
   functions referenced in the table will be aliases for one of these
63
   functions.  Which one is decided by the ELFxx_FSZ_type.  */
64
65
#if ALLOW_UNALIGNED
66
67
#define FETCH(Bits, ptr)  (*(const uint##Bits##_t *) ptr)
68
28.5M
#define STORE(Bits, ptr, val) (*(uint##Bits##_t *) ptr = val)
69
70
#else
71
72
union unaligned
73
  {
74
    uint16_t u16;
75
    uint32_t u32;
76
    uint64_t u64;
77
  } attribute_packed;
78
79
#define FETCH(Bits, ptr)  (((const union unaligned *) ptr)->u##Bits)
80
#define STORE(Bits, ptr, val) (((union unaligned *) ptr)->u##Bits = val)
81
82
#endif
83
84
/* Now define the conversion functions for the basic types.  We use here
85
   the fact that file and memory types are the same and that we have the
86
   ELFxx_FSZ_* macros.
87
88
   At the same time we define inline functions which we will use to
89
   convert the complex types.  */
90
#define FUNDAMENTAL(NAME, Name, Bits) \
91
  INLINE2 (ELFW2(Bits,FSZ_##NAME), ElfW2(Bits,cvt_##Name), ElfW2(Bits,Name))
92
#define INLINE2(Bytes, FName, TName) \
93
  INLINE3 (Bytes, FName, TName)
94
#define INLINE3(Bytes, FName, TName)                \
95
  static inline void FName##1 (void *dest, const void *ptr)         \
96
28.5M
  {                       \
97
28.5M
    switch (Bytes)                    \
98
28.5M
      {                       \
99
1.24M
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
27.0M
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
244k
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
28.5M
      }                       \
105
28.5M
  }                        \
gelf_xlate.c:Elf32_cvt_Addr1
Line
Count
Source
96
26.2M
  {                       \
97
26.2M
    switch (Bytes)                    \
98
26.2M
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
26.2M
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
26.2M
      }                       \
105
26.2M
  }                        \
gelf_xlate.c:Elf32_cvt_Sword1
Line
Count
Source
96
83.4k
  {                       \
97
83.4k
    switch (Bytes)                    \
98
83.4k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
83.4k
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
83.4k
      }                       \
105
83.4k
  }                        \
gelf_xlate.c:Elf32_cvt_Half1
Line
Count
Source
96
1.12M
  {                       \
97
1.12M
    switch (Bytes)                    \
98
1.12M
      {                       \
99
1.12M
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
1.12M
      }                       \
105
1.12M
  }                        \
gelf_xlate.c:Elf32_cvt_Word1
Line
Count
Source
96
638k
  {                       \
97
638k
    switch (Bytes)                    \
98
638k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
638k
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
638k
      }                       \
105
638k
  }                        \
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Off1
gelf_xlate.c:Elf32_cvt_Xword1
Line
Count
Source
96
55.8k
  {                       \
97
55.8k
    switch (Bytes)                    \
98
55.8k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
55.8k
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
55.8k
      }                       \
105
55.8k
  }                        \
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Sxword1
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Relr1
gelf_xlate.c:Elf64_cvt_Addr1
Line
Count
Source
96
87.4k
  {                       \
97
87.4k
    switch (Bytes)                    \
98
87.4k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
87.4k
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
87.4k
      }                       \
105
87.4k
  }                        \
gelf_xlate.c:Elf64_cvt_Xword1
Line
Count
Source
96
78.4k
  {                       \
97
78.4k
    switch (Bytes)                    \
98
78.4k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
78.4k
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
78.4k
      }                       \
105
78.4k
  }                        \
gelf_xlate.c:Elf64_cvt_Half1
Line
Count
Source
96
115k
  {                       \
97
115k
    switch (Bytes)                    \
98
115k
      {                       \
99
115k
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
115k
      }                       \
105
115k
  }                        \
gelf_xlate.c:Elf64_cvt_Word1
Line
Count
Source
96
92.8k
  {                       \
97
92.8k
    switch (Bytes)                    \
98
92.8k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
92.8k
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
0
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
92.8k
      }                       \
105
92.8k
  }                        \
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Off1
gelf_xlate.c:Elf64_cvt_Sxword1
Line
Count
Source
96
22.6k
  {                       \
97
22.6k
    switch (Bytes)                    \
98
22.6k
      {                       \
99
0
      case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break;       \
100
0
      case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break;       \
101
22.6k
      case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break;       \
102
0
      default:                      \
103
0
  abort ();                   \
104
22.6k
      }                       \
105
22.6k
  }                        \
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Sword1
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Relr1
106
                        \
107
  static void FName (void *dest, const void *ptr, size_t len,         \
108
         int encode __attribute__ ((unused)))         \
109
8.99k
  {                       \
110
8.99k
    size_t n = len / sizeof (TName);                \
111
8.99k
    if (dest < ptr)                   \
112
164k
      while (n-- > 0)                   \
113
161k
  {                     \
114
161k
    FName##1 (dest, ptr);                  \
115
161k
    dest += Bytes;                  \
116
161k
    ptr += Bytes;                   \
117
161k
  }                      \
118
8.99k
    else                      \
119
8.99k
      {                       \
120
6.33k
  dest += len;                    \
121
6.33k
  ptr += len;                   \
122
27.2M
  while (n-- > 0)                   \
123
27.2M
    {                     \
124
27.2M
      ptr -= Bytes;                 \
125
27.2M
      dest -= Bytes;                  \
126
27.2M
      FName##1 (dest, ptr);                \
127
27.2M
    }                      \
128
6.33k
      }                        \
129
8.99k
  }
gelf_xlate.c:Elf32_cvt_Addr
Line
Count
Source
109
1.55k
  {                       \
110
1.55k
    size_t n = len / sizeof (TName);                \
111
1.55k
    if (dest < ptr)                   \
112
34.7k
      while (n-- > 0)                   \
113
34.3k
  {                     \
114
34.3k
    FName##1 (dest, ptr);                  \
115
34.3k
    dest += Bytes;                  \
116
34.3k
    ptr += Bytes;                   \
117
34.3k
  }                      \
118
1.55k
    else                      \
119
1.55k
      {                       \
120
1.16k
  dest += len;                    \
121
1.16k
  ptr += len;                   \
122
26.0M
  while (n-- > 0)                   \
123
26.0M
    {                     \
124
26.0M
      ptr -= Bytes;                 \
125
26.0M
      dest -= Bytes;                  \
126
26.0M
      FName##1 (dest, ptr);                \
127
26.0M
    }                      \
128
1.16k
      }                        \
129
1.55k
  }
gelf_xlate.c:Elf32_cvt_Half
Line
Count
Source
109
1.54k
  {                       \
110
1.54k
    size_t n = len / sizeof (TName);                \
111
1.54k
    if (dest < ptr)                   \
112
35.4k
      while (n-- > 0)                   \
113
35.1k
  {                     \
114
35.1k
    FName##1 (dest, ptr);                  \
115
35.1k
    dest += Bytes;                  \
116
35.1k
    ptr += Bytes;                   \
117
35.1k
  }                      \
118
1.54k
    else                      \
119
1.54k
      {                       \
120
1.18k
  dest += len;                    \
121
1.18k
  ptr += len;                   \
122
725k
  while (n-- > 0)                   \
123
723k
    {                     \
124
723k
      ptr -= Bytes;                 \
125
723k
      dest -= Bytes;                  \
126
723k
      FName##1 (dest, ptr);                \
127
723k
    }                      \
128
1.18k
      }                        \
129
1.54k
  }
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Off
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Sword
gelf_xlate.c:Elf32_cvt_Word
Line
Count
Source
109
3.32k
  {                       \
110
3.32k
    size_t n = len / sizeof (TName);                \
111
3.32k
    if (dest < ptr)                   \
112
42.9k
      while (n-- > 0)                   \
113
41.8k
  {                     \
114
41.8k
    FName##1 (dest, ptr);                  \
115
41.8k
    dest += Bytes;                  \
116
41.8k
    ptr += Bytes;                   \
117
41.8k
  }                      \
118
3.32k
    else                      \
119
3.32k
      {                       \
120
2.27k
  dest += len;                    \
121
2.27k
  ptr += len;                   \
122
233k
  while (n-- > 0)                   \
123
231k
    {                     \
124
231k
      ptr -= Bytes;                 \
125
231k
      dest -= Bytes;                  \
126
231k
      FName##1 (dest, ptr);                \
127
231k
    }                      \
128
2.27k
      }                        \
129
3.32k
  }
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Xword
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Sxword
Unexecuted instantiation: gelf_xlate.c:Elf32_cvt_Relr
gelf_xlate.c:Elf64_cvt_Addr
Line
Count
Source
109
1.02k
  {                       \
110
1.02k
    size_t n = len / sizeof (TName);                \
111
1.02k
    if (dest < ptr)                   \
112
8.99k
      while (n-- > 0)                   \
113
8.68k
  {                     \
114
8.68k
    FName##1 (dest, ptr);                  \
115
8.68k
    dest += Bytes;                  \
116
8.68k
    ptr += Bytes;                   \
117
8.68k
  }                      \
118
1.02k
    else                      \
119
1.02k
      {                       \
120
723
  dest += len;                    \
121
723
  ptr += len;                   \
122
41.3k
  while (n-- > 0)                   \
123
40.6k
    {                     \
124
40.6k
      ptr -= Bytes;                 \
125
40.6k
      dest -= Bytes;                  \
126
40.6k
      FName##1 (dest, ptr);                \
127
40.6k
    }                      \
128
723
      }                        \
129
1.02k
  }
gelf_xlate.c:Elf64_cvt_Half
Line
Count
Source
109
456
  {                       \
110
456
    size_t n = len / sizeof (TName);                \
111
456
    if (dest < ptr)                   \
112
30.2k
      while (n-- > 0)                   \
113
30.1k
  {                     \
114
30.1k
    FName##1 (dest, ptr);                  \
115
30.1k
    dest += Bytes;                  \
116
30.1k
    ptr += Bytes;                   \
117
30.1k
  }                      \
118
456
    else                      \
119
456
      {                       \
120
289
  dest += len;                    \
121
289
  ptr += len;                   \
122
48.0k
  while (n-- > 0)                   \
123
47.7k
    {                     \
124
47.7k
      ptr -= Bytes;                 \
125
47.7k
      dest -= Bytes;                  \
126
47.7k
      FName##1 (dest, ptr);                \
127
47.7k
    }                      \
128
289
      }                        \
129
456
  }
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Off
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Sword
gelf_xlate.c:Elf64_cvt_Word
Line
Count
Source
109
450
  {                       \
110
450
    size_t n = len / sizeof (TName);                \
111
450
    if (dest < ptr)                   \
112
6.83k
      while (n-- > 0)                   \
113
6.68k
  {                     \
114
6.68k
    FName##1 (dest, ptr);                  \
115
6.68k
    dest += Bytes;                  \
116
6.68k
    ptr += Bytes;                   \
117
6.68k
  }                      \
118
450
    else                      \
119
450
      {                       \
120
293
  dest += len;                    \
121
293
  ptr += len;                   \
122
69.4k
  while (n-- > 0)                   \
123
69.1k
    {                     \
124
69.1k
      ptr -= Bytes;                 \
125
69.1k
      dest -= Bytes;                  \
126
69.1k
      FName##1 (dest, ptr);                \
127
69.1k
    }                      \
128
293
      }                        \
129
450
  }
gelf_xlate.c:Elf64_cvt_Xword
Line
Count
Source
109
635
  {                       \
110
635
    size_t n = len / sizeof (TName);                \
111
635
    if (dest < ptr)                   \
112
4.92k
      while (n-- > 0)                   \
113
4.70k
  {                     \
114
4.70k
    FName##1 (dest, ptr);                  \
115
4.70k
    dest += Bytes;                  \
116
4.70k
    ptr += Bytes;                   \
117
4.70k
  }                      \
118
635
    else                      \
119
635
      {                       \
120
409
  dest += len;                    \
121
409
  ptr += len;                   \
122
30.1k
  while (n-- > 0)                   \
123
29.7k
    {                     \
124
29.7k
      ptr -= Bytes;                 \
125
29.7k
      dest -= Bytes;                  \
126
29.7k
      FName##1 (dest, ptr);                \
127
29.7k
    }                      \
128
409
      }                        \
129
635
  }
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Sxword
Unexecuted instantiation: gelf_xlate.c:Elf64_cvt_Relr
130
131
132
/* Now the tricky part: define the transformation functions for the
133
   complex types.  We will use the definitions of the types in
134
   abstract.h.  */
135
#define START(Bits, Name, EName) \
136
  static void                     \
137
  ElfW2 (Bits, cvt_##Name) (void *dest, const void *src, size_t len,        \
138
          int encode __attribute__ ((unused)))        \
139
53.5k
  { ElfW2(Bits, Name) *tdest = (ElfW2(Bits, Name) *) dest;         \
140
53.5k
    ElfW2(Bits, Name) *tsrc = (ElfW2(Bits, Name) *) src;         \
141
53.5k
    size_t sz = sizeof (ElfW2(Bits, Name));             \
142
53.5k
    size_t n;                     \
143
473k
    for (n = len / sz; n > 0; ++tdest, ++tsrc, --n) {
144
#define END(Bits, Name)                   \
145
419k
    }                        \
146
53.5k
    if (len % sz > 0) /* Cannot convert partial structures, just copy. */     \
147
53.5k
      memmove (dest, src, len % sz);               \
148
53.5k
  }
149
#define TYPE_EXTRA(Code)
150
81.9k
#define TYPE_XLATE(Code) Code
151
1.14M
#define TYPE_NAME(Type, Name) TYPE_NAME2 (Type, Name)
152
1.14M
#define TYPE_NAME2(Type, Name) Type##1 (&tdest->Name, &tsrc->Name);
153
#define TYPE(Name, Bits) TYPE2 (Name, Bits)
154
#define TYPE2(Name, Bits) TYPE3 (Name##Bits)
155
#define TYPE3(Name) Name (cvt_)
156
157
/* Signal that we are generating conversion functions.  */
158
#define GENERATE_CONVERSION
159
160
/* First generate the 32-bit conversion functions.  */
161
#define LIBELFBITS 32
162
#include "gelf_xlate.h"
163
164
/* Now generate the 64-bit conversion functions.  */
165
#define LIBELFBITS 64
166
#include "gelf_xlate.h"
167
168
169
/* We have a few functions which we must create by hand since the sections
170
   do not contain records of only one type.  */
171
#include "version_xlate.h"
172
#include "gnuhash_xlate.h"
173
#include "note_xlate.h"
174
#include "chdr_xlate.h"
175
176
177
/* Now the externally visible table with the function pointers.  */
178
const xfct_t __elf_xfctstom[ELFCLASSNUM - 1][ELF_T_NUM] =
179
{
180
      [ELFCLASS32 - 1] = {
181
#define define_xfcts(Bits) \
182
  [ELF_T_BYTE]  = elf_cvt_Byte,               \
183
  [ELF_T_ADDR]  = ElfW2(Bits, cvt_Addr),            \
184
  [ELF_T_DYN] = ElfW2(Bits, cvt_Dyn),             \
185
  [ELF_T_EHDR]  = ElfW2(Bits, cvt_Ehdr),            \
186
  [ELF_T_HALF]  = ElfW2(Bits, cvt_Half),            \
187
  [ELF_T_OFF] = ElfW2(Bits, cvt_Off),             \
188
  [ELF_T_PHDR]  = ElfW2(Bits, cvt_Phdr),            \
189
  [ELF_T_RELA]  = ElfW2(Bits, cvt_Rela),            \
190
  [ELF_T_REL] = ElfW2(Bits, cvt_Rel),             \
191
  [ELF_T_SHDR]  = ElfW2(Bits, cvt_Shdr),            \
192
  [ELF_T_SWORD] = ElfW2(Bits, cvt_Sword),           \
193
  [ELF_T_SYM] = ElfW2(Bits, cvt_Sym),             \
194
  [ELF_T_WORD]  = ElfW2(Bits, cvt_Word),            \
195
  [ELF_T_XWORD] = ElfW2(Bits, cvt_Xword),           \
196
  [ELF_T_SXWORD]  = ElfW2(Bits, cvt_Sxword),            \
197
  [ELF_T_VDEF]  = elf_cvt_Verdef,             \
198
  [ELF_T_VDAUX] = elf_cvt_Verdef,             \
199
  [ELF_T_VNEED] = elf_cvt_Verneed,              \
200
  [ELF_T_VNAUX] = elf_cvt_Verneed,              \
201
  [ELF_T_NHDR]  = elf_cvt_note4,              \
202
  [ELF_T_NHDR8] = elf_cvt_note8,              \
203
  [ELF_T_SYMINFO] = ElfW2(Bits, cvt_Syminfo),           \
204
  [ELF_T_MOVE]  = ElfW2(Bits, cvt_Move),            \
205
  [ELF_T_LIB] = ElfW2(Bits, cvt_Lib),             \
206
  [ELF_T_AUXV]  = ElfW2(Bits, cvt_auxv_t),            \
207
  [ELF_T_CHDR]  = ElfW2(Bits, cvt_chdr),            \
208
  [ELF_T_RELR]  = ElfW2(Bits, cvt_Relr)
209
        define_xfcts (32),
210
  [ELF_T_GNUHASH] = Elf32_cvt_Word
211
      },
212
      [ELFCLASS64 - 1] = {
213
  define_xfcts (64),
214
  [ELF_T_GNUHASH] = elf_cvt_gnuhash
215
      }
216
};