From nobody Mon Jun 29 12:44:40 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 66F56C433EF for ; Wed, 9 Feb 2022 19:16:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233560AbiBITP5 (ORCPT ); Wed, 9 Feb 2022 14:15:57 -0500 Received: from gmail-smtp-in.l.google.com ([23.128.96.19]:43392 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233785AbiBITPw (ORCPT ); Wed, 9 Feb 2022 14:15:52 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 398CAC0045BE; Wed, 9 Feb 2022 11:15:46 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 1192FB82390; Wed, 9 Feb 2022 19:15:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 42808C340E7; Wed, 9 Feb 2022 19:15:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1644434106; bh=w5dkYAz3sy98SI4aS3c2yCQau3NSXZfCNaqkaqy/TBc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=muBZmCl1ssg9g0xoUpyW8v/HtQty3JmFvYPCIQYecg1GIm0B4nfFN3s1cRctwe6eU 5/ZAmDtnd/4A9uX3wvFDeTrEm16Sjxfb4EE2/U0vWPaFVvjAOg/saCkPud55Av79EB VTa4YEgTaPYBUNX5jxFlhYc9hosfw/btAvR2teXs= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Tabitha Sable , "Eric W. Biederman" , Tejun Heo , =?UTF-8?q?Michal=20Koutn=C3=BD?= Subject: [PATCH 4.14 1/3] cgroup-v1: Require capabilities to set release_agent Date: Wed, 9 Feb 2022 20:13:38 +0100 Message-Id: <20220209191248.708176141@linuxfoundation.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220209191248.659458918@linuxfoundation.org> References: <20220209191248.659458918@linuxfoundation.org> User-Agent: quilt/0.66 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Eric W. Biederman commit 24f6008564183aa120d07c03d9289519c2fe02af upstream. The cgroup release_agent is called with call_usermodehelper. The function call_usermodehelper starts the release_agent with a full set fo capabilitie= s. Therefore require capabilities when setting the release_agaent. Reported-by: Tabitha Sable Tested-by: Tabitha Sable Fixes: 81a6a5cdd2c5 ("Task Control Groups: automatic userspace notification= of idle cgroups") Cc: stable@vger.kernel.org # v2.6.24+ Signed-off-by: "Eric W. Biederman" Signed-off-by: Tejun Heo [mkoutny: Adjust for pre-fs_context, duplicate mount/remount check, drop lo= g messages.] Acked-by: Michal Koutn=C3=BD Signed-off-by: Greg Kroah-Hartman Tested-by: Guenter Roeck Tested-by: Linux Kernel Functional Testing Tested-by: Slade Watkins --- kernel/cgroup/cgroup-v1.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) --- a/kernel/cgroup/cgroup-v1.c +++ b/kernel/cgroup/cgroup-v1.c @@ -577,6 +577,14 @@ static ssize_t cgroup_release_agent_writ =20 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); =20 + /* + * Release agent gets called with all capabilities, + * require capabilities to set release agent. + */ + if ((of->file->f_cred->user_ns !=3D &init_user_ns) || + !capable(CAP_SYS_ADMIN)) + return -EPERM; + cgrp =3D cgroup_kn_lock_live(of->kn, false); if (!cgrp) return -ENODEV; @@ -1060,6 +1068,7 @@ static int cgroup1_remount(struct kernfs { int ret =3D 0; struct cgroup_root *root =3D cgroup_root_from_kf(kf_root); + struct cgroup_namespace *ns =3D current->nsproxy->cgroup_ns; struct cgroup_sb_opts opts; u16 added_mask, removed_mask; =20 @@ -1073,6 +1082,12 @@ static int cgroup1_remount(struct kernfs if (opts.subsys_mask !=3D root->subsys_mask || opts.release_agent) pr_warn("option changes via remount are deprecated (pid=3D%d comm=3D%s)\= n", task_tgid_nr(current), current->comm); + /* See cgroup1_mount release_agent handling */ + if (opts.release_agent && + ((ns->user_ns !=3D &init_user_ns) || !capable(CAP_SYS_ADMIN))) { + ret =3D -EINVAL; + goto out_unlock; + } =20 added_mask =3D opts.subsys_mask & ~root->subsys_mask; removed_mask =3D root->subsys_mask & ~opts.subsys_mask; @@ -1236,6 +1251,15 @@ struct dentry *cgroup1_mount(struct file ret =3D -EPERM; goto out_unlock; } + /* + * Release agent gets called with all capabilities, + * require capabilities to set release agent. + */ + if (opts.release_agent && + ((ns->user_ns !=3D &init_user_ns) || !capable(CAP_SYS_ADMIN))) { + ret =3D -EINVAL; + goto out_unlock; + } =20 root =3D kzalloc(sizeof(*root), GFP_KERNEL); if (!root) { From nobody Mon Jun 29 12:44:40 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8A302C433EF for ; Wed, 9 Feb 2022 19:27:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234868AbiBIT1w (ORCPT ); Wed, 9 Feb 2022 14:27:52 -0500 Received: from gmail-smtp-in.l.google.com ([23.128.96.19]:47006 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234327AbiBIT0r (ORCPT ); Wed, 9 Feb 2022 14:26:47 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 72AB7E00E266; Wed, 9 Feb 2022 11:19:16 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 3A180B8238D; Wed, 9 Feb 2022 19:15:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55A48C340E7; Wed, 9 Feb 2022 19:15:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1644434100; bh=dCxPR4JBeSv02HURTnL42udmBp2yb2pJ1Ew0FokUAEM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zwE9JROxVTYQOo5PkARElkaSznCXNHyGVg3VjEtiNGl1HxJ4Fq8nsFP4xZerAvBN9 Ocn2OiF9JilSnRl05REjzCniWQPsxtdJYqUE2xj64fAyKPWn0m7f/1PmeOmB7FDMA9 plHbVrjJa7zaaAhnheXS5KIw3hbUWCkZEKZFHpto= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Ulf Hansson , Xiyu Yang , Xin Xiong , Xin Tan , Tony Lindgren , Yang Li , linux-mmc@vger.kernel.org, whitehat002 Subject: [PATCH 4.14 2/3] moxart: fix potential use-after-free on remove path Date: Wed, 9 Feb 2022 20:13:39 +0100 Message-Id: <20220209191248.739254160@linuxfoundation.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220209191248.659458918@linuxfoundation.org> References: <20220209191248.659458918@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Greg Kroah-Hartman commit bd2db32e7c3e35bd4d9b8bbff689434a50893546 upstream. It was reported that the mmc host structure could be accessed after it was freed in moxart_remove(), so fix this by saving the base register of the device and using it instead of the pointer dereference. Cc: Ulf Hansson Cc: Xiyu Yang Cc: Xin Xiong Cc: Xin Tan Cc: Tony Lindgren Cc: Yang Li Cc: linux-mmc@vger.kernel.org Cc: stable Reported-by: whitehat002 Signed-off-by: Greg Kroah-Hartman Link: https://lore.kernel.org/r/20220127071638.4057899-1-gregkh@linuxfounda= tion.org Signed-off-by: Ulf Hansson Signed-off-by: Greg Kroah-Hartman Tested-by: Guenter Roeck Tested-by: Linux Kernel Functional Testing Tested-by: Slade Watkins --- drivers/mmc/host/moxart-mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/mmc/host/moxart-mmc.c +++ b/drivers/mmc/host/moxart-mmc.c @@ -696,12 +696,12 @@ static int moxart_remove(struct platform if (!IS_ERR(host->dma_chan_rx)) dma_release_channel(host->dma_chan_rx); mmc_remove_host(mmc); - mmc_free_host(mmc); =20 writel(0, host->base + REG_INTERRUPT_MASK); writel(0, host->base + REG_POWER_CONTROL); writel(readl(host->base + REG_CLOCK_CONTROL) | CLK_OFF, host->base + REG_CLOCK_CONTROL); + mmc_free_host(mmc); } return 0; } From nobody Mon Jun 29 12:44:40 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D6F6AC433F5 for ; Wed, 9 Feb 2022 19:15:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232336AbiBITPn (ORCPT ); Wed, 9 Feb 2022 14:15:43 -0500 Received: from gmail-smtp-in.l.google.com ([23.128.96.19]:42562 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229994AbiBITPk (ORCPT ); Wed, 9 Feb 2022 14:15:40 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1A783C1DC160; Wed, 9 Feb 2022 11:15:34 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 76BF96193E; Wed, 9 Feb 2022 19:15:04 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 54282C340E7; Wed, 9 Feb 2022 19:15:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1644434103; bh=o6zUXEMGVaRSONjhKMI60+bcffn/pZstc2RF2pb50zw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oApCKBWESrto9GTEb1LmB18BtpmUSnjeFbMoTqOU313aLM8Lzdg2+l6sl5sWUC1Sh JhplT6qLZtReh49wbkVe8JXJP2mfzZcQCuRadLSPg8Ie5/VzV+rn99KZTUbWRs/Olk siEO2DO6aSsB/r3BC/cOoqJtNjSK5Cft8Jc1AoYc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, luofei Subject: [PATCH 4.14 3/3] x86/mm, mm/hwpoison: Fix the unmap kernel 1:1 pages check condition Date: Wed, 9 Feb 2022 20:13:40 +0100 Message-Id: <20220209191248.771916077@linuxfoundation.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220209191248.659458918@linuxfoundation.org> References: <20220209191248.659458918@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: luofei When fd0e786d9d09 ("x86/mm, mm/hwpoison: Don't unconditionally unmap kernel 1:1 pages") was backported to 4.14.y, the logic was reversed when calling memory_failure() to determine whether it needs to unmap the kernel page. Only when memory_failure() returns successfully, the kernel page can be unmapped. Signed-off-by: luofei Cc: stable@vger.kernel.org #v4.14.x Cc: stable@vger.kernel.org #v4.15.x Signed-off-by: Greg Kroah-Hartman Tested-by: Guenter Roeck Tested-by: Linux Kernel Functional Testing Tested-by: Slade Watkins --- arch/x86/kernel/cpu/mcheck/mce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c @@ -589,7 +589,7 @@ static int srao_decode_notifier(struct n =20 if (mce_usable_address(mce) && (mce->severity =3D=3D MCE_AO_SEVERITY)) { pfn =3D mce->addr >> PAGE_SHIFT; - if (memory_failure(pfn, MCE_VECTOR, 0)) + if (!memory_failure(pfn, MCE_VECTOR, 0)) mce_unmap_kpfn(pfn); } =20