远程GDB
radare2 allows remote debugging over the gdb remote protocol. So you can run a gdbserver and connect to it with radare2 for remote debugging. The syntax for connecting is:
Note that the following command does the same, r2 will use the debug plugin specified by the uri if found.
The debug plugin can be changed at runtime using the dL or Ld commands.
Or if the gdbserver is running in extended mode, you can attach to a process on the host with:
After connecting, you can use the standard r2 debug commands as normal.
radare2 does not yet load symbols from gdbserver, so it needs the binary to be locally present to load symbols from it. In case symbols are not loaded even if the binary is present, you can try specifying the path with e dbg.exe.path
:
If symbols are loaded at an incorrect base address, you can try specifying the base address too with e bin.baddr
:
Usually the gdbserver reports the maximum packet size it supports. Otherwise, radare2 resorts to sensible defaults. But you can specify the maximum packet size with the environment variable R2_GDB_PKTSZ
. You can also check and set the max packet size during a session with the IO system, =!
.
The gdb IO system provides useful commands which might not fit into any standard radare2 commands. You can get a list of these commands with =!?
. (Remember, =!
accesses the underlying IO plugin's system()
).
radare2 also provides its own gdbserver implementation:
So you can start it as:
And then connect to it like you would to any gdbserver. For example, with radare2:
最后更新于
这有帮助吗?