mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-16 23:36:21 +01:00
polkit: fix CVE-2021-3560
Backport a patch [1] to fix CVE-2021-3560.
[1] a04d13affe
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
7982a1260f
commit
b65c646b25
31
meta-oe/recipes-extended/polkit/polkit/CVE-2021-3560.patch
Normal file
31
meta-oe/recipes-extended/polkit/polkit/CVE-2021-3560.patch
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
From a04d13affe0fa53ff618e07aa8f57f4c0e3b9b81 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jan Rybar <jrybar@redhat.com>
|
||||||
|
Date: Wed, 2 Jun 2021 15:43:38 +0200
|
||||||
|
Subject: [PATCH] GHSL-2021-074: authentication bypass vulnerability in polkit
|
||||||
|
|
||||||
|
initial values returned if error caught
|
||||||
|
|
||||||
|
Upstream-Status: Backport [https://gitlab.freedesktop.org/polkit/polkit/-/commit/a04d13affe0fa53ff618e07aa8f57f4c0e3b9b81]
|
||||||
|
|
||||||
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
||||||
|
---
|
||||||
|
src/polkit/polkitsystembusname.c | 3 +++
|
||||||
|
1 file changed, 3 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/polkit/polkitsystembusname.c b/src/polkit/polkitsystembusname.c
|
||||||
|
index 8daa12c..8ed1363 100644
|
||||||
|
--- a/src/polkit/polkitsystembusname.c
|
||||||
|
+++ b/src/polkit/polkitsystembusname.c
|
||||||
|
@@ -435,6 +435,9 @@ polkit_system_bus_name_get_creds_sync (PolkitSystemBusName *system_bus
|
||||||
|
while (!((data.retrieved_uid && data.retrieved_pid) || data.caught_error))
|
||||||
|
g_main_context_iteration (tmp_context, TRUE);
|
||||||
|
|
||||||
|
+ if (data.caught_error)
|
||||||
|
+ goto out;
|
||||||
|
+
|
||||||
|
if (out_uid)
|
||||||
|
*out_uid = data.uid;
|
||||||
|
if (out_pid)
|
||||||
|
--
|
||||||
|
2.29.2
|
||||||
|
|
||||||
|
|
@ -25,6 +25,7 @@ PAM_SRC_URI = "file://polkit-1_pam.patch"
|
||||||
SRC_URI = "http://www.freedesktop.org/software/polkit/releases/polkit-${PV}.tar.gz \
|
SRC_URI = "http://www.freedesktop.org/software/polkit/releases/polkit-${PV}.tar.gz \
|
||||||
${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} \
|
${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} \
|
||||||
file://0003-make-netgroup-support-optional.patch \
|
file://0003-make-netgroup-support-optional.patch \
|
||||||
|
file://CVE-2021-3560.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "4b37258583393e83069a0e2e89c0162a"
|
SRC_URI[md5sum] = "4b37258583393e83069a0e2e89c0162a"
|
||||||
SRC_URI[sha256sum] = "88170c9e711e8db305a12fdb8234fac5706c61969b94e084d0f117d8ec5d34b1"
|
SRC_URI[sha256sum] = "88170c9e711e8db305a12fdb8234fac5706c61969b94e084d0f117d8ec5d34b1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user