1 /* nto-tdep.c - general QNX Neutrino target functionality.
3 Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
5 Contributed by QNX Software Systems Ltd.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
25 #include "gdb_string.h"
28 #include "cli/cli-decode.h"
29 #include "cli/cli-cmds.h"
34 #include "solib-svr4.h"
41 #include <sys/cygwin.h>
45 static char default_nto_target
[] = "C:\\QNXsdk\\target\\qnx6";
46 #elif defined(__sun__) || defined(linux)
47 static char default_nto_target
[] = "/opt/QNXsdk/target/qnx6";
49 static char default_nto_target
[] = "";
52 struct nto_target_ops current_nto_target
;
57 char *p
= getenv ("QNX_TARGET");
60 static char buf
[PATH_MAX
];
62 cygwin_conv_to_posix_path (p
, buf
);
64 cygwin_conv_to_posix_path (default_nto_target
, buf
);
67 return p
? p
: default_nto_target
;
72 nto_set_target (struct nto_target_ops
*targ
)
74 nto_regset_id
= targ
->regset_id
;
75 nto_supply_gregset
= targ
->supply_gregset
;
76 nto_supply_fpregset
= targ
->supply_fpregset
;
77 nto_supply_altregset
= targ
->supply_altregset
;
78 nto_supply_regset
= targ
->supply_regset
;
79 nto_register_area
= targ
->register_area
;
80 nto_regset_fill
= targ
->regset_fill
;
81 nto_fetch_link_map_offsets
= targ
->fetch_link_map_offsets
;
84 /* Take a string such as i386, rs6000, etc. and map it onto CPUTYPE_X86,
85 CPUTYPE_PPC, etc. as defined in nto-share/dsmsgs.h. */
87 nto_map_arch_to_cputype (const char *arch
)
89 if (!strcmp (arch
, "i386") || !strcmp (arch
, "x86"))
91 if (!strcmp (arch
, "rs6000") || !strcmp (arch
, "powerpc"))
93 if (!strcmp (arch
, "mips"))
95 if (!strcmp (arch
, "arm"))
97 if (!strcmp (arch
, "sh"))
99 return CPUTYPE_UNKNOWN
;
103 nto_find_and_open_solib (char *solib
, unsigned o_flags
, char **temp_pathname
)
105 char *buf
, *arch_path
, *nto_root
, *endian
, *base
;
108 #define PATH_FMT "%s/lib:%s/usr/lib:%s/usr/photon/lib:%s/usr/photon/dll:%s/lib/dll"
110 nto_root
= nto_target ();
111 if (strcmp (TARGET_ARCHITECTURE
->arch_name
, "i386") == 0)
116 else if (strcmp (TARGET_ARCHITECTURE
->arch_name
, "rs6000") == 0
117 || strcmp (TARGET_ARCHITECTURE
->arch_name
, "powerpc") == 0)
124 arch
= TARGET_ARCHITECTURE
->arch_name
;
125 endian
= TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
? "be" : "le";
128 /* In case nto_root is short, add strlen(solib)
129 so we can reuse arch_path below. */
131 alloca (strlen (nto_root
) + strlen (arch
) + strlen (endian
) + 2 +
133 sprintf (arch_path
, "%s/%s%s", nto_root
, arch
, endian
);
135 buf
= alloca (strlen (PATH_FMT
) + strlen (arch_path
) * 5 + 1);
136 sprintf (buf
, PATH_FMT
, arch_path
, arch_path
, arch_path
, arch_path
,
139 /* Don't assume basename() isn't destructive. */
140 base
= strrchr (solib
, '/');
144 base
++; /* Skip over '/'. */
146 ret
= openp (buf
, 1, base
, o_flags
, 0, temp_pathname
);
147 if (ret
< 0 && base
!= solib
)
149 sprintf (arch_path
, "/%s", solib
);
150 ret
= open (arch_path
, o_flags
, 0);
154 *temp_pathname
= gdb_realpath (arch_path
);
156 **temp_pathname
= '\0';
163 nto_init_solib_absolute_prefix (void)
165 char buf
[PATH_MAX
* 2], arch_path
[PATH_MAX
];
166 char *nto_root
, *endian
;
169 nto_root
= nto_target ();
170 if (strcmp (TARGET_ARCHITECTURE
->arch_name
, "i386") == 0)
175 else if (strcmp (TARGET_ARCHITECTURE
->arch_name
, "rs6000") == 0
176 || strcmp (TARGET_ARCHITECTURE
->arch_name
, "powerpc") == 0)
183 arch
= TARGET_ARCHITECTURE
->arch_name
;
184 endian
= TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
? "be" : "le";
187 sprintf (arch_path
, "%s/%s%s", nto_root
, arch
, endian
);
189 sprintf (buf
, "set solib-absolute-prefix %s", arch_path
);
190 execute_command (buf
, 0);
194 nto_parse_redirection (char *pargv
[], char **pin
, char **pout
, char **perr
)
197 char *in
, *out
, *err
, *p
;
200 for (n
= 0; pargv
[n
]; n
++);
207 argv
= xcalloc (n
+ 1, sizeof argv
[0]);
209 for (i
= 0, n
= 0; n
< argc
; n
++)
228 else if (*p
++ == '2' && *p
++ == '>')
230 if (*p
== '&' && *(p
+ 1) == '1')
238 argv
[i
++] = pargv
[n
];
246 /* The struct lm_info, LM_ADDR, and nto_truncate_ptr are copied from
247 solib-svr4.c to support nto_relocate_section_addresses
248 which is different from the svr4 version. */
252 /* Pointer to copy of link map from inferior. The type is char *
253 rather than void *, so that we may use byte offsets to find the
254 various fields without the need for a cast. */
259 LM_ADDR (struct so_list
*so
)
261 struct link_map_offsets
*lmo
= nto_fetch_link_map_offsets ();
263 return (CORE_ADDR
) extract_signed_integer (so
->lm_info
->lm
+
269 nto_truncate_ptr (CORE_ADDR addr
)
271 if (TARGET_PTR_BIT
== sizeof (CORE_ADDR
) * 8)
272 /* We don't need to truncate anything, and the bit twiddling below
273 will fail due to overflow problems. */
276 return addr
& (((CORE_ADDR
) 1 << TARGET_PTR_BIT
) - 1);
280 find_load_phdr (bfd
*abfd
)
282 Elf_Internal_Phdr
*phdr
;
285 if (!elf_tdata (abfd
))
288 phdr
= elf_tdata (abfd
)->phdr
;
289 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
291 if (phdr
->p_type
== PT_LOAD
&& (phdr
->p_flags
& PF_X
))
298 nto_relocate_section_addresses (struct so_list
*so
, struct section_table
*sec
)
300 /* Neutrino treats the l_addr base address field in link.h as different than
301 the base address in the System V ABI and so the offset needs to be
302 calculated and applied to relocations. */
303 Elf_Internal_Phdr
*phdr
= find_load_phdr (sec
->bfd
);
304 unsigned vaddr
= phdr
? phdr
->p_vaddr
: 0;
306 sec
->addr
= nto_truncate_ptr (sec
->addr
+ LM_ADDR (so
) - vaddr
);
307 sec
->endaddr
= nto_truncate_ptr (sec
->endaddr
+ LM_ADDR (so
) - vaddr
);
310 /* This is cheating a bit because our linker code is in libc.so. If we
311 ever implement lazy linking, this may need to be re-examined. */
313 nto_in_dynsym_resolve_code (CORE_ADDR pc
)
315 if (in_plt_section (pc
, NULL
))
321 nto_generic_supply_gpregset (const struct regset
*regset
,
322 struct regcache
*regcache
, int regnum
,
323 const void *gregs
, size_t len
)
328 nto_generic_supply_fpregset (const struct regset
*regset
,
329 struct regcache
*regcache
, int regnum
,
330 const void *fpregs
, size_t len
)
335 nto_generic_supply_altregset (const struct regset
*regset
,
336 struct regcache
*regcache
, int regnum
,
337 const void *altregs
, size_t len
)
342 nto_dummy_supply_regset (char *regs
)
348 nto_elf_osabi_sniffer (bfd
*abfd
)
350 if (nto_is_nto_target
)
351 return nto_is_nto_target (abfd
);
352 return GDB_OSABI_UNKNOWN
;
356 nto_initialize_signals (void)
358 /* We use SIG45 for pulses, or something, so nostop, noprint
360 signal_stop_update (target_signal_from_name ("SIG45"), 0);
361 signal_print_update (target_signal_from_name ("SIG45"), 0);
362 signal_pass_update (target_signal_from_name ("SIG45"), 1);
364 /* By default we don't want to stop on these two, but we do want to pass. */
365 #if defined(SIGSELECT)
366 signal_stop_update (SIGSELECT
, 0);
367 signal_print_update (SIGSELECT
, 0);
368 signal_pass_update (SIGSELECT
, 1);
371 #if defined(SIGPHOTON)
372 signal_stop_update (SIGPHOTON
, 0);
373 signal_print_update (SIGPHOTON
, 0);
374 signal_pass_update (SIGPHOTON
, 1);
379 _initialize_nto_tdep (void)
381 add_setshow_zinteger_cmd ("nto-debug", class_maintenance
,
382 &nto_internal_debugging
, _("\
383 Set QNX NTO internal debugging."), _("\
384 Show QNX NTO internal debugging."), _("\
385 When non-zero, nto specific debug info is\n\
386 displayed. Different information is displayed\n\
387 for different positive values."),
389 NULL
, /* FIXME: i18n: QNX NTO internal debugging is %s. */
390 &setdebuglist
, &showdebuglist
);