* configure.in: Add test for "long long" support.
[binutils-gdb.git] / gdb / somsolib.c
1 /* Handle HP SOM shared libraries for GDB, the GNU Debugger.
2 Copyright 1993, 1996 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 Written by the Center for Software Science at the Univerity of Utah
21 and by Cygnus Support. */
22
23
24 #include "defs.h"
25
26 #include "frame.h"
27 #include "bfd.h"
28 #include "som.h"
29 #include "libhppa.h"
30 #include "gdbcore.h"
31 #include "symtab.h"
32 #include "breakpoint.h"
33 #include "symfile.h"
34 #include "objfiles.h"
35 #include "inferior.h"
36 #include "gdb-stabs.h"
37 #include "gdbcmd.h"
38 #include "language.h"
39
40 /* TODO:
41
42 * Most of this code should work for hp300 shared libraries. Does
43 anyone care enough to weed out any SOM-isms.
44
45 * Support for hpux8 dynamic linker. */
46
47 /* The basic structure which describes a dynamically loaded object. This
48 data structure is private to the dynamic linker and isn't found in
49 any HPUX include file. */
50
51 struct som_solib_mapped_entry
52 {
53 /* The name of the library. */
54 char *name;
55
56 /* Version of this structure (it is expected to change again in hpux10). */
57 unsigned char struct_version;
58
59 /* Binding mode for this library. */
60 unsigned char bind_mode;
61
62 /* Version of this library. */
63 short library_version;
64
65 /* Start of text address, link-time text location, end of text address. */
66 CORE_ADDR text_addr;
67 CORE_ADDR text_link_addr;
68 CORE_ADDR text_end;
69
70 /* Start of data, start of bss and end of data. */
71 CORE_ADDR data_start;
72 CORE_ADDR bss_start;
73 CORE_ADDR data_end;
74
75 /* Value of linkage pointer (%r19). */
76 CORE_ADDR got_value;
77
78 /* Next entry. */
79 struct som_solib_mapped_entry *next;
80
81 /* There are other fields, but I don't have information as to what is
82 contained in them. */
83 };
84
85 /* A structure to keep track of all the known shared objects. */
86 struct so_list
87 {
88 struct som_solib_mapped_entry som_solib;
89 struct objfile *objfile;
90 bfd *abfd;
91 struct section_table *sections;
92 struct section_table *sections_end;
93 struct so_list *next;
94 };
95
96 static struct so_list *so_list_head;
97
98 static void som_sharedlibrary_info_command PARAMS ((char *, int));
99
100 static void som_solib_sharedlibrary_command PARAMS ((char *, int));
101
102 /* Add symbols from shared libraries into the symtab list. */
103
104 void
105 som_solib_add (arg_string, from_tty, target)
106 char *arg_string;
107 int from_tty;
108 struct target_ops *target;
109 {
110 struct minimal_symbol *msymbol;
111 struct so_list *so_list_tail;
112 CORE_ADDR addr;
113 asection *shlib_info;
114 int status;
115 unsigned int dld_flags;
116 char buf[4], *re_err;
117
118 /* First validate our arguments. */
119 if ((re_err = re_comp (arg_string ? arg_string : ".")) != NULL)
120 {
121 error ("Invalid regexp: %s", re_err);
122 }
123
124 /* If we're debugging a core file, or have attached to a running
125 process, then som_solib_create_inferior_hook will not have been
126 called.
127
128 We need to first determine if we're dealing with a dynamically
129 linked executable. If not, then return without an error or warning.
130
131 We also need to examine __dld_flags to determine if the shared library
132 list is valid and to determine if the libraries have been privately
133 mapped. */
134 if (symfile_objfile == NULL)
135 return;
136
137 /* First see if the objfile was dynamically linked. */
138 shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, "$SHLIB_INFO$");
139 if (!shlib_info)
140 return;
141
142 /* It's got a $SHLIB_INFO$ section, make sure it's not empty. */
143 if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
144 return;
145
146 msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
147 if (msymbol == NULL)
148 {
149 error ("Unable to find __dld_flags symbol in object file.\n");
150 return;
151 }
152
153 addr = SYMBOL_VALUE_ADDRESS (msymbol);
154 /* Read the current contents. */
155 status = target_read_memory (addr, buf, 4);
156 if (status != 0)
157 {
158 error ("Unable to read __dld_flags\n");
159 return;
160 }
161 dld_flags = extract_unsigned_integer (buf, 4);
162
163 /* __dld_list may not be valid. If it's not valid tell the user. */
164 if ((dld_flags & 4) == 0)
165 {
166 error ("__dld_list is not valid according to __dld_flags.\n");
167 return;
168 }
169
170 /* If the libraries were not mapped private, warn the user. */
171 if ((dld_flags & 1) == 0)
172 warning ("The shared libraries were not privately mapped; setting a\nbreakpoint in a shared library will not work until you rerun the program.\n");
173
174 msymbol = lookup_minimal_symbol ("__dld_list", NULL, NULL);
175 if (!msymbol)
176 {
177 /* Older crt0.o files (hpux8) don't have __dld_list as a symbol,
178 but the data is still available if you know where to look. */
179 msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
180 if (!msymbol)
181 {
182 error ("Unable to find dynamic library list.\n");
183 return;
184 }
185 addr = SYMBOL_VALUE_ADDRESS (msymbol) - 8;
186 }
187 else
188 addr = SYMBOL_VALUE_ADDRESS (msymbol);
189
190 status = target_read_memory (addr, buf, 4);
191 if (status != 0)
192 {
193 error ("Unable to find dynamic library list.\n");
194 return;
195 }
196
197 addr = extract_unsigned_integer (buf, 4);
198
199 /* If addr is zero, then we're using an old dynamic loader which
200 doesn't maintain __dld_list. We'll have to use a completely
201 different approach to get shared library information. */
202 if (addr == 0)
203 goto old_dld;
204
205 /* Using the information in __dld_list is the preferred method
206 to get at shared library information. It doesn't depend on
207 any functions in /usr/lib/end.o and has a chance of working
208 with hpux10 when it is released. */
209 status = target_read_memory (addr, buf, 4);
210 if (status != 0)
211 {
212 error ("Unable to find dynamic library list.\n");
213 return;
214 }
215
216 /* addr now holds the address of the first entry in the dynamic
217 library list. */
218 addr = extract_unsigned_integer (buf, 4);
219
220 /* Now that we have a pointer to the dynamic library list, walk
221 through it and add the symbols for each library. */
222
223 so_list_tail = so_list_head;
224 /* Find the end of the list of shared objects. */
225 while (so_list_tail && so_list_tail->next)
226 so_list_tail = so_list_tail->next;
227
228 while (1)
229 {
230 CORE_ADDR name_addr, text_addr;
231 unsigned int name_len;
232 char *name;
233 struct so_list *new_so;
234 struct so_list *so_list = so_list_head;
235 struct section_table *p;
236 struct stat statbuf;
237
238 if (addr == 0)
239 break;
240
241 /* Get a pointer to the name of this library. */
242 status = target_read_memory (addr, buf, 4);
243 if (status != 0)
244 goto err;
245
246 name_addr = extract_unsigned_integer (buf, 4);
247 name_len = 0;
248 while (1)
249 {
250 target_read_memory (name_addr + name_len, buf, 1);
251 if (status != 0)
252 goto err;
253
254 name_len++;
255 if (*buf == '\0')
256 break;
257 }
258 name = alloca (name_len);
259 status = target_read_memory (name_addr, name, name_len);
260 if (status != 0)
261 goto err;
262
263 /* See if we've already loaded something with this name. */
264 while (so_list)
265 {
266 if (!strcmp (so_list->som_solib.name, name))
267 break;
268 so_list = so_list->next;
269 }
270
271 /* See if the file exists. If not, give a warning, but don't
272 die. */
273 status = stat (name, &statbuf);
274 if (status == -1)
275 {
276 warning ("Can't find file %s referenced in dld_list.", name);
277
278 status = target_read_memory (addr + 36, buf, 4);
279 if (status != 0)
280 goto err;
281
282 addr = (CORE_ADDR) extract_unsigned_integer (buf, 4);
283 continue;
284 }
285
286 /* If we've already loaded this one or it's the main program, skip it. */
287 if (so_list || !strcmp (name, symfile_objfile->name))
288 {
289 status = target_read_memory (addr + 36, buf, 4);
290 if (status != 0)
291 goto err;
292
293 addr = (CORE_ADDR) extract_unsigned_integer (buf, 4);
294 continue;
295 }
296
297 name = obsavestring (name, name_len - 1,
298 &symfile_objfile->symbol_obstack);
299
300 status = target_read_memory (addr + 8, buf, 4);
301 if (status != 0)
302 goto err;
303
304 text_addr = extract_unsigned_integer (buf, 4);
305
306
307 new_so = (struct so_list *) xmalloc (sizeof (struct so_list));
308 memset ((char *)new_so, 0, sizeof (struct so_list));
309 if (so_list_head == NULL)
310 {
311 so_list_head = new_so;
312 so_list_tail = new_so;
313 }
314 else
315 {
316 so_list_tail->next = new_so;
317 so_list_tail = new_so;
318 }
319
320 /* Fill in all the entries in GDB's shared library list. */
321 new_so->som_solib.name = name;
322 status = target_read_memory (addr + 4, buf, 4);
323 if (status != 0)
324 goto err;
325
326 new_so->som_solib.struct_version = extract_unsigned_integer (buf + 3, 1);
327 new_so->som_solib.bind_mode = extract_unsigned_integer (buf + 2, 1);
328 new_so->som_solib.library_version = extract_unsigned_integer (buf, 2);
329 new_so->som_solib.text_addr = text_addr;
330
331 status = target_read_memory (addr + 12, buf, 4);
332 if (status != 0)
333 goto err;
334
335 new_so->som_solib.text_link_addr = extract_unsigned_integer (buf, 4);
336
337 status = target_read_memory (addr + 16, buf, 4);
338 if (status != 0)
339 goto err;
340
341 new_so->som_solib.text_end = extract_unsigned_integer (buf, 4);
342
343 status = target_read_memory (addr + 20, buf, 4);
344 if (status != 0)
345 goto err;
346
347 new_so->som_solib.data_start = extract_unsigned_integer (buf, 4);
348
349 status = target_read_memory (addr + 24, buf, 4);
350 if (status != 0)
351 goto err;
352
353 new_so->som_solib.bss_start = extract_unsigned_integer (buf, 4);
354
355 status = target_read_memory (addr + 28, buf, 4);
356 if (status != 0)
357 goto err;
358
359 new_so->som_solib.data_end = extract_unsigned_integer (buf, 4);
360
361 status = target_read_memory (addr + 32, buf, 4);
362 if (status != 0)
363 goto err;
364
365 new_so->som_solib.got_value = extract_unsigned_integer (buf, 4);
366
367 status = target_read_memory (addr + 36, buf, 4);
368 if (status != 0)
369 goto err;
370
371 new_so->som_solib.next = (void *)extract_unsigned_integer (buf, 4);
372 addr = (CORE_ADDR)new_so->som_solib.next;
373
374 new_so->objfile = symbol_file_add (name, from_tty, text_addr, 0, 0, 0);
375 new_so->abfd = new_so->objfile->obfd;
376
377 if (!bfd_check_format (new_so->abfd, bfd_object))
378 {
379 error ("\"%s\": not in executable format: %s.",
380 name, bfd_errmsg (bfd_get_error ()));
381 }
382
383 /* Now we need to build a section table for this library since
384 we might be debugging a core file from a dynamically linked
385 executable in which the libraries were not privately mapped. */
386 if (build_section_table (new_so->abfd,
387 &new_so->sections,
388 &new_so->sections_end))
389 {
390 error ("Unable to build section table for shared library\n.");
391 return;
392 }
393
394 /* Relocate all the sections based on where they got loaded. */
395 for (p = new_so->sections; p < new_so->sections_end; p++)
396 {
397 if (p->the_bfd_section->flags & SEC_CODE)
398 {
399 p->addr += text_addr - new_so->som_solib.text_link_addr;
400 p->endaddr += text_addr - new_so->som_solib.text_link_addr;
401 }
402 else if (p->the_bfd_section->flags & SEC_DATA)
403 {
404 p->addr += new_so->som_solib.data_start;
405 p->endaddr += new_so->som_solib.data_start;
406 }
407 }
408
409 /* Now see if we need to map in the text and data for this shared
410 library (for example debugging a core file which does not use
411 private shared libraries.).
412
413 Carefully peek at the first text address in the library. If the
414 read succeeds, then the libraries were privately mapped and were
415 included in the core dump file.
416
417 If the peek failed, then the libraries were not privately mapped
418 and are not in the core file, we'll have to read them in ourselves. */
419 status = target_read_memory (text_addr, buf, 4);
420 if (status != 0)
421 {
422 int old, new;
423 int update_coreops;
424
425 /* We must update the to_sections field in the core_ops structure
426 here, otherwise we dereference a potential dangling pointer
427 for each call to target_read/write_memory within this routine. */
428 update_coreops = core_ops.to_sections == target->to_sections;
429
430 new = new_so->sections_end - new_so->sections;
431 /* Add sections from the shared library to the core target. */
432 if (target->to_sections)
433 {
434 old = target->to_sections_end - target->to_sections;
435 target->to_sections = (struct section_table *)
436 xrealloc ((char *)target->to_sections,
437 ((sizeof (struct section_table)) * (old + new)));
438 }
439 else
440 {
441 old = 0;
442 target->to_sections = (struct section_table *)
443 xmalloc ((sizeof (struct section_table)) * new);
444 }
445 target->to_sections_end = (target->to_sections + old + new);
446
447 /* Update the to_sections field in the core_ops structure
448 if needed. */
449 if (update_coreops)
450 {
451 core_ops.to_sections = target->to_sections;
452 core_ops.to_sections_end = target->to_sections_end;
453 }
454
455 /* Copy over the old data before it gets clobbered. */
456 memcpy ((char *)(target->to_sections + old),
457 new_so->sections,
458 ((sizeof (struct section_table)) * new));
459 }
460 }
461
462 /* Getting new symbols may change our opinion about what is
463 frameless. */
464 reinit_frame_cache ();
465 return;
466
467 old_dld:
468 error ("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported.\n");
469 return;
470
471 err:
472 error ("Error while reading dynamic library list.\n");
473 return;
474 }
475
476
477 /* This hook gets called just before the first instruction in the
478 inferior process is executed.
479
480 This is our opportunity to set magic flags in the inferior so
481 that GDB can be notified when a shared library is mapped in and
482 to tell the dynamic linker that a private copy of the library is
483 needed (so GDB can set breakpoints in the library).
484
485 __dld_flags is the location of the magic flags; as of this implementation
486 there are 3 flags of interest:
487
488 bit 0 when set indicates that private copies of the libraries are needed
489 bit 1 when set indicates that the callback hook routine is valid
490 bit 2 when set indicates that the dynamic linker should maintain the
491 __dld_list structure when loading/unloading libraries.
492
493 Note that shared libraries are not mapped in at this time, so we have
494 run the inferior until the libraries are mapped in. Typically this
495 means running until the "_start" is called. */
496
497 void
498 som_solib_create_inferior_hook()
499 {
500 struct minimal_symbol *msymbol;
501 unsigned int dld_flags, status, have_endo;
502 asection *shlib_info;
503 char buf[4];
504 struct objfile *objfile;
505 CORE_ADDR anaddr;
506
507 /* First, remove all the solib event breakpoints. Their addresses
508 may have changed since the last time we ran the program. */
509 remove_solib_event_breakpoints ();
510
511 if (symfile_objfile == NULL)
512 return;
513
514 /* First see if the objfile was dynamically linked. */
515 shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, "$SHLIB_INFO$");
516 if (!shlib_info)
517 return;
518
519 /* It's got a $SHLIB_INFO$ section, make sure it's not empty. */
520 if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
521 return;
522
523 have_endo = 0;
524 /* If __d_pid is present, then put the inferior's pid into __d_pid. hpux9
525 requires __d_pid to be set. hpux10 doesn't require __d_pid to be set
526 and the symbol may not be available. */
527 msymbol = lookup_minimal_symbol ("__d_pid", NULL, symfile_objfile);
528 if (msymbol == NULL)
529 {
530 warning ("Unable to find __d_pid symbol in object file.");
531 }
532 else
533 {
534 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
535 store_unsigned_integer (buf, 4, inferior_pid);
536 status = target_write_memory (anaddr, buf, 4);
537 if (status != 0)
538 {
539 warning ("Unable to write __d_pid");
540 goto keep_going;
541 }
542 }
543
544 /* If __d_trap_fptr exists, then load whatever's at that address
545 and put it into __dld_hook. */
546 msymbol = lookup_minimal_symbol ("__d_trap_fptr", NULL, symfile_objfile);
547 if (msymbol != NULL)
548 {
549 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
550 status = target_read_memory (anaddr, buf, 4);
551 anaddr = extract_unsigned_integer (buf, 4);
552
553 /* If it's a plabel, then get the address of the real function.
554 Egad. This is just the opposite of how hpux9 and _DLD_HOOK
555 works. */
556 if (anaddr | 0x2)
557 {
558 status = target_read_memory (anaddr & ~0x2, buf, 4);
559 anaddr = extract_unsigned_integer (buf, 4);
560 }
561 }
562 else
563 {
564 /* Get the value of _DLD_HOOK (an export stub) and put it in __dld_hook;
565 This will force the dynamic linker to call __d_trap when significant
566 events occur. */
567 msymbol = lookup_minimal_symbol ("_DLD_HOOK", NULL, symfile_objfile);
568 if (msymbol == NULL)
569 {
570 warning ("Unable to find _DLD_HOOK symbol in object file.");
571 warning ("Suggest linking with /usr/lib/end.o.");
572 warning ("GDB will be unable to track shl_load/shl_unload calls");
573 goto keep_going;
574 }
575 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
576
577 /* Grrr, this might not be an export symbol! We have to find the
578 export stub. */
579 ALL_OBJFILES (objfile)
580 {
581 extern struct unwind_table_entry *find_unwind_entry PARAMS ((CORE_ADDR pc));
582
583 /* What a crock. */
584 msymbol
585 = lookup_minimal_symbol_solib_trampoline (SYMBOL_NAME (msymbol),
586 NULL, objfile);
587 /* Found a symbol with the right name. */
588 if (msymbol)
589 {
590 struct unwind_table_entry *u;
591 /* It must be a shared library trampoline. */
592 if (SYMBOL_TYPE (msymbol) != mst_solib_trampoline)
593 continue;
594
595 /* It must also be an export stub. */
596 u = find_unwind_entry (SYMBOL_VALUE (msymbol));
597 if (!u || u->stub_type != EXPORT)
598 continue;
599
600 /* OK. Looks like the correct import stub. */
601 anaddr = SYMBOL_VALUE (msymbol);
602 break;
603 }
604 }
605 }
606 store_unsigned_integer (buf, 4, anaddr);
607
608 msymbol = lookup_minimal_symbol ("__dld_hook", NULL, symfile_objfile);
609 if (msymbol == NULL)
610 {
611 warning ("Unable to find __dld_hook symbol in object file.");
612 warning ("Suggest linking with /usr/lib/end.o.");
613 warning ("GDB will be unable to track shl_load/shl_unload calls");
614 goto keep_going;
615 }
616 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
617 status = target_write_memory (anaddr, buf, 4);
618
619 /* Now set a shlib_event breakpoint at __d_trap so we can track
620 significant shared library events. */
621 msymbol = lookup_minimal_symbol ("__d_trap", NULL, symfile_objfile);
622 if (msymbol == NULL)
623 {
624 warning ("Unable to find __dld_d_trap symbol in object file.");
625 warning ("Suggest linking with /usr/lib/end.o.");
626 warning ("GDB will be unable to track shl_load/shl_unload calls");
627 goto keep_going;
628 }
629 create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol));
630
631 /* We have all the support usually found in end.o, so we can track
632 shl_load and shl_unload calls. */
633 have_endo = 1;
634
635 keep_going:
636
637 /* Get the address of __dld_flags, if no such symbol exists, then we can
638 not debug the shared code. */
639 msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
640 if (msymbol == NULL)
641 {
642 error ("Unable to find __dld_flags symbol in object file.\n");
643 goto keep_going;
644 return;
645 }
646
647 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
648 /* Read the current contents. */
649 status = target_read_memory (anaddr, buf, 4);
650 if (status != 0)
651 {
652 error ("Unable to read __dld_flags\n");
653 return;
654 }
655 dld_flags = extract_unsigned_integer (buf, 4);
656
657 /* Turn on the flags we care about. */
658 dld_flags |= (0x5 | (have_endo << 1));
659 store_unsigned_integer (buf, 4, dld_flags);
660 status = target_write_memory (anaddr, buf, 4);
661 if (status != 0)
662 {
663 error ("Unable to write __dld_flags\n");
664 return;
665 }
666
667 /* Now find the address of _start and set a breakpoint there.
668 We still need this code for two reasons:
669
670 * Not all sites have /usr/lib/end.o, so it's not always
671 possible to track the dynamic linker's events.
672
673 * At this time no events are triggered for shared libraries
674 loaded at startup time (what a crock). */
675
676 msymbol = lookup_minimal_symbol ("_start", NULL, symfile_objfile);
677 if (msymbol == NULL)
678 {
679 error ("Unable to find _start symbol in object file.\n");
680 return;
681 }
682
683 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
684
685 /* Make the breakpoint at "_start" a shared library event breakpoint. */
686 create_solib_event_breakpoint (anaddr);
687
688 /* Wipe out all knowledge of old shared libraries since their
689 mapping can change from one exec to another! */
690 while (so_list_head)
691 {
692 struct so_list *temp;
693
694 free_objfile (so_list_head->objfile);
695 temp = so_list_head;
696 free (so_list_head);
697 so_list_head = temp->next;
698 }
699 clear_symtab_users ();
700 }
701
702 /* Return the GOT value for the shared library in which ADDR belongs. If
703 ADDR isn't in any known shared library, return zero. */
704
705 CORE_ADDR
706 som_solib_get_got_by_pc (addr)
707 CORE_ADDR addr;
708 {
709 struct so_list *so_list = so_list_head;
710 CORE_ADDR got_value = 0;
711
712 while (so_list)
713 {
714 if (so_list->som_solib.text_addr <= addr
715 && so_list->som_solib.text_end > addr)
716 {
717 got_value = so_list->som_solib.got_value;
718 break;
719 }
720 so_list = so_list->next;
721 }
722 return got_value;
723 }
724
725 int
726 som_solib_section_offsets (objfile, offsets)
727 struct objfile *objfile;
728 struct section_offsets *offsets;
729 {
730 struct so_list *so_list = so_list_head;
731
732 while (so_list)
733 {
734 /* Oh what a pain! We need the offsets before so_list->objfile
735 is valid. The BFDs will never match. Make a best guess. */
736 if (strstr (objfile->name, so_list->som_solib.name))
737 {
738 asection *private_section;
739
740 /* The text offset is easy. */
741 ANOFFSET (offsets, SECT_OFF_TEXT)
742 = (so_list->som_solib.text_addr
743 - so_list->som_solib.text_link_addr);
744 ANOFFSET (offsets, SECT_OFF_RODATA)
745 = ANOFFSET (offsets, SECT_OFF_TEXT);
746
747 /* We should look at presumed_dp in the SOM header, but
748 that's not easily available. This should be OK though. */
749 private_section = bfd_get_section_by_name (objfile->obfd,
750 "$PRIVATE$");
751 if (!private_section)
752 {
753 warning ("Unable to find $PRIVATE$ in shared library!");
754 ANOFFSET (offsets, SECT_OFF_DATA) = 0;
755 ANOFFSET (offsets, SECT_OFF_BSS) = 0;
756 return 1;
757 }
758 ANOFFSET (offsets, SECT_OFF_DATA)
759 = (so_list->som_solib.data_start - private_section->vma);
760 ANOFFSET (offsets, SECT_OFF_BSS)
761 = ANOFFSET (offsets, SECT_OFF_DATA);
762 return 1;
763 }
764 so_list = so_list->next;
765 }
766 return 0;
767 }
768
769 /* Dump information about all the currently loaded shared libraries. */
770
771 static void
772 som_sharedlibrary_info_command (ignore, from_tty)
773 char *ignore;
774 int from_tty;
775 {
776 struct so_list *so_list = so_list_head;
777
778 if (exec_bfd == NULL)
779 {
780 printf_unfiltered ("no exec file.\n");
781 return;
782 }
783
784 if (so_list == NULL)
785 {
786 printf_unfiltered ("No shared libraries loaded at this time.\n");
787 return;
788 }
789
790 printf_unfiltered ("Shared Object Libraries\n");
791 printf_unfiltered (" %-12s%-12s%-12s%-12s%-12s%-12s\n",
792 " flags", " tstart", " tend", " dstart", " dend", " dlt");
793 while (so_list)
794 {
795 unsigned int flags;
796
797 flags = so_list->som_solib.struct_version << 24;
798 flags |= so_list->som_solib.bind_mode << 16;
799 flags |= so_list->som_solib.library_version;
800 printf_unfiltered ("%s\n", so_list->som_solib.name);
801 printf_unfiltered (" %-12s", local_hex_string_custom (flags, "08l"));
802 printf_unfiltered ("%-12s",
803 local_hex_string_custom (so_list->som_solib.text_addr, "08l"));
804 printf_unfiltered ("%-12s",
805 local_hex_string_custom (so_list->som_solib.text_end, "08l"));
806 printf_unfiltered ("%-12s",
807 local_hex_string_custom (so_list->som_solib.data_start, "08l"));
808 printf_unfiltered ("%-12s",
809 local_hex_string_custom (so_list->som_solib.data_end, "08l"));
810 printf_unfiltered ("%-12s\n",
811 local_hex_string_custom (so_list->som_solib.got_value, "08l"));
812 so_list = so_list->next;
813 }
814 }
815
816 static void
817 som_solib_sharedlibrary_command (args, from_tty)
818 char *args;
819 int from_tty;
820 {
821 dont_repeat ();
822 som_solib_add (args, from_tty, (struct target_ops *) 0);
823 }
824
825 void
826 _initialize_som_solib ()
827 {
828 add_com ("sharedlibrary", class_files, som_solib_sharedlibrary_command,
829 "Load shared object library symbols for files matching REGEXP.");
830 add_info ("sharedlibrary", som_sharedlibrary_info_command,
831 "Status of loaded shared object libraries.");
832 add_show_from_set
833 (add_set_cmd ("auto-solib-add", class_support, var_zinteger,
834 (char *) &auto_solib_add,
835 "Set autoloading of shared library symbols at startup.\n\
836 If nonzero, symbols from all shared object libraries will be loaded\n\
837 automatically when the inferior begins execution or when the dynamic linker\n\
838 informs gdb that a new library has been loaded. Otherwise, symbols\n\
839 must be loaded manually, using `sharedlibrary'.",
840 &setlist),
841 &showlist);
842
843 }