summaryrefslogtreecommitdiff
path: root/net/tls
AgeCommit message (Expand)AuthorFilesLines
2024-06-12tls: fix missing memory barrier in tls_initDae R. Jeong1-1/+9
2024-04-10tls: get psock ref after taking rxlock to avoid leakSabrina Dubroca1-1/+1
2024-04-10tls: adjust recv return with async crypto and failed copy to userspaceSabrina Dubroca1-0/+3
2024-04-10tls: recv: process_rx_list shouldn't use an offset with kvecSabrina Dubroca1-1/+1
2024-04-03tls: fix use-after-free on failed backlog decryptionSabrina Dubroca1-8/+16
2024-04-03net: tls: handle backlogging of crypto requestsJakub Kicinski1-0/+22
2024-04-03tls: fix race between tx work scheduling and socket closeJakub Kicinski1-10/+6
2024-03-06tls: fix peeking with sync+async decryptionSabrina Dubroca1-3/+6
2024-03-06tls: decrement decrypt_pending if no async completion will be calledSabrina Dubroca1-0/+2
2024-03-01tls: don't skip over different type records from the rx_listSabrina Dubroca1-8/+14
2024-03-01tls: stop recv() if initial process_rx_list gave us non-DATASabrina Dubroca1-1/+1
2024-03-01tls: break out of main loop when PEEK gets a non-data recordSabrina Dubroca1-0/+2
2024-03-01mptcp: fix lockless access in subflow ULP diagPaolo Abeni1-1/+1
2024-02-23tls: fix NULL deref on tls_sw_splice_eof() with empty recordJann Horn1-0/+3
2024-02-23net: tls: fix returned read length with async decryptJakub Kicinski1-1/+0
2024-02-23net: tls: fix use-after-free with partial reads and async decryptSabrina Dubroca1-2/+3
2024-02-23tls: fix race between async notify and socket closeJakub Kicinski1-33/+10
2024-02-23net: tls: factor out tls_*crypt_async_wait()Jakub Kicinski1-51/+45
2024-02-23tls: extract context alloc/initialization out of tls_set_sw_offloadSabrina Dubroca1-35/+51
2024-02-23tls/sw: Use splice_eof() to flushDavid Howells3-0/+77
2023-12-20net: tls, update curr on splice as wellJohn Fastabend1-0/+2
2023-11-20tls: Use size_add() in call to struct_size()Gustavo A. R. Silva1-1/+1
2023-11-20tls: Only use data field in crypto completion functionHerbert Xu2-11/+31
2023-10-25tcp: allow again tcp_disconnect() when threads are waitingPaolo Abeni2-9/+20
2023-10-25net/tls: split tls_rx_reader_lockHannes Reinecke1-16/+22
2023-09-19net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict()Liu Jian1-2/+2
2023-08-16net: tls: avoid discarding data on record closeJakub Kicinski1-31/+33
2023-06-09tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski1-0/+4
2023-06-09tls: improve lockless access safety of tls_err_abort()Jakub Kicinski2-2/+6
2023-06-05tls: rx: strp: preserve decryption status of skbs when neededJakub Kicinski3-31/+113
2023-06-05tls: rx: strp: factor out copying skb dataJakub Kicinski1-10/+23
2023-06-05tls: rx: strp: force mixed decrypted records into copy modeJakub Kicinski1-5/+11
2023-06-05tls: rx: strp: fix determining record length in copy modeJakub Kicinski1-6/+15
2023-06-05tls: rx: strp: set the skb->len of detached / CoW'ed skbsJakub Kicinski1-0/+2
2023-06-05tls: rx: device: fix checking decryption statusJakub Kicinski1-1/+1
2023-05-24net: deal with most data-races in sk_wait_event()Eric Dumazet1-1/+2
2023-03-17net: tls: fix device-offloaded sendpage straddling recordsJakub Kicinski1-0/+2
2023-03-17net: tls: fix possible race condition between do_tls_getsockopt_conf() and do...Hangyu Hua1-18/+5
2023-03-17tls: rx: fix return value for async cryptoJakub Kicinski1-1/+1
2023-03-11net: tls: avoid hanging tasks on the tx_lockJakub Kicinski1-7/+19
2023-02-09net/tls: tls_is_tx_ready() checked list_entryPietro Borrello1-1/+1
2023-02-09use less confusing names for iov_iter direction initializersAl Viro1-2/+2
2022-12-31bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytesPengcheng Yang1-2/+4
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