merge from gcc
[gdb/gnu.git] / bfd / m68klinux.c
blobf612782ac092a709a77762024a92af3ee3fbb723
1 /* BFD back-end for linux flavored m68k a.out binaries.
2 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012
4 Free Software Foundation, Inc.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
23 #define TARGET_PAGE_SIZE 4096
24 #define ZMAGIC_DISK_BLOCK_SIZE 1024
25 #define SEGMENT_SIZE TARGET_PAGE_SIZE
26 #define TEXT_START_ADDR 0x0
28 #define MACHTYPE_OK(mtype) ((mtype) == M_68020 || (mtype) == M_UNKNOWN)
30 #include "sysdep.h"
31 #include "bfd.h"
32 #include "libbfd.h"
33 #include "aout/aout64.h"
34 #include "aout/stab_gnu.h"
35 #include "aout/ar.h"
36 #include "libaout.h" /* BFD a.out internal data structures */
38 #define TARGET_IS_BIG_ENDIAN_P
39 #define DEFAULT_ARCH bfd_arch_m68k
41 /* Do not "beautify" the CONCAT* macro args. Traditional C will not
42 remove whitespace added here, and thus will fail to concatenate
43 the tokens. */
44 #define MY(OP) CONCAT2 (m68klinux_,OP)
45 #define TARGETNAME "a.out-m68k-linux"
47 extern const bfd_target MY(vec);
49 /* We always generate QMAGIC files in preference to ZMAGIC files. It
50 would be possible to make this a linker option, if that ever
51 becomes important. */
53 static void MY_final_link_callback
54 (bfd *, file_ptr *, file_ptr *, file_ptr *);
56 static bfd_boolean
57 m68klinux_bfd_final_link (bfd *abfd,
58 struct bfd_link_info *info)
60 obj_aout_subformat (abfd) = q_magic_format;
61 return NAME(aout,final_link) (abfd, info, MY_final_link_callback);
64 #define MY_bfd_final_link m68klinux_bfd_final_link
66 /* Set the machine type correctly. */
68 static bfd_boolean
69 m68klinux_write_object_contents (bfd *abfd)
71 struct external_exec exec_bytes;
72 struct internal_exec *execp = exec_hdr (abfd);
74 N_SET_MACHTYPE (*execp, M_68020);
76 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
78 WRITE_HEADERS(abfd, execp);
80 return TRUE;
83 #define MY_write_object_contents m68klinux_write_object_contents
85 /* Code to link against Linux a.out shared libraries. */
87 /* See if a symbol name is a reference to the global offset table. */
89 #ifndef GOT_REF_PREFIX
90 #define GOT_REF_PREFIX "__GOT_"
91 #endif
93 #define IS_GOT_SYM(name) (CONST_STRNEQ (name, GOT_REF_PREFIX))
95 /* See if a symbol name is a reference to the procedure linkage table. */
97 #ifndef PLT_REF_PREFIX
98 #define PLT_REF_PREFIX "__PLT_"
99 #endif
101 #define IS_PLT_SYM(name) (CONST_STRNEQ (name, PLT_REF_PREFIX))
103 /* This string is used to generate specialized error messages. */
105 #ifndef NEEDS_SHRLIB
106 #define NEEDS_SHRLIB "__NEEDS_SHRLIB_"
107 #endif
109 /* This special symbol is a set vector that contains a list of
110 pointers to fixup tables. It will be present in any dynamically
111 linked file. The linker generated fixup table should also be added
112 to the list, and it should always appear in the second slot (the
113 first one is a dummy with a magic number that is defined in
114 crt0.o). */
116 #ifndef SHARABLE_CONFLICTS
117 #define SHARABLE_CONFLICTS "__SHARABLE_CONFLICTS__"
118 #endif
120 /* We keep a list of fixups. The terminology is a bit strange, but
121 each fixup contains two 32 bit numbers. A regular fixup contains
122 an address and a pointer, and at runtime we should store the
123 address at the location pointed to by the pointer. A builtin fixup
124 contains two pointers, and we should read the address using one
125 pointer and store it at the location pointed to by the other
126 pointer. Builtin fixups come into play when we have duplicate
127 __GOT__ symbols for the same variable. The builtin fixup will copy
128 the GOT pointer from one over into the other. */
130 struct fixup
132 struct fixup *next;
133 struct linux_link_hash_entry *h;
134 bfd_vma value;
136 /* Nonzero if this is a jump instruction that needs to be fixed,
137 zero if this is just a pointer */
138 char jump;
140 char builtin;
143 /* We don't need a special hash table entry structure, but we do need
144 to keep some information between linker passes, so we use a special
145 hash table. */
147 struct linux_link_hash_entry
149 struct aout_link_hash_entry root;
152 struct linux_link_hash_table
154 struct aout_link_hash_table root;
156 /* First dynamic object found in link. */
157 bfd *dynobj;
159 /* Number of fixups. */
160 size_t fixup_count;
162 /* Number of builtin fixups. */
163 size_t local_builtins;
165 /* List of fixups. */
166 struct fixup *fixup_list;
169 /* Routine to create an entry in an Linux link hash table. */
171 static struct bfd_hash_entry *
172 linux_link_hash_newfunc (struct bfd_hash_entry *entry,
173 struct bfd_hash_table *table,
174 const char *string)
176 struct linux_link_hash_entry *ret = (struct linux_link_hash_entry *) entry;
178 /* Allocate the structure if it has not already been allocated by a
179 subclass. */
180 if (ret == (struct linux_link_hash_entry *) NULL)
181 ret = ((struct linux_link_hash_entry *)
182 bfd_hash_allocate (table, sizeof (struct linux_link_hash_entry)));
183 if (ret == NULL)
184 return (struct bfd_hash_entry *) ret;
186 /* Call the allocation method of the superclass. */
187 ret = ((struct linux_link_hash_entry *)
188 NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
189 table, string));
190 if (ret != NULL)
192 /* Set local fields; there aren't any. */
195 return (struct bfd_hash_entry *) ret;
198 /* Create a Linux link hash table. */
200 static struct bfd_link_hash_table *
201 linux_link_hash_table_create (bfd *abfd)
203 struct linux_link_hash_table *ret;
204 bfd_size_type amt = sizeof (struct linux_link_hash_table);
206 ret = (struct linux_link_hash_table *) bfd_zmalloc (amt);
207 if (ret == (struct linux_link_hash_table *) NULL)
209 bfd_set_error (bfd_error_no_memory);
210 return (struct bfd_link_hash_table *) NULL;
212 if (!NAME(aout,link_hash_table_init) (&ret->root, abfd,
213 linux_link_hash_newfunc,
214 sizeof (struct linux_link_hash_entry)))
216 free (ret);
217 return (struct bfd_link_hash_table *) NULL;
220 return &ret->root.root;
223 /* Look up an entry in a Linux link hash table. */
225 #define linux_link_hash_lookup(table, string, create, copy, follow) \
226 ((struct linux_link_hash_entry *) \
227 aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
228 (follow)))
230 /* Traverse a Linux link hash table. */
232 #define linux_link_hash_traverse(table, func, info) \
233 (aout_link_hash_traverse \
234 (&(table)->root, \
235 (bfd_boolean (*) (struct aout_link_hash_entry *, void *)) (func), \
236 (info)))
238 /* Get the Linux link hash table from the info structure. This is
239 just a cast. */
241 #define linux_hash_table(p) ((struct linux_link_hash_table *) ((p)->hash))
243 /* Store the information for a new fixup. */
245 static struct fixup *
246 new_fixup (struct bfd_link_info *info,
247 struct linux_link_hash_entry *h,
248 bfd_vma value,
249 int builtin)
251 struct fixup *f;
253 f = (struct fixup *) bfd_hash_allocate (&info->hash->table,
254 sizeof (struct fixup));
255 if (f == NULL)
256 return f;
257 f->next = linux_hash_table (info)->fixup_list;
258 linux_hash_table (info)->fixup_list = f;
259 f->h = h;
260 f->value = value;
261 f->builtin = builtin;
262 f->jump = 0;
263 ++linux_hash_table (info)->fixup_count;
264 return f;
267 /* We come here once we realize that we are going to link to a shared
268 library. We need to create a special section that contains the
269 fixup table, and we ultimately need to add a pointer to this into
270 the set vector for SHARABLE_CONFLICTS. At this point we do not
271 know the size of the section, but that's OK - we just need to
272 create it for now. */
274 static bfd_boolean
275 linux_link_create_dynamic_sections (bfd *abfd,
276 struct bfd_link_info *info ATTRIBUTE_UNUSED)
278 flagword flags;
279 asection *s;
281 /* Note that we set the SEC_IN_MEMORY flag. */
282 flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
284 /* We choose to use the name ".linux-dynamic" for the fixup table.
285 Why not? */
286 s = bfd_make_section_with_flags (abfd, ".linux-dynamic", flags);
287 if (s == NULL
288 || ! bfd_set_section_alignment (abfd, s, 2))
289 return FALSE;
290 s->size = 0;
291 s->contents = 0;
293 return TRUE;
296 /* Function to add a single symbol to the linker hash table. This is
297 a wrapper around _bfd_generic_link_add_one_symbol which handles the
298 tweaking needed for dynamic linking support. */
300 static bfd_boolean
301 linux_add_one_symbol (struct bfd_link_info *info,
302 bfd *abfd,
303 const char *name,
304 flagword flags,
305 asection *section,
306 bfd_vma value,
307 const char *string,
308 bfd_boolean copy,
309 bfd_boolean collect,
310 struct bfd_link_hash_entry **hashp)
312 struct linux_link_hash_entry *h;
313 bfd_boolean insert;
315 /* Look up and see if we already have this symbol in the hash table.
316 If we do, and the defining entry is from a shared library, we
317 need to create the dynamic sections.
319 FIXME: What if abfd->xvec != info->output_bfd->xvec? We may
320 want to be able to link Linux a.out and ELF objects together,
321 but serious confusion is possible. */
323 insert = FALSE;
325 if (! info->relocatable
326 && linux_hash_table (info)->dynobj == NULL
327 && strcmp (name, SHARABLE_CONFLICTS) == 0
328 && (flags & BSF_CONSTRUCTOR) != 0
329 && abfd->xvec == info->output_bfd->xvec)
331 if (! linux_link_create_dynamic_sections (abfd, info))
332 return FALSE;
333 linux_hash_table (info)->dynobj = abfd;
334 insert = TRUE;
337 if (bfd_is_abs_section (section)
338 && abfd->xvec == info->output_bfd->xvec)
340 h = linux_link_hash_lookup (linux_hash_table (info), name, FALSE,
341 FALSE, FALSE);
342 if (h != NULL
343 && (h->root.root.type == bfd_link_hash_defined
344 || h->root.root.type == bfd_link_hash_defweak))
346 struct fixup *f;
348 if (hashp != NULL)
349 *hashp = (struct bfd_link_hash_entry *) h;
351 f = new_fixup (info, h, value, ! IS_PLT_SYM (name));
352 if (f == NULL)
353 return FALSE;
354 f->jump = IS_PLT_SYM (name);
356 return TRUE;
360 /* Do the usual procedure for adding a symbol. */
361 if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
362 value, string, copy, collect,
363 hashp))
364 return FALSE;
366 /* Insert a pointer to our table in the set vector. The dynamic
367 linker requires this information */
368 if (insert)
370 asection *s;
372 /* Here we do our special thing to add the pointer to the
373 dynamic section in the SHARABLE_CONFLICTS set vector. */
374 s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
375 ".linux-dynamic");
376 BFD_ASSERT (s != NULL);
378 if (! (_bfd_generic_link_add_one_symbol
379 (info, linux_hash_table (info)->dynobj, SHARABLE_CONFLICTS,
380 BSF_GLOBAL | BSF_CONSTRUCTOR, s, (bfd_vma) 0, NULL,
381 FALSE, FALSE, NULL)))
382 return FALSE;
385 return TRUE;
388 /* We will crawl the hash table and come here for every global symbol.
389 We will examine each entry and see if there are indications that we
390 need to add a fixup. There are two possible cases - one is where
391 you have duplicate definitions of PLT or GOT symbols - these will
392 have already been caught and added as "builtin" fixups. If we find
393 that the corresponding non PLT/GOT symbol is also present, we
394 convert it to a regular fixup instead.
396 This function is called via linux_link_hash_traverse. */
398 static bfd_boolean
399 linux_tally_symbols (struct linux_link_hash_entry *h,
400 void * data)
402 struct bfd_link_info *info = (struct bfd_link_info *) data;
403 struct fixup *f, *f1;
404 int is_plt;
405 struct linux_link_hash_entry *h1, *h2;
406 bfd_boolean exists;
408 if (h->root.root.type == bfd_link_hash_undefined
409 && CONST_STRNEQ (h->root.root.root.string, NEEDS_SHRLIB))
411 const char *name;
412 char *p;
413 char *alloc = NULL;
415 name = h->root.root.root.string + sizeof NEEDS_SHRLIB - 1;
416 p = strrchr (name, '_');
417 if (p != NULL)
418 alloc = (char *) bfd_malloc ((bfd_size_type) strlen (name) + 1);
420 if (p == NULL || alloc == NULL)
421 (*_bfd_error_handler) (_("Output file requires shared library `%s'\n"),
422 name);
423 else
425 strcpy (alloc, name);
426 p = strrchr (alloc, '_');
427 *p++ = '\0';
428 (*_bfd_error_handler)
429 (_("Output file requires shared library `%s.so.%s'\n"),
430 alloc, p);
431 free (alloc);
434 abort ();
437 /* If this symbol is not a PLT/GOT, we do not even need to look at it */
438 is_plt = IS_PLT_SYM (h->root.root.root.string);
440 if (is_plt || IS_GOT_SYM (h->root.root.root.string))
442 /* Look up this symbol twice. Once just as a regular lookup,
443 and then again following all of the indirect links until we
444 reach a real symbol. */
445 h1 = linux_link_hash_lookup (linux_hash_table (info),
446 (h->root.root.root.string
447 + sizeof PLT_REF_PREFIX - 1),
448 FALSE, FALSE, TRUE);
449 /* h2 does not follow indirect symbols. */
450 h2 = linux_link_hash_lookup (linux_hash_table (info),
451 (h->root.root.root.string
452 + sizeof PLT_REF_PREFIX - 1),
453 FALSE, FALSE, FALSE);
455 /* The real symbol must exist but if it is also an ABS symbol,
456 there is no need to have a fixup. This is because they both
457 came from the same library. If on the other hand, we had to
458 use an indirect symbol to get to the real symbol, we add the
459 fixup anyway, since there are cases where these symbols come
460 from different shared libraries */
461 if (h1 != NULL
462 && (((h1->root.root.type == bfd_link_hash_defined
463 || h1->root.root.type == bfd_link_hash_defweak)
464 && ! bfd_is_abs_section (h1->root.root.u.def.section))
465 || h2->root.root.type == bfd_link_hash_indirect))
467 /* See if there is a "builtin" fixup already present
468 involving this symbol. If so, convert it to a regular
469 fixup. In the end, this relaxes some of the requirements
470 about the order of performing fixups. */
471 exists = FALSE;
472 for (f1 = linux_hash_table (info)->fixup_list;
473 f1 != NULL;
474 f1 = f1->next)
476 if ((f1->h != h && f1->h != h1)
477 || (! f1->builtin && ! f1->jump))
478 continue;
479 if (f1->h == h1)
480 exists = TRUE;
481 if (! exists
482 && bfd_is_abs_section (h->root.root.u.def.section))
484 f = new_fixup (info, h1, f1->h->root.root.u.def.value, 0);
485 f->jump = is_plt;
487 f1->h = h1;
488 f1->jump = is_plt;
489 f1->builtin = 0;
490 exists = TRUE;
492 if (! exists
493 && bfd_is_abs_section (h->root.root.u.def.section))
495 f = new_fixup (info, h1, h->root.root.u.def.value, 0);
496 if (f == NULL)
498 /* FIXME: No way to return error. */
499 abort ();
501 f->jump = is_plt;
505 /* Quick and dirty way of stripping these symbols from the
506 symtab. */
507 if (bfd_is_abs_section (h->root.root.u.def.section))
508 h->root.written = TRUE;
511 return TRUE;
514 /* This is called to set the size of the .linux-dynamic section is.
515 It is called by the Linux linker emulation before_allocation
516 routine. We have finished reading all of the input files, and now
517 we just scan the hash tables to find out how many additional fixups
518 are required. */
520 bfd_boolean
521 bfd_m68klinux_size_dynamic_sections (bfd *output_bfd,
522 struct bfd_link_info *info)
524 struct fixup *f;
525 asection *s;
527 if (output_bfd->xvec != &MY(vec))
528 return TRUE;
530 /* First find the fixups... */
531 linux_link_hash_traverse (linux_hash_table (info),
532 linux_tally_symbols,
533 info);
535 /* If there are builtin fixups, leave room for a marker. This is
536 used by the dynamic linker so that it knows that all that follow
537 are builtin fixups instead of regular fixups. */
538 for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
540 if (f->builtin)
542 ++linux_hash_table (info)->fixup_count;
543 ++linux_hash_table (info)->local_builtins;
544 break;
548 if (linux_hash_table (info)->dynobj == NULL)
550 if (linux_hash_table (info)->fixup_count > 0)
551 abort ();
552 return TRUE;
555 /* Allocate memory for our fixup table. We will fill it in later. */
556 s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
557 ".linux-dynamic");
558 if (s != NULL)
560 s->size = linux_hash_table (info)->fixup_count + 1;
561 s->size *= 8;
562 s->contents = (bfd_byte *) bfd_zalloc (output_bfd, s->size);
563 if (s->contents == NULL)
565 bfd_set_error (bfd_error_no_memory);
566 return FALSE;
570 return TRUE;
573 /* We come here once we are ready to actually write the fixup table to
574 the output file. Scan the fixup tables and so forth and generate
575 the stuff we need. */
577 static bfd_boolean
578 linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
580 asection *s, *os, *is;
581 bfd_byte *fixup_table;
582 struct linux_link_hash_entry *h;
583 struct fixup *f;
584 unsigned int new_addr;
585 int section_offset;
586 unsigned int fixups_written;
588 if (linux_hash_table (info)->dynobj == NULL)
589 return TRUE;
591 s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
592 ".linux-dynamic");
593 BFD_ASSERT (s != NULL);
594 os = s->output_section;
595 fixups_written = 0;
597 #ifdef LINUX_LINK_DEBUG
598 printf ("Fixup table file offset: %x VMA: %x\n",
599 os->filepos + s->output_offset,
600 os->vma + s->output_offset);
601 #endif
603 fixup_table = s->contents;
604 bfd_put_32 (output_bfd, (bfd_vma) linux_hash_table (info)->fixup_count,
605 fixup_table);
606 fixup_table += 4;
608 /* Fill in fixup table. */
609 for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
611 if (f->builtin)
612 continue;
614 if (f->h->root.root.type != bfd_link_hash_defined
615 && f->h->root.root.type != bfd_link_hash_defweak)
617 (*_bfd_error_handler)
618 (_("Symbol %s not defined for fixups\n"),
619 f->h->root.root.root.string);
620 continue;
623 is = f->h->root.root.u.def.section;
624 section_offset = is->output_section->vma + is->output_offset;
625 new_addr = f->h->root.root.u.def.value + section_offset;
627 #ifdef LINUX_LINK_DEBUG
628 printf ("Fixup(%d) %s: %x %x\n",f->jump, f->h->root.root.string,
629 new_addr, f->value);
630 #endif
632 if (f->jump)
634 bfd_put_32 (output_bfd, (bfd_vma) new_addr, fixup_table);
635 fixup_table += 4;
636 bfd_put_32 (output_bfd, f->value + 2, fixup_table);
637 fixup_table += 4;
639 else
641 bfd_put_32 (output_bfd, (bfd_vma) new_addr, fixup_table);
642 fixup_table += 4;
643 bfd_put_32 (output_bfd, f->value, fixup_table);
644 fixup_table += 4;
646 ++fixups_written;
649 if (linux_hash_table (info)->local_builtins != 0)
651 /* Special marker so we know to switch to the other type of fixup */
652 bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
653 fixup_table += 4;
654 bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
655 fixup_table += 4;
656 ++fixups_written;
657 for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
659 if (! f->builtin)
660 continue;
662 if (f->h->root.root.type != bfd_link_hash_defined
663 && f->h->root.root.type != bfd_link_hash_defweak)
665 (*_bfd_error_handler)
666 (_("Symbol %s not defined for fixups\n"),
667 f->h->root.root.root.string);
668 continue;
671 is = f->h->root.root.u.def.section;
672 section_offset = is->output_section->vma + is->output_offset;
673 new_addr = f->h->root.root.u.def.value + section_offset;
675 #ifdef LINUX_LINK_DEBUG
676 printf ("Fixup(B) %s: %x %x\n", f->h->root.root.string,
677 new_addr, f->value);
678 #endif
680 bfd_put_32 (output_bfd, (bfd_vma) new_addr, fixup_table);
681 fixup_table += 4;
682 bfd_put_32 (output_bfd, f->value, fixup_table);
683 fixup_table += 4;
684 ++fixups_written;
688 if (linux_hash_table (info)->fixup_count != fixups_written)
690 (*_bfd_error_handler) (_("Warning: fixup count mismatch\n"));
691 while (linux_hash_table (info)->fixup_count > fixups_written)
693 bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
694 fixup_table += 4;
695 bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
696 fixup_table += 4;
697 ++fixups_written;
701 h = linux_link_hash_lookup (linux_hash_table (info),
702 "__BUILTIN_FIXUPS__",
703 FALSE, FALSE, FALSE);
705 if (h != NULL
706 && (h->root.root.type == bfd_link_hash_defined
707 || h->root.root.type == bfd_link_hash_defweak))
709 is = h->root.root.u.def.section;
710 section_offset = is->output_section->vma + is->output_offset;
711 new_addr = h->root.root.u.def.value + section_offset;
713 #ifdef LINUX_LINK_DEBUG
714 printf ("Builtin fixup table at %x\n", new_addr);
715 #endif
717 bfd_put_32 (output_bfd, (bfd_vma) new_addr, fixup_table);
719 else
720 bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
722 if (bfd_seek (output_bfd, (file_ptr) (os->filepos + s->output_offset),
723 SEEK_SET) != 0)
724 return FALSE;
726 if (bfd_bwrite (s->contents, s->size, output_bfd) != s->size)
727 return FALSE;
729 return TRUE;
732 #define MY_bfd_link_hash_table_create linux_link_hash_table_create
733 #define MY_add_one_symbol linux_add_one_symbol
734 #define MY_finish_dynamic_link linux_finish_dynamic_link
736 #define MY_zmagic_contiguous 1
738 #include "aout-target.h"