Summary: | ./common/linux-ptrace.c:117: internal-error: linux_ptrace_test_ret_to_nx: Assertion `WIFSTOPPED (status)' failed. | ||
---|---|---|---|
Product: | gdb | Reporter: | Anton Kochkov <anton.kochkov> |
Component: | gdb | Assignee: | Jan Kratochvil <jan> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | jan, rupeshpotharla, ssbssa |
Priority: | P2 | ||
Version: | 7.5 | ||
Target Milestone: | --- | ||
Host: | Target: | ||
Build: | Last reconfirmed: | ||
Attachments: |
Detection of PaX, also on x86_64.
Fixed patch. Patch #3. |
Description
Anton Kochkov
2012-09-09 08:39:58 UTC
7.4 version works well, without this bug When add printf("status=%lx", status); before gdb_assert(WIFSTOPPED(status)); in gdb/common/linux-ptrace.c in function linux_ptrace_test_ret_to_nx() it show "status=9" before /common/linux-ptrace.c:117: internal-error: linux_ptrace_test_ret_to_nx: Assertion `WIFSTOPPED (status)' failed. Created attachment 6629 [details]
Detection of PaX, also on x86_64.
Could you check if this patch works? It would be nice to test it also on x86_64.
Downloading some gentoo .iso but not sure how it will work for me.
(In reply to comment #3) > Created attachment 6629 [details] > Detection of PaX, also on x86_64. > > Could you check if this patch works? It would be nice to test it also on > x86_64. > Downloading some gentoo .iso but not sure how it will work for me. With applied patch: └>gdb `which elinks` GNU gdb (Gentoo 7.5 p1) 7.5 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu". For bug reporting instructions, please see: <http://bugs.gentoo.org/>... Reading symbols from /usr/bin/elinks...(no debugging symbols found)...done. (gdb) run http://google.com Starting program: /usr/bin/elinks http://google.com ./common/linux-ptrace.c:136: internal-error: linux_ptrace_test_ret_to_nx: Assertion `WIFSIGNALED (status) == SIGKILL' failed. A problem internal to GDB has been detected, further debugging may prove unreliable. Quit this debugging session? (y or n) Created attachment 6630 [details]
Fixed patch.
(In reply to comment #5) > Created attachment 6630 [details] > Fixed patch. Now I have this output: ┌─[ xvilka@XLaptop ] [12:09:19 ] ~/gdb-bug └>gdb `which elinks` GNU gdb (Gentoo 7.5 p1) 7.5 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu". For bug reporting instructions, please see: <http://bugs.gentoo.org/>... Reading symbols from /usr/bin/elinks...(no debugging symbols found)...done. (gdb) run http://google.com Starting program: /usr/bin/elinks http://google.com warning: linux_ptrace_test_ret_to_nx: Cannot PTRACE_KILL: No such process warning: Cannot call inferior functions, Linux kernel PaX protection forbids return to non-executable pages! warning: Could not load shared library symbols for linux-gate.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/libthread_db.so.1". Program received signal SIGSEGV, Segmentation fault. 0xa9249d93 in GC_is_black_listed () from /usr/lib/libgc.so.1 (gdb) Created attachment 6631 [details]
Patch #3.
(In reply to comment #7) > Created attachment 6631 [details] > Patch #3. Yes, it works: ┌─[ xvilka@XLaptop ] [12:09:19 ] ~/gdb-bug └>gdb `which elinks` GNU gdb (Gentoo 7.5 p1) 7.5 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu". For bug reporting instructions, please see: <http://bugs.gentoo.org/>... Reading symbols from /usr/bin/elinks...(no debugging symbols found)...done. (gdb) run http://google.com Starting program: /usr/bin/elinks http://google.com warning: Cannot call inferior functions, Linux kernel PaX protection forbids return to non-executable pages! warning: Could not load shared library symbols for linux-gate.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/libthread_db.so.1". Program received signal SIGSEGV, Segmentation fault. 0x9d11ed93 in GC_is_black_listed () from /usr/lib/libgc.so.1 (gdb) (In reply to Anton Kochkov from comment #8) > (In reply to comment #7) > > Created attachment 6631 [details] > > Patch #3. > > Yes, it works: A version of this patch was applied here: https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=6e3c039e9cd766aae9e300fef549926ef2df2bc9 So can this be closed? Fixed. |