为什么我无法在 Linux 中的 fopen 处设置断点

发布于 2025-01-02 23:23:08 字数 538 浏览 0 评论 0原文

这是我的代码:

#include <stdio.h>
int main()
{
    fopen("./1.txt","r");
    printf("hello");
    return 0;
}

$g++ -g -om main.cpp

$gdb ./m
(gdb) b fopen
Breakpoint 1 at 0x804842c
(gdb) b printf
Breakpoint 2 at 0x804843c
(gdb) i b
Num     Type           Disp Enb Address    What
1       breakpoint     keep y   0x0804842c <fopen@plt>
2       breakpoint     keep y   0x0804843c <printf@plt>
(gdb) r

函数 fopen 处的断点似乎永远不会工作,但 printf 处工作正常。 为什么?

谢谢

Here is my codes:

#include <stdio.h>
int main()
{
    fopen("./1.txt","r");
    printf("hello");
    return 0;
}

$g++ -g -o m main.cpp

$gdb ./m
(gdb) b fopen
Breakpoint 1 at 0x804842c
(gdb) b printf
Breakpoint 2 at 0x804843c
(gdb) i b
Num     Type           Disp Enb Address    What
1       breakpoint     keep y   0x0804842c <fopen@plt>
2       breakpoint     keep y   0x0804843c <printf@plt>
(gdb) r

it seems that the breakpoint at function fopen never work ,but at printf works fine.
why?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2025-01-09 23:23:08

这是 GDB 中的一个错误,似乎在当前的 CVS 源中已修复(截至 20120124)。

问题是 Linux 上 32 位 libc.so.6 中有两个版本的 fopen,并且 GDB 用来选择错误一:

nm -D /lib32/libc.so.6 | grep '\<fopen\>'
0005d0c0 T fopen
00109750 T fopen

readelf -s  /lib32/libc.so.6 | egrep '0005d0c0|00109750'
181: 0005d0c0    50 FUNC    GLOBAL DEFAULT   12 fopen@@GLIBC_2.1
182: 00109750   136 FUNC    GLOBAL DEFAULT   12 fopen@GLIBC_2.0
679: 0005d0c0    50 FUNC    GLOBAL DEFAULT   12 _IO_fopen@@GLIBC_2.1
680: 00109750   136 FUNC    GLOBAL DEFAULT   12 _IO_fopen@GLIBC_2.0

如果您也在 main 上中断,并重复 info break,您将看到 GDB 在 fopen@GLIBC_2.0 上设置断点,但是调用的函数是fopen@@GLIBC_2.1

It's a bug in GDB, which appears to be fixed in current CVS sources (as of 20120124).

The problem is that there are two versions of fopen in 32-bit libc.so.6 on Linux, and GDB used to select the wrong one:

nm -D /lib32/libc.so.6 | grep '\<fopen\>'
0005d0c0 T fopen
00109750 T fopen

readelf -s  /lib32/libc.so.6 | egrep '0005d0c0|00109750'
181: 0005d0c0    50 FUNC    GLOBAL DEFAULT   12 fopen@@GLIBC_2.1
182: 00109750   136 FUNC    GLOBAL DEFAULT   12 fopen@GLIBC_2.0
679: 0005d0c0    50 FUNC    GLOBAL DEFAULT   12 _IO_fopen@@GLIBC_2.1
680: 00109750   136 FUNC    GLOBAL DEFAULT   12 _IO_fopen@GLIBC_2.0

If you also break on main, and repeat info break, you'll see that GDB set the breakpoint on fopen@GLIBC_2.0, but the function that is called is the fopen@@GLIBC_2.1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文