summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/python/python3/CVE-2024-7592.patch231
-rw-r--r--meta/recipes-devtools/python/python3_3.12.5.bb1
2 files changed, 232 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/CVE-2024-7592.patch b/meta/recipes-devtools/python/python3/CVE-2024-7592.patch
new file mode 100644
index 0000000000..7fd74abed3
--- /dev/null
+++ b/meta/recipes-devtools/python/python3/CVE-2024-7592.patch
@@ -0,0 +1,231 @@
1From 04ac47b343b10f2182c4b3730d4be241b2397a4d Mon Sep 17 00:00:00 2001
2From: Serhiy Storchaka <storchaka@gmail.com>
3Date: Fri, 16 Aug 2024 19:13:37 +0300
4Subject: [PATCH 1/4] gh-123067: Fix quadratic complexity in parsing cookies
5 with backslashes
6
7This fixes CVE-2024-7592.
8
9CVE: CVE-2024-7592
10Upstream-Status: Backport [https://github.com/python/cpython/pull/123075]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12
13---
14 Lib/http/cookies.py | 34 ++++-------------
15 Lib/test/test_http_cookies.py | 38 +++++++++++++++++++
16 ...-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst | 1 +
17 3 files changed, 47 insertions(+), 26 deletions(-)
18 create mode 100644 Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
19
20diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
21index 351faf428a20cd..11a67e8a2e008b 100644
22--- a/Lib/http/cookies.py
23+++ b/Lib/http/cookies.py
24@@ -184,8 +184,12 @@ def _quote(str):
25 return '"' + str.translate(_Translator) + '"'
26
27
28-_OctalPatt = re.compile(r"\\[0-3][0-7][0-7]")
29-_QuotePatt = re.compile(r"[\\].")
30+_unquote_re = re.compile(r'\\(?:([0-3][0-7][0-7])|(["\\]))')
31+def _unquote_replace(m):
32+ if m[1]:
33+ return chr(int(m[1], 8))
34+ else:
35+ return m[2]
36
37 def _unquote(str):
38 # If there aren't any doublequotes,
39@@ -205,30 +209,8 @@ def _unquote(str):
40 # \012 --> \n
41 # \" --> "
42 #
43- i = 0
44- n = len(str)
45- res = []
46- while 0 <= i < n:
47- o_match = _OctalPatt.search(str, i)
48- q_match = _QuotePatt.search(str, i)
49- if not o_match and not q_match: # Neither matched
50- res.append(str[i:])
51- break
52- # else:
53- j = k = -1
54- if o_match:
55- j = o_match.start(0)
56- if q_match:
57- k = q_match.start(0)
58- if q_match and (not o_match or k < j): # QuotePatt matched
59- res.append(str[i:k])
60- res.append(str[k+1])
61- i = k + 2
62- else: # OctalPatt matched
63- res.append(str[i:j])
64- res.append(chr(int(str[j+1:j+4], 8)))
65- i = j + 4
66- return _nulljoin(res)
67+
68+ return _unquote_re.sub(_unquote_replace, str)
69
70 # The _getdate() routine is used to set the expiration time in the cookie's HTTP
71 # header. By default, _getdate() returns the current time in the appropriate
72diff --git a/Lib/test/test_http_cookies.py b/Lib/test/test_http_cookies.py
73index 925c8697f60de6..13b526d49b0856 100644
74--- a/Lib/test/test_http_cookies.py
75+++ b/Lib/test/test_http_cookies.py
76@@ -5,6 +5,7 @@
77 import doctest
78 from http import cookies
79 import pickle
80+from test import support
81
82
83 class CookieTests(unittest.TestCase):
84@@ -58,6 +59,43 @@ def test_basic(self):
85 for k, v in sorted(case['dict'].items()):
86 self.assertEqual(C[k].value, v)
87
88+ def test_unquote(self):
89+ cases = [
90+ (r'a="b=\""', 'b="'),
91+ (r'a="b=\\"', 'b=\\'),
92+ (r'a="b=\="', 'b=\\='),
93+ (r'a="b=\n"', 'b=\\n'),
94+ (r'a="b=\042"', 'b="'),
95+ (r'a="b=\134"', 'b=\\'),
96+ (r'a="b=\377"', 'b=\xff'),
97+ (r'a="b=\400"', 'b=\\400'),
98+ (r'a="b=\42"', 'b=\\42'),
99+ (r'a="b=\\042"', 'b=\\042'),
100+ (r'a="b=\\134"', 'b=\\134'),
101+ (r'a="b=\\\""', 'b=\\"'),
102+ (r'a="b=\\\042"', 'b=\\"'),
103+ (r'a="b=\134\""', 'b=\\"'),
104+ (r'a="b=\134\042"', 'b=\\"'),
105+ ]
106+ for encoded, decoded in cases:
107+ with self.subTest(encoded):
108+ C = cookies.SimpleCookie()
109+ C.load(encoded)
110+ self.assertEqual(C['a'].value, decoded)
111+
112+ @support.requires_resource('cpu')
113+ def test_unquote_large(self):
114+ n = 10**6
115+ for encoded in r'\\', r'\134':
116+ with self.subTest(encoded):
117+ data = 'a="b=' + encoded*n + ';"'
118+ C = cookies.SimpleCookie()
119+ C.load(data)
120+ value = C['a'].value
121+ self.assertEqual(value[:3], 'b=\\')
122+ self.assertEqual(value[-2:], '\\;')
123+ self.assertEqual(len(value), n + 3)
124+
125 def test_load(self):
126 C = cookies.SimpleCookie()
127 C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme')
128diff --git a/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst b/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
129new file mode 100644
130index 00000000000000..158b938a65a2d4
131--- /dev/null
132+++ b/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
133@@ -0,0 +1 @@
134+Fix quadratic complexity in parsing cookies with backslashes.
135
136From ab87c992c2d4cd28560178048915bc9636d6566e Mon Sep 17 00:00:00 2001
137From: Serhiy Storchaka <storchaka@gmail.com>
138Date: Fri, 16 Aug 2024 19:38:20 +0300
139Subject: [PATCH 2/4] Restore the current behavior for backslash-escaping.
140
141---
142 Lib/http/cookies.py | 2 +-
143 Lib/test/test_http_cookies.py | 8 ++++----
144 2 files changed, 5 insertions(+), 5 deletions(-)
145
146diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
147index 11a67e8a2e008b..464abeb0fb253a 100644
148--- a/Lib/http/cookies.py
149+++ b/Lib/http/cookies.py
150@@ -184,7 +184,7 @@ def _quote(str):
151 return '"' + str.translate(_Translator) + '"'
152
153
154-_unquote_re = re.compile(r'\\(?:([0-3][0-7][0-7])|(["\\]))')
155+_unquote_re = re.compile(r'\\(?:([0-3][0-7][0-7])|(.))')
156 def _unquote_replace(m):
157 if m[1]:
158 return chr(int(m[1], 8))
159diff --git a/Lib/test/test_http_cookies.py b/Lib/test/test_http_cookies.py
160index 13b526d49b0856..8879902a6e2f41 100644
161--- a/Lib/test/test_http_cookies.py
162+++ b/Lib/test/test_http_cookies.py
163@@ -63,13 +63,13 @@ def test_unquote(self):
164 cases = [
165 (r'a="b=\""', 'b="'),
166 (r'a="b=\\"', 'b=\\'),
167- (r'a="b=\="', 'b=\\='),
168- (r'a="b=\n"', 'b=\\n'),
169+ (r'a="b=\="', 'b=='),
170+ (r'a="b=\n"', 'b=n'),
171 (r'a="b=\042"', 'b="'),
172 (r'a="b=\134"', 'b=\\'),
173 (r'a="b=\377"', 'b=\xff'),
174- (r'a="b=\400"', 'b=\\400'),
175- (r'a="b=\42"', 'b=\\42'),
176+ (r'a="b=\400"', 'b=400'),
177+ (r'a="b=\42"', 'b=42'),
178 (r'a="b=\\042"', 'b=\\042'),
179 (r'a="b=\\134"', 'b=\\134'),
180 (r'a="b=\\\""', 'b=\\"'),
181
182From 1fe24921da4c6c547da82e11c9703f3588dc5fab Mon Sep 17 00:00:00 2001
183From: Serhiy Storchaka <storchaka@gmail.com>
184Date: Sat, 17 Aug 2024 12:40:11 +0300
185Subject: [PATCH 3/4] Cache the sub() method, not the compiled pattern object.
186
187---
188 Lib/http/cookies.py | 6 +++---
189 1 file changed, 3 insertions(+), 3 deletions(-)
190
191diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
192index 464abeb0fb253a..6b9ed24ad8ec78 100644
193--- a/Lib/http/cookies.py
194+++ b/Lib/http/cookies.py
195@@ -184,7 +184,8 @@ def _quote(str):
196 return '"' + str.translate(_Translator) + '"'
197
198
199-_unquote_re = re.compile(r'\\(?:([0-3][0-7][0-7])|(.))')
200+_unquote_sub = re.compile(r'\\(?:([0-3][0-7][0-7])|(.))').sub
201+
202 def _unquote_replace(m):
203 if m[1]:
204 return chr(int(m[1], 8))
205@@ -209,8 +210,7 @@ def _unquote(str):
206 # \012 --> \n
207 # \" --> "
208 #
209-
210- return _unquote_re.sub(_unquote_replace, str)
211+ return _unquote_sub(_unquote_replace, str)
212
213 # The _getdate() routine is used to set the expiration time in the cookie's HTTP
214 # header. By default, _getdate() returns the current time in the appropriate
215
216From 8256ed2228137c87d4b20747db84a9cdf0fa1d34 Mon Sep 17 00:00:00 2001
217From: Serhiy Storchaka <storchaka@gmail.com>
218Date: Sat, 17 Aug 2024 13:08:20 +0300
219Subject: [PATCH 4/4] Add a reference to the module in NEWS.
220
221---
222 .../next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst | 2 +-
223 1 file changed, 1 insertion(+), 1 deletion(-)
224
225diff --git a/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst b/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
226index 158b938a65a2d4..6a234561fe31a3 100644
227--- a/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
228+++ b/Misc/NEWS.d/next/Library/2024-08-16-19-13-21.gh-issue-123067.Nx9O4R.rst
229@@ -1 +1 @@
230-Fix quadratic complexity in parsing cookies with backslashes.
231+Fix quadratic complexity in parsing ``"``-quoted cookie values with backslashes by :mod:`http.cookies`.
diff --git a/meta/recipes-devtools/python/python3_3.12.5.bb b/meta/recipes-devtools/python/python3_3.12.5.bb
index cc2e14baf0..29b02ef510 100644
--- a/meta/recipes-devtools/python/python3_3.12.5.bb
+++ b/meta/recipes-devtools/python/python3_3.12.5.bb
@@ -34,6 +34,7 @@ SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \
34 file://0001-test_deadlock-skip-problematic-test.patch \ 34 file://0001-test_deadlock-skip-problematic-test.patch \
35 file://0001-test_active_children-skip-problematic-test.patch \ 35 file://0001-test_active_children-skip-problematic-test.patch \
36 file://0001-test_readline-skip-limited-history-test.patch \ 36 file://0001-test_readline-skip-limited-history-test.patch \
37 file://CVE-2024-7592.patch \
37 " 38 "
38 39
39SRC_URI:append:class-native = " \ 40SRC_URI:append:class-native = " \