Patch "selftests/bpf: fix unpriv_disabled check in test_verifier" has been added to the 6.5-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

    selftests/bpf: fix unpriv_disabled check in test_verifier

to the 6.5-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:
     selftests-bpf-fix-unpriv_disabled-check-in-test_veri.patch
and it can be found in the queue-6.5 subdirectory.

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



commit 29db6d06a77ac64302e05932fa0f9f094edc8277
Author: Artem Savkov <asavkov@xxxxxxxxxx>
Date:   Tue Sep 12 14:06:31 2023 +0200

    selftests/bpf: fix unpriv_disabled check in test_verifier
    
    [ Upstream commit d128860dbb29cafc3c65ca2d22082745a32829dd ]
    
    Commit 1d56ade032a49 changed the function get_unpriv_disabled() to
    return its results as a bool instead of updating a global variable, but
    test_verifier was not updated to keep in line with these changes. Thus
    unpriv_disabled is always false in test_verifier and unprivileged tests
    are not properly skipped on systems with unprivileged bpf disabled.
    
    Fixes: 1d56ade032a49 ("selftests/bpf: Unprivileged tests for test_loader.c")
    Signed-off-by: Artem Savkov <asavkov@xxxxxxxxxx>
    Acked-by: Eduard Zingerman <eddyz87@xxxxxxxxx>
    Link: https://lore.kernel.org/r/20230912120631.213139-1-asavkov@xxxxxxxxxx
    Signed-off-by: Alexei Starovoitov <ast@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/testing/selftests/bpf/test_verifier.c b/tools/testing/selftests/bpf/test_verifier.c
index 31f1c935cd07d..98107e0452d33 100644
--- a/tools/testing/selftests/bpf/test_verifier.c
+++ b/tools/testing/selftests/bpf/test_verifier.c
@@ -1880,7 +1880,7 @@ int main(int argc, char **argv)
 		}
 	}
 
-	get_unpriv_disabled();
+	unpriv_disabled = get_unpriv_disabled();
 	if (unpriv && unpriv_disabled) {
 		printf("Cannot run as unprivileged user with sysctl %s.\n",
 		       UNPRIV_SYSCTL);



[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