aout-adobe.c

来自「基于4个mips核的noc设计」· C语言 代码 · 共 563 行 · 第 1/2 页

C
563
字号
/* BFD back-end for a.out.adobe binaries.   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000   Free Software Foundation, Inc.   Written by Cygnus Support.  Based on bout.c.This file is part of BFD, the Binary File Descriptor library.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */#include "bfd.h"#include "sysdep.h"#include "libbfd.h"#include "aout/adobe.h"#include "aout/stab_gnu.h"#include "libaout.h"		/* BFD a.out internal data structures *//* Forward decl.  */extern const bfd_target a_out_adobe_vec;static const bfd_target *aout_adobe_callback PARAMS ((bfd *));extern boolean aout_32_slurp_symbol_table PARAMS ((bfd *abfd));extern boolean aout_32_write_syms PARAMS ((bfd *));static void aout_adobe_write_section PARAMS ((bfd *abfd, sec_ptr sect));/* Swaps the information in an executable header taken from a raw byte   stream memory image, into the internal exec_header structure.  */void aout_adobe_swap_exec_header_in  PARAMS ((bfd *abfd, struct external_exec *raw_bytes,	   struct internal_exec *execp));voidaout_adobe_swap_exec_header_in (abfd, raw_bytes, execp)     bfd *abfd;     struct external_exec *raw_bytes;     struct internal_exec *execp;{  struct external_exec *bytes = (struct external_exec *) raw_bytes;  /* Now fill in fields in the execp, from the bytes in the raw data.  */  execp->a_info   = bfd_h_get_32 (abfd, bytes->e_info);  execp->a_text   = GET_WORD (abfd, bytes->e_text);  execp->a_data   = GET_WORD (abfd, bytes->e_data);  execp->a_bss    = GET_WORD (abfd, bytes->e_bss);  execp->a_syms   = GET_WORD (abfd, bytes->e_syms);  execp->a_entry  = GET_WORD (abfd, bytes->e_entry);  execp->a_trsize = GET_WORD (abfd, bytes->e_trsize);  execp->a_drsize = GET_WORD (abfd, bytes->e_drsize);}/* Swaps the information in an internal exec header structure into the   supplied buffer ready for writing to disk.  */PROTO(void, aout_adobe_swap_exec_header_out,	  (bfd *abfd,	   struct internal_exec *execp,	   struct external_exec *raw_bytes));voidaout_adobe_swap_exec_header_out (abfd, execp, raw_bytes)     bfd *abfd;     struct internal_exec *execp;     struct external_exec *raw_bytes;{  struct external_exec *bytes = (struct external_exec *) raw_bytes;  /* Now fill in fields in the raw data, from the fields in the exec     struct.  */  bfd_h_put_32 (abfd, execp->a_info  , bytes->e_info);  PUT_WORD (abfd, execp->a_text  , bytes->e_text);  PUT_WORD (abfd, execp->a_data  , bytes->e_data);  PUT_WORD (abfd, execp->a_bss   , bytes->e_bss);  PUT_WORD (abfd, execp->a_syms  , bytes->e_syms);  PUT_WORD (abfd, execp->a_entry , bytes->e_entry);  PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize);  PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize);}static const bfd_target *aout_adobe_object_p (abfd)     bfd *abfd;{  struct internal_exec anexec;  struct external_exec exec_bytes;  char *targ;  if (bfd_read ((PTR) &exec_bytes, 1, EXEC_BYTES_SIZE, abfd)      != EXEC_BYTES_SIZE)    {      if (bfd_get_error () != bfd_error_system_call)	bfd_set_error (bfd_error_wrong_format);      return 0;    }  anexec.a_info = bfd_h_get_32 (abfd, exec_bytes.e_info);  /* Normally we just compare for the magic number.     However, a bunch of Adobe tools aren't fixed up yet; they generate     files using ZMAGIC(!).     If the environment variable GNUTARGET is set to "a.out.adobe", we will     take just about any a.out file as an Adobe a.out file.  FIXME!  */  if (N_BADMAG (anexec))    {      targ = getenv ("GNUTARGET");      if (targ && !strcmp (targ, a_out_adobe_vec.name))	/* Just continue anyway, if specifically set to this format.  */	;      else	{	  bfd_set_error (bfd_error_wrong_format);	  return 0;	}    }  aout_adobe_swap_exec_header_in (abfd, &exec_bytes, &anexec);  return aout_32_some_aout_object_p (abfd, &anexec, aout_adobe_callback);}/* Finish up the opening of a b.out file for reading.  Fill in all the   fields that are not handled by common code.  */static const bfd_target *aout_adobe_callback (abfd)     bfd *abfd;{  struct internal_exec *execp = exec_hdr (abfd);  asection *sect;  struct external_segdesc ext[1];  char *section_name;  char try_again[30];	/* name and number */  char *newname;  int trynum;  flagword flags;  /* Architecture and machine type -- unknown in this format.  */  bfd_set_arch_mach (abfd, bfd_arch_unknown, 0);  /* The positions of the string table and symbol table.  */  obj_str_filepos (abfd) = N_STROFF (*execp);  obj_sym_filepos (abfd) = N_SYMOFF (*execp);  /* Suck up the section information from the file, one section at a time.  */  for (;;)    {      if (bfd_read ((PTR) ext, 1, sizeof (*ext), abfd) != sizeof (*ext))	{	  if (bfd_get_error () != bfd_error_system_call)	    bfd_set_error (bfd_error_wrong_format);	  return 0;	}      switch (ext->e_type[0])	{	case N_TEXT:	  section_name = ".text";	  flags = SEC_CODE | SEC_LOAD | SEC_ALLOC | SEC_HAS_CONTENTS;	  break;	case N_DATA:	  section_name = ".data";	  flags = SEC_DATA | SEC_LOAD | SEC_ALLOC | SEC_HAS_CONTENTS;	  break;	case N_BSS:	  section_name = ".bss";	  flags = SEC_DATA | SEC_HAS_CONTENTS;	  break;	case 0:	  goto no_more_sections;	default:	  (*_bfd_error_handler)	    (_("%s: Unknown section type in a.out.adobe file: %x\n"),	     bfd_get_filename (abfd), ext->e_type[0]);	  goto no_more_sections;	}      /* First one is called ".text" or whatever; subsequent ones are	 ".text1", ".text2", ...  */      bfd_set_error (bfd_error_no_error);      sect = bfd_make_section (abfd, section_name);      trynum = 0;      while (!sect)	{	  if (bfd_get_error () != bfd_error_no_error)	    /* Some other error -- slide into the sunset.  */	    return 0;	  sprintf (try_again, "%s%d", section_name, ++trynum);	  sect = bfd_make_section (abfd, try_again);	}      /* Fix the name, if it is a sprintf'd name.  */      if (sect->name == try_again)	{	  newname = (char *) bfd_zalloc (abfd, strlen (sect->name));	  if (newname == NULL)	    return 0;	  strcpy (newname, sect->name);	  sect->name = newname;	}      /* Now set the section's attributes.  */      bfd_set_section_flags (abfd, sect, flags);      /* Assumed big-endian.  */      sect->_raw_size = ((ext->e_size[0] << 8)			 | ext->e_size[1] << 8)	| ext->e_size[2];      sect->_cooked_size = sect->_raw_size;      sect->vma = bfd_h_get_32 (abfd, ext->e_virtbase);      sect->filepos = bfd_h_get_32 (abfd, ext->e_filebase);      /* FIXME XXX alignment?  */      /* Set relocation information for first section of each type.  */      if (trynum == 0)	switch (ext->e_type[0])	  {	  case N_TEXT:	    sect->rel_filepos = N_TRELOFF (*execp);	    sect->reloc_count = execp->a_trsize;	    break;	  case N_DATA:	    sect->rel_filepos = N_DRELOFF (*execp);	    sect->reloc_count = execp->a_drsize;	    break;	  }    } no_more_sections:  adata (abfd).reloc_entry_size = sizeof (struct reloc_std_external);  adata (abfd).symbol_entry_size = sizeof (struct external_nlist);  adata (abfd).page_size = 1; /* Not applicable.  */  adata (abfd).segment_size = 1; /* Not applicable.  */  adata (abfd).exec_bytes_size = EXEC_BYTES_SIZE;  return abfd->xvec;}struct bout_data_struct {  struct aoutdata a;  struct internal_exec e;};static booleanaout_adobe_mkobject (abfd)     bfd *abfd;{  struct bout_data_struct *rawptr;  rawptr = (struct bout_data_struct *) bfd_zalloc (abfd, sizeof (struct bout_data_struct));  if (rawptr == NULL)    return false;  abfd->tdata.bout_data = rawptr;  exec_hdr (abfd) = &rawptr->e;  adata (abfd).reloc_entry_size = sizeof (struct reloc_std_external);  adata (abfd).symbol_entry_size = sizeof (struct external_nlist);  adata (abfd).page_size = 1; /* Not applicable.  */  adata (abfd).segment_size = 1; /* Not applicable.  */  adata (abfd).exec_bytes_size = EXEC_BYTES_SIZE;  return true;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?