This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(perl #133706) remove exploit code from Storable
[perl5.git] / pod / perlpolicy.pod
CommitLineData
3db23aec
SH
1=encoding utf8
2
48cb5b3a 3=head1 NAME
3c78fafa 4
9a7064ee 5perlpolicy - Various and sundry policies and commitments related to the Perl core
48cb5b3a
JV
6
7=head1 DESCRIPTION
8
9This document is the master document which records all written
10policies about how the Perl 5 Porters collectively develop and maintain
11the Perl core.
12
a101a770
JV
13=head1 GOVERNANCE
14
15=head2 Perl 5 Porters
16
17Subscribers to perl5-porters (the porters themselves) come in several flavours.
18Some are quiet curious lurkers, who rarely pitch in and instead watch
19the ongoing development to ensure they're forewarned of new changes or
20features in Perl. Some are representatives of vendors, who are there
21to make sure that Perl continues to compile and work on their
22platforms. Some patch any reported bug that they know how to fix,
23some are actively patching their pet area (threads, Win32, the regexp
24-engine), while others seem to do nothing but complain. In other
25words, it's your usual mix of technical people.
26
27Over this group of porters presides Larry Wall. He has the final word
28in what does and does not change in any of the Perl programming languages.
29These days, Larry spends most of his time on Perl 6, while Perl 5 is
30shepherded by a "pumpking", a porter responsible for deciding what
31goes into each release and ensuring that releases happen on a regular
32basis.
33
34Larry sees Perl development along the lines of the US government:
35there's the Legislature (the porters), the Executive branch (the
36-pumpking), and the Supreme Court (Larry). The legislature can
37discuss and submit patches to the executive branch all they like, but
38the executive branch is free to veto them. Rarely, the Supreme Court
39will side with the executive branch over the legislature, or the
40legislature over the executive branch. Mostly, however, the
41legislature and the executive branch are supposed to get along and
42work out their differences without impeachment or court cases.
43
44You might sometimes see reference to Rule 1 and Rule 2. Larry's power
45as Supreme Court is expressed in The Rules:
46
47=over 4
48
49=item 1
50
51Larry is always by definition right about how Perl should behave.
52This means he has final veto power on the core functionality.
53
54=item 2
55
56Larry is allowed to change his mind about any matter at a later date,
57regardless of whether he previously invoked Rule 1.
58
59=back
60
61Got that? Larry is always right, even when he was wrong. It's rare
62to see either Rule exercised, but they are often alluded to.
63
70eadc36
JV
64=head1 MAINTENANCE AND SUPPORT
65
66Perl 5 is developed by a community, not a corporate entity. Every change
67contributed to the Perl core is the result of a donation. Typically, these
68donations are contributions of code or time by individual members of our
69community. On occasion, these donations come in the form of corporate
70or organizational sponsorship of a particular individual or project.
71
72As a volunteer organization, the commitments we make are heavily dependent
73on the goodwill and hard work of individuals who have no obligation to
74contribute to Perl.
75
3b4ebcde 76That being said, we value Perl's stability and security and have long
70eadc36
JV
77had an unwritten covenant with the broader Perl community to support
78and maintain releases of Perl.
79
80This document codifies the support and maintenance commitments that
81the Perl community should expect from Perl's developers:
82
83=over
84
85=item *
86
76fbe0fe
S
87We "officially" support the two most recent stable release series. 5.22.x
88and earlier are now out of support. As of the release of 5.28.0, we will
89"officially" end support for Perl 5.24.x, other than providing security
70eadc36
JV
90updates as described below.
91
92=item *
93
94To the best of our ability, we will attempt to fix critical issues
e26b5c49 95in the two most recent stable 5.x release series. Fixes for the
70eadc36
JV
96current release series take precedence over fixes for the previous
97release series.
98
99=item *
100
101To the best of our ability, we will provide "critical" security patches
f50f542d 102/ releases for any major version of Perl whose 5.x.0 release was within
70a565f4
RS
103the past three years. We can only commit to providing these for the
104most recent .y release in any 5.x.y series.
70eadc36
JV
105
106=item *
107
108We will not provide security updates or bug fixes for development
109releases of Perl.
110
111=item *
112
113We encourage vendors to ship the most recent supported release of
114Perl at the time of their code freeze.
115
116=item *
117
118As a vendor, you may have a requirement to backport security fixes
119beyond our 3 year support commitment. We can provide limited support and
120advice to you as you do so and, where possible will try to apply
121those patches to the relevant -maint branches in git, though we may or
122may not choose to make numbered releases or "official" patches
87c118b9
DM
123available. See L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
124for details on how to begin that process.
70eadc36
JV
125
126=back
127
70e4a83b
JV
128=head1 BACKWARD COMPATIBILITY AND DEPRECATION
129
130Our community has a long-held belief that backward-compatibility is a
131virtue, even when the functionality in question is a design flaw.
132
133We would all love to unmake some mistakes we've made over the past
134decades. Living with every design error we've ever made can lead
135to painful stagnation. Unwinding our mistakes is very, very
136difficult. Doing so without actively harming our users is
137nearly impossible.
138
139Lately, ignoring or actively opposing compatibility with earlier versions
140of Perl has come into vogue. Sometimes, a change is proposed which
141wants to usurp syntax which previously had another meaning. Sometimes,
339a461d 142a change wants to improve previously-crazy semantics.
70e4a83b
JV
143
144Down this road lies madness.
145
146Requiring end-user programmers to change just a few language constructs,
147even language constructs which no well-educated developer would ever
148intentionally use is tantamount to saying "you should not upgrade to
149a new release of Perl unless you have 100% test coverage and can do a
150full manual audit of your codebase." If we were to have tools capable of
151reliably upgrading Perl source code from one version of Perl to another,
152this concern could be significantly mitigated.
153
154We want to ensure that Perl continues to grow and flourish in the coming
155years and decades, but not at the expense of our user community.
156
157Existing syntax and semantics should only be marked for destruction in
1adbeba0 158very limited circumstances. If they are believed to be very rarely used,
667f5e7f
RS
159stand in the way of actual improvement to the Perl language or perl
160interpreter, and if affected code can be easily updated to continue
161working, they may be considered for removal. When in doubt, caution
162dictates that we will favor backward compatibility. When a feature is
163deprecated, a statement of reasoning describing the decision process
164will be posted, and a link to it will be provided in the relevant
165perldelta documents.
5ae454f0
RS
166
167Using a lexical pragma to enable or disable legacy behavior should be
168considered when appropriate, and in the absence of any pragma legacy
169behavior should be enabled. Which backward-incompatible changes are
170controlled implicitly by a 'use v5.x.y' is a decision which should be
171made by the pumpking in consultation with the community.
70e4a83b
JV
172
173Historically, we've held ourselves to a far higher standard than
174backward-compatibility -- bugward-compatibility. Any accident of
175implementation or unintentional side-effect of running some bit of code
176has been considered to be a feature of the language to be defended with
177the same zeal as any other feature or functionality. No matter how
178frustrating these unintentional features may be to us as we continue
179to improve Perl, these unintentional features often deserve our
180protection. It is very important that existing software written in
181Perl continue to work correctly. If end-user developers have adopted a
182bug as a feature, we need to treat it as such.
183
184New syntax and semantics which don't break existing language constructs
185and syntax have a much lower bar. They merely need to prove themselves
b50cfd0a
RS
186to be useful, elegant, well designed, and well tested. In most cases,
187these additions will be marked as I<experimental> for some time. See
188below for more on that.
70e4a83b
JV
189
190=head2 Terminology
191
192To make sure we're talking about the same thing when we discuss the removal
193of features or functionality from the Perl core, we have specific definitions
194for a few words and phrases.
195
196=over
197
198=item experimental
199
200If something in the Perl core is marked as B<experimental>, we may change
201its behaviour, deprecate or remove it without notice. While we'll always
202do our best to smooth the transition path for users of experimental
203features, you should contact the perl5-porters mailinglist if you find
204an experimental feature useful and want to help shape its future.
205
f1126a90
RS
206Experimental features must be experimental in two stable releases before being
207marked non-experimental. Experimental features will only have their
208experimental status revoked when they no longer have any design-changing bugs
209open against them and when they have remained unchanged in behavior for the
210entire length of a development cycle. In other words, a feature present in
211v5.20.0 may be marked no longer experimental in v5.22.0 if and only if its
212behavior is unchanged throughout all of v5.21.
213
70e4a83b
JV
214=item deprecated
215
216If something in the Perl core is marked as B<deprecated>, we may remove it
5c5fd8eb
KW
217from the core in the future, though we might not. Generally, backward
218incompatible changes will have deprecation warnings for two release
219cycles before being removed, but may be removed after just one cycle if
220the risk seems quite low or the benefits quite high.
221
222As of
70e4a83b 223Perl 5.12, deprecated features and modules warn the user as they're used.
42b68fb1
DG
224When a module is deprecated, it will also be made available on CPAN.
225Installing it from CPAN will silence deprecation warnings for that module.
226
227If you use a deprecated feature or module and believe that its removal from
228the Perl core would be a mistake, please contact the perl5-porters
229mailinglist and plead your case. We don't deprecate things without a good
230reason, but sometimes there's a counterargument we haven't considered.
231Historically, we did not distinguish between "deprecated" and "discouraged"
232features.
70e4a83b
JV
233
234=item discouraged
235
236From time to time, we may mark language constructs and features which we
237consider to have been mistakes as B<discouraged>. Discouraged features
5c5fd8eb 238aren't currently candidates for removal, but
70e4a83b 239we may later deprecate them if they're found to stand in the way of a
9a7064ee 240significant improvement to the Perl core.
70e4a83b
JV
241
242=item removed
243
5c5fd8eb
KW
244Once a feature, construct or module has been marked as deprecated, we
245may remove it from the Perl core. Unsurprisingly,
42b68fb1
DG
246we say we've B<removed> these things. When a module is removed, it will
247no longer ship with Perl, but will continue to be available on CPAN.
70e4a83b
JV
248
249=back
48cb5b3a 250
fcf56c88
JV
251=head1 MAINTENANCE BRANCHES
252
366d02b5
SH
253New releases of maintenance branches should only contain changes that fall into
254one of the "acceptable" categories set out below, but must not contain any
255changes that fall into one of the "unacceptable" categories. (For example, a
256fix for a crashing bug must not be included if it breaks binary compatibility.)
257
258It is not necessary to include every change meeting these criteria, and in
259general the focus should be on addressing security issues, crashing bugs,
260regressions and serious installation issues. The temptation to include a
261plethora of minor changes that don't affect the installation or execution of
262perl (e.g. spelling corrections in documentation) should be resisted in order
263to reduce the overall risk of overlooking something. The intention is to
264create maintenance releases which are both worthwhile and which users can have
265full confidence in the stability of. (A secondary concern is to avoid burning
266out the maint-pumpking or overwhelming other committers voting on changes to be
267included (see L</"Getting changes into a maint branch"> below).)
fcf56c88 268
c792d632
SH
269The following types of change may be considered acceptable, as long as they do
270not also fall into any of the "unacceptable" categories set out below:
271
272=over
273
fcf56c88
JV
274=item *
275
79f83602 276Patches that fix CVEs or security issues. These changes should
87c118b9
DM
277be passed using the security reporting mechanism rather than applied
278directly; see L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>.
fcf56c88
JV
279
280=item *
281
4c0ef208 282Patches that fix crashing bugs, assertion failures and
a6f83414 283memory corruption but which do not otherwise change perl's
79f83602 284functionality or negatively impact performance.
fcf56c88
JV
285
286=item *
287
56b40e63 288Patches that fix regressions in perl's behavior relative to previous
fc088d5f
SH
289releases, no matter how old the regression, since some people may
290upgrade from very old versions of perl to the latest version.
56b40e63
RS
291
292=item *
293
539a060c
AC
294Patches that fix bugs in features that were new in the corresponding 5.x.0
295stable release.
296
297=item *
298
e2b7b23f
SH
299Patches that fix anything which prevents or seriously impacts the build
300or installation of perl.
301
302=item *
303
64b35da5 304Portability fixes, such as changes to Configure and the files in
79f83602 305the hints/ folder.
fcf56c88
JV
306
307=item *
308
e2b7b23f 309Minimal patches that fix platform-specific test failures.
27d0393b 310
64b35da5
SH
311=item *
312
79f83602
SH
313Documentation updates that correct factual errors, explain significant
314bugs or deficiencies in the current implementation, or fix broken markup.
64b35da5
SH
315
316=item *
317
318Updates to dual-life modules should consist of minimal patches to
b33e5804
SH
319fix crashing bugs or security issues (as above). Any changes made to
320dual-life modules for which CPAN is canonical should be coordinated with
321the upstream author.
64b35da5 322
c792d632
SH
323=back
324
325The following types of change are NOT acceptable:
326
327=over
328
329=item *
330
79f83602 331Patches that break binary compatibility. (Please talk to a pumpking.)
c792d632
SH
332
333=item *
334
79f83602 335Patches that add or remove features.
c792d632 336
27d0393b
JV
337=item *
338
79f83602 339Patches that add new warnings or errors or deprecate features.
fcf56c88
JV
340
341=item *
342
79f83602
SH
343Ports of Perl to a new platform, architecture or OS release that
344involve changes to the implementation.
fcf56c88
JV
345
346=item *
347
64b35da5
SH
348New versions of dual-life modules should NOT be imported into maint.
349Those belong in the next stable series.
fcf56c88
JV
350
351=back
352
a969a3c5
SH
353If there is any question about whether a given patch might merit
354inclusion in a maint release, then it almost certainly should not
355be included.
356
fcf56c88
JV
357=head2 Getting changes into a maint branch
358
359Historically, only the pumpking cherry-picked changes from bleadperl
e566981e 360into maintperl. This has scaling problems. At the same time,
fcf56c88 361maintenance branches of stable versions of Perl need to be treated with
29f85661 362great care. To that end, as of Perl 5.12, we have a new process for
e566981e 363maint branches.
fcf56c88 364
29f85661
SH
365Any committer may cherry-pick any commit from blead to a maint branch by
366first adding an entry to the relevant voting file in the maint-votes branch
367announcing the commit as a candidate for back-porting, and then waiting for
368at least two other committers to add their votes in support of this (i.e. a
369total of at least three votes is required before a commit may be back-ported).
370
371Most of the work involved in both rounding up a suitable set of candidate
372commits and cherry-picking those for which three votes have been cast will
373be done by the maint branch release manager, but anyone else is free to add
374other proposals if they're keen to ensure certain fixes don't get overlooked
375or fear they already have been.
376
377Other voting mechanisms may also be used instead (e.g. sending mail to
378perl5-porters and at least two other committers responding to the list
379giving their assent), as long as the same number of votes is gathered in a
380transparent manner. Specifically, proposals of which changes to cherry-pick
381must be visible to everyone on perl5-porters so that the views of everyone
382interested may be heard.
6788bcfc 383
402f2e6a
SH
384It is not necessary for voting to be held on cherry-picking perldelta
385entries associated with changes that have already been cherry-picked, nor
386for the maint-pumpking to obtain votes on changes required by the
387F<Porting/release_managers_guide.pod> where such changes can be applied by
388the means of cherry-picking from blead.
389
48cb5b3a
JV
390=head1 CONTRIBUTED MODULES
391
392
393=head2 A Social Contract about Artistic Control
6ee623d5
GS
394
395What follows is a statement about artistic control, defined as the ability
396of authors of packages to guide the future of their code and maintain
397control over their work. It is a recognition that authors should have
398control over their work, and that it is a responsibility of the rest of
399the Perl community to ensure that they retain this control. It is an
400attempt to document the standards to which we, as Perl developers, intend
401to hold ourselves. It is an attempt to write down rough guidelines about
402the respect we owe each other as Perl developers.
403
404This statement is not a legal contract. This statement is not a legal
405document in any way, shape, or form. Perl is distributed under the GNU
406Public License and under the Artistic License; those are the precise legal
407terms. This statement isn't about the law or licenses. It's about
408community, mutual respect, trust, and good-faith cooperation.
409
410We recognize that the Perl core, defined as the software distributed with
411the heart of Perl itself, is a joint project on the part of all of us.
aaa2bbb1 412From time to time, a script, module, or set of modules (hereafter referred
6ee623d5
GS
413to simply as a "module") will prove so widely useful and/or so integral to
414the correct functioning of Perl itself that it should be distributed with
9a7064ee 415the Perl core. This should never be done without the author's explicit
6ee623d5
GS
416consent, and a clear recognition on all parts that this means the module
417is being distributed under the same terms as Perl itself. A module author
418should realize that inclusion of a module into the Perl core will
419necessarily mean some loss of control over it, since changes may
420occasionally have to be made on short notice or for consistency with the
421rest of Perl.
422
423Once a module has been included in the Perl core, however, everyone
424involved in maintaining Perl should be aware that the module is still the
425property of the original author unless the original author explicitly
426gives up their ownership of it. In particular:
427
48cb5b3a
JV
428=over
429
171407a0
JJ
430=item *
431
9a7064ee 432The version of the module in the Perl core should still be considered the
171407a0
JJ
433work of the original author. All patches, bug reports, and so
434forth should be fed back to them. Their development directions
435should be respected whenever possible.
6ee623d5 436
48cb5b3a
JV
437=item *
438
439Patches may be applied by the pumpkin holder without the explicit
440cooperation of the module author if and only if they are very minor,
441time-critical in some fashion (such as urgent security fixes), or if
442the module author cannot be reached. Those patches must still be
443given back to the author when possible, and if the author decides on
444an alternate fix in their version, that fix should be strongly
445preferred unless there is a serious problem with it. Any changes not
446endorsed by the author should be marked as such, and the contributor
447of the change acknowledged.
448
449=item *
450
451The version of the module distributed with Perl should, whenever
452possible, be the latest version of the module as distributed by the
453author (the latest non-beta version in the case of public Perl
454releases), although the pumpkin holder may hold off on upgrading the
455version of the module distributed with Perl to the latest version
456until the latest version has had sufficient testing.
457
458=back
6ee623d5
GS
459
460In other words, the author of a module should be considered to have final
461say on modifications to their module whenever possible (bearing in mind
462that it's expected that everyone involved will work together and arrive at
463reasonable compromises when there are disagreements).
464
465As a last resort, however:
466
48cb5b3a
JV
467
468If the author's vision of the future of their module is sufficiently
469different from the vision of the pumpkin holder and perl5-porters as a
470whole so as to cause serious problems for Perl, the pumpkin holder may
9a7064ee 471choose to formally fork the version of the module in the Perl core from the
48cb5b3a 472one maintained by the author. This should not be done lightly and
c4f5d98d 473should B<always> if at all possible be done only after direct input
48cb5b3a 474from Larry. If this is done, it must then be made explicit in the
9a7064ee 475module as distributed with the Perl core that it is a forked version and
48cb5b3a
JV
476that while it is based on the original author's work, it is no longer
477maintained by them. This must be noted in both the documentation and
478in the comments in the source of the module.
6ee623d5
GS
479
480Again, this should be a last resort only. Ideally, this should never
481happen, and every possible effort at cooperation and compromise should be
482made before doing this. If it does prove necessary to fork a module for
483the overall health of Perl, proper credit must be given to the original
484author in perpetuity and the decision should be constantly re-evaluated to
485see if a remerging of the two branches is possible down the road.
486
487In all dealings with contributed modules, everyone maintaining Perl should
488keep in mind that the code belongs to the original author, that they may
489not be on perl5-porters at any given time, and that a patch is not
490official unless it has been integrated into the author's copy of the
491module. To aid with this, and with points #1, #2, and #3 above, contact
492information for the authors of all contributed modules should be kept with
493the Perl distribution.
494
495Finally, the Perl community as a whole recognizes that respect for
496ownership of code, respect for artistic control, proper credit, and active
497effort to prevent unintentional code skew or communication gaps is vital
498to the health of the community and Perl itself. Members of a community
499should not normally have to resort to rules and laws to deal with each
500other, and this document, although it contains rules so as to be clear, is
501about an attitude and general approach. The first step in any dispute
502should be open communication, respect for opposing views, and an attempt
503at a compromise. In nearly every circumstance nothing more will be
504necessary, and certainly no more drastic measure should be used until
505every avenue of communication and discussion has failed.
3c78fafa 506
70e4a83b 507
3b4ebcde
JV
508=head1 DOCUMENTATION
509
510Perl's documentation is an important resource for our users. It's
511incredibly important for Perl's documentation to be reasonably coherent
512and to accurately reflect the current implementation.
513
514Just as P5P collectively maintains the codebase, we collectively
515maintain the documentation. Writing a particular bit of documentation
516doesn't give an author control of the future of that documentation.
517At the same time, just as source code changes should match the style
518of their surrounding blocks, so should documentation changes.
519
520Examples in documentation should be illustrative of the concept
521they're explaining. Sometimes, the best way to show how a
522language feature works is with a small program the reader can
523run without modification. More often, examples will consist
524of a snippet of code containing only the "important" bits.
525The definition of "important" varies from snippet to snippet.
1bb8a155 526Sometimes it's important to declare C<use strict> and C<use warnings>,
3b4ebcde
JV
527initialize all variables and fully catch every error condition.
528More often than not, though, those things obscure the lesson
529the example was intended to teach.
530
531As Perl is developed by a global team of volunteers, our
532documentation often contains spellings which look funny
533to I<somebody>. Choice of American/British/Other spellings
534is left as an exercise for the author of each bit of
535documentation. When patching documentation, try to emulate
536the documentation around you, rather than changing the existing
537prose.
538
539In general, documentation should describe what Perl does "now" rather
540than what it used to do. It's perfectly reasonable to include notes
541in documentation about how behaviour has changed from previous releases,
9e9fdd5d 542but, with very few exceptions, documentation isn't "dual-life" --
3b4ebcde
JV
543it doesn't need to fully describe how all old versions used to work.
544
17c80487
RS
545=head1 STANDARDS OF CONDUCT
546
547The official forum for the development of perl is the perl5-porters mailing
ef7498d2
AC
548list, mentioned above, and its bugtracker at rt.perl.org. Posting to the
549list and the bugtracker is not a right: all participants in discussion are
550expected to adhere to a standard of conduct.
17c80487
RS
551
552=over 4
553
554=item *
555
556Always be civil.
557
ef7498d2 558=item *
17c80487
RS
559
560Heed the moderators.
561
562=back
563
ef7498d2
AC
564Civility is simple: stick to the facts while avoiding demeaning remarks,
565belittling other individuals, sarcasm, or a presumption of bad faith. It is
566not enough to be factual. You must also be civil. Responding in kind to
567incivility is not acceptable. If you relay otherwise-unposted comments to
568the list from a third party, you take responsibility for the content of
569those comments, and you must therefore ensure that they are civil.
17c80487 570
8764ee63
CB
571While civility is required, kindness is encouraged; if you have any doubt about
572whether you are being civil, simply ask yourself, "Am I being kind?" and aspire
573to that.
574
17c80487 575If the list moderators tell you that you are not being civil, carefully
8764ee63
CB
576consider how your words have appeared before responding in any way. Were they
577kind? You may protest, but repeated protest in the face of a repeatedly
ef7498d2
AC
578reaffirmed decision is not acceptable. Repeatedly protesting about the
579moderators' decisions regarding a third party is also unacceptable, as is
580continuing to initiate off-list contact with the moderators about their
581decisions.
582
583Unacceptable behavior will result in a public and clearly identified
584warning. A second instance of unacceptable behavior from the same
585individual will result in removal from the mailing list and rt.perl.org,
586for a period of one calendar month. The rationale for this is to
587provide an opportunity for the person to change the way they act.
588
589After the time-limited ban has been lifted, a third instance of
590unacceptable behavior will result in a further public warning. A fourth
591or subsequent instance will result in an indefinite ban. The rationale
592is that, in the face of an apparent refusal to change behavior, we must
593protect other community members from future unacceptable actions. The
594moderators may choose to lift an indefinite ban if the person in
595question affirms they will not transgress again.
596
597Removals, like warnings, are public.
17c80487 598
0c6082f4 599The list of moderators will be public knowledge. At present, it is:
ef7498d2
AC
600Aaron Crane, Andy Dougherty, Karen Etheridge, Ricardo Signes, Sawyer X,
601Steffen Müller, Todd Rinaldo.
3b4ebcde 602
48cb5b3a
JV
603=head1 CREDITS
604
3b4ebcde 605"Social Contract about Contributed Modules" originally by Russ Allbery E<lt>rra@stanford.eduE<gt> and the perl5-porters.
3c78fafa 606