summaryrefslogtreecommitdiff
path: root/net/tls
AgeCommit message (Expand)AuthorFilesLines
2023-05-26tls: improve lockless access safety of tls_err_abort()Jakub Kicinski2-2/+6
2023-05-19tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski1-0/+4
2023-05-19tls: rx: strp: preserve decryption status of skbs when neededJakub Kicinski3-31/+113
2023-05-19tls: rx: strp: factor out copying skb dataJakub Kicinski1-10/+23
2023-05-19tls: rx: strp: fix determining record length in copy modeJakub Kicinski1-6/+15
2023-05-19tls: rx: strp: force mixed decrypted records into copy modeJakub Kicinski1-5/+11
2023-05-19tls: rx: strp: set the skb->len of detached / CoW'ed skbsJakub Kicinski1-0/+2
2023-05-19tls: rx: device: fix checking decryption statusJakub Kicinski1-1/+1
2023-05-10net: deal with most data-races in sk_wait_event()Eric Dumazet1-1/+2
2023-03-07net: tls: fix device-offloaded sendpage straddling recordsJakub Kicinski1-0/+2
2023-03-02net: tls: avoid hanging tasks on the tx_lockJakub Kicinski1-7/+19
2023-03-02net: tls: fix possible race condition between do_tls_getsockopt_conf() and do...Hangyu Hua1-18/+5
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 Torvalds2-13/+31
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 Xu2-11/+31
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-14Merge tag 'net-next-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds1-2/+4
2022-12-01bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytesPengcheng Yang1-2/+4
2022-11-25use less confusing names for iov_iter direction initializersAl Viro1-2/+2
2022-11-12net/tls: Fix memory leak in tls_enc_skb() and tls_sw_fallback_init()Yu Liao1-2/+3
2022-10-14tls: strp: make sure the TCP skbs do not have overlapping dataJakub Kicinski1-4/+28
2022-09-28net: tls: Add ARIA-GCM algorithmTaehee Yoo2-0/+96
2022-09-23net/tls: Support 256 bit keys with TX device offloadGal Pressman2-0/+13
2022-09-23net/tls: Use cipher sizes structsGal Pressman2-51/+76
2022-09-23net/tls: Describe ciphers sizes by const structsTariq Toukan1-0/+17
2022-08-17tls: rx: react to strparser initialization errorsJakub Kicinski1-1/+3
2022-08-11Merge tag 'net-6.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds3-12/+39
2022-08-11net/tls: Use RCU API to access tls_ctx->netdevMaxim Mikityanskiy2-10/+31
2022-08-11tls: rx: device: don't try to copy too much on detachJakub Kicinski1-1/+1
2022-08-11tls: rx: device: bound the frag walkJakub Kicinski1-1/+7
2022-08-09iov_iter: advancing variants of iov_iter_get_pages{,_alloc}()Al Viro1-3/+1
2022-08-01net/tls: Remove redundant workqueue flush before destroyTariq Toukan1-1/+0
2022-07-29net/tls: Multi-threaded calls to TX tls_dev_delTariq Toukan1-32/+31
2022-07-29net/tls: Perform immediate device ctx cleanup when possibleTariq Toukan1-8/+18
2022-07-29tls: rx: Fix unsigned comparison with less than zeroYang Li1-1/+2
2022-07-29tls: rx: fix the false positive warningJakub Kicinski1-1/+1
2022-07-29tls: strp: rename and multithread the workqueueJakub Kicinski1-1/+1
2022-07-29tls: rx: don't consider sock_rcvtimeo() cumulativeJakub Kicinski1-18/+19
2022-07-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+6
2022-07-27tls: rx: do not use the standard strparserJakub Kicinski4-67/+541
2022-07-27tls: rx: device: add input CoW helperJakub Kicinski3-10/+21
2022-07-27tls: rx: device: keep the zero copy status with offloadJakub Kicinski3-5/+35
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 Kicinski2-5/+11