summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/verifier.c
AgeCommit message (Expand)AuthorLines
2023-11-20bpf: keep track of max number of bpf_loop callback iterationsEduard Zingerman-2/+17
2023-11-20bpf: widening for callback iteratorsEduard Zingerman-2/+22
2023-11-20bpf: verify callbacks as if they are called unknown number of timesEduard Zingerman-99/+175
2023-11-20bpf: extract setup_func_entry() utility functionEduard Zingerman-36/+48
2023-11-20bpf: extract __check_reg_arg() utility functionEduard Zingerman-6/+13
2023-11-15bpf: Do not allocate percpu memory at init stageYonghong Song-2/+18
2023-11-09bpf: fix control-flow graph checking in privileged modeAndrii Nakryiko-15/+8
2023-11-09bpf: fix precision backtracking instruction iterationAndrii Nakryiko-2/+19
2023-11-09bpf: handle ldimm64 properly in check_cfg()Andrii Nakryiko-7/+20
2023-11-01bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_ENDShung-Hsi Yu-1/+6
2023-11-01bpf: Relax allowlist for css_task iterChuyi Zhou-4/+12
2023-11-01bpf: Fix check_stack_write_fixed_off() to correctly spill immHao Sun-1/+1
2023-11-01bpf: fix compilation error without CGROUPSMatthieu Baerts-0/+8
2023-10-24bpf: Improve JEQ/JNE branch taken logicAndrii Nakryiko-0/+8
2023-10-23bpf: print full verifier states on infinite loop detectionEduard Zingerman-0/+4
2023-10-23bpf: correct loop detection for iterators convergenceEduard Zingerman-4/+203
2023-10-23bpf: exact states comparison for iterator convergence checksEduard Zingerman-31/+187
2023-10-23bpf: extract same_callsites() as utility functionEduard Zingerman-5/+15
2023-10-23bpf: move explored_state() closer to the beginning of verifier.cEduard Zingerman-15/+13
2023-10-19bpf: Let bpf_iter_task_new accept null task ptrChuyi Zhou-1/+12
2023-10-19bpf: teach the verifier to enforce css_iter and task_iter in RCU CSChuyi Zhou-11/+39
2023-10-19bpf: Introduce css_task open-coded iterator kfuncsChuyi Zhou-0/+23
2023-10-16Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski-25/+56
2023-10-16bpf: Ensure proper register state printing for cond jumpsAndrii Nakryiko-1/+6
2023-10-16bpf: Disambiguate SCALAR register state output in verifier logsAndrii Nakryiko-22/+45
2023-10-12Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-3/+3
2023-10-11bpf: Implement cgroup sockaddr hooks for unix socketsDaan De Meyer-1/+4
2023-10-09bpf: Fix verifier log for async callback return valuesDavid Vernet-3/+3
2023-10-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-5/+3
2023-09-21bpf: Disable zero-extension for BPF_MEMSXIlya Leoshkevich-1/+1
2023-09-20bpf: unconditionally reset backtrack_state masks on global func exitAndrii Nakryiko-5/+3
2023-09-19bpf: Remove unused variables.Alexei Starovoitov-5/+1
2023-09-16bpf: Fix kfunc callback register type handlingKumar Kartikeya Dwivedi-0/+4
2023-09-16bpf: Disallow fentry/fexit/freplace for exception callbacksKumar Kartikeya Dwivedi-0/+6
2023-09-16bpf: Treat first argument as return value for bpf_throwKumar Kartikeya Dwivedi-13/+24
2023-09-16bpf: Perform CFG walk for exception callbackKumar Kartikeya Dwivedi-2/+13
2023-09-16bpf: Add support for custom exception callbacksKumar Kartikeya Dwivedi-8/+105
2023-09-16bpf: Refactor check_btf_func and split into two phasesKumar Kartikeya Dwivedi-28/+100
2023-09-16bpf: Implement BPF exceptionsKumar Kartikeya Dwivedi-14/+102
2023-09-16bpf: Implement support for adding hidden subprogsKumar Kartikeya Dwivedi-3/+33
2023-09-12bpf, x64: Fix tailcall infinite loopLeon Hwang-0/+3
2023-09-08bpf: Mark OBJ_RELEASE argument as MEM_RCU when possibleYonghong Song-0/+20
2023-09-08bpf: Add bpf_this_cpu_ptr/bpf_per_cpu_ptr support for allocated percpu objYonghong Song-8/+51
2023-09-08bpf: Add alloc/xchg/direct_access support for local percpu kptrYonghong Song-22/+90
2023-08-25bpf: Allow bpf_spin_{lock,unlock} in sleepable progsDave Marchevsky-6/+3
2023-08-25bpf: Consider non-owning refs to refcounted nodes RCU protectedDave Marchevsky-1/+12
2023-08-25bpf: Reenable bpf_refcount_acquireDave Marchevsky-4/+1
2023-08-25bpf: Ensure kptr_struct_meta is non-NULL for collection insert and refcount_a...Dave Marchevsky-0/+14
2023-08-23bpf: Fix issue in verifying allow_ptr_leaksYafang Shao-8/+9
2023-08-22bpf: Fix check_func_arg_reg_off bug for graph root/nodeKumar Kartikeya Dwivedi-11/+0