Coverage Report

Created: 2023-08-28 06:31

/src/binutils-gdb/bfd/tekhex.c
Line
Count
Source (jump to first uncovered line)
1
/* BFD backend for Extended Tektronix Hex Format  objects.
2
   Copyright (C) 1992-2023 Free Software Foundation, Inc.
3
   Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
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
/* SUBSECTION
24
  Tektronix Hex Format handling
25
26
   DESCRIPTION
27
28
  Tek Hex records can hold symbols and data, but not
29
  relocations. Their main application is communication with
30
  devices like PROM programmers and ICE equipment.
31
32
  It seems that the sections are described as being really big,
33
  the example I have says that the text section is 0..ffffffff.
34
  BFD would barf with this, many apps would try to alloc 4GB to
35
  read in the file.
36
37
  Tex Hex may contain many sections, but the data which comes in
38
  has no tag saying which section it belongs to, so we create
39
  one section for each block of data, called "blknnnn" which we
40
  stick all the data into.
41
42
  TekHex may come out of order and there is no header, so an
43
  initial scan is required  to discover the minimum and maximum
44
  addresses used to create the vma and size of the sections we
45
  create.
46
  We read in the data into pages of CHUNK_MASK+1 size and read
47
  them out from that whenever we need to.
48
49
  Any number of sections may be created for output, we save them
50
  up and output them when it's time to close the bfd.
51
52
  A TekHex record looks like:
53
  EXAMPLE
54
  %<block length><type><checksum><stuff><cr>
55
56
  DESCRIPTION
57
  Where
58
  o length
59
  is the number of bytes in the record not including the % sign.
60
  o type
61
  is one of:
62
  3) symbol record
63
  6) data record
64
  8) termination record
65
66
  The data can come out of order, and may be discontigous. This is a
67
  serial protocol, so big files are unlikely, so we keep a list of 8k chunks.  */
68
69
#include "sysdep.h"
70
#include "bfd.h"
71
#include "libbfd.h"
72
#include "libiberty.h"
73
74
typedef struct
75
{
76
  bfd_vma low;
77
  bfd_vma high;
78
} addr_range_type;
79
80
typedef struct tekhex_symbol_struct
81
{
82
  asymbol symbol;
83
  struct tekhex_symbol_struct *prev;
84
} tekhex_symbol_type;
85
86
static const char digs[] = "0123456789ABCDEF";
87
88
static char sum_block[256];
89
90
#define NOT_HEX      20
91
554k
#define NIBBLE(x)    hex_value(x)
92
277k
#define HEX(buffer) ((NIBBLE ((buffer)[0]) << 4) + NIBBLE ((buffer)[1]))
93
1.99M
#define ISHEX(x)    hex_p(x)
94
#define TOHEX(d, x) \
95
1.80k
  (d)[1] = digs[(x) & 0xf]; \
96
1.80k
  (d)[0] = digs[((x)>>4)&0xf];
97
98
/* Here's an example
99
   %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
100
   %1B3709T_SEGMENT1108FFFFFFFF
101
   %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
102
   %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
103
   %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
104
   %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
105
   %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
106
   %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
107
   %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
108
   %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
109
   %2734D9T_SEGMENT8Bvoid$t15$151035_main10
110
   %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
111
   %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
112
   %07 8 10 10
113
114
   explanation:
115
   %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
116
    ^ ^^ ^     ^-data
117
    | || +------ 4 char integer 0x8000
118
    | |+-------- checksum
119
    | +--------- type 6 (data record)
120
    +----------- length 3a chars
121
   <---------------------- 3a (58 chars) ------------------->
122
123
   %1B3709T_SEGMENT1108FFFFFFFF
124
   ^         ^^ ^- 8 character integer 0xffffffff
125
   |         |+-   1 character integer 0
126
   |         +--   type 1 symbol (section definition)
127
   +------------   9 char symbol T_SEGMENT
128
129
   %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
130
   %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
131
   %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
132
   %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
133
   %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
134
   %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
135
   %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
136
   %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
137
   %2734D9T_SEGMENT8Bvoid$t15$151035_main10
138
   %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
139
   %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
140
   %0781010
141
142
   Turns into
143
   sac@thepub$ ./objdump -dx -m m68k f
144
145
   f:     file format tekhex
146
   -----x--- 9/55728 -134219416 Sep 29 15:13 1995 f
147
   architecture: UNKNOWN!, flags 0x00000010:
148
   HAS_SYMS
149
   start address 0x00000000
150
   SECTION 0 [D00000000]  : size 00020000 vma 00000000 align 2**0
151
   ALLOC, LOAD
152
   SECTION 1 [D00008000]  : size 00002001 vma 00008000 align 2**0
153
154
   SECTION 2 [T_SEGMENT]  : size ffffffff vma 00000000 align 2**0
155
156
   SYMBOL TABLE:
157
   00000000  g       T_SEGMENT gcc_compiled$
158
   00000000  g       T_SEGMENT hello$c
159
   00000000  g       T_SEGMENT int$t1$r1$$21474
160
   00000000  g       T_SEGMENT char$t2$r2$0$127
161
   00000000  g       T_SEGMENT long$int$t3$r1$$
162
   00000000  g       T_SEGMENT unsigned$int$t4$
163
   00000000  g       T_SEGMENT long$unsigned$in
164
   00000000  g       T_SEGMENT short$int$t6$r1$
165
   00000000  g       T_SEGMENT long$long$int$t7
166
   00000000  g       T_SEGMENT short$unsigned$i
167
   00000000  g       T_SEGMENT long$long$unsign
168
   00000000  g       T_SEGMENT signed$char$t10$
169
   00000000  g       T_SEGMENT unsigned$char$t1
170
   00000000  g       T_SEGMENT float$t12$r1$4$0
171
   00000000  g       T_SEGMENT double$t13$r1$8$
172
   00000000  g       T_SEGMENT long$double$t14$
173
   00000000  g       T_SEGMENT void$t15$15
174
   00000000  g       T_SEGMENT _main
175
   00000000  g       T_SEGMENT $
176
   00000000  g       T_SEGMENT $
177
   00000000  g       T_SEGMENT $
178
   00000010  g       T_SEGMENT $
179
   00000000  g       T_SEGMENT main$F1
180
   fcffffff  g       T_SEGMENT i$1
181
   00000000  g       T_SEGMENT $
182
   00000010  g       T_SEGMENT $
183
184
   RELOCATION RECORDS FOR [D00000000]: (none)
185
186
   RELOCATION RECORDS FOR [D00008000]: (none)
187
188
   RELOCATION RECORDS FOR [T_SEGMENT]: (none)
189
190
   Disassembly of section D00000000:
191
   ...
192
   00008000 ($+)7ff0 linkw fp,#-4
193
   00008004 ($+)7ff4 nop
194
   00008006 ($+)7ff6 movel #99,d0
195
   00008008 ($+)7ff8 cmpl fp@(-4),d0
196
   0000800c ($+)7ffc blts 00008014 ($+)8004
197
   0000800e ($+)7ffe addql #1,fp@(-4)
198
   00008012 ($+)8002 bras 00008006 ($+)7ff6
199
   00008014 ($+)8004 unlk fp
200
   00008016 ($+)8006 rts
201
   ...  */
202
203
static void
204
tekhex_init (void)
205
1.65M
{
206
1.65M
  unsigned int i;
207
1.65M
  static bool inited = false;
208
1.65M
  int val;
209
210
1.65M
  if (! inited)
211
11
    {
212
11
      inited = true;
213
11
      hex_init ();
214
11
      val = 0;
215
121
      for (i = 0; i < 10; i++)
216
110
  sum_block[i + '0'] = val++;
217
218
297
      for (i = 'A'; i <= 'Z'; i++)
219
286
  sum_block[i] = val++;
220
221
11
      sum_block['$'] = val++;
222
11
      sum_block['%'] = val++;
223
11
      sum_block['.'] = val++;
224
11
      sum_block['_'] = val++;
225
297
      for (i = 'a'; i <= 'z'; i++)
226
286
  sum_block[i] = val++;
227
11
    }
228
1.65M
}
229
230
/* The maximum number of bytes on a line is FF.  */
231
135k
#define MAXCHUNK 0xff
232
/* The number of bytes we fit onto a line on output.  */
233
#define CHUNK 21
234
235
/* We cannot output our tekhexords as we see them, we have to glue them
236
   together, this is done in this structure : */
237
238
struct tekhex_data_list_struct
239
{
240
  unsigned char *data;
241
  bfd_vma where;
242
  bfd_size_type size;
243
  struct tekhex_data_list_struct *next;
244
245
};
246
typedef struct tekhex_data_list_struct tekhex_data_list_type;
247
248
403k
#define CHUNK_MASK 0x1fff
249
131k
#define CHUNK_SPAN 32
250
251
struct data_struct
252
{
253
  unsigned char chunk_data[CHUNK_MASK + 1];
254
  unsigned char chunk_init[(CHUNK_MASK + 1 + CHUNK_SPAN - 1) / CHUNK_SPAN];
255
  bfd_vma vma;
256
  struct data_struct *next;
257
};
258
259
typedef struct tekhex_data_struct
260
{
261
  tekhex_data_list_type *head;
262
  unsigned int type;
263
  struct tekhex_symbol_struct *symbols;
264
  struct data_struct *data;
265
} tdata_type;
266
267
#define enda(x) (x->vma + x->size)
268
269
static bool
270
getvalue (char **srcp, bfd_vma *valuep, char * endp)
271
265k
{
272
265k
  char *src = *srcp;
273
265k
  bfd_vma value = 0;
274
265k
  unsigned int len;
275
276
265k
  if (src >= endp)
277
467
    return false;
278
279
264k
  if (!ISHEX (*src))
280
1.15k
    return false;
281
282
263k
  len = hex_value (*src++);
283
263k
  if (len == 0)
284
21.8k
    len = 16;
285
1.36M
  while (len-- && src < endp)
286
1.10M
    {
287
1.10M
      if (!ISHEX (*src))
288
1.97k
  return false;
289
1.10M
      value = value << 4 | hex_value (*src++);
290
1.10M
    }
291
292
261k
  *srcp = src;
293
261k
  *valuep = value;
294
261k
  return len == -1U;
295
263k
}
296
297
static bool
298
getsym (char *dstp, char **srcp, unsigned int *lenp, char * endp)
299
258k
{
300
258k
  char *src = *srcp;
301
258k
  unsigned int i;
302
258k
  unsigned int len;
303
304
258k
  if (!ISHEX (*src))
305
667
    return false;
306
307
257k
  len = hex_value (*src++);
308
257k
  if (len == 0)
309
47.4k
    len = 16;
310
1.80M
  for (i = 0; i < len && (src + i) < endp; i++)
311
1.54M
    dstp[i] = src[i];
312
257k
  dstp[i] = 0;
313
257k
  *srcp = src + i;
314
257k
  *lenp = len;
315
257k
  return i == len;
316
258k
}
317
318
static struct data_struct *
319
find_chunk (bfd *abfd, bfd_vma vma, bool create)
320
131k
{
321
131k
  struct data_struct *d = abfd->tdata.tekhex_data->data;
322
323
131k
  vma &= ~CHUNK_MASK;
324
180k
  while (d && (d->vma) != vma)
325
48.4k
    d = d->next;
326
327
131k
  if (!d && create)
328
12.3k
    {
329
      /* No chunk for this address, so make one up.  */
330
12.3k
      d = (struct data_struct *)
331
12.3k
    bfd_zalloc (abfd, (bfd_size_type) sizeof (struct data_struct));
332
333
12.3k
      if (!d)
334
0
  return NULL;
335
336
12.3k
      d->next = abfd->tdata.tekhex_data->data;
337
12.3k
      d->vma = vma;
338
12.3k
      abfd->tdata.tekhex_data->data = d;
339
12.3k
    }
340
131k
  return d;
341
131k
}
342
343
static void
344
insert_byte (bfd *abfd, int value, bfd_vma addr)
345
141k
{
346
141k
  if (value != 0)
347
131k
    {
348
      /* Find the chunk that this byte needs and put it in.  */
349
131k
      struct data_struct *d = find_chunk (abfd, addr, true);
350
351
131k
      d->chunk_data[addr & CHUNK_MASK] = value;
352
131k
      d->chunk_init[(addr & CHUNK_MASK) / CHUNK_SPAN] = 1;
353
131k
    }
354
141k
}
355
356
/* The first pass is to find the names of all the sections, and see
357
  how big the data is.  */
358
359
static bool
360
first_phase (bfd *abfd, int type, char *src, char * src_end)
361
135k
{
362
135k
  asection *section, *alt_section;
363
135k
  unsigned int len;
364
135k
  bfd_vma val;
365
135k
  char sym[17];     /* A symbol can only be 16chars long.  */
366
367
135k
  switch (type)
368
135k
    {
369
18.0k
    case '6':
370
      /* Data record - read it and store it.  */
371
18.0k
      {
372
18.0k
  bfd_vma addr;
373
374
18.0k
  if (!getvalue (&src, &addr, src_end))
375
598
    return false;
376
377
158k
  while (*src && src < src_end - 1)
378
141k
    {
379
141k
      insert_byte (abfd, HEX (src), addr);
380
141k
      src += 2;
381
141k
      addr++;
382
141k
    }
383
17.4k
  return true;
384
18.0k
      }
385
386
77.6k
    case '3':
387
      /* Symbol record, read the segment.  */
388
77.6k
      if (!getsym (sym, &src, &len, src_end))
389
333
  return false;
390
77.2k
      section = bfd_get_section_by_name (abfd, sym);
391
77.2k
      if (section == NULL)
392
36.2k
  {
393
36.2k
    char *n = (char *) bfd_alloc (abfd, (bfd_size_type) len + 1);
394
395
36.2k
    if (!n)
396
0
      return false;
397
36.2k
    memcpy (n, sym, len + 1);
398
36.2k
    section = bfd_make_section (abfd, n);
399
36.2k
    if (section == NULL)
400
109
      return false;
401
36.2k
  }
402
77.1k
      alt_section = NULL;
403
287k
      while (src < src_end && *src)
404
215k
  {
405
215k
    switch (*src)
406
215k
      {
407
34.0k
      case '1':   /* Section range.  */
408
34.0k
        src++;
409
34.0k
        if (!getvalue (&src, &section->vma, src_end))
410
785
    return false;
411
33.2k
        if (!getvalue (&src, &val, src_end))
412
690
    return false;
413
32.5k
        if (val < section->vma)
414
17.6k
    val = section->vma;
415
32.5k
        section->size = val - section->vma;
416
        /* PR 17512: file: objdump-s-endless-loop.tekhex.
417
     Check for overlarge section sizes.  */
418
32.5k
        if (section->size & 0x80000000)
419
120
    return false;
420
32.4k
        section->flags = SEC_HAS_CONTENTS | SEC_LOAD | SEC_ALLOC;
421
32.4k
        break;
422
18.9k
      case '0':
423
24.1k
      case '2':
424
77.1k
      case '3':
425
105k
      case '4':
426
111k
      case '6':
427
125k
      case '7':
428
180k
      case '8':
429
        /* Symbols, add to section.  */
430
180k
        {
431
180k
    size_t amt = sizeof (tekhex_symbol_type);
432
180k
    tekhex_symbol_type *new_symbol = (tekhex_symbol_type *)
433
180k
        bfd_alloc (abfd, amt);
434
180k
    char stype = (*src);
435
436
180k
    if (!new_symbol)
437
0
      return false;
438
180k
    new_symbol->symbol.the_bfd = abfd;
439
180k
    src++;
440
180k
    abfd->symcount++;
441
180k
    abfd->flags |= HAS_SYMS;
442
180k
    new_symbol->prev = abfd->tdata.tekhex_data->symbols;
443
180k
    abfd->tdata.tekhex_data->symbols = new_symbol;
444
180k
    if (!getsym (sym, &src, &len, src_end))
445
694
      return false;
446
179k
    new_symbol->symbol.name = (const char *)
447
179k
        bfd_alloc (abfd, (bfd_size_type) len + 1);
448
179k
    if (!new_symbol->symbol.name)
449
0
      return false;
450
179k
    memcpy ((char *) (new_symbol->symbol.name), sym, len + 1);
451
179k
    new_symbol->symbol.section = section;
452
179k
    if (stype <= '4')
453
104k
      new_symbol->symbol.flags = (BSF_GLOBAL | BSF_EXPORT);
454
74.9k
    else
455
74.9k
      new_symbol->symbol.flags = BSF_LOCAL;
456
179k
    if (stype == '2' || stype == '6')
457
11.1k
      new_symbol->symbol.section = bfd_abs_section_ptr;
458
168k
    else if (stype == '3' || stype == '7')
459
67.4k
      {
460
67.4k
        if ((section->flags & SEC_DATA) == 0)
461
33.5k
          section->flags |= SEC_CODE;
462
33.9k
        else
463
33.9k
          {
464
33.9k
      if (alt_section == NULL)
465
24.2k
        alt_section
466
24.2k
          = bfd_get_next_section_by_name (NULL, section);
467
33.9k
      if (alt_section == NULL)
468
7.74k
        alt_section = bfd_make_section_anyway_with_flags
469
7.74k
          (abfd, section->name,
470
7.74k
           (section->flags & ~SEC_DATA) | SEC_CODE);
471
33.9k
      if (alt_section == NULL)
472
0
        return false;
473
33.9k
      new_symbol->symbol.section = alt_section;
474
33.9k
          }
475
67.4k
      }
476
101k
    else if (stype == '4' || stype == '8')
477
82.3k
      {
478
82.3k
        if ((section->flags & SEC_CODE) == 0)
479
45.3k
          section->flags |= SEC_DATA;
480
37.0k
        else
481
37.0k
          {
482
37.0k
      if (alt_section == NULL)
483
20.5k
        alt_section
484
20.5k
          = bfd_get_next_section_by_name (NULL, section);
485
37.0k
      if (alt_section == NULL)
486
11.8k
        alt_section = bfd_make_section_anyway_with_flags
487
11.8k
          (abfd, section->name,
488
11.8k
           (section->flags & ~SEC_CODE) | SEC_DATA);
489
37.0k
      if (alt_section == NULL)
490
0
        return false;
491
37.0k
      new_symbol->symbol.section = alt_section;
492
37.0k
          }
493
82.3k
      }
494
179k
    if (!getvalue (&src, &val, src_end))
495
1.69k
      return false;
496
178k
    new_symbol->symbol.value = val - section->vma;
497
178k
    break;
498
179k
        }
499
490
      default:
500
490
        return false;
501
215k
      }
502
215k
  }
503
135k
    }
504
505
112k
  return true;
506
135k
}
507
508
/* Pass over a tekhex, calling one of the above functions on each
509
   record.  */
510
511
static bool
512
pass_over (bfd *abfd, bool (*func) (bfd *, int, char *, char *))
513
28.1k
{
514
28.1k
  unsigned int chars_on_line;
515
28.1k
  bool is_eof = false;
516
517
  /* To the front of the file.  */
518
28.1k
  if (bfd_seek (abfd, 0, SEEK_SET) != 0)
519
0
    return false;
520
521
157k
  while (! is_eof)
522
157k
    {
523
157k
      char src[MAXCHUNK];
524
157k
      char type;
525
526
      /* Find first '%'.  */
527
157k
      is_eof = bfd_read (src, 1, abfd) != 1;
528
11.6M
      while (!is_eof && *src != '%')
529
11.5M
  is_eof = bfd_read (src, 1, abfd) != 1;
530
531
157k
      if (is_eof)
532
17.6k
  break;
533
534
      /* Fetch the type and the length and the checksum.  */
535
140k
      if (bfd_read (src, 5, abfd) != 5)
536
260
  return false;
537
538
139k
      type = src[2];
539
540
139k
      if (!ISHEX (src[0]) || !ISHEX (src[1]))
541
3.98k
  break;
542
543
      /* Already read five chars.  */
544
135k
      chars_on_line = HEX (src) - 5;
545
546
135k
      if (chars_on_line >= MAXCHUNK)
547
225
  return false;
548
549
135k
      if (bfd_read (src, chars_on_line, abfd) != chars_on_line)
550
556
  return false;
551
552
      /* Put a null at the end.  */
553
135k
      src[chars_on_line] = 0;
554
135k
      if (!func (abfd, type, src, src + chars_on_line))
555
5.51k
  return false;
556
135k
    }
557
558
21.6k
  return true;
559
28.1k
}
560
561
static long
562
tekhex_canonicalize_symtab (bfd *abfd, asymbol **table)
563
137
{
564
137
  tekhex_symbol_type *p = abfd->tdata.tekhex_data->symbols;
565
137
  unsigned int c = bfd_get_symcount (abfd);
566
567
137
  table[c] = 0;
568
6.62k
  while (p)
569
6.48k
    {
570
6.48k
      table[--c] = &(p->symbol);
571
6.48k
      p = p->prev;
572
6.48k
    }
573
574
137
  return bfd_get_symcount (abfd);
575
137
}
576
577
static long
578
tekhex_get_symtab_upper_bound (bfd *abfd)
579
137
{
580
137
  return (abfd->symcount + 1) * (sizeof (struct tekhex_asymbol_struct *));
581
582
137
}
583
584
static bool
585
tekhex_mkobject (bfd *abfd)
586
28.2k
{
587
28.2k
  tdata_type *tdata;
588
589
28.2k
  tdata = (tdata_type *) bfd_alloc (abfd, (bfd_size_type) sizeof (tdata_type));
590
28.2k
  if (!tdata)
591
0
    return false;
592
28.2k
  abfd->tdata.tekhex_data = tdata;
593
28.2k
  tdata->type = 1;
594
28.2k
  tdata->head =  NULL;
595
28.2k
  tdata->symbols = NULL;
596
28.2k
  tdata->data = NULL;
597
28.2k
  return true;
598
28.2k
}
599
600
/* Return TRUE if the file looks like it's in TekHex format. Just look
601
   for a percent sign and some hex digits.  */
602
603
static bfd_cleanup
604
tekhex_object_p (bfd *abfd)
605
1.65M
{
606
1.65M
  char b[4];
607
608
1.65M
  tekhex_init ();
609
610
1.65M
  if (bfd_seek (abfd, 0, SEEK_SET) != 0
611
1.65M
      || bfd_read (b, 4, abfd) != 4)
612
2.36k
    return NULL;
613
614
1.65M
  if (b[0] != '%' || !ISHEX (b[1]) || !ISHEX (b[2]) || !ISHEX (b[3]))
615
1.62M
    return NULL;
616
617
28.1k
  tekhex_mkobject (abfd);
618
619
28.1k
  if (!pass_over (abfd, first_phase))
620
6.55k
    return NULL;
621
622
21.6k
  return _bfd_no_cleanup;
623
28.1k
}
624
625
static void
626
move_section_contents (bfd *abfd,
627
           asection *section,
628
           const void * locationp,
629
           file_ptr offset,
630
           bfd_size_type count,
631
           bool get)
632
31
{
633
31
  bfd_vma addr;
634
31
  char *location = (char *) locationp;
635
31
  bfd_vma prev_number = 1;  /* Nothing can have this as a high bit.  */
636
31
  struct data_struct *d = NULL;
637
638
31
  BFD_ASSERT (offset == 0);
639
3.78k
  for (addr = section->vma; count != 0; count--, addr++)
640
3.75k
    {
641
      /* Get high bits of address.  */
642
3.75k
      bfd_vma chunk_number = addr & ~(bfd_vma) CHUNK_MASK;
643
3.75k
      bfd_vma low_bits = addr & CHUNK_MASK;
644
3.75k
      bool must_write = !get && *location != 0;
645
646
3.75k
      if (chunk_number != prev_number || (!d && must_write))
647
31
  {
648
    /* Different chunk, so move pointer. */
649
31
    d = find_chunk (abfd, chunk_number, must_write);
650
31
    prev_number = chunk_number;
651
31
  }
652
653
3.75k
      if (get)
654
2.95k
  {
655
2.95k
    if (d)
656
1.73k
      *location = d->chunk_data[low_bits];
657
1.22k
    else
658
1.22k
      *location = 0;
659
2.95k
  }
660
800
      else if (must_write)
661
0
  {
662
0
    d->chunk_data[low_bits] = *location;
663
0
    d->chunk_init[low_bits / CHUNK_SPAN] = 1;
664
0
  }
665
666
3.75k
      location++;
667
3.75k
    }
668
31
}
669
670
static bool
671
tekhex_get_section_contents (bfd *abfd,
672
           asection *section,
673
           void * locationp,
674
           file_ptr offset,
675
           bfd_size_type count)
676
30
{
677
30
  if (section->flags & (SEC_LOAD | SEC_ALLOC))
678
30
    {
679
30
      move_section_contents (abfd, section, locationp, offset, count, true);
680
30
      return true;
681
30
    }
682
683
0
  return false;
684
30
}
685
686
static bool
687
tekhex_set_arch_mach (bfd *abfd,
688
          enum bfd_architecture arch,
689
          unsigned long machine)
690
4
{
691
  /* Ignore errors about unknown architecture.  */
692
4
  return (bfd_default_set_arch_mach (abfd, arch, machine)
693
4
    || arch == bfd_arch_unknown);
694
4
}
695
696
/* We have to save up all the Tekhexords for a splurge before output.  */
697
698
static bool
699
tekhex_set_section_contents (bfd *abfd,
700
           sec_ptr section,
701
           const void * locationp,
702
           file_ptr offset,
703
           bfd_size_type bytes_to_do)
704
1
{
705
1
  if (section->flags & (SEC_LOAD | SEC_ALLOC))
706
1
    {
707
1
      move_section_contents (abfd, section, locationp, offset, bytes_to_do,
708
1
           false);
709
1
      return true;
710
1
    }
711
712
0
  return false;
713
1
}
714
715
static void
716
writevalue (char **dst, bfd_vma value)
717
918
{
718
918
  char *p = *dst;
719
918
  int len;
720
918
  int shift;
721
722
5.30k
  for (len = 8, shift = 28; shift; shift -= 4, len--)
723
5.27k
    {
724
5.27k
      if ((value >> shift) & 0xf)
725
886
  {
726
886
    *p++ = len + '0';
727
3.80k
    while (len)
728
2.92k
      {
729
2.92k
        *p++ = digs[(value >> shift) & 0xf];
730
2.92k
        shift -= 4;
731
2.92k
        len--;
732
2.92k
      }
733
886
    *dst = p;
734
886
    return;
735
736
886
  }
737
5.27k
    }
738
32
  *p++ = '1';
739
32
  *p++ = '0';
740
32
  *dst = p;
741
32
}
742
743
static void
744
writesym (char **dst, const char *sym)
745
1.78k
{
746
1.78k
  char *p = *dst;
747
1.78k
  int len = (sym ? strlen (sym) : 0);
748
749
1.78k
  if (len >= 16)
750
4
    {
751
4
      *p++ = '0';
752
4
      len = 16;
753
4
    }
754
1.77k
  else
755
1.77k
    {
756
1.77k
      if (len == 0)
757
199
  {
758
199
    *p++ = '1';
759
199
    sym = "$";
760
199
    len = 1;
761
199
  }
762
1.57k
      else
763
1.57k
  *p++ = digs[len];
764
1.77k
    }
765
766
11.6k
  while (len--)
767
9.89k
    *p++ = *sym++;
768
769
1.78k
  *dst = p;
770
1.78k
}
771
772
static void
773
out (bfd *abfd, int type, char *start, char *end)
774
900
{
775
900
  int sum = 0;
776
900
  char *s;
777
900
  char front[6];
778
900
  bfd_size_type wrlen;
779
780
900
  front[0] = '%';
781
900
  TOHEX (front + 1, end - start + 5);
782
900
  front[3] = type;
783
784
17.3k
  for (s = start; s < end; s++)
785
16.4k
    sum += sum_block[(unsigned char) *s];
786
787
900
  sum += sum_block[(unsigned char) front[1]]; /* Length.  */
788
900
  sum += sum_block[(unsigned char) front[2]];
789
900
  sum += sum_block[(unsigned char) front[3]]; /* Type.  */
790
900
  TOHEX (front + 4, sum);
791
900
  if (bfd_write (front, 6, abfd) != 6)
792
0
    abort ();
793
900
  end[0] = '\n';
794
900
  wrlen = end - start + 1;
795
900
  if (bfd_write (start, wrlen, abfd) != wrlen)
796
0
    abort ();
797
900
}
798
799
static bool
800
tekhex_write_object_contents (bfd *abfd)
801
4
{
802
4
  char buffer[100];
803
4
  asymbol **p;
804
4
  asection *s;
805
4
  struct data_struct *d;
806
807
4
  tekhex_init ();
808
809
  /* And the raw data.  */
810
4
  for (d = abfd->tdata.tekhex_data->data;
811
4
       d != NULL;
812
4
       d = d->next)
813
0
    {
814
0
      int low;
815
0
      int addr;
816
817
      /* Write it in blocks of 32 bytes.  */
818
0
      for (addr = 0; addr < CHUNK_MASK + 1; addr += CHUNK_SPAN)
819
0
  {
820
0
    if (d->chunk_init[addr / CHUNK_SPAN])
821
0
      {
822
0
        char *dst = buffer;
823
824
0
        writevalue (&dst, addr + d->vma);
825
0
        for (low = 0; low < CHUNK_SPAN; low++)
826
0
    {
827
0
      TOHEX (dst, d->chunk_data[addr + low]);
828
0
      dst += 2;
829
0
    }
830
0
        out (abfd, '6', buffer, dst);
831
0
      }
832
0
  }
833
0
    }
834
835
  /* Write all the section headers for the sections.  */
836
22
  for (s = abfd->sections; s != NULL; s = s->next)
837
18
    {
838
18
      char *dst = buffer;
839
840
18
      writesym (&dst, s->name);
841
18
      *dst++ = '1';
842
18
      writevalue (&dst, s->vma);
843
18
      writevalue (&dst, s->vma + s->size);
844
18
      out (abfd, '3', buffer, dst);
845
18
    }
846
847
  /* And the symbols.  */
848
4
  if (abfd->outsymbols)
849
4
    {
850
886
      for (p = abfd->outsymbols; *p; p++)
851
882
  {
852
882
    int section_code = bfd_decode_symclass (*p);
853
854
882
    if (section_code != '?')
855
882
      {
856
        /* Do not include debug symbols.  */
857
882
        asymbol *sym = *p;
858
882
        char *dst = buffer;
859
860
882
        writesym (&dst, sym->section->name);
861
862
882
        switch (section_code)
863
882
    {
864
0
    case 'A':
865
0
      *dst++ = '2';
866
0
      break;
867
0
    case 'a':
868
0
      *dst++ = '6';
869
0
      break;
870
184
    case 'D':
871
184
    case 'B':
872
184
    case 'O':
873
184
      *dst++ = '4';
874
184
      break;
875
145
    case 'd':
876
145
    case 'b':
877
145
    case 'o':
878
145
      *dst++ = '8';
879
145
      break;
880
553
    case 'T':
881
553
      *dst++ = '3';
882
553
      break;
883
0
    case 't':
884
0
      *dst++ = '7';
885
0
      break;
886
0
    case 'C':
887
0
    case 'U':
888
0
      bfd_set_error (bfd_error_wrong_format);
889
0
      return false;
890
882
    }
891
892
882
        writesym (&dst, sym->name);
893
882
        writevalue (&dst, sym->value + sym->section->vma);
894
882
        out (abfd, '3', buffer, dst);
895
882
      }
896
882
  }
897
4
    }
898
899
  /* And the terminator.  */
900
4
  if (bfd_write ("%0781010\n", 9, abfd) != 9)
901
0
    abort ();
902
4
  return true;
903
4
}
904
905
static int
906
tekhex_sizeof_headers (bfd *abfd ATTRIBUTE_UNUSED,
907
           struct bfd_link_info *info ATTRIBUTE_UNUSED)
908
0
{
909
0
  return 0;
910
0
}
911
912
static asymbol *
913
tekhex_make_empty_symbol (bfd *abfd)
914
55.8k
{
915
55.8k
  size_t amt = sizeof (struct tekhex_symbol_struct);
916
55.8k
  tekhex_symbol_type *new_symbol = (tekhex_symbol_type *) bfd_zalloc (abfd,
917
55.8k
                      amt);
918
919
55.8k
  if (!new_symbol)
920
0
    return NULL;
921
55.8k
  new_symbol->symbol.the_bfd = abfd;
922
55.8k
  new_symbol->prev =  NULL;
923
55.8k
  return &(new_symbol->symbol);
924
55.8k
}
925
926
static void
927
tekhex_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
928
      asymbol *symbol,
929
      symbol_info *ret)
930
1.55k
{
931
1.55k
  bfd_symbol_info (symbol, ret);
932
1.55k
}
933
934
static void
935
tekhex_print_symbol (bfd *abfd,
936
         void * filep,
937
         asymbol *symbol,
938
         bfd_print_symbol_type how)
939
0
{
940
0
  FILE *file = (FILE *) filep;
941
942
0
  switch (how)
943
0
    {
944
0
    case bfd_print_symbol_name:
945
0
      fprintf (file, "%s", symbol->name);
946
0
      break;
947
0
    case bfd_print_symbol_more:
948
0
      break;
949
950
0
    case bfd_print_symbol_all:
951
0
      {
952
0
  const char *section_name = symbol->section->name;
953
954
0
  bfd_print_symbol_vandf (abfd, (void *) file, symbol);
955
956
0
  fprintf (file, " %-5s %s",
957
0
     section_name, symbol->name);
958
0
      }
959
0
    }
960
0
}
961
962
#define tekhex_close_and_cleanup        _bfd_generic_close_and_cleanup
963
#define tekhex_bfd_free_cached_info       _bfd_generic_bfd_free_cached_info
964
#define tekhex_new_section_hook         _bfd_generic_new_section_hook
965
#define tekhex_bfd_is_target_special_symbol     _bfd_bool_bfd_asymbol_false
966
#define tekhex_bfd_is_local_label_name         bfd_generic_is_local_label_name
967
#define tekhex_get_lineno         _bfd_nosymbols_get_lineno
968
#define tekhex_find_nearest_line        _bfd_nosymbols_find_nearest_line
969
#define tekhex_find_nearest_line_with_alt     _bfd_nosymbols_find_nearest_line_with_alt
970
#define tekhex_find_line          _bfd_nosymbols_find_line
971
#define tekhex_find_inliner_info        _bfd_nosymbols_find_inliner_info
972
#define tekhex_get_symbol_version_string      _bfd_nosymbols_get_symbol_version_string
973
#define tekhex_bfd_make_debug_symbol        _bfd_nosymbols_bfd_make_debug_symbol
974
#define tekhex_read_minisymbols         _bfd_generic_read_minisymbols
975
#define tekhex_minisymbol_to_symbol       _bfd_generic_minisymbol_to_symbol
976
#define tekhex_bfd_get_relocated_section_contents   bfd_generic_get_relocated_section_contents
977
#define tekhex_bfd_relax_section        bfd_generic_relax_section
978
#define tekhex_bfd_gc_sections          bfd_generic_gc_sections
979
#define tekhex_bfd_lookup_section_flags       bfd_generic_lookup_section_flags
980
#define tekhex_bfd_merge_sections       bfd_generic_merge_sections
981
#define tekhex_bfd_is_group_section       bfd_generic_is_group_section
982
#define tekhex_bfd_group_name         bfd_generic_group_name
983
#define tekhex_bfd_discard_group        bfd_generic_discard_group
984
#define tekhex_section_already_linked       _bfd_generic_section_already_linked
985
#define tekhex_bfd_define_common_symbol       bfd_generic_define_common_symbol
986
#define tekhex_bfd_link_hide_symbol       _bfd_generic_link_hide_symbol
987
#define tekhex_bfd_define_start_stop        bfd_generic_define_start_stop
988
#define tekhex_bfd_link_hash_table_create     _bfd_generic_link_hash_table_create
989
#define tekhex_bfd_link_add_symbols       _bfd_generic_link_add_symbols
990
#define tekhex_bfd_link_just_syms       _bfd_generic_link_just_syms
991
#define tekhex_bfd_copy_link_hash_symbol_type     _bfd_generic_copy_link_hash_symbol_type
992
#define tekhex_bfd_final_link         _bfd_generic_final_link
993
#define tekhex_bfd_link_split_section       _bfd_generic_link_split_section
994
#define tekhex_get_section_contents_in_window     _bfd_generic_get_section_contents_in_window
995
#define tekhex_bfd_link_check_relocs        _bfd_generic_link_check_relocs
996
997
const bfd_target tekhex_vec =
998
{
999
  "tekhex",     /* Name.  */
1000
  bfd_target_tekhex_flavour,
1001
  BFD_ENDIAN_UNKNOWN,   /* Target byte order.  */
1002
  BFD_ENDIAN_UNKNOWN,   /* Target headers byte order.  */
1003
  (EXEC_P |     /* Object flags.  */
1004
   HAS_SYMS | HAS_LINENO | HAS_DEBUG |
1005
   HAS_RELOC | HAS_LOCALS | WP_TEXT | D_PAGED),
1006
  (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
1007
   | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags.  */
1008
  0,        /* Leading underscore.  */
1009
  ' ',        /* AR_pad_char.  */
1010
  16,       /* AR_max_namelen.  */
1011
  0,        /* match priority.  */
1012
  TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols.  */
1013
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1014
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1015
  bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Data.  */
1016
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1017
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1018
  bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Headers.  */
1019
1020
  {
1021
    _bfd_dummy_target,
1022
    tekhex_object_p,    /* bfd_check_format.  */
1023
    _bfd_dummy_target,
1024
    _bfd_dummy_target,
1025
  },
1026
  {
1027
    _bfd_bool_bfd_false_error,
1028
    tekhex_mkobject,
1029
    _bfd_generic_mkarchive,
1030
    _bfd_bool_bfd_false_error,
1031
  },
1032
  {       /* bfd_write_contents.  */
1033
    _bfd_bool_bfd_false_error,
1034
    tekhex_write_object_contents,
1035
    _bfd_write_archive_contents,
1036
    _bfd_bool_bfd_false_error,
1037
  },
1038
1039
  BFD_JUMP_TABLE_GENERIC (tekhex),
1040
  BFD_JUMP_TABLE_COPY (_bfd_generic),
1041
  BFD_JUMP_TABLE_CORE (_bfd_nocore),
1042
  BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
1043
  BFD_JUMP_TABLE_SYMBOLS (tekhex),
1044
  BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
1045
  BFD_JUMP_TABLE_WRITE (tekhex),
1046
  BFD_JUMP_TABLE_LINK (tekhex),
1047
  BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
1048
1049
  NULL,
1050
1051
  NULL
1052
};