summaryrefslogtreecommitdiffstats
path: root/net/tls
Commit message (Expand)AuthorAgeFilesLines
* net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict()Liu Jian2023-09-121-2/+2
* tls: get cipher_name from cipher_desc in tls_set_sw_offloadSabrina Dubroca2023-08-271-25/+4
* tls: use tls_cipher_desc to access per-cipher crypto_info in tls_set_sw_offloadSabrina Dubroca2023-08-271-76/+13
* tls: use tls_cipher_desc to get per-cipher sizes in tls_set_sw_offloadSabrina Dubroca2023-08-271-63/+16
* tls: use tls_cipher_desc to simplify do_tls_getsockopt_confSabrina Dubroca2023-08-271-163/+11
* tls: get crypto_info size from tls_cipher_desc in do_tls_setsockopt_confSabrina Dubroca2023-08-271-31/+8
* tls: expand use of tls_cipher_desc in tls_sw_fallback_initSabrina Dubroca2023-08-271-14/+6
* tls: allocate the fallback aead after checking that the cipher is validSabrina Dubroca2023-08-271-10/+10
* tls: expand use of tls_cipher_desc in tls_set_device_offloadSabrina Dubroca2023-08-271-18/+4
* tls: validate cipher descriptions at compile timeSabrina Dubroca2023-08-271-0/+18
* tls: extend tls_cipher_desc to fully describe the ciphersSabrina Dubroca2023-08-272-9/+64
* tls: rename tls_cipher_size_desc to tls_cipher_descSabrina Dubroca2023-08-274-52/+52
* tls: reduce size of tls_cipher_size_descSabrina Dubroca2023-08-274-9/+20
* tls: add TLS_CIPHER_ARIA_GCM_* to tls_cipher_size_descSabrina Dubroca2023-08-271-0/+2
* tls: move tls_cipher_size_desc to net/tls/tls.hSabrina Dubroca2023-08-271-0/+10
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2023-08-102-34/+33
|\
| * net: tls: set MSG_SPLICE_PAGES consistentlyJakub Kicinski2023-08-101-3/+0
| * net: tls: avoid discarding data on record closeJakub Kicinski2023-08-061-31/+33
* | net/tls: avoid TCP window full during ->read_sock()Hannes Reinecke2023-08-081-8/+5
* | net/tls: Remove unused function declarationsYue Haibing2023-08-071-4/+0
* | Merge branch 'in-kernel-support-for-the-tls-alert-protocol'Jakub Kicinski2023-07-281-0/+1
|\ \
| * | net/tls: Move TLS protocol elements to a separate headerChuck Lever2023-07-281-0/+1
| |/
* | net/tls: implement ->read_sock()Hannes Reinecke2023-07-273-0/+103
* | net/tls: split tls_rx_reader_lockHannes Reinecke2023-07-271-16/+22
* | net/tls: Use tcp_read_sock() instead of ops->read_sock()Hannes Reinecke2023-07-271-2/+1
* | net/tls: handle MSG_EOR for tls_device TX flowHannes Reinecke2023-07-271-1/+5
* | net/tls: handle MSG_EOR for tls_sw TX flowHannes Reinecke2023-07-271-1/+4
|/
* net: Kill MSG_SENDPAGE_NOTLASTDavid Howells2023-06-243-4/+3
* sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells2023-06-244-65/+0
* tcp_bpf, smc, tls, espintcp, siw: Reduce MSG_SENDPAGE_NOTLAST usageDavid Howells2023-06-241-2/+2
* net/tls: fix comment typoYueh-Shun Li2023-06-221-1/+1
* net: tls: make the offload check helper take skb not socketJakub Kicinski2023-06-151-2/+2
* tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGESDavid Howells2023-06-081-69/+23
* tls/device: Support MSG_SPLICE_PAGESDavid Howells2023-06-081-0/+26
* tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGESDavid Howells2023-06-081-138/+35
* tls/sw: Support MSG_SPLICE_PAGESDavid Howells2023-06-081-0/+41
* tls/device: Use splice_eof() to flushDavid Howells2023-06-083-0/+26
* tls/sw: Use splice_eof() to flushDavid Howells2023-06-083-0/+77
* tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsgDavid Howells2023-06-082-2/+3
* tls: suppress wakeups unless we have a full recordJakub Kicinski2023-06-021-0/+35
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2023-06-012-2/+6
|\
| * tls: improve lockless access safety of tls_err_abort()Jakub Kicinski2023-05-262-2/+6
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2023-05-254-50/+166
|\|
| * tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski2023-05-191-0/+4
| * tls: rx: strp: preserve decryption status of skbs when neededJakub Kicinski2023-05-193-31/+113
| * tls: rx: strp: factor out copying skb dataJakub Kicinski2023-05-191-10/+23
| * tls: rx: strp: fix determining record length in copy modeJakub Kicinski2023-05-191-6/+15
| * tls: rx: strp: force mixed decrypted records into copy modeJakub Kicinski2023-05-191-5/+11
| * tls: rx: strp: set the skb->len of detached / CoW'ed skbsJakub Kicinski2023-05-191-0/+2
| * tls: rx: device: fix checking decryption statusJakub Kicinski2023-05-191-1/+1