Coverage Report

Created: 2023-08-28 06:28

/src/binutils-gdb/bfd/reloc16.c
Line
Count
Source (jump to first uncovered line)
1
/* 8 and 16 bit COFF relocation functions, for BFD.
2
   Copyright (C) 1990-2023 Free Software Foundation, Inc.
3
   Written by Cygnus Support.
4
5
   This file is part of BFD, the Binary File Descriptor library.
6
7
   This program is free software; you can redistribute it and/or modify
8
   it under the terms of the GNU General Public License as published by
9
   the Free Software Foundation; either version 3 of the License, or
10
   (at your option) any later version.
11
12
   This program is distributed in the hope that it will be useful,
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
   GNU General Public License for more details.
16
17
   You should have received a copy of the GNU General Public License
18
   along with this program; if not, write to the Free Software
19
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20
   MA 02110-1301, USA.  */
21
22
23
/* Most of this hacked by Steve Chamberlain <sac@cygnus.com>.  */
24
25
/* These routines are used by coff-z8k to do relocation.
26
27
   FIXME: This code should be rewritten to support the new COFF
28
   linker.  Basically, they need to deal with COFF relocs rather than
29
   BFD generic relocs.  They should store the relocs in some location
30
   where coff_link_input_bfd can find them (and coff_link_input_bfd
31
   should be changed to use this location rather than rereading the
32
   file) (unless info->keep_memory is FALSE, in which case they should
33
   free up the relocs after dealing with them).  */
34
35
#include "sysdep.h"
36
#include "bfd.h"
37
#include "libbfd.h"
38
#include "bfdlink.h"
39
#include "genlink.h"
40
#include "coff/internal.h"
41
#include "libcoff.h"
42
43
bfd_vma
44
bfd_coff_reloc16_get_value (arelent *reloc,
45
          struct bfd_link_info *link_info,
46
          asection *input_section)
47
0
{
48
0
  bfd_vma value;
49
0
  asymbol *symbol = *(reloc->sym_ptr_ptr);
50
  /* A symbol holds a pointer to a section, and an offset from the
51
     base of the section.  To relocate, we find where the section will
52
     live in the output and add that in.  */
53
54
0
  if (bfd_is_und_section (symbol->section)
55
0
      || bfd_is_com_section (symbol->section))
56
0
    {
57
0
      struct bfd_link_hash_entry *h;
58
59
      /* The symbol is undefined in this BFD.  Look it up in the
60
   global linker hash table.  FIXME: This should be changed when
61
   we convert this stuff to use a specific final_link function
62
   and change the interface to bfd_relax_section to not require
63
   the generic symbols.  */
64
0
      h = bfd_wrapped_link_hash_lookup (input_section->owner, link_info,
65
0
          bfd_asymbol_name (symbol),
66
0
          false, false, true);
67
0
      if (h != (struct bfd_link_hash_entry *) NULL
68
0
    && (h->type == bfd_link_hash_defined
69
0
        || h->type == bfd_link_hash_defweak))
70
0
  value = (h->u.def.value
71
0
     + h->u.def.section->output_section->vma
72
0
     + h->u.def.section->output_offset);
73
0
      else if (h != (struct bfd_link_hash_entry *) NULL
74
0
         && h->type == bfd_link_hash_common)
75
0
  value = h->u.c.size;
76
0
      else if (h != (struct bfd_link_hash_entry *) NULL
77
0
         && h->type == bfd_link_hash_undefweak)
78
  /* This is a GNU extension.  */
79
0
  value = 0;
80
0
      else
81
0
  {
82
0
    (*link_info->callbacks->undefined_symbol)
83
0
      (link_info, bfd_asymbol_name (symbol),
84
0
       input_section->owner, input_section, reloc->address, true);
85
0
    value = 0;
86
0
  }
87
0
    }
88
0
  else
89
0
    {
90
0
      value = symbol->value
91
0
  + symbol->section->output_offset
92
0
  + symbol->section->output_section->vma;
93
0
    }
94
95
  /* Add the value contained in the relocation.  */
96
0
  value += reloc->addend;
97
98
0
  return value;
99
0
}
100
101
void
102
bfd_perform_slip (bfd *abfd,
103
      unsigned int slip,
104
      asection *input_section,
105
      bfd_vma value)
106
0
{
107
0
  asymbol **s;
108
109
0
  s = _bfd_generic_link_get_symbols (abfd);
110
0
  BFD_ASSERT (s != (asymbol **) NULL);
111
112
  /* Find all symbols past this point, and make them know
113
     what's happened.  */
114
0
  while (*s)
115
0
    {
116
0
      asymbol *p = *s;
117
0
      if (p->section == input_section)
118
0
  {
119
    /* This was pointing into this section, so mangle it.  */
120
0
    if (p->value > value)
121
0
      {
122
0
        p->value -= slip;
123
0
        if (p->udata.p != NULL)
124
0
    {
125
0
      struct generic_link_hash_entry *h;
126
127
0
      h = (struct generic_link_hash_entry *) p->udata.p;
128
0
      BFD_ASSERT (h->root.type == bfd_link_hash_defined
129
0
            || h->root.type == bfd_link_hash_defweak);
130
0
      h->root.u.def.value -= slip;
131
0
      BFD_ASSERT (h->root.u.def.value == p->value);
132
0
    }
133
0
      }
134
0
  }
135
0
      s++;
136
0
    }
137
0
}
138
139
bool
140
bfd_coff_reloc16_relax_section (bfd *abfd,
141
        asection *input_section,
142
        struct bfd_link_info *link_info,
143
        bool *again)
144
0
{
145
  /* Get enough memory to hold the stuff.  */
146
0
  bfd *input_bfd = input_section->owner;
147
0
  unsigned *shrinks;
148
0
  unsigned shrink = 0;
149
0
  long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
150
0
  arelent **reloc_vector = NULL;
151
0
  long reloc_count;
152
153
0
  if (bfd_link_relocatable (link_info))
154
0
    (*link_info->callbacks->einfo)
155
0
      (_("%P%F: --relax and -r may not be used together\n"));
156
157
  /* We only do global relaxation once.  It is not safe to do it multiple
158
     times (see discussion of the "shrinks" array below).  */
159
0
  *again = false;
160
161
0
  if (reloc_size < 0)
162
0
    return false;
163
164
0
  reloc_vector = (arelent **) bfd_malloc ((bfd_size_type) reloc_size);
165
0
  if (!reloc_vector && reloc_size > 0)
166
0
    return false;
167
168
  /* Get the relocs and think about them.  */
169
0
  reloc_count =
170
0
    bfd_canonicalize_reloc (input_bfd, input_section, reloc_vector,
171
0
          _bfd_generic_link_get_symbols (input_bfd));
172
0
  if (reloc_count < 0)
173
0
    {
174
0
      free (reloc_vector);
175
0
      return false;
176
0
    }
177
178
  /* The reloc16.c and related relaxing code is very simple, the price
179
     for that simplicity is we can only call this function once for
180
     each section.
181
182
     So, to get the best results within that limitation, we do multiple
183
     relaxing passes over each section here.  That involves keeping track
184
     of the "shrink" at each reloc in the section.  This allows us to
185
     accurately determine the relative location of two relocs within
186
     this section.
187
188
     In theory, if we kept the "shrinks" array for each section for the
189
     entire link, we could use the generic relaxing code in the linker
190
     and get better results, particularly for jsr->bsr and 24->16 bit
191
     memory reference relaxations.  */
192
193
0
  if (reloc_count > 0)
194
0
    {
195
0
      int another_pass = 0;
196
0
      bfd_size_type amt;
197
198
      /* Allocate and initialize the shrinks array for this section.
199
   The last element is used as an accumulator of shrinks.  */
200
0
      amt = reloc_count + 1;
201
0
      amt *= sizeof (unsigned);
202
0
      shrinks = (unsigned *) bfd_zmalloc (amt);
203
204
      /* Loop until nothing changes in this section.  */
205
0
      do
206
0
  {
207
0
    arelent **parent;
208
0
    unsigned int i;
209
0
    long j;
210
211
0
    another_pass = 0;
212
213
0
    for (i = 0, parent = reloc_vector; *parent; parent++, i++)
214
0
      {
215
        /* Let the target/machine dependent code examine each reloc
216
     in this section and attempt to shrink it.  */
217
0
        shrink = bfd_coff_reloc16_estimate (abfd, input_section, *parent,
218
0
              shrinks[i], link_info);
219
220
        /* If it shrunk, note it in the shrinks array and set up for
221
     another pass.  */
222
0
        if (shrink != shrinks[i])
223
0
    {
224
0
      another_pass = 1;
225
0
      for (j = i + 1; j <= reloc_count; j++)
226
0
        shrinks[j] += shrink - shrinks[i];
227
0
    }
228
0
      }
229
0
  }
230
0
      while (another_pass);
231
232
0
      shrink = shrinks[reloc_count];
233
0
      free ((char *) shrinks);
234
0
    }
235
236
0
  input_section->rawsize = input_section->size;
237
0
  input_section->size -= shrink;
238
0
  free ((char *) reloc_vector);
239
0
  return true;
240
0
}
241
242
bfd_byte *
243
bfd_coff_reloc16_get_relocated_section_contents
244
  (bfd *in_abfd,
245
   struct bfd_link_info *link_info,
246
   struct bfd_link_order *link_order,
247
   bfd_byte *data,
248
   bool relocatable,
249
   asymbol **symbols)
250
0
{
251
  /* Get enough memory to hold the stuff.  */
252
0
  bfd *input_bfd = link_order->u.indirect.section->owner;
253
0
  asection *input_section = link_order->u.indirect.section;
254
0
  long reloc_size;
255
0
  arelent **reloc_vector;
256
0
  long reloc_count;
257
258
0
  reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
259
0
  if (reloc_size < 0)
260
0
    return NULL;
261
262
  /* If producing relocatable output, don't bother to relax.  */
263
0
  if (relocatable)
264
0
    return bfd_generic_get_relocated_section_contents (in_abfd, link_info,
265
0
                   link_order,
266
0
                   data, relocatable,
267
0
                   symbols);
268
269
  /* Read in the section.  */
270
0
  bfd_byte *orig_data = data;
271
0
  if (!bfd_get_full_section_contents (input_bfd, input_section, &data))
272
0
    return NULL;
273
274
0
  if (data == NULL)
275
0
    return NULL;
276
277
0
  if (reloc_size == 0)
278
0
    return data;
279
280
0
  reloc_vector = (arelent **) bfd_malloc (reloc_size);
281
0
  if (reloc_vector == NULL)
282
0
    goto error_return;
283
284
0
  reloc_count = bfd_canonicalize_reloc (input_bfd,
285
0
          input_section,
286
0
          reloc_vector,
287
0
          symbols);
288
0
  if (reloc_count < 0)
289
0
    goto error_return;
290
291
0
  if (reloc_count > 0)
292
0
    {
293
0
      arelent **parent = reloc_vector;
294
0
      arelent *reloc;
295
0
      size_t dst_address = 0;
296
0
      size_t src_address = 0;
297
0
      size_t run;
298
0
      size_t idx;
299
300
      /* Find how long a run we can do.  */
301
0
      while (dst_address < link_order->size)
302
0
  {
303
0
    reloc = *parent;
304
0
    if (reloc)
305
0
      {
306
        /* Note that the relaxing didn't tie up the addresses in the
307
     relocation, so we use the original address to work out the
308
     run of non-relocated data.  */
309
0
        if (reloc->address > link_order->size
310
0
      || reloc->address < src_address)
311
0
    {
312
0
      link_info->callbacks->einfo
313
        /* xgettext:c-format */
314
0
        (_("%X%P: %pB(%pA): relocation \"%pR\" goes out of range\n"),
315
0
         input_bfd, input_section, reloc);
316
0
      goto error_return;
317
0
    }
318
0
        run = reloc->address - src_address;
319
0
        parent++;
320
0
      }
321
0
    else
322
0
      {
323
0
        run = link_order->size - dst_address;
324
0
      }
325
326
    /* Copy the bytes.  */
327
0
    for (idx = 0; idx < run; idx++)
328
0
      data[dst_address++] = data[src_address++];
329
330
    /* Now do the relocation.  */
331
0
    if (reloc
332
0
        && !bfd_coff_reloc16_extra_cases (input_bfd, link_info,
333
0
            link_order, reloc, data,
334
0
            &src_address, &dst_address))
335
0
      goto error_return;
336
0
  }
337
0
    }
338
0
  free (reloc_vector);
339
0
  return data;
340
341
0
 error_return:
342
0
  free (reloc_vector);
343
0
  if (orig_data == NULL)
344
0
    free (data);
345
0
  return NULL;
346
0
}