summaryrefslogtreecommitdiffstats
path: root/net/tls/tls_sw.c
Commit message (Expand)AuthorAgeFilesLines
* net/tls: remove sock unlock/lock around strp_done()John Fastabend2019-07-221-10/+30
* net/tls: remove close callback sock unlock/lock around TX work flushJohn Fastabend2019-07-221-7/+17
* net/tls: don't arm strparser immediately in tls_set_sw_offload()Jakub Kicinski2019-07-221-7/+12
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-07-091-1/+2
|\
| * net/tls: fix poll ignoring partially copied recordsJakub Kicinski2019-07-071-1/+2
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-06-181-1/+0Star
|\|
| * net: tls, correctly account for copied bytes with multiple sk_msgsJohn Fastabend2019-06-121-1/+0Star
* | net/tls: add kernel-driven TLS RX resyncJakub Kicinski2019-06-111-1/+1
* | net/tls: rename handle_device_resync()Jakub Kicinski2019-06-111-1/+2
* | net/tls: pass record number as a byte arrayJakub Kicinski2019-06-111-4/+4
* | net/tls: don't pass version to tls_advance_record_sn()Jakub Kicinski2019-06-041-5/+4Star
* | net/tls: don't look for decrypted frames on non-offloaded socketsJakub Kicinski2019-06-041-3/+5
|/
* net/tls: fix no wakeup on partial readsJakub Kicinski2019-05-271-6/+2Star
* net/tls: fix lowat calculation if some data came from previous recordJakub Kicinski2019-05-271-7/+6Star
* net/tls: handle errors from padding_length()Jakub Kicinski2019-05-101-8/+22
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-04-261-0/+3
|\
| * net/tls: don't leak IV and record seq when offload failsJakub Kicinski2019-04-211-0/+3
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-04-171-14/+1Star
|\|
| * net/tls: don't leak partially sent record in device modeJakub Kicinski2019-04-101-14/+1Star
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-04-051-0/+2
|\|
| * net: tls: prevent false connection termination with offloadJakub Kicinski2019-03-291-0/+2
* | net/tls: Replace kfree_skb() with consume_skb()Vakul Garg2019-03-211-3/+3
* | net/tls: Add support of AES128-CCM based ciphersVakul Garg2019-03-201-16/+51
|/
* tls: Fix tls_device receiveBoris Pismenny2019-03-041-11/+14
* tls: Fix mixing between async capable and asyncEran Ben Elisha2019-03-041-6/+9
* tls: Fix write space handlingBoris Pismenny2019-03-041-0/+13
* tls: Return type of non-data records retrieved using MSG_PEEK in recvmsgVakul Garg2019-02-251-11/+67
* net/tls: Move protocol constants from cipher context to tls contextVakul Garg2019-02-191-81/+91
* net/tls: Do not use async crypto for non-data recordsVakul Garg2019-02-121-6/+12
* net/tls: Disable async decrytion for tls1.3Vakul Garg2019-02-091-2/+6
* net: tls: Set async_capable for tls zerocopy only if we see EINPROGRESSDave Watson2019-02-021-2/+2
* net: tls: Add tls 1.3 supportDave Watson2019-02-021-22/+94
* net: tls: Refactor control message handling on recvDave Watson2019-02-021-44/+44
* net: tls: Refactor tls aad space size calculationDave Watson2019-02-021-8/+9
* net: tls: Support 256 bit keysDave Watson2019-02-021-4/+25
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-01-301-1/+5
|\
| * net: tls: Fix deadlock in free_resources txDave Watson2019-01-291-0/+2
| * net: tls: Save iv in tls_rec for async crypto requestsDave Watson2019-01-291-1/+3
* | tls: Fix recvmsg() to be able to peek across multiple recordsVakul Garg2019-01-171-70/+196
* | net/tls: Make function tls_sw_do_sendpage staticYueHaibing2019-01-171-2/+2
* | net/tls: remove unused function tls_sw_sendpage_lockedYueHaibing2019-01-171-10/+0Star
|/
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-12-221-4/+6
|\
| * tls: Do not call sk_memcopy_from_iter with zero lengthVakul Garg2018-12-211-4/+6
* | bpf: sk_msg, sock{map|hash} redirect through ULPJohn Fastabend2018-12-201-13/+30
* | bpf: helper to pop data from messagesJohn Fastabend2018-11-281-2/+9
|/
* Merge branch 'work.afs' of git://git.kernel.org/pub/scm/linux/kernel/git/viro...Linus Torvalds2018-11-021-2/+2
|\
| * iov_iter: Use accessor functionDavid Howells2018-10-241-2/+2
* | bpf: sockmap, support for msg_peek in sk_msg with redirect ingressJohn Fastabend2018-10-171-1/+2
|/
* tls: add bpf support to sk_msg handlingJohn Fastabend2018-10-151-64/+375
* tls: replace poll implementation with read hookJohn Fastabend2018-10-151-13/+3Star