Skip to content

Commit 95ea190

Browse files
[AUTO-CHERRYPICK] Patch moby-containerd for CVE-2024-28180 [Medium] - branch main (#12155)
Co-authored-by: Kanishk Bansal <103916909+Kanishk-Bansal@users.noreply.github.com>
1 parent fff8063 commit 95ea190

2 files changed

Lines changed: 93 additions & 1 deletion

File tree

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
From 49606141ae723d39c4a79c13f8579fcac8cbf0d0 Mon Sep 17 00:00:00 2001
2+
From: Kanishk Bansal <kbkanishk975@gmail.com>
3+
Date: Wed, 29 Jan 2025 19:29:39 +0000
4+
Subject: [PATCH] Address CVE-2024-28180
5+
6+
---
7+
vendor/gopkg.in/square/go-jose.v2/crypter.go | 6 ++++++
8+
vendor/gopkg.in/square/go-jose.v2/encoding.go | 20 +++++++++++++++----
9+
2 files changed, 22 insertions(+), 4 deletions(-)
10+
11+
diff --git a/vendor/gopkg.in/square/go-jose.v2/crypter.go b/vendor/gopkg.in/square/go-jose.v2/crypter.go
12+
index d24cabf..a628386 100644
13+
--- a/vendor/gopkg.in/square/go-jose.v2/crypter.go
14+
+++ b/vendor/gopkg.in/square/go-jose.v2/crypter.go
15+
@@ -405,6 +405,9 @@ func (ctx *genericEncrypter) Options() EncrypterOptions {
16+
// Decrypt and validate the object and return the plaintext. Note that this
17+
// function does not support multi-recipient, if you desire multi-recipient
18+
// decryption use DecryptMulti instead.
19+
+//
20+
+// Automatically decompresses plaintext, but returns an error if the decompressed
21+
+// data would be >250kB or >10x the size of the compressed data, whichever is larger.
22+
func (obj JSONWebEncryption) Decrypt(decryptionKey interface{}) ([]byte, error) {
23+
headers := obj.mergedHeaders(nil)
24+
25+
@@ -469,6 +472,9 @@ func (obj JSONWebEncryption) Decrypt(decryptionKey interface{}) ([]byte, error)
26+
// with support for multiple recipients. It returns the index of the recipient
27+
// for which the decryption was successful, the merged headers for that recipient,
28+
// and the plaintext.
29+
+//
30+
+// Automatically decompresses plaintext, but returns an error if the decompressed
31+
+// data would be >250kB or >3x the size of the compressed data, whichever is larger.
32+
func (obj JSONWebEncryption) DecryptMulti(decryptionKey interface{}) (int, Header, []byte, error) {
33+
globalHeaders := obj.mergedHeaders(nil)
34+
35+
diff --git a/vendor/gopkg.in/square/go-jose.v2/encoding.go b/vendor/gopkg.in/square/go-jose.v2/encoding.go
36+
index 70f7385..2b92116 100644
37+
--- a/vendor/gopkg.in/square/go-jose.v2/encoding.go
38+
+++ b/vendor/gopkg.in/square/go-jose.v2/encoding.go
39+
@@ -21,6 +21,7 @@ import (
40+
"compress/flate"
41+
"encoding/base64"
42+
"encoding/binary"
43+
+ "fmt"
44+
"io"
45+
"math/big"
46+
"strings"
47+
@@ -85,7 +86,7 @@ func decompress(algorithm CompressionAlgorithm, input []byte) ([]byte, error) {
48+
}
49+
}
50+
51+
-// Compress with DEFLATE
52+
+// deflate compresses the input.
53+
func deflate(input []byte) ([]byte, error) {
54+
output := new(bytes.Buffer)
55+
56+
@@ -97,15 +98,26 @@ func deflate(input []byte) ([]byte, error) {
57+
return output.Bytes(), err
58+
}
59+
60+
-// Decompress with DEFLATE
61+
+// inflate decompresses the input.
62+
+//
63+
+// Errors if the decompressed data would be >250kB or >10x the size of the
64+
+// compressed data, whichever is larger.
65+
func inflate(input []byte) ([]byte, error) {
66+
output := new(bytes.Buffer)
67+
reader := flate.NewReader(bytes.NewBuffer(input))
68+
69+
- _, err := io.Copy(output, reader)
70+
- if err != nil {
71+
+ maxCompressedSize := 10 * int64(len(input))
72+
+ if maxCompressedSize < 250000 {
73+
+ maxCompressedSize = 250000
74+
+ }
75+
+ limit := maxCompressedSize + 1
76+
+ n, err := io.CopyN(output, reader, limit)
77+
+ if err != nil && err != io.EOF {
78+
return nil, err
79+
}
80+
+ if n == limit {
81+
+ return nil, fmt.Errorf("uncompressed data would be too large (>%d bytes)", maxCompressedSize)
82+
+ }
83+
84+
err = reader.Close()
85+
return output.Bytes(), err
86+
--
87+
2.43.0
88+

SPECS/moby-containerd/moby-containerd.spec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Summary: Industry-standard container runtime
66
Name: moby-%{upstream_name}
77
Version: 1.6.26
8-
Release: 8%{?dist}
8+
Release: 9%{?dist}
99
License: ASL 2.0
1010
Group: Tools/Container
1111
URL: https://www.containerd.io
@@ -20,6 +20,7 @@ Patch1: add_ptrace_readby_tracedby_to_apparmor.patch
2020
Patch2: fix_tests_for_golang1.21.patch
2121
Patch3: CVE-2023-45288.patch
2222
Patch4: CVE-2024-24786.patch
23+
Patch5: CVE-2024-28180.patch
2324

2425
%{?systemd_requires}
2526

@@ -93,6 +94,9 @@ fi
9394
%dir /opt/containerd/lib
9495

9596
%changelog
97+
* Thu Jan 30 2025 Kanishk Bansal <kanbansal@microsoft.com> - 1.6.26-9
98+
- Fix CVE-2024-28180 with an upstream patch
99+
96100
* Thu Dec 05 2024 sthelkar <sthelkar@microsoft.com> - 1.6.26-8
97101
- Patch CVE-2024-24786
98102

0 commit comments

Comments
 (0)