mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-10-23 07:23:12 +02:00
tls: rx: coalesce exit paths in tls_decrypt_sg()
Jump to the free() call, instead of having to remember to free the memory in multiple places. Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
b89fec54fd
commit
03957d8405
|
@ -1491,10 +1491,8 @@ static int decrypt_internal(struct sock *sk, struct sk_buff *skb,
|
||||||
err = skb_copy_bits(skb, rxm->offset + TLS_HEADER_SIZE,
|
err = skb_copy_bits(skb, rxm->offset + TLS_HEADER_SIZE,
|
||||||
&dctx->iv[iv_offset] + prot->salt_size,
|
&dctx->iv[iv_offset] + prot->salt_size,
|
||||||
prot->iv_size);
|
prot->iv_size);
|
||||||
if (err < 0) {
|
if (err < 0)
|
||||||
kfree(mem);
|
goto exit_free;
|
||||||
return err;
|
|
||||||
}
|
|
||||||
memcpy(&dctx->iv[iv_offset], tls_ctx->rx.iv, prot->salt_size);
|
memcpy(&dctx->iv[iv_offset], tls_ctx->rx.iv, prot->salt_size);
|
||||||
}
|
}
|
||||||
xor_iv_with_seq(prot, &dctx->iv[iv_offset], tls_ctx->rx.rec_seq);
|
xor_iv_with_seq(prot, &dctx->iv[iv_offset], tls_ctx->rx.rec_seq);
|
||||||
|
@ -1510,10 +1508,8 @@ static int decrypt_internal(struct sock *sk, struct sk_buff *skb,
|
||||||
err = skb_to_sgvec(skb, &sgin[1],
|
err = skb_to_sgvec(skb, &sgin[1],
|
||||||
rxm->offset + prot->prepend_size,
|
rxm->offset + prot->prepend_size,
|
||||||
rxm->full_len - prot->prepend_size);
|
rxm->full_len - prot->prepend_size);
|
||||||
if (err < 0) {
|
if (err < 0)
|
||||||
kfree(mem);
|
goto exit_free;
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (n_sgout) {
|
if (n_sgout) {
|
||||||
if (out_iov) {
|
if (out_iov) {
|
||||||
|
@ -1556,7 +1552,7 @@ fallback_to_reg_recv:
|
||||||
/* Release the pages in case iov was mapped to pages */
|
/* Release the pages in case iov was mapped to pages */
|
||||||
for (; pages > 0; pages--)
|
for (; pages > 0; pages--)
|
||||||
put_page(sg_page(&sgout[pages]));
|
put_page(sg_page(&sgout[pages]));
|
||||||
|
exit_free:
|
||||||
kfree(mem);
|
kfree(mem);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user