aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/tls/tls_sw.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2024-02-29tls: fix use-after-free on failed backlog decryptionSabrina Dubroca1-7/+17
2024-02-29tls: separate no-async decryption request handling from asyncSabrina Dubroca1-5/+8
2024-02-29tls: fix peeking with sync+async decryptionSabrina Dubroca1-3/+6
2024-02-29tls: decrement decrypt_pending if no async completion will be calledSabrina Dubroca1-0/+2
2024-02-21tls: don't skip over different type records from the rx_listSabrina Dubroca1-8/+14
2024-02-21tls: stop recv() if initial process_rx_list gave us non-DATASabrina Dubroca1-1/+1
2024-02-21tls: break out of main loop when PEEK gets a non-data recordSabrina Dubroca1-0/+2
2024-02-10net: tls: fix returned read length with async decryptJakub Kicinski1-1/+0
2024-02-10net: tls: fix use-after-free with partial reads and async decryptSabrina Dubroca1-2/+3
2024-02-10net: tls: handle backlogging of crypto requestsJakub Kicinski1-0/+22
2024-02-10tls: fix race between tx work scheduling and socket closeJakub Kicinski1-10/+6
2024-02-10tls: fix race between async notify and socket closeJakub Kicinski1-33/+10
2024-02-10net: tls: factor out tls_*crypt_async_wait()Jakub Kicinski1-51/+45
2024-01-14net: tls, fix WARNIING in __sk_msg_freeJohn Fastabend1-1/+5
2023-12-07net: tls, update curr on splice as wellJohn Fastabend1-0/+2
2023-11-23tls: fix NULL deref on tls_sw_splice_eof() with empty recordJann Horn1-0/+3
2023-10-23tls: don't reset prot->aad_size and prot->tail_size for TLS_HWSabrina Dubroca1-8/+2
2023-10-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-6/+13
2023-10-13tcp: allow again tcp_disconnect() when threads are waitingPaolo Abeni1-6/+13
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-27tls: get cipher_name from cipher_desc in tls_set_sw_offloadSabrina Dubroca1-25/+4
2023-08-27tls: use tls_cipher_desc to access per-cipher crypto_info in tls_set_sw_offloadSabrina Dubroca1-76/+13
2023-08-27tls: use tls_cipher_desc to get per-cipher sizes in tls_set_sw_offloadSabrina Dubroca1-63/+16
2023-08-08net/tls: avoid TCP window full during ->read_sock()Hannes Reinecke1-8/+5
2023-07-27net/tls: implement ->read_sock()Hannes Reinecke1-0/+99
2023-07-27net/tls: split tls_rx_reader_lockHannes Reinecke1-16/+22
2023-07-27net/tls: handle MSG_EOR for tls_sw TX flowHannes Reinecke1-1/+4
2023-06-24net: Kill MSG_SENDPAGE_NOTLASTDavid Howells1-1/+1
2023-06-24sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells1-35/+0
2023-06-08tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGESDavid Howells1-138/+35
2023-06-08tls/sw: Support MSG_SPLICE_PAGESDavid Howells1-0/+41
2023-06-08tls/sw: Use splice_eof() to flushDavid Howells1-0/+74
2023-06-08tls: 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-01net: tls: avoid hanging tasks on the tx_lockJakub Kicinski1-7/+19
2023-02-28tls: rx: fix return value for async cryptoJakub Kicinski1-1/+1
2023-02-21Merge tag 'net-next-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds1-0/+3
2023-02-21Merge tag 'v6.3-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Linus 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