summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch')
-rw-r--r--meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch b/meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch
new file mode 100644
index 0000000000..c5f88a8c72
--- /dev/null
+++ b/meta/recipes-devtools/rpm/files/CVE-2021-3521-02.patch
@@ -0,0 +1,55 @@
1From 9f03f42e2614a68f589f9db8fe76287146522c0c Mon Sep 17 00:00:00 2001
2From: Panu Matilainen <pmatilai@redhat.com>
3Date: Thu, 30 Sep 2021 09:56:20 +0300
4Subject: [PATCH] Refactor pgpDigParams construction to helper function
5
6No functional changes, just to reduce code duplication and needed by
7the following commits.
8
9Dependent patch:
10CVE: CVE-2021-3521
11Upstream-Status: Backport [https://github.com/rpm-software-management/rpm/commit/9f03f42e2614a68f589f9db8fe76287146522c0c]
12Signed-off-by: Riyaz Khan <Riyaz.Khan@kpit.com>
13
14---
15 rpmio/rpmpgp.c | 13 +++++++++----
16 1 file changed, 9 insertions(+), 4 deletions(-)
17
18diff --git a/rpmio/rpmpgp.c b/rpmio/rpmpgp.c
19index 340de5fc9a..aad7c275c9 100644
20--- a/rpmio/rpmpgp.c
21+++ b/rpmio/rpmpgp.c
22@@ -1055,6 +1055,13 @@ unsigned int pgpDigParamsAlgo(pgpDigParams digp, unsigned int algotype)
23 return algo;
24 }
25
26+static pgpDigParams pgpDigParamsNew(uint8_t tag)
27+{
28+ pgpDigParams digp = xcalloc(1, sizeof(*digp));
29+ digp->tag = tag;
30+ return digp;
31+}
32+
33 int pgpPrtParams(const uint8_t * pkts, size_t pktlen, unsigned int pkttype,
34 pgpDigParams * ret)
35 {
36@@ -1072,8 +1079,7 @@ int pgpPrtParams(const uint8_t * pkts, size_t pktlen, unsigned int pkttype,
37 if (pkttype && pkt.tag != pkttype) {
38 break;
39 } else {
40- digp = xcalloc(1, sizeof(*digp));
41- digp->tag = pkt.tag;
42+ digp = pgpDigParamsNew(pkt.tag);
43 }
44 }
45
46@@ -1121,8 +1127,7 @@ int pgpPrtParamsSubkeys(const uint8_t *pkts, size_t pktlen,
47 digps = xrealloc(digps, alloced * sizeof(*digps));
48 }
49
50- digps[count] = xcalloc(1, sizeof(**digps));
51- digps[count]->tag = PGPTAG_PUBLIC_SUBKEY;
52+ digps[count] = pgpDigParamsNew(PGPTAG_PUBLIC_SUBKEY);
53 /* Copy UID from main key to subkey */
54 digps[count]->userid = xstrdup(mainkey->userid);
55