summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/verifier.c
AgeCommit message (Expand)AuthorFilesLines
2017-10-22bpf: fix pattern matches for direct packet accessDaniel Borkmann1-0/+24
2017-10-22bpf: fix off by one for range markings with L{T, E} patternsDaniel Borkmann1-12/+21
2017-10-18bpf: disallow arithmetic operations on context pointerJakub Kicinski1-2/+6
2017-10-07bpf: fix liveness markingAlexei Starovoitov1-0/+5
2017-09-19bpf: fix ri->map_owner pointer on bpf_prog_reallocDaniel Borkmann1-1/+6
2017-09-15bpf/verifier: reject BPF_ALU64|BPF_ENDEdward Cree1-1/+2
2017-09-08bpf: don't select potentially stale ri->map from buggy xdp progsDaniel Borkmann1-0/+16
2017-08-23bpf/verifier: document liveness analysisEdward Cree1-1/+27
2017-08-23bpf/verifier: remove varlen_map_value_access flagEdward Cree1-29/+12
2017-08-23bpf/verifier: when pruning a branch, ignore its write marksEdward Cree1-2/+7
2017-08-19bpf: make htab inlining more robust wrt assumptionsDaniel Borkmann1-1/+5
2017-08-18bpf: Fix map-in-map checking in the verifierMartin KaFai Lau1-0/+1
2017-08-17bpf: fix liveness propagation to parent in spilled stack slotsDaniel Borkmann1-1/+1
2017-08-16bpf: add access to sock fields and pkt data from sk_skb programsJohn Fastabend1-0/+1
2017-08-16bpf: sockmap with sk redirect supportJohn Fastabend1-0/+14
2017-08-15bpf/verifier: track liveness for pruningEdward Cree1-43/+146
2017-08-09bpf: enable BPF_J{LT, LE, SLT, SLE} opcodes in verifierDaniel Borkmann1-4/+58
2017-08-08bpf/verifier: increase complexity limit to 128kEdward Cree1-1/+1
2017-08-08bpf/verifier: more concise register state logs for constant var_offEdward Cree1-19/+27
2017-08-08bpf/verifier: track signed and unsigned min/max valuesEdward Cree1-308/+429
2017-08-08bpf/verifier: rework value trackingEdward Cree1-806/+974
2017-08-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-6/+15
2017-07-24bpf/verifier: fix min/max handling in BPF_SUBEdward Cree1-6/+15
2017-07-21Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-14/+94
2017-07-20bpf: fix mixed signed/unsigned derived min/max value boundsDaniel Borkmann1-14/+94
2017-07-17net: add notifier hooks for devmap bpf mapJohn Fastabend1-1/+1
2017-07-17bpf: add bpf_redirect_map helper routineJohn Fastabend1-0/+4
2017-07-17bpf: add devmap, a map for storing net device referencesJohn Fastabend1-0/+8
2017-07-03bpf, verifier: add additional patterns to evaluate_reg_imm_aluJohn Fastabend1-0/+62
2017-07-03bpf: simplify narrower ctx accessDaniel Borkmann1-44/+34
2017-06-30Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-0/+5
2017-06-29bpf: prevent leaking pointer via xadd on unpriviledgedDaniel Borkmann1-0/+5
2017-06-23bpf: possibly avoid extra masking for narrower load in verifierYonghong Song1-8/+21
2017-06-14bpf: permits narrower load from bpf program context fieldsYonghong Song1-19/+52
2017-06-10bpf: reset id on spilled regs in clear_all_pkt_pointersDaniel Borkmann1-2/+2
2017-06-10bpf: reset id on CONST_IMM transitionDaniel Borkmann1-0/+2
2017-06-10bpf: don't check spilled reg state for non-STACK_SPILLed type slotsDaniel Borkmann1-0/+2
2017-06-06bpf: cgroup skb progs cannot access ld_abs/indDaniel Borkmann1-1/+0
2017-06-02bpf: Allow CGROUP_SKB eBPF program to access sk_buffChenbo Feng1-0/+1
2017-05-31bpf: reconcile bpf_tail_call and stack_depthAlexei Starovoitov1-0/+1
2017-05-31bpf: teach verifier to track stack depthAlexei Starovoitov1-1/+9
2017-05-31bpf: free up BPF_JMP | BPF_CALL | BPF_X opcodeAlexei Starovoitov1-1/+1
2017-05-25bpf: properly reset caller saved regs after helper call and ld_abs/indDaniel Borkmann1-21/+16
2017-05-25bpf: fix incorrect pruning decision when alignment must be trackedDaniel Borkmann1-9/+10
2017-05-22net: Make IP alignment calulations clearer.David S. Miller1-4/+8
2017-05-17bpf: adjust verifier heuristicsDaniel Borkmann1-1/+11
2017-05-11bpf: Handle multiple variable additions into packet pointers in verifier.David S. Miller1-1/+1
2017-05-11bpf: Add strict alignment flag for BPF_PROG_LOAD.David S. Miller1-6/+17
2017-05-11bpf: Do per-instruction state dumping in verifier when log_level > 1.David S. Miller1-2/+6
2017-05-11bpf: Track alignment of register values in the verifier.David S. Miller1-19/+89