summaryrefslogtreecommitdiff
path: root/net/tls/tls_sw.c
AgeCommit message (Expand)AuthorFilesLines
2023-10-13tls: remove tls_context argument from tls_set_sw_offloadSabrina Dubroca1-10/+8
2023-10-13tls: also use init_prot_info in tls_set_device_offloadSabrina Dubroca1-4/+10
2023-10-13tls: move tls_prot_info initialization out of tls_set_sw_offloadSabrina Dubroca1-28/+34
2023-10-13tls: extract context alloc/initialization out of tls_set_sw_offloadSabrina Dubroca1-35/+51
2023-10-13tls: store iv directly within cipher_contextSabrina Dubroca1-11/+2
2023-10-13tls: rename MAX_IV_SIZE to TLS_MAX_IV_SIZESabrina Dubroca1-3/+3
2023-10-13tls: store rec_seq directly within cipher_contextSabrina Dubroca1-11/+2
2023-09-18tls: Use size_add() in call to struct_size()Gustavo A. R. Silva1-1/+1
2023-09-12net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict()Liu Jian1-2/+2
2023-08-28tls: get cipher_name from cipher_desc in tls_set_sw_offloadSabrina Dubroca1-25/+4
2023-08-28tls: use tls_cipher_desc to access per-cipher crypto_info in tls_set_sw_offloadSabrina Dubroca1-76/+13
2023-08-28tls: use tls_cipher_desc to get per-cipher sizes in tls_set_sw_offloadSabrina Dubroca1-63/+16
2023-08-09net/tls: avoid TCP window full during ->read_sock()Hannes Reinecke1-8/+5
2023-07-28net/tls: implement ->read_sock()Hannes Reinecke1-0/+99
2023-07-28net/tls: split tls_rx_reader_lockHannes Reinecke1-16/+22
2023-07-28net/tls: handle MSG_EOR for tls_sw TX flowHannes Reinecke1-1/+4
2023-06-25net: Kill MSG_SENDPAGE_NOTLASTDavid Howells1-1/+1
2023-06-25sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells1-35/+0
2023-06-09tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGESDavid Howells1-138/+35
2023-06-09tls/sw: Support MSG_SPLICE_PAGESDavid Howells1-0/+41
2023-06-09tls/sw: Use splice_eof() to flushDavid Howells1-0/+74
2023-06-09tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsgDavid Howells1-1/+1
2023-05-26tls: improve lockless access safety of tls_err_abort()Jakub Kicinski1-1/+3
2023-05-19tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski1-0/+4
2023-03-02net: tls: avoid hanging tasks on the tx_lockJakub Kicinski1-7/+19
2023-03-01tls: rx: fix return value for async cryptoJakub Kicinski1-1/+1
2023-02-22Merge tag 'net-next-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds1-0/+3
2023-02-22Merge tag 'v6.3-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/...Linus Torvalds1-13/+29
2023-02-13tls: Pass rec instead of aead_req into tls_encrypt_doneHerbert Xu1-4/+2
2023-02-13tls: Remove completion function scaffoldingHerbert Xu1-4/+4
2023-02-13tls: Only use data field in crypto completion functionHerbert Xu1-11/+29
2023-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2023-01-31net/tls: tls_is_tx_ready() checked list_entryPietro Borrello1-1/+1
2023-01-23net/sock: Introduce trace_sk_data_ready()Peilin Ye1-0/+3
2022-12-01bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytesPengcheng Yang1-2/+4
2022-09-28net: tls: Add ARIA-GCM algorithmTaehee Yoo1-0/+34
2022-08-17tls: rx: react to strparser initialization errorsJakub Kicinski1-1/+3
2022-08-09iov_iter: advancing variants of iov_iter_get_pages{,_alloc}()Al Viro1-3/+1
2022-07-29tls: rx: fix the false positive warningJakub Kicinski1-1/+1
2022-07-29tls: rx: don't consider sock_rcvtimeo() cumulativeJakub Kicinski1-18/+19
2022-07-27tls: rx: do not use the standard strparserJakub Kicinski1-45/+35
2022-07-27tls: rx: device: keep the zero copy status with offloadJakub Kicinski1-5/+25
2022-07-27tls: rx: don't free the output in case of zero-copyJakub Kicinski1-13/+13
2022-07-27tls: rx: factor SW handling out of tls_rx_one_record()Jakub Kicinski1-36/+57
2022-07-27tls: rx: wrap recv_pkt accesses in helpersJakub Kicinski1-5/+6
2022-07-22tls: 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