summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2023-01-23bpf: XDP metadata RX kfuncsStanislav Fomichev3-1/+76
2023-01-23bpf: Introduce device-bound XDP programsStanislav Fomichev3-30/+78
2023-01-23bpf: Reshuffle some parts of bpf/offload.cStanislav Fomichev1-105/+117
2023-01-23bpf: Move offload initialization into late_initcallStanislav Fomichev1-15/+7
2023-01-23bpf: Rename bpf_{prog,map}_is_dev_bound to is_offloadedStanislav Fomichev4-24/+24
2023-01-21bpf: Avoid recomputing spi in process_dynptr_funcKumar Kartikeya Dwivedi1-13/+11
2023-01-21bpf: Combine dynptr_get_spi and is_spi_bounds_validKumar Kartikeya Dwivedi1-42/+33
2023-01-21bpf: Allow reinitializing unreferenced dynptr stack slotsKumar Kartikeya Dwivedi1-8/+26
2023-01-21bpf: Invalidate slices on destruction of dynptrs on stackKumar Kartikeya Dwivedi1-12/+62
2023-01-21bpf: Fix partial dynptr stack slot reads/writesKumar Kartikeya Dwivedi1-0/+88
2023-01-21bpf: Fix missing var_off check for ARG_PTR_TO_DYNPTRKumar Kartikeya Dwivedi1-18/+66
2023-01-21bpf: Fix state pruning for STACK_DYNPTR stack slotsKumar Kartikeya Dwivedi1-4/+84
2023-01-18bpf: Do not allow to load sleepable BPF_TRACE_RAW_TP programJiri Olsa1-3/+19
2023-01-11bpf: btf: limit logging of ignored BTF mismatchesConnor O'Brien1-11/+27
2023-01-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski4-18/+48
2023-01-05Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski5-114/+136
2022-12-29bpf: rename list_head -> graph_root in field info typesDave Marchevsky3-22/+24
2022-12-29bpf: Always use maximal size for copy_array()Kees Cook1-5/+7
2022-12-29bpf: keep a reference to the mm, in case the task is dead.Kui-Feng Lee1-12/+27
2022-12-29bpf: Fix panic due to wrong pageattr of im->imageChuang Wang1-0/+4
2022-12-28bpf: fix regs_exact() logic in regsafe() to remap IDs correctlyAndrii Nakryiko1-7/+16
2022-12-28bpf: perform byte-by-byte comparison only when necessary in regsafe()Andrii Nakryiko1-12/+9
2022-12-28bpf: reject non-exact register type matches in regsafe()Andrii Nakryiko1-24/+21
2022-12-28bpf: generalize MAYBE_NULL vs non-MAYBE_NULL ruleAndrii Nakryiko1-16/+15
2022-12-28bpf: reorganize struct bpf_reg_state fieldsAndrii Nakryiko1-9/+8
2022-12-28bpf: teach refsafe() to take into account ID remappingAndrii Nakryiko1-4/+12
2022-12-24Merge tag 'for-netdev' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfDavid S. Miller2-1/+10
2022-12-23bpf: fix nullness propagation for reg to reg comparisonsHao Sun1-1/+8
2022-12-22bpf: Remove unused field initialization in bpf's ctl_tableRicardo Ribalda1-1/+0
2022-12-21Merge tag 'net-6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds3-5/+11
2022-12-21bpf: Reduce smap->elem_sizeMartin KaFai Lau1-2/+2
2022-12-20bpf: Remove trace_printk_lockJiri Olsa1-12/+19
2022-12-20bpf: Do cleanup in bpf_bprintf_cleanup only when neededJiri Olsa1-7/+9
2022-12-20bpf: Add struct for bin_args arg in bpf_bprintf_prepareJiri Olsa2-12/+15
2022-12-20bpf: Define sock security related BTF IDs under CONFIG_SECURITY_NETWORKHou Tao1-0/+2
2022-12-17Merge tag 'x86_mm_for_6.2_v2' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds3-8/+4
2022-12-15mm: Introduce set_memory_rox()Peter Zijlstra3-8/+4
2022-12-15bpf: Resolve fext program type when checking map compatibilityToke Høiland-Jørgensen1-2/+3
2022-12-14bpf: Synchronize dispatcher update with bpf_dispatcher_xdp_funcJiri Olsa1-0/+5
2022-12-14bpf: prevent leak of lsm program after failed attachMilan Landaverde1-3/+3
2022-12-14Merge tag 'net-next-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds21-1598/+4294
2022-12-13Merge tag 'random-6.2-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds1-2/+2
2022-12-11bpf: use check_ids() for active_lock comparisonEduard Zingerman1-3/+13
2022-12-11bpf: states_equal() must build idmap for all function framesEduard Zingerman1-1/+2
2022-12-11bpf: regsafe() must not skip check_ids()Eduard Zingerman1-21/+8
2022-12-09bpf: Use memmove for bpf_dynptr_{read,write}Kumar Kartikeya Dwivedi1-2/+10
2022-12-09bpf: Move PTR_TO_STACK alignment check to process_dynptr_funcKumar Kartikeya Dwivedi1-5/+8
2022-12-09bpf: Rework check_func_arg_reg_offKumar Kartikeya Dwivedi1-25/+38
2022-12-09bpf: Rework process_dynptr_funcKumar Kartikeya Dwivedi2-67/+178
2022-12-09bpf: Propagate errors from process_* checks in check_func_argKumar Kartikeya Dwivedi1-10/+15