1=encoding utf8 2 3=head1 NAME 4 5perl5125delta - what is new for perl v5.12.5 6 7=head1 DESCRIPTION 8 9This document describes differences between the 5.12.4 release and 10the 5.12.5 release. 11 12If you are upgrading from an earlier release such as 5.12.3, first read 13L<perl5124delta>, which describes differences between 5.12.3 and 145.12.4. 15 16=head1 Security 17 18=head2 C<Encode> decode_xs n-byte heap-overflow (CVE-2011-2939) 19 20A bug in C<Encode> could, on certain inputs, cause the heap to overflow. 21This problem has been corrected. Bug reported by Robert Zacek. 22 23=head2 C<File::Glob::bsd_glob()> memory error with GLOB_ALTDIRFUNC (CVE-2011-2728) 24 25Calling C<File::Glob::bsd_glob> with the unsupported flag GLOB_ALTDIRFUNC would 26cause an access violation / segfault. A Perl program that accepts a flags value from 27an external source could expose itself to denial of service or arbitrary code 28execution attacks. There are no known exploits in the wild. The problem has been 29corrected by explicitly disabling all unsupported flags and setting unused function 30pointers to null. Bug reported by Clément Lecigne. 31 32=head2 Heap buffer overrun in 'x' string repeat operator (CVE-2012-5195) 33 34Poorly written perl code that allows an attacker to specify the count to 35perl's 'x' string repeat operator can already cause a memory exhaustion 36denial-of-service attack. A flaw in versions of perl before 5.15.5 can 37escalate that into a heap buffer overrun; coupled with versions of glibc 38before 2.16, it possibly allows the execution of arbitrary code. 39 40This problem has been fixed. 41 42=head1 Incompatible Changes 43 44There are no changes intentionally incompatible with 5.12.4. If any 45exist, they are bugs and reports are welcome. 46 47=head1 Modules and Pragmata 48 49=head2 Updated Modules 50 51=head3 L<B::Concise> 52 53L<B::Concise> no longer produces mangled output with the B<-tree> option 54[perl #80632]. 55 56=head3 L<charnames> 57 58A regression introduced in Perl 5.8.8 has been fixed, that caused 59C<charnames::viacode(0)> to return C<undef> instead of the string "NULL" 60[perl #72624]. 61 62=head3 L<Encode> has been upgraded from version 2.39 to version 2.39_01 63 64See L</Security>. 65 66=head3 L<File::Glob> has been upgraded from version 1.07 to version 1.07_01 67 68See L</Security>. 69 70=head3 L<Unicode::UCD> 71 72The documentation for the C<upper> function now actually says "upper", not 73"lower". 74 75=head3 L<Module::CoreList> 76 77L<Module::CoreList> has been updated to version 2.50_02 to add data for 78this release. 79 80=head1 Changes to Existing Documentation 81 82=head2 L<perlebcdic> 83 84The L<perlebcdic> document contains a helpful table to use in C<tr///> to 85convert between EBCDIC and Latin1/ASCII. Unfortunately, the table was the 86inverse of the one it describes. This has been corrected. 87 88=head2 L<perlunicode> 89 90The section on 91L<User-Defined Case Mappings|perlunicode/User-Defined Case Mappings> had 92some bad markup and unclear sentences, making parts of it unreadable. This 93has been rectified. 94 95=head2 L<perluniprops> 96 97This document has been corrected to take non-ASCII platforms into account. 98 99=head1 Installation and Configuration Improvements 100 101=head2 Platform Specific Changes 102 103=over 4 104 105=item Mac OS X 106 107There have been configuration and test fixes to make Perl build cleanly on 108Lion and Mountain Lion. 109 110=item NetBSD 111 112The NetBSD hints file was corrected to be compatible with NetBSD 6.* 113 114=back 115 116=head1 Selected Bug Fixes 117 118=over 4 119 120=item * 121 122C<chop> now correctly handles characters above "\x{7fffffff}" 123[perl #73246]. 124 125=item * 126 127C<< ($<,$>) = (...) >> stopped working properly in 5.12.0. It is supposed 128to make a single C<setreuid()> call, rather than calling C<setruid()> and 129C<seteuid()> separately. Consequently it did not work properly. This has 130been fixed [perl #75212]. 131 132=item * 133 134Fixed a regression of kill() when a match variable is used for the 135process ID to kill [perl #75812]. 136 137=item * 138 139C<UNIVERSAL::VERSION> no longer leaks memory. It started leaking in Perl 1405.10.0. 141 142=item * 143 144The C-level C<my_strftime> functions no longer leaks memory. This fixes a 145memory leak in C<POSIX::strftime> [perl #73520]. 146 147=item * 148 149C<caller> no longer leaks memory when called from the DB package if 150C<@DB::args> was assigned to after the first call to C<caller>. L<Carp> 151was triggering this bug [perl #97010]. 152 153=item * 154 155Passing to C<index> an offset beyond the end of the string when the string 156is encoded internally in UTF8 no longer causes panics [perl #75898]. 157 158=item * 159 160Syntax errors in C<< (?{...}) >> blocks in regular expressions no longer 161cause panic messages [perl #2353]. 162 163=item * 164 165Perl 5.10.0 introduced some faulty logic that made "U*" in the middle of 166a pack template equivalent to "U0" if the input string was empty. This has 167been fixed [perl #90160]. 168 169=back 170 171=head1 Errata 172 173=head2 split() and C<@_> 174 175split() no longer modifies C<@_> when called in scalar or void context. 176In void context it now produces a "Useless use of split" warning. 177This is actually a change introduced in perl 5.12.0, but it was missed from 178that release's L<perl5120delta>. 179 180=head1 Acknowledgements 181 182Perl 5.12.5 represents approximately 17 months of development since Perl 5.12.4 183and contains approximately 1,900 lines of changes across 64 files from 18 184authors. 185 186Perl continues to flourish into its third decade thanks to a vibrant community 187of users and developers. The following people are known to have contributed the 188improvements that became Perl 5.12.5: 189 190Andy Dougherty, Chris 'BinGOs' Williams, Craig A. Berry, David Mitchell, 191Dominic Hargreaves, Father Chrysostomos, Florian Ragwitz, George Greer, Goro 192Fuji, Jesse Vincent, Karl Williamson, Leon Brocard, Nicholas Clark, Rafael 193Garcia-Suarez, Reini Urban, Ricardo Signes, Steve Hay, Tony Cook. 194 195The list above is almost certainly incomplete as it is automatically generated 196from version control history. In particular, it does not include the names of 197the (very much appreciated) contributors who reported issues to the Perl bug 198tracker. 199 200Many of the changes included in this version originated in the CPAN modules 201included in Perl's core. We're grateful to the entire CPAN community for 202helping Perl to flourish. 203 204For a more complete list of all of Perl's historical contributors, please see 205the F<AUTHORS> file in the Perl source distribution. 206 207=head1 Reporting Bugs 208 209If you find what you think is a bug, you might check the articles 210recently posted to the comp.lang.perl.misc newsgroup and the perl 211bug database at http://rt.perl.org/perlbug/ . There may also be 212information at http://www.perl.org/ , the Perl Home Page. 213 214If you believe you have an unreported bug, please run the B<perlbug> 215program included with your release. Be sure to trim your bug down 216to a tiny but sufficient test case. Your bug report, along with the 217output of C<perl -V>, will be sent off to perlbug@perl.org to be 218analysed by the Perl porting team. 219 220If the bug you are reporting has security implications, which make it 221inappropriate to send to a publicly archived mailing list, then please send 222it to perl5-security-report@perl.org. This points to a closed subscription 223unarchived mailing list, which includes all the core committers, who be able 224to help assess the impact of issues, figure out a resolution, and help 225co-ordinate the release of patches to mitigate or fix the problem across all 226platforms on which Perl is supported. Please only use this address for 227security issues in the Perl core, not for modules independently 228distributed on CPAN. 229 230=head1 SEE ALSO 231 232The F<Changes> file for an explanation of how to view exhaustive details 233on what changed. 234 235The F<INSTALL> file for how to build Perl. 236 237The F<README> file for general stuff. 238 239The F<Artistic> and F<Copying> files for copyright information. 240 241=cut 242