-
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
SEGV in deep recursion with tied hash #14597
Comments
From @steve-m-hayThe following program (put together by Matthew Horsfall (alh) <wolfsage@gmail.com> in the course of investigating rt.perl.org#124048) SEGVs after hitting deep recursion in the tied hash FIRSTKEY subroutine: #!/usr/bin/perl use strict; { our @ISA = qw(Tie::StdHash); sub FIRSTKEY { my %x; for my $k (keys %x) { The original bug report was ultimately a case of garbage-in, garbage-out, but I'm logging the SEGV here on the basis that any crash in perl is surely a bug. |
From @bulk88On Tue Mar 17 15:50:59 2015, shay wrote:
With that script. "Unhandled exception at 0x77ef5bf1 (ntdll.dll) in perl.exe: 0xC00000FD: Stack overflow." Only ~7 MB of memory is being used by the process but vmmap shows the process ran out of C stack (see pic). unpack('P1', "\x01\x00\x00\x00") or unpack('P1', "\x01\x00\x00\x00\x00\x00\x00\x00") also crashes, is that a bug? I dont think running out of C stack on deep recursion (unless the bug is deep recursion should be turned into a "goto") is a bug. Running out of Perl stack generates a NULL from malloc and then perl processes that NULL and exists. We could have SEH/sig segv handler that conditionally checks for out of C stack condition, traps the signal/exception, and resumes execution with a prompt printing of "out of memory" then exit() so running out of C stack is an identical experience to running out of Perl stack, but I think that is overengineering. Callstack below of the out of C stack crash of the script in the OP. ntdll.dll!RtlpLowFragHeapAlloc() + 0x31 bytes -- |
The RT System itself - Status changed from 'new' to 'open' |
From @shlomifOn Tue Mar 17 15:50:59 2015, shay wrote:
This program causes a segmentation fault for the system perl here on Mageia Linux 5 x86-64: « It also segfaults bleadperl on the same system: « -- Shlomi Fish |
Migrated from rt.perl.org#124102 (status was 'open')
Searchable as RT124102$
The text was updated successfully, but these errors were encountered: