summaryrefslogtreecommitdiff
path: root/kernel/bpf/verifier.c
AgeCommit message (Expand)AuthorFilesLines
2022-11-28Daniel Borkmann says:Jakub Kicinski1-117/+1414
2022-11-24bpf: Don't mark arguments to fentry/fexit programs as trusted.Alexei Starovoitov1-3/+0
2022-11-24bpf: Add kfunc bpf_rcu_read_lock/unlock()Yonghong Song1-29/+133
2022-11-24bpf: Introduce might_sleep field in bpf_func_protoYonghong Song1-0/+5
2022-11-21bpf/verifier: Use kmalloc_size_roundup() to match ksize() usageKees Cook1-4/+8
2022-11-20bpf: Add a kfunc for generic type castYonghong Song1-2/+18
2022-11-20bpf: Add a kfunc to type cast from bpf uapi ctx to kernel ctxYonghong Song1-0/+22
2022-11-20bpf: Disallow bpf_obj_new_impl call when bpf_mem_alloc_init failsKumar Kartikeya Dwivedi1-0/+3
2022-11-20bpf: Allow trusted pointers to be passed to KF_TRUSTED_ARGS kfuncsDavid Vernet1-12/+57
2022-11-20bpf: Allow multiple modifiers in reg_type_str() prefixDavid Vernet1-11/+8
2022-11-17bpf: Add 'release on unlock' logic for bpf_list_push_{front,back}Kumar Kartikeya Dwivedi1-1/+57
2022-11-17bpf: Introduce single ownership BPF linked list APIKumar Kartikeya Dwivedi1-8/+267
2022-11-17bpf: Permit NULL checking pointer with non-zero fixed offsetKumar Kartikeya Dwivedi1-9/+12
2022-11-17bpf: Introduce bpf_obj_dropKumar Kartikeya Dwivedi1-11/+55
2022-11-17bpf: Introduce bpf_obj_newKumar Kartikeya Dwivedi1-8/+94
2022-11-17bpf: Support constant scalar arguments for kfuncsKumar Kartikeya Dwivedi1-14/+43
2022-11-17bpf: Rewrite kfunc argument handlingKumar Kartikeya Dwivedi1-17/+528
2022-11-17bpf: Allow locking bpf_spin_lock global variablesKumar Kartikeya Dwivedi1-13/+28
2022-11-17bpf: Allow locking bpf_spin_lock in allocated objectsKumar Kartikeya Dwivedi1-25/+65
2022-11-17bpf: Introduce allocated objects supportKumar Kartikeya Dwivedi1-2/+23
2022-11-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-5/+9
2022-11-15bpf: propagate nullness information for reg to reg comparisonsEduard Zingerman1-2/+33
2022-11-15bpf: Expand map key argument of bpf_redirect_map to u64Toke Høiland-Jørgensen1-1/+1
2022-11-14bpf: Refactor btf_struct_accessKumar Kartikeya Dwivedi1-5/+7
2022-11-14bpf: Rename MEM_ALLOC to MEM_RINGBUFKumar Kartikeya Dwivedi1-7/+7
2022-11-14bpf: Rename RET_PTR_TO_ALLOC_MEMKumar Kartikeya Dwivedi1-1/+1
2022-11-14bpf: Support bpf_list_head in map valuesKumar Kartikeya Dwivedi1-0/+7
2022-11-11Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski1-171/+314
2022-11-10Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-4/+13
2022-11-08bpf: Fix memory leaks in __check_func_callWang Yufen1-5/+9
2022-11-04bpf: aggressively forget precise markings during state checkpointingAndrii Nakryiko1-0/+37
2022-11-04bpf: stop setting precise in current stateAndrii Nakryiko1-12/+91
2022-11-04bpf: allow precision tracking for programs with subprogsAndrii Nakryiko1-1/+61
2022-11-04bpf: propagate precision across all frames, not just the last oneAndrii Nakryiko1-32/+39
2022-11-04bpf: propagate precision in ALU/ALU64 operationsAndrii Nakryiko1-0/+5
2022-11-03bpf: Consolidate spin_lock, timer management into btf_recordKumar Kartikeya Dwivedi1-61/+21
2022-11-03bpf: Refactor kptr_off_tab into btf_recordKumar Kartikeya Dwivedi1-49/+47
2022-11-03bpf: Drop reg_type_may_be_refcounted_or_nullKumar Kartikeya Dwivedi1-8/+1
2022-11-03bpf: Fix slot type check in check_stack_write_var_offKumar Kartikeya Dwivedi1-8/+11
2022-11-03bpf: Clobber stack slot when writing over spilled PTR_TO_BTF_IDKumar Kartikeya Dwivedi1-4/+5
2022-11-04bpf: Fix wrong reg type conversion in release_reference()Youlin Li1-2/+6
2022-11-02Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski1-14/+15
2022-11-01bpf, verifier: Fix memory leak in array reallocation for stack stateKees Cook1-2/+7
2022-10-27bpf: Fix a typo in comment for DFS algorithmXu Kuohai1-1/+1
2022-10-25bpf: Implement cgroup storage available to non-cgroup-attached bpf progsYonghong Song1-1/+12
2022-10-24Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski1-0/+1
2022-10-21bpf: Consider all mem_types compatible for map_{key,value} argsDave Marchevsky1-13/+2
2022-10-21bpf: Allow ringbuf memory to be used as map keyDave Marchevsky1-0/+1
2022-10-13bpf: Allow bpf_user_ringbuf_drain() callbacks to return 1David Vernet1-0/+1
2022-10-11treewide: use get_random_u32() when possibleJason A. Donenfeld1-1/+1