summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2022-12-09bpf: Refactor ARG_PTR_TO_DYNPTR checks into process_dynptr_funcKumar Kartikeya Dwivedi1-64/+70
2022-12-09bpf: Skip rcu_barrier() if rcu_trace_implies_rcu_gp() is trueHou Tao1-1/+9
2022-12-09bpf: Reuse freed element in free_by_rcu during allocationHou Tao1-3/+18
2022-12-08bpf: Fix comment error in fixup_kfunc_call functionYang Jihong1-1/+1
2022-12-08bpf: Do not zero-extend kfunc return valuesBjörn Töpel1-0/+4
2022-12-08bpf/docs: Document struct cgroup * kfuncsDavid Vernet1-1/+1
2022-12-08bpf/docs: Document struct task_struct * kfuncsDavid Vernet1-1/+1
2022-12-08bpf: Remove unused insn_cnt argument from visit_[func_call_]insn()Andrii Nakryiko1-6/+5
2022-12-08Merge "do not rely on ALLOW_ERROR_INJECTION for fmod_ret" into bpf-nextAlexei Starovoitov2-7/+40
2022-12-07bpf: do not rely on ALLOW_ERROR_INJECTION for fmod_retBenjamin Tissoires2-7/+40
2022-12-07bpf: remove unnecessary prune and jump pointsAndrii Nakryiko1-24/+10
2022-12-07bpf: mostly decouple jump history management from is_state_visited()Andrii Nakryiko1-23/+26
2022-12-07bpf: decouple prune and jump pointsAndrii Nakryiko1-14/+43
2022-12-07bpf: Loosen alloc obj test in verifier's reg_btf_recordDave Marchevsky1-1/+6
2022-12-07bpf: Don't use rcu_users to refcount in task kfuncsDavid Vernet1-28/+48
2022-12-05bpf: Enable sleeptable support for cgrp local storageYonghong Song1-1/+2
2022-12-04bpf: Do not mark certain LSM hook arguments as trustedYonghong Song2-0/+18
2022-12-04bpf: Handle MEM_RCU type properlyYonghong Song2-13/+46
2022-12-02bpf: Fix release_on_unlock release logic for multiple refsDave Marchevsky1-1/+1
2022-12-01bpf: Fix a compilation failure with clang lto buildYonghong Song3-7/+4
2022-12-01bpf: Tighten ptr_to_btf_id checks.Alexei Starovoitov1-3/+14
2022-11-30Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2022-11-29Daniel Borkmann says:Jakub Kicinski13-574/+2398
2022-11-25bpf: Don't mark arguments to fentry/fexit programs as trusted.Alexei Starovoitov2-6/+13
2022-11-24bpf: Add kfunc bpf_rcu_read_lock/unlock()Yonghong Song3-29/+148
2022-11-24bpf: Introduce might_sleep field in bpf_func_protoYonghong Song3-2/+11
2022-11-24bpf: Add bpf_task_from_pid() kfuncDavid Vernet1-1/+20
2022-11-24bpf: Unify and simplify btf_func_proto_check error handlingStanislav Fomichev1-9/+5
2022-11-24bpf: Prevent decl_tag from being referenced in func_proto argStanislav Fomichev1-0/+5
2022-11-23bpf: Don't use idx variable when registering kfunc dtorsDavid Vernet1-5/+5
2022-11-23bpf: Add bpf_cgroup_ancestor() kfuncDavid Vernet1-0/+20
2022-11-23bpf: Enable cgroups to be used as kptrsDavid Vernet1-3/+80
2022-11-21bpf: Do not copy spin lock field from user in bpf_selem_allocXu Kuohai1-1/+1
2022-11-21bpf: Pin the start cgroup in cgroup_iter_seq_init()Hou Tao1-0/+14
2022-11-21bpf/verifier: Use kmalloc_size_roundup() to match ksize() usageKees Cook1-4/+8
2022-11-21bpf: Add a kfunc for generic type castYonghong Song2-2/+24
2022-11-21bpf: Add a kfunc to type cast from bpf uapi ctx to kernel ctxYonghong Song3-0/+48
2022-11-21bpf: Add support for kfunc set with common btf_idsYonghong Song2-1/+19
2022-11-21bpf: Disallow bpf_obj_new_impl call when bpf_mem_alloc_init failsKumar Kartikeya Dwivedi2-2/+3
2022-11-20bpf: Add kfuncs for storing struct task_struct * as a kptrDavid Vernet1-3/+75
2022-11-20bpf: Allow trusted pointers to be passed to KF_TRUSTED_ARGS kfuncsDavid Vernet2-12/+65
2022-11-20bpf: Allow multiple modifiers in reg_type_str() prefixDavid Vernet1-11/+8
2022-11-18bpf: Add comments for map BTF matching requirement for bpf_list_headKumar Kartikeya Dwivedi3-0/+22
2022-11-18bpf: Add 'release on unlock' logic for bpf_list_push_{front,back}Kumar Kartikeya Dwivedi1-1/+57
2022-11-18bpf: Introduce single ownership BPF linked list APIKumar Kartikeya Dwivedi2-9/+321
2022-11-18bpf: Permit NULL checking pointer with non-zero fixed offsetKumar Kartikeya Dwivedi1-9/+12
2022-11-18bpf: Introduce bpf_obj_dropKumar Kartikeya Dwivedi2-11/+66
2022-11-18bpf: Introduce bpf_obj_newKumar Kartikeya Dwivedi3-15/+150
2022-11-18bpf: Support constant scalar arguments for kfuncsKumar Kartikeya Dwivedi1-14/+43
2022-11-18bpf: Rewrite kfunc argument handlingKumar Kartikeya Dwivedi2-386/+539