7

64 ビット プログラムをデバッグしようとしていますが、gdb は i386 アーキテクチャであると認識しているようです。

# file /usr/local/bin/foo
/usr/local/bin/foo: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.4.0, not stripped


# gdb --args foo bar
GNU gdb (GDB) 7.3.1
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /usr/local/bin/foo...done.
(gdb) set debug arch 1
(gdb) show debug arch
Architecture debugging is 1.
(gdb) info target
Symbols from "/usr/local/bin/foo".
Local exec file:
gdbarch_find_by_info: info.bfd_arch_info i386:x86-64
gdbarch_find_by_info: info.byte_order 1 (little)
gdbarch_find_by_info: info.osabi 5 (GNU/Linux)
gdbarch_find_by_info: info.abfd 0xaf4a90
gdbarch_find_by_info: info.tdep_info 0x0
gdbarch_find_by_info: Previous architecture 0xb05790 (i386:x86-64) selected
    `/usr/local/bin/foo', file type elf64-x86-64.
    Entry point: 0x419730
    0x00000000004001c8 - 0x00000000004001e4 is .interp
    0x00000000004001e4 - 0x0000000000400204 is .note.ABI-tag
    0x0000000000400208 - 0x0000000000402560 is .hash
    0x0000000000402560 - 0x0000000000409898 is .dynsym
    0x0000000000409898 - 0x0000000000411188 is .dynstr
    0x0000000000411188 - 0x0000000000411b22 is .gnu.version
    0x0000000000411b28 - 0x0000000000411b88 is .gnu.version_r
    0x0000000000411b88 - 0x00000000004181a0 is .rela.dyn
    0x00000000004181a0 - 0x0000000000418e78 is .rela.plt
    0x0000000000418e78 - 0x0000000000418e90 is .init
    0x0000000000418e90 - 0x0000000000419730 is .plt
    0x0000000000419730 - 0x00000000004ede38 is .text
    0x00000000004ede38 - 0x00000000004ede46 is .fini
    0x00000000004ede48 - 0x00000000004ede4c is .eh_frame
    0x00000000006ee000 - 0x00000000006ee010 is .ctors
    0x00000000006ee010 - 0x00000000006ee020 is .dtors
    0x00000000006ee020 - 0x00000000006ee028 is .jcr
    0x00000000006ee028 - 0x00000000006ee1f8 is .dynamic
    0x00000000006ee1f8 - 0x00000000006f07f0 is .got
    0x00000000006f07f0 - 0x00000000006f0c50 is .got.plt
    0x00000000006f0c50 - 0x0000000000736c70 is .data
    0x0000000000736c70 - 0x000000000073b420 is .bss
(gdb) start
Temporary breakpoint 1 at 0x419e70: file foo.lpr, line 69.
Starting program: /usr/local/bin/foo bar
warning: Selected architecture i386:x86-64 is not compatible with reported target architecture i386
gdbarch_find_by_info: info.bfd_arch_info i386:x86-64
gdbarch_find_by_info: info.byte_order 1 (little)
gdbarch_find_by_info: info.osabi 5 (GNU/Linux)
gdbarch_find_by_info: info.abfd 0xaf4a90
gdbarch_find_by_info: info.tdep_info 0x0
gdbarch_find_by_info: Target rejected architecture
gdbarch_update_p: Architecture not found
warning: Architecture rejected target-supplied description
gdbarch_find_by_info: info.bfd_arch_info i386:x86-64
gdbarch_find_by_info: info.byte_order 1 (little)
gdbarch_find_by_info: info.osabi 5 (GNU/Linux)
gdbarch_find_by_info: info.abfd 0xd6ce90
gdbarch_find_by_info: info.tdep_info 0x0
gdbarch_find_by_info: Previous architecture 0xb05790 (i386:x86-64) selected
Error in re-setting breakpoint 1: Cannot access memory at address 0x419e60
Error in re-setting breakpoint 1: Cannot access memory at address 0x419e60
process 5299 is executing new program: /usr/local/bin/foo
warning: Selected architecture i386:x86-64 is not compatible with reported target architecture i386
gdbarch_find_by_info: info.bfd_arch_info i386:x86-64
gdbarch_find_by_info: info.byte_order 1 (little)
gdbarch_find_by_info: info.osabi 5 (GNU/Linux)
gdbarch_find_by_info: info.abfd 0xb21790
gdbarch_find_by_info: info.tdep_info 0x0
gdbarch_find_by_info: Target rejected architecture
Architecture of file not recognized.

次の警告に注意してください。

warning: Selected architecture i386:x86-64 is not compatible with reported target architecture i386

その後:

gdbarch_find_by_info: Target rejected architecture
gdbarch_update_p: Architecture not found
warning: Architecture rejected target-supplied description

gdb で「set Architecture」と入力してタブを押すと、次のように表示されます。

(gdb) set architecture 
auto               i386:intel         i386:x64-32:intel  i386:x86-64:intel  
i386               i386:x64-32        i386:x86-64        i8086

私の質問は、私のファイルが明らかに x86-64 バイナリであるにもかかわらず、gdb が i386 アーキテクチャを持っていると考えるのはなぜですか?それを修正するにはどうすればよいですか?

私のプログラムは、FreePascalバージョン 2.6.0 を使用してコンパイルされました。

更新: Ubuntu 12.04 マシン (3.2.0-31 カーネル) で同じ gdb バイナリと同じ freepascal バイナリを使用しても、警告は表示されません。デバッグしようとしているサーバーは、2.6.34.10-24 カーネルを実行しています。カーネルまたはサーバーで、gdb に影響を与える何かが誤って構成されている可能性がありますか?

4

1 に答える 1

2

あなたの問題はここから始まります:

gdbarch_find_by_info: 対象の拒否されたアーキテクチャ

i386:x86-64これは、GDB のターゲットに依存するコードが、アーキテクチャに関する何かを気に入らなかったことを意味します。残念ながら、が気に入らなかったかを簡単に判断する方法はありません。それを見つけるには、GDB 自体をデバッグする必要があります。

GDB が失敗したマシンで他のバイナリ (例: )をデバッグできますか?/bin/date

于 2012-09-28T00:25:11.117 に答える