所以,我正在学习如何使用C语言进行编程,并且我已经(或者正在尝试)与GDB一起玩。
所以我写了这个简单的代码:
#include <stdio.h>
int main (int argc, char *argv[]){
int i;
int n = atoi(argv[2]);
for (i=0; i<n ; i++){
printf("%s \n",i+1,argv[1]); // prints the string provided in
} // the arguments for n times
return 0;
}
我试图让GDB获取一些信息。 所以我用它来尝试从内存地址中获取参数,但这就是我得到的:
(gdb) break main
Breakpoint 1 at 0x4005d7: file repeat2.c, line 14.
(gdb) break 17
Breakpoint 2 at 0x40062c: file repeat2.c, line 17.
(gdb) run hello 5
Starting program: /root/Scrivania/Programmazione/repeat2 hello 5
warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000
Breakpoint 1, main (argc=3, argv=0x7fffffffe948) at repeat2.c:14
14 int n = atoi(argv[2]);
(gdb) cont
Continuing.
1 ------> hello
2 ------> hello
3 ------> hello
4 ------> hello
5 ------> hello
Breakpoint 2, main (argc=3, argv=0x7fffffffe948) at repeat2.c:18
18 return 0;
(gdb) x/3xw 0x7fffffffe948 (I try to read what argv contains)
0x7fffffffe948: 0xffffebbc 0x00007fff 0xffffebe3
(gdb) x/s 0xffffebbc (I try to read one of the argoments in the array)
0xffffebbc: <Address 0xffffebbc out of bounds>
为什么我一直收到此错误?我使用的是64位,而且我使用的是Kali Linux
如果编译的程序有效,那就是我无法理解为什么我不能用GDB读取这些值。
答案 0 :(得分:3)
@DrakaSAN在您的程序中发现了该错误。至于你的gdb问题:
x/3xw
打印出3个4字节的单词。 argv
是一个char *
指针数组。
由于您使用的是64位系统,因此指针为8个字节,因此您需要使用w
(巨型,8个字节)或g
(地址)来代替a
,将自动选择正确的尺寸:
(gdb) break 7
Breakpoint 1 at 0x40058c: file repeat2.c, line 7.
(gdb) run hello 5
Starting program: /tmp/repeat2 hello 5
Breakpoint 1, main (argc=3, argv=0x7fffffffdfe8) at repeat2.c:7
7 int n = atoi(argv[2]);
(gdb) x/3xg 0x7fffffffdfe8
0x7fffffffdfe8: 0x00007fffffffe365 0x00007fffffffe372
0x7fffffffdff8: 0x00007fffffffe378
(gdb) x/3xa 0x7fffffffdfe8
0x7fffffffdfe8: 0x7fffffffe365 0x7fffffffe372
0x7fffffffdff8: 0x7fffffffe378
(gdb) x/s 0x7fffffffe365
0x7fffffffe365: "/tmp/repeat2"
(gdb) x/s 0x7fffffffe372
0x7fffffffe372: "hello"
(gdb) x/s 0x7fffffffe378
0x7fffffffe378: "5"
感谢@adpeace推荐a
修饰符。
答案 1 :(得分:1)
欢迎来到SO,+1,因为提出了第一个问题。
printf("%s \n",i+1,argv[1]);
当printf期望字符串(%s)时,您尝试放置int(i)。 我想你想做的是:
for (i=0; i<n ; i++)
{
printf("%s \n", argv[1]);
}
虽然,我很惊讶你的编译器没有为此尖叫。
(作为一个注释...... Kali Linux不应该被用作开发操作系统,你可能想要使用Debian或Ubuntu ......)