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