tls: rx: init decrypted status in tls_read_size()
authorJakub Kicinski <kuba@kernel.org>
Fri, 8 Apr 2022 03:38:18 +0000 (20:38 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 8 Apr 2022 10:49:08 +0000 (11:49 +0100)
We set the record type in tls_read_size(), can as well init
the tlm->decrypted field there.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tls/tls_sw.c

index 26f3346..34e74b2 100644 (file)
@@ -2101,10 +2101,10 @@ static int tls_read_size(struct strparser *strp, struct sk_buff *skb)
 
        /* Linearize header to local buffer */
        ret = skb_copy_bits(skb, rxm->offset, header, prot->prepend_size);
-
        if (ret < 0)
                goto read_failure;
 
+       tlm->decrypted = 0;
        tlm->control = header[0];
 
        data_len = ((header[4] & 0xFF) | (header[3] << 8));
@@ -2145,9 +2145,6 @@ static void tls_queue(struct strparser *strp, struct sk_buff *skb)
 {
        struct tls_context *tls_ctx = tls_get_ctx(strp->sk);
        struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx);
-       struct tls_msg *tlm = tls_msg(skb);
-
-       tlm->decrypted = 0;
 
        ctx->recv_pkt = skb;
        strp_pause(strp);