Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Read a symbol table in MIPS' format (Third-Eye). |
303d2914 | 2 | |
42a4f53d | 3 | Copyright (C) 1986-2019 Free Software Foundation, Inc. |
303d2914 | 4 | |
c906108c SS |
5 | Contributed by Alessandro Forin (af@cs.cmu.edu) at CMU. Major work |
6 | by Per Bothner, John Gilmore and Ian Lance Taylor at Cygnus Support. | |
7 | ||
c5aa993b | 8 | This file is part of GDB. |
c906108c | 9 | |
c5aa993b JM |
10 | This program is free software; you can redistribute it and/or modify |
11 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 12 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 13 | (at your option) any later version. |
c906108c | 14 | |
c5aa993b JM |
15 | This program is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | GNU General Public License for more details. | |
c906108c | 19 | |
c5aa993b | 20 | You should have received a copy of the GNU General Public License |
a9762ec7 | 21 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
22 | |
23 | /* Read symbols from an ECOFF file. Most of the work is done in | |
24 | mdebugread.c. */ | |
25 | ||
26 | #include "defs.h" | |
c906108c SS |
27 | #include "bfd.h" |
28 | #include "symtab.h" | |
c906108c | 29 | #include "objfiles.h" |
c906108c | 30 | #include "stabsread.h" |
0e8f53ba | 31 | #include "mdebugread.h" |
c906108c SS |
32 | |
33 | #include "coff/sym.h" | |
34 | #include "coff/internal.h" | |
35 | #include "coff/ecoff.h" | |
36 | #include "libcoff.h" /* Private BFD COFF information. */ | |
37 | #include "libecoff.h" /* Private BFD ECOFF information. */ | |
38 | #include "elf/common.h" | |
4fbb74a6 | 39 | #include "elf/internal.h" |
c906108c SS |
40 | #include "elf/mips.h" |
41 | ||
ccefe4c4 TT |
42 | #include "psymtab.h" |
43 | ||
c906108c | 44 | static void |
8dddcb8f TT |
45 | read_alphacoff_dynamic_symtab (minimal_symbol_reader &, |
46 | struct section_offsets *, | |
a14ed312 | 47 | struct objfile *objfile); |
c906108c SS |
48 | |
49 | /* Initialize anything that needs initializing when a completely new | |
50 | symbol file is specified (not just adding some symbols from another | |
51 | file, e.g. a shared library). */ | |
52 | ||
c906108c | 53 | static void |
fba45db2 | 54 | mipscoff_new_init (struct objfile *ignore) |
c906108c | 55 | { |
c906108c | 56 | stabsread_new_init (); |
c906108c SS |
57 | } |
58 | ||
59 | /* Initialize to read a symbol file (nothing to do). */ | |
60 | ||
61 | static void | |
fba45db2 | 62 | mipscoff_symfile_init (struct objfile *objfile) |
c906108c SS |
63 | { |
64 | } | |
65 | ||
66 | /* Read a symbol file from a file. */ | |
67 | ||
68 | static void | |
b15cc25c | 69 | mipscoff_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags) |
c906108c SS |
70 | { |
71 | bfd *abfd = objfile->obfd; | |
c906108c | 72 | |
d25e8719 | 73 | minimal_symbol_reader reader (objfile); |
c906108c SS |
74 | |
75 | /* Now that the executable file is positioned at symbol table, | |
76 | process it and define symbols accordingly. */ | |
77 | ||
78 | if (!((*ecoff_backend (abfd)->debug_swap.read_debug_info) | |
cafb3438 | 79 | (abfd, NULL, &ecoff_data (abfd)->debug_info))) |
8a3fe4f8 | 80 | error (_("Error reading symbol table: %s"), bfd_errmsg (bfd_get_error ())); |
c906108c | 81 | |
8dddcb8f | 82 | mdebug_build_psymtabs (reader, objfile, &ecoff_backend (abfd)->debug_swap, |
d4f3574e | 83 | &ecoff_data (abfd)->debug_info); |
c906108c SS |
84 | |
85 | /* Add alpha coff dynamic symbols. */ | |
86 | ||
8dddcb8f | 87 | read_alphacoff_dynamic_symtab (reader, objfile->section_offsets, objfile); |
c906108c SS |
88 | |
89 | /* Install any minimal symbols that have been collected as the current | |
025bb325 | 90 | minimal symbols for this objfile. */ |
c906108c | 91 | |
d25e8719 | 92 | reader.install (); |
c906108c SS |
93 | } |
94 | ||
95 | /* Perform any local cleanups required when we are done with a | |
96 | particular objfile. */ | |
97 | ||
98 | static void | |
fba45db2 | 99 | mipscoff_symfile_finish (struct objfile *objfile) |
c906108c SS |
100 | { |
101 | } | |
102 | ||
103 | /* Alpha OSF/1 encapsulates the dynamic symbols in ELF format in a | |
303d2914 MK |
104 | standard COFF section. The ELF format for the symbols differs from |
105 | the format defined in elf/external.h. It seems that a normal ELF | |
106 | 32-bit format is used, and the representation only changes because | |
025bb325 | 107 | longs are 64-bit on the alpha. In addition, the handling of |
303d2914 MK |
108 | text/data section indices for symbols is different from the ELF |
109 | ABI. As the BFD linker currently does not support dynamic linking | |
110 | on the alpha, there seems to be no reason to pollute BFD with | |
111 | another mixture of object file formats for now. */ | |
c906108c SS |
112 | |
113 | /* Format of an alpha external ELF symbol. */ | |
114 | ||
c5aa993b JM |
115 | typedef struct |
116 | { | |
303d2914 MK |
117 | unsigned char st_name[4]; /* Symbol name, index in string table. */ |
118 | unsigned char st_pad[4]; /* Pad to long word boundary. */ | |
119 | unsigned char st_value[8]; /* Value of the symbol. */ | |
120 | unsigned char st_size[4]; /* Associated symbol size. */ | |
121 | unsigned char st_info[1]; /* Type and binding attributes. */ | |
122 | unsigned char st_other[1]; /* No defined meaning, 0. */ | |
123 | unsigned char st_shndx[2]; /* Associated section index. */ | |
124 | } Elfalpha_External_Sym; | |
c906108c SS |
125 | |
126 | /* Format of an alpha external ELF dynamic info structure. */ | |
127 | ||
c5aa993b | 128 | typedef struct |
303d2914 MK |
129 | { |
130 | unsigned char d_tag[4]; /* Tag. */ | |
131 | unsigned char d_pad[4]; /* Pad to long word boundary. */ | |
132 | union | |
c5aa993b | 133 | { |
303d2914 MK |
134 | unsigned char d_ptr[8]; /* Pointer value. */ |
135 | unsigned char d_val[4]; /* Integer value. */ | |
c5aa993b | 136 | } |
303d2914 MK |
137 | d_un; |
138 | } Elfalpha_External_Dyn; | |
c906108c SS |
139 | |
140 | /* Struct to obtain the section pointers for alpha dynamic symbol info. */ | |
141 | ||
c5aa993b | 142 | struct alphacoff_dynsecinfo |
303d2914 MK |
143 | { |
144 | asection *sym_sect; /* Section pointer for .dynsym section. */ | |
145 | asection *str_sect; /* Section pointer for .dynstr section. */ | |
146 | asection *dyninfo_sect; /* Section pointer for .dynamic section. */ | |
147 | asection *got_sect; /* Section pointer for .got section. */ | |
148 | }; | |
c906108c | 149 | |
c906108c | 150 | /* We are called once per section from read_alphacoff_dynamic_symtab. |
303d2914 MK |
151 | We need to examine each section we are passed, check to see if it |
152 | is something we are interested in processing, and if so, stash away | |
153 | some access information for the section. */ | |
c906108c SS |
154 | |
155 | static void | |
12b9c64f | 156 | alphacoff_locate_sections (bfd *ignore_abfd, asection *sectp, void *sip) |
c906108c | 157 | { |
52f0bd74 | 158 | struct alphacoff_dynsecinfo *si; |
c906108c SS |
159 | |
160 | si = (struct alphacoff_dynsecinfo *) sip; | |
161 | ||
303d2914 MK |
162 | if (strcmp (sectp->name, ".dynsym") == 0) |
163 | si->sym_sect = sectp; | |
164 | else if (strcmp (sectp->name, ".dynstr") == 0) | |
165 | si->str_sect = sectp; | |
166 | else if (strcmp (sectp->name, ".dynamic") == 0) | |
167 | si->dyninfo_sect = sectp; | |
168 | else if (strcmp (sectp->name, ".got") == 0) | |
c906108c | 169 | si->got_sect = sectp; |
c906108c SS |
170 | } |
171 | ||
303d2914 MK |
172 | /* Scan an alpha dynamic symbol table for symbols of interest and add |
173 | them to the minimal symbol table. */ | |
c906108c SS |
174 | |
175 | static void | |
8dddcb8f TT |
176 | read_alphacoff_dynamic_symtab (minimal_symbol_reader &reader, |
177 | struct section_offsets *section_offsets, | |
fba45db2 | 178 | struct objfile *objfile) |
c906108c SS |
179 | { |
180 | bfd *abfd = objfile->obfd; | |
181 | struct alphacoff_dynsecinfo si; | |
c906108c SS |
182 | int sym_count; |
183 | int i; | |
184 | int stripped; | |
185 | Elfalpha_External_Sym *x_symp; | |
c5edbf3d TT |
186 | gdb_byte *dyninfo_p; |
187 | gdb_byte *dyninfo_end; | |
c906108c SS |
188 | int got_entry_size = 8; |
189 | int dt_mips_local_gotno = -1; | |
190 | int dt_mips_gotsym = -1; | |
191 | ||
c906108c SS |
192 | /* We currently only know how to handle alpha dynamic symbols. */ |
193 | if (bfd_get_arch (abfd) != bfd_arch_alpha) | |
194 | return; | |
195 | ||
196 | /* Locate the dynamic symbols sections and read them in. */ | |
197 | memset ((char *) &si, 0, sizeof (si)); | |
12b9c64f | 198 | bfd_map_over_sections (abfd, alphacoff_locate_sections, (void *) & si); |
303d2914 MK |
199 | if (si.sym_sect == NULL || si.str_sect == NULL |
200 | || si.dyninfo_sect == NULL || si.got_sect == NULL) | |
c906108c SS |
201 | return; |
202 | ||
fd361982 AM |
203 | gdb::byte_vector sym_sec (bfd_section_size (si.sym_sect)); |
204 | gdb::byte_vector str_sec (bfd_section_size (si.str_sect)); | |
205 | gdb::byte_vector dyninfo_sec (bfd_section_size (si.dyninfo_sect)); | |
206 | gdb::byte_vector got_sec (bfd_section_size (si.got_sect)); | |
c5edbf3d TT |
207 | |
208 | if (!bfd_get_section_contents (abfd, si.sym_sect, sym_sec.data (), | |
209 | (file_ptr) 0, sym_sec.size ())) | |
210 | return; | |
211 | if (!bfd_get_section_contents (abfd, si.str_sect, str_sec.data (), | |
212 | (file_ptr) 0, str_sec.size ())) | |
213 | return; | |
214 | if (!bfd_get_section_contents (abfd, si.dyninfo_sect, dyninfo_sec.data (), | |
215 | (file_ptr) 0, dyninfo_sec.size ())) | |
216 | return; | |
217 | if (!bfd_get_section_contents (abfd, si.got_sect, got_sec.data (), | |
218 | (file_ptr) 0, got_sec.size ())) | |
219 | return; | |
c906108c | 220 | |
7a9dd1b2 | 221 | /* Find the number of local GOT entries and the index for the |
303d2914 | 222 | first dynamic symbol in the GOT. */ |
c5edbf3d TT |
223 | for ((dyninfo_p = dyninfo_sec.data (), |
224 | dyninfo_end = dyninfo_p + dyninfo_sec.size ()); | |
c906108c SS |
225 | dyninfo_p < dyninfo_end; |
226 | dyninfo_p += sizeof (Elfalpha_External_Dyn)) | |
227 | { | |
c5aa993b | 228 | Elfalpha_External_Dyn *x_dynp = (Elfalpha_External_Dyn *) dyninfo_p; |
c906108c SS |
229 | long dyn_tag; |
230 | ||
231 | dyn_tag = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp->d_tag); | |
232 | if (dyn_tag == DT_NULL) | |
233 | break; | |
234 | else if (dyn_tag == DT_MIPS_LOCAL_GOTNO) | |
235 | { | |
236 | if (dt_mips_local_gotno < 0) | |
237 | dt_mips_local_gotno | |
238 | = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp->d_un.d_val); | |
239 | } | |
240 | else if (dyn_tag == DT_MIPS_GOTSYM) | |
241 | { | |
242 | if (dt_mips_gotsym < 0) | |
243 | dt_mips_gotsym | |
244 | = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp->d_un.d_val); | |
245 | } | |
246 | } | |
247 | if (dt_mips_local_gotno < 0 || dt_mips_gotsym < 0) | |
c5edbf3d | 248 | return; |
c906108c | 249 | |
303d2914 MK |
250 | /* Scan all dynamic symbols and enter them into the minimal symbol |
251 | table if appropriate. */ | |
c5edbf3d | 252 | sym_count = sym_sec.size () / sizeof (Elfalpha_External_Sym); |
c906108c SS |
253 | stripped = (bfd_get_symcount (abfd) == 0); |
254 | ||
255 | /* Skip first symbol, which is a null dummy. */ | |
c5edbf3d | 256 | for (i = 1, x_symp = (Elfalpha_External_Sym *) sym_sec.data () + 1; |
c906108c SS |
257 | i < sym_count; |
258 | i++, x_symp++) | |
259 | { | |
260 | unsigned long strx; | |
261 | char *name; | |
262 | bfd_vma sym_value; | |
263 | unsigned char sym_info; | |
264 | unsigned int sym_shndx; | |
265 | int isglobal; | |
266 | enum minimal_symbol_type ms_type; | |
267 | ||
268 | strx = bfd_h_get_32 (abfd, (bfd_byte *) x_symp->st_name); | |
c5edbf3d | 269 | if (strx >= str_sec.size ()) |
c906108c | 270 | continue; |
c5edbf3d | 271 | name = (char *) (str_sec.data () + strx); |
c906108c SS |
272 | if (*name == '\0' || *name == '.') |
273 | continue; | |
274 | ||
275 | sym_value = bfd_h_get_64 (abfd, (bfd_byte *) x_symp->st_value); | |
276 | sym_info = bfd_h_get_8 (abfd, (bfd_byte *) x_symp->st_info); | |
277 | sym_shndx = bfd_h_get_16 (abfd, (bfd_byte *) x_symp->st_shndx); | |
4fbb74a6 AM |
278 | if (sym_shndx >= (SHN_LORESERVE & 0xffff)) |
279 | sym_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff); | |
c906108c SS |
280 | isglobal = (ELF_ST_BIND (sym_info) == STB_GLOBAL); |
281 | ||
282 | if (sym_shndx == SHN_UNDEF) | |
283 | { | |
284 | /* Handle undefined functions which are defined in a shared | |
285 | library. */ | |
286 | if (ELF_ST_TYPE (sym_info) != STT_FUNC | |
287 | || ELF_ST_BIND (sym_info) != STB_GLOBAL) | |
288 | continue; | |
289 | ||
290 | ms_type = mst_solib_trampoline; | |
291 | ||
292 | /* If sym_value is nonzero, it points to the shared library | |
293 | trampoline entry, which is what we are looking for. | |
294 | ||
295 | If sym_value is zero, then we have to get the GOT entry | |
296 | for the symbol. | |
c906108c | 297 | |
303d2914 MK |
298 | If the GOT entry is nonzero, it represents the quickstart |
299 | address of the function and we use that as the symbol | |
300 | value. | |
301 | ||
302 | If the GOT entry is zero, the function address has to be | |
303 | resolved by the runtime loader before the executable is | |
304 | started. We are unable to find any meaningful address | |
305 | for these functions in the executable file, so we skip | |
306 | them. */ | |
c906108c SS |
307 | if (sym_value == 0) |
308 | { | |
309 | int got_entry_offset = | |
303d2914 | 310 | (i - dt_mips_gotsym + dt_mips_local_gotno) * got_entry_size; |
c906108c | 311 | |
c5edbf3d TT |
312 | if (got_entry_offset < 0 |
313 | || got_entry_offset >= got_sec.size ()) | |
c906108c SS |
314 | continue; |
315 | sym_value = | |
316 | bfd_h_get_64 (abfd, | |
c5edbf3d TT |
317 | (bfd_byte *) (got_sec.data () |
318 | + got_entry_offset)); | |
c906108c SS |
319 | if (sym_value == 0) |
320 | continue; | |
321 | } | |
322 | } | |
323 | else | |
324 | { | |
025bb325 | 325 | /* Symbols defined in the executable itself. We only care |
303d2914 MK |
326 | about them if this is a stripped executable, otherwise |
327 | they have been retrieved from the normal symbol table | |
328 | already. */ | |
c906108c SS |
329 | if (!stripped) |
330 | continue; | |
331 | ||
332 | if (sym_shndx == SHN_MIPS_TEXT) | |
333 | { | |
334 | if (isglobal) | |
335 | ms_type = mst_text; | |
336 | else | |
337 | ms_type = mst_file_text; | |
c906108c SS |
338 | } |
339 | else if (sym_shndx == SHN_MIPS_DATA) | |
340 | { | |
341 | if (isglobal) | |
342 | ms_type = mst_data; | |
343 | else | |
344 | ms_type = mst_file_data; | |
c906108c SS |
345 | } |
346 | else if (sym_shndx == SHN_MIPS_ACOMMON) | |
347 | { | |
348 | if (isglobal) | |
349 | ms_type = mst_bss; | |
350 | else | |
351 | ms_type = mst_file_bss; | |
c906108c SS |
352 | } |
353 | else if (sym_shndx == SHN_ABS) | |
354 | { | |
355 | ms_type = mst_abs; | |
356 | } | |
357 | else | |
358 | { | |
359 | continue; | |
360 | } | |
361 | } | |
362 | ||
8dddcb8f | 363 | reader.record (name, sym_value, ms_type); |
c906108c SS |
364 | } |
365 | } | |
366 | ||
303d2914 | 367 | /* Initialization. */ |
c906108c | 368 | |
00b5771c | 369 | static const struct sym_fns ecoff_sym_fns = |
c906108c | 370 | { |
025bb325 MS |
371 | mipscoff_new_init, /* init anything gbl to entire symtab */ |
372 | mipscoff_symfile_init, /* read initial info, setup for sym_read() */ | |
373 | mipscoff_symfile_read, /* read a symbol file into symtab */ | |
b11896a5 | 374 | NULL, /* sym_read_psymbols */ |
025bb325 MS |
375 | mipscoff_symfile_finish, /* finished with file, cleanup */ |
376 | default_symfile_offsets, /* dummy FIXME til implem sym reloc */ | |
377 | default_symfile_segments, /* Get segment information from a file. */ | |
378 | NULL, | |
379 | default_symfile_relocate, /* Relocate a debug section. */ | |
55aa24fb | 380 | NULL, /* sym_probe_fns */ |
00b5771c | 381 | &psym_functions |
c906108c SS |
382 | }; |
383 | ||
384 | void | |
fba45db2 | 385 | _initialize_mipsread (void) |
c906108c | 386 | { |
c256e171 | 387 | add_symtab_fns (bfd_target_ecoff_flavour, &ecoff_sym_fns); |
c906108c | 388 | } |