tls: rx: wrap decrypt params in a struct
[linux-block.git] / net / tls / tls_sw.c
CommitLineData
3c4d7559
DW
1/*
2 * Copyright (c) 2016-2017, Mellanox Technologies. All rights reserved.
3 * Copyright (c) 2016-2017, Dave Watson <davejwatson@fb.com>. All rights reserved.
4 * Copyright (c) 2016-2017, Lance Chao <lancerchao@fb.com>. All rights reserved.
5 * Copyright (c) 2016, Fridolin Pokorny <fridolin.pokorny@gmail.com>. All rights reserved.
6 * Copyright (c) 2016, Nikos Mavrogiannopoulos <nmav@gnutls.org>. All rights reserved.
d3b18ad3 7 * Copyright (c) 2018, Covalent IO, Inc. http://covalent.io
3c4d7559
DW
8 *
9 * This software is available to you under a choice of one of two
10 * licenses. You may choose to be licensed under the terms of the GNU
11 * General Public License (GPL) Version 2, available from the file
12 * COPYING in the main directory of this source tree, or the
13 * OpenIB.org BSD license below:
14 *
15 * Redistribution and use in source and binary forms, with or
16 * without modification, are permitted provided that the following
17 * conditions are met:
18 *
19 * - Redistributions of source code must retain the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer.
22 *
23 * - Redistributions in binary form must reproduce the above
24 * copyright notice, this list of conditions and the following
25 * disclaimer in the documentation and/or other materials
26 * provided with the distribution.
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
32 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
33 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 * SOFTWARE.
36 */
37
da353fac 38#include <linux/bug.h>
c46234eb 39#include <linux/sched/signal.h>
3c4d7559 40#include <linux/module.h>
974271e5 41#include <linux/splice.h>
3c4d7559
DW
42#include <crypto/aead.h>
43
c46234eb 44#include <net/strparser.h>
3c4d7559
DW
45#include <net/tls.h>
46
4175eac3
JK
47struct tls_decrypt_arg {
48 bool zc;
49 bool async;
ce61327c 50 u8 tail;
4175eac3
JK
51};
52
b89fec54
JK
53struct tls_decrypt_ctx {
54 u8 iv[MAX_IV_SIZE];
55 u8 aad[TLS_MAX_AAD_SIZE];
56 u8 tail;
57 struct scatterlist sg[];
58};
59
da353fac
DJ
60noinline void tls_err_abort(struct sock *sk, int err)
61{
62 WARN_ON_ONCE(err >= 0);
63 /* sk->sk_err should contain a positive error code. */
64 sk->sk_err = -err;
65 sk_error_report(sk);
66}
67
0927f71d
DRK
68static int __skb_nsg(struct sk_buff *skb, int offset, int len,
69 unsigned int recursion_level)
70{
71 int start = skb_headlen(skb);
72 int i, chunk = start - offset;
73 struct sk_buff *frag_iter;
74 int elt = 0;
75
76 if (unlikely(recursion_level >= 24))
77 return -EMSGSIZE;
78
79 if (chunk > 0) {
80 if (chunk > len)
81 chunk = len;
82 elt++;
83 len -= chunk;
84 if (len == 0)
85 return elt;
86 offset += chunk;
87 }
88
89 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
90 int end;
91
92 WARN_ON(start > offset + len);
93
94 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
95 chunk = end - offset;
96 if (chunk > 0) {
97 if (chunk > len)
98 chunk = len;
99 elt++;
100 len -= chunk;
101 if (len == 0)
102 return elt;
103 offset += chunk;
104 }
105 start = end;
106 }
107
108 if (unlikely(skb_has_frag_list(skb))) {
109 skb_walk_frags(skb, frag_iter) {
110 int end, ret;
111
112 WARN_ON(start > offset + len);
113
114 end = start + frag_iter->len;
115 chunk = end - offset;
116 if (chunk > 0) {
117 if (chunk > len)
118 chunk = len;
119 ret = __skb_nsg(frag_iter, offset - start, chunk,
120 recursion_level + 1);
121 if (unlikely(ret < 0))
122 return ret;
123 elt += ret;
124 len -= chunk;
125 if (len == 0)
126 return elt;
127 offset += chunk;
128 }
129 start = end;
130 }
131 }
132 BUG_ON(len);
133 return elt;
134}
135
136/* Return the number of scatterlist elements required to completely map the
137 * skb, or -EMSGSIZE if the recursion depth is exceeded.
138 */
139static int skb_nsg(struct sk_buff *skb, int offset, int len)
140{
141 return __skb_nsg(skb, offset, len, 0);
142}
143
ce61327c
JK
144static int tls_padding_length(struct tls_prot_info *prot, struct sk_buff *skb,
145 struct tls_decrypt_arg *darg)
130b392c
DW
146{
147 struct strp_msg *rxm = strp_msg(skb);
c3f6bb74 148 struct tls_msg *tlm = tls_msg(skb);
130b392c
DW
149 int sub = 0;
150
151 /* Determine zero-padding length */
b53f4976 152 if (prot->version == TLS_1_3_VERSION) {
5deee41b 153 int offset = rxm->full_len - TLS_TAG_SIZE - 1;
ce61327c 154 char content_type = darg->zc ? darg->tail : 0;
130b392c 155 int err;
130b392c
DW
156
157 while (content_type == 0) {
5deee41b 158 if (offset < prot->prepend_size)
130b392c 159 return -EBADMSG;
5deee41b 160 err = skb_copy_bits(skb, rxm->offset + offset,
130b392c 161 &content_type, 1);
b53f4976
JK
162 if (err)
163 return err;
130b392c
DW
164 if (content_type)
165 break;
166 sub++;
5deee41b 167 offset--;
130b392c 168 }
c3f6bb74 169 tlm->control = content_type;
130b392c
DW
170 }
171 return sub;
172}
173
94524d8f
VG
174static void tls_decrypt_done(struct crypto_async_request *req, int err)
175{
176 struct aead_request *aead_req = (struct aead_request *)req;
94524d8f 177 struct scatterlist *sgout = aead_req->dst;
692d7b5d 178 struct scatterlist *sgin = aead_req->src;
7a3dd8c8
JF
179 struct tls_sw_context_rx *ctx;
180 struct tls_context *tls_ctx;
4509de14 181 struct tls_prot_info *prot;
94524d8f 182 struct scatterlist *sg;
7a3dd8c8 183 struct sk_buff *skb;
94524d8f 184 unsigned int pages;
7a3dd8c8
JF
185
186 skb = (struct sk_buff *)req->data;
187 tls_ctx = tls_get_ctx(skb->sk);
188 ctx = tls_sw_ctx_rx(tls_ctx);
4509de14 189 prot = &tls_ctx->prot_info;
94524d8f
VG
190
191 /* Propagate if there was an err */
192 if (err) {
5c5ec668
JK
193 if (err == -EBADMSG)
194 TLS_INC_STATS(sock_net(skb->sk),
195 LINUX_MIB_TLSDECRYPTERROR);
94524d8f 196 ctx->async_wait.err = err;
7a3dd8c8 197 tls_err_abort(skb->sk, err);
692d7b5d
VG
198 } else {
199 struct strp_msg *rxm = strp_msg(skb);
72f3ad73
JK
200
201 /* No TLS 1.3 support with async crypto */
202 WARN_ON(prot->tail_size);
203
204 rxm->offset += prot->prepend_size;
205 rxm->full_len -= prot->overhead_size;
94524d8f
VG
206 }
207
7a3dd8c8
JF
208 /* After using skb->sk to propagate sk through crypto async callback
209 * we need to NULL it again.
210 */
211 skb->sk = NULL;
212
94524d8f 213
692d7b5d
VG
214 /* Free the destination pages if skb was not decrypted inplace */
215 if (sgout != sgin) {
216 /* Skip the first S/G entry as it points to AAD */
217 for_each_sg(sg_next(sgout), sg, UINT_MAX, pages) {
218 if (!sg)
219 break;
220 put_page(sg_page(sg));
221 }
94524d8f
VG
222 }
223
224 kfree(aead_req);
225
0cada332 226 spin_lock_bh(&ctx->decrypt_compl_lock);
37943f04 227 if (!atomic_dec_return(&ctx->decrypt_pending))
94524d8f 228 complete(&ctx->async_wait.completion);
0cada332 229 spin_unlock_bh(&ctx->decrypt_compl_lock);
94524d8f
VG
230}
231
c46234eb 232static int tls_do_decryption(struct sock *sk,
94524d8f 233 struct sk_buff *skb,
c46234eb
DW
234 struct scatterlist *sgin,
235 struct scatterlist *sgout,
236 char *iv_recv,
237 size_t data_len,
94524d8f 238 struct aead_request *aead_req,
3547a1f9 239 struct tls_decrypt_arg *darg)
c46234eb
DW
240{
241 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 242 struct tls_prot_info *prot = &tls_ctx->prot_info;
f66de3ee 243 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
c46234eb 244 int ret;
c46234eb 245
0b243d00 246 aead_request_set_tfm(aead_req, ctx->aead_recv);
4509de14 247 aead_request_set_ad(aead_req, prot->aad_size);
c46234eb 248 aead_request_set_crypt(aead_req, sgin, sgout,
4509de14 249 data_len + prot->tag_size,
c46234eb 250 (u8 *)iv_recv);
c46234eb 251
3547a1f9 252 if (darg->async) {
7a3dd8c8
JF
253 /* Using skb->sk to push sk through to crypto async callback
254 * handler. This allows propagating errors up to the socket
255 * if needed. It _must_ be cleared in the async handler
a88c26f6 256 * before consume_skb is called. We _know_ skb->sk is NULL
7a3dd8c8
JF
257 * because it is a clone from strparser.
258 */
259 skb->sk = sk;
94524d8f
VG
260 aead_request_set_callback(aead_req,
261 CRYPTO_TFM_REQ_MAY_BACKLOG,
262 tls_decrypt_done, skb);
263 atomic_inc(&ctx->decrypt_pending);
264 } else {
265 aead_request_set_callback(aead_req,
266 CRYPTO_TFM_REQ_MAY_BACKLOG,
267 crypto_req_done, &ctx->async_wait);
268 }
269
270 ret = crypto_aead_decrypt(aead_req);
271 if (ret == -EINPROGRESS) {
3547a1f9
JK
272 if (darg->async)
273 return 0;
94524d8f
VG
274
275 ret = crypto_wait_req(ret, &ctx->async_wait);
276 }
3547a1f9
JK
277 darg->async = false;
278
c46234eb
DW
279 return ret;
280}
281
d829e9c4 282static void tls_trim_both_msgs(struct sock *sk, int target_size)
3c4d7559
DW
283{
284 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 285 struct tls_prot_info *prot = &tls_ctx->prot_info;
f66de3ee 286 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
a42055e8 287 struct tls_rec *rec = ctx->open_rec;
3c4d7559 288
d829e9c4 289 sk_msg_trim(sk, &rec->msg_plaintext, target_size);
3c4d7559 290 if (target_size > 0)
4509de14 291 target_size += prot->overhead_size;
d829e9c4 292 sk_msg_trim(sk, &rec->msg_encrypted, target_size);
3c4d7559
DW
293}
294
d829e9c4 295static int tls_alloc_encrypted_msg(struct sock *sk, int len)
3c4d7559
DW
296{
297 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 298 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
a42055e8 299 struct tls_rec *rec = ctx->open_rec;
d829e9c4 300 struct sk_msg *msg_en = &rec->msg_encrypted;
3c4d7559 301
d829e9c4 302 return sk_msg_alloc(sk, msg_en, len, 0);
3c4d7559
DW
303}
304
d829e9c4 305static int tls_clone_plaintext_msg(struct sock *sk, int required)
3c4d7559
DW
306{
307 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 308 struct tls_prot_info *prot = &tls_ctx->prot_info;
f66de3ee 309 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
a42055e8 310 struct tls_rec *rec = ctx->open_rec;
d829e9c4
DB
311 struct sk_msg *msg_pl = &rec->msg_plaintext;
312 struct sk_msg *msg_en = &rec->msg_encrypted;
4e6d4720 313 int skip, len;
3c4d7559 314
d829e9c4
DB
315 /* We add page references worth len bytes from encrypted sg
316 * at the end of plaintext sg. It is guaranteed that msg_en
4e6d4720
VG
317 * has enough required room (ensured by caller).
318 */
d829e9c4 319 len = required - msg_pl->sg.size;
52ea992c 320
d829e9c4
DB
321 /* Skip initial bytes in msg_en's data to be able to use
322 * same offset of both plain and encrypted data.
4e6d4720 323 */
4509de14 324 skip = prot->prepend_size + msg_pl->sg.size;
4e6d4720 325
d829e9c4 326 return sk_msg_clone(sk, msg_pl, msg_en, skip, len);
3c4d7559
DW
327}
328
d3b18ad3 329static struct tls_rec *tls_get_rec(struct sock *sk)
3c4d7559
DW
330{
331 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 332 struct tls_prot_info *prot = &tls_ctx->prot_info;
f66de3ee 333 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
d3b18ad3
JF
334 struct sk_msg *msg_pl, *msg_en;
335 struct tls_rec *rec;
336 int mem_size;
3c4d7559 337
d3b18ad3
JF
338 mem_size = sizeof(struct tls_rec) + crypto_aead_reqsize(ctx->aead_send);
339
340 rec = kzalloc(mem_size, sk->sk_allocation);
a42055e8 341 if (!rec)
d3b18ad3
JF
342 return NULL;
343
344 msg_pl = &rec->msg_plaintext;
345 msg_en = &rec->msg_encrypted;
346
347 sk_msg_init(msg_pl);
348 sk_msg_init(msg_en);
349
350 sg_init_table(rec->sg_aead_in, 2);
4509de14 351 sg_set_buf(&rec->sg_aead_in[0], rec->aad_space, prot->aad_size);
d3b18ad3
JF
352 sg_unmark_end(&rec->sg_aead_in[1]);
353
354 sg_init_table(rec->sg_aead_out, 2);
4509de14 355 sg_set_buf(&rec->sg_aead_out[0], rec->aad_space, prot->aad_size);
d3b18ad3
JF
356 sg_unmark_end(&rec->sg_aead_out[1]);
357
358 return rec;
359}
a42055e8 360
d3b18ad3
JF
361static void tls_free_rec(struct sock *sk, struct tls_rec *rec)
362{
d829e9c4
DB
363 sk_msg_free(sk, &rec->msg_encrypted);
364 sk_msg_free(sk, &rec->msg_plaintext);
c774973e 365 kfree(rec);
a42055e8
VG
366}
367
d3b18ad3
JF
368static void tls_free_open_rec(struct sock *sk)
369{
370 struct tls_context *tls_ctx = tls_get_ctx(sk);
371 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
372 struct tls_rec *rec = ctx->open_rec;
373
374 if (rec) {
375 tls_free_rec(sk, rec);
376 ctx->open_rec = NULL;
377 }
378}
379
a42055e8
VG
380int tls_tx_records(struct sock *sk, int flags)
381{
382 struct tls_context *tls_ctx = tls_get_ctx(sk);
383 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
384 struct tls_rec *rec, *tmp;
d829e9c4 385 struct sk_msg *msg_en;
a42055e8
VG
386 int tx_flags, rc = 0;
387
388 if (tls_is_partially_sent_record(tls_ctx)) {
9932a29a 389 rec = list_first_entry(&ctx->tx_list,
a42055e8
VG
390 struct tls_rec, list);
391
392 if (flags == -1)
393 tx_flags = rec->tx_flags;
394 else
395 tx_flags = flags;
396
397 rc = tls_push_partial_record(sk, tls_ctx, tx_flags);
398 if (rc)
399 goto tx_err;
400
401 /* Full record has been transmitted.
9932a29a 402 * Remove the head of tx_list
a42055e8 403 */
a42055e8 404 list_del(&rec->list);
d829e9c4 405 sk_msg_free(sk, &rec->msg_plaintext);
a42055e8
VG
406 kfree(rec);
407 }
408
9932a29a
VG
409 /* Tx all ready records */
410 list_for_each_entry_safe(rec, tmp, &ctx->tx_list, list) {
411 if (READ_ONCE(rec->tx_ready)) {
a42055e8
VG
412 if (flags == -1)
413 tx_flags = rec->tx_flags;
414 else
415 tx_flags = flags;
416
d829e9c4 417 msg_en = &rec->msg_encrypted;
a42055e8 418 rc = tls_push_sg(sk, tls_ctx,
d829e9c4 419 &msg_en->sg.data[msg_en->sg.curr],
a42055e8
VG
420 0, tx_flags);
421 if (rc)
422 goto tx_err;
423
a42055e8 424 list_del(&rec->list);
d829e9c4 425 sk_msg_free(sk, &rec->msg_plaintext);
a42055e8
VG
426 kfree(rec);
427 } else {
428 break;
429 }
430 }
431
432tx_err:
433 if (rc < 0 && rc != -EAGAIN)
da353fac 434 tls_err_abort(sk, -EBADMSG);
a42055e8
VG
435
436 return rc;
437}
438
439static void tls_encrypt_done(struct crypto_async_request *req, int err)
440{
441 struct aead_request *aead_req = (struct aead_request *)req;
442 struct sock *sk = req->data;
443 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 444 struct tls_prot_info *prot = &tls_ctx->prot_info;
a42055e8 445 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
d829e9c4
DB
446 struct scatterlist *sge;
447 struct sk_msg *msg_en;
a42055e8
VG
448 struct tls_rec *rec;
449 bool ready = false;
450 int pending;
451
452 rec = container_of(aead_req, struct tls_rec, aead_req);
d829e9c4 453 msg_en = &rec->msg_encrypted;
a42055e8 454
d829e9c4 455 sge = sk_msg_elem(msg_en, msg_en->sg.curr);
4509de14
VG
456 sge->offset -= prot->prepend_size;
457 sge->length += prot->prepend_size;
a42055e8 458
80ece6a0 459 /* Check if error is previously set on socket */
a42055e8 460 if (err || sk->sk_err) {
a42055e8
VG
461 rec = NULL;
462
463 /* If err is already set on socket, return the same code */
464 if (sk->sk_err) {
1d9d6fd2 465 ctx->async_wait.err = -sk->sk_err;
a42055e8
VG
466 } else {
467 ctx->async_wait.err = err;
468 tls_err_abort(sk, err);
469 }
470 }
471
9932a29a
VG
472 if (rec) {
473 struct tls_rec *first_rec;
474
475 /* Mark the record as ready for transmission */
476 smp_store_mb(rec->tx_ready, true);
477
478 /* If received record is at head of tx_list, schedule tx */
479 first_rec = list_first_entry(&ctx->tx_list,
480 struct tls_rec, list);
481 if (rec == first_rec)
482 ready = true;
483 }
a42055e8 484
0cada332 485 spin_lock_bh(&ctx->encrypt_compl_lock);
a42055e8
VG
486 pending = atomic_dec_return(&ctx->encrypt_pending);
487
0cada332 488 if (!pending && ctx->async_notify)
a42055e8 489 complete(&ctx->async_wait.completion);
0cada332 490 spin_unlock_bh(&ctx->encrypt_compl_lock);
a42055e8
VG
491
492 if (!ready)
493 return;
494
495 /* Schedule the transmission */
496 if (!test_and_set_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask))
d829e9c4 497 schedule_delayed_work(&ctx->tx_work.work, 1);
3c4d7559
DW
498}
499
a42055e8
VG
500static int tls_do_encryption(struct sock *sk,
501 struct tls_context *tls_ctx,
a447da7d
DB
502 struct tls_sw_context_tx *ctx,
503 struct aead_request *aead_req,
d829e9c4 504 size_t data_len, u32 start)
3c4d7559 505{
4509de14 506 struct tls_prot_info *prot = &tls_ctx->prot_info;
a42055e8 507 struct tls_rec *rec = ctx->open_rec;
d829e9c4
DB
508 struct sk_msg *msg_en = &rec->msg_encrypted;
509 struct scatterlist *sge = sk_msg_elem(msg_en, start);
f295b3ae
VG
510 int rc, iv_offset = 0;
511
512 /* For CCM based ciphers, first byte of IV is a constant */
128cfb88
TZ
513 switch (prot->cipher_type) {
514 case TLS_CIPHER_AES_CCM_128:
f295b3ae
VG
515 rec->iv_data[0] = TLS_AES_CCM_IV_B0_BYTE;
516 iv_offset = 1;
128cfb88
TZ
517 break;
518 case TLS_CIPHER_SM4_CCM:
519 rec->iv_data[0] = TLS_SM4_CCM_IV_B0_BYTE;
520 iv_offset = 1;
521 break;
f295b3ae
VG
522 }
523
524 memcpy(&rec->iv_data[iv_offset], tls_ctx->tx.iv,
525 prot->iv_size + prot->salt_size);
3c4d7559 526
59610606 527 xor_iv_with_seq(prot, rec->iv_data + iv_offset, tls_ctx->tx.rec_seq);
32eb67b9 528
4509de14
VG
529 sge->offset += prot->prepend_size;
530 sge->length -= prot->prepend_size;
3c4d7559 531
d829e9c4 532 msg_en->sg.curr = start;
4e6d4720 533
3c4d7559 534 aead_request_set_tfm(aead_req, ctx->aead_send);
4509de14 535 aead_request_set_ad(aead_req, prot->aad_size);
d829e9c4
DB
536 aead_request_set_crypt(aead_req, rec->sg_aead_in,
537 rec->sg_aead_out,
32eb67b9 538 data_len, rec->iv_data);
a54667f6
VG
539
540 aead_request_set_callback(aead_req, CRYPTO_TFM_REQ_MAY_BACKLOG,
a42055e8
VG
541 tls_encrypt_done, sk);
542
9932a29a
VG
543 /* Add the record in tx_list */
544 list_add_tail((struct list_head *)&rec->list, &ctx->tx_list);
a42055e8 545 atomic_inc(&ctx->encrypt_pending);
a54667f6 546
a42055e8
VG
547 rc = crypto_aead_encrypt(aead_req);
548 if (!rc || rc != -EINPROGRESS) {
549 atomic_dec(&ctx->encrypt_pending);
4509de14
VG
550 sge->offset -= prot->prepend_size;
551 sge->length += prot->prepend_size;
a42055e8 552 }
3c4d7559 553
9932a29a
VG
554 if (!rc) {
555 WRITE_ONCE(rec->tx_ready, true);
556 } else if (rc != -EINPROGRESS) {
557 list_del(&rec->list);
a42055e8 558 return rc;
9932a29a 559 }
3c4d7559 560
a42055e8
VG
561 /* Unhook the record from context if encryption is not failure */
562 ctx->open_rec = NULL;
fb0f886f 563 tls_advance_record_sn(sk, prot, &tls_ctx->tx);
3c4d7559
DW
564 return rc;
565}
566
d3b18ad3
JF
567static int tls_split_open_record(struct sock *sk, struct tls_rec *from,
568 struct tls_rec **to, struct sk_msg *msg_opl,
569 struct sk_msg *msg_oen, u32 split_point,
570 u32 tx_overhead_size, u32 *orig_end)
571{
572 u32 i, j, bytes = 0, apply = msg_opl->apply_bytes;
573 struct scatterlist *sge, *osge, *nsge;
574 u32 orig_size = msg_opl->sg.size;
575 struct scatterlist tmp = { };
576 struct sk_msg *msg_npl;
577 struct tls_rec *new;
578 int ret;
579
580 new = tls_get_rec(sk);
581 if (!new)
582 return -ENOMEM;
583 ret = sk_msg_alloc(sk, &new->msg_encrypted, msg_opl->sg.size +
584 tx_overhead_size, 0);
585 if (ret < 0) {
586 tls_free_rec(sk, new);
587 return ret;
588 }
589
590 *orig_end = msg_opl->sg.end;
591 i = msg_opl->sg.start;
592 sge = sk_msg_elem(msg_opl, i);
593 while (apply && sge->length) {
594 if (sge->length > apply) {
595 u32 len = sge->length - apply;
596
597 get_page(sg_page(sge));
598 sg_set_page(&tmp, sg_page(sge), len,
599 sge->offset + apply);
600 sge->length = apply;
601 bytes += apply;
602 apply = 0;
603 } else {
604 apply -= sge->length;
605 bytes += sge->length;
606 }
607
608 sk_msg_iter_var_next(i);
609 if (i == msg_opl->sg.end)
610 break;
611 sge = sk_msg_elem(msg_opl, i);
612 }
613
614 msg_opl->sg.end = i;
615 msg_opl->sg.curr = i;
616 msg_opl->sg.copybreak = 0;
617 msg_opl->apply_bytes = 0;
618 msg_opl->sg.size = bytes;
619
620 msg_npl = &new->msg_plaintext;
621 msg_npl->apply_bytes = apply;
622 msg_npl->sg.size = orig_size - bytes;
623
624 j = msg_npl->sg.start;
625 nsge = sk_msg_elem(msg_npl, j);
626 if (tmp.length) {
627 memcpy(nsge, &tmp, sizeof(*nsge));
628 sk_msg_iter_var_next(j);
629 nsge = sk_msg_elem(msg_npl, j);
630 }
631
632 osge = sk_msg_elem(msg_opl, i);
633 while (osge->length) {
634 memcpy(nsge, osge, sizeof(*nsge));
635 sg_unmark_end(nsge);
636 sk_msg_iter_var_next(i);
637 sk_msg_iter_var_next(j);
638 if (i == *orig_end)
639 break;
640 osge = sk_msg_elem(msg_opl, i);
641 nsge = sk_msg_elem(msg_npl, j);
642 }
643
644 msg_npl->sg.end = j;
645 msg_npl->sg.curr = j;
646 msg_npl->sg.copybreak = 0;
647
648 *to = new;
649 return 0;
650}
651
652static void tls_merge_open_record(struct sock *sk, struct tls_rec *to,
653 struct tls_rec *from, u32 orig_end)
654{
655 struct sk_msg *msg_npl = &from->msg_plaintext;
656 struct sk_msg *msg_opl = &to->msg_plaintext;
657 struct scatterlist *osge, *nsge;
658 u32 i, j;
659
660 i = msg_opl->sg.end;
661 sk_msg_iter_var_prev(i);
662 j = msg_npl->sg.start;
663
664 osge = sk_msg_elem(msg_opl, i);
665 nsge = sk_msg_elem(msg_npl, j);
666
667 if (sg_page(osge) == sg_page(nsge) &&
668 osge->offset + osge->length == nsge->offset) {
669 osge->length += nsge->length;
670 put_page(sg_page(nsge));
671 }
672
673 msg_opl->sg.end = orig_end;
674 msg_opl->sg.curr = orig_end;
675 msg_opl->sg.copybreak = 0;
676 msg_opl->apply_bytes = msg_opl->sg.size + msg_npl->sg.size;
677 msg_opl->sg.size += msg_npl->sg.size;
678
679 sk_msg_free(sk, &to->msg_encrypted);
680 sk_msg_xfer_full(&to->msg_encrypted, &from->msg_encrypted);
681
682 kfree(from);
683}
684
3c4d7559
DW
685static int tls_push_record(struct sock *sk, int flags,
686 unsigned char record_type)
687{
688 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 689 struct tls_prot_info *prot = &tls_ctx->prot_info;
f66de3ee 690 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
d3b18ad3 691 struct tls_rec *rec = ctx->open_rec, *tmp = NULL;
3f649ab7 692 u32 i, split_point, orig_end;
d829e9c4 693 struct sk_msg *msg_pl, *msg_en;
a447da7d 694 struct aead_request *req;
d3b18ad3 695 bool split;
3c4d7559
DW
696 int rc;
697
a42055e8
VG
698 if (!rec)
699 return 0;
a447da7d 700
d829e9c4
DB
701 msg_pl = &rec->msg_plaintext;
702 msg_en = &rec->msg_encrypted;
703
d3b18ad3
JF
704 split_point = msg_pl->apply_bytes;
705 split = split_point && split_point < msg_pl->sg.size;
d468e477
JF
706 if (unlikely((!split &&
707 msg_pl->sg.size +
708 prot->overhead_size > msg_en->sg.size) ||
709 (split &&
710 split_point +
711 prot->overhead_size > msg_en->sg.size))) {
712 split = true;
713 split_point = msg_en->sg.size;
714 }
d3b18ad3
JF
715 if (split) {
716 rc = tls_split_open_record(sk, rec, &tmp, msg_pl, msg_en,
4509de14 717 split_point, prot->overhead_size,
d3b18ad3
JF
718 &orig_end);
719 if (rc < 0)
720 return rc;
d468e477
JF
721 /* This can happen if above tls_split_open_record allocates
722 * a single large encryption buffer instead of two smaller
723 * ones. In this case adjust pointers and continue without
724 * split.
725 */
726 if (!msg_pl->sg.size) {
727 tls_merge_open_record(sk, rec, tmp, orig_end);
728 msg_pl = &rec->msg_plaintext;
729 msg_en = &rec->msg_encrypted;
730 split = false;
731 }
d3b18ad3 732 sk_msg_trim(sk, msg_en, msg_pl->sg.size +
4509de14 733 prot->overhead_size);
d3b18ad3
JF
734 }
735
a42055e8
VG
736 rec->tx_flags = flags;
737 req = &rec->aead_req;
3c4d7559 738
d829e9c4
DB
739 i = msg_pl->sg.end;
740 sk_msg_iter_var_prev(i);
130b392c
DW
741
742 rec->content_type = record_type;
4509de14 743 if (prot->version == TLS_1_3_VERSION) {
130b392c
DW
744 /* Add content type to end of message. No padding added */
745 sg_set_buf(&rec->sg_content_type, &rec->content_type, 1);
746 sg_mark_end(&rec->sg_content_type);
747 sg_chain(msg_pl->sg.data, msg_pl->sg.end + 1,
748 &rec->sg_content_type);
749 } else {
750 sg_mark_end(sk_msg_elem(msg_pl, i));
751 }
a42055e8 752
9aaaa568
JF
753 if (msg_pl->sg.end < msg_pl->sg.start) {
754 sg_chain(&msg_pl->sg.data[msg_pl->sg.start],
755 MAX_SKB_FRAGS - msg_pl->sg.start + 1,
756 msg_pl->sg.data);
757 }
758
d829e9c4 759 i = msg_pl->sg.start;
9e5ffed3 760 sg_chain(rec->sg_aead_in, 2, &msg_pl->sg.data[i]);
d829e9c4
DB
761
762 i = msg_en->sg.end;
763 sk_msg_iter_var_prev(i);
764 sg_mark_end(sk_msg_elem(msg_en, i));
765
766 i = msg_en->sg.start;
767 sg_chain(rec->sg_aead_out, 2, &msg_en->sg.data[i]);
768
4509de14 769 tls_make_aad(rec->aad_space, msg_pl->sg.size + prot->tail_size,
6942a284 770 tls_ctx->tx.rec_seq, record_type, prot);
3c4d7559
DW
771
772 tls_fill_prepend(tls_ctx,
d829e9c4 773 page_address(sg_page(&msg_en->sg.data[i])) +
130b392c 774 msg_en->sg.data[i].offset,
4509de14 775 msg_pl->sg.size + prot->tail_size,
6942a284 776 record_type);
3c4d7559 777
d829e9c4 778 tls_ctx->pending_open_record_frags = false;
3c4d7559 779
130b392c 780 rc = tls_do_encryption(sk, tls_ctx, ctx, req,
4509de14 781 msg_pl->sg.size + prot->tail_size, i);
a42055e8 782 if (rc < 0) {
d3b18ad3 783 if (rc != -EINPROGRESS) {
da353fac 784 tls_err_abort(sk, -EBADMSG);
d3b18ad3
JF
785 if (split) {
786 tls_ctx->pending_open_record_frags = true;
787 tls_merge_open_record(sk, rec, tmp, orig_end);
788 }
789 }
5b053e12 790 ctx->async_capable = 1;
a42055e8 791 return rc;
d3b18ad3
JF
792 } else if (split) {
793 msg_pl = &tmp->msg_plaintext;
794 msg_en = &tmp->msg_encrypted;
4509de14 795 sk_msg_trim(sk, msg_en, msg_pl->sg.size + prot->overhead_size);
d3b18ad3
JF
796 tls_ctx->pending_open_record_frags = true;
797 ctx->open_rec = tmp;
a42055e8 798 }
3c4d7559 799
9932a29a 800 return tls_tx_records(sk, flags);
3c4d7559
DW
801}
802
d3b18ad3
JF
803static int bpf_exec_tx_verdict(struct sk_msg *msg, struct sock *sk,
804 bool full_record, u8 record_type,
a7bff11f 805 ssize_t *copied, int flags)
3c4d7559
DW
806{
807 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 808 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
d3b18ad3
JF
809 struct sk_msg msg_redir = { };
810 struct sk_psock *psock;
811 struct sock *sk_redir;
a42055e8 812 struct tls_rec *rec;
0608c69c 813 bool enospc, policy;
d3b18ad3 814 int err = 0, send;
7246d8ed 815 u32 delta = 0;
d3b18ad3 816
0608c69c 817 policy = !(flags & MSG_SENDPAGE_NOPOLICY);
d3b18ad3 818 psock = sk_psock_get(sk);
d10523d0
JK
819 if (!psock || !policy) {
820 err = tls_push_record(sk, flags, record_type);
635d9398 821 if (err && sk->sk_err == EBADMSG) {
d10523d0
JK
822 *copied -= sk_msg_free(sk, msg);
823 tls_free_open_rec(sk);
635d9398 824 err = -sk->sk_err;
d10523d0 825 }
095f5614
XY
826 if (psock)
827 sk_psock_put(sk, psock);
d10523d0
JK
828 return err;
829 }
d3b18ad3
JF
830more_data:
831 enospc = sk_msg_full(msg);
7246d8ed
JF
832 if (psock->eval == __SK_NONE) {
833 delta = msg->sg.size;
d3b18ad3 834 psock->eval = sk_psock_msg_verdict(sk, psock, msg);
7361d448 835 delta -= msg->sg.size;
7246d8ed 836 }
d3b18ad3
JF
837 if (msg->cork_bytes && msg->cork_bytes > msg->sg.size &&
838 !enospc && !full_record) {
839 err = -ENOSPC;
840 goto out_err;
841 }
842 msg->cork_bytes = 0;
843 send = msg->sg.size;
844 if (msg->apply_bytes && msg->apply_bytes < send)
845 send = msg->apply_bytes;
846
847 switch (psock->eval) {
848 case __SK_PASS:
849 err = tls_push_record(sk, flags, record_type);
635d9398 850 if (err && sk->sk_err == EBADMSG) {
d3b18ad3
JF
851 *copied -= sk_msg_free(sk, msg);
852 tls_free_open_rec(sk);
635d9398 853 err = -sk->sk_err;
d3b18ad3
JF
854 goto out_err;
855 }
856 break;
857 case __SK_REDIRECT:
858 sk_redir = psock->sk_redir;
859 memcpy(&msg_redir, msg, sizeof(*msg));
860 if (msg->apply_bytes < send)
861 msg->apply_bytes = 0;
862 else
863 msg->apply_bytes -= send;
864 sk_msg_return_zero(sk, msg, send);
865 msg->sg.size -= send;
866 release_sock(sk);
867 err = tcp_bpf_sendmsg_redir(sk_redir, &msg_redir, send, flags);
868 lock_sock(sk);
869 if (err < 0) {
870 *copied -= sk_msg_free_nocharge(sk, &msg_redir);
871 msg->sg.size = 0;
872 }
873 if (msg->sg.size == 0)
874 tls_free_open_rec(sk);
875 break;
876 case __SK_DROP:
877 default:
878 sk_msg_free_partial(sk, msg, send);
879 if (msg->apply_bytes < send)
880 msg->apply_bytes = 0;
881 else
882 msg->apply_bytes -= send;
883 if (msg->sg.size == 0)
884 tls_free_open_rec(sk);
7246d8ed 885 *copied -= (send + delta);
d3b18ad3
JF
886 err = -EACCES;
887 }
a42055e8 888
d3b18ad3
JF
889 if (likely(!err)) {
890 bool reset_eval = !ctx->open_rec;
a42055e8 891
d3b18ad3
JF
892 rec = ctx->open_rec;
893 if (rec) {
894 msg = &rec->msg_plaintext;
895 if (!msg->apply_bytes)
896 reset_eval = true;
897 }
898 if (reset_eval) {
899 psock->eval = __SK_NONE;
900 if (psock->sk_redir) {
901 sock_put(psock->sk_redir);
902 psock->sk_redir = NULL;
903 }
904 }
905 if (rec)
906 goto more_data;
907 }
908 out_err:
909 sk_psock_put(sk, psock);
910 return err;
911}
912
913static int tls_sw_push_pending_record(struct sock *sk, int flags)
914{
915 struct tls_context *tls_ctx = tls_get_ctx(sk);
916 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
917 struct tls_rec *rec = ctx->open_rec;
918 struct sk_msg *msg_pl;
919 size_t copied;
a42055e8 920
a42055e8 921 if (!rec)
d3b18ad3 922 return 0;
a42055e8 923
d829e9c4 924 msg_pl = &rec->msg_plaintext;
d3b18ad3
JF
925 copied = msg_pl->sg.size;
926 if (!copied)
927 return 0;
a42055e8 928
d3b18ad3
JF
929 return bpf_exec_tx_verdict(msg_pl, sk, true, TLS_RECORD_TYPE_DATA,
930 &copied, flags);
a42055e8
VG
931}
932
933int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
934{
3c4d7559 935 long timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
a42055e8 936 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 937 struct tls_prot_info *prot = &tls_ctx->prot_info;
a42055e8 938 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
5b053e12 939 bool async_capable = ctx->async_capable;
a42055e8 940 unsigned char record_type = TLS_RECORD_TYPE_DATA;
00e23707 941 bool is_kvec = iov_iter_is_kvec(&msg->msg_iter);
3c4d7559 942 bool eor = !(msg->msg_flags & MSG_MORE);
a7bff11f
VF
943 size_t try_to_copy;
944 ssize_t copied = 0;
d829e9c4 945 struct sk_msg *msg_pl, *msg_en;
a42055e8
VG
946 struct tls_rec *rec;
947 int required_size;
948 int num_async = 0;
3c4d7559 949 bool full_record;
a42055e8
VG
950 int record_room;
951 int num_zc = 0;
3c4d7559 952 int orig_size;
4128c0cf 953 int ret = 0;
0cada332 954 int pending;
3c4d7559 955
1c3b63f1
RC
956 if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
957 MSG_CMSG_COMPAT))
4a5cdc60 958 return -EOPNOTSUPP;
3c4d7559 959
79ffe608 960 mutex_lock(&tls_ctx->tx_lock);
3c4d7559
DW
961 lock_sock(sk);
962
3c4d7559
DW
963 if (unlikely(msg->msg_controllen)) {
964 ret = tls_proccess_cmsg(sk, msg, &record_type);
a42055e8
VG
965 if (ret) {
966 if (ret == -EINPROGRESS)
967 num_async++;
968 else if (ret != -EAGAIN)
969 goto send_end;
970 }
3c4d7559
DW
971 }
972
973 while (msg_data_left(msg)) {
974 if (sk->sk_err) {
30be8f8d 975 ret = -sk->sk_err;
3c4d7559
DW
976 goto send_end;
977 }
978
d3b18ad3
JF
979 if (ctx->open_rec)
980 rec = ctx->open_rec;
981 else
982 rec = ctx->open_rec = tls_get_rec(sk);
a42055e8
VG
983 if (!rec) {
984 ret = -ENOMEM;
985 goto send_end;
986 }
987
d829e9c4
DB
988 msg_pl = &rec->msg_plaintext;
989 msg_en = &rec->msg_encrypted;
990
991 orig_size = msg_pl->sg.size;
3c4d7559
DW
992 full_record = false;
993 try_to_copy = msg_data_left(msg);
d829e9c4 994 record_room = TLS_MAX_PAYLOAD_SIZE - msg_pl->sg.size;
3c4d7559
DW
995 if (try_to_copy >= record_room) {
996 try_to_copy = record_room;
997 full_record = true;
998 }
999
d829e9c4 1000 required_size = msg_pl->sg.size + try_to_copy +
4509de14 1001 prot->overhead_size;
3c4d7559
DW
1002
1003 if (!sk_stream_memory_free(sk))
1004 goto wait_for_sndbuf;
a42055e8 1005
3c4d7559 1006alloc_encrypted:
d829e9c4 1007 ret = tls_alloc_encrypted_msg(sk, required_size);
3c4d7559
DW
1008 if (ret) {
1009 if (ret != -ENOSPC)
1010 goto wait_for_memory;
1011
1012 /* Adjust try_to_copy according to the amount that was
1013 * actually allocated. The difference is due
1014 * to max sg elements limit
1015 */
d829e9c4 1016 try_to_copy -= required_size - msg_en->sg.size;
3c4d7559
DW
1017 full_record = true;
1018 }
a42055e8
VG
1019
1020 if (!is_kvec && (full_record || eor) && !async_capable) {
d3b18ad3
JF
1021 u32 first = msg_pl->sg.end;
1022
d829e9c4
DB
1023 ret = sk_msg_zerocopy_from_iter(sk, &msg->msg_iter,
1024 msg_pl, try_to_copy);
3c4d7559
DW
1025 if (ret)
1026 goto fallback_to_reg_send;
1027
a42055e8 1028 num_zc++;
3c4d7559 1029 copied += try_to_copy;
d3b18ad3
JF
1030
1031 sk_msg_sg_copy_set(msg_pl, first);
1032 ret = bpf_exec_tx_verdict(msg_pl, sk, full_record,
1033 record_type, &copied,
1034 msg->msg_flags);
a42055e8
VG
1035 if (ret) {
1036 if (ret == -EINPROGRESS)
1037 num_async++;
d3b18ad3
JF
1038 else if (ret == -ENOMEM)
1039 goto wait_for_memory;
c329ef96 1040 else if (ctx->open_rec && ret == -ENOSPC)
d3b18ad3 1041 goto rollback_iter;
a42055e8
VG
1042 else if (ret != -EAGAIN)
1043 goto send_end;
1044 }
5a3611ef 1045 continue;
d3b18ad3
JF
1046rollback_iter:
1047 copied -= try_to_copy;
1048 sk_msg_sg_copy_clear(msg_pl, first);
1049 iov_iter_revert(&msg->msg_iter,
1050 msg_pl->sg.size - orig_size);
3c4d7559 1051fallback_to_reg_send:
d829e9c4 1052 sk_msg_trim(sk, msg_pl, orig_size);
3c4d7559
DW
1053 }
1054
d829e9c4 1055 required_size = msg_pl->sg.size + try_to_copy;
4e6d4720 1056
d829e9c4 1057 ret = tls_clone_plaintext_msg(sk, required_size);
3c4d7559
DW
1058 if (ret) {
1059 if (ret != -ENOSPC)
4e6d4720 1060 goto send_end;
3c4d7559
DW
1061
1062 /* Adjust try_to_copy according to the amount that was
1063 * actually allocated. The difference is due
1064 * to max sg elements limit
1065 */
d829e9c4 1066 try_to_copy -= required_size - msg_pl->sg.size;
3c4d7559 1067 full_record = true;
4509de14
VG
1068 sk_msg_trim(sk, msg_en,
1069 msg_pl->sg.size + prot->overhead_size);
3c4d7559
DW
1070 }
1071
65a10e28
VG
1072 if (try_to_copy) {
1073 ret = sk_msg_memcopy_from_iter(sk, &msg->msg_iter,
1074 msg_pl, try_to_copy);
1075 if (ret < 0)
1076 goto trim_sgl;
1077 }
3c4d7559 1078
d829e9c4
DB
1079 /* Open records defined only if successfully copied, otherwise
1080 * we would trim the sg but not reset the open record frags.
1081 */
1082 tls_ctx->pending_open_record_frags = true;
3c4d7559
DW
1083 copied += try_to_copy;
1084 if (full_record || eor) {
d3b18ad3
JF
1085 ret = bpf_exec_tx_verdict(msg_pl, sk, full_record,
1086 record_type, &copied,
1087 msg->msg_flags);
3c4d7559 1088 if (ret) {
a42055e8
VG
1089 if (ret == -EINPROGRESS)
1090 num_async++;
d3b18ad3
JF
1091 else if (ret == -ENOMEM)
1092 goto wait_for_memory;
1093 else if (ret != -EAGAIN) {
1094 if (ret == -ENOSPC)
1095 ret = 0;
a42055e8 1096 goto send_end;
d3b18ad3 1097 }
3c4d7559
DW
1098 }
1099 }
1100
1101 continue;
1102
1103wait_for_sndbuf:
1104 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1105wait_for_memory:
1106 ret = sk_stream_wait_memory(sk, &timeo);
1107 if (ret) {
1108trim_sgl:
c329ef96
JK
1109 if (ctx->open_rec)
1110 tls_trim_both_msgs(sk, orig_size);
3c4d7559
DW
1111 goto send_end;
1112 }
1113
c329ef96 1114 if (ctx->open_rec && msg_en->sg.size < required_size)
3c4d7559 1115 goto alloc_encrypted;
3c4d7559
DW
1116 }
1117
a42055e8
VG
1118 if (!num_async) {
1119 goto send_end;
1120 } else if (num_zc) {
1121 /* Wait for pending encryptions to get completed */
0cada332
VKY
1122 spin_lock_bh(&ctx->encrypt_compl_lock);
1123 ctx->async_notify = true;
a42055e8 1124
0cada332
VKY
1125 pending = atomic_read(&ctx->encrypt_pending);
1126 spin_unlock_bh(&ctx->encrypt_compl_lock);
1127 if (pending)
a42055e8
VG
1128 crypto_wait_req(-EINPROGRESS, &ctx->async_wait);
1129 else
1130 reinit_completion(&ctx->async_wait.completion);
1131
0cada332
VKY
1132 /* There can be no concurrent accesses, since we have no
1133 * pending encrypt operations
1134 */
a42055e8
VG
1135 WRITE_ONCE(ctx->async_notify, false);
1136
1137 if (ctx->async_wait.err) {
1138 ret = ctx->async_wait.err;
1139 copied = 0;
1140 }
1141 }
1142
1143 /* Transmit if any encryptions have completed */
1144 if (test_and_clear_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask)) {
1145 cancel_delayed_work(&ctx->tx_work.work);
1146 tls_tx_records(sk, msg->msg_flags);
1147 }
1148
3c4d7559
DW
1149send_end:
1150 ret = sk_stream_error(sk, msg->msg_flags, ret);
1151
1152 release_sock(sk);
79ffe608 1153 mutex_unlock(&tls_ctx->tx_lock);
a7bff11f 1154 return copied > 0 ? copied : ret;
3c4d7559
DW
1155}
1156
01cb8a1a
Y
1157static int tls_sw_do_sendpage(struct sock *sk, struct page *page,
1158 int offset, size_t size, int flags)
3c4d7559 1159{
a42055e8 1160 long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
3c4d7559 1161 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 1162 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
4509de14 1163 struct tls_prot_info *prot = &tls_ctx->prot_info;
3c4d7559 1164 unsigned char record_type = TLS_RECORD_TYPE_DATA;
d829e9c4 1165 struct sk_msg *msg_pl;
a42055e8
VG
1166 struct tls_rec *rec;
1167 int num_async = 0;
a7bff11f 1168 ssize_t copied = 0;
3c4d7559
DW
1169 bool full_record;
1170 int record_room;
4128c0cf 1171 int ret = 0;
a42055e8 1172 bool eor;
3c4d7559 1173
d452d48b 1174 eor = !(flags & MSG_SENDPAGE_NOTLAST);
3c4d7559
DW
1175 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
1176
3c4d7559
DW
1177 /* Call the sk_stream functions to manage the sndbuf mem. */
1178 while (size > 0) {
1179 size_t copy, required_size;
1180
1181 if (sk->sk_err) {
30be8f8d 1182 ret = -sk->sk_err;
3c4d7559
DW
1183 goto sendpage_end;
1184 }
1185
d3b18ad3
JF
1186 if (ctx->open_rec)
1187 rec = ctx->open_rec;
1188 else
1189 rec = ctx->open_rec = tls_get_rec(sk);
a42055e8
VG
1190 if (!rec) {
1191 ret = -ENOMEM;
1192 goto sendpage_end;
1193 }
1194
d829e9c4
DB
1195 msg_pl = &rec->msg_plaintext;
1196
3c4d7559 1197 full_record = false;
d829e9c4 1198 record_room = TLS_MAX_PAYLOAD_SIZE - msg_pl->sg.size;
3c4d7559
DW
1199 copy = size;
1200 if (copy >= record_room) {
1201 copy = record_room;
1202 full_record = true;
1203 }
d829e9c4 1204
4509de14 1205 required_size = msg_pl->sg.size + copy + prot->overhead_size;
3c4d7559
DW
1206
1207 if (!sk_stream_memory_free(sk))
1208 goto wait_for_sndbuf;
1209alloc_payload:
d829e9c4 1210 ret = tls_alloc_encrypted_msg(sk, required_size);
3c4d7559
DW
1211 if (ret) {
1212 if (ret != -ENOSPC)
1213 goto wait_for_memory;
1214
1215 /* Adjust copy according to the amount that was
1216 * actually allocated. The difference is due
1217 * to max sg elements limit
1218 */
d829e9c4 1219 copy -= required_size - msg_pl->sg.size;
3c4d7559
DW
1220 full_record = true;
1221 }
1222
d829e9c4 1223 sk_msg_page_add(msg_pl, page, copy, offset);
3c4d7559 1224 sk_mem_charge(sk, copy);
d829e9c4 1225
3c4d7559
DW
1226 offset += copy;
1227 size -= copy;
d3b18ad3 1228 copied += copy;
3c4d7559 1229
d829e9c4
DB
1230 tls_ctx->pending_open_record_frags = true;
1231 if (full_record || eor || sk_msg_full(msg_pl)) {
d3b18ad3
JF
1232 ret = bpf_exec_tx_verdict(msg_pl, sk, full_record,
1233 record_type, &copied, flags);
3c4d7559 1234 if (ret) {
a42055e8
VG
1235 if (ret == -EINPROGRESS)
1236 num_async++;
d3b18ad3
JF
1237 else if (ret == -ENOMEM)
1238 goto wait_for_memory;
1239 else if (ret != -EAGAIN) {
1240 if (ret == -ENOSPC)
1241 ret = 0;
a42055e8 1242 goto sendpage_end;
d3b18ad3 1243 }
3c4d7559
DW
1244 }
1245 }
1246 continue;
1247wait_for_sndbuf:
1248 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1249wait_for_memory:
1250 ret = sk_stream_wait_memory(sk, &timeo);
1251 if (ret) {
c329ef96
JK
1252 if (ctx->open_rec)
1253 tls_trim_both_msgs(sk, msg_pl->sg.size);
3c4d7559
DW
1254 goto sendpage_end;
1255 }
1256
c329ef96
JK
1257 if (ctx->open_rec)
1258 goto alloc_payload;
3c4d7559
DW
1259 }
1260
a42055e8
VG
1261 if (num_async) {
1262 /* Transmit if any encryptions have completed */
1263 if (test_and_clear_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask)) {
1264 cancel_delayed_work(&ctx->tx_work.work);
1265 tls_tx_records(sk, flags);
1266 }
1267 }
3c4d7559 1268sendpage_end:
d3b18ad3 1269 ret = sk_stream_error(sk, flags, ret);
a7bff11f 1270 return copied > 0 ? copied : ret;
3c4d7559
DW
1271}
1272
d4ffb02d
WB
1273int tls_sw_sendpage_locked(struct sock *sk, struct page *page,
1274 int offset, size_t size, int flags)
1275{
1276 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
1277 MSG_SENDPAGE_NOTLAST | MSG_SENDPAGE_NOPOLICY |
1278 MSG_NO_SHARED_FRAGS))
4a5cdc60 1279 return -EOPNOTSUPP;
d4ffb02d
WB
1280
1281 return tls_sw_do_sendpage(sk, page, offset, size, flags);
1282}
1283
0608c69c
JF
1284int tls_sw_sendpage(struct sock *sk, struct page *page,
1285 int offset, size_t size, int flags)
1286{
79ffe608 1287 struct tls_context *tls_ctx = tls_get_ctx(sk);
0608c69c
JF
1288 int ret;
1289
1290 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
1291 MSG_SENDPAGE_NOTLAST | MSG_SENDPAGE_NOPOLICY))
4a5cdc60 1292 return -EOPNOTSUPP;
0608c69c 1293
79ffe608 1294 mutex_lock(&tls_ctx->tx_lock);
0608c69c
JF
1295 lock_sock(sk);
1296 ret = tls_sw_do_sendpage(sk, page, offset, size, flags);
1297 release_sock(sk);
79ffe608 1298 mutex_unlock(&tls_ctx->tx_lock);
0608c69c
JF
1299 return ret;
1300}
1301
d3b18ad3 1302static struct sk_buff *tls_wait_data(struct sock *sk, struct sk_psock *psock,
974271e5 1303 bool nonblock, long timeo, int *err)
c46234eb
DW
1304{
1305 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 1306 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
c46234eb
DW
1307 struct sk_buff *skb;
1308 DEFINE_WAIT_FUNC(wait, woken_wake_function);
1309
d3b18ad3 1310 while (!(skb = ctx->recv_pkt) && sk_psock_queue_empty(psock)) {
c46234eb
DW
1311 if (sk->sk_err) {
1312 *err = sock_error(sk);
1313 return NULL;
1314 }
1315
20ffc7ad
VF
1316 if (!skb_queue_empty(&sk->sk_receive_queue)) {
1317 __strp_unpause(&ctx->strp);
1318 if (ctx->recv_pkt)
1319 return ctx->recv_pkt;
1320 }
1321
fcf4793e
DRK
1322 if (sk->sk_shutdown & RCV_SHUTDOWN)
1323 return NULL;
1324
c46234eb
DW
1325 if (sock_flag(sk, SOCK_DONE))
1326 return NULL;
1327
974271e5 1328 if (nonblock || !timeo) {
c46234eb
DW
1329 *err = -EAGAIN;
1330 return NULL;
1331 }
1332
1333 add_wait_queue(sk_sleep(sk), &wait);
1334 sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk);
d3b18ad3
JF
1335 sk_wait_event(sk, &timeo,
1336 ctx->recv_pkt != skb ||
1337 !sk_psock_queue_empty(psock),
1338 &wait);
c46234eb
DW
1339 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk);
1340 remove_wait_queue(sk_sleep(sk), &wait);
1341
1342 /* Handle signals */
1343 if (signal_pending(current)) {
1344 *err = sock_intr_errno(timeo);
1345 return NULL;
1346 }
1347 }
1348
1349 return skb;
1350}
1351
d4bd88e6 1352static int tls_setup_from_iter(struct iov_iter *from,
d829e9c4 1353 int length, int *pages_used,
d829e9c4
DB
1354 struct scatterlist *to,
1355 int to_max_pages)
1356{
1357 int rc = 0, i = 0, num_elem = *pages_used, maxpages;
1358 struct page *pages[MAX_SKB_FRAGS];
d4bd88e6 1359 unsigned int size = 0;
d829e9c4
DB
1360 ssize_t copied, use;
1361 size_t offset;
1362
1363 while (length > 0) {
1364 i = 0;
1365 maxpages = to_max_pages - num_elem;
1366 if (maxpages == 0) {
1367 rc = -EFAULT;
1368 goto out;
1369 }
1370 copied = iov_iter_get_pages(from, pages,
1371 length,
1372 maxpages, &offset);
1373 if (copied <= 0) {
1374 rc = -EFAULT;
1375 goto out;
1376 }
1377
1378 iov_iter_advance(from, copied);
1379
1380 length -= copied;
1381 size += copied;
1382 while (copied) {
1383 use = min_t(int, copied, PAGE_SIZE - offset);
1384
1385 sg_set_page(&to[num_elem],
1386 pages[i], use, offset);
1387 sg_unmark_end(&to[num_elem]);
1388 /* We do not uncharge memory from this API */
1389
1390 offset = 0;
1391 copied -= use;
1392
1393 i++;
1394 num_elem++;
1395 }
1396 }
1397 /* Mark the end in the last sg entry if newly added */
1398 if (num_elem > *pages_used)
1399 sg_mark_end(&to[num_elem - 1]);
1400out:
1401 if (rc)
d4bd88e6 1402 iov_iter_revert(from, size);
d829e9c4
DB
1403 *pages_used = num_elem;
1404
1405 return rc;
1406}
1407
0b243d00
VG
1408/* This function decrypts the input skb into either out_iov or in out_sg
1409 * or in skb buffers itself. The input parameter 'zc' indicates if
1410 * zero-copy mode needs to be tried or not. With zero-copy mode, either
1411 * out_iov or out_sg must be non-NULL. In case both out_iov and out_sg are
1412 * NULL, then the decryption happens inside skb buffers itself, i.e.
1413 * zero-copy gets disabled and 'zc' is updated.
1414 */
1415
1416static int decrypt_internal(struct sock *sk, struct sk_buff *skb,
1417 struct iov_iter *out_iov,
1418 struct scatterlist *out_sg,
4175eac3 1419 struct tls_decrypt_arg *darg)
0b243d00
VG
1420{
1421 struct tls_context *tls_ctx = tls_get_ctx(sk);
1422 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
4509de14 1423 struct tls_prot_info *prot = &tls_ctx->prot_info;
b89fec54 1424 int n_sgin, n_sgout, aead_size, err, pages = 0;
0b243d00 1425 struct strp_msg *rxm = strp_msg(skb);
c3f6bb74 1426 struct tls_msg *tlm = tls_msg(skb);
0b243d00
VG
1427 struct aead_request *aead_req;
1428 struct sk_buff *unused;
0b243d00
VG
1429 struct scatterlist *sgin = NULL;
1430 struct scatterlist *sgout = NULL;
603380f5 1431 const int data_len = rxm->full_len - prot->overhead_size;
ce61327c 1432 int tail_pages = !!prot->tail_size;
b89fec54 1433 struct tls_decrypt_ctx *dctx;
f295b3ae 1434 int iv_offset = 0;
b89fec54 1435 u8 *mem;
0b243d00 1436
4175eac3 1437 if (darg->zc && (out_iov || out_sg)) {
0b243d00 1438 if (out_iov)
ce61327c 1439 n_sgout = 1 + tail_pages +
b93235e6 1440 iov_iter_npages_cap(out_iov, INT_MAX, data_len);
0b243d00
VG
1441 else
1442 n_sgout = sg_nents(out_sg);
4509de14
VG
1443 n_sgin = skb_nsg(skb, rxm->offset + prot->prepend_size,
1444 rxm->full_len - prot->prepend_size);
0b243d00
VG
1445 } else {
1446 n_sgout = 0;
4175eac3 1447 darg->zc = false;
0927f71d 1448 n_sgin = skb_cow_data(skb, 0, &unused);
0b243d00
VG
1449 }
1450
0b243d00
VG
1451 if (n_sgin < 1)
1452 return -EBADMSG;
1453
1454 /* Increment to accommodate AAD */
1455 n_sgin = n_sgin + 1;
1456
0b243d00 1457 /* Allocate a single block of memory which contains
b89fec54
JK
1458 * aead_req || tls_decrypt_ctx.
1459 * Both structs are variable length.
0b243d00 1460 */
b89fec54
JK
1461 aead_size = sizeof(*aead_req) + crypto_aead_reqsize(ctx->aead_recv);
1462 mem = kmalloc(aead_size + struct_size(dctx, sg, n_sgin + n_sgout),
1463 sk->sk_allocation);
0b243d00
VG
1464 if (!mem)
1465 return -ENOMEM;
1466
1467 /* Segment the allocated memory */
1468 aead_req = (struct aead_request *)mem;
b89fec54
JK
1469 dctx = (struct tls_decrypt_ctx *)(mem + aead_size);
1470 sgin = &dctx->sg[0];
1471 sgout = &dctx->sg[n_sgin];
0b243d00 1472
128cfb88
TZ
1473 /* For CCM based ciphers, first byte of nonce+iv is a constant */
1474 switch (prot->cipher_type) {
1475 case TLS_CIPHER_AES_CCM_128:
b89fec54 1476 dctx->iv[0] = TLS_AES_CCM_IV_B0_BYTE;
f295b3ae 1477 iv_offset = 1;
128cfb88
TZ
1478 break;
1479 case TLS_CIPHER_SM4_CCM:
b89fec54 1480 dctx->iv[0] = TLS_SM4_CCM_IV_B0_BYTE;
128cfb88
TZ
1481 iv_offset = 1;
1482 break;
f295b3ae
VG
1483 }
1484
0b243d00 1485 /* Prepare IV */
a6acbe62 1486 if (prot->version == TLS_1_3_VERSION ||
a4ae58cd 1487 prot->cipher_type == TLS_CIPHER_CHACHA20_POLY1305) {
b89fec54 1488 memcpy(&dctx->iv[iv_offset], tls_ctx->rx.iv,
9381fe8c 1489 prot->iv_size + prot->salt_size);
a4ae58cd
JK
1490 } else {
1491 err = skb_copy_bits(skb, rxm->offset + TLS_HEADER_SIZE,
b89fec54 1492 &dctx->iv[iv_offset] + prot->salt_size,
a4ae58cd
JK
1493 prot->iv_size);
1494 if (err < 0) {
1495 kfree(mem);
1496 return err;
1497 }
b89fec54 1498 memcpy(&dctx->iv[iv_offset], tls_ctx->rx.iv, prot->salt_size);
a4ae58cd 1499 }
b89fec54 1500 xor_iv_with_seq(prot, &dctx->iv[iv_offset], tls_ctx->rx.rec_seq);
0b243d00
VG
1501
1502 /* Prepare AAD */
b89fec54 1503 tls_make_aad(dctx->aad, rxm->full_len - prot->overhead_size +
4509de14 1504 prot->tail_size,
c3f6bb74 1505 tls_ctx->rx.rec_seq, tlm->control, prot);
0b243d00
VG
1506
1507 /* Prepare sgin */
1508 sg_init_table(sgin, n_sgin);
b89fec54 1509 sg_set_buf(&sgin[0], dctx->aad, prot->aad_size);
0b243d00 1510 err = skb_to_sgvec(skb, &sgin[1],
4509de14
VG
1511 rxm->offset + prot->prepend_size,
1512 rxm->full_len - prot->prepend_size);
0b243d00
VG
1513 if (err < 0) {
1514 kfree(mem);
1515 return err;
1516 }
1517
1518 if (n_sgout) {
1519 if (out_iov) {
1520 sg_init_table(sgout, n_sgout);
b89fec54 1521 sg_set_buf(&sgout[0], dctx->aad, prot->aad_size);
0b243d00 1522
ce61327c 1523 err = tls_setup_from_iter(out_iov, data_len,
d4bd88e6 1524 &pages, &sgout[1],
ce61327c 1525 (n_sgout - 1 - tail_pages));
0b243d00
VG
1526 if (err < 0)
1527 goto fallback_to_reg_recv;
ce61327c
JK
1528
1529 if (prot->tail_size) {
1530 sg_unmark_end(&sgout[pages]);
b89fec54 1531 sg_set_buf(&sgout[pages + 1], &dctx->tail,
ce61327c
JK
1532 prot->tail_size);
1533 sg_mark_end(&sgout[pages + 1]);
1534 }
0b243d00
VG
1535 } else if (out_sg) {
1536 memcpy(sgout, out_sg, n_sgout * sizeof(*sgout));
1537 } else {
1538 goto fallback_to_reg_recv;
1539 }
1540 } else {
1541fallback_to_reg_recv:
1542 sgout = sgin;
1543 pages = 0;
4175eac3 1544 darg->zc = false;
0b243d00
VG
1545 }
1546
1547 /* Prepare and submit AEAD request */
b89fec54 1548 err = tls_do_decryption(sk, skb, sgin, sgout, dctx->iv,
603380f5 1549 data_len + prot->tail_size, aead_req, darg);
3547a1f9
JK
1550 if (darg->async)
1551 return 0;
0b243d00 1552
ce61327c 1553 if (prot->tail_size)
b89fec54 1554 darg->tail = dctx->tail;
ce61327c 1555
0b243d00
VG
1556 /* Release the pages in case iov was mapped to pages */
1557 for (; pages > 0; pages--)
1558 put_page(sg_page(&sgout[pages]));
1559
1560 kfree(mem);
1561 return err;
1562}
1563
dafb67f3 1564static int decrypt_skb_update(struct sock *sk, struct sk_buff *skb,
4175eac3
JK
1565 struct iov_iter *dest,
1566 struct tls_decrypt_arg *darg)
dafb67f3
BP
1567{
1568 struct tls_context *tls_ctx = tls_get_ctx(sk);
4509de14 1569 struct tls_prot_info *prot = &tls_ctx->prot_info;
dafb67f3 1570 struct strp_msg *rxm = strp_msg(skb);
7dc59c33 1571 struct tls_msg *tlm = tls_msg(skb);
3764ae5b 1572 int pad, err;
dafb67f3 1573
3764ae5b 1574 if (tlm->decrypted) {
4175eac3 1575 darg->zc = false;
c706b2b5 1576 darg->async = false;
3764ae5b
JK
1577 return 0;
1578 }
be2fbc15 1579
3764ae5b
JK
1580 if (tls_ctx->rx_conf == TLS_HW) {
1581 err = tls_device_decrypted(sk, tls_ctx, skb, rxm);
1582 if (err < 0)
1583 return err;
71471ca3
JK
1584 if (err > 0) {
1585 tlm->decrypted = 1;
4175eac3 1586 darg->zc = false;
c706b2b5 1587 darg->async = false;
3764ae5b 1588 goto decrypt_done;
94524d8f 1589 }
3764ae5b 1590 }
130b392c 1591
4175eac3 1592 err = decrypt_internal(sk, skb, dest, NULL, darg);
a069a905
GP
1593 if (err < 0) {
1594 if (err == -EBADMSG)
1595 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSDECRYPTERROR);
3764ae5b 1596 return err;
a069a905 1597 }
3547a1f9
JK
1598 if (darg->async)
1599 goto decrypt_next;
ce61327c
JK
1600 /* If opportunistic TLS 1.3 ZC failed retry without ZC */
1601 if (unlikely(darg->zc && prot->version == TLS_1_3_VERSION &&
1602 darg->tail != TLS_RECORD_TYPE_DATA)) {
1603 darg->zc = false;
88527790 1604 TLS_INC_STATS(sock_net(sk), LINUX_MIN_TLSDECRYPTRETRY);
ce61327c
JK
1605 return decrypt_skb_update(sk, skb, dest, darg);
1606 }
dafb67f3 1607
3764ae5b 1608decrypt_done:
ce61327c 1609 pad = tls_padding_length(prot, skb, darg);
3764ae5b
JK
1610 if (pad < 0)
1611 return pad;
1612
1613 rxm->full_len -= pad;
1614 rxm->offset += prot->prepend_size;
1615 rxm->full_len -= prot->overhead_size;
3764ae5b 1616 tlm->decrypted = 1;
3547a1f9
JK
1617decrypt_next:
1618 tls_advance_record_sn(sk, prot, &tls_ctx->rx);
3764ae5b
JK
1619
1620 return 0;
dafb67f3
BP
1621}
1622
1623int decrypt_skb(struct sock *sk, struct sk_buff *skb,
1624 struct scatterlist *sgout)
c46234eb 1625{
4175eac3 1626 struct tls_decrypt_arg darg = { .zc = true, };
c46234eb 1627
4175eac3 1628 return decrypt_internal(sk, skb, NULL, sgout, &darg);
c46234eb
DW
1629}
1630
06554f4f
JK
1631static int tls_record_content_type(struct msghdr *msg, struct tls_msg *tlm,
1632 u8 *control)
1633{
1634 int err;
1635
1636 if (!*control) {
1637 *control = tlm->control;
1638 if (!*control)
1639 return -EBADMSG;
1640
1641 err = put_cmsg(msg, SOL_TLS, TLS_GET_RECORD_TYPE,
1642 sizeof(*control), control);
1643 if (*control != TLS_RECORD_TYPE_DATA) {
1644 if (err || msg->msg_flags & MSG_CTRUNC)
1645 return -EIO;
1646 }
1647 } else if (*control != tlm->control) {
1648 return 0;
1649 }
1650
1651 return 1;
1652}
1653
692d7b5d 1654/* This function traverses the rx_list in tls receive context to copies the
2b794c40 1655 * decrypted records into the buffer provided by caller zero copy is not
692d7b5d
VG
1656 * true. Further, the records are removed from the rx_list if it is not a peek
1657 * case and the record has been consumed completely.
1658 */
1659static int process_rx_list(struct tls_sw_context_rx *ctx,
1660 struct msghdr *msg,
2b794c40 1661 u8 *control,
692d7b5d
VG
1662 size_t skip,
1663 size_t len,
1664 bool zc,
1665 bool is_peek)
1666{
1667 struct sk_buff *skb = skb_peek(&ctx->rx_list);
2b794c40 1668 struct tls_msg *tlm;
692d7b5d 1669 ssize_t copied = 0;
06554f4f 1670 int err;
2b794c40 1671
692d7b5d
VG
1672 while (skip && skb) {
1673 struct strp_msg *rxm = strp_msg(skb);
2b794c40
VG
1674 tlm = tls_msg(skb);
1675
06554f4f
JK
1676 err = tls_record_content_type(msg, tlm, control);
1677 if (err <= 0)
4dcdd971 1678 goto out;
692d7b5d
VG
1679
1680 if (skip < rxm->full_len)
1681 break;
1682
1683 skip = skip - rxm->full_len;
1684 skb = skb_peek_next(skb, &ctx->rx_list);
1685 }
1686
1687 while (len && skb) {
1688 struct sk_buff *next_skb;
1689 struct strp_msg *rxm = strp_msg(skb);
1690 int chunk = min_t(unsigned int, rxm->full_len - skip, len);
1691
2b794c40
VG
1692 tlm = tls_msg(skb);
1693
06554f4f
JK
1694 err = tls_record_content_type(msg, tlm, control);
1695 if (err <= 0)
4dcdd971 1696 goto out;
2b794c40 1697
692d7b5d 1698 if (!zc || (rxm->full_len - skip) > len) {
06554f4f 1699 err = skb_copy_datagram_msg(skb, rxm->offset + skip,
692d7b5d
VG
1700 msg, chunk);
1701 if (err < 0)
4dcdd971 1702 goto out;
692d7b5d
VG
1703 }
1704
1705 len = len - chunk;
1706 copied = copied + chunk;
1707
1708 /* Consume the data from record if it is non-peek case*/
1709 if (!is_peek) {
1710 rxm->offset = rxm->offset + chunk;
1711 rxm->full_len = rxm->full_len - chunk;
1712
1713 /* Return if there is unconsumed data in the record */
1714 if (rxm->full_len - skip)
1715 break;
1716 }
1717
1718 /* The remaining skip-bytes must lie in 1st record in rx_list.
1719 * So from the 2nd record, 'skip' should be 0.
1720 */
1721 skip = 0;
1722
1723 if (msg)
1724 msg->msg_flags |= MSG_EOR;
1725
1726 next_skb = skb_peek_next(skb, &ctx->rx_list);
1727
1728 if (!is_peek) {
a30295c4 1729 __skb_unlink(skb, &ctx->rx_list);
a88c26f6 1730 consume_skb(skb);
692d7b5d
VG
1731 }
1732
1733 skb = next_skb;
1734 }
4dcdd971 1735 err = 0;
692d7b5d 1736
4dcdd971
JK
1737out:
1738 return copied ? : err;
692d7b5d
VG
1739}
1740
c46b0183
JK
1741static void
1742tls_read_flush_backlog(struct sock *sk, struct tls_prot_info *prot,
1743 size_t len_left, size_t decrypted, ssize_t done,
1744 size_t *flushed_at)
1745{
1746 size_t max_rec;
1747
1748 if (len_left <= decrypted)
1749 return;
1750
1751 max_rec = prot->overhead_size - prot->tail_size + TLS_MAX_PAYLOAD_SIZE;
1752 if (done - *flushed_at < SZ_128K && tcp_inq(sk) > max_rec)
1753 return;
1754
1755 *flushed_at = done;
1756 sk_flush_backlog(sk);
1757}
1758
c46234eb
DW
1759int tls_sw_recvmsg(struct sock *sk,
1760 struct msghdr *msg,
1761 size_t len,
c46234eb
DW
1762 int flags,
1763 int *addr_len)
1764{
1765 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 1766 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
4509de14 1767 struct tls_prot_info *prot = &tls_ctx->prot_info;
d3b18ad3 1768 struct sk_psock *psock;
692d7b5d
VG
1769 unsigned char control = 0;
1770 ssize_t decrypted = 0;
c46b0183 1771 size_t flushed_at = 0;
c46234eb 1772 struct strp_msg *rxm;
2b794c40 1773 struct tls_msg *tlm;
c46234eb
DW
1774 struct sk_buff *skb;
1775 ssize_t copied = 0;
7da18bcc 1776 bool async = false;
06030dba 1777 int target, err = 0;
c46234eb 1778 long timeo;
00e23707 1779 bool is_kvec = iov_iter_is_kvec(&msg->msg_iter);
692d7b5d 1780 bool is_peek = flags & MSG_PEEK;
e91de6af 1781 bool bpf_strp_enabled;
ba13609d 1782 bool zc_capable;
c46234eb 1783
c46234eb
DW
1784 if (unlikely(flags & MSG_ERRQUEUE))
1785 return sock_recv_errqueue(sk, msg, len, SOL_IP, IP_RECVERR);
1786
d3b18ad3 1787 psock = sk_psock_get(sk);
c46234eb 1788 lock_sock(sk);
e91de6af 1789 bpf_strp_enabled = sk_psock_strp_enabled(psock);
c46234eb 1790
f314bfee
JK
1791 /* If crypto failed the connection is broken */
1792 err = ctx->async_wait.err;
1793 if (err)
1794 goto end;
1795
692d7b5d 1796 /* Process pending decrypted records. It must be non-zero-copy */
06554f4f 1797 err = process_rx_list(ctx, msg, &control, 0, len, false, is_peek);
4dcdd971 1798 if (err < 0)
692d7b5d 1799 goto end;
692d7b5d 1800
d5123edd 1801 copied = err;
46a16959 1802 if (len <= copied)
bfc06e1a 1803 goto end;
46a16959
JK
1804
1805 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
1806 len = len - copied;
1807 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
692d7b5d 1808
ba13609d 1809 zc_capable = !bpf_strp_enabled && !is_kvec && !is_peek &&
88527790 1810 ctx->zc_capable;
bfc06e1a 1811 decrypted = 0;
04b25a54 1812 while (len && (decrypted + copied < target || ctx->recv_pkt)) {
4175eac3 1813 struct tls_decrypt_arg darg = {};
9bdf75cc 1814 int to_decrypt, chunk;
c46234eb 1815
974271e5 1816 skb = tls_wait_data(sk, psock, flags & MSG_DONTWAIT, timeo, &err);
d3b18ad3
JF
1817 if (!skb) {
1818 if (psock) {
0775639c
JK
1819 chunk = sk_msg_recvmsg(sk, psock, msg, len,
1820 flags);
1821 if (chunk > 0)
1822 goto leave_on_list;
d3b18ad3 1823 }
c46234eb 1824 goto recv_end;
d3b18ad3 1825 }
c46234eb
DW
1826
1827 rxm = strp_msg(skb);
c3f6bb74 1828 tlm = tls_msg(skb);
94524d8f 1829
4509de14 1830 to_decrypt = rxm->full_len - prot->overhead_size;
fedf201e 1831
ba13609d
JK
1832 if (zc_capable && to_decrypt <= len &&
1833 tlm->control == TLS_RECORD_TYPE_DATA)
4175eac3 1834 darg.zc = true;
fedf201e 1835
c0ab4732 1836 /* Do not use async mode if record is non-data */
c3f6bb74 1837 if (tlm->control == TLS_RECORD_TYPE_DATA && !bpf_strp_enabled)
4175eac3 1838 darg.async = ctx->async_capable;
c0ab4732 1839 else
4175eac3 1840 darg.async = false;
c0ab4732 1841
4175eac3 1842 err = decrypt_skb_update(sk, skb, &msg->msg_iter, &darg);
3547a1f9 1843 if (err < 0) {
da353fac 1844 tls_err_abort(sk, -EBADMSG);
fedf201e
DW
1845 goto recv_end;
1846 }
1847
3547a1f9 1848 async |= darg.async;
2b794c40
VG
1849
1850 /* If the type of records being processed is not known yet,
1851 * set it to record type just dequeued. If it is already known,
1852 * but does not match the record type just dequeued, go to end.
1853 * We always get record type here since for tls1.2, record type
1854 * is known just after record is dequeued from stream parser.
1855 * For tls1.3, we disable async.
1856 */
06554f4f
JK
1857 err = tls_record_content_type(msg, tlm, &control);
1858 if (err <= 0)
2b794c40 1859 goto recv_end;
fedf201e 1860
c46b0183
JK
1861 /* periodically flush backlog, and feed strparser */
1862 tls_read_flush_backlog(sk, prot, len, to_decrypt,
1863 decrypted + copied, &flushed_at);
1864
b1a2c178
JK
1865 ctx->recv_pkt = NULL;
1866 __strp_unpause(&ctx->strp);
a30295c4 1867 __skb_queue_tail(&ctx->rx_list, skb);
b1a2c178 1868
9bdf75cc
JK
1869 if (async) {
1870 /* TLS 1.2-only, to_decrypt must be text length */
1871 chunk = min_t(int, to_decrypt, len);
f940b6ef
JK
1872leave_on_list:
1873 decrypted += chunk;
1874 len -= chunk;
1875 continue;
9bdf75cc
JK
1876 }
1877 /* TLS 1.3 may have updated the length by more than overhead */
1878 chunk = rxm->full_len;
c0ab4732 1879
4175eac3 1880 if (!darg.zc) {
f940b6ef
JK
1881 bool partially_consumed = chunk > len;
1882
e91de6af 1883 if (bpf_strp_enabled) {
1c213311
JK
1884 /* BPF may try to queue the skb */
1885 __skb_unlink(skb, &ctx->rx_list);
e91de6af
JF
1886 err = sk_psock_tls_strp_read(psock, skb);
1887 if (err != __SK_PASS) {
1888 rxm->offset = rxm->offset + rxm->full_len;
1889 rxm->full_len = 0;
1890 if (err == __SK_DROP)
1891 consume_skb(skb);
e91de6af
JF
1892 continue;
1893 }
1c213311 1894 __skb_queue_tail(&ctx->rx_list, skb);
e91de6af
JF
1895 }
1896
f940b6ef 1897 if (partially_consumed)
fedf201e 1898 chunk = len;
692d7b5d 1899
fedf201e
DW
1900 err = skb_copy_datagram_msg(skb, rxm->offset,
1901 msg, chunk);
1902 if (err < 0)
1903 goto recv_end;
94524d8f 1904
f940b6ef
JK
1905 if (is_peek)
1906 goto leave_on_list;
1907
1908 if (partially_consumed) {
1909 rxm->offset += chunk;
1910 rxm->full_len -= chunk;
1911 goto leave_on_list;
692d7b5d 1912 }
c46234eb
DW
1913 }
1914
692d7b5d 1915 decrypted += chunk;
c46234eb 1916 len -= chunk;
692d7b5d 1917
a30295c4 1918 __skb_unlink(skb, &ctx->rx_list);
f940b6ef 1919 consume_skb(skb);
465ea735 1920
f940b6ef
JK
1921 /* Return full control message to userspace before trying
1922 * to parse another message type
1923 */
1924 msg->msg_flags |= MSG_EOR;
1925 if (control != TLS_RECORD_TYPE_DATA)
1926 break;
04b25a54 1927 }
c46234eb
DW
1928
1929recv_end:
7da18bcc 1930 if (async) {
f314bfee 1931 int ret, pending;
7da18bcc 1932
94524d8f 1933 /* Wait for all previously submitted records to be decrypted */
0cada332 1934 spin_lock_bh(&ctx->decrypt_compl_lock);
37943f04 1935 reinit_completion(&ctx->async_wait.completion);
0cada332
VKY
1936 pending = atomic_read(&ctx->decrypt_pending);
1937 spin_unlock_bh(&ctx->decrypt_compl_lock);
1938 if (pending) {
f314bfee
JK
1939 ret = crypto_wait_req(-EINPROGRESS, &ctx->async_wait);
1940 if (ret) {
1941 if (err >= 0 || err == -EINPROGRESS)
1942 err = ret;
692d7b5d
VG
1943 decrypted = 0;
1944 goto end;
94524d8f 1945 }
94524d8f 1946 }
0cada332 1947
692d7b5d
VG
1948 /* Drain records from the rx_list & copy if required */
1949 if (is_peek || is_kvec)
06554f4f 1950 err = process_rx_list(ctx, msg, &control, copied,
692d7b5d
VG
1951 decrypted, false, is_peek);
1952 else
06554f4f 1953 err = process_rx_list(ctx, msg, &control, 0,
692d7b5d 1954 decrypted, true, is_peek);
4dcdd971 1955 decrypted = max(err, 0);
94524d8f
VG
1956 }
1957
692d7b5d
VG
1958 copied += decrypted;
1959
1960end:
c46234eb 1961 release_sock(sk);
d3b18ad3
JF
1962 if (psock)
1963 sk_psock_put(sk, psock);
c46234eb
DW
1964 return copied ? : err;
1965}
1966
1967ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos,
1968 struct pipe_inode_info *pipe,
1969 size_t len, unsigned int flags)
1970{
1971 struct tls_context *tls_ctx = tls_get_ctx(sock->sk);
f66de3ee 1972 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
c46234eb
DW
1973 struct strp_msg *rxm = NULL;
1974 struct sock *sk = sock->sk;
c3f6bb74 1975 struct tls_msg *tlm;
c46234eb
DW
1976 struct sk_buff *skb;
1977 ssize_t copied = 0;
e062fe99 1978 bool from_queue;
c46234eb
DW
1979 int err = 0;
1980 long timeo;
1981 int chunk;
1982
1983 lock_sock(sk);
1984
974271e5 1985 timeo = sock_rcvtimeo(sk, flags & SPLICE_F_NONBLOCK);
c46234eb 1986
e062fe99
JK
1987 from_queue = !skb_queue_empty(&ctx->rx_list);
1988 if (from_queue) {
1989 skb = __skb_dequeue(&ctx->rx_list);
1990 } else {
4175eac3
JK
1991 struct tls_decrypt_arg darg = {};
1992
e062fe99
JK
1993 skb = tls_wait_data(sk, NULL, flags & SPLICE_F_NONBLOCK, timeo,
1994 &err);
1995 if (!skb)
1996 goto splice_read_end;
c46234eb 1997
4175eac3 1998 err = decrypt_skb_update(sk, skb, NULL, &darg);
e062fe99
JK
1999 if (err < 0) {
2000 tls_err_abort(sk, -EBADMSG);
2001 goto splice_read_end;
2002 }
520493f6 2003 }
fedf201e 2004
c3f6bb74
JK
2005 rxm = strp_msg(skb);
2006 tlm = tls_msg(skb);
2007
520493f6 2008 /* splice does not support reading control messages */
c3f6bb74 2009 if (tlm->control != TLS_RECORD_TYPE_DATA) {
520493f6
JK
2010 err = -EINVAL;
2011 goto splice_read_end;
c46234eb 2012 }
520493f6 2013
c46234eb
DW
2014 chunk = min_t(unsigned int, rxm->full_len, len);
2015 copied = skb_splice_bits(skb, sk, rxm->offset, pipe, chunk, flags);
2016 if (copied < 0)
2017 goto splice_read_end;
2018
e062fe99
JK
2019 if (!from_queue) {
2020 ctx->recv_pkt = NULL;
2021 __strp_unpause(&ctx->strp);
2022 }
2023 if (chunk < rxm->full_len) {
2024 __skb_queue_head(&ctx->rx_list, skb);
2025 rxm->offset += len;
2026 rxm->full_len -= len;
2027 } else {
2028 consume_skb(skb);
2029 }
c46234eb
DW
2030
2031splice_read_end:
2032 release_sock(sk);
2033 return copied ? : err;
2034}
2035
7b50ecfc 2036bool tls_sw_sock_is_readable(struct sock *sk)
c46234eb 2037{
c46234eb 2038 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 2039 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
d3b18ad3
JF
2040 bool ingress_empty = true;
2041 struct sk_psock *psock;
c46234eb 2042
d3b18ad3
JF
2043 rcu_read_lock();
2044 psock = sk_psock(sk);
2045 if (psock)
2046 ingress_empty = list_empty(&psock->ingress_msg);
2047 rcu_read_unlock();
c46234eb 2048
13aecb17
JK
2049 return !ingress_empty || ctx->recv_pkt ||
2050 !skb_queue_empty(&ctx->rx_list);
c46234eb
DW
2051}
2052
2053static int tls_read_size(struct strparser *strp, struct sk_buff *skb)
2054{
2055 struct tls_context *tls_ctx = tls_get_ctx(strp->sk);
4509de14 2056 struct tls_prot_info *prot = &tls_ctx->prot_info;
3463e51d 2057 char header[TLS_HEADER_SIZE + MAX_IV_SIZE];
c46234eb 2058 struct strp_msg *rxm = strp_msg(skb);
c3f6bb74 2059 struct tls_msg *tlm = tls_msg(skb);
c46234eb
DW
2060 size_t cipher_overhead;
2061 size_t data_len = 0;
2062 int ret;
2063
2064 /* Verify that we have a full TLS header, or wait for more data */
4509de14 2065 if (rxm->offset + prot->prepend_size > skb->len)
c46234eb
DW
2066 return 0;
2067
3463e51d 2068 /* Sanity-check size of on-stack buffer. */
4509de14 2069 if (WARN_ON(prot->prepend_size > sizeof(header))) {
3463e51d
KC
2070 ret = -EINVAL;
2071 goto read_failure;
2072 }
2073
c46234eb 2074 /* Linearize header to local buffer */
4509de14 2075 ret = skb_copy_bits(skb, rxm->offset, header, prot->prepend_size);
c46234eb
DW
2076 if (ret < 0)
2077 goto read_failure;
2078
863533e3 2079 tlm->decrypted = 0;
c3f6bb74 2080 tlm->control = header[0];
c46234eb
DW
2081
2082 data_len = ((header[4] & 0xFF) | (header[3] << 8));
2083
4509de14 2084 cipher_overhead = prot->tag_size;
a6acbe62
VF
2085 if (prot->version != TLS_1_3_VERSION &&
2086 prot->cipher_type != TLS_CIPHER_CHACHA20_POLY1305)
4509de14 2087 cipher_overhead += prot->iv_size;
c46234eb 2088
130b392c 2089 if (data_len > TLS_MAX_PAYLOAD_SIZE + cipher_overhead +
4509de14 2090 prot->tail_size) {
c46234eb
DW
2091 ret = -EMSGSIZE;
2092 goto read_failure;
2093 }
2094 if (data_len < cipher_overhead) {
2095 ret = -EBADMSG;
2096 goto read_failure;
2097 }
2098
130b392c
DW
2099 /* Note that both TLS1.3 and TLS1.2 use TLS_1_2 version here */
2100 if (header[1] != TLS_1_2_VERSION_MINOR ||
2101 header[2] != TLS_1_2_VERSION_MAJOR) {
c46234eb
DW
2102 ret = -EINVAL;
2103 goto read_failure;
2104 }
be2fbc15 2105
f953d33b 2106 tls_device_rx_resync_new_rec(strp->sk, data_len + TLS_HEADER_SIZE,
fe58a5a0 2107 TCP_SKB_CB(skb)->seq + rxm->offset);
c46234eb
DW
2108 return data_len + TLS_HEADER_SIZE;
2109
2110read_failure:
2111 tls_err_abort(strp->sk, ret);
2112
2113 return ret;
2114}
2115
2116static void tls_queue(struct strparser *strp, struct sk_buff *skb)
2117{
2118 struct tls_context *tls_ctx = tls_get_ctx(strp->sk);
f66de3ee 2119 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
c46234eb
DW
2120
2121 ctx->recv_pkt = skb;
2122 strp_pause(strp);
2123
ad13acce 2124 ctx->saved_data_ready(strp->sk);
c46234eb
DW
2125}
2126
2127static void tls_data_ready(struct sock *sk)
2128{
2129 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 2130 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
d3b18ad3 2131 struct sk_psock *psock;
c46234eb
DW
2132
2133 strp_data_ready(&ctx->strp);
d3b18ad3
JF
2134
2135 psock = sk_psock_get(sk);
62b4011f
XY
2136 if (psock) {
2137 if (!list_empty(&psock->ingress_msg))
2138 ctx->saved_data_ready(sk);
d3b18ad3
JF
2139 sk_psock_put(sk, psock);
2140 }
c46234eb
DW
2141}
2142
f87e62d4
JF
2143void tls_sw_cancel_work_tx(struct tls_context *tls_ctx)
2144{
2145 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
2146
2147 set_bit(BIT_TX_CLOSING, &ctx->tx_bitmask);
2148 set_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask);
2149 cancel_delayed_work_sync(&ctx->tx_work.work);
2150}
2151
313ab004 2152void tls_sw_release_resources_tx(struct sock *sk)
3c4d7559
DW
2153{
2154 struct tls_context *tls_ctx = tls_get_ctx(sk);
f66de3ee 2155 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
a42055e8 2156 struct tls_rec *rec, *tmp;
38f7e1c0 2157 int pending;
a42055e8
VG
2158
2159 /* Wait for any pending async encryptions to complete */
38f7e1c0
RM
2160 spin_lock_bh(&ctx->encrypt_compl_lock);
2161 ctx->async_notify = true;
2162 pending = atomic_read(&ctx->encrypt_pending);
2163 spin_unlock_bh(&ctx->encrypt_compl_lock);
2164
2165 if (pending)
a42055e8
VG
2166 crypto_wait_req(-EINPROGRESS, &ctx->async_wait);
2167
a42055e8
VG
2168 tls_tx_records(sk, -1);
2169
9932a29a 2170 /* Free up un-sent records in tx_list. First, free
a42055e8
VG
2171 * the partially sent record if any at head of tx_list.
2172 */
c5daa6cc
JK
2173 if (tls_ctx->partially_sent_record) {
2174 tls_free_partial_record(sk, tls_ctx);
9932a29a 2175 rec = list_first_entry(&ctx->tx_list,
a42055e8
VG
2176 struct tls_rec, list);
2177 list_del(&rec->list);
d829e9c4 2178 sk_msg_free(sk, &rec->msg_plaintext);
a42055e8
VG
2179 kfree(rec);
2180 }
2181
9932a29a 2182 list_for_each_entry_safe(rec, tmp, &ctx->tx_list, list) {
a42055e8 2183 list_del(&rec->list);
d829e9c4
DB
2184 sk_msg_free(sk, &rec->msg_encrypted);
2185 sk_msg_free(sk, &rec->msg_plaintext);
a42055e8
VG
2186 kfree(rec);
2187 }
3c4d7559 2188
201876b3 2189 crypto_free_aead(ctx->aead_send);
c774973e 2190 tls_free_open_rec(sk);
313ab004
JF
2191}
2192
2193void tls_sw_free_ctx_tx(struct tls_context *tls_ctx)
2194{
2195 struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);
f66de3ee
BP
2196
2197 kfree(ctx);
2198}
2199
39f56e1a 2200void tls_sw_release_resources_rx(struct sock *sk)
f66de3ee
BP
2201{
2202 struct tls_context *tls_ctx = tls_get_ctx(sk);
2203 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
2204
12c76861
JK
2205 kfree(tls_ctx->rx.rec_seq);
2206 kfree(tls_ctx->rx.iv);
2207
c46234eb 2208 if (ctx->aead_recv) {
201876b3
VG
2209 kfree_skb(ctx->recv_pkt);
2210 ctx->recv_pkt = NULL;
a30295c4 2211 __skb_queue_purge(&ctx->rx_list);
c46234eb
DW
2212 crypto_free_aead(ctx->aead_recv);
2213 strp_stop(&ctx->strp);
313ab004
JF
2214 /* If tls_sw_strparser_arm() was not called (cleanup paths)
2215 * we still want to strp_stop(), but sk->sk_data_ready was
2216 * never swapped.
2217 */
2218 if (ctx->saved_data_ready) {
2219 write_lock_bh(&sk->sk_callback_lock);
2220 sk->sk_data_ready = ctx->saved_data_ready;
2221 write_unlock_bh(&sk->sk_callback_lock);
2222 }
c46234eb 2223 }
39f56e1a
BP
2224}
2225
313ab004 2226void tls_sw_strparser_done(struct tls_context *tls_ctx)
39f56e1a 2227{
39f56e1a
BP
2228 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
2229
313ab004
JF
2230 strp_done(&ctx->strp);
2231}
2232
2233void tls_sw_free_ctx_rx(struct tls_context *tls_ctx)
2234{
2235 struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
3c4d7559 2236
3c4d7559
DW
2237 kfree(ctx);
2238}
2239
313ab004
JF
2240void tls_sw_free_resources_rx(struct sock *sk)
2241{
2242 struct tls_context *tls_ctx = tls_get_ctx(sk);
2243
2244 tls_sw_release_resources_rx(sk);
2245 tls_sw_free_ctx_rx(tls_ctx);
2246}
2247
9932a29a 2248/* The work handler to transmitt the encrypted records in tx_list */
a42055e8
VG
2249static void tx_work_handler(struct work_struct *work)
2250{
2251 struct delayed_work *delayed_work = to_delayed_work(work);
2252 struct tx_work *tx_work = container_of(delayed_work,
2253 struct tx_work, work);
2254 struct sock *sk = tx_work->sk;
2255 struct tls_context *tls_ctx = tls_get_ctx(sk);
f87e62d4 2256 struct tls_sw_context_tx *ctx;
a42055e8 2257
f87e62d4 2258 if (unlikely(!tls_ctx))
a42055e8
VG
2259 return;
2260
f87e62d4
JF
2261 ctx = tls_sw_ctx_tx(tls_ctx);
2262 if (test_bit(BIT_TX_CLOSING, &ctx->tx_bitmask))
2263 return;
2264
2265 if (!test_and_clear_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask))
2266 return;
79ffe608 2267 mutex_lock(&tls_ctx->tx_lock);
a42055e8
VG
2268 lock_sock(sk);
2269 tls_tx_records(sk, -1);
2270 release_sock(sk);
79ffe608 2271 mutex_unlock(&tls_ctx->tx_lock);
a42055e8
VG
2272}
2273
7463d3a2
BP
2274void tls_sw_write_space(struct sock *sk, struct tls_context *ctx)
2275{
2276 struct tls_sw_context_tx *tx_ctx = tls_sw_ctx_tx(ctx);
2277
2278 /* Schedule the transmission if tx list is ready */
02b1fa07
JK
2279 if (is_tx_ready(tx_ctx) &&
2280 !test_and_set_bit(BIT_TX_SCHEDULED, &tx_ctx->tx_bitmask))
2281 schedule_delayed_work(&tx_ctx->tx_work.work, 0);
7463d3a2
BP
2282}
2283
318892ac
JK
2284void tls_sw_strparser_arm(struct sock *sk, struct tls_context *tls_ctx)
2285{
2286 struct tls_sw_context_rx *rx_ctx = tls_sw_ctx_rx(tls_ctx);
2287
2288 write_lock_bh(&sk->sk_callback_lock);
2289 rx_ctx->saved_data_ready = sk->sk_data_ready;
2290 sk->sk_data_ready = tls_data_ready;
2291 write_unlock_bh(&sk->sk_callback_lock);
2292
2293 strp_check_rcv(&rx_ctx->strp);
2294}
2295
88527790
JK
2296void tls_update_rx_zc_capable(struct tls_context *tls_ctx)
2297{
2298 struct tls_sw_context_rx *rx_ctx = tls_sw_ctx_rx(tls_ctx);
2299
2300 rx_ctx->zc_capable = tls_ctx->rx_no_pad ||
2301 tls_ctx->prot_info.version != TLS_1_3_VERSION;
2302}
2303
c46234eb 2304int tls_set_sw_offload(struct sock *sk, struct tls_context *ctx, int tx)
3c4d7559 2305{
4509de14
VG
2306 struct tls_context *tls_ctx = tls_get_ctx(sk);
2307 struct tls_prot_info *prot = &tls_ctx->prot_info;
3c4d7559 2308 struct tls_crypto_info *crypto_info;
f66de3ee
BP
2309 struct tls_sw_context_tx *sw_ctx_tx = NULL;
2310 struct tls_sw_context_rx *sw_ctx_rx = NULL;
c46234eb
DW
2311 struct cipher_context *cctx;
2312 struct crypto_aead **aead;
2313 struct strp_callbacks cb;
f295b3ae 2314 u16 nonce_size, tag_size, iv_size, rec_seq_size, salt_size;
692d7b5d 2315 struct crypto_tfm *tfm;
f295b3ae 2316 char *iv, *rec_seq, *key, *salt, *cipher_name;
fb99bce7 2317 size_t keysize;
3c4d7559
DW
2318 int rc = 0;
2319
2320 if (!ctx) {
2321 rc = -EINVAL;
2322 goto out;
2323 }
2324
f66de3ee 2325 if (tx) {
b190a587
BP
2326 if (!ctx->priv_ctx_tx) {
2327 sw_ctx_tx = kzalloc(sizeof(*sw_ctx_tx), GFP_KERNEL);
2328 if (!sw_ctx_tx) {
2329 rc = -ENOMEM;
2330 goto out;
2331 }
2332 ctx->priv_ctx_tx = sw_ctx_tx;
2333 } else {
2334 sw_ctx_tx =
2335 (struct tls_sw_context_tx *)ctx->priv_ctx_tx;
c46234eb 2336 }
c46234eb 2337 } else {
b190a587
BP
2338 if (!ctx->priv_ctx_rx) {
2339 sw_ctx_rx = kzalloc(sizeof(*sw_ctx_rx), GFP_KERNEL);
2340 if (!sw_ctx_rx) {
2341 rc = -ENOMEM;
2342 goto out;
2343 }
2344 ctx->priv_ctx_rx = sw_ctx_rx;
2345 } else {
2346 sw_ctx_rx =
2347 (struct tls_sw_context_rx *)ctx->priv_ctx_rx;
f66de3ee 2348 }
3c4d7559
DW
2349 }
2350
c46234eb 2351 if (tx) {
b190a587 2352 crypto_init_wait(&sw_ctx_tx->async_wait);
0cada332 2353 spin_lock_init(&sw_ctx_tx->encrypt_compl_lock);
86029d10 2354 crypto_info = &ctx->crypto_send.info;
c46234eb 2355 cctx = &ctx->tx;
f66de3ee 2356 aead = &sw_ctx_tx->aead_send;
9932a29a 2357 INIT_LIST_HEAD(&sw_ctx_tx->tx_list);
a42055e8
VG
2358 INIT_DELAYED_WORK(&sw_ctx_tx->tx_work.work, tx_work_handler);
2359 sw_ctx_tx->tx_work.sk = sk;
c46234eb 2360 } else {
b190a587 2361 crypto_init_wait(&sw_ctx_rx->async_wait);
0cada332 2362 spin_lock_init(&sw_ctx_rx->decrypt_compl_lock);
86029d10 2363 crypto_info = &ctx->crypto_recv.info;
c46234eb 2364 cctx = &ctx->rx;
692d7b5d 2365 skb_queue_head_init(&sw_ctx_rx->rx_list);
f66de3ee 2366 aead = &sw_ctx_rx->aead_recv;
c46234eb
DW
2367 }
2368
3c4d7559
DW
2369 switch (crypto_info->cipher_type) {
2370 case TLS_CIPHER_AES_GCM_128: {
dc2724a6
TZ
2371 struct tls12_crypto_info_aes_gcm_128 *gcm_128_info;
2372
2373 gcm_128_info = (void *)crypto_info;
3c4d7559
DW
2374 nonce_size = TLS_CIPHER_AES_GCM_128_IV_SIZE;
2375 tag_size = TLS_CIPHER_AES_GCM_128_TAG_SIZE;
2376 iv_size = TLS_CIPHER_AES_GCM_128_IV_SIZE;
dc2724a6 2377 iv = gcm_128_info->iv;
3c4d7559 2378 rec_seq_size = TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE;
dc2724a6 2379 rec_seq = gcm_128_info->rec_seq;
fb99bce7
DW
2380 keysize = TLS_CIPHER_AES_GCM_128_KEY_SIZE;
2381 key = gcm_128_info->key;
2382 salt = gcm_128_info->salt;
f295b3ae
VG
2383 salt_size = TLS_CIPHER_AES_GCM_128_SALT_SIZE;
2384 cipher_name = "gcm(aes)";
fb99bce7
DW
2385 break;
2386 }
2387 case TLS_CIPHER_AES_GCM_256: {
dc2724a6
TZ
2388 struct tls12_crypto_info_aes_gcm_256 *gcm_256_info;
2389
2390 gcm_256_info = (void *)crypto_info;
fb99bce7
DW
2391 nonce_size = TLS_CIPHER_AES_GCM_256_IV_SIZE;
2392 tag_size = TLS_CIPHER_AES_GCM_256_TAG_SIZE;
2393 iv_size = TLS_CIPHER_AES_GCM_256_IV_SIZE;
dc2724a6 2394 iv = gcm_256_info->iv;
fb99bce7 2395 rec_seq_size = TLS_CIPHER_AES_GCM_256_REC_SEQ_SIZE;
dc2724a6 2396 rec_seq = gcm_256_info->rec_seq;
fb99bce7
DW
2397 keysize = TLS_CIPHER_AES_GCM_256_KEY_SIZE;
2398 key = gcm_256_info->key;
2399 salt = gcm_256_info->salt;
f295b3ae
VG
2400 salt_size = TLS_CIPHER_AES_GCM_256_SALT_SIZE;
2401 cipher_name = "gcm(aes)";
2402 break;
2403 }
2404 case TLS_CIPHER_AES_CCM_128: {
dc2724a6
TZ
2405 struct tls12_crypto_info_aes_ccm_128 *ccm_128_info;
2406
2407 ccm_128_info = (void *)crypto_info;
f295b3ae
VG
2408 nonce_size = TLS_CIPHER_AES_CCM_128_IV_SIZE;
2409 tag_size = TLS_CIPHER_AES_CCM_128_TAG_SIZE;
2410 iv_size = TLS_CIPHER_AES_CCM_128_IV_SIZE;
dc2724a6 2411 iv = ccm_128_info->iv;
f295b3ae 2412 rec_seq_size = TLS_CIPHER_AES_CCM_128_REC_SEQ_SIZE;
dc2724a6 2413 rec_seq = ccm_128_info->rec_seq;
f295b3ae
VG
2414 keysize = TLS_CIPHER_AES_CCM_128_KEY_SIZE;
2415 key = ccm_128_info->key;
2416 salt = ccm_128_info->salt;
2417 salt_size = TLS_CIPHER_AES_CCM_128_SALT_SIZE;
2418 cipher_name = "ccm(aes)";
3c4d7559
DW
2419 break;
2420 }
74ea6106 2421 case TLS_CIPHER_CHACHA20_POLY1305: {
dc2724a6
TZ
2422 struct tls12_crypto_info_chacha20_poly1305 *chacha20_poly1305_info;
2423
74ea6106
VF
2424 chacha20_poly1305_info = (void *)crypto_info;
2425 nonce_size = 0;
2426 tag_size = TLS_CIPHER_CHACHA20_POLY1305_TAG_SIZE;
2427 iv_size = TLS_CIPHER_CHACHA20_POLY1305_IV_SIZE;
2428 iv = chacha20_poly1305_info->iv;
2429 rec_seq_size = TLS_CIPHER_CHACHA20_POLY1305_REC_SEQ_SIZE;
2430 rec_seq = chacha20_poly1305_info->rec_seq;
2431 keysize = TLS_CIPHER_CHACHA20_POLY1305_KEY_SIZE;
2432 key = chacha20_poly1305_info->key;
2433 salt = chacha20_poly1305_info->salt;
2434 salt_size = TLS_CIPHER_CHACHA20_POLY1305_SALT_SIZE;
2435 cipher_name = "rfc7539(chacha20,poly1305)";
2436 break;
2437 }
227b9644
TZ
2438 case TLS_CIPHER_SM4_GCM: {
2439 struct tls12_crypto_info_sm4_gcm *sm4_gcm_info;
2440
2441 sm4_gcm_info = (void *)crypto_info;
2442 nonce_size = TLS_CIPHER_SM4_GCM_IV_SIZE;
2443 tag_size = TLS_CIPHER_SM4_GCM_TAG_SIZE;
2444 iv_size = TLS_CIPHER_SM4_GCM_IV_SIZE;
2445 iv = sm4_gcm_info->iv;
2446 rec_seq_size = TLS_CIPHER_SM4_GCM_REC_SEQ_SIZE;
2447 rec_seq = sm4_gcm_info->rec_seq;
2448 keysize = TLS_CIPHER_SM4_GCM_KEY_SIZE;
2449 key = sm4_gcm_info->key;
2450 salt = sm4_gcm_info->salt;
2451 salt_size = TLS_CIPHER_SM4_GCM_SALT_SIZE;
2452 cipher_name = "gcm(sm4)";
2453 break;
2454 }
2455 case TLS_CIPHER_SM4_CCM: {
2456 struct tls12_crypto_info_sm4_ccm *sm4_ccm_info;
2457
2458 sm4_ccm_info = (void *)crypto_info;
2459 nonce_size = TLS_CIPHER_SM4_CCM_IV_SIZE;
2460 tag_size = TLS_CIPHER_SM4_CCM_TAG_SIZE;
2461 iv_size = TLS_CIPHER_SM4_CCM_IV_SIZE;
2462 iv = sm4_ccm_info->iv;
2463 rec_seq_size = TLS_CIPHER_SM4_CCM_REC_SEQ_SIZE;
2464 rec_seq = sm4_ccm_info->rec_seq;
2465 keysize = TLS_CIPHER_SM4_CCM_KEY_SIZE;
2466 key = sm4_ccm_info->key;
2467 salt = sm4_ccm_info->salt;
2468 salt_size = TLS_CIPHER_SM4_CCM_SALT_SIZE;
2469 cipher_name = "ccm(sm4)";
2470 break;
2471 }
3c4d7559
DW
2472 default:
2473 rc = -EINVAL;
cf6d43ef 2474 goto free_priv;
3c4d7559
DW
2475 }
2476
130b392c
DW
2477 if (crypto_info->version == TLS_1_3_VERSION) {
2478 nonce_size = 0;
4509de14
VG
2479 prot->aad_size = TLS_HEADER_SIZE;
2480 prot->tail_size = 1;
130b392c 2481 } else {
4509de14
VG
2482 prot->aad_size = TLS_AAD_SPACE_SIZE;
2483 prot->tail_size = 0;
130b392c
DW
2484 }
2485
50a07aa5
JK
2486 /* Sanity-check the sizes for stack allocations. */
2487 if (iv_size > MAX_IV_SIZE || nonce_size > MAX_IV_SIZE ||
2488 rec_seq_size > TLS_MAX_REC_SEQ_SIZE || tag_size != TLS_TAG_SIZE ||
2489 prot->aad_size > TLS_MAX_AAD_SIZE) {
2490 rc = -EINVAL;
2491 goto free_priv;
2492 }
2493
4509de14
VG
2494 prot->version = crypto_info->version;
2495 prot->cipher_type = crypto_info->cipher_type;
2496 prot->prepend_size = TLS_HEADER_SIZE + nonce_size;
2497 prot->tag_size = tag_size;
2498 prot->overhead_size = prot->prepend_size +
2499 prot->tag_size + prot->tail_size;
2500 prot->iv_size = iv_size;
f295b3ae
VG
2501 prot->salt_size = salt_size;
2502 cctx->iv = kmalloc(iv_size + salt_size, GFP_KERNEL);
c46234eb 2503 if (!cctx->iv) {
3c4d7559 2504 rc = -ENOMEM;
cf6d43ef 2505 goto free_priv;
3c4d7559 2506 }
fb99bce7 2507 /* Note: 128 & 256 bit salt are the same size */
4509de14 2508 prot->rec_seq_size = rec_seq_size;
f295b3ae
VG
2509 memcpy(cctx->iv, salt, salt_size);
2510 memcpy(cctx->iv + salt_size, iv, iv_size);
969d5090 2511 cctx->rec_seq = kmemdup(rec_seq, rec_seq_size, GFP_KERNEL);
c46234eb 2512 if (!cctx->rec_seq) {
3c4d7559
DW
2513 rc = -ENOMEM;
2514 goto free_iv;
2515 }
c46234eb 2516
c46234eb 2517 if (!*aead) {
f295b3ae 2518 *aead = crypto_alloc_aead(cipher_name, 0, 0);
c46234eb
DW
2519 if (IS_ERR(*aead)) {
2520 rc = PTR_ERR(*aead);
2521 *aead = NULL;
3c4d7559
DW
2522 goto free_rec_seq;
2523 }
2524 }
2525
2526 ctx->push_pending_record = tls_sw_push_pending_record;
2527
fb99bce7
DW
2528 rc = crypto_aead_setkey(*aead, key, keysize);
2529
3c4d7559
DW
2530 if (rc)
2531 goto free_aead;
2532
4509de14 2533 rc = crypto_aead_setauthsize(*aead, prot->tag_size);
c46234eb
DW
2534 if (rc)
2535 goto free_aead;
2536
f66de3ee 2537 if (sw_ctx_rx) {
692d7b5d 2538 tfm = crypto_aead_tfm(sw_ctx_rx->aead_recv);
8497ded2 2539
88527790
JK
2540 tls_update_rx_zc_capable(ctx);
2541 sw_ctx_rx->async_capable =
2542 crypto_info->version != TLS_1_3_VERSION &&
2543 !!(tfm->__crt_alg->cra_flags & CRYPTO_ALG_ASYNC);
692d7b5d 2544
c46234eb
DW
2545 /* Set up strparser */
2546 memset(&cb, 0, sizeof(cb));
2547 cb.rcv_msg = tls_queue;
2548 cb.parse_msg = tls_read_size;
2549
f66de3ee 2550 strp_init(&sw_ctx_rx->strp, sk, &cb);
c46234eb
DW
2551 }
2552
2553 goto out;
3c4d7559
DW
2554
2555free_aead:
c46234eb
DW
2556 crypto_free_aead(*aead);
2557 *aead = NULL;
3c4d7559 2558free_rec_seq:
c46234eb
DW
2559 kfree(cctx->rec_seq);
2560 cctx->rec_seq = NULL;
3c4d7559 2561free_iv:
f66de3ee
BP
2562 kfree(cctx->iv);
2563 cctx->iv = NULL;
cf6d43ef 2564free_priv:
f66de3ee
BP
2565 if (tx) {
2566 kfree(ctx->priv_ctx_tx);
2567 ctx->priv_ctx_tx = NULL;
2568 } else {
2569 kfree(ctx->priv_ctx_rx);
2570 ctx->priv_ctx_rx = NULL;
2571 }
3c4d7559
DW
2572out:
2573 return rc;
2574}