aboutsummaryrefslogtreecommitdiffstats
path: root/net/tls/tls_sw.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-09-27net: tls: Add ARIA-GCM algorithmTaehee Yoo1-0/+34
2022-08-17tls: rx: react to strparser initialization errorsJakub Kicinski1-1/+3
2022-08-08iov_iter: advancing variants of iov_iter_get_pages{,_alloc}()Al Viro1-3/+1
2022-07-28tls: rx: fix the false positive warningJakub Kicinski1-1/+1
2022-07-28tls: rx: don't consider sock_rcvtimeo() cumulativeJakub Kicinski1-18/+19
2022-07-26tls: rx: do not use the standard strparserJakub Kicinski1-45/+35
2022-07-26tls: rx: device: keep the zero copy status with offloadJakub Kicinski1-5/+25
2022-07-26tls: rx: don't free the output in case of zero-copyJakub Kicinski1-13/+13
2022-07-26tls: rx: factor SW handling out of tls_rx_one_record()Jakub Kicinski1-36/+57
2022-07-26tls: rx: wrap recv_pkt accesses in helpersJakub Kicinski1-5/+6
2022-07-21tls: rx: release the sock lock on locking timeoutJakub Kicinski1-4/+13
2022-07-18tls: rx: decrypt into a fresh skbJakub Kicinski1-37/+69
2022-07-18tls: rx: async: don't put async zc on the listJakub Kicinski1-21/+19
2022-07-18tls: rx: async: hold onto the input skbJakub Kicinski1-9/+17
2022-07-18tls: rx: async: adjust record geometry immediatelyJakub Kicinski1-39/+10
2022-07-18tls: rx: return the decrypted skb via dargJakub Kicinski1-10/+39
2022-07-18tls: rx: read the input skb from ctx->recv_pktJakub Kicinski1-19/+18
2022-07-18tls: rx: factor out device darg updateJakub Kicinski1-19/+41
2022-07-18tls: rx: remove the message decrypted trackingJakub Kicinski1-10/+0
2022-07-18tls: rx: don't keep decrypted skbs on ctx->recv_pktJakub Kicinski1-21/+28
2022-07-18tls: rx: don't try to keep the skbs always on the listJakub Kicinski1-11/+12
2022-07-18tls: rx: allow only one reader at a timeJakub Kicinski1-7/+54
2022-07-11tls: rx: add counter for NoPad violationsJakub Kicinski1-0/+2
2022-07-11tls: fix spelling of MIBJakub Kicinski1-1/+1
2022-07-08tls: rx: make tls_wait_data() return an recvmsg retcodeJakub Kicinski1-27/+26
2022-07-08tls: create an internal headerJakub Kicinski1-4/+18
2022-07-08tls: rx: coalesce exit paths in tls_decrypt_sg()Jakub Kicinski1-9/+5
2022-07-08tls: rx: wrap decrypt params in a structJakub Kicinski1-30/+30
2022-07-08tls: rx: always allocate max possible aad size for decryptJakub Kicinski1-9/+10
2022-07-07Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-4/+4
2022-07-06Revert "tls: rx: move counting TlsDecryptErrors for sync"Gal Pressman1-4/+4
2022-07-06tls: rx: periodically flush socket backlogJakub Kicinski1-0/+23
2022-07-06tls: rx: add sockopt for enabling optimistic decrypt with TLS 1.3Jakub Kicinski1-7/+14
2022-07-06tls: rx: support optimistic decrypt to user buffer with TLS 1.3Jakub Kicinski1-9/+29
2022-07-06tls: rx: don't include tail size in data_lenJakub Kicinski1-4/+4
2022-05-19net: tls: fix messing up lists when bpf enabledJakub Kicinski1-1/+3
2022-04-26net: tls: fix async vs NIC crypto offloadJakub Kicinski1-0/+2
2022-04-26net: generalize skb freeing deferral to per-cpu listsEric Dumazet1-2/+0
2022-04-13tls: rx: only copy IV from the packet for TLS 1.2Jakub Kicinski1-10/+10
2022-04-13tls: rx: use MAX_IV_SIZE for allocationsJakub Kicinski1-1/+1
2022-04-13tls: rx: use async as an in-out argumentJakub Kicinski1-15/+16
2022-04-13tls: rx: return the already-copied data on crypto errorJakub Kicinski1-6/+10
2022-04-13tls: rx: treat process_rx_list() errors as transientJakub Kicinski1-12/+8
2022-04-13tls: rx: assume crypto always calls our callbackJakub Kicinski1-3/+0
2022-04-13tls: rx: don't handle TLS 1.3 in the async crypto callbackJakub Kicinski1-10/+5
2022-04-13tls: rx: move counting TlsDecryptErrors for syncJakub Kicinski1-2/+2
2022-04-13tls: rx: reuse leave_on_list label for psockJakub Kicinski1-8/+4
2022-04-13tls: rx: consistently use unlocked accessors for rx_listJakub Kicinski1-5/+5
2022-04-12net: remove noblock parameter from recvmsg() entitiesOliver Hartkopp1-3/+0
2022-04-10tls: rx: jump out for cases which need to leave skb on listJakub Kicinski1-21/+22