gdb 内存复制到/从文件



dump [格式] memory 文件名 起始地址 结构地址 #   把指定内存段写到文件

 dump [格式] value 文件名 表达式                        #   把指定值写到文件
        格式包括:
            binary      原始二进制格式
            ihex        intel 16进制格式
            srec        S-recored格式
            tekhex      tektronix 16进制格式


 append [binary] memory 文件名 起始地址 结构地址 #   按2进制追加到文件
 append [binary] value 文件名 表达式             #   按2进制追加到文件
    

restore 文件名 [binary] bias 起始地址 结构地址 #   恢复文件中内容到内存.如果文件内容是原始二进制,需要指定binary参数,不然会gdb自动识别文件格式




dump命令举例:

参考:http://stackoverflow.com/questions/13568215/how-can-i-dump-the-output-of-the-x-command-in-gdb-to-a-file


目的:

在gdb调试过程中(甚至是在调试coredump时),将程序内存中的内容dump到指定文件中。


gdb命令:

(gdb) dump binary memory ./file START STOP

将 [START, STOP) 地址范围内的内存内容输出到文件 file 中


举例:

1)将 [$pc, $pc+450) 范围内的内存输出到./file 中

[plain] view plain copy print ?
  1. (gdb) p $pc  
  2. $1 = (void (*)()) 0x4004a7 <main+11>  
  3. (gdb) p $pc + 450  
  4. $2 = (void (*)()) 0x400669  
  5. (gdb) dump binary memory ./file $1 $2  

2)将字符串s1的前5个字节输出到./a中

[cpp] view plain copy print ?
  1. int main ()  
  2. {  
  3.         char s1[] = "abcdefghijklmnopqrstuvwxyz";  
  4.         char s2[] = "0123456789";  
  5.   
  6.   return 0;  
  7. }  

[root@ampcommons02 yasi]# gdb ./dump -q
Reading symbols from /home/yasi/s...done.
(gdb) b 6
Breakpoint 1 at 0x4005a4: file s.cpp, line 6.
(gdb) r
Starting program: /home/yasi/s

Breakpoint 1, main () at s.cpp:6
6         return 0;
Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.80.el6_3.6.x86_64 libgcc-4.4.6-4.el6.x86_64 libstdc++-4.4.6-4.el6.x86_64
(gdb) dump binary memory ./dump s1 s1+5


[root@ampcommons02 yasi]# cat ./dump
abcde

你可能感兴趣的:(gdb 内存复制到/从文件)