summaryrefslogtreecommitdiffstats
path: root/net/tls/tls_sw.c
Commit message (Expand)AuthorAgeFilesLines
* tls: fix use-after-free on failed backlog decryptionSabrina Dubroca2024-02-291-7/+17
* tls: separate no-async decryption request handling from asyncSabrina Dubroca2024-02-291-5/+8
* tls: fix peeking with sync+async decryptionSabrina Dubroca2024-02-291-3/+6
* tls: decrement decrypt_pending if no async completion will be calledSabrina Dubroca2024-02-291-0/+2
* tls: don't skip over different type records from the rx_listSabrina Dubroca2024-02-211-8/+14
* tls: stop recv() if initial process_rx_list gave us non-DATASabrina Dubroca2024-02-211-1/+1
* tls: break out of main loop when PEEK gets a non-data recordSabrina Dubroca2024-02-211-0/+2
* net: tls: fix returned read length with async decryptJakub Kicinski2024-02-101-1/+0
* net: tls: fix use-after-free with partial reads and async decryptSabrina Dubroca2024-02-101-2/+3
* net: tls: handle backlogging of crypto requestsJakub Kicinski2024-02-101-0/+22
* tls: fix race between tx work scheduling and socket closeJakub Kicinski2024-02-101-10/+6
* tls: fix race between async notify and socket closeJakub Kicinski2024-02-101-33/+10
* net: tls: factor out tls_*crypt_async_wait()Jakub Kicinski2024-02-101-51/+45
* net: tls, fix WARNIING in __sk_msg_freeJohn Fastabend2024-01-141-1/+5
* net: tls, update curr on splice as wellJohn Fastabend2023-12-071-0/+2
* tls: fix NULL deref on tls_sw_splice_eof() with empty recordJann Horn2023-11-231-0/+3
* tls: don't reset prot->aad_size and prot->tail_size for TLS_HWSabrina Dubroca2023-10-231-8/+2
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2023-10-191-6/+13
|\
| * tcp: allow again tcp_disconnect() when threads are waitingPaolo Abeni2023-10-131-6/+13
* | tls: remove tls_context argument from tls_set_sw_offloadSabrina Dubroca2023-10-131-10/+8
* | tls: also use init_prot_info in tls_set_device_offloadSabrina Dubroca2023-10-131-4/+10
* | tls: move tls_prot_info initialization out of tls_set_sw_offloadSabrina Dubroca2023-10-131-28/+34
* | tls: extract context alloc/initialization out of tls_set_sw_offloadSabrina Dubroca2023-10-131-35/+51
* | tls: store iv directly within cipher_contextSabrina Dubroca2023-10-131-11/+2
* | tls: rename MAX_IV_SIZE to TLS_MAX_IV_SIZESabrina Dubroca2023-10-131-3/+3
* | tls: store rec_seq directly within cipher_contextSabrina Dubroca2023-10-131-11/+2
* | tls: Use size_add() in call to struct_size()Gustavo A. R. Silva2023-09-181-1/+1
|/
* 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
* net/tls: avoid TCP window full during ->read_sock()Hannes Reinecke2023-08-081-8/+5
* net/tls: implement ->read_sock()Hannes Reinecke2023-07-271-0/+99
* net/tls: split tls_rx_reader_lockHannes Reinecke2023-07-271-16/+22
* net/tls: handle MSG_EOR for tls_sw TX flowHannes Reinecke2023-07-271-1/+4
* net: Kill MSG_SENDPAGE_NOTLASTDavid Howells2023-06-241-1/+1
* sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells2023-06-241-35/+0
* 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/sw: Use splice_eof() to flushDavid Howells2023-06-081-0/+74
* tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsgDavid Howells2023-06-081-1/+1
* tls: improve lockless access safety of tls_err_abort()Jakub Kicinski2023-05-261-1/+3
* tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski2023-05-191-0/+4
* net: tls: avoid hanging tasks on the tx_lockJakub Kicinski2023-03-011-7/+19
* tls: rx: fix return value for async cryptoJakub Kicinski2023-02-281-1/+1
* Merge tag 'net-next-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds2023-02-211-0/+3
|\
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2023-02-021-1/+1
| |\
| * | net/sock: Introduce trace_sk_data_ready()Peilin Ye2023-01-231-0/+3
* | | Merge tag 'v6.3-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/...Linus Torvalds2023-02-211-13/+29
|\ \ \ | |_|/ |/| |
| * | tls: Pass rec instead of aead_req into tls_encrypt_doneHerbert Xu2023-02-131-4/+2