1

我用以下方法编译了金鱼内核:

 [ ] Optimize for size,
 [*] Kernel hacking 
     [*] Compile the kernel with debug info 
     [*] KGDB: kernel debugging with remote gdb —>      
     [*] Enable dynamic printk() call support 

我用编译过的内核启动了 AVD。

emulator -kernel goldfish/arch/arm/boot/zImage -avd TestAVD

我将已编译的 c 程序推送到 AVD 上。

我下载了库(我不确定它是否正确)

adb pull /system/lib ./debuginfo/lib
adb pull /system/bin/linker ./debuginfo/lib

运行 gdbserver:

gdbserver 127.0.0.1:7777 ./a

转发端口:

adb forward tcp:7777 tcp:7777

运行 gdb

gdb-multiarch ./a

指定搜索目录:

set solib-search-path ./debuginfo/lib

连接到设备

target remote :7777

我打破了,例如,关闭。

0xaf0ae228 in close () from /home/wuyihao/android_sec/debuginfo/lib/libc.so
1: x/i $pc
=> 0xaf0ae228 <close+8>:        svc     0x00000000
(gdb) list
No symbol table is loaded.  Use the "file" command.

我可以得到源代码。所以我尝试使用变量 CFLAG="-g" 重新编译内核

没什么不同。

谢谢!

ps:我注意到下载的库都被剥离了。

4

1 回答 1

1

libc.so 不是 Linux 内核。它是 C 标准库。

您极不可能需要在那里寻找问题。如果您的 close() 调用不起作用,则几乎可以肯定您使用它有问题,而不是它的实现。

于 2016-07-13T08:42:54.127 回答