aboutsummaryrefslogtreecommitdiff
path: root/kernel/bpf/verifier.c
AgeCommit message (Expand)AuthorFilesLines
2024-08-29bpf: Move insn_buf[16] to bpf_verifier_envMartin KaFai Lau1-7/+8
2024-08-28bpf: Relax KF_ACQUIRE kfuncs strict type matching constraintJuntong Deng1-2/+1
2024-08-23bpf: Support bpf_kptr_xchg into local kptrDave Marchevsky1-14/+30
2024-08-23bpf: Rename ARG_PTR_TO_KPTR -> ARG_KPTR_XCHG_DESTDave Marchevsky1-3/+3
2024-08-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfAlexei Starovoitov1-2/+3
2024-08-22bpf: allow bpf_fastcall for bpf_cast_to_kern_ctx and bpf_rdonly_castEduard Zingerman1-0/+3
2024-08-22bpf: support bpf_fastcall patterns for kfuncsEduard Zingerman1-1/+34
2024-08-22bpf: rename nocsr -> bpf_fastcall in verifierEduard Zingerman1-72/+71
2024-08-21bpf: allow passing struct bpf_iter_<type> as kfunc argumentsAndrii Nakryiko1-11/+24
2024-08-13bpf: switch maps to CLASS(fd, ...)Al Viro1-6/+1
2024-08-13bpf: factor out fetching bpf_map from FD and adding it to used_maps listAndrii Nakryiko1-49/+66
2024-08-12bpf: Fix a kernel verifier crash in stacksafe()Yonghong Song1-2/+3
2024-07-29bpf, x86, riscv, arm: no_caller_saved_registers for bpf_get_smp_processor_id()Eduard Zingerman1-2/+9
2024-07-29bpf: no_caller_saved_registers attribute for helper callsEduard Zingerman1-3/+314
2024-07-29bpf: add a get_helper_proto() utility functionEduard Zingerman1-7/+18
2024-07-29bpf: Get better reg range with ldsx and 32bit compareYonghong Song1-0/+38
2024-07-29bpf: Fail verification for sign-extension of packet data/data_end/data_metaYonghong Song1-2/+3
2024-07-29bpf: Fix compare error in function retval_range_withinXu Kuohai1-5/+11
2024-07-29bpf, lsm: Add check for BPF LSM return valueXu Kuohai1-9/+51
2024-07-29bpf: Check unsupported ops from the bpf_struct_ops's cfi_stubsMartin KaFai Lau1-1/+9
2024-07-29bpf: Remove mark_precise_scalar_ids()Eduard Zingerman1-115/+0
2024-07-29bpf: Track equal scalars history on per-instruction levelEduard Zingerman1-21/+224
2024-07-21Merge tag 'mm-stable-2024-07-21-14-50' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-0/+4
2024-07-17mm, page_alloc: put should_fail_alloc_page() back behing CONFIG_FAIL_PAGE_ALLOCVlastimil Babka1-0/+2
2024-07-17mm, slab: put should_failslab() back behind CONFIG_SHOULD_FAILSLABVlastimil Babka1-0/+2
2024-07-12bpf: use check_sub_overflow() to check for subtraction overflowsShung-Hsi Yu1-43/+14
2024-07-12bpf: use check_add_overflow() to check for addition overflowsShung-Hsi Yu1-80/+34
2024-07-12bpf: fix overflow check in adjust_jmp_off()Shung-Hsi Yu1-1/+1
2024-07-09bpf: relax zero fixed offset constraint on KF_TRUSTED_ARGS/KF_RCUMatt Bobrowski1-6/+3
2024-07-09Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Paolo Abeni1-26/+114
2024-07-02bpf: Fix atomic probe zero-extensionIlya Leoshkevich1-1/+2
2024-06-27Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+58
2024-06-26bpf: add missing check_func_arg_reg_off() to prevent out-of-bounds memory acc...Matt Bobrowski1-6/+11
2024-06-24bpf: Fix may_goto with negative offset.Alexei Starovoitov1-3/+6
2024-06-21bpf: Fix the corner case with may_goto and jump to the 1st insn.Alexei Starovoitov1-0/+50
2024-06-20bpf: remove unused parameter in __bpf_free_used_btfsRafael Passos1-2/+1
2024-06-20bpf, verifier: Correct tail_call_reachable for bpf progLeon Hwang1-1/+3
2024-06-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-9/+16
2024-06-17bpf: Add missed var_off setting in coerce_subreg_to_size_sx()Yonghong Song1-0/+1
2024-06-17bpf: Add missed var_off setting in set_sext32_default_val()Yonghong Song1-0/+1
2024-06-14bpf: Track delta between "linked" registers.Alexei Starovoitov1-11/+84
2024-06-13bpf: verifier: make kfuncs args nullalbleVadim Fedorenko1-3/+3
2024-06-13bpf: fix UML x86_64 compile failureMaciej Żenczykowski1-1/+1
2024-06-13bpf: Reduce stack consumption in check_stack_write_fixed_offDaniel Borkmann1-4/+5
2024-06-13bpf: Fix reg_set_min_max corruption of fake_regDaniel Borkmann1-4/+10
2024-06-12bpf: treewide: Align kfunc signatures to prog point-of-viewDaniel Xu1-1/+1
2024-06-12bpf: verifier: Relax caller requirements for kfunc projection type argsDaniel Xu1-1/+9
2024-06-10Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski1-2/+2
2024-06-03bpf: Remove unnecessary call to btf_field_type_size().Kui-Feng Lee1-1/+1
2024-06-03bpf: Remove unnecessary checks on the offset of btf_field.Kui-Feng Lee1-1/+1