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