summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2024-11-28 15:46:44 +0800
committerSteve Sakoman <steve@sakoman.com>2024-12-09 07:54:03 -0800
commitaf06cbf82b44e4944ecfff212686b97d67021171 (patch)
treeb684129bdacd2bed9faa9df0509356fe740d4179 /meta/recipes-devtools/python
parente8c505f7a4cd4765fba3450e9ac5a90427b19e9e (diff)
downloadpoky-af06cbf82b44e4944ecfff212686b97d67021171.tar.gz
python3-zipp: fix CVE-2024-5569
According to [1] which provided the fix link [2], but upstream author reworked it later [3][4][5] Backport and rebase all the patches for tracing [1] https://nvd.nist.gov/vuln/detail/CVE-2024-5569 [2] https://github.com/jaraco/zipp/commit/fd604bd34f0343472521a36da1fbd22e793e14fd [3] https://github.com/jaraco/zipp/commit/3cb5609002263eb19f7b5efda82d96f1f57fe876 [4] https://github.com/jaraco/zipp/commit/f89b93f0370dd85d23d243e25dfc1f99f4d8de48 [5] https://github.com/jaraco/zipp/commit/cc61e6140f0dfde2ff372db932442cf6df890f09 (From OE-Core rev: 13bd99e17f0aca108839e81e9aa0b14351116fdf) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python3-zipp/0001-Add-SanitizedNames-mixin.patch89
-rw-r--r--meta/recipes-devtools/python/python3-zipp/0002-Employ-SanitizedNames-in-CompleteDirs.-Fixes-broken-.patch30
-rw-r--r--meta/recipes-devtools/python/python3-zipp/0003-Removed-SanitizedNames.patch95
-rw-r--r--meta/recipes-devtools/python/python3-zipp/0004-Address-infinite-loop-when-zipfile-begins-with-more-.patch48
-rw-r--r--meta/recipes-devtools/python/python3-zipp/0005-Prefer-simpler-path.rstrip-to-consolidate-checks-for.patch30
-rw-r--r--meta/recipes-devtools/python/python3-zipp_3.7.0.bb8
6 files changed, 300 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-zipp/0001-Add-SanitizedNames-mixin.patch b/meta/recipes-devtools/python/python3-zipp/0001-Add-SanitizedNames-mixin.patch
new file mode 100644
index 0000000000..a352e7b9bd
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-zipp/0001-Add-SanitizedNames-mixin.patch
@@ -0,0 +1,89 @@
1From ef2227e35d1ae833b7bfa1674a45f58c732ae1a6 Mon Sep 17 00:00:00 2001
2From: "Jason R. Coombs" <jaraco@jaraco.com>
3Date: Wed, 27 Nov 2024 23:27:57 -0800
4Subject: [PATCH 1/5] Add SanitizedNames mixin.
5
6Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/564fcc10cdbfdaecdb33688e149827465931c9e0]
7CVE: CVE-2024-5569
8Rebase to v3.7.0
9Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
10---
11 zipp.py | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12 1 file changed, 62 insertions(+)
13
14diff --git a/zipp.py b/zipp.py
15index 26b723c..8f0950f 100644
16--- a/zipp.py
17+++ b/zipp.py
18@@ -68,6 +68,68 @@ def _difference(minuend, subtrahend):
19 return itertools.filterfalse(set(subtrahend).__contains__, minuend)
20
21
22+class SanitizedNames:
23+ """
24+ ZipFile mix-in to ensure names are sanitized.
25+ """
26+
27+ def namelist(self):
28+ return list(map(self._sanitize, super().namelist()))
29+
30+ @staticmethod
31+ def _sanitize(name):
32+ r"""
33+ Ensure a relative path with posix separators and no dot names.
34+
35+ Modeled after
36+ https://github.com/python/cpython/blob/bcc1be39cb1d04ad9fc0bd1b9193d3972835a57c/Lib/zipfile/__init__.py#L1799-L1813
37+ but provides consistent cross-platform behavior.
38+
39+ >>> san = SanitizedNames._sanitize
40+ >>> san('/foo/bar')
41+ 'foo/bar'
42+ >>> san('//foo.txt')
43+ 'foo.txt'
44+ >>> san('foo/.././bar.txt')
45+ 'foo/bar.txt'
46+ >>> san('foo../.bar.txt')
47+ 'foo../.bar.txt'
48+ >>> san('\\foo\\bar.txt')
49+ 'foo/bar.txt'
50+ >>> san('D:\\foo.txt')
51+ 'D/foo.txt'
52+ >>> san('\\\\server\\share\\file.txt')
53+ 'server/share/file.txt'
54+ >>> san('\\\\?\\GLOBALROOT\\Volume3')
55+ '?/GLOBALROOT/Volume3'
56+ >>> san('\\\\.\\PhysicalDrive1\\root')
57+ 'PhysicalDrive1/root'
58+
59+ Retain any trailing slash.
60+ >>> san('abc/')
61+ 'abc/'
62+
63+ Raises a ValueError if the result is empty.
64+ >>> san('../..')
65+ Traceback (most recent call last):
66+ ...
67+ ValueError: Empty filename
68+ """
69+
70+ def allowed(part):
71+ return part and part not in {'..', '.'}
72+
73+ # Remove the drive letter.
74+ # Don't use ntpath.splitdrive, because that also strips UNC paths
75+ bare = re.sub('^([A-Z]):', r'\1', name, flags=re.IGNORECASE)
76+ clean = bare.replace('\\', '/')
77+ parts = clean.split('/')
78+ joined = '/'.join(filter(allowed, parts))
79+ if not joined:
80+ raise ValueError("Empty filename")
81+ return joined + '/' * name.endswith('/')
82+
83+
84 class CompleteDirs(zipfile.ZipFile):
85 """
86 A ZipFile subclass that ensures that implied directories
87--
882.25.1
89
diff --git a/meta/recipes-devtools/python/python3-zipp/0002-Employ-SanitizedNames-in-CompleteDirs.-Fixes-broken-.patch b/meta/recipes-devtools/python/python3-zipp/0002-Employ-SanitizedNames-in-CompleteDirs.-Fixes-broken-.patch
new file mode 100644
index 0000000000..d2ea4d49a1
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-zipp/0002-Employ-SanitizedNames-in-CompleteDirs.-Fixes-broken-.patch
@@ -0,0 +1,30 @@
1From 8b09dbf95b3ba78a63f220941e31ac92f4ad192c Mon Sep 17 00:00:00 2001
2From: "Jason R. Coombs" <jaraco@jaraco.com>
3Date: Wed, 27 Nov 2024 23:31:57 -0800
4Subject: [PATCH 2/5] Employ SanitizedNames in CompleteDirs. Fixes broken test.
5
6Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/58115d2be968644ce71ce6bcc9b79826c82a1806]
7Remove test code
8Rebase to v3.7.0
9CVE: CVE-2024-5569
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11---
12 zipp.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/zipp.py b/zipp.py
16index 8f0950f..29d2572 100644
17--- a/zipp.py
18+++ b/zipp.py
19@@ -130,7 +130,7 @@ class SanitizedNames:
20 return joined + '/' * name.endswith('/')
21
22
23-class CompleteDirs(zipfile.ZipFile):
24+class CompleteDirs(SanitizedNames, zipfile.ZipFile):
25 """
26 A ZipFile subclass that ensures that implied directories
27 are always included in the namelist.
28--
292.25.1
30
diff --git a/meta/recipes-devtools/python/python3-zipp/0003-Removed-SanitizedNames.patch b/meta/recipes-devtools/python/python3-zipp/0003-Removed-SanitizedNames.patch
new file mode 100644
index 0000000000..45a7dc5bb1
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-zipp/0003-Removed-SanitizedNames.patch
@@ -0,0 +1,95 @@
1From b52b8af403e64607ae8d5e4cd18d4099d63e7264 Mon Sep 17 00:00:00 2001
2From: "Jason R. Coombs" <jaraco@jaraco.com>
3Date: Wed, 27 Nov 2024 23:33:11 -0800
4Subject: [PATCH 3/5] Removed SanitizedNames.
5
6Restores expectations around special characters in zipfiles, but also restores the infinite loop.
7
8Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/3cb5609002263eb19f7b5efda82d96f1f57fe876]
9Remove test codes
10Rebase to v3.7.0
11CVE: CVE-2024-5569
12
13Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
14---
15 zipp.py | 64 +--------------------------------------------------------
16 1 file changed, 1 insertion(+), 63 deletions(-)
17
18diff --git a/zipp.py b/zipp.py
19index 29d2572..26b723c 100644
20--- a/zipp.py
21+++ b/zipp.py
22@@ -68,69 +68,7 @@ def _difference(minuend, subtrahend):
23 return itertools.filterfalse(set(subtrahend).__contains__, minuend)
24
25
26-class SanitizedNames:
27- """
28- ZipFile mix-in to ensure names are sanitized.
29- """
30-
31- def namelist(self):
32- return list(map(self._sanitize, super().namelist()))
33-
34- @staticmethod
35- def _sanitize(name):
36- r"""
37- Ensure a relative path with posix separators and no dot names.
38-
39- Modeled after
40- https://github.com/python/cpython/blob/bcc1be39cb1d04ad9fc0bd1b9193d3972835a57c/Lib/zipfile/__init__.py#L1799-L1813
41- but provides consistent cross-platform behavior.
42-
43- >>> san = SanitizedNames._sanitize
44- >>> san('/foo/bar')
45- 'foo/bar'
46- >>> san('//foo.txt')
47- 'foo.txt'
48- >>> san('foo/.././bar.txt')
49- 'foo/bar.txt'
50- >>> san('foo../.bar.txt')
51- 'foo../.bar.txt'
52- >>> san('\\foo\\bar.txt')
53- 'foo/bar.txt'
54- >>> san('D:\\foo.txt')
55- 'D/foo.txt'
56- >>> san('\\\\server\\share\\file.txt')
57- 'server/share/file.txt'
58- >>> san('\\\\?\\GLOBALROOT\\Volume3')
59- '?/GLOBALROOT/Volume3'
60- >>> san('\\\\.\\PhysicalDrive1\\root')
61- 'PhysicalDrive1/root'
62-
63- Retain any trailing slash.
64- >>> san('abc/')
65- 'abc/'
66-
67- Raises a ValueError if the result is empty.
68- >>> san('../..')
69- Traceback (most recent call last):
70- ...
71- ValueError: Empty filename
72- """
73-
74- def allowed(part):
75- return part and part not in {'..', '.'}
76-
77- # Remove the drive letter.
78- # Don't use ntpath.splitdrive, because that also strips UNC paths
79- bare = re.sub('^([A-Z]):', r'\1', name, flags=re.IGNORECASE)
80- clean = bare.replace('\\', '/')
81- parts = clean.split('/')
82- joined = '/'.join(filter(allowed, parts))
83- if not joined:
84- raise ValueError("Empty filename")
85- return joined + '/' * name.endswith('/')
86-
87-
88-class CompleteDirs(SanitizedNames, zipfile.ZipFile):
89+class CompleteDirs(zipfile.ZipFile):
90 """
91 A ZipFile subclass that ensures that implied directories
92 are always included in the namelist.
93--
942.25.1
95
diff --git a/meta/recipes-devtools/python/python3-zipp/0004-Address-infinite-loop-when-zipfile-begins-with-more-.patch b/meta/recipes-devtools/python/python3-zipp/0004-Address-infinite-loop-when-zipfile-begins-with-more-.patch
new file mode 100644
index 0000000000..46871122a9
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-zipp/0004-Address-infinite-loop-when-zipfile-begins-with-more-.patch
@@ -0,0 +1,48 @@
1From ef4ee19919bd49a9c1207ff8d87f83dd48aed436 Mon Sep 17 00:00:00 2001
2From: "Jason R. Coombs" <jaraco@jaraco.com>
3Date: Wed, 27 Nov 2024 23:35:28 -0800
4Subject: [PATCH 4/5] Address infinite loop when zipfile begins with more than
5 one leading slash.
6
7Alternate and more surgical fix for jaraco/zipp#119. Ref python/cpython#123270
8
9Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/f89b93f0370dd85d23d243e25dfc1f99f4d8de48]
10Remove test codes
11Rebase to v3.7.0
12CVE: CVE-2024-5569
13Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
14---
15 zipp.py | 8 ++++++--
16 1 file changed, 6 insertions(+), 2 deletions(-)
17
18diff --git a/zipp.py b/zipp.py
19index 26b723c..236af49 100644
20--- a/zipp.py
21+++ b/zipp.py
22@@ -37,7 +37,7 @@ def _parents(path):
23 def _ancestry(path):
24 """
25 Given a path with elements separated by
26- posixpath.sep, generate all elements of that path
27+ posixpath.sep, generate all elements of that path.
28
29 >>> list(_ancestry('b/d'))
30 ['b/d', 'b']
31@@ -49,9 +49,13 @@ def _ancestry(path):
32 ['b']
33 >>> list(_ancestry(''))
34 []
35+ Multiple separators are treated like a single.
36+
37+ >>> list(_ancestry('//b//d///f//'))
38+ ['//b//d///f', '//b//d', '//b']
39 """
40 path = path.rstrip(posixpath.sep)
41- while path and path != posixpath.sep:
42+ while path and not path.endswith(posixpath.sep):
43 yield path
44 path, tail = posixpath.split(path)
45
46--
472.25.1
48
diff --git a/meta/recipes-devtools/python/python3-zipp/0005-Prefer-simpler-path.rstrip-to-consolidate-checks-for.patch b/meta/recipes-devtools/python/python3-zipp/0005-Prefer-simpler-path.rstrip-to-consolidate-checks-for.patch
new file mode 100644
index 0000000000..de91c68361
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-zipp/0005-Prefer-simpler-path.rstrip-to-consolidate-checks-for.patch
@@ -0,0 +1,30 @@
1From 9084bc59784cb240628996c1cb95f4f786ebedcc Mon Sep 17 00:00:00 2001
2From: "Jason R. Coombs" <jaraco@jaraco.com>
3Date: Wed, 27 Nov 2024 23:38:28 -0800
4Subject: [PATCH 5/5] Prefer simpler path.rstrip to consolidate checks for
5 empty or only paths.
6
7Upstream-Status: Backport [https://github.com/jaraco/zipp/commit/cc61e6140f0dfde2ff372db932442cf6df890f09]
8Rebase to v3.7.0
9CVE: CVE-2024-5569
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11---
12 zipp.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/zipp.py b/zipp.py
16index 236af49..87c4219 100644
17--- a/zipp.py
18+++ b/zipp.py
19@@ -55,7 +55,7 @@ def _ancestry(path):
20 ['//b//d///f', '//b//d', '//b']
21 """
22 path = path.rstrip(posixpath.sep)
23- while path and not path.endswith(posixpath.sep):
24+ while path.rstrip(posixpath.sep):
25 yield path
26 path, tail = posixpath.split(path)
27
28--
292.25.1
30
diff --git a/meta/recipes-devtools/python/python3-zipp_3.7.0.bb b/meta/recipes-devtools/python/python3-zipp_3.7.0.bb
index 495e7f51f0..d9db1b4408 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.7.0.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.7.0.bb
@@ -9,6 +9,14 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
9 9
10inherit pypi python_setuptools_build_meta 10inherit pypi python_setuptools_build_meta
11 11
12SRC_URI += " \
13 file://0001-Add-SanitizedNames-mixin.patch \
14 file://0002-Employ-SanitizedNames-in-CompleteDirs.-Fixes-broken-.patch \
15 file://0003-Removed-SanitizedNames.patch \
16 file://0004-Address-infinite-loop-when-zipfile-begins-with-more-.patch \
17 file://0005-Prefer-simpler-path.rstrip-to-consolidate-checks-for.patch \
18"
19
12DEPENDS += "${PYTHON_PN}-toml-native" 20DEPENDS += "${PYTHON_PN}-toml-native"
13 21
14RDEPENDS:${PN} += "${PYTHON_PN}-compression \ 22RDEPENDS:${PN} += "${PYTHON_PN}-compression \