aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-11-02bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unprivDaniel Borkmann1-0/+1
2018-11-02bpf: show main program address and length in bpf_prog_infoSong Liu1-9/+24
2018-11-02bpf: show real jited address in bpf_prog_info->jited_ksymsSong Liu1-1/+0
2018-11-02bpf: show real jited prog address in /proc/kallsymsSong Liu1-3/+1
2018-10-31bpf: don't set id on after map lookup with ptr_to_map_val returnDaniel Borkmann1-5/+6
2018-10-31bpf: fix partial copy of map_ptr when dst is scalarDaniel Borkmann1-4/+6
2018-10-25bpf: add bpf_jit_limit knob to restrict unpriv allocationsDaniel Borkmann1-3/+46
2018-10-25bpf: make direct packet write unclone more robustDaniel Borkmann1-1/+5
2018-10-25bpf: fix leaking uninitialized memory on pop/peek helpersDaniel Borkmann1-0/+2
2018-10-25bpf: fix direct packet write into pop/peek helpersDaniel Borkmann1-2/+0
2018-10-25bpf: fix cg_skb types to hint access type in may_access_direct_pkt_dataDaniel Borkmann1-0/+1
2018-10-25bpf: fix direct packet access for flow dissector progsDaniel Borkmann1-2/+4
2018-10-26bpf, btf: fix a missing check bug in btf_parseMartin Lau1-33/+25
2018-10-26bpf: devmap: fix wrong interface selection in notifier_callTaehee Yoo1-2/+1
2018-10-21Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller8-20/+500
2018-10-20bpf, verifier: avoid retpoline for map push/pop/peek operationDaniel Borkmann1-1/+24
2018-10-20bpf, verifier: remove unneeded flow key in check_helper_mem_accessDaniel Borkmann1-2/+0
2018-10-20bpf, verifier: reject xadd on flow key memoryDaniel Borkmann1-1/+10
2018-10-20bpf, verifier: fix register type dump in xadd and stDaniel Borkmann1-6/+13
2018-10-19bpf: remove unused variableAlexei Starovoitov1-1/+1
2018-10-19bpf: add cg_skb_is_valid_access for BPF_PROG_TYPE_CGROUP_SKBSong Liu1-0/+6
2018-10-19bpf: add MAP_LOOKUP_AND_DELETE_ELEM syscallMauricio Vasquez B1-0/+66
2018-10-19bpf: add queue and stack mapsMauricio Vasquez B6-2/+359
2018-10-19bpf/verifier: add ARG_PTR_TO_UNINIT_MAP_VALUEMauricio Vasquez B1-3/+6
2018-10-19bpf/syscall: allow key to be null in map functionsMauricio Vasquez B1-4/+15
2018-10-19bpf: rename stack trace map operationsMauricio Vasquez B1-1/+1
2018-10-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-8/+2
2018-10-15bpf, sockmap: convert to generic sk_msg interfaceDaniel Borkmann4-2620/+3
2018-10-15tcp, ulp: remove ulp bits from sockmapDaniel Borkmann1-29/+10
2018-10-12bpf: wait for running BPF programs when updating map-in-mapDaniel Colascione1-0/+13
2018-10-11xsk: do not call synchronize_net() under RCU read lockBjörn Töpel1-8/+2
2018-10-09bpf: return EOPNOTSUPP when map lookup isn't supportedPrashant Bhole4-4/+4
2018-10-09bpf: error handling when map_lookup_elem isn't supportedPrashant Bhole1-2/+7
2018-10-09bpf: btf: Fix a missing check bugWenwen Wang1-0/+3
2018-10-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller7-184/+767
2018-10-08bpf: allow offload of programs with BPF-to-BPF function callsQuentin Monnet1-7/+3
2018-10-08bpf: add verifier callback to get stack usage info for offloaded progsQuentin Monnet2-0/+21
2018-10-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2-2/+13
2018-10-05bpf: 32-bit RSH verification must truncate input before the ALU opJann Horn1-1/+9
2018-10-03bpf: Add helper to retrieve socket in BPFJoe Stringer1-1/+7
2018-10-03bpf: Add reference tracking to verifierJoe Stringer1-19/+287
2018-10-03bpf: Macrofy stack state copyJoe Stringer1-46/+60
2018-10-03bpf: Add PTR_TO_SOCKET verifier typeJoe Stringer1-14/+106
2018-10-03bpf: Generalize ptr_or_null regs checkJoe Stringer1-18/+25
2018-10-03bpf: Reuse canonical string formatter for ctx errsJoe Stringer1-4/+3
2018-10-03bpf: Simplify ptr_min_max_vals adjustmentJoe Stringer1-12/+10
2018-10-03bpf: Add iterator for spilled registersJoe Stringer1-9/+7
2018-10-02bpf: don't accept cgroup local storage with zero value sizeRoman Gushchin1-0/+3
2018-10-01bpf: don't allow create maps of per-cpu cgroup local storagesRoman Gushchin1-1/+2
2018-10-01bpf: introduce per-cpu cgroup local storageRoman Gushchin4-27/+157