2017-05-30 08:58:20 -04:00
|
|
|
|
PEP: 546
|
|
|
|
|
Title: Backport ssl.MemoryBIO and ssl.SSLObject to Python 2.7
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2019-10-17 20:48:46 -04:00
|
|
|
|
Author: Victor Stinner <vstinner@python.org>,
|
2017-06-01 15:30:16 -04:00
|
|
|
|
Cory Benfield <cory@lukasa.co.uk>,
|
2017-06-11 15:00:15 -04:00
|
|
|
|
BDFL-Delegate: Benjamin Peterson <benjamin@python.org>
|
2018-06-05 07:12:28 -04:00
|
|
|
|
Status: Rejected
|
2017-05-30 08:58:20 -04:00
|
|
|
|
Type: Standards Track
|
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
|
Created: 30-May-2017
|
2017-06-11 14:40:54 -04:00
|
|
|
|
Python-Version: 2.7
|
2017-06-11 14:38:10 -04:00
|
|
|
|
Post-History: 23-May-2017
|
|
|
|
|
Resolution: https://mail.python.org/pipermail/python-dev/2017-June/148301.html
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
========
|
|
|
|
|
|
2017-05-30 15:11:53 -04:00
|
|
|
|
Backport the ssl.MemoryBIO and ssl.SSLObject classes from Python 3 to Python
|
2017-05-30 08:58:20 -04:00
|
|
|
|
2.7 to enhance the overall security of Python 2.7.
|
|
|
|
|
|
|
|
|
|
|
2018-06-05 07:12:28 -04:00
|
|
|
|
Rejection Notice
|
|
|
|
|
================
|
|
|
|
|
|
|
|
|
|
This PEP is rejected, see `Withdraw PEP 546? Backport ssl.MemoryBIO and
|
|
|
|
|
ssl.SSLObject to Python 2.7
|
|
|
|
|
<https://mail.python.org/pipermail/python-dev/2018-May/153760.html>`_
|
|
|
|
|
discussion for the rationale.
|
|
|
|
|
|
|
|
|
|
|
2017-05-30 08:58:20 -04:00
|
|
|
|
Rationale
|
|
|
|
|
=========
|
|
|
|
|
|
2017-05-30 15:11:53 -04:00
|
|
|
|
While Python 2.7 is getting closer to its end-of-support date (scheduled for
|
|
|
|
|
2020), it is still used on production systems and the Python community is still
|
|
|
|
|
responsible for its security. This PEP will help facilitate the future adoption
|
|
|
|
|
of :pep:`543` across all supported Python versions, which will improve security
|
|
|
|
|
for both Python 2 and Python 3 users.
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
This PEP does NOT propose a general exception for backporting new
|
|
|
|
|
features to Python 2.7 - every new feature proposed for backporting will
|
|
|
|
|
still need to be justified independently. In particular, it will need to
|
|
|
|
|
be explained why relying on an independently updated backport on the
|
|
|
|
|
Python Package Index instead is not an acceptable solution.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PEP 543
|
|
|
|
|
-------
|
|
|
|
|
|
2017-05-30 15:11:53 -04:00
|
|
|
|
:pep:`543` defines a new TLS API for Python which would enhance Python
|
|
|
|
|
security by giving Python applications access to the native TLS implementations
|
|
|
|
|
on Windows and macOS, instead of using OpenSSL. A side effect is that it gives
|
|
|
|
|
access to the system trust store and certificates installed
|
|
|
|
|
locally by system administrators, enabling Python applications to use "company
|
|
|
|
|
certificates" without having to modify each application and so to correctly
|
|
|
|
|
validate TLS certificates (instead of having to ignore or bypass TLS
|
|
|
|
|
certificate validation).
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
For practical reasons, Cory Benfield would like to first implement an
|
2017-05-30 15:11:53 -04:00
|
|
|
|
I/O-less class similar to ssl.MemoryBIO and ssl.SSLObject for
|
|
|
|
|
:pep:`543`, and to provide a second class based on the first one to use
|
2017-05-30 08:58:20 -04:00
|
|
|
|
sockets or file descriptors. This design would help to structure the code
|
2017-05-30 15:11:53 -04:00
|
|
|
|
to support more backends and simplify testing and auditing, as well as
|
|
|
|
|
implementation. Later, optimized classes using directly sockets or file
|
|
|
|
|
descriptors may be added for performance.
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
2017-05-30 15:11:53 -04:00
|
|
|
|
While :pep:`543` defines an API, the PEP would only make sense if it
|
2017-05-30 08:58:20 -04:00
|
|
|
|
comes with at least one complete and good implementation. The first
|
2017-05-30 15:11:53 -04:00
|
|
|
|
implementation would ideally be based on the ``ssl`` module of the Python
|
|
|
|
|
standard library, as this is shipped to all users by default and can be used as
|
2019-08-11 11:53:20 -04:00
|
|
|
|
a fallback implementation in the absence of anything more targeted.
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
2017-05-30 15:11:53 -04:00
|
|
|
|
If this backport is not performed, the only baseline implementation that could
|
|
|
|
|
be used would be pyOpenSSL. This is problematic, however, because of the
|
|
|
|
|
interaction with pip, which is shipped with CPython on all supported versions.
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requests, pip and ensurepip
|
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
|
|
There are plans afoot to look at moving Requests to a more event-loop-y
|
2017-06-01 15:30:16 -04:00
|
|
|
|
model. The Requests team does not feel at this time it is possible to abandon
|
|
|
|
|
support for Python 2.7, so doing so would require using either Twisted or
|
|
|
|
|
Tornado, or writing their own asynchronous abstraction.
|
|
|
|
|
|
|
|
|
|
For asynchronous code, a MemoryBIO provides substantial advantages over using a
|
|
|
|
|
wrapped socket. It reduces the amount of buffering that must be done, works on
|
|
|
|
|
IOCP-based reactors as well as select/poll based ones, and also greatly
|
|
|
|
|
simplifies the reactor and implementation code. For this reason, Requests is
|
|
|
|
|
disinclined to use a wrapped-socket-based implementation. In the absence of a
|
|
|
|
|
backport to Python 2.7, Requests is required to use the same solution that
|
|
|
|
|
Twisted does: namely, a mandatory dependency on `pyOpenSSL
|
|
|
|
|
<https://pypi.python.org/pypi/pyOpenSSL>`_.
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
The `pip <https://pip.pypa.io/>`_ program has to embed all its
|
2017-05-30 15:11:53 -04:00
|
|
|
|
dependencies for practical reasons: namely, that it cannot rely on any other
|
|
|
|
|
installation method being present. Since pip depends on requests, it means
|
|
|
|
|
that it would have to embed a copy of pyOpenSSL. That would imply substantial
|
2017-05-30 08:58:20 -04:00
|
|
|
|
usability pain to install pip. Currently, pip doesn't support embedding
|
|
|
|
|
C extensions which must be compiled on each platform and so require a C
|
|
|
|
|
compiler.
|
|
|
|
|
|
|
|
|
|
Since Python 2.7.9, Python embeds a copy of pip both for default
|
2017-05-30 15:11:53 -04:00
|
|
|
|
installation and for use in virtual environments via the new ``ensurepip``
|
|
|
|
|
module. If pip ends up bundling PyOpenSSL, then CPython will end up
|
2017-05-30 08:58:20 -04:00
|
|
|
|
bundling PyOpenSSL. Only backporting ``ssl.MemoryBIO`` and
|
2017-05-30 15:11:53 -04:00
|
|
|
|
``ssl.SSLObject`` would avoid the need to embed pyOpenSSL, and would fix the
|
|
|
|
|
bootstrap issue (python -> ensurepip -> pip -> requests -> MemoryBIO).
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
This situation is less problematic than the barrier to adoption of :pep:`543`, as
|
2017-06-01 15:30:16 -04:00
|
|
|
|
naturally Requests does not have to move to an event loop model before it drops
|
|
|
|
|
support for Python 2.7. However, it does make it painful for Requests (and pip)
|
|
|
|
|
to embrace both asyncio and the ``async`` and ``await`` keywords for as long as
|
|
|
|
|
it continues to support Python 2.
|
|
|
|
|
|
|
|
|
|
Other Benefits
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
Adopting this PEP would have other smaller ecosystem benefits. For example,
|
|
|
|
|
Twisted would be able to reduce its dependency on third-party C extensions.
|
|
|
|
|
Additionally, the PyOpenSSL development team would like to sunset the module,
|
|
|
|
|
and this backport would free them up to do so in a graceful manner without
|
|
|
|
|
leaving their users in the lurch.
|
|
|
|
|
|
|
|
|
|
Each of these fringe benefits, while small, also provides value to the wider
|
|
|
|
|
Python ecosystem.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Concerns
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
There are some concerns that people have about this backport.
|
|
|
|
|
|
|
|
|
|
What About Old Python 2?
|
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
|
|
A number of the Python 2 users in the world are not keeping pace with Python 2
|
|
|
|
|
releases. This is most usually because they are using LTS releases that are not
|
|
|
|
|
keeping pace with the minor releases of Python 2. These users would not be able
|
|
|
|
|
to use the MemoryBIO, and so projects concerned with Python 2 compatibility may
|
|
|
|
|
be unable to rely on the MemoryBIO being present on most of their user's
|
|
|
|
|
systems.
|
|
|
|
|
|
|
|
|
|
This concern is reasonable. How critical it is depends on the likelihood of
|
|
|
|
|
current users of Python 2 migrating to Python 3, or just trying to use the most
|
|
|
|
|
recent Python 2 release. Put another way, at some point libraries will want to
|
|
|
|
|
drop Python 2 support: the question is only whether a significant majority of
|
|
|
|
|
their Python 2 users have moved to whatever Python 2 release contains this
|
|
|
|
|
backport before they do so.
|
|
|
|
|
|
|
|
|
|
Ultimately, the authors of this PEP believe that the burden of this backport is
|
|
|
|
|
sufficiently minimal to justify backporting despite this concern. If it turns
|
|
|
|
|
out that migration to newer 2.7 releases is too slow, then the value of the
|
|
|
|
|
work will be minimal, but if the migration to newer 2.7 releases is anything
|
|
|
|
|
like reasonable then there will be substantial value gained.
|
|
|
|
|
|
2017-05-30 08:58:20 -04:00
|
|
|
|
|
|
|
|
|
Changes
|
|
|
|
|
=======
|
|
|
|
|
|
|
|
|
|
Add ``MemoryBIO`` and ``SSLObject`` classes to the ``ssl`` module of
|
|
|
|
|
Python 2.7.
|
|
|
|
|
|
|
|
|
|
The code will be backported and adapted from the master branch
|
|
|
|
|
(Python 3).
|
|
|
|
|
|
|
|
|
|
The backport also significantly reduced the size of the Python 2/Python
|
|
|
|
|
3 difference of the ``_ssl`` module, which make maintenance easier.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Links
|
|
|
|
|
=====
|
|
|
|
|
|
|
|
|
|
* :pep:`543`
|
|
|
|
|
* `[backport] ssl.MemoryBIO
|
|
|
|
|
<https://bugs.python.org/issue22559>`_: Implementation of this PEP
|
|
|
|
|
written by Alex Gaynor (first version written at October 2014)
|
|
|
|
|
* :pep:`466`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Discussions
|
|
|
|
|
===========
|
|
|
|
|
|
|
|
|
|
* `[Python-Dev] Backport ssl.MemoryBIO on Python 2.7?
|
|
|
|
|
<https://mail.python.org/pipermail/python-dev/2017-May/147981.html>`_
|
|
|
|
|
(May 2017)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
coding: utf-8
|
|
|
|
|
End:
|