framefilter quit: Code cleanup: Reindentation
[deliverable/binutils-gdb.git] / gdb / solib-spu.c
CommitLineData
85e747d2 1/* Cell SPU GNU/Linux support -- shared library handling.
32d0add0 2 Copyright (C) 2009-2015 Free Software Foundation, Inc.
85e747d2
UW
3
4 Contributed by Ulrich Weigand <uweigand@de.ibm.com>.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
dcf7800b 10 the Free Software Foundation; either version 3 of the License, or
85e747d2
UW
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
dcf7800b 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
85e747d2
UW
20
21#include "defs.h"
693be288 22#include "solib-spu.h"
85e747d2 23#include "gdbcore.h"
53ce3c39 24#include <sys/stat.h>
85e747d2
UW
25#include "arch-utils.h"
26#include "bfd.h"
27#include "symtab.h"
28#include "solib.h"
29#include "solib-svr4.h"
30#include "solist.h"
31#include "inferior.h"
32#include "objfiles.h"
33#include "observer.h"
34#include "breakpoint.h"
35#include "gdbthread.h"
cbb099e8 36#include "gdb_bfd.h"
85e747d2
UW
37
38#include "spu-tdep.h"
39
40/* Highest SPE id (file handle) the inferior may have. */
41#define MAX_SPE_FD 1024
42
43/* Stand-alone SPE executable? */
44#define spu_standalone_p() \
45 (symfile_objfile && symfile_objfile->obfd \
46 && bfd_get_arch (symfile_objfile->obfd) == bfd_arch_spu)
47
48
49/* Relocate main SPE executable. */
50static void
51spu_relocate_main_executable (int spufs_fd)
52{
85e747d2
UW
53 struct section_offsets *new_offsets;
54 int i;
55
567995e1
JK
56 if (symfile_objfile == NULL)
57 return;
85e747d2 58
567995e1
JK
59 new_offsets = alloca (symfile_objfile->num_sections
60 * sizeof (struct section_offsets));
85e747d2 61
567995e1
JK
62 for (i = 0; i < symfile_objfile->num_sections; i++)
63 new_offsets->offsets[i] = SPUADDR (spufs_fd, 0);
64
65 objfile_relocate (symfile_objfile, new_offsets);
85e747d2
UW
66}
67
68/* When running a stand-alone SPE executable, we may need to skip one more
69 exec event on startup, to get past the binfmt_misc loader. */
70static void
71spu_skip_standalone_loader (void)
72{
73 if (target_has_execution && !current_inferior ()->attach_flag)
74 {
75 struct target_waitstatus ws;
76
77 /* Only some kernels report an extra SIGTRAP with the binfmt_misc
78 loader; others do not. In addition, if we have attached to an
79 already running inferior instead of starting a new one, we will
80 not see the extra SIGTRAP -- and we cannot readily distinguish
81 the two cases, in particular with the extended-remote target.
82
83 Thus we issue a single-step here. If no extra SIGTRAP was pending,
84 this will step past the first instruction of the stand-alone SPE
85 executable loader, but we don't care about that. */
86
16c381f0 87 inferior_thread ()->control.in_infcall = 1; /* Suppress MI messages. */
85e747d2 88
a493e3e2 89 target_resume (inferior_ptid, 1, GDB_SIGNAL_0);
85e747d2
UW
90 target_wait (minus_one_ptid, &ws, 0);
91 set_executing (minus_one_ptid, 0);
92
16c381f0 93 inferior_thread ()->control.in_infcall = 0;
85e747d2
UW
94 }
95}
96
f1d8ee66
UW
97static const struct objfile_data *ocl_program_data_key;
98
99/* Appends OpenCL programs to the list of `struct so_list' objects. */
100static void
101append_ocl_sos (struct so_list **link_ptr)
102{
103 CORE_ADDR *ocl_program_addr_base;
104 struct objfile *objfile;
105
106 ALL_OBJFILES (objfile)
107 {
108 ocl_program_addr_base = objfile_data (objfile, ocl_program_data_key);
109 if (ocl_program_addr_base != NULL)
110 {
111 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd)?
112 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
113 volatile struct gdb_exception ex;
114 TRY_CATCH (ex, RETURN_MASK_ALL)
115 {
116 CORE_ADDR data =
117 read_memory_unsigned_integer (*ocl_program_addr_base,
118 sizeof (CORE_ADDR),
119 byte_order);
120 if (data != 0x0)
121 {
122 struct so_list *new;
123
124 /* Allocate so_list structure. */
41bf6aca 125 new = XCNEW (struct so_list);
f1d8ee66
UW
126
127 /* Encode FD and object ID in path name. */
070c8028
UW
128 xsnprintf (new->so_name, sizeof new->so_name, "@%s <%d>",
129 hex_string (data),
130 SPUADDR_SPU (*ocl_program_addr_base));
f1d8ee66
UW
131 strcpy (new->so_original_name, new->so_name);
132
133 *link_ptr = new;
134 link_ptr = &new->next;
135 }
136 }
137 if (ex.reason < 0)
138 {
139 /* Ignore memory errors. */
140 switch (ex.error)
141 {
142 case MEMORY_ERROR:
143 break;
144 default:
145 throw_exception (ex);
146 break;
147 }
148 }
149 }
150 }
151}
152
85e747d2
UW
153/* Build a list of `struct so_list' objects describing the shared
154 objects currently loaded in the inferior. */
155static struct so_list *
156spu_current_sos (void)
157{
f5656ead 158 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
85e747d2
UW
159 struct so_list *head;
160 struct so_list **link_ptr;
161
e362b510 162 gdb_byte buf[MAX_SPE_FD * 4];
85e747d2
UW
163 int i, size;
164
165 /* First, retrieve the SVR4 shared library list. */
166 head = svr4_so_ops.current_sos ();
167
168 /* Append our libraries to the end of the list. */
169 for (link_ptr = &head; *link_ptr; link_ptr = &(*link_ptr)->next)
170 ;
171
172 /* Determine list of SPU ids. */
173 size = target_read (&current_target, TARGET_OBJECT_SPU, NULL,
174 buf, 0, sizeof buf);
175
176 /* Do not add stand-alone SPE executable context as shared library,
177 but relocate main SPE executable objfile. */
178 if (spu_standalone_p ())
179 {
180 if (size == 4)
181 {
182 int fd = extract_unsigned_integer (buf, 4, byte_order);
433759f7 183
85e747d2
UW
184 spu_relocate_main_executable (fd);
185
186 /* Re-enable breakpoints after main SPU context was established;
187 see also comments in spu_solib_create_inferior_hook. */
188 enable_breakpoints_after_startup ();
189 }
190
191 return head;
192 }
193
194 /* Create an so_list entry for each SPU id. */
195 for (i = 0; i < size; i += 4)
196 {
197 int fd = extract_unsigned_integer (buf + i, 4, byte_order);
198 struct so_list *new;
199
200 unsigned long long addr;
201 char annex[32], id[100];
202 int len;
203
204 /* Read object ID. There's a race window where the inferior may have
205 already created the SPE context, but not installed the object-id
206 yet. Skip such entries; we'll be back for them later. */
207 xsnprintf (annex, sizeof annex, "%d/object-id", fd);
208 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
001f13d8 209 (gdb_byte *) id, 0, sizeof id);
85e747d2
UW
210 if (len <= 0 || len >= sizeof id)
211 continue;
212 id[len] = 0;
213 if (sscanf (id, "0x%llx", &addr) != 1 || !addr)
214 continue;
215
216 /* Allocate so_list structure. */
41bf6aca 217 new = XCNEW (struct so_list);
85e747d2
UW
218
219 /* Encode FD and object ID in path name. Choose the name so as not
220 to conflict with any (normal) SVR4 library path name. */
2244ba2e
PM
221 xsnprintf (new->so_name, sizeof new->so_name, "@%s <%d>",
222 hex_string (addr), fd);
85e747d2
UW
223 strcpy (new->so_original_name, new->so_name);
224
225 *link_ptr = new;
226 link_ptr = &new->next;
227 }
228
c378eb4e 229 /* Append OpenCL sos. */
f1d8ee66
UW
230 append_ocl_sos (link_ptr);
231
85e747d2
UW
232 return head;
233}
234
235/* Free so_list information. */
236static void
237spu_free_so (struct so_list *so)
238{
239 if (so->so_original_name[0] != '@')
240 svr4_so_ops.free_so (so);
241}
242
243/* Relocate section addresses. */
244static void
245spu_relocate_section_addresses (struct so_list *so,
246 struct target_section *sec)
247{
248 if (so->so_original_name[0] != '@')
249 svr4_so_ops.relocate_section_addresses (so, sec);
250 else
251 {
252 unsigned long long addr;
253 int fd;
254
255 /* Set addr_low/high to just LS offset for display. */
256 if (so->addr_low == 0 && so->addr_high == 0
257 && strcmp (sec->the_bfd_section->name, ".text") == 0)
258 {
259 so->addr_low = sec->addr;
260 so->addr_high = sec->endaddr;
261 }
262
263 /* Decode object ID. */
264 if (sscanf (so->so_original_name, "@0x%llx <%d>", &addr, &fd) != 2)
265 internal_error (__FILE__, __LINE__, "bad object ID");
266
267 sec->addr = SPUADDR (fd, sec->addr);
268 sec->endaddr = SPUADDR (fd, sec->endaddr);
269 }
270}
271
272
273/* Inferior memory should contain an SPE executable image at location ADDR.
274 Allocate a BFD representing that executable. Return NULL on error. */
275
276static void *
277spu_bfd_iovec_open (bfd *nbfd, void *open_closure)
278{
279 return open_closure;
280}
281
282static int
283spu_bfd_iovec_close (bfd *nbfd, void *stream)
284{
285 xfree (stream);
39ed5604
JK
286
287 /* Zero means success. */
288 return 0;
85e747d2
UW
289}
290
291static file_ptr
292spu_bfd_iovec_pread (bfd *abfd, void *stream, void *buf,
293 file_ptr nbytes, file_ptr offset)
294{
295 CORE_ADDR addr = *(CORE_ADDR *)stream;
296 int ret;
297
298 ret = target_read_memory (addr + offset, buf, nbytes);
299 if (ret != 0)
300 {
301 bfd_set_error (bfd_error_invalid_operation);
302 return -1;
303 }
304
305 return nbytes;
306}
307
308static int
309spu_bfd_iovec_stat (bfd *abfd, void *stream, struct stat *sb)
310{
311 /* We don't have an easy way of finding the size of embedded spu
312 images. We could parse the in-memory ELF header and section
313 table to find the extent of the last section but that seems
314 pointless when the size is needed only for checks of other
315 parsed values in dbxread.c. */
316 sb->st_size = INT_MAX;
317 return 0;
318}
319
320static bfd *
321spu_bfd_fopen (char *name, CORE_ADDR addr)
322{
323 bfd *nbfd;
324
325 CORE_ADDR *open_closure = xmalloc (sizeof (CORE_ADDR));
326 *open_closure = addr;
327
64c31149
TT
328 nbfd = gdb_bfd_openr_iovec (name, "elf32-spu",
329 spu_bfd_iovec_open, open_closure,
330 spu_bfd_iovec_pread, spu_bfd_iovec_close,
331 spu_bfd_iovec_stat);
85e747d2
UW
332 if (!nbfd)
333 return NULL;
334
335 if (!bfd_check_format (nbfd, bfd_object))
336 {
cbb099e8 337 gdb_bfd_unref (nbfd);
85e747d2
UW
338 return NULL;
339 }
340
341 return nbfd;
342}
343
344/* Open shared library BFD. */
345static bfd *
346spu_bfd_open (char *pathname)
347{
348 char *original_name = strrchr (pathname, '@');
349 bfd *abfd;
350 asection *spu_name;
351 unsigned long long addr;
352 int fd;
353
354 /* Handle regular SVR4 libraries. */
355 if (!original_name)
356 return svr4_so_ops.bfd_open (pathname);
357
358 /* Decode object ID. */
359 if (sscanf (original_name, "@0x%llx <%d>", &addr, &fd) != 2)
360 internal_error (__FILE__, __LINE__, "bad object ID");
361
362 /* Open BFD representing SPE executable. */
363 abfd = spu_bfd_fopen (original_name, (CORE_ADDR) addr);
364 if (!abfd)
365 error (_("Cannot read SPE executable at %s"), original_name);
366
367 /* Retrieve SPU name note. */
368 spu_name = bfd_get_section_by_name (abfd, ".note.spu_name");
369 if (spu_name)
370 {
371 int sect_size = bfd_section_size (abfd, spu_name);
433759f7 372
85e747d2
UW
373 if (sect_size > 20)
374 {
375 char *buf = alloca (sect_size - 20 + strlen (original_name) + 1);
433759f7 376
85e747d2
UW
377 bfd_get_section_contents (abfd, spu_name, buf, 20, sect_size - 20);
378 buf[sect_size - 20] = '\0';
379
380 strcat (buf, original_name);
381
382 xfree ((char *)abfd->filename);
383 abfd->filename = xstrdup (buf);
384 }
385 }
386
387 return abfd;
388}
389
390/* Lookup global symbol in a SPE executable. */
391static struct symbol *
efad9b6a 392spu_lookup_lib_symbol (struct objfile *objfile,
85e747d2 393 const char *name,
85e747d2
UW
394 const domain_enum domain)
395{
396 if (bfd_get_arch (objfile->obfd) == bfd_arch_spu)
94af9270 397 return lookup_global_symbol_from_objfile (objfile, name, domain);
85e747d2
UW
398
399 if (svr4_so_ops.lookup_lib_global_symbol != NULL)
94af9270 400 return svr4_so_ops.lookup_lib_global_symbol (objfile, name, domain);
85e747d2
UW
401 return NULL;
402}
403
404/* Enable shared library breakpoint. */
405static int
406spu_enable_break (struct objfile *objfile)
407{
3b7344d5 408 struct bound_minimal_symbol spe_event_sym;
85e747d2
UW
409
410 /* The libspe library will call __spe_context_update_event whenever any
411 SPE context is allocated or destroyed. */
412 spe_event_sym = lookup_minimal_symbol ("__spe_context_update_event",
413 NULL, objfile);
414
415 /* Place a solib_event breakpoint on the symbol. */
3b7344d5 416 if (spe_event_sym.minsym)
85e747d2 417 {
77e371c0 418 CORE_ADDR addr = BMSYMBOL_VALUE_ADDRESS (spe_event_sym);
433759f7 419
f5656ead 420 addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (), addr,
85e747d2 421 &current_target);
f5656ead 422 create_solib_event_breakpoint (target_gdbarch (), addr);
85e747d2
UW
423 return 1;
424 }
425
426 return 0;
427}
428
f1d8ee66
UW
429/* Enable shared library breakpoint for the
430 OpenCL runtime running on the SPU. */
431static void
432ocl_enable_break (struct objfile *objfile)
433{
3b7344d5
TT
434 struct bound_minimal_symbol event_sym;
435 struct bound_minimal_symbol addr_sym;
f1d8ee66
UW
436
437 /* The OpenCL runtime on the SPU will call __opencl_program_update_event
438 whenever an OpenCL program is loaded. */
439 event_sym = lookup_minimal_symbol ("__opencl_program_update_event", NULL,
440 objfile);
441 /* The PPU address of the OpenCL program can be found
442 at opencl_elf_image_address. */
443 addr_sym = lookup_minimal_symbol ("opencl_elf_image_address", NULL, objfile);
444
3b7344d5 445 if (event_sym.minsym && addr_sym.minsym)
f1d8ee66
UW
446 {
447 /* Place a solib_event breakpoint on the symbol. */
77e371c0 448 CORE_ADDR event_addr = BMSYMBOL_VALUE_ADDRESS (event_sym);
f1d8ee66
UW
449 create_solib_event_breakpoint (get_objfile_arch (objfile), event_addr);
450
451 /* Store the address of the symbol that will point to OpenCL program
452 using the per-objfile private data mechanism. */
453 if (objfile_data (objfile, ocl_program_data_key) == NULL)
454 {
455 CORE_ADDR *ocl_program_addr_base = OBSTACK_CALLOC (
456 &objfile->objfile_obstack,
457 objfile->sections_end - objfile->sections,
458 CORE_ADDR);
77e371c0 459 *ocl_program_addr_base = BMSYMBOL_VALUE_ADDRESS (addr_sym);
f1d8ee66
UW
460 set_objfile_data (objfile, ocl_program_data_key,
461 ocl_program_addr_base);
462 }
463 }
464}
465
85e747d2
UW
466/* Create inferior hook. */
467static void
268a4a75 468spu_solib_create_inferior_hook (int from_tty)
85e747d2 469{
85e747d2
UW
470 /* Handle SPE stand-alone executables. */
471 if (spu_standalone_p ())
472 {
473 /* After an SPE stand-alone executable was loaded, we'll receive
474 an additional trap due to the binfmt_misc handler. Make sure
475 to skip that trap. */
476 spu_skip_standalone_loader ();
477
478 /* If the user established breakpoints before starting the inferior, GDB
479 would attempt to insert those now. This would fail because the SPU
480 context has not yet been created and the SPU executable has not yet
481 been loaded. To prevent such failures, we disable all user-created
482 breakpoints now; they will be re-enabled in spu_current_sos once the
483 main SPU context has been detected. */
484 disable_breakpoints_before_startup ();
485
486 /* A special case arises when re-starting an executable, because at
487 this point it still resides at the relocated address range that was
488 determined during its last execution. We need to undo the relocation
489 so that that multi-architecture target recognizes the stand-alone
490 initialization special case. */
491 spu_relocate_main_executable (-1);
492 }
493
494 /* Call SVR4 hook -- this will re-insert the SVR4 solib breakpoints. */
268a4a75 495 svr4_so_ops.solib_create_inferior_hook (from_tty);
85e747d2
UW
496
497 /* If the inferior is statically linked against libspe, we need to install
498 our own solib breakpoint right now. Otherwise, it will be installed by
499 the solib_loaded observer below as soon as libspe is loaded. */
500 spu_enable_break (NULL);
501}
502
503/* Install SPE "shared library" handling. This is called by -tdep code
504 that wants to support SPU as a secondary architecture. */
505void
506set_spu_solib_ops (struct gdbarch *gdbarch)
507{
508 static struct target_so_ops spu_so_ops;
509
510 /* Initialize this lazily, to avoid an initialization order
511 dependency on solib-svr4.c's _initialize routine. */
512 if (spu_so_ops.current_sos == NULL)
513 {
514 spu_so_ops = svr4_so_ops;
515 spu_so_ops.solib_create_inferior_hook = spu_solib_create_inferior_hook;
516 spu_so_ops.relocate_section_addresses = spu_relocate_section_addresses;
517 spu_so_ops.free_so = spu_free_so;
518 spu_so_ops.current_sos = spu_current_sos;
519 spu_so_ops.bfd_open = spu_bfd_open;
520 spu_so_ops.lookup_lib_global_symbol = spu_lookup_lib_symbol;
521 }
522
523 set_solib_ops (gdbarch, &spu_so_ops);
524}
525
526/* Observer for the solib_loaded event. Used to install our breakpoint
527 if libspe is a shared library. */
528static void
529spu_solib_loaded (struct so_list *so)
530{
531 if (strstr (so->so_original_name, "/libspe") != NULL)
532 {
7e559477 533 solib_read_symbols (so, 0);
85e747d2
UW
534 spu_enable_break (so->objfile);
535 }
f1d8ee66
UW
536 /* In case the OpenCL runtime is loaded we install a breakpoint
537 to get notified whenever an OpenCL program gets loaded. */
538 if (strstr (so->so_name, "CLRuntimeAccelCellSPU@") != NULL)
539 {
540 solib_read_symbols (so, 0);
541 ocl_enable_break (so->objfile);
542 }
85e747d2
UW
543}
544
693be288
JK
545/* -Wmissing-prototypes */
546extern initialize_file_ftype _initialize_spu_solib;
547
85e747d2
UW
548void
549_initialize_spu_solib (void)
550{
551 observer_attach_solib_loaded (spu_solib_loaded);
f1d8ee66 552 ocl_program_data_key = register_objfile_data ();
85e747d2
UW
553}
554
This page took 0.677389 seconds and 4 git commands to generate.