index
:
blaster4385/linux-IllusionX
main
v6.12.1
v6.12.10
v6.13
Linux kernel with personal config changes for arch linux
Blaster4385
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
kernel
/
bpf
/
verifier.c
Age
Commit message (
Expand
)
Author
Files
Lines
2022-04-06
bpf: Reject writes for PTR_TO_MAP_KEY in check_helper_mem_access
Kumar Kartikeya Dwivedi
1
-0
/
+5
2022-04-06
bpf: Check PTR_TO_MEM | MEM_RDONLY in check_helper_mem_access
Kumar Kartikeya Dwivedi
1
-1
/
+11
2022-04-06
bpf: Do write access check for kfunc and global func
Kumar Kartikeya Dwivedi
1
-15
/
+29
2022-03-21
bpf: Fix warning for cast from restricted gfp_t in verifier
Joanne Koong
1
-2
/
+2
2022-03-21
Revert "bpf: Add support to inline bpf_get_func_ip helper on x86"
Jiri Olsa
1
-20
/
+1
2022-03-20
bpf: Enable non-atomic allocations in local storage
Joanne Koong
1
-0
/
+20
2022-03-17
bpf: Add support to inline bpf_get_func_ip helper on x86
Jiri Olsa
1
-1
/
+20
2022-03-16
bpf: Fix net.core.bpf_jit_harden race
Hou Tao
1
-2
/
+3
2022-03-10
bpf: Use offsetofend() to simplify macro definition
Yuntao Wang
1
-2
/
+1
2022-03-08
bpf: Determine buf_info inside check_buffer_access()
Shung-Hsi Yu
1
-9
/
+3
2022-03-05
bpf: Reject programs that try to load __percpu memory.
Hao Luo
1
-10
/
+14
2022-03-05
bpf: Fix checking PTR_TO_BTF_ID in check_mem_access
Hao Luo
1
-1
/
+2
2022-03-05
bpf: Harden register offset checks for release helpers and kfuncs
Kumar Kartikeya Dwivedi
1
-3
/
+22
2022-03-05
bpf: Disallow negative offset in check_ptr_off_reg
Kumar Kartikeya Dwivedi
1
-0
/
+6
2022-03-05
bpf: Add check_func_arg_reg_off function
Kumar Kartikeya Dwivedi
1
-28
/
+41
2022-03-03
bpf: Small BPF verifier log improvements
Mykola Lysenko
1
-29
/
+35
2022-02-15
bpf: Reject kfunc calls that overflow insn->imm
Hou Tao
1
-1
/
+10
2022-02-07
bpf: Use prog->jited_len in bpf_prog_ksym_set_addr()
Song Liu
1
-0
/
+1
2022-01-27
bpf: reject program if a __user tagged memory accessed in kernel way
Yonghong Song
1
-11
/
+24
2022-01-24
Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
Jakub Kicinski
1
-67
/
+129
2022-01-19
bpf: Fix ringbuf memory type confusion when passing to helpers
Daniel Borkmann
1
-1
/
+5
2022-01-19
bpf: Fix out of bounds access for ringbuf helpers
Daniel Borkmann
1
-0
/
+6
2022-01-19
bpf: Generally fix helper register offset check
Daniel Borkmann
1
-11
/
+28
2022-01-19
bpf: Mark PTR_TO_FUNC register initially with zero offset
Daniel Borkmann
1
-3
/
+6
2022-01-19
bpf: Generalize check_ctx_reg for reuse with other types
Daniel Borkmann
1
-10
/
+11
2022-01-18
bpf: Add reference tracking support to kfunc
Kumar Kartikeya Dwivedi
1
-10
/
+42
2022-01-18
bpf: Introduce mem, size argument pair support for kfunc
Kumar Kartikeya Dwivedi
1
-45
/
+79
2022-01-18
bpf: Remove check_kfunc_call callback and old kfunc BTF ID API
Kumar Kartikeya Dwivedi
1
-12
/
+8
2022-01-11
bpf: Fix incorrect integer literal used for marking scratched stack.
Christy Lee
1
-3
/
+3
2022-01-05
bpf: Fix verifier support for validation of async callbacks
Kris Van Hees
1
-0
/
+1
2022-01-05
bpf: Don't promote bogus looking registers after null check.
Daniel Borkmann
1
-6
/
+6
2021-12-31
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
David S. Miller
1
-281
/
+415
2021-12-29
bpf: Allow bpf_local_storage to be used by sleepable programs
KP Singh
1
-0
/
+3
2021-12-18
bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem.
Hao Luo
1
-3
/
+17
2021-12-18
bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM.
Hao Luo
1
-4
/
+26
2021-12-18
bpf: Convert PTR_TO_MEM_OR_NULL to composable types.
Hao Luo
1
-1
/
+1
2021-12-18
bpf: Introduce MEM_RDONLY flag
Hao Luo
1
-34
/
+50
2021-12-18
bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL
Hao Luo
1
-173
/
+125
2021-12-18
bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL
Hao Luo
1
-26
/
+26
2021-12-18
bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL
Hao Luo
1
-25
/
+14
2021-12-16
Only output backtracking information in log level 2
Christy Lee
1
-3
/
+3
2021-12-16
bpf: Right align verifier states in verifier logs.
Christy Lee
1
-21
/
+36
2021-12-16
bpf: Only print scratched registers and stack slots to verifier logs.
Christy Lee
1
-14
/
+69
2021-12-16
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Jakub Kicinski
1
-17
/
+36
2021-12-16
add missing bpf-cgroup.h includes
Jakub Kicinski
1
-0
/
+1
2021-12-16
bpf: Make 32->64 bounds propagation slightly more robust
Daniel Borkmann
1
-9
/
+15
2021-12-16
bpf: Fix signed bounds propagation after mov32
Daniel Borkmann
1
-0
/
+4
2021-12-14
bpf: Fix kernel address leakage in atomic cmpxchg's r0 aux reg
Daniel Borkmann
1
-1
/
+8
2021-12-14
bpf: Fix kernel address leakage in atomic fetch
Daniel Borkmann
1
-3
/
+9
2021-12-13
bpf: Add get_func_[arg|ret|arg_cnt] helpers
Jiri Olsa
1
-5
/
+72
[next]