forked from pool/python310
Set link to python310.29655 via maintenance_release request
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,55 +0,0 @@
|
|||||||
From a284d69de1d1a42714576d4a9562145a94e62127 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ben Kallus <benjamin.p.kallus.gr@dartmouth.edu>
|
|
||||||
Date: Sat, 12 Nov 2022 15:43:33 -0500
|
|
||||||
Subject: [PATCH 1/2] gh-99418: Prevent urllib.parse.urlparse from accepting
|
|
||||||
schemes that don't begin with an alphabetical ASCII character.
|
|
||||||
|
|
||||||
---
|
|
||||||
Lib/test/test_urlparse.py | 18 ++++++++++
|
|
||||||
Lib/urllib/parse.py | 2 -
|
|
||||||
Misc/NEWS.d/next/Library/2022-11-12-15-45-51.gh-issue-99418.FxfAXS.rst | 2 +
|
|
||||||
3 files changed, 21 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/Lib/test/test_urlparse.py
|
|
||||||
+++ b/Lib/test/test_urlparse.py
|
|
||||||
@@ -668,6 +668,24 @@ class UrlParseTestCase(unittest.TestCase
|
|
||||||
with self.assertRaises(ValueError):
|
|
||||||
p.port
|
|
||||||
|
|
||||||
+ def test_attributes_bad_scheme(self):
|
|
||||||
+ """Check handling of invalid schemes."""
|
|
||||||
+ for bytes in (False, True):
|
|
||||||
+ for parse in (urllib.parse.urlsplit, urllib.parse.urlparse):
|
|
||||||
+ for scheme in (".", "+", "-", "0", "http&", "६http"):
|
|
||||||
+ with self.subTest(bytes=bytes, parse=parse, scheme=scheme):
|
|
||||||
+ url = scheme + "://www.example.net"
|
|
||||||
+ if bytes:
|
|
||||||
+ if url.isascii():
|
|
||||||
+ url = url.encode("ascii")
|
|
||||||
+ else:
|
|
||||||
+ continue
|
|
||||||
+ p = parse(url)
|
|
||||||
+ if bytes:
|
|
||||||
+ self.assertEqual(p.scheme, b"")
|
|
||||||
+ else:
|
|
||||||
+ self.assertEqual(p.scheme, "")
|
|
||||||
+
|
|
||||||
def test_attributes_without_netloc(self):
|
|
||||||
# This example is straight from RFC 3261. It looks like it
|
|
||||||
# should allow the username, hostname, and port to be filled
|
|
||||||
--- a/Lib/urllib/parse.py
|
|
||||||
+++ b/Lib/urllib/parse.py
|
|
||||||
@@ -469,7 +469,7 @@ def urlsplit(url, scheme='', allow_fragm
|
|
||||||
clear_cache()
|
|
||||||
netloc = query = fragment = ''
|
|
||||||
i = url.find(':')
|
|
||||||
- if i > 0:
|
|
||||||
+ if i > 0 and url[0].isascii() and url[0].isalpha():
|
|
||||||
for c in url[:i]:
|
|
||||||
if c not in scheme_chars:
|
|
||||||
break
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/Misc/NEWS.d/next/Library/2022-11-12-15-45-51.gh-issue-99418.FxfAXS.rst
|
|
||||||
@@ -0,0 +1,2 @@
|
|
||||||
+Fix bug in :func:`urllib.parse.urlparse` that causes URL schemes that begin
|
|
||||||
+with a digit, a plus sign, or a minus sign to be parsed incorrectly.
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCAAdFiEEz9yiRbEEPPKl+Xhl/+h0BBaL2EcFAmQsoHwACgkQ/+h0BBaL
|
|
||||||
2Efs9BAAheWCnenhHhXi0m0DgyB6eEVH8xmZrBqA1WMgGQOqWVZmEnJdc0IXyFWQ
|
|
||||||
1A4C59d6rEvu8jvXTLvsqGEmehofKqq0bXB1tMUBn9CwSiELOm19WvCHc/Htwo2U
|
|
||||||
DsvAsXXO7vBkKBT9+CQ4BmkGzPUTrBLZRHsQX/M/tpx81jnQVunoMojyPK19sf1I
|
|
||||||
C+YnxE0cQVL9+INd0WtbVByJIwzBBDCLqTQWL//73CqFs8IO6PsjFXqmlVqVfpmz
|
|
||||||
aEXuGeRkRgy7kZaDdLcnhBq7a6vgaecfgfRUGyBgwgakfrHA5SOdsWdAonjA676J
|
|
||||||
6DHmFIf82R4wo7Vu0WAfFAq9jJfVxXN7n5Y/N/cxzqjhrfO341vCflN1c16VAFnu
|
|
||||||
ok7n50poENO/tMRerOEj5baL+mToi8Wh+cYHY6tNpaM2iP+bSyjoS+Ff225xhdNV
|
|
||||||
fqGuyaH7cPgGgoXECrSb7iTWYZxJxQV9S8OlR2gX8IlA+XrbGWQl0PvmErhO3FqN
|
|
||||||
W88gBmYrzrSl6+dzF62yn2gKFc2K5k6NmCcySFfjY87G7RhEf1ixPeDyMSvbKlVw
|
|
||||||
sJWeoXuCNPL+PQV+V76UAbn3bEvH87fyImxoYHNAIbHh8JaTvO5vIKDrrsw92siQ
|
|
||||||
6Pud3Oy6DcD5gWX2KcaAjQjruh18dljsbYN+2KVFfQHM8SYeXns=
|
|
||||||
=enP4
|
|
||||||
-----END PGP SIGNATURE-----
|
|
||||||
16
Python-3.10.12.tar.xz.asc
Normal file
16
Python-3.10.12.tar.xz.asc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCAAdFiEEz9yiRbEEPPKl+Xhl/+h0BBaL2EcFAmR/tqIACgkQ/+h0BBaL
|
||||||
|
2EfUfg/9FW0m6nngtGIKTJ+Gk4G13pQvnELgc3eq70t7Sn1g2kGxDpO+rs0WptYG
|
||||||
|
gGcHs6v4rE/3uQ0mf4QCvnnXffQEQ+bRDaj1ZBY/rJjCdgQeUNMElV0KbvADiTqS
|
||||||
|
+akmsXaK3KqLHJesZo65lZ4HSADWKosBU3zxE2/CRMMsz1aLMDLIoaQo+pqDcFl7
|
||||||
|
ZfGMlmiJNyD2jZVYGdwCbhG0BymOTU02BxkH2Dkd9OGzj9A3zDPCO6RcDFtw4dkK
|
||||||
|
lngHQGijYaFV11FqIaApnUkz7aAPk//2KRLwpf5D5z8p8T8QsHAJyTmIm1gMQiQA
|
||||||
|
tMThI1tFGN6lF1QSrfwGooXs3AdeEY0VoL4CpQi8TVRLyi6HE4AU4hEQdPqVmpm1
|
||||||
|
+U2K0MpYhkwtPp0E9E7y9v82fMSzUKvGgpTstnblKTfDmgGUGb47Ncj3XvxH8SZz
|
||||||
|
p93YK2xpfl4V2ltLio8ONmwP9lQhxk5L34dQR20cjbOoj622VofqGUV7Zr6UHVLD
|
||||||
|
pqYgnj3zgiTPmbCzgVxZOyaLD3ezsY8oAtfLgX6cjCfsTtV27TvQUD8Br0oKQYS/
|
||||||
|
h5KJBdytokqPa+JWr59hvQpcLSbmCB2y7USminoS2yL1hpXidTvVDUALF3vorvZi
|
||||||
|
BS8prxUIFT2dgerUpWmMrKYih7pJNKdySGgI3zXtxIt5TE0TRag=
|
||||||
|
=9Zqh
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
103
bpo-37596-make-set-marshalling.patch
Normal file
103
bpo-37596-make-set-marshalling.patch
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
From 33d95c6facdfda3c8c0feffa7a99184e4abc2f63 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Brandt Bucher <brandt@python.org>
|
||||||
|
Date: Wed, 25 Aug 2021 04:14:34 -0700
|
||||||
|
Subject: [PATCH] bpo-37596: Make `set` and `frozenset` marshalling
|
||||||
|
deterministic (GH-27926)
|
||||||
|
|
||||||
|
---
|
||||||
|
Lib/test/test_marshal.py | 26 ++++++++
|
||||||
|
Misc/NEWS.d/next/Library/2021-08-23-21-39-59.bpo-37596.ojRcwB.rst | 2
|
||||||
|
Python/marshal.c | 32 ++++++++++
|
||||||
|
3 files changed, 60 insertions(+)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Library/2021-08-23-21-39-59.bpo-37596.ojRcwB.rst
|
||||||
|
|
||||||
|
--- a/Lib/test/test_marshal.py
|
||||||
|
+++ b/Lib/test/test_marshal.py
|
||||||
|
@@ -1,5 +1,6 @@
|
||||||
|
from test import support
|
||||||
|
from test.support import os_helper
|
||||||
|
+from test.support.script_helper import assert_python_ok
|
||||||
|
import array
|
||||||
|
import io
|
||||||
|
import marshal
|
||||||
|
@@ -318,6 +319,31 @@ class BugsTestCase(unittest.TestCase):
|
||||||
|
for i in range(len(data)):
|
||||||
|
self.assertRaises(EOFError, marshal.loads, data[0: i])
|
||||||
|
|
||||||
|
+ def test_deterministic_sets(self):
|
||||||
|
+ # bpo-37596: To support reproducible builds, sets and frozensets need to
|
||||||
|
+ # have their elements serialized in a consistent order (even when they
|
||||||
|
+ # have been scrambled by hash randomization):
|
||||||
|
+ for kind in ("set", "frozenset"):
|
||||||
|
+ for elements in (
|
||||||
|
+ "float('nan'), b'a', b'b', b'c', 'x', 'y', 'z'",
|
||||||
|
+ # Also test for bad interactions with backreferencing:
|
||||||
|
+ "('string', 1), ('string', 2), ('string', 3)",
|
||||||
|
+ ):
|
||||||
|
+ s = f"{kind}([{elements}])"
|
||||||
|
+ with self.subTest(s):
|
||||||
|
+ # First, make sure that our test case still has different
|
||||||
|
+ # orders under hash seeds 0 and 1. If this check fails, we
|
||||||
|
+ # need to update this test with different elements:
|
||||||
|
+ args = ["-c", f"print({s})"]
|
||||||
|
+ _, repr_0, _ = assert_python_ok(*args, PYTHONHASHSEED="0")
|
||||||
|
+ _, repr_1, _ = assert_python_ok(*args, PYTHONHASHSEED="1")
|
||||||
|
+ self.assertNotEqual(repr_0, repr_1)
|
||||||
|
+ # Then, perform the actual test:
|
||||||
|
+ args = ["-c", f"import marshal; print(marshal.dumps({s}))"]
|
||||||
|
+ _, dump_0, _ = assert_python_ok(*args, PYTHONHASHSEED="0")
|
||||||
|
+ _, dump_1, _ = assert_python_ok(*args, PYTHONHASHSEED="1")
|
||||||
|
+ self.assertEqual(dump_0, dump_1)
|
||||||
|
+
|
||||||
|
LARGE_SIZE = 2**31
|
||||||
|
pointer_size = 8 if sys.maxsize > 0xFFFFFFFF else 4
|
||||||
|
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Library/2021-08-23-21-39-59.bpo-37596.ojRcwB.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Ensure that :class:`set` and :class:`frozenset` objects are always
|
||||||
|
+:mod:`marshalled <marshal>` reproducibly.
|
||||||
|
--- a/Python/marshal.c
|
||||||
|
+++ b/Python/marshal.c
|
||||||
|
@@ -502,9 +502,41 @@ w_complex_object(PyObject *v, char flag,
|
||||||
|
W_TYPE(TYPE_SET, p);
|
||||||
|
n = PySet_GET_SIZE(v);
|
||||||
|
W_SIZE(n, p);
|
||||||
|
+ // bpo-37596: To support reproducible builds, sets and frozensets need
|
||||||
|
+ // to have their elements serialized in a consistent order (even when
|
||||||
|
+ // they have been scrambled by hash randomization). To ensure this, we
|
||||||
|
+ // use an order equivalent to sorted(v, key=marshal.dumps):
|
||||||
|
+ PyObject *pairs = PyList_New(0);
|
||||||
|
+ if (pairs == NULL) {
|
||||||
|
+ p->error = WFERR_NOMEMORY;
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
while (_PySet_NextEntry(v, &pos, &value, &hash)) {
|
||||||
|
+ PyObject *dump = PyMarshal_WriteObjectToString(value, p->version);
|
||||||
|
+ if (dump == NULL) {
|
||||||
|
+ p->error = WFERR_UNMARSHALLABLE;
|
||||||
|
+ goto anyset_done;
|
||||||
|
+ }
|
||||||
|
+ PyObject *pair = PyTuple_Pack(2, dump, value);
|
||||||
|
+ Py_DECREF(dump);
|
||||||
|
+ if (pair == NULL || PyList_Append(pairs, pair)) {
|
||||||
|
+ p->error = WFERR_NOMEMORY;
|
||||||
|
+ Py_XDECREF(pair);
|
||||||
|
+ goto anyset_done;
|
||||||
|
+ }
|
||||||
|
+ Py_DECREF(pair);
|
||||||
|
+ }
|
||||||
|
+ if (PyList_Sort(pairs)) {
|
||||||
|
+ p->error = WFERR_NOMEMORY;
|
||||||
|
+ goto anyset_done;
|
||||||
|
+ }
|
||||||
|
+ for (Py_ssize_t i = 0; i < n; i++) {
|
||||||
|
+ PyObject *pair = PyList_GET_ITEM(pairs, i);
|
||||||
|
+ value = PyTuple_GET_ITEM(pair, 1);
|
||||||
|
w_object(value, p);
|
||||||
|
}
|
||||||
|
+ anyset_done:
|
||||||
|
+ Py_DECREF(pairs);
|
||||||
|
}
|
||||||
|
else if (PyCode_Check(v)) {
|
||||||
|
PyCodeObject *co = (PyCodeObject *)v;
|
||||||
@@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 28 16:57:46 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.10.12:
|
||||||
|
- gh-103142: The version of OpenSSL used in Windows and
|
||||||
|
Mac installers has been upgraded to 1.1.1u to address
|
||||||
|
CVE-2023-2650, CVE-2023-0465, CVE-2023-0466, CVE-2023-0464,
|
||||||
|
as well as CVE-2023-0286, CVE-2022-4303, and CVE-2022-4303
|
||||||
|
fixed previously in 1.1.1t (gh-101727).
|
||||||
|
- gh-102153: urllib.parse.urlsplit() now strips leading C0
|
||||||
|
control and space characters following the specification for
|
||||||
|
URLs defined by WHATWG in response to CVE-2023-24329
|
||||||
|
(bsc#1208471).
|
||||||
|
- gh-99889: Fixed a security in flaw in uu.decode() that could
|
||||||
|
allow for directory traversal based on the input if no
|
||||||
|
out_file was specified.
|
||||||
|
- gh-104049: Do not expose the local on-disk
|
||||||
|
location in directory indexes produced by
|
||||||
|
http.client.SimpleHTTPRequestHandler.
|
||||||
|
- gh-103935: trace.__main__ now uses io.open_code() for files
|
||||||
|
to be executed instead of raw open().
|
||||||
|
- gh-102953: The extraction methods in tarfile, and
|
||||||
|
shutil.unpack_archive(), have a new filter argument that
|
||||||
|
allows limiting tar features than may be surprising or
|
||||||
|
dangerous, such as creating files outside the destination
|
||||||
|
directory. See Extraction filters for details (fixing
|
||||||
|
CVE-2007-4559, bsc#1203750).
|
||||||
|
- Remove upstreamed patches:
|
||||||
|
- CVE-2023-24329-blank-URL-bypass.patch
|
||||||
|
- CVE-2007-4559-filter-tarfile_extractall.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 20 21:39:58 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Add bpo-37596-make-set-marshalling.patch making marshalling of
|
||||||
|
`set` and `frozenset` deterministic (bsc#1211765).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 27 21:23:19 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
Thu Apr 27 21:23:19 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ Obsoletes: python39%{?1:-%{1}}
|
|||||||
%define dynlib() %{sitedir}/lib-dynload/%{1}.cpython-%{abi_tag}-%{archname}-%{_os}%{?_gnu}%{?armsuffix}.so
|
%define dynlib() %{sitedir}/lib-dynload/%{1}.cpython-%{abi_tag}-%{archname}-%{_os}%{?_gnu}%{?armsuffix}.so
|
||||||
%bcond_without profileopt
|
%bcond_without profileopt
|
||||||
Name: %{python_pkg_name}%{psuffix}
|
Name: %{python_pkg_name}%{psuffix}
|
||||||
Version: 3.10.11
|
Version: 3.10.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python 3 Interpreter
|
Summary: Python 3 Interpreter
|
||||||
License: Python-2.0
|
License: Python-2.0
|
||||||
@@ -166,13 +166,9 @@ Patch35: fix_configure_rst.patch
|
|||||||
# PATCH-FIX-UPSTREAM bpo-46811 gh#python/cpython#7da97f61816f mcepl@suse.com
|
# PATCH-FIX-UPSTREAM bpo-46811 gh#python/cpython#7da97f61816f mcepl@suse.com
|
||||||
# NOTE: SUSE version of expat 2.4.4 is patched in SUSE for CVE-2022-25236
|
# NOTE: SUSE version of expat 2.4.4 is patched in SUSE for CVE-2022-25236
|
||||||
Patch36: support-expat-CVE-2022-25236-patched.patch
|
Patch36: support-expat-CVE-2022-25236-patched.patch
|
||||||
# PATCH-FIX-UPSTREAM CVE-2023-24329-blank-URL-bypass.patch bsc#1208471 mcepl@suse.com
|
# PATCH-FIX-UPSTREAM bpo-37596-make-set-marshalling.patch bsc#1211765 mcepl@suse.com
|
||||||
# blocklist bypass via the urllib.parse component when supplying
|
# Make `set` and `frozenset` marshalling deterministic
|
||||||
# a URL that starts with blank characters
|
Patch39: bpo-37596-make-set-marshalling.patch
|
||||||
Patch37: CVE-2023-24329-blank-URL-bypass.patch
|
|
||||||
# PATCH-FIX-UPSTREAM CVE-2007-4559-filter-tarfile_extractall.patch bsc#1203750 mcepl@suse.com
|
|
||||||
# PEP 706 – Filter for tarfile.extractall
|
|
||||||
Patch38: CVE-2007-4559-filter-tarfile_extractall.patch
|
|
||||||
BuildRequires: autoconf-archive
|
BuildRequires: autoconf-archive
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@@ -432,7 +428,6 @@ other applications.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n %{tarname}
|
%setup -q -n %{tarname}
|
||||||
%patch02 -p1
|
%patch02 -p1
|
||||||
|
|
||||||
%patch06 -p1
|
%patch06 -p1
|
||||||
%patch07 -p1
|
%patch07 -p1
|
||||||
%patch08 -p1
|
%patch08 -p1
|
||||||
@@ -445,8 +440,7 @@ other applications.
|
|||||||
%endif
|
%endif
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
%patch36 -p1
|
%patch36 -p1
|
||||||
%patch37 -p1
|
%patch39 -p1
|
||||||
%patch38 -p1
|
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac
|
sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac
|
||||||
|
|||||||
Reference in New Issue
Block a user