home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / binutils-2.7-src.tgz / tar.out / fsf / binutils / bfd / section.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  30KB  |  1,016 lines

  1. /* Object file "section" support for the BFD library.
  2.    Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  20.  
  21. /*
  22. SECTION
  23.     Sections
  24.  
  25.     The raw data contained within a BFD is maintained through the
  26.     section abstraction.  A single BFD may have any number of
  27.     sections.  It keeps hold of them by pointing to the first;
  28.     each one points to the next in the list.
  29.  
  30.     Sections are supported in BFD in <<section.c>>.
  31.  
  32. @menu
  33. @* Section Input::
  34. @* Section Output::
  35. @* typedef asection::
  36. @* section prototypes::
  37. @end menu
  38.  
  39. INODE
  40. Section Input, Section Output, Sections, Sections
  41. SUBSECTION
  42.     Section input
  43.  
  44.     When a BFD is opened for reading, the section structures are
  45.     created and attached to the BFD.
  46.  
  47.     Each section has a name which describes the section in the
  48.     outside world---for example, <<a.out>> would contain at least
  49.     three sections, called <<.text>>, <<.data>> and <<.bss>>.
  50.  
  51.     Names need not be unique; for example a COFF file may have several
  52.     sections named <<.data>>.
  53.  
  54.     Sometimes a BFD will contain more than the ``natural'' number of
  55.     sections. A back end may attach other sections containing
  56.     constructor data, or an application may add a section (using
  57.     <<bfd_make_section>>) to the sections attached to an already open
  58.     BFD. For example, the linker creates an extra section
  59.     <<COMMON>> for each input file's BFD to hold information about
  60.     common storage.
  61.  
  62.     The raw data is not necessarily read in when
  63.     the section descriptor is created. Some targets may leave the
  64.     data in place until a <<bfd_get_section_contents>> call is
  65.     made. Other back ends may read in all the data at once.  For
  66.     example, an S-record file has to be read once to determine the
  67.     size of the data. An IEEE-695 file doesn't contain raw data in
  68.     sections, but data and relocation expressions intermixed, so
  69.     the data area has to be parsed to get out the data and
  70.     relocations.
  71.  
  72. INODE
  73. Section Output, typedef asection, Section Input, Sections
  74.  
  75. SUBSECTION
  76.     Section output
  77.  
  78.     To write a new object style BFD, the various sections to be
  79.     written have to be created. They are attached to the BFD in
  80.     the same way as input sections; data is written to the
  81.     sections using <<bfd_set_section_contents>>.
  82.  
  83.     Any program that creates or combines sections (e.g., the assembler
  84.     and linker) must use the <<asection>> fields <<output_section>> and
  85.     <<output_offset>> to indicate the file sections to which each
  86.     section must be written.  (If the section is being created from
  87.     scratch, <<output_section>> should probably point to the section
  88.     itself and <<output_offset>> should probably be zero.)
  89.  
  90.     The data to be written comes from input sections attached
  91.     (via <<output_section>> pointers) to
  92.     the output sections.  The output section structure can be
  93.     considered a filter for the input section: the output section
  94.     determines the vma of the output data and the name, but the
  95.     input section determines the offset into the output section of
  96.     the data to be written.
  97.  
  98.     E.g., to create a section "O", starting at 0x100, 0x123 long,
  99.     containing two subsections, "A" at offset 0x0 (i.e., at vma
  100.     0x100) and "B" at offset 0x20 (i.e., at vma 0x120) the <<asection>>
  101.     structures would look like:
  102.  
  103. |   section name          "A"
  104. |     output_offset   0x00
  105. |     size            0x20
  106. |     output_section ----------->  section name    "O"
  107. |                             |    vma             0x100
  108. |   section name          "B" |    size            0x123
  109. |     output_offset   0x20    |
  110. |     size            0x103   |
  111. |     output_section  --------|
  112.  
  113.  
  114. SUBSECTION
  115.     Link orders
  116.  
  117.     The data within a section is stored in a @dfn{link_order}.
  118.     These are much like the fixups in <<gas>>.  The link_order
  119.     abstraction allows a section to grow and shrink within itself.
  120.  
  121.     A link_order knows how big it is, and which is the next
  122.     link_order and where the raw data for it is; it also points to
  123.     a list of relocations which apply to it.
  124.  
  125.     The link_order is used by the linker to perform relaxing on
  126.     final code.  The compiler creates code which is as big as
  127.     necessary to make it work without relaxing, and the user can
  128.     select whether to relax.  Sometimes relaxing takes a lot of
  129.     time.  The linker runs around the relocations to see if any
  130.     are attached to data which can be shrunk, if so it does it on
  131.     a link_order by link_order basis.
  132.  
  133. */
  134.  
  135.  
  136. #include "bfd.h"
  137. #include "sysdep.h"
  138. #include "libbfd.h"
  139.  
  140.  
  141. /*
  142. DOCDD
  143. INODE
  144. typedef asection, section prototypes, Section Output, Sections
  145. SUBSECTION
  146.     typedef asection
  147.  
  148.     Here is the section structure:
  149.  
  150. CODE_FRAGMENT
  151. .
  152. .typedef struct sec
  153. .{
  154. .        {* The name of the section; the name isn't a copy, the pointer is
  155. .        the same as that passed to bfd_make_section. *}
  156. .
  157. .    CONST char *name;
  158. .
  159. .        {* Which section is it; 0..nth.      *}
  160. .
  161. .   int index;
  162. .
  163. .        {* The next section in the list belonging to the BFD, or NULL. *}
  164. .
  165. .    struct sec *next;
  166. .
  167. .        {* The field flags contains attributes of the section. Some
  168. .           flags are read in from the object file, and some are
  169. .           synthesized from other information.  *}
  170. .
  171. .    flagword flags;
  172. .
  173. .#define SEC_NO_FLAGS   0x000
  174. .
  175. .        {* Tells the OS to allocate space for this section when loading.
  176. .           This is clear for a section containing debug information
  177. .           only. *}
  178. .#define SEC_ALLOC      0x001
  179. .
  180. .        {* Tells the OS to load the section from the file when loading.
  181. .           This is clear for a .bss section. *}
  182. .#define SEC_LOAD       0x002
  183. .
  184. .        {* The section contains data still to be relocated, so there is
  185. .           some relocation information too. *}
  186. .#define SEC_RELOC      0x004
  187. .
  188. .#if 0   {* Obsolete ? *}
  189. .#define SEC_BALIGN     0x008
  190. .#endif
  191. .
  192. .        {* A signal to the OS that the section contains read only
  193. .          data. *}
  194. .#define SEC_READONLY   0x010
  195. .
  196. .        {* The section contains code only. *}
  197. .#define SEC_CODE       0x020
  198. .
  199. .        {* The section contains data only. *}
  200. .#define SEC_DATA       0x040
  201. .
  202. .        {* The section will reside in ROM. *}
  203. .#define SEC_ROM        0x080
  204. .
  205. .        {* The section contains constructor information. This section
  206. .           type is used by the linker to create lists of constructors and
  207. .           destructors used by <<g++>>. When a back end sees a symbol
  208. .           which should be used in a constructor list, it creates a new
  209. .           section for the type of name (e.g., <<__CTOR_LIST__>>), attaches
  210. .           the symbol to it, and builds a relocation. To build the lists
  211. .           of constructors, all the linker has to do is catenate all the
  212. .           sections called <<__CTOR_LIST__>> and relocate the data
  213. .           contained within - exactly the operations it would peform on
  214. .           standard data. *}
  215. .#define SEC_CONSTRUCTOR 0x100
  216. .
  217. .        {* The section is a constuctor, and should be placed at the
  218. .          end of the text, data, or bss section(?). *}
  219. .#define SEC_CONSTRUCTOR_TEXT 0x1100
  220. .#define SEC_CONSTRUCTOR_DATA 0x2100
  221. .#define SEC_CONSTRUCTOR_BSS  0x3100
  222. .
  223. .        {* The section has contents - a data section could be
  224. .           <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>; a debug section could be
  225. .           <<SEC_HAS_CONTENTS>> *}
  226. .#define SEC_HAS_CONTENTS 0x200
  227. .
  228. .        {* An instruction to the linker to not output the section
  229. .           even if it has information which would normally be written. *}
  230. .#define SEC_NEVER_LOAD 0x400
  231. .
  232. .        {* The section is a COFF shared library section.  This flag is
  233. .           only for the linker.  If this type of section appears in
  234. .           the input file, the linker must copy it to the output file
  235. .           without changing the vma or size.  FIXME: Although this
  236. .           was originally intended to be general, it really is COFF
  237. .           specific (and the flag was renamed to indicate this).  It
  238. .           might be cleaner to have some more general mechanism to
  239. .           allow the back end to control what the linker does with
  240. .           sections. *}
  241. .#define SEC_COFF_SHARED_LIBRARY 0x800
  242. .
  243. .        {* The section contains common symbols (symbols may be defined
  244. .           multiple times, the value of a symbol is the amount of
  245. .           space it requires, and the largest symbol value is the one
  246. .           used).  Most targets have exactly one of these (which we
  247. .        translate to bfd_com_section_ptr), but ECOFF has two. *}
  248. .#define SEC_IS_COMMON 0x8000
  249. .
  250. .        {* The section contains only debugging information.  For
  251. .           example, this is set for ELF .debug and .stab sections.
  252. .           strip tests this flag to see if a section can be
  253. .           discarded. *}
  254. .#define SEC_DEBUGGING 0x10000
  255. .
  256. .        {* The contents of this section are held in memory pointed to
  257. .           by the contents field.  This is checked by
  258. .           bfd_get_section_contents, and the data is retrieved from
  259. .           memory if appropriate.  *}
  260. .#define SEC_IN_MEMORY 0x20000
  261. .
  262. .        {* The contents of this section are to be excluded by the
  263. .        linker for executable and shared objects unless those
  264. .        objects are to be further relocated.  *}
  265. .#define SEC_EXCLUDE 0x40000
  266. .
  267. .    {* The contents of this section are to be sorted by the
  268. .       based on the address specified in the associated symbol
  269. .       table.  *}
  270. .#define SEC_SORT_ENTRIES 0x80000
  271. .
  272. .    {* When linking, duplicate sections of the same name should be
  273. .       discarded, rather than being combined into a single section as
  274. .       is usually done.  This is similar to how common symbols are
  275. .       handled.  See SEC_LINK_DUPLICATES below.  *}
  276. .#define SEC_LINK_ONCE 0x100000
  277. .
  278. .    {* If SEC_LINK_ONCE is set, this bitfield describes how the linker
  279. .       should handle duplicate sections.  *}
  280. .#define SEC_LINK_DUPLICATES 0x600000
  281. .
  282. .    {* This value for SEC_LINK_DUPLICATES means that duplicate
  283. .       sections with the same name should simply be discarded. *}
  284. .#define SEC_LINK_DUPLICATES_DISCARD 0x0
  285. .
  286. .    {* This value for SEC_LINK_DUPLICATES means that the linker
  287. .       should warn if there are any duplicate sections, although
  288. .       it should still only link one copy.  *}
  289. .#define SEC_LINK_DUPLICATES_ONE_ONLY 0x200000
  290. .
  291. .    {* This value for SEC_LINK_DUPLICATES means that the linker
  292. .       should warn if any duplicate sections are a different size.  *}
  293. .#define SEC_LINK_DUPLICATES_SAME_SIZE 0x400000
  294. .
  295. .    {* This value for SEC_LINK_DUPLICATES means that the linker
  296. .       should warn if any duplicate sections contain different
  297. .       contents.  *}
  298. .#define SEC_LINK_DUPLICATES_SAME_CONTENTS 0x600000
  299. .
  300. .    {*  End of section flags.  *}
  301. .
  302. .    {* Some internal packed boolean fields.  *}
  303. .
  304. .    {* See the vma field.  *}
  305. .    unsigned int user_set_vma : 1;
  306. .
  307. .    {* Whether relocations have been processed.  *}
  308. .    unsigned int reloc_done : 1;
  309. .
  310. .    {* A mark flag used by some of the linker backends.  *}
  311. .    unsigned int linker_mark : 1;
  312. .
  313. .    {* End of internal packed boolean fields.  *}
  314. .
  315. .       {*  The virtual memory address of the section - where it will be
  316. .           at run time.  The symbols are relocated against this.  The
  317. .        user_set_vma flag is maintained by bfd; if it's not set, the
  318. .        backend can assign addresses (for example, in <<a.out>>, where
  319. .        the default address for <<.data>> is dependent on the specific
  320. .        target and various flags).  *}
  321. .
  322. .   bfd_vma vma;
  323. .
  324. .       {*  The load address of the section - where it would be in a
  325. .           rom image; really only used for writing section header
  326. .        information. *}
  327. .
  328. .   bfd_vma lma;
  329. .
  330. .        {* The size of the section in bytes, as it will be output.
  331. .           contains a value even if the section has no contents (e.g., the
  332. .           size of <<.bss>>). This will be filled in after relocation *}
  333. .
  334. .   bfd_size_type _cooked_size;
  335. .
  336. .        {* The original size on disk of the section, in bytes.  Normally this
  337. .        value is the same as the size, but if some relaxing has
  338. .        been done, then this value will be bigger.  *}
  339. .
  340. .   bfd_size_type _raw_size;
  341. .
  342. .        {* If this section is going to be output, then this value is the
  343. .           offset into the output section of the first byte in the input
  344. .           section. E.g., if this was going to start at the 100th byte in
  345. .           the output section, this value would be 100. *}
  346. .
  347. .   bfd_vma output_offset;
  348. .
  349. .        {* The output section through which to map on output. *}
  350. .
  351. .   struct sec *output_section;
  352. .
  353. .        {* The alignment requirement of the section, as an exponent of 2 -
  354. .           e.g., 3 aligns to 2^3 (or 8). *}
  355. .
  356. .   unsigned int alignment_power;
  357. .
  358. .        {* If an input section, a pointer to a vector of relocation
  359. .           records for the data in this section. *}
  360. .
  361. .   struct reloc_cache_entry *relocation;
  362. .
  363. .        {* If an output section, a pointer to a vector of pointers to
  364. .           relocation records for the data in this section. *}
  365. .
  366. .   struct reloc_cache_entry **orelocation;
  367. .
  368. .        {* The number of relocation records in one of the above  *}
  369. .
  370. .   unsigned reloc_count;
  371. .
  372. .        {* Information below is back end specific - and not always used
  373. .           or updated.  *}
  374. .
  375. .        {* File position of section data    *}
  376. .
  377. .   file_ptr filepos;
  378. .
  379. .        {* File position of relocation info *}
  380. .
  381. .   file_ptr rel_filepos;
  382. .
  383. .        {* File position of line data       *}
  384. .
  385. .   file_ptr line_filepos;
  386. .
  387. .        {* Pointer to data for applications *}
  388. .
  389. .   PTR userdata;
  390. .
  391. .        {* If the SEC_IN_MEMORY flag is set, this points to the actual
  392. .           contents.  *}
  393. .   unsigned char *contents;
  394. .
  395. .        {* Attached line number information *}
  396. .
  397. .   alent *lineno;
  398. .
  399. .        {* Number of line number records   *}
  400. .
  401. .   unsigned int lineno_count;
  402. .
  403. .        {* When a section is being output, this value changes as more
  404. .           linenumbers are written out *}
  405. .
  406. .   file_ptr moving_line_filepos;
  407. .
  408. .        {* What the section number is in the target world  *}
  409. .
  410. .   int target_index;
  411. .
  412. .   PTR used_by_bfd;
  413. .
  414. .        {* If this is a constructor section then here is a list of the
  415. .           relocations created to relocate items within it. *}
  416. .
  417. .   struct relent_chain *constructor_chain;
  418. .
  419. .        {* The BFD which owns the section. *}
  420. .
  421. .   bfd *owner;
  422. .
  423. .     {* A symbol which points at this section only *}
  424. .   struct symbol_cache_entry *symbol;
  425. .   struct symbol_cache_entry **symbol_ptr_ptr;
  426. .
  427. .   struct bfd_link_order *link_order_head;
  428. .   struct bfd_link_order *link_order_tail;
  429. .} asection ;
  430. .
  431. .    {* These sections are global, and are managed by BFD.  The application
  432. .       and target back end are not permitted to change the values in
  433. .    these sections.  New code should use the section_ptr macros rather
  434. .       than referring directly to the const sections.  The const sections
  435. .       may eventually vanish.  *}
  436. .#define BFD_ABS_SECTION_NAME "*ABS*"
  437. .#define BFD_UND_SECTION_NAME "*UND*"
  438. .#define BFD_COM_SECTION_NAME "*COM*"
  439. .#define BFD_IND_SECTION_NAME "*IND*"
  440. .
  441. .    {* the absolute section *}
  442. .extern const asection bfd_abs_section;
  443. .#define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
  444. .#define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
  445. .    {* Pointer to the undefined section *}
  446. .extern const asection bfd_und_section;
  447. .#define bfd_und_section_ptr ((asection *) &bfd_und_section)
  448. .#define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
  449. .    {* Pointer to the common section *}
  450. .extern const asection bfd_com_section;
  451. .#define bfd_com_section_ptr ((asection *) &bfd_com_section)
  452. .    {* Pointer to the indirect section *}
  453. .extern const asection bfd_ind_section;
  454. .#define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
  455. .#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
  456. .
  457. .extern const struct symbol_cache_entry * const bfd_abs_symbol;
  458. .extern const struct symbol_cache_entry * const bfd_com_symbol;
  459. .extern const struct symbol_cache_entry * const bfd_und_symbol;
  460. .extern const struct symbol_cache_entry * const bfd_ind_symbol;
  461. .#define bfd_get_section_size_before_reloc(section) \
  462. .     (section->reloc_done ? (abort(),1): (section)->_raw_size)
  463. .#define bfd_get_section_size_after_reloc(section) \
  464. .     ((section->reloc_done) ? (section)->_cooked_size: (abort(),1))
  465. */
  466.  
  467. /* These symbols are global, not specific to any BFD.  Therefore, anything
  468.    that tries to change them is broken, and should be repaired.  */
  469. static const asymbol global_syms[] =
  470. {
  471.  /* the_bfd, name, value, attr, section [, udata] */
  472.   {0, BFD_COM_SECTION_NAME, 0, BSF_SECTION_SYM, (asection *) &bfd_com_section},
  473.   {0, BFD_UND_SECTION_NAME, 0, BSF_SECTION_SYM, (asection *) &bfd_und_section},
  474.   {0, BFD_ABS_SECTION_NAME, 0, BSF_SECTION_SYM, (asection *) &bfd_abs_section},
  475.   {0, BFD_IND_SECTION_NAME, 0, BSF_SECTION_SYM, (asection *) &bfd_ind_section},
  476. };
  477.  
  478. #define STD_SECTION(SEC, FLAGS, SYM, NAME, IDX)    \
  479.   const asymbol * const SYM = (asymbol *) &global_syms[IDX]; \
  480.   const asection SEC = \
  481.     { NAME, 0, 0, FLAGS, 0, 0, 0, 0, 0, 0, 0, 0, (asection *) &SEC, \
  482.       0, 0, 0, 0, 0, 0, 0, 0,  0, 0, 0, 0, 0, 0, 0, 0, \
  483.       (asymbol *) &global_syms[IDX], (asymbol **) &SYM, 0, 0 }
  484.  
  485. STD_SECTION (bfd_com_section, SEC_IS_COMMON, bfd_com_symbol,
  486.          BFD_COM_SECTION_NAME, 0);
  487. STD_SECTION (bfd_und_section, 0, bfd_und_symbol, BFD_UND_SECTION_NAME, 1);
  488. STD_SECTION (bfd_abs_section, 0, bfd_abs_symbol, BFD_ABS_SECTION_NAME, 2);
  489. STD_SECTION (bfd_ind_section, 0, bfd_ind_symbol, BFD_IND_SECTION_NAME, 3);
  490. #undef STD_SECTION
  491.  
  492. /*
  493. DOCDD
  494. INODE
  495. section prototypes,  , typedef asection, Sections
  496. SUBSECTION
  497.     Section prototypes
  498.  
  499. These are the functions exported by the section handling part of BFD.
  500. */
  501.  
  502. /*
  503. FUNCTION
  504.     bfd_get_section_by_name
  505.  
  506. SYNOPSIS
  507.     asection *bfd_get_section_by_name(bfd *abfd, CONST char *name);
  508.  
  509. DESCRIPTION
  510.     Run through @var{abfd} and return the one of the
  511.     <<asection>>s whose name matches @var{name}, otherwise <<NULL>>.
  512.     @xref{Sections}, for more information.
  513.  
  514.     This should only be used in special cases; the normal way to process
  515.     all sections of a given name is to use <<bfd_map_over_sections>> and
  516.     <<strcmp>> on the name (or better yet, base it on the section flags
  517.     or something else) for each section.
  518. */
  519.  
  520. asection *
  521. bfd_get_section_by_name (abfd, name)
  522.      bfd *abfd;
  523.      CONST char *name;
  524. {
  525.   asection *sect;
  526.  
  527.   for (sect = abfd->sections; sect != NULL; sect = sect->next)
  528.     if (!strcmp (sect->name, name))
  529.       return sect;
  530.   return NULL;
  531. }
  532.  
  533.  
  534. /*
  535. FUNCTION
  536.     bfd_make_section_old_way
  537.  
  538. SYNOPSIS
  539.     asection *bfd_make_section_old_way(bfd *abfd, CONST char *name);
  540.  
  541. DESCRIPTION
  542.     Create a new empty section called @var{name}
  543.     and attach it to the end of the chain of sections for the
  544.     BFD @var{abfd}. An attempt to create a section with a name which
  545.     is already in use returns its pointer without changing the
  546.     section chain.
  547.  
  548.     It has the funny name since this is the way it used to be
  549.     before it was rewritten....
  550.  
  551.     Possible errors are:
  552.     o <<bfd_error_invalid_operation>> -
  553.     If output has already started for this BFD.
  554.     o <<bfd_error_no_memory>> -
  555.     If obstack alloc fails.
  556.  
  557. */
  558.  
  559.  
  560. asection *
  561. bfd_make_section_old_way (abfd, name)
  562.      bfd *abfd;
  563.      CONST char *name;
  564. {
  565.   asection *sec = bfd_get_section_by_name (abfd, name);
  566.   if (sec == (asection *) NULL)
  567.     {
  568.       sec = bfd_make_section (abfd, name);
  569.     }
  570.   return sec;
  571. }
  572.  
  573. /*
  574. FUNCTION
  575.     bfd_make_section_anyway
  576.  
  577. SYNOPSIS
  578.     asection *bfd_make_section_anyway(bfd *abfd, CONST char *name);
  579.  
  580. DESCRIPTION
  581.    Create a new empty section called @var{name} and attach it to the end of
  582.    the chain of sections for @var{abfd}.  Create a new section even if there
  583.    is already a section with that name.
  584.  
  585.    Return <<NULL>> and set <<bfd_error>> on error; possible errors are:
  586.    o <<bfd_error_invalid_operation>> - If output has already started for @var{abfd}.
  587.    o <<bfd_error_no_memory>> - If obstack alloc fails.
  588. */
  589.  
  590. sec_ptr
  591. bfd_make_section_anyway (abfd, name)
  592.      bfd *abfd;
  593.      CONST char *name;
  594. {
  595.   asection *newsect;
  596.   asection **prev = &abfd->sections;
  597.   asection *sect = abfd->sections;
  598.  
  599.   if (abfd->output_has_begun)
  600.     {
  601.       bfd_set_error (bfd_error_invalid_operation);
  602.       return NULL;
  603.     }
  604.  
  605.   while (sect)
  606.     {
  607.       prev = §->next;
  608.       sect = sect->next;
  609.     }
  610.  
  611.   newsect = (asection *) bfd_zalloc (abfd, sizeof (asection));
  612.   if (newsect == NULL)
  613.     return NULL;
  614.  
  615.   newsect->name = name;
  616.   newsect->index = abfd->section_count++;
  617.   newsect->flags = SEC_NO_FLAGS;
  618.  
  619.   newsect->userdata = NULL;
  620.   newsect->contents = NULL;
  621.   newsect->next = (asection *) NULL;
  622.   newsect->relocation = (arelent *) NULL;
  623.   newsect->reloc_count = 0;
  624.   newsect->line_filepos = 0;
  625.   newsect->owner = abfd;
  626.  
  627.   /* Create a symbol whos only job is to point to this section. This is
  628.      useful for things like relocs which are relative to the base of a
  629.      section.  */
  630.   newsect->symbol = bfd_make_empty_symbol (abfd);
  631.   if (newsect->symbol == NULL)
  632.     return NULL;
  633.   newsect->symbol->name = name;
  634.   newsect->symbol->value = 0;
  635.   newsect->symbol->section = newsect;
  636.   newsect->symbol->flags = BSF_SECTION_SYM;
  637.  
  638.   newsect->symbol_ptr_ptr = &newsect->symbol;
  639.  
  640.   if (BFD_SEND (abfd, _new_section_hook, (abfd, newsect)) != true)
  641.     {
  642.       free (newsect);
  643.       return NULL;
  644.     }
  645.  
  646.   *prev = newsect;
  647.   return newsect;
  648. }
  649.  
  650. /*
  651. FUNCTION
  652.     bfd_make_section
  653.  
  654. SYNOPSIS
  655.     asection *bfd_make_section(bfd *, CONST char *name);
  656.  
  657. DESCRIPTION
  658.    Like <<bfd_make_section_anyway>>, but return <<NULL>> (without calling
  659.    bfd_set_error ()) without changing the section chain if there is already a
  660.    section named @var{name}.  If there is an error, return <<NULL>> and set
  661.    <<bfd_error>>.
  662. */
  663.  
  664. asection *
  665. bfd_make_section (abfd, name)
  666.      bfd *abfd;
  667.      CONST char *name;
  668. {
  669.   asection *sect = abfd->sections;
  670.  
  671.   if (strcmp (name, BFD_ABS_SECTION_NAME) == 0)
  672.     {
  673.       return bfd_abs_section_ptr;
  674.     }
  675.   if (strcmp (name, BFD_COM_SECTION_NAME) == 0)
  676.     {
  677.       return bfd_com_section_ptr;
  678.     }
  679.   if (strcmp (name, BFD_UND_SECTION_NAME) == 0)
  680.     {
  681.       return bfd_und_section_ptr;
  682.     }
  683.  
  684.   if (strcmp (name, BFD_IND_SECTION_NAME) == 0)
  685.     {
  686.       return bfd_ind_section_ptr;
  687.     }
  688.  
  689.   while (sect)
  690.     {
  691.       if (!strcmp (sect->name, name))
  692.     return NULL;
  693.       sect = sect->next;
  694.     }
  695.  
  696.   /* The name is not already used; go ahead and make a new section.  */
  697.   return bfd_make_section_anyway (abfd, name);
  698. }
  699.  
  700.  
  701. /*
  702. FUNCTION
  703.     bfd_set_section_flags
  704.  
  705. SYNOPSIS
  706.     boolean bfd_set_section_flags(bfd *abfd, asection *sec, flagword flags);
  707.  
  708. DESCRIPTION
  709.     Set the attributes of the section @var{sec} in the BFD
  710.     @var{abfd} to the value @var{flags}. Return <<true>> on success,
  711.     <<false>> on error. Possible error returns are:
  712.  
  713.     o <<bfd_error_invalid_operation>> -
  714.     The section cannot have one or more of the attributes
  715.     requested. For example, a .bss section in <<a.out>> may not
  716.     have the <<SEC_HAS_CONTENTS>> field set.
  717.  
  718. */
  719.  
  720. /*ARGSUSED*/
  721. boolean
  722. bfd_set_section_flags (abfd, section, flags)
  723.      bfd *abfd;
  724.      sec_ptr section;
  725.      flagword flags;
  726. {
  727. #if 0
  728.   /* If you try to copy a text section from an input file (where it
  729.      has the SEC_CODE flag set) to an output file, this loses big if
  730.      the bfd_applicable_section_flags (abfd) doesn't have the SEC_CODE
  731.      set - which it doesn't, at least not for a.out.  FIXME */
  732.  
  733.   if ((flags & bfd_applicable_section_flags (abfd)) != flags)
  734.     {
  735.       bfd_set_error (bfd_error_invalid_operation);
  736.       return false;
  737.     }
  738. #endif
  739.  
  740.   section->flags = flags;
  741.   return true;
  742. }
  743.  
  744.  
  745. /*
  746. FUNCTION
  747.     bfd_map_over_sections
  748.  
  749. SYNOPSIS
  750.     void bfd_map_over_sections(bfd *abfd,
  751.                    void (*func)(bfd *abfd,
  752.                         asection *sect,
  753.                         PTR obj),
  754.                    PTR obj);
  755.  
  756. DESCRIPTION
  757.     Call the provided function @var{func} for each section
  758.     attached to the BFD @var{abfd}, passing @var{obj} as an
  759.     argument. The function will be called as if by
  760.  
  761. |    func(abfd, the_section, obj);
  762.  
  763.     This is the prefered method for iterating over sections; an
  764.     alternative would be to use a loop:
  765.  
  766. |       section *p;
  767. |       for (p = abfd->sections; p != NULL; p = p->next)
  768. |          func(abfd, p, ...)
  769.  
  770.  
  771. */
  772.  
  773. /*VARARGS2*/
  774. void
  775. bfd_map_over_sections (abfd, operation, user_storage)
  776.      bfd *abfd;
  777.      void (*operation) PARAMS ((bfd * abfd, asection * sect, PTR obj));
  778.      PTR user_storage;
  779. {
  780.   asection *sect;
  781.   unsigned int i = 0;
  782.  
  783.   for (sect = abfd->sections; sect != NULL; i++, sect = sect->next)
  784.     (*operation) (abfd, sect, user_storage);
  785.  
  786.   if (i != abfd->section_count)    /* Debugging */
  787.     abort ();
  788. }
  789.  
  790.  
  791. /*
  792. FUNCTION
  793.     bfd_set_section_size
  794.  
  795. SYNOPSIS
  796.     boolean bfd_set_section_size(bfd *abfd, asection *sec, bfd_size_type val);
  797.  
  798. DESCRIPTION
  799.     Set @var{sec} to the size @var{val}. If the operation is
  800.     ok, then <<true>> is returned, else <<false>>.
  801.  
  802.     Possible error returns:
  803.     o <<bfd_error_invalid_operation>> -
  804.     Writing has started to the BFD, so setting the size is invalid.
  805.  
  806. */
  807.  
  808. boolean
  809. bfd_set_section_size (abfd, ptr, val)
  810.      bfd *abfd;
  811.      sec_ptr ptr;
  812.      bfd_size_type val;
  813. {
  814.   /* Once you've started writing to any section you cannot create or change
  815.      the size of any others. */
  816.  
  817.   if (abfd->output_has_begun)
  818.     {
  819.       bfd_set_error (bfd_error_invalid_operation);
  820.       return false;
  821.     }
  822.  
  823.   ptr->_cooked_size = val;
  824.   ptr->_raw_size = val;
  825.  
  826.   return true;
  827. }
  828.  
  829. /*
  830. FUNCTION
  831.     bfd_set_section_contents
  832.  
  833. SYNOPSIS
  834.     boolean bfd_set_section_contents
  835.          (bfd *abfd,
  836.          asection *section,
  837.          PTR data,
  838.          file_ptr offset,
  839.          bfd_size_type count);
  840.  
  841.  
  842. DESCRIPTION
  843.     Sets the contents of the section @var{section} in BFD
  844.     @var{abfd} to the data starting in memory at @var{data}. The
  845.     data is written to the output section starting at offset
  846.     @var{offset} for @var{count} bytes.
  847.  
  848.  
  849.  
  850.     Normally <<true>> is returned, else <<false>>. Possible error
  851.     returns are:
  852.     o <<bfd_error_no_contents>> -
  853.     The output section does not have the <<SEC_HAS_CONTENTS>>
  854.     attribute, so nothing can be written to it.
  855.     o and some more too
  856.  
  857.     This routine is front end to the back end function
  858.     <<_bfd_set_section_contents>>.
  859.  
  860.  
  861. */
  862.  
  863. #define bfd_get_section_size_now(abfd,sec) \
  864. (sec->reloc_done \
  865.  ? bfd_get_section_size_after_reloc (sec) \
  866.  : bfd_get_section_size_before_reloc (sec))
  867.  
  868. boolean
  869. bfd_set_section_contents (abfd, section, location, offset, count)
  870.      bfd *abfd;
  871.      sec_ptr section;
  872.      PTR location;
  873.      file_ptr offset;
  874.      bfd_size_type count;
  875. {
  876.   bfd_size_type sz;
  877.  
  878.   if (!(bfd_get_section_flags (abfd, section) & SEC_HAS_CONTENTS))
  879.     {
  880.       bfd_set_error (bfd_error_no_contents);
  881.       return (false);
  882.     }
  883.  
  884.   if (offset < 0)
  885.     {
  886.     bad_val:
  887.       bfd_set_error (bfd_error_bad_value);
  888.       return false;
  889.     }
  890.   sz = bfd_get_section_size_now (abfd, section);
  891.   if ((bfd_size_type) offset > sz
  892.       || count > sz
  893.       || offset + count > sz)
  894.     goto bad_val;
  895.  
  896.   switch (abfd->direction)
  897.     {
  898.     case read_direction:
  899.     case no_direction:
  900.       bfd_set_error (bfd_error_invalid_operation);
  901.       return false;
  902.  
  903.     case write_direction:
  904.       break;
  905.  
  906.     case both_direction:
  907.       /* File is opened for update. `output_has_begun' some time ago when
  908.        the file was created.  Do not recompute sections sizes or alignments
  909.        in _bfd_set_section_content.  */
  910.       abfd->output_has_begun = true;
  911.       break;
  912.     }
  913.  
  914.   if (BFD_SEND (abfd, _bfd_set_section_contents,
  915.         (abfd, section, location, offset, count)))
  916.     {
  917.       abfd->output_has_begun = true;
  918.       return true;
  919.     }
  920.  
  921.   return false;
  922. }
  923.  
  924. /*
  925. FUNCTION
  926.     bfd_get_section_contents
  927.  
  928. SYNOPSIS
  929.     boolean bfd_get_section_contents
  930.         (bfd *abfd, asection *section, PTR location,
  931.          file_ptr offset, bfd_size_type count);
  932.  
  933. DESCRIPTION
  934.     Read data from @var{section} in BFD @var{abfd}
  935.     into memory starting at @var{location}. The data is read at an
  936.     offset of @var{offset} from the start of the input section,
  937.     and is read for @var{count} bytes.
  938.  
  939.     If the contents of a constructor with the <<SEC_CONSTRUCTOR>>
  940.     flag set are requested or if the section does not have the
  941.     <<SEC_HAS_CONTENTS>> flag set, then the @var{location} is filled
  942.     with zeroes. If no errors occur, <<true>> is returned, else
  943.     <<false>>.
  944.  
  945.  
  946.  
  947. */
  948. boolean
  949. bfd_get_section_contents (abfd, section, location, offset, count)
  950.      bfd *abfd;
  951.      sec_ptr section;
  952.      PTR location;
  953.      file_ptr offset;
  954.      bfd_size_type count;
  955. {
  956.   bfd_size_type sz;
  957.  
  958.   if (section->flags & SEC_CONSTRUCTOR)
  959.     {
  960.       memset (location, 0, (unsigned) count);
  961.       return true;
  962.     }
  963.  
  964.   if (offset < 0)
  965.     {
  966.     bad_val:
  967.       bfd_set_error (bfd_error_bad_value);
  968.       return false;
  969.     }
  970.   /* Even if reloc_done is true, this function reads unrelocated
  971.      contents, so we want the raw size.  */
  972.   sz = section->_raw_size;
  973.   if ((bfd_size_type) offset > sz || count > sz || offset + count > sz)
  974.     goto bad_val;
  975.  
  976.   if (count == 0)
  977.     /* Don't bother.  */
  978.     return true;
  979.  
  980.   if ((section->flags & SEC_HAS_CONTENTS) == 0)
  981.     {
  982.       memset (location, 0, (unsigned) count);
  983.       return true;
  984.     }
  985.  
  986.   if ((section->flags & SEC_IN_MEMORY) != 0)
  987.     {
  988.       memcpy (location, section->contents + offset, (size_t) count);
  989.       return true;
  990.     }
  991.  
  992.   return BFD_SEND (abfd, _bfd_get_section_contents,
  993.            (abfd, section, location, offset, count));
  994. }
  995.  
  996. /*
  997. FUNCTION
  998.     bfd_copy_private_section_data
  999.  
  1000. SYNOPSIS
  1001.     boolean bfd_copy_private_section_data(bfd *ibfd, asection *isec, bfd *obfd, asection *osec);
  1002.  
  1003. DESCRIPTION
  1004.     Copy private section information from @var{isec} in the BFD
  1005.     @var{ibfd} to the section @var{osec} in the BFD @var{obfd}.
  1006.     Return <<true>> on success, <<false>> on error.  Possible error
  1007.     returns are:
  1008.  
  1009.     o <<bfd_error_no_memory>> -
  1010.     Not enough memory exists to create private data for @var{osec}.
  1011.  
  1012. .#define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
  1013. .     BFD_SEND (ibfd, _bfd_copy_private_section_data, \
  1014. .        (ibfd, isection, obfd, osection))
  1015. */
  1016.