Touches most files in bfd/, so likely will be blamed for everything..
[deliverable/binutils-gdb.git] / bfd / section.c
CommitLineData
252b5132 1/* Object file "section" support for the BFD library.
7898deda 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
767e4b0d 3 2000, 2001
252b5132
RH
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
6
7This file is part of BFD, the Binary File Descriptor library.
8
9This program is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2 of the License, or
12(at your option) any later version.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22
23/*
24SECTION
25 Sections
26
27 The raw data contained within a BFD is maintained through the
28 section abstraction. A single BFD may have any number of
29 sections. It keeps hold of them by pointing to the first;
30 each one points to the next in the list.
31
32 Sections are supported in BFD in <<section.c>>.
33
34@menu
35@* Section Input::
36@* Section Output::
37@* typedef asection::
38@* section prototypes::
39@end menu
40
41INODE
42Section Input, Section Output, Sections, Sections
43SUBSECTION
44 Section input
45
46 When a BFD is opened for reading, the section structures are
47 created and attached to the BFD.
48
49 Each section has a name which describes the section in the
50 outside world---for example, <<a.out>> would contain at least
51 three sections, called <<.text>>, <<.data>> and <<.bss>>.
52
53 Names need not be unique; for example a COFF file may have several
54 sections named <<.data>>.
55
56 Sometimes a BFD will contain more than the ``natural'' number of
57 sections. A back end may attach other sections containing
58 constructor data, or an application may add a section (using
59 <<bfd_make_section>>) to the sections attached to an already open
60 BFD. For example, the linker creates an extra section
61 <<COMMON>> for each input file's BFD to hold information about
62 common storage.
63
64 The raw data is not necessarily read in when
65 the section descriptor is created. Some targets may leave the
66 data in place until a <<bfd_get_section_contents>> call is
67 made. Other back ends may read in all the data at once. For
68 example, an S-record file has to be read once to determine the
69 size of the data. An IEEE-695 file doesn't contain raw data in
70 sections, but data and relocation expressions intermixed, so
71 the data area has to be parsed to get out the data and
72 relocations.
73
74INODE
75Section Output, typedef asection, Section Input, Sections
76
77SUBSECTION
78 Section output
79
80 To write a new object style BFD, the various sections to be
81 written have to be created. They are attached to the BFD in
82 the same way as input sections; data is written to the
83 sections using <<bfd_set_section_contents>>.
84
85 Any program that creates or combines sections (e.g., the assembler
86 and linker) must use the <<asection>> fields <<output_section>> and
87 <<output_offset>> to indicate the file sections to which each
88 section must be written. (If the section is being created from
89 scratch, <<output_section>> should probably point to the section
90 itself and <<output_offset>> should probably be zero.)
91
92 The data to be written comes from input sections attached
93 (via <<output_section>> pointers) to
94 the output sections. The output section structure can be
95 considered a filter for the input section: the output section
96 determines the vma of the output data and the name, but the
97 input section determines the offset into the output section of
98 the data to be written.
99
100 E.g., to create a section "O", starting at 0x100, 0x123 long,
101 containing two subsections, "A" at offset 0x0 (i.e., at vma
102 0x100) and "B" at offset 0x20 (i.e., at vma 0x120) the <<asection>>
103 structures would look like:
104
105| section name "A"
106| output_offset 0x00
107| size 0x20
108| output_section -----------> section name "O"
109| | vma 0x100
110| section name "B" | size 0x123
111| output_offset 0x20 |
112| size 0x103 |
113| output_section --------|
114
252b5132
RH
115SUBSECTION
116 Link orders
117
118 The data within a section is stored in a @dfn{link_order}.
119 These are much like the fixups in <<gas>>. The link_order
120 abstraction allows a section to grow and shrink within itself.
121
122 A link_order knows how big it is, and which is the next
123 link_order and where the raw data for it is; it also points to
124 a list of relocations which apply to it.
125
126 The link_order is used by the linker to perform relaxing on
127 final code. The compiler creates code which is as big as
128 necessary to make it work without relaxing, and the user can
129 select whether to relax. Sometimes relaxing takes a lot of
130 time. The linker runs around the relocations to see if any
131 are attached to data which can be shrunk, if so it does it on
132 a link_order by link_order basis.
133
134*/
135
252b5132
RH
136#include "bfd.h"
137#include "sysdep.h"
138#include "libbfd.h"
139#include "bfdlink.h"
140
141/*
142DOCDD
143INODE
144typedef asection, section prototypes, Section Output, Sections
145SUBSECTION
146 typedef asection
147
148 Here is the section structure:
149
150CODE_FRAGMENT
151.
52b219b5
AM
152.{* This structure is used for a comdat section, as in PE. A comdat
153. section is associated with a particular symbol. When the linker
154. sees a comdat section, it keeps only one of the sections with a
155. given name and associated with a given symbol. *}
022a5af4
ILT
156.
157.struct bfd_comdat_info
158.{
159. {* The name of the symbol associated with a comdat section. *}
160. const char *name;
161.
162. {* The local symbol table index of the symbol associated with a
163. comdat section. This is only meaningful to the object file format
164. specific code; it is not an index into the list returned by
165. bfd_canonicalize_symtab. *}
166. long symbol;
022a5af4
ILT
167.};
168.
252b5132
RH
169.typedef struct sec
170.{
52b219b5
AM
171. {* The name of the section; the name isn't a copy, the pointer is
172. the same as that passed to bfd_make_section. *}
252b5132 173.
52b219b5
AM
174. const char *name;
175.
176. {* A unique sequence number. *}
177.
178. int id;
252b5132 179.
52b219b5 180. {* Which section is it; 0..nth. *}
252b5132 181.
52b219b5 182. int index;
252b5132 183.
52b219b5 184. {* The next section in the list belonging to the BFD, or NULL. *}
252b5132 185.
52b219b5 186. struct sec *next;
252b5132 187.
52b219b5
AM
188. {* The field flags contains attributes of the section. Some
189. flags are read in from the object file, and some are
190. synthesized from other information. *}
252b5132 191.
52b219b5 192. flagword flags;
252b5132
RH
193.
194.#define SEC_NO_FLAGS 0x000
195.
52b219b5
AM
196. {* Tells the OS to allocate space for this section when loading.
197. This is clear for a section containing debug information only. *}
252b5132
RH
198.#define SEC_ALLOC 0x001
199.
52b219b5
AM
200. {* Tells the OS to load the section from the file when loading.
201. This is clear for a .bss section. *}
252b5132
RH
202.#define SEC_LOAD 0x002
203.
52b219b5
AM
204. {* The section contains data still to be relocated, so there is
205. some relocation information too. *}
252b5132
RH
206.#define SEC_RELOC 0x004
207.
208.#if 0 {* Obsolete ? *}
209.#define SEC_BALIGN 0x008
210.#endif
211.
52b219b5 212. {* A signal to the OS that the section contains read only data. *}
252b5132
RH
213.#define SEC_READONLY 0x010
214.
52b219b5 215. {* The section contains code only. *}
252b5132
RH
216.#define SEC_CODE 0x020
217.
52b219b5 218. {* The section contains data only. *}
252b5132
RH
219.#define SEC_DATA 0x040
220.
52b219b5 221. {* The section will reside in ROM. *}
252b5132
RH
222.#define SEC_ROM 0x080
223.
52b219b5
AM
224. {* The section contains constructor information. This section
225. type is used by the linker to create lists of constructors and
226. destructors used by <<g++>>. When a back end sees a symbol
227. which should be used in a constructor list, it creates a new
228. section for the type of name (e.g., <<__CTOR_LIST__>>), attaches
229. the symbol to it, and builds a relocation. To build the lists
230. of constructors, all the linker has to do is catenate all the
231. sections called <<__CTOR_LIST__>> and relocate the data
232. contained within - exactly the operations it would peform on
233. standard data. *}
252b5132
RH
234.#define SEC_CONSTRUCTOR 0x100
235.
52b219b5
AM
236. {* The section is a constructor, and should be placed at the
237. end of the text, data, or bss section(?). *}
252b5132
RH
238.#define SEC_CONSTRUCTOR_TEXT 0x1100
239.#define SEC_CONSTRUCTOR_DATA 0x2100
240.#define SEC_CONSTRUCTOR_BSS 0x3100
241.
52b219b5
AM
242. {* The section has contents - a data section could be
243. <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>; a debug section could be
244. <<SEC_HAS_CONTENTS>> *}
252b5132
RH
245.#define SEC_HAS_CONTENTS 0x200
246.
52b219b5
AM
247. {* An instruction to the linker to not output the section
248. even if it has information which would normally be written. *}
252b5132
RH
249.#define SEC_NEVER_LOAD 0x400
250.
52b219b5
AM
251. {* The section is a COFF shared library section. This flag is
252. only for the linker. If this type of section appears in
253. the input file, the linker must copy it to the output file
254. without changing the vma or size. FIXME: Although this
255. was originally intended to be general, it really is COFF
256. specific (and the flag was renamed to indicate this). It
257. might be cleaner to have some more general mechanism to
258. allow the back end to control what the linker does with
259. sections. *}
252b5132
RH
260.#define SEC_COFF_SHARED_LIBRARY 0x800
261.
1bd91689
AM
262. {* The section has GOT references. This flag is only for the
263. linker, and is currently only used by the elf32-hppa back end.
264. It will be set if global offset table references were detected
265. in this section, which indicate to the linker that the section
266. contains PIC code, and must be handled specially when doing a
267. static link. *}
268.#define SEC_HAS_GOT_REF 0x4000
269.
52b219b5
AM
270. {* The section contains common symbols (symbols may be defined
271. multiple times, the value of a symbol is the amount of
272. space it requires, and the largest symbol value is the one
273. used). Most targets have exactly one of these (which we
274. translate to bfd_com_section_ptr), but ECOFF has two. *}
252b5132
RH
275.#define SEC_IS_COMMON 0x8000
276.
52b219b5
AM
277. {* The section contains only debugging information. For
278. example, this is set for ELF .debug and .stab sections.
279. strip tests this flag to see if a section can be
280. discarded. *}
252b5132
RH
281.#define SEC_DEBUGGING 0x10000
282.
52b219b5
AM
283. {* The contents of this section are held in memory pointed to
284. by the contents field. This is checked by bfd_get_section_contents,
285. and the data is retrieved from memory if appropriate. *}
252b5132
RH
286.#define SEC_IN_MEMORY 0x20000
287.
52b219b5
AM
288. {* The contents of this section are to be excluded by the
289. linker for executable and shared objects unless those
290. objects are to be further relocated. *}
252b5132
RH
291.#define SEC_EXCLUDE 0x40000
292.
52b219b5
AM
293. {* The contents of this section are to be sorted by the
294. based on the address specified in the associated symbol
295. table. *}
252b5132
RH
296.#define SEC_SORT_ENTRIES 0x80000
297.
52b219b5
AM
298. {* When linking, duplicate sections of the same name should be
299. discarded, rather than being combined into a single section as
300. is usually done. This is similar to how common symbols are
301. handled. See SEC_LINK_DUPLICATES below. *}
252b5132
RH
302.#define SEC_LINK_ONCE 0x100000
303.
52b219b5
AM
304. {* If SEC_LINK_ONCE is set, this bitfield describes how the linker
305. should handle duplicate sections. *}
252b5132
RH
306.#define SEC_LINK_DUPLICATES 0x600000
307.
52b219b5
AM
308. {* This value for SEC_LINK_DUPLICATES means that duplicate
309. sections with the same name should simply be discarded. *}
252b5132
RH
310.#define SEC_LINK_DUPLICATES_DISCARD 0x0
311.
52b219b5
AM
312. {* This value for SEC_LINK_DUPLICATES means that the linker
313. should warn if there are any duplicate sections, although
314. it should still only link one copy. *}
252b5132
RH
315.#define SEC_LINK_DUPLICATES_ONE_ONLY 0x200000
316.
52b219b5
AM
317. {* This value for SEC_LINK_DUPLICATES means that the linker
318. should warn if any duplicate sections are a different size. *}
252b5132
RH
319.#define SEC_LINK_DUPLICATES_SAME_SIZE 0x400000
320.
52b219b5
AM
321. {* This value for SEC_LINK_DUPLICATES means that the linker
322. should warn if any duplicate sections contain different
323. contents. *}
252b5132
RH
324.#define SEC_LINK_DUPLICATES_SAME_CONTENTS 0x600000
325.
52b219b5
AM
326. {* This section was created by the linker as part of dynamic
327. relocation or other arcane processing. It is skipped when
328. going through the first-pass output, trusting that someone
329. else up the line will take care of it later. *}
252b5132
RH
330.#define SEC_LINKER_CREATED 0x800000
331.
52b219b5 332. {* This section should not be subject to garbage collection. *}
252b5132
RH
333.#define SEC_KEEP 0x1000000
334.
52b219b5
AM
335. {* This section contains "short" data, and should be placed
336. "near" the GP. *}
851edbaf 337.#define SEC_SMALL_DATA 0x2000000
0c3ff40b 338.
52b219b5
AM
339. {* This section contains data which may be shared with other
340. executables or shared objects. *}
bd826630
ILT
341.#define SEC_SHARED 0x4000000
342.
52b219b5
AM
343. {* When a section with this flag is being linked, then if the size of
344. the input section is less than a page, it should not cross a page
345. boundary. If the size of the input section is one page or more, it
346. should be aligned on a page boundary. *}
34cbe64e
TW
347.#define SEC_BLOCK 0x8000000
348.
52b219b5
AM
349. {* Conditionally link this section; do not link if there are no
350. references found to any symbol in the section. *}
34cbe64e
TW
351.#define SEC_CLINK 0x10000000
352.
2dd439c5
L
353. {* Attempt to merge identical entities in the section.
354. Entity size is given in the entsize field. *}
355.#define SEC_MERGE 0x20000000
356.
357. {* If given with SEC_MERGE, entities to merge are zero terminated
358. strings where entsize specifies character size instead of fixed
359. size entries. *}
360.#define SEC_STRINGS 0x40000000
361.
52b219b5 362. {* End of section flags. *}
252b5132 363.
52b219b5 364. {* Some internal packed boolean fields. *}
252b5132 365.
52b219b5
AM
366. {* See the vma field. *}
367. unsigned int user_set_vma : 1;
252b5132 368.
52b219b5
AM
369. {* Whether relocations have been processed. *}
370. unsigned int reloc_done : 1;
252b5132 371.
52b219b5
AM
372. {* A mark flag used by some of the linker backends. *}
373. unsigned int linker_mark : 1;
252b5132 374.
d1778b88
AM
375. {* Another mark flag used by some of the linker backends. Set for
376. output sections that have a input section. *}
377. unsigned int linker_has_input : 1;
378.
52b219b5
AM
379. {* A mark flag used by some linker backends for garbage collection. *}
380. unsigned int gc_mark : 1;
252b5132 381.
bc67d8a6
NC
382. {* Used by the ELF code to mark sections which have been allocated to segments. *}
383. unsigned int segment_mark : 1;
384.
52b219b5 385. {* End of internal packed boolean fields. *}
252b5132 386.
52b219b5
AM
387. {* The virtual memory address of the section - where it will be
388. at run time. The symbols are relocated against this. The
389. user_set_vma flag is maintained by bfd; if it's not set, the
390. backend can assign addresses (for example, in <<a.out>>, where
391. the default address for <<.data>> is dependent on the specific
392. target and various flags). *}
252b5132 393.
52b219b5 394. bfd_vma vma;
252b5132 395.
52b219b5
AM
396. {* The load address of the section - where it would be in a
397. rom image; really only used for writing section header
398. information. *}
252b5132 399.
52b219b5 400. bfd_vma lma;
252b5132 401.
52b219b5
AM
402. {* The size of the section in octets, as it will be output.
403. Contains a value even if the section has no contents (e.g., the
404. size of <<.bss>>). This will be filled in after relocation. *}
252b5132 405.
52b219b5 406. bfd_size_type _cooked_size;
252b5132 407.
52b219b5
AM
408. {* The original size on disk of the section, in octets. Normally this
409. value is the same as the size, but if some relaxing has
410. been done, then this value will be bigger. *}
252b5132 411.
52b219b5 412. bfd_size_type _raw_size;
252b5132 413.
52b219b5
AM
414. {* If this section is going to be output, then this value is the
415. offset in *bytes* into the output section of the first byte in the
416. input section (byte ==> smallest addressable unit on the
417. target). In most cases, if this was going to start at the
418. 100th octet (8-bit quantity) in the output section, this value
419. would be 100. However, if the target byte size is 16 bits
420. (bfd_octets_per_byte is "2"), this value would be 50. *}
252b5132 421.
52b219b5 422. bfd_vma output_offset;
252b5132 423.
52b219b5 424. {* The output section through which to map on output. *}
252b5132 425.
52b219b5 426. struct sec *output_section;
252b5132 427.
52b219b5
AM
428. {* The alignment requirement of the section, as an exponent of 2 -
429. e.g., 3 aligns to 2^3 (or 8). *}
252b5132 430.
52b219b5 431. unsigned int alignment_power;
252b5132 432.
52b219b5
AM
433. {* If an input section, a pointer to a vector of relocation
434. records for the data in this section. *}
252b5132 435.
52b219b5 436. struct reloc_cache_entry *relocation;
252b5132 437.
52b219b5
AM
438. {* If an output section, a pointer to a vector of pointers to
439. relocation records for the data in this section. *}
252b5132 440.
52b219b5 441. struct reloc_cache_entry **orelocation;
252b5132 442.
52b219b5 443. {* The number of relocation records in one of the above *}
252b5132 444.
52b219b5 445. unsigned reloc_count;
252b5132 446.
52b219b5
AM
447. {* Information below is back end specific - and not always used
448. or updated. *}
252b5132 449.
52b219b5 450. {* File position of section data. *}
252b5132 451.
52b219b5 452. file_ptr filepos;
252b5132 453.
52b219b5 454. {* File position of relocation info. *}
252b5132 455.
52b219b5 456. file_ptr rel_filepos;
252b5132 457.
52b219b5 458. {* File position of line data. *}
252b5132 459.
52b219b5 460. file_ptr line_filepos;
252b5132 461.
52b219b5 462. {* Pointer to data for applications. *}
252b5132 463.
52b219b5 464. PTR userdata;
252b5132 465.
52b219b5
AM
466. {* If the SEC_IN_MEMORY flag is set, this points to the actual
467. contents. *}
468. unsigned char *contents;
252b5132 469.
52b219b5 470. {* Attached line number information. *}
252b5132 471.
52b219b5 472. alent *lineno;
252b5132 473.
52b219b5 474. {* Number of line number records. *}
252b5132 475.
52b219b5 476. unsigned int lineno_count;
252b5132 477.
2dd439c5
L
478. {* Entity size for merging purposes. *}
479.
480. unsigned int entsize;
481.
52b219b5 482. {* Optional information about a COMDAT entry; NULL if not COMDAT. *}
022a5af4 483.
52b219b5 484. struct bfd_comdat_info *comdat;
022a5af4 485.
24376d1b
AM
486. {* Points to the kept section if this section is a link-once section,
487. and is discarded. *}
488. struct sec *kept_section;
489.
52b219b5
AM
490. {* When a section is being output, this value changes as more
491. linenumbers are written out. *}
252b5132 492.
52b219b5 493. file_ptr moving_line_filepos;
252b5132 494.
52b219b5 495. {* What the section number is in the target world. *}
252b5132 496.
52b219b5 497. int target_index;
252b5132 498.
52b219b5 499. PTR used_by_bfd;
252b5132 500.
52b219b5
AM
501. {* If this is a constructor section then here is a list of the
502. relocations created to relocate items within it. *}
252b5132 503.
52b219b5 504. struct relent_chain *constructor_chain;
252b5132 505.
52b219b5 506. {* The BFD which owns the section. *}
252b5132 507.
52b219b5 508. bfd *owner;
252b5132 509.
52b219b5
AM
510. {* A symbol which points at this section only *}
511. struct symbol_cache_entry *symbol;
512. struct symbol_cache_entry **symbol_ptr_ptr;
252b5132 513.
52b219b5
AM
514. struct bfd_link_order *link_order_head;
515. struct bfd_link_order *link_order_tail;
252b5132
RH
516.} asection ;
517.
52b219b5
AM
518.{* These sections are global, and are managed by BFD. The application
519. and target back end are not permitted to change the values in
520. these sections. New code should use the section_ptr macros rather
521. than referring directly to the const sections. The const sections
522. may eventually vanish. *}
252b5132
RH
523.#define BFD_ABS_SECTION_NAME "*ABS*"
524.#define BFD_UND_SECTION_NAME "*UND*"
525.#define BFD_COM_SECTION_NAME "*COM*"
526.#define BFD_IND_SECTION_NAME "*IND*"
527.
52b219b5 528.{* the absolute section *}
252b5132
RH
529.extern const asection bfd_abs_section;
530.#define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
531.#define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
52b219b5 532.{* Pointer to the undefined section *}
252b5132
RH
533.extern const asection bfd_und_section;
534.#define bfd_und_section_ptr ((asection *) &bfd_und_section)
535.#define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
52b219b5 536.{* Pointer to the common section *}
252b5132
RH
537.extern const asection bfd_com_section;
538.#define bfd_com_section_ptr ((asection *) &bfd_com_section)
52b219b5 539.{* Pointer to the indirect section *}
252b5132
RH
540.extern const asection bfd_ind_section;
541.#define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
542.#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
543.
544.extern const struct symbol_cache_entry * const bfd_abs_symbol;
545.extern const struct symbol_cache_entry * const bfd_com_symbol;
546.extern const struct symbol_cache_entry * const bfd_und_symbol;
547.extern const struct symbol_cache_entry * const bfd_ind_symbol;
548.#define bfd_get_section_size_before_reloc(section) \
f6af82bd
AM
549. ((section)->reloc_done ? (abort (), (bfd_size_type) 1) \
550. : (section)->_raw_size)
252b5132 551.#define bfd_get_section_size_after_reloc(section) \
f6af82bd
AM
552. ((section)->reloc_done ? (section)->_cooked_size \
553. : (abort (), (bfd_size_type) 1))
252b5132
RH
554*/
555
22bc497d
ILT
556/* We use a macro to initialize the static asymbol structures because
557 traditional C does not permit us to initialize a union member while
558 gcc warns if we don't initialize it. */
559 /* the_bfd, name, value, attr, section [, udata] */
560#ifdef __STDC__
561#define GLOBAL_SYM_INIT(NAME, SECTION) \
562 { 0, NAME, 0, BSF_SECTION_SYM, (asection *) SECTION, { 0 }}
563#else
564#define GLOBAL_SYM_INIT(NAME, SECTION) \
565 { 0, NAME, 0, BSF_SECTION_SYM, (asection *) SECTION }
566#endif
567
252b5132
RH
568/* These symbols are global, not specific to any BFD. Therefore, anything
569 that tries to change them is broken, and should be repaired. */
22bc497d 570
252b5132
RH
571static const asymbol global_syms[] =
572{
22bc497d
ILT
573 GLOBAL_SYM_INIT (BFD_COM_SECTION_NAME, &bfd_com_section),
574 GLOBAL_SYM_INIT (BFD_UND_SECTION_NAME, &bfd_und_section),
575 GLOBAL_SYM_INIT (BFD_ABS_SECTION_NAME, &bfd_abs_section),
576 GLOBAL_SYM_INIT (BFD_IND_SECTION_NAME, &bfd_ind_section)
252b5132
RH
577};
578
bc67d8a6
NC
579#define STD_SECTION(SEC, FLAGS, SYM, NAME, IDX) \
580 const asymbol * const SYM = (asymbol *) &global_syms[IDX]; \
581 const asection SEC = \
3df7b4e2
AM
582 /* name, id, index, next, flags, user_set_vma, reloc_done, */ \
583 { NAME, IDX, 0, NULL, FLAGS, 0, 0, \
52b219b5 584 \
d1778b88
AM
585 /* linker_mark, linker_has_input, gc_mark, segment_mark, */ \
586 0, 0, 1, 0, \
587 \
588 /* vma, lma, _cooked_size, _raw_size, */ \
589 0, 0, 0, 0, \
52b219b5 590 \
d1778b88
AM
591 /* output_offset, output_section, alignment_power, */ \
592 0, (struct sec *) &SEC, 0, \
52b219b5
AM
593 \
594 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \
595 NULL, NULL, 0, 0, 0, \
596 \
597 /* line_filepos, userdata, contents, lineno, lineno_count, */ \
598 0, NULL, NULL, NULL, 0, \
599 \
767e4b0d
JJ
600 /* entsize, comdat, kept_section, moving_line_filepos, */ \
601 0, NULL, NULL, 0, \
52b219b5 602 \
767e4b0d
JJ
603 /* target_index, used_by_bfd, constructor_chain, owner, */ \
604 0, NULL, NULL, NULL, \
52b219b5
AM
605 \
606 /* symbol, */ \
607 (struct symbol_cache_entry *) &global_syms[IDX], \
608 \
609 /* symbol_ptr_ptr, */ \
610 (struct symbol_cache_entry **) &SYM, \
611 \
612 /* link_order_head, link_order_tail */ \
613 NULL, NULL \
022a5af4 614 }
252b5132
RH
615
616STD_SECTION (bfd_com_section, SEC_IS_COMMON, bfd_com_symbol,
617 BFD_COM_SECTION_NAME, 0);
618STD_SECTION (bfd_und_section, 0, bfd_und_symbol, BFD_UND_SECTION_NAME, 1);
619STD_SECTION (bfd_abs_section, 0, bfd_abs_symbol, BFD_ABS_SECTION_NAME, 2);
620STD_SECTION (bfd_ind_section, 0, bfd_ind_symbol, BFD_IND_SECTION_NAME, 3);
621#undef STD_SECTION
622
623/*
624DOCDD
625INODE
626section prototypes, , typedef asection, Sections
627SUBSECTION
628 Section prototypes
629
630These are the functions exported by the section handling part of BFD.
631*/
632
633/*
634FUNCTION
635 bfd_get_section_by_name
636
637SYNOPSIS
52b219b5 638 asection *bfd_get_section_by_name(bfd *abfd, const char *name);
252b5132
RH
639
640DESCRIPTION
641 Run through @var{abfd} and return the one of the
642 <<asection>>s whose name matches @var{name}, otherwise <<NULL>>.
643 @xref{Sections}, for more information.
644
645 This should only be used in special cases; the normal way to process
646 all sections of a given name is to use <<bfd_map_over_sections>> and
647 <<strcmp>> on the name (or better yet, base it on the section flags
648 or something else) for each section.
649*/
650
651asection *
652bfd_get_section_by_name (abfd, name)
653 bfd *abfd;
52b219b5 654 const char *name;
252b5132
RH
655{
656 asection *sect;
657
658 for (sect = abfd->sections; sect != NULL; sect = sect->next)
659 if (!strcmp (sect->name, name))
660 return sect;
661 return NULL;
662}
663
1bd91689
AM
664/*
665FUNCTION
666 bfd_get_unique_section_name
667
668SYNOPSIS
669 char *bfd_get_unique_section_name(bfd *abfd,
a966dba9 670 const char *templat,
1bd91689
AM
671 int *count);
672
673DESCRIPTION
674 Invent a section name that is unique in @var{abfd} by tacking
77cb06e9
AM
675 a dot and a digit suffix onto the original @var{templat}. If
676 @var{count} is non-NULL, then it specifies the first number
677 tried as a suffix to generate a unique name. The value
678 pointed to by @var{count} will be incremented in this case.
1bd91689
AM
679*/
680
681char *
a966dba9 682bfd_get_unique_section_name (abfd, templat, count)
1bd91689 683 bfd *abfd;
a966dba9 684 const char *templat;
1bd91689
AM
685 int *count;
686{
687 int num;
688 unsigned int len;
689 char *sname;
690
a966dba9 691 len = strlen (templat);
dc810e39 692 sname = bfd_malloc ((bfd_size_type) len + 8);
b3ea3584
AM
693 if (sname == NULL)
694 return NULL;
a966dba9 695 strcpy (sname, templat);
1bd91689
AM
696 num = 1;
697 if (count != NULL)
698 num = *count;
699
700 do
701 {
702 /* If we have a million sections, something is badly wrong. */
703 if (num > 999999)
704 abort ();
77cb06e9 705 sprintf (sname + len, ".%d", num++);
1bd91689
AM
706 }
707 while (bfd_get_section_by_name (abfd, sname) != NULL);
708
709 if (count != NULL)
710 *count = num;
711 return sname;
712}
713
252b5132
RH
714/*
715FUNCTION
716 bfd_make_section_old_way
717
718SYNOPSIS
52b219b5 719 asection *bfd_make_section_old_way(bfd *abfd, const char *name);
252b5132
RH
720
721DESCRIPTION
722 Create a new empty section called @var{name}
723 and attach it to the end of the chain of sections for the
724 BFD @var{abfd}. An attempt to create a section with a name which
725 is already in use returns its pointer without changing the
726 section chain.
727
728 It has the funny name since this is the way it used to be
729 before it was rewritten....
730
731 Possible errors are:
732 o <<bfd_error_invalid_operation>> -
733 If output has already started for this BFD.
734 o <<bfd_error_no_memory>> -
735 If memory allocation fails.
736
737*/
738
252b5132
RH
739asection *
740bfd_make_section_old_way (abfd, name)
741 bfd *abfd;
52b219b5 742 const char *name;
252b5132
RH
743{
744 asection *sec = bfd_get_section_by_name (abfd, name);
745 if (sec == (asection *) NULL)
746 {
747 sec = bfd_make_section (abfd, name);
748 }
749 return sec;
750}
751
752/*
753FUNCTION
754 bfd_make_section_anyway
755
756SYNOPSIS
52b219b5 757 asection *bfd_make_section_anyway(bfd *abfd, const char *name);
252b5132
RH
758
759DESCRIPTION
760 Create a new empty section called @var{name} and attach it to the end of
761 the chain of sections for @var{abfd}. Create a new section even if there
762 is already a section with that name.
763
764 Return <<NULL>> and set <<bfd_error>> on error; possible errors are:
765 o <<bfd_error_invalid_operation>> - If output has already started for @var{abfd}.
766 o <<bfd_error_no_memory>> - If memory allocation fails.
767*/
768
769sec_ptr
770bfd_make_section_anyway (abfd, name)
771 bfd *abfd;
52b219b5 772 const char *name;
252b5132 773{
3df7b4e2 774 static int section_id = 0x10; /* id 0 to 3 used by STD_SECTION. */
252b5132
RH
775 asection *newsect;
776 asection **prev = &abfd->sections;
777 asection *sect = abfd->sections;
778
779 if (abfd->output_has_begun)
780 {
781 bfd_set_error (bfd_error_invalid_operation);
782 return NULL;
783 }
784
785 while (sect)
786 {
787 prev = &sect->next;
788 sect = sect->next;
789 }
790
dc810e39 791 newsect = (asection *) bfd_zalloc (abfd, (bfd_size_type) sizeof (asection));
252b5132
RH
792 if (newsect == NULL)
793 return NULL;
794
795 newsect->name = name;
52b219b5 796 newsect->id = section_id++;
252b5132
RH
797 newsect->index = abfd->section_count++;
798 newsect->flags = SEC_NO_FLAGS;
799
800 newsect->userdata = NULL;
801 newsect->contents = NULL;
802 newsect->next = (asection *) NULL;
803 newsect->relocation = (arelent *) NULL;
804 newsect->reloc_count = 0;
805 newsect->line_filepos = 0;
806 newsect->owner = abfd;
022a5af4 807 newsect->comdat = NULL;
24376d1b 808 newsect->kept_section = NULL;
252b5132
RH
809
810 /* Create a symbol whos only job is to point to this section. This is
811 useful for things like relocs which are relative to the base of a
812 section. */
813 newsect->symbol = bfd_make_empty_symbol (abfd);
814 if (newsect->symbol == NULL)
4d7ce4dd
AM
815 {
816 bfd_release (abfd, newsect);
817 return NULL;
818 }
252b5132
RH
819 newsect->symbol->name = name;
820 newsect->symbol->value = 0;
821 newsect->symbol->section = newsect;
822 newsect->symbol->flags = BSF_SECTION_SYM;
823
824 newsect->symbol_ptr_ptr = &newsect->symbol;
825
826 if (BFD_SEND (abfd, _new_section_hook, (abfd, newsect)) != true)
827 {
4d7ce4dd 828 bfd_release (abfd, newsect);
252b5132
RH
829 return NULL;
830 }
831
832 *prev = newsect;
833 return newsect;
834}
835
836/*
837FUNCTION
838 bfd_make_section
839
840SYNOPSIS
52b219b5 841 asection *bfd_make_section(bfd *, const char *name);
252b5132
RH
842
843DESCRIPTION
844 Like <<bfd_make_section_anyway>>, but return <<NULL>> (without calling
845 bfd_set_error ()) without changing the section chain if there is already a
846 section named @var{name}. If there is an error, return <<NULL>> and set
847 <<bfd_error>>.
848*/
849
850asection *
851bfd_make_section (abfd, name)
852 bfd *abfd;
52b219b5 853 const char *name;
252b5132
RH
854{
855 asection *sect = abfd->sections;
856
857 if (strcmp (name, BFD_ABS_SECTION_NAME) == 0)
858 {
859 return bfd_abs_section_ptr;
860 }
861 if (strcmp (name, BFD_COM_SECTION_NAME) == 0)
862 {
863 return bfd_com_section_ptr;
864 }
865 if (strcmp (name, BFD_UND_SECTION_NAME) == 0)
866 {
867 return bfd_und_section_ptr;
868 }
869
870 if (strcmp (name, BFD_IND_SECTION_NAME) == 0)
871 {
872 return bfd_ind_section_ptr;
873 }
874
875 while (sect)
876 {
877 if (!strcmp (sect->name, name))
878 return NULL;
879 sect = sect->next;
880 }
881
882 /* The name is not already used; go ahead and make a new section. */
883 return bfd_make_section_anyway (abfd, name);
884}
885
252b5132
RH
886/*
887FUNCTION
888 bfd_set_section_flags
889
890SYNOPSIS
891 boolean bfd_set_section_flags(bfd *abfd, asection *sec, flagword flags);
892
893DESCRIPTION
894 Set the attributes of the section @var{sec} in the BFD
895 @var{abfd} to the value @var{flags}. Return <<true>> on success,
896 <<false>> on error. Possible error returns are:
897
898 o <<bfd_error_invalid_operation>> -
899 The section cannot have one or more of the attributes
900 requested. For example, a .bss section in <<a.out>> may not
901 have the <<SEC_HAS_CONTENTS>> field set.
902
903*/
904
905/*ARGSUSED*/
906boolean
907bfd_set_section_flags (abfd, section, flags)
7442e600 908 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
909 sec_ptr section;
910 flagword flags;
911{
912#if 0
913 /* If you try to copy a text section from an input file (where it
914 has the SEC_CODE flag set) to an output file, this loses big if
915 the bfd_applicable_section_flags (abfd) doesn't have the SEC_CODE
916 set - which it doesn't, at least not for a.out. FIXME */
917
918 if ((flags & bfd_applicable_section_flags (abfd)) != flags)
919 {
920 bfd_set_error (bfd_error_invalid_operation);
921 return false;
922 }
923#endif
924
925 section->flags = flags;
926 return true;
927}
928
252b5132
RH
929/*
930FUNCTION
931 bfd_map_over_sections
932
933SYNOPSIS
934 void bfd_map_over_sections(bfd *abfd,
7b82c249 935 void (*func) (bfd *abfd,
252b5132
RH
936 asection *sect,
937 PTR obj),
938 PTR obj);
939
940DESCRIPTION
941 Call the provided function @var{func} for each section
942 attached to the BFD @var{abfd}, passing @var{obj} as an
943 argument. The function will be called as if by
944
945| func(abfd, the_section, obj);
946
947 This is the prefered method for iterating over sections; an
948 alternative would be to use a loop:
949
950| section *p;
951| for (p = abfd->sections; p != NULL; p = p->next)
952| func(abfd, p, ...)
953
252b5132
RH
954*/
955
956/*VARARGS2*/
957void
958bfd_map_over_sections (abfd, operation, user_storage)
959 bfd *abfd;
960 void (*operation) PARAMS ((bfd * abfd, asection * sect, PTR obj));
961 PTR user_storage;
962{
963 asection *sect;
964 unsigned int i = 0;
965
966 for (sect = abfd->sections; sect != NULL; i++, sect = sect->next)
967 (*operation) (abfd, sect, user_storage);
968
969 if (i != abfd->section_count) /* Debugging */
970 abort ();
971}
972
252b5132
RH
973/*
974FUNCTION
975 bfd_set_section_size
976
977SYNOPSIS
978 boolean bfd_set_section_size(bfd *abfd, asection *sec, bfd_size_type val);
979
980DESCRIPTION
981 Set @var{sec} to the size @var{val}. If the operation is
982 ok, then <<true>> is returned, else <<false>>.
983
984 Possible error returns:
985 o <<bfd_error_invalid_operation>> -
986 Writing has started to the BFD, so setting the size is invalid.
987
988*/
989
990boolean
991bfd_set_section_size (abfd, ptr, val)
992 bfd *abfd;
993 sec_ptr ptr;
994 bfd_size_type val;
995{
996 /* Once you've started writing to any section you cannot create or change
7b82c249 997 the size of any others. */
252b5132
RH
998
999 if (abfd->output_has_begun)
1000 {
1001 bfd_set_error (bfd_error_invalid_operation);
1002 return false;
1003 }
1004
1005 ptr->_cooked_size = val;
1006 ptr->_raw_size = val;
1007
1008 return true;
1009}
1010
1011/*
1012FUNCTION
1013 bfd_set_section_contents
1014
1015SYNOPSIS
dc810e39
AM
1016 boolean bfd_set_section_contents (bfd *abfd, asection *section,
1017 PTR data, file_ptr offset,
1018 bfd_size_type count);
252b5132 1019
252b5132
RH
1020DESCRIPTION
1021 Sets the contents of the section @var{section} in BFD
1022 @var{abfd} to the data starting in memory at @var{data}. The
1023 data is written to the output section starting at offset
9a968f43 1024 @var{offset} for @var{count} octets.
252b5132 1025
252b5132
RH
1026 Normally <<true>> is returned, else <<false>>. Possible error
1027 returns are:
1028 o <<bfd_error_no_contents>> -
1029 The output section does not have the <<SEC_HAS_CONTENTS>>
1030 attribute, so nothing can be written to it.
1031 o and some more too
1032
1033 This routine is front end to the back end function
1034 <<_bfd_set_section_contents>>.
1035
252b5132
RH
1036*/
1037
1038#define bfd_get_section_size_now(abfd,sec) \
1039(sec->reloc_done \
1040 ? bfd_get_section_size_after_reloc (sec) \
1041 : bfd_get_section_size_before_reloc (sec))
1042
1043boolean
1044bfd_set_section_contents (abfd, section, location, offset, count)
1045 bfd *abfd;
1046 sec_ptr section;
1047 PTR location;
1048 file_ptr offset;
1049 bfd_size_type count;
1050{
1051 bfd_size_type sz;
1052
1053 if (!(bfd_get_section_flags (abfd, section) & SEC_HAS_CONTENTS))
1054 {
1055 bfd_set_error (bfd_error_no_contents);
1056 return (false);
1057 }
1058
dc810e39
AM
1059 sz = bfd_get_section_size_now (abfd, section);
1060 if ((bfd_size_type) offset > sz
1061 || count > sz
1062 || offset + count > sz
1063 || count != (size_t) count)
252b5132 1064 {
252b5132
RH
1065 bfd_set_error (bfd_error_bad_value);
1066 return false;
1067 }
252b5132
RH
1068
1069 switch (abfd->direction)
1070 {
1071 case read_direction:
1072 case no_direction:
1073 bfd_set_error (bfd_error_invalid_operation);
1074 return false;
1075
1076 case write_direction:
1077 break;
1078
1079 case both_direction:
1080 /* File is opened for update. `output_has_begun' some time ago when
1081 the file was created. Do not recompute sections sizes or alignments
1082 in _bfd_set_section_content. */
1083 abfd->output_has_begun = true;
1084 break;
1085 }
1086
9a951beb
RH
1087 /* Record a copy of the data in memory if desired. */
1088 if (section->contents
1089 && location != section->contents + offset)
dc810e39 1090 memcpy (section->contents + offset, location, (size_t) count);
9a951beb 1091
252b5132
RH
1092 if (BFD_SEND (abfd, _bfd_set_section_contents,
1093 (abfd, section, location, offset, count)))
1094 {
1095 abfd->output_has_begun = true;
1096 return true;
1097 }
1098
1099 return false;
1100}
1101
1102/*
1103FUNCTION
1104 bfd_get_section_contents
1105
1106SYNOPSIS
dc810e39
AM
1107 boolean bfd_get_section_contents (bfd *abfd, asection *section,
1108 PTR location, file_ptr offset,
1109 bfd_size_type count);
252b5132
RH
1110
1111DESCRIPTION
1112 Read data from @var{section} in BFD @var{abfd}
1113 into memory starting at @var{location}. The data is read at an
1114 offset of @var{offset} from the start of the input section,
1115 and is read for @var{count} bytes.
1116
1117 If the contents of a constructor with the <<SEC_CONSTRUCTOR>>
1118 flag set are requested or if the section does not have the
1119 <<SEC_HAS_CONTENTS>> flag set, then the @var{location} is filled
1120 with zeroes. If no errors occur, <<true>> is returned, else
1121 <<false>>.
1122
252b5132
RH
1123*/
1124boolean
1125bfd_get_section_contents (abfd, section, location, offset, count)
1126 bfd *abfd;
1127 sec_ptr section;
1128 PTR location;
1129 file_ptr offset;
1130 bfd_size_type count;
1131{
1132 bfd_size_type sz;
1133
1134 if (section->flags & SEC_CONSTRUCTOR)
1135 {
dc810e39 1136 memset (location, 0, (size_t) count);
252b5132
RH
1137 return true;
1138 }
1139
dc810e39
AM
1140 /* Even if reloc_done is true, this function reads unrelocated
1141 contents, so we want the raw size. */
1142 sz = section->_raw_size;
1143 if ((bfd_size_type) offset > sz
1144 || count > sz
1145 || offset + count > sz
1146 || count != (size_t) count)
252b5132 1147 {
252b5132
RH
1148 bfd_set_error (bfd_error_bad_value);
1149 return false;
1150 }
252b5132
RH
1151
1152 if (count == 0)
1153 /* Don't bother. */
1154 return true;
1155
1156 if ((section->flags & SEC_HAS_CONTENTS) == 0)
1157 {
dc810e39 1158 memset (location, 0, (size_t) count);
252b5132
RH
1159 return true;
1160 }
1161
1162 if ((section->flags & SEC_IN_MEMORY) != 0)
1163 {
1164 memcpy (location, section->contents + offset, (size_t) count);
1165 return true;
1166 }
1167
1168 return BFD_SEND (abfd, _bfd_get_section_contents,
1169 (abfd, section, location, offset, count));
1170}
1171
1172/*
1173FUNCTION
1174 bfd_copy_private_section_data
1175
1176SYNOPSIS
dc810e39
AM
1177 boolean bfd_copy_private_section_data (bfd *ibfd, asection *isec,
1178 bfd *obfd, asection *osec);
252b5132
RH
1179
1180DESCRIPTION
1181 Copy private section information from @var{isec} in the BFD
1182 @var{ibfd} to the section @var{osec} in the BFD @var{obfd}.
1183 Return <<true>> on success, <<false>> on error. Possible error
1184 returns are:
1185
1186 o <<bfd_error_no_memory>> -
1187 Not enough memory exists to create private data for @var{osec}.
1188
1189.#define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
1190. BFD_SEND (obfd, _bfd_copy_private_section_data, \
1191. (ibfd, isection, obfd, osection))
1192*/
1193
1194/*
1195FUNCTION
1196 _bfd_strip_section_from_output
1197
1198SYNOPSIS
1199 void _bfd_strip_section_from_output
7f8d5fc9 1200 (struct bfd_link_info *info, asection *section);
252b5132
RH
1201
1202DESCRIPTION
7f8d5fc9
ILT
1203 Remove @var{section} from the output. If the output section
1204 becomes empty, remove it from the output bfd. @var{info} may
1205 be NULL; if it is not, it is used to decide whether the output
1206 section is empty.
252b5132
RH
1207*/
1208void
7f8d5fc9
ILT
1209_bfd_strip_section_from_output (info, s)
1210 struct bfd_link_info *info;
252b5132
RH
1211 asection *s;
1212{
1213 asection **spp, *os;
1214 struct bfd_link_order *p, *pp;
7f8d5fc9 1215 boolean keep_os;
252b5132 1216
7f8d5fc9
ILT
1217 /* Excise the input section from the link order.
1218
1219 FIXME: For all calls that I can see to this function, the link
1220 orders have not yet been set up. So why are we checking them? --
1221 Ian */
252b5132 1222 os = s->output_section;
2f484710
HPN
1223
1224 /* Handle a section that wasn't output. */
1225 if (os == NULL)
1226 return;
1227
252b5132
RH
1228 for (p = os->link_order_head, pp = NULL; p != NULL; pp = p, p = p->next)
1229 if (p->type == bfd_indirect_link_order
1230 && p->u.indirect.section == s)
1231 {
252b5132
RH
1232 if (pp)
1233 pp->next = p->next;
1234 else
1235 os->link_order_head = p->next;
1236 if (!p->next)
1237 os->link_order_tail = pp;
9d7428a9
RH
1238 break;
1239 }
252b5132 1240
7f8d5fc9
ILT
1241 keep_os = os->link_order_head != NULL;
1242
1243 if (! keep_os && info != NULL)
1244 {
1245 bfd *abfd;
1246 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
1247 {
1248 asection *is;
1249 for (is = abfd->sections; is != NULL; is = is->next)
1250 {
1251 if (is != s && is->output_section == os)
1252 break;
1253 }
1254 if (is != NULL)
1255 break;
1256 }
1257 if (abfd != NULL)
1258 keep_os = true;
1259 }
1260
0bde07d4 1261 /* If the output section is empty, remove it too. Careful about sections
52b219b5 1262 that have been discarded in the link script -- they are mapped to
0bde07d4 1263 bfd_abs_section, which has no owner. */
7f8d5fc9 1264 if (!keep_os && os->owner != NULL)
9d7428a9
RH
1265 {
1266 for (spp = &os->owner->sections; *spp; spp = &(*spp)->next)
1267 if (*spp == os)
252b5132 1268 {
9d7428a9
RH
1269 *spp = os->next;
1270 os->owner->section_count--;
1271 break;
252b5132 1272 }
9d7428a9 1273 }
252b5132 1274}
This page took 0.154812 seconds and 4 git commands to generate.