summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/sockmap.c
Commit message (Expand)AuthorAgeFilesLines
* bpf, sockmap: convert to generic sk_msg interfaceDaniel Borkmann2018-10-151-2610/+0
* tcp, ulp: remove ulp bits from sockmapDaniel Borkmann2018-10-151-29/+10
* bpf: return EOPNOTSUPP when map lookup isn't supportedPrashant Bhole2018-10-091-1/+1
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-09-251-4/+2
|\
| * bpf: remove redundant null pointer check before consume_skbzhong jiang2018-09-211-4/+2
* | bpf: sockmap, fix transition through disconnect without closeJohn Fastabend2018-09-221-19/+41
* | bpf: sockmap only allow ESTABLISHED sock stateJohn Fastabend2018-09-221-1/+30
|/
* bpf: avoid misuse of psock when TCP_ULP_BPF collides with another ULPJohn Fastabend2018-09-021-1/+11
* bpf: sockmap, decrement copied count correctly in redirect error caseJohn Fastabend2018-08-281-23/+22
* bpf, sockmap: fix psock refcount leak in bpf_tcp_recvmsgDaniel Borkmann2018-08-271-3/+2
* bpf, sockmap: fix potential use after free in bpf_tcp_closeDaniel Borkmann2018-08-271-1/+1
* bpf: sockmap: write_space events need to be passed to TCP handlerJohn Fastabend2018-08-221-0/+3
* bpf, sockmap: fix sock hash count in alloc_sock_hash_elemDaniel Borkmann2018-08-221-1/+3
* bpf, sockmap: fix sock_hash_alloc and reject zero-sized keysDaniel Borkmann2018-08-221-1/+3
* bpf, sockmap: fix sock_map_ctx_update_elem race with exist/noexistDaniel Borkmann2018-08-161-49/+57
* bpf, sockmap: fix map elem deletion race with smap_stop_sockDaniel Borkmann2018-08-161-1/+4
* bpf, sockmap: fix leakage of smap_psock_map_entryDaniel Borkmann2018-08-161-2/+7
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-08-131-0/+2
|\
| * bpf: decouple btf from seq bpf fs dump and enable more mapsDaniel Borkmann2018-08-131-0/+2
* | Merge ra.kernel.org:/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-08-111-3/+6
|\ \ | |/ |/|
| * bpf, sockmap: fix leak in bpf_tcp_sendmsg wait for mem pathDaniel Borkmann2018-08-081-2/+5
| * bpf, sockmap: fix bpf_tcp_sendmsg sock error handlingDaniel Borkmann2018-08-081-1/+1
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-07-201-3/+0
|\ \ | |/ |/|
| * bpf: sockmap: remove redundant pointer sgColin Ian King2018-07-181-3/+0
* | bpf: sockmap, convert bpf_compute_data_pointers to bpf_*_sk_skbJohn Fastabend2018-07-071-2/+2
* | bpf: sockmap, consume_skb in close pathJohn Fastabend2018-07-071-1/+4
* | bpf: sockhash, disallow bpf_tcp_close and update in parallelJohn Fastabend2018-07-071-0/+15
* | bpf: sockmap, hash table is RCU so readers do not need locksJohn Fastabend2018-07-071-2/+0
* | bpf: sockmap, error path can not release psock in multi-map caseJohn Fastabend2018-07-071-11/+6
|/
* bpf: sockhash, add release routineJohn Fastabend2018-07-011-0/+1
* bpf: sockhash fix omitted bucket lock in sock_closeJohn Fastabend2018-07-011-49/+96
* bpf: sockmap, fix smap_list_map_remove when psock is in many mapsJohn Fastabend2018-07-011-12/+22
* bpf: sockmap, fix crash when ipv6 sock is addedJohn Fastabend2018-07-011-10/+48
* bpf: fix attach type BPF_LIRC_MODE2 dependency wrt CONFIG_CGROUP_BPFSean Young2018-06-261-0/+18
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-05-241-2/+2
|\
| * bpf: allow sk_msg programs to read sock fieldsJohn Fastabend2018-05-181-0/+1
| * bpf: sockmap, fix double-freeGustavo A. R. Silva2018-05-171-1/+0
| * bpf: sockmap, fix uninitialized variableGustavo A. R. Silva2018-05-171-1/+1
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-05-211-9/+9
|\ \ | |/ |/|
| * bpf: parse and verdict prog attach may race with bpf map updateJohn Fastabend2018-05-181-3/+3
| * bpf: sockmap update rollback on error can incorrectly dec prog refcntJohn Fastabend2018-05-181-6/+6
* | bpf: sockmap, on update propagate errors back to userspaceJohn Fastabend2018-05-171-1/+1
* | bpf: fix sock hashmap kmalloc warningYonghong Song2018-05-171-0/+6
* | bpf: sockmap, add hash map supportJohn Fastabend2018-05-151-15/+479
* | bpf: sockmap, refactor sockmap routines to work with hashmapJohn Fastabend2018-05-151-60/+88
|/
* bpf: sockmap, fix error handling in redirect failuresJohn Fastabend2018-05-021-16/+12
* bpf: sockmap, zero sg_size on error when buffer is releasedJohn Fastabend2018-05-021-4/+11
* bpf: sockmap, fix scatterlist update on error path in send with applyJohn Fastabend2018-05-021-2/+3
* bpf: sockmap, fix double page_put on ENOMEM error in redirect pathJohn Fastabend2018-04-241-2/+1
* bpf: sockmap, sk_wait_event needed to handle blocking casesJohn Fastabend2018-04-241-0/+44