-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segmentation fault in Perl_sv_setpvn() #14460
Comments
From thecrux@gmail.comSimple test case produced sigsegv: $ perl -e '$x|=*x=0' (gdb) bt (gdb) list Crash reproduced with perl 5.12, 5.16, 5.18, 5.21.8 |
From @cpansproutOn Sun Feb 01 13:11:02 2015, crux wrote:
*x=0 frees $x after $x is already on the stack. This is another one for #77706. -- Father Chrysostomos |
The RT System itself - Status changed from 'new' to 'open' |
From @hvdsFound by AFL (<http://lcamtuf.coredump.cx/afl>): % ./miniperl -e '$x.=*x=0' 4918 dptr[len] = '\0'; If I read it right, the $x is stacked first; the assignment to *x then frees the already-stacked $x; by the time we get to sv_setpvn the destination is a freed SV (type = 0xff), so the SvGROW returns a null pointer that we then try to write to. I guess in a sense this is just another example of the unrefcounted stacks issue; I'm not sure that's all that's missing here, though. Hugo |
From @hvdsAh, I see [perl #123804] is near-identical to [perl #123710], I'll merge. |
From @geeknikBuilt v5.21.10 (v5.21.9-43-g2c3f32a) with the following command line: /Configure -des -Dusedevel -DDEBUGGING -Dcc=afl-gcc -Doptimize=-O2\ -g && AFL_HARDEN=1 make -j12 test-prep Bug found with AFL (http://lcamtuf.coredump.cx/afl) Valgrind: GDB: Program received signal SIGABRT, Aborted. Hexdump of 11-byte test case: System Info: Debian 7, Kernel 3.2.65-1+deb7u1 x86_64, GCC 4.9.2, libc 2.13-38+deb7u7 |
From @geeknik |
From @hvdsThis is the same as [perl #123710], cascading asssignment to a scalar and its glob. I'll merge them. Hugo |
The RT System itself - Status changed from 'new' to 'open' |
From @dcollinsn[perl #125840] was fixed in blead, however is only a symptom of this larger bug. To aid anyone attempting to resolve this, an odd testcase, in that it actually throws an assert fail on perls built with -DDEBUGGING. Testcase: Perl 5.10 exits with an error message: Blead segfaults with no output A -DDEBUGGING blead throws the following assert fail: |
From @iabynOn Wed, Aug 26, 2015 at 01:17:04PM -0700, Dan Collins via RT wrote:
Presumably my bigger fix for [perl #125840], 3c62f09, which was -- |
From @tonycozOn Tue Sep 01 07:14:27 2015, davem wrote:
Yes, your fix also fixed this. Closing. Tony |
@tonycoz - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for submitting this report. You have helped make Perl better. Perl 5.24.0 may be downloaded via https://metacpan.org/release/RJBS/perl-5.24.0 |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#123710 (status was 'resolved')
Searchable as RT123710$
The text was updated successfully, but these errors were encountered: