Patch "bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types" has been added to the 6.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

    bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types

to the 6.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:
     bpf-improve-check_raw_mode_ok-test-for-mem_uninit-ta.patch
and it can be found in the queue-6.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 2151043410a42c98eee76985d222432f65669798
Author: Daniel Borkmann <daniel@xxxxxxxxxxxxx>
Date:   Fri Sep 13 21:17:49 2024 +0200

    bpf: Improve check_raw_mode_ok test for MEM_UNINIT-tagged types
    
    [ Upstream commit 18752d73c1898fd001569195ba4b0b8c43255f4a ]
    
    When checking malformed helper function signatures, also take other argument
    types into account aside from just ARG_PTR_TO_UNINIT_MEM.
    
    This concerns (formerly) ARG_PTR_TO_{INT,LONG} given uninitialized memory can
    be passed there, too.
    
    The func proto sanity check goes back to commit 435faee1aae9 ("bpf, verifier:
    add ARG_PTR_TO_RAW_STACK type"), and its purpose was to detect wrong func protos
    which had more than just one MEM_UNINIT-tagged type as arguments.
    
    The reason more than one is currently not supported is as we mark stack slots with
    STACK_MISC in check_helper_call() in case of raw mode based on meta.access_size to
    allow uninitialized stack memory to be passed to helpers when they just write into
    the buffer.
    
    Probing for base type as well as MEM_UNINIT tagging ensures that other types do not
    get missed (as it used to be the case for ARG_PTR_TO_{INT,LONG}).
    
    Fixes: 57c3bb725a3d ("bpf: Introduce ARG_PTR_TO_{INT,LONG} arg types")
    Reported-by: Shung-Hsi Yu <shung-hsi.yu@xxxxxxxx>
    Signed-off-by: Daniel Borkmann <daniel@xxxxxxxxxxxxx>
    Acked-by: Andrii Nakryiko <andrii@xxxxxxxxxx>
    Acked-by: Shung-Hsi Yu <shung-hsi.yu@xxxxxxxx>
    Link: https://lore.kernel.org/r/20240913191754.13290-4-daniel@xxxxxxxxxxxxx
    Signed-off-by: Alexei Starovoitov <ast@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index e924e520b23ae..c821713249c81 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -8158,6 +8158,12 @@ static bool arg_type_is_mem_size(enum bpf_arg_type type)
 	       type == ARG_CONST_SIZE_OR_ZERO;
 }
 
+static bool arg_type_is_raw_mem(enum bpf_arg_type type)
+{
+	return base_type(type) == ARG_PTR_TO_MEM &&
+	       type & MEM_UNINIT;
+}
+
 static bool arg_type_is_release(enum bpf_arg_type type)
 {
 	return type & OBJ_RELEASE;
@@ -9200,15 +9206,15 @@ static bool check_raw_mode_ok(const struct bpf_func_proto *fn)
 {
 	int count = 0;
 
-	if (fn->arg1_type == ARG_PTR_TO_UNINIT_MEM)
+	if (arg_type_is_raw_mem(fn->arg1_type))
 		count++;
-	if (fn->arg2_type == ARG_PTR_TO_UNINIT_MEM)
+	if (arg_type_is_raw_mem(fn->arg2_type))
 		count++;
-	if (fn->arg3_type == ARG_PTR_TO_UNINIT_MEM)
+	if (arg_type_is_raw_mem(fn->arg3_type))
 		count++;
-	if (fn->arg4_type == ARG_PTR_TO_UNINIT_MEM)
+	if (arg_type_is_raw_mem(fn->arg4_type))
 		count++;
-	if (fn->arg5_type == ARG_PTR_TO_UNINIT_MEM)
+	if (arg_type_is_raw_mem(fn->arg5_type))
 		count++;
 
 	/* We only support one arg being in raw mode at the moment,




[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