aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf/verifier.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-10-15bpf: Reject negative offsets for ALU opsYazhou Tang1-2/+2
2025-10-15bpf: Skip scalar adjustment for BPF_NEG if dst is a pointerBrahmajit Das1-1/+2
2025-10-15bpf: dont report verifier bug for missing bpf_scc_visit on speculative pathEduard Zingerman1-3/+18
2025-09-10bpf: Reject bpf_timer for PREEMPT_RTLeon Hwang1-0/+4
2025-08-15bpf: Check the helper function is valid in get_helper_protoJiri Olsa1-1/+1
2025-08-02bpf: Fix memory leak of bpf_scc_info objectsEduard Zingerman1-0/+3
2025-08-01bpf: Improve ctx access verifier error messagePaul Chaignon1-1/+1
2025-07-28bpf: Add log for attaching tracing programs to functions in deny listKaFai Wan1-0/+2
2025-07-28bpf: Show precise rejected function when attaching fexit/fmod_ret to __noreturn functionsKaFai Wan1-1/+2
2025-07-28bpf: Fix various typos in verifier.c commentsSuchit Karunakaran1-5/+5
2025-07-28bpf: Add third round of bounds deductionPaul Chaignon1-0/+1
2025-07-28bpf: Improve bounds when s64 crosses sign boundaryPaul Chaignon1-0/+52
2025-07-27bpf: Simplify bounds refinement from s32Paul Chaignon1-14/+0
2025-07-11bpf: Forget ranges when refining tnum after JSETPaul Chaignon1-0/+4
2025-07-07bpf: Fix aux usage after do_check_insn()Luis Gerhorst1-5/+14
2025-07-07bpf: support for void/primitive __arg_untrusted global func paramsEduard Zingerman1-3/+4
2025-07-07bpf: attribute __arg_untrusted for global function parametersEduard Zingerman1-0/+6
2025-07-07bpf: rdonly_untrusted_mem for btf id walk pointer leafsEduard Zingerman1-0/+5
2025-07-07bpf: make makr_btf_ld_reg return error for unexpected reg typesEduard Zingerman1-20/+39
2025-07-03bpf: Avoid putting struct bpf_scc_callchain variables on the stackYonghong Song1-18/+18
2025-07-03bpf: Reduce stack frame size by using env->insn_buf for bpf insnsYonghong Song1-98/+92
2025-07-03bpf: Simplify assignment to struct bpf_insn pointer in do_misc_fixups()Yonghong Song1-2/+2
2025-07-03bpf: Avoid warning on unexpected map for tail callPaul Chaignon1-2/+2
2025-07-03bpf: Introduce BPF standard streamsKumar Kartikeya Dwivedi1-0/+1
2025-07-02bpf: Avoid warning on multiple referenced args in callPaul Chaignon1-4/+4
2025-07-02bpf: avoid jump misprediction for PTR_TO_MEM | PTR_UNTRUSTEDEduard Zingerman1-1/+1
2025-07-01bpf: Warn on internal verifier errorsPaul Chaignon1-109/+102
2025-06-26Merge branch 'vfs-6.17.bpf' of https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsAlexei Starovoitov1-0/+5
2025-06-26Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc3Alexei Starovoitov1-3/+2
2025-06-25bpf: allow void* cast using bpf_rdonly_cast()Eduard Zingerman1-12/+61
2025-06-25bpf: add bpf_features enumEduard Zingerman1-0/+6
2025-06-25bpf: Add range tracking for BPF_NEGSong Liu1-1/+16
2025-06-24bpf, verifier: Improve precision for BPF_ADD and BPF_SUBHarishankar Vishwanathan1-20/+56
2025-06-23bpf: Mark cgroup_subsys_state->cgroup RCU safeSong Liu1-0/+5
2025-06-17bpf: Mark dentry->d_inode as trusted_or_nullSong Liu1-3/+2
2025-06-13bpf: Remove redundant free_verifier_state()/pop_stack()Luis Gerhorst1-26/+10
2025-06-13bpf: handle jset (if a & b ...) as a jump in CFG computationEduard Zingerman1-0/+1
2025-06-13bpf: Include verifier memory allocations in memcg statisticsEduard Zingerman1-34/+35
2025-06-12bpf: Initialize used but uninit variable in propagate_liveness()Song Liu1-1/+1
2025-06-12bpf: Fix state use-after-free on push_stack() errLuis Gerhorst1-2/+2
2025-06-12bpf: include backedges in peak_states statEduard Zingerman1-1/+7
2025-06-12bpf: remove {update,get}_loop_entry functionsEduard Zingerman1-164/+1
2025-06-12bpf: propagate read/precision marks over state graph backedgesEduard Zingerman1-68/+384
2025-06-12bpf: move REG_LIVE_DONE check to clean_live_states()Eduard Zingerman1-4/+3
2025-06-12bpf: set 'changed' status if propagate_liveness() did any updatesEduard Zingerman1-2/+7
2025-06-12bpf: set 'changed' status if propagate_precision() did any updatesEduard Zingerman1-12/+23
2025-06-12bpf: starting_state parameter for __mark_chain_precision()Eduard Zingerman1-11/+13
2025-06-12bpf: frame_insn_idx() utility functionEduard Zingerman1-3/+10
2025-06-12bpf: compute SCCs in program control flow graphEduard Zingerman1-0/+182
2025-06-12Revert "bpf: use common instruction history across all states"Eduard Zingerman1-53/+56