Patch "selinux: check return value of sel_make_avc_files" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    selinux: check return value of sel_make_avc_files

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     selinux-check-return-value-of-sel_make_avc_files.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit b3d32df21391d310295b37a2a78f1b67adb78d40
Author: Christian Göttsche <cgzones@xxxxxxxxxxxxxx>
Date:   Tue Jan 25 15:14:20 2022 +0100

    selinux: check return value of sel_make_avc_files
    
    [ Upstream commit bcb62828e3e8c813b6613db6eb7fd9657db248fc ]
    
    sel_make_avc_files() might fail and return a negative errno value on
    memory allocation failures. Re-add the check of the return value,
    dropped in 66f8e2f03c02 ("selinux: sidtab reverse lookup hash table").
    
    Reported by clang-analyzer:
    
        security/selinux/selinuxfs.c:2129:2: warning: Value stored to
          'ret' is never read [deadcode.DeadStores]
                ret = sel_make_avc_files(dentry);
                ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Fixes: 66f8e2f03c02 ("selinux: sidtab reverse lookup hash table")
    Signed-off-by: Christian Göttsche <cgzones@xxxxxxxxxxxxxx>
    Reviewed-by: Nick Desaulniers <ndesaulniers@xxxxxxxxxx>
    [PM: description line wrapping, added proper commit ref]
    Signed-off-by: Paul Moore <paul@xxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c
index 2b745ae8cb98..d893c2280f59 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -2124,6 +2124,8 @@ static int sel_fill_super(struct super_block *sb, struct fs_context *fc)
 	}
 
 	ret = sel_make_avc_files(dentry);
+	if (ret)
+		goto err;
 
 	dentry = sel_make_dir(sb->s_root, "ss", &fsi->last_ino);
 	if (IS_ERR(dentry)) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux