summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2022-01-16bpf: Fix out of bounds access from invalid *_or_null type verificationDaniel Borkmann1-3/+3
2022-01-05bpf: Add kconfig knob for disabling unpriv bpf by defaultDaniel Borkmann1-1/+2
2021-12-22bpf: Make 32->64 bounds propagation slightly more robustDaniel Borkmann1-9/+15
2021-12-22bpf: Fix signed bounds propagation after mov32Daniel Borkmann1-0/+4
2021-12-17bpf: Fix integer overflow in argument calculation for bpf_map_area_allocBui Quang Minh1-2/+2
2021-12-14bpf: Fix the off-by-two error in range markingsMaxim Mikityanskiy1-1/+1
2021-12-01bpf: Fix toctou on read-only map's constant scalar trackingDaniel Borkmann2-22/+52
2021-11-18bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit.Alexei Starovoitov1-1/+1
2021-11-18bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off.Alexei Starovoitov1-1/+1
2021-11-18bpf: Prevent increasing bpf_jit_limit above maxLorenz Bauer1-1/+3
2021-11-02bpf: Fix error usage of map_fd and fdget() in generic_map_update_batch()Xu Kuohai1-2/+3
2021-11-02bpf: Fix potential race in tail call compatibility checkToke Høiland-Jørgensen3-9/+18
2021-10-13bpf: Fix integer overflow in prealloc_elems_and_freelist()Tatsuhiko Yasumatsu1-1/+2
2021-10-06bpf: Exempt CAP_BPF from checks against bpf_jit_limitLorenz Bauer1-1/+1
2021-10-06bpf: Handle return value of BPF_PROG_TYPE_STRUCT_OPS progHou Tao1-2/+5
2021-09-30bpf: Add oversize check before call kvcalloc()Bixuan Cui1-0/+2
2021-09-15bpf: Fix possible out of bound write in narrow load handlingAndrey Ignatov1-0/+4
2021-09-15bpf: Fix potential memleak and UAF in the verifier.He Fengqing1-11/+16
2021-09-03bpf: Fix potentially incorrect results with bpf_get_local_storage()Yonghong Song1-2/+2
2021-09-03bpf: Fix NULL pointer dereference in bpf_get_local_storage() helperYonghong Song2-6/+14
2021-09-03bpf: Fix ringbuf helper function compatibilityDaniel Borkmann1-2/+6
2021-08-26bpf: Clear zext_dst of dead insnsIlya Leoshkevich1-0/+1
2021-08-18bpf: Fix integer overflow involving bucket_sizeTatsuhiko Yasumatsu1-2/+2
2021-08-04bpf: Fix pointer arithmetic mask tightening under state pruningDaniel Borkmann1-10/+17
2021-08-04bpf: verifier: Allocate idmap scratch in verifier envLorenz Bauer1-31/+15
2021-08-04bpf: Remove superfluous aux sanitation on subprog rejectionDaniel Borkmann1-34/+0
2021-08-04bpf: Fix leakage due to insufficient speculative store bypass mitigationDaniel Borkmann1-55/+32
2021-08-04bpf: Introduce BPF nospec instruction for mitigating Spectre v4Daniel Borkmann2-8/+27
2021-07-28bpf: Fix tail_call_reachable rejection for interpreter when jit failedDaniel Borkmann1-0/+2
2021-07-25bpf: Track subprog poke descriptors correctly and fix use-after-freeJohn Fastabend2-40/+28
2021-07-19bpf: Fix false positive kmemleak report in bpf_ringbuf_area_alloc()Rustam Kovhaev1-0/+2
2021-07-19bpf: Fix up register-based shifts in interpreter to silence KUBSANDaniel Borkmann1-18/+43
2021-07-14bpf: Fix null ptr deref with mixed tail calls and subprogsJohn Fastabend1-2/+4
2021-06-23bpf: Do not mark insn as seen under speculative path verificationDaniel Borkmann1-2/+18
2021-06-23bpf: Inherit expanded/patched seen count from old aux dataDaniel Borkmann1-1/+3
2021-06-23bpf: Fix leakage under speculation on mispredicted branchesDaniel Borkmann1-4/+40
2021-06-16bpf: Forbid trampoline attach for functions with variable argumentsJiri Olsa1-0/+12
2021-06-10bpf, lockdown, audit: Fix buggy SELinux lockdown permission checksDaniel Borkmann1-2/+5
2021-06-10bpf: Simplify cases in bpf_base_func_protoTobias Klauser1-8/+4
2021-06-03bpf, offload: Reorder offload callback 'prepare' in verifierYinjun Zhang1-6/+6
2021-05-28bpf: No need to simulate speculative domain for immediatesDaniel Borkmann1-1/+5
2021-05-28bpf: Fix mask direction swap upon off reg sign changeDaniel Borkmann1-10/+12
2021-05-28bpf: Wrap aux data inside bpf_sanitize_info containerDaniel Borkmann1-7/+11
2021-05-14bpf: Prevent writable memory-mapping of read-only ringbuf pagesAndrii Nakryiko1-13/+8
2021-05-14bpf, ringbuf: Deny reserve of buffers larger than ringbufThadeu Lima de Souza Cascardo1-0/+3
2021-05-14bpf: Fix alu32 const subreg bound tracking on bitwise operationsDaniel Borkmann1-13/+9
2021-05-14bpf: Fix propagation of 32 bit unsigned bounds from 64 bit boundsDaniel Borkmann1-5/+3
2021-05-07bpf: Fix leakage of uninitialized bpf stack under speculationDaniel Borkmann1-10/+17
2021-05-07bpf: Fix masking negation logic upon negative dst registerDaniel Borkmann1-8/+4
2021-04-28bpf: Tighten speculative pointer arithmetic maskDaniel Borkmann1-29/+44