summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/btf.c
Commit message (Expand)AuthorAgeFilesLines
...
* bpf: Switch to new kfunc flags infrastructureKumar Kartikeya Dwivedi2022-07-211-58/+48
* bpf: Fix check against plain integer v 'NULL'Ben Dooks2022-07-151-1/+2
* Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2022-07-091-83/+11
|\
| * bpf, libbpf: Add type match supportDaniel Müller2022-07-051-0/+9
| * bpf: minimize number of allocated lsm slots per programStanislav Fomichev2022-06-291-10/+0
| * bpf: per-cgroup lsm flavorStanislav Fomichev2022-06-291-0/+11
| * bpf: Merge "types_are_compat" logic into relo_core.cDaniel Müller2022-06-241-83/+1
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-06-231-0/+5
|\ \ | |/ |/|
| * bpf: Limit maximum modifier chain length in btf_check_type_tagsKumar Kartikeya Dwivedi2022-06-151-0/+5
* | Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2022-06-171-14/+128
|\ \ | |/ |/|
| * bpf: Add btf enum64 supportYonghong Song2022-06-071-14/+128
* | bpf: Fix calling global functions from BPF_PROG_TYPE_EXT programsToke Høiland-Jørgensen2022-06-071-1/+2
|/
* bpf: Allow kfunc in tracing and syscall programs.Benjamin Tissoires2022-05-201-0/+6
* bpf: Compute map_btf_id during build timeMenglong Dong2022-04-261-40/+0
* bpf: Make BTF type match stricter for release argumentsKumar Kartikeya Dwivedi2022-04-251-4/+10
* bpf: Teach verifier about kptr_get kfunc helpersKumar Kartikeya Dwivedi2022-04-251-5/+53
* bpf: Wire up freeing of referenced kptrKumar Kartikeya Dwivedi2022-04-251-1/+97
* bpf: Populate pairs of btf_id and destructor kfunc in btfKumar Kartikeya Dwivedi2022-04-251-0/+108
* bpf: Allow storing referenced kptr in mapKumar Kartikeya Dwivedi2022-04-251-1/+9
* bpf: Tag argument to be released in bpf_func_protoKumar Kartikeya Dwivedi2022-04-251-6/+5
* bpf: Allow storing unreferenced kptr in mapKumar Kartikeya Dwivedi2022-04-251-21/+146
* bpf: Make btf_find_field more genericKumar Kartikeya Dwivedi2022-04-211-31/+89
* bpf: Ensure type tags precede modifiers in BTFKumar Kartikeya Dwivedi2022-04-191-0/+54
* bpf: Fix maximum permitted number of arguments checkYuntao Wang2022-03-281-1/+1
* bpf: Simplify check in btf_parse_hdr()Yuntao Wang2022-03-211-2/+1
* bpf: Check for NULL return from bpf_get_btf_vmlinuxKumar Kartikeya Dwivedi2022-03-201-1/+5
* bpf: Always raise reference in btf_get_module_btfKumar Kartikeya Dwivedi2022-03-191-10/+11
* bpf: Factor out fd returning from bpf_btf_find_by_name_kindKumar Kartikeya Dwivedi2022-03-181-37/+53
* bpf: Reject programs that try to load __percpu memory.Hao Luo2022-03-051-1/+7
* bpf: Harden register offset checks for release helpers and kfuncsKumar Kartikeya Dwivedi2022-03-051-14/+19
* bpf: Fix PTR_TO_BTF_ID var_off checkKumar Kartikeya Dwivedi2022-03-051-3/+6
* bpf: Add config to allow loading modules with BTF mismatchesConnor O'Brien2022-02-281-1/+2
* bpf: Cleanup commentsTom Rix2022-02-231-3/+3
* bpf: Initialize ret to 0 inside btf_populate_kfunc_set()Souptick Joarder (HPE)2022-02-191-1/+1
* Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2022-02-171-3/+10
|\
| * libbpf: Split bpf_core_apply_relo()Mauricio Vásquez2022-02-161-3/+10
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-02-171-2/+3
|\ \ | |/ |/|
| * bpf: Fix crash due to out of bounds access into reg2btf_ids.Kumar Kartikeya Dwivedi2022-02-161-2/+3
* | bpf: Implement bpf_core_types_are_compat().Matteo Croce2022-02-041-1/+104
* | bpf: Fix a btf decl_tag bug when tagging a functionYonghong Song2022-02-031-8/+21
* | bpf: reject program if a __user tagged memory accessed in kernel wayYonghong Song2022-01-271-6/+28
* | bpf: fix register_btf_kfunc_id_set for !CONFIG_DEBUG_INFO_BTFStanislav Fomichev2022-01-251-2/+13
* | Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2022-01-241-40/+328
|\ \ | |/ |/|
| * bpf: Add reference tracking support to kfuncKumar Kartikeya Dwivedi2022-01-181-2/+30
| * bpf: Introduce mem, size argument pair support for kfuncKumar Kartikeya Dwivedi2022-01-181-3/+45
| * bpf: Remove check_kfunc_call callback and old kfunc BTF ID APIKumar Kartikeya Dwivedi2022-01-181-46/+0
| * bpf: Populate kfunc BTF ID sets in struct btfKumar Kartikeya Dwivedi2022-01-181-1/+243
| * bpf: Fix UAF due to race between btf_try_get_module and load_moduleKumar Kartikeya Dwivedi2022-01-181-2/+24
* | bpf: Generalize check_ctx_reg for reuse with other typesDaniel Borkmann2022-01-191-1/+1
|/
* bpf: Extend kfunc with PTR_TO_CTX, PTR_TO_MEM argument supportKumar Kartikeya Dwivedi2021-12-181-21/+73