From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3D02D14288 for ; Fri, 5 Apr 2024 07:14:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712301247; cv=none; b=q1L+dSv/xurjBh1aF7qNV0sYWducn7cC5Y76zNG3Ml1SkPTMNkqLzRILqVFhcC42qDcZHLaLqsFxMzyfkcCHzrx6o0GkdYdPVcWl6un32vQ09xjxl4GmGpli5gBWqAgH65ZaFNGxZ+ELXV6ziMuxQjAUYrSQy45+8dakDXu3w5s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712301247; c=relaxed/simple; bh=pqtORVLmjJ1dEsu2PIGZRpNvjTsu/OWm0yavSUEdFh8=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=Xelf2Jrh6Y7Uk3H3Fyc1Dtz/kqCtkNWzdmPAnjRmSuLIZdf/FVA1P+vQ3Ikbh87ueSuR+tU9S3I2haqqAiTkCdBiNb3DUIE/kDMaZ7cMu/ljxrbN+8K98dj0vGgtflrmOU4fb4FaNAZG6EMzjU4yqgWFDktK/I0IHxIhVIN8zyg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ZQYPCbUX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ZQYPCbUX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6D5F8C433C7; Fri, 5 Apr 2024 07:14:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712301246; bh=pqtORVLmjJ1dEsu2PIGZRpNvjTsu/OWm0yavSUEdFh8=; h=Subject:To:Cc:From:Date:From; b=ZQYPCbUXQsRE+PE9KsNIAHrs+e83mp6gp94K48sy1GQFgkhsMWZEVKW4RMpZ7zpBG 4Dt0oVL0jGnkW31l+ycwQi0U9UVorO69vle6OcmwC6bopjS72Mpv6nvVg14V1+FY+f OFzKwxLP3ioJmxn65onMEwXVsR0ZA/4rQFg35DMg= Subject: FAILED: patch "[PATCH] selinux: avoid dereference of garbage after mount failure" failed to apply to 5.15-stable tree To: cgzones@googlemail.com,paul@paul-moore.com Cc: From: Date: Fri, 05 Apr 2024 09:14:03 +0200 Message-ID: <2024040503-snugly-wikipedia-e4c2@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The patch below does not apply to the 5.15-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-5.15.y git checkout FETCH_HEAD git cherry-pick -x 37801a36b4d68892ce807264f784d818f8d0d39b # git commit -s git send-email --to '' --in-reply-to '2024040503-snugly-wikipedia-e4c2@gregkh' --subject-prefix 'PATCH 5.15.y' HEAD^.. Possible dependencies: 37801a36b4d6 ("selinux: avoid dereference of garbage after mount failure") thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 37801a36b4d68892ce807264f784d818f8d0d39b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Thu, 28 Mar 2024 20:16:58 +0100 Subject: [PATCH] selinux: avoid dereference of garbage after mount failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In case kern_mount() fails and returns an error pointer return in the error branch instead of continuing and dereferencing the error pointer. While on it drop the never read static variable selinuxfs_mount. Cc: stable@vger.kernel.org Fixes: 0619f0f5e36f ("selinux: wrap selinuxfs state") Signed-off-by: Christian Göttsche Signed-off-by: Paul Moore diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index 0619a1cbbfbe..074d6c2714eb 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c @@ -2123,7 +2123,6 @@ static struct file_system_type sel_fs_type = { .kill_sb = sel_kill_sb, }; -static struct vfsmount *selinuxfs_mount __ro_after_init; struct path selinux_null __ro_after_init; static int __init init_sel_fs(void) @@ -2145,18 +2144,21 @@ static int __init init_sel_fs(void) return err; } - selinux_null.mnt = selinuxfs_mount = kern_mount(&sel_fs_type); - if (IS_ERR(selinuxfs_mount)) { + selinux_null.mnt = kern_mount(&sel_fs_type); + if (IS_ERR(selinux_null.mnt)) { pr_err("selinuxfs: could not mount!\n"); - err = PTR_ERR(selinuxfs_mount); - selinuxfs_mount = NULL; + err = PTR_ERR(selinux_null.mnt); + selinux_null.mnt = NULL; + return err; } + selinux_null.dentry = d_hash_and_lookup(selinux_null.mnt->mnt_root, &null_name); if (IS_ERR(selinux_null.dentry)) { pr_err("selinuxfs: could not lookup null!\n"); err = PTR_ERR(selinux_null.dentry); selinux_null.dentry = NULL; + return err; } return err;