aboutsummaryrefslogtreecommitdiff
path: root/kernel/bpf/bpf_struct_ops.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-04bpf: struct_ops supports more than one page for trampolines.Gravatar Kui-Feng Lee 1-41/+89
2024-03-04bpf, net: validate struct_ops when updating value.Gravatar Kui-Feng Lee 1-5/+6
2024-02-22bpf: Check cfi_stubs before registering a struct_ops type.Gravatar Kui-Feng Lee 1-0/+5
2024-02-13bpf: Create argument information for nullable arguments.Gravatar Kui-Feng Lee 1-12/+201
2024-02-05bpf: Remove an unnecessary check.Gravatar Kui-Feng Lee 1-12/+9
2024-01-25bpf: Fix error checks against bpf_get_btf_vmlinux().Gravatar Kui-Feng Lee 1-0/+2
2024-01-23bpf, net: switch to dynamic registrationGravatar Kui-Feng Lee 1-87/+13
2024-01-23bpf: validate value_typeGravatar Kui-Feng Lee 1-33/+60
2024-01-23bpf: hold module refcnt in bpf_struct_ops map creation and prog verification.Gravatar Kui-Feng Lee 1-6/+23
2024-01-23bpf: pass attached BTF to the bpf_struct_ops subsystemGravatar Kui-Feng Lee 1-18/+47
2024-01-23bpf: lookup struct_ops types from a given module BTF.Gravatar Kui-Feng Lee 1-5/+6
2024-01-23bpf: pass btf object id in bpf_map_info.Gravatar Kui-Feng Lee 1-0/+7
2024-01-23bpf: make struct_ops_map support btfs other than btf_vmlinux.Gravatar Kui-Feng Lee 1-9/+15
2024-01-23bpf, net: introduce bpf_struct_ops_desc.Gravatar Kui-Feng Lee 1-39/+41
2024-01-23bpf: get type information with BTF_ID_LISTGravatar Kui-Feng Lee 1-9/+8
2024-01-23bpf: refactory struct_ops type initialization to a function.Gravatar Kui-Feng Lee 1-74/+83
2023-12-15x86/cfi,bpf: Fix bpf_struct_ops CFIGravatar Peter Zijlstra 1-8/+8
2023-12-06bpf: Use arch_bpf_trampoline_sizeGravatar Song Liu 1-0/+7
2023-12-06bpf: Add helpers for trampoline image managementGravatar Song Liu 1-7/+5
2023-09-14bpf: Charge modmem for struct_ops trampolineGravatar Song Liu 1-4/+22
2023-08-14bpf: Support default .validate() and .update() behavior for struct_ops linksGravatar David Vernet 1-6/+9
2023-08-03bpf: bpf_struct_ops: Remove unnecessary initial values of variablesGravatar Li kunyu 1-3/+3
2023-06-19bpf: Centralize permissions checks for all BPF map typesGravatar Andrii Nakryiko 1-3/+0
2023-03-24bpf: Check IS_ERR for the bpf_map_get() return valueGravatar Martin KaFai Lau 1-2/+2
2023-03-22bpf: Update the struct_ops of a bpf_link.Gravatar Kui-Feng Lee 1-1/+47
2023-03-22bpf: Create links for BPF struct_ops maps.Gravatar Kui-Feng Lee 1-3/+140
2023-03-22bpf: Retire the struct_ops map kvalue->refcnt.Gravatar Kui-Feng Lee 1-33/+44
2023-03-22bpf: return long from bpf_map_ops funcsGravatar JP Kobryn 1-3/+3
2023-03-07bpf: bpf_struct_ops memory usageGravatar Yafang Shao 1-0/+16
2022-12-15mm: Introduce set_memory_rox()Gravatar Peter Zijlstra 1-2/+1
2022-07-11bpf: Remove is_valid_bpf_tramp_flags()Gravatar Xu Kuohai 1-0/+3
2022-06-23bpf: Require only one of cong_avoid() and cong_control() from a TCP CCGravatar Jörn-Thorben Hinz 1-4/+3
2022-05-10bpf, x86: Generate trampolines from bpf_tramp_linksGravatar Kui-Feng Lee 1-22/+49
2022-04-26bpf: Compute map_btf_id during build timeGravatar Menglong Dong 1-3/+3
2022-04-14bpf: Remove unnecessary type castingsGravatar Yu Zhe 1-2/+2
2021-12-02bpf: Rename btf_member accessors.Gravatar Alexei Starovoitov 1-3/+3
2021-11-01bpf: Add dummy BPF STRUCT_OPS for test purposeGravatar Hou Tao 1-0/+3
2021-11-01bpf: Factor out a helper to prepare trampoline for struct_ops progGravatar Hou Tao 1-10/+19
2021-09-14bpf: Handle return value of BPF_PROG_TYPE_STRUCT_OPS progGravatar Hou Tao 1-2/+5
2021-08-25bpf: tcp: Allow bpf-tcp-cc to call bpf_(get|set)sockoptGravatar Martin KaFai Lau 1-1/+21
2021-03-18bpf: Fix fexit trampoline.Gravatar Alexei Starovoitov 1-1/+1
2020-12-02bpf: Eliminate rlimit-based memory accounting for bpf_struct_ops mapsGravatar Roman Gushchin 1-16/+3
2020-08-25bpf: Move btf_resolve_size into __btf_resolve_sizeGravatar Jiri Olsa 1-4/+2
2020-06-22bpf: Set map_btf_{name, id} for all map typesGravatar Andrey Ignatov 1-0/+3
2020-05-15bpf: Implement CAP_BPFGravatar Alexei Starovoitov 1-1/+1
2020-03-25Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar David S. Miller 1-3/+11
2020-03-05bpf: Return better error value in delete_elem for struct_ops mapGravatar Martin KaFai Lau 1-3/+11
2020-03-04bpf: Refactor trampoline update codeGravatar KP Singh 1-1/+9
2020-02-28bpf: Replace zero-length array with flexible-array memberGravatar Gustavo A. R. Silva 1-1/+1
2020-01-29bpf: Reuse log from btf_prase_vmlinux() in btf_struct_ops_init()Gravatar Martin KaFai Lau 1-3/+2