* [PATCH net-next v2 1/2] tls: Remove dead code in tls_sw_sendmsg
2018-07-26 14:59 [PATCH net-next v2 0/2] tls: Fix improper revert in zerocopy_from_iter Doron Roberts-Kedes
@ 2018-07-26 14:59 ` Doron Roberts-Kedes
2018-07-26 14:59 ` [PATCH net-next v2 2/2] tls: Fix improper revert in zerocopy_from_iter Doron Roberts-Kedes
2018-07-29 5:53 ` [PATCH net-next v2 0/2] " David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Doron Roberts-Kedes @ 2018-07-26 14:59 UTC (permalink / raw)
To: David S . Miller
Cc: Vakul Garg, Dave Watson, Matt Mullins, netdev,
Doron Roberts-Kedes
tls_push_record either returns 0 on success or a negative value on failure.
This patch removes code that would only be executed if tls_push_record
were to return a positive value.
Signed-off-by: Doron Roberts-Kedes <doronrk@fb.com>
---
net/tls/tls_sw.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c
index 03f1370f5db1..0279bc4a168b 100644
--- a/net/tls/tls_sw.c
+++ b/net/tls/tls_sw.c
@@ -423,12 +423,10 @@ int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
copied += try_to_copy;
ret = tls_push_record(sk, msg->msg_flags, record_type);
- if (!ret)
- continue;
- if (ret < 0)
+ if (ret)
goto send_end;
+ continue;
- copied -= try_to_copy;
fallback_to_reg_send:
iov_iter_revert(&msg->msg_iter,
ctx->sg_plaintext_size - orig_size);
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH net-next v2 2/2] tls: Fix improper revert in zerocopy_from_iter
2018-07-26 14:59 [PATCH net-next v2 0/2] tls: Fix improper revert in zerocopy_from_iter Doron Roberts-Kedes
2018-07-26 14:59 ` [PATCH net-next v2 1/2] tls: Remove dead code in tls_sw_sendmsg Doron Roberts-Kedes
@ 2018-07-26 14:59 ` Doron Roberts-Kedes
2018-07-29 5:53 ` [PATCH net-next v2 0/2] " David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Doron Roberts-Kedes @ 2018-07-26 14:59 UTC (permalink / raw)
To: David S . Miller
Cc: Vakul Garg, Dave Watson, Matt Mullins, netdev,
Doron Roberts-Kedes
The current code is problematic because the iov_iter is reverted and
never advanced in the non-error case. This patch skips the revert in the
non-error case. This patch also fixes the amount by which the iov_iter
is reverted. Currently, iov_iter is reverted by size, which can be
greater than the amount by which the iter was actually advanced.
Instead, only revert by the amount that the iter was advanced.
Fixes: 4718799817c5 ("tls: Fix zerocopy_from_iter iov handling")
Signed-off-by: Doron Roberts-Kedes <doronrk@fb.com>
---
net/tls/tls_sw.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c
index 0279bc4a168b..190b0aa79c85 100644
--- a/net/tls/tls_sw.c
+++ b/net/tls/tls_sw.c
@@ -263,7 +263,7 @@ static int zerocopy_from_iter(struct sock *sk, struct iov_iter *from,
int length, int *pages_used,
unsigned int *size_used,
struct scatterlist *to, int to_max_pages,
- bool charge, bool revert)
+ bool charge)
{
struct page *pages[MAX_SKB_FRAGS];
@@ -312,10 +312,10 @@ static int zerocopy_from_iter(struct sock *sk, struct iov_iter *from,
}
out:
+ if (rc)
+ iov_iter_revert(from, size - *size_used);
*size_used = size;
*pages_used = num_elem;
- if (revert)
- iov_iter_revert(from, size);
return rc;
}
@@ -417,7 +417,7 @@ int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
&ctx->sg_plaintext_size,
ctx->sg_plaintext_data,
ARRAY_SIZE(ctx->sg_plaintext_data),
- true, false);
+ true);
if (ret)
goto fallback_to_reg_send;
@@ -428,8 +428,6 @@ int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
continue;
fallback_to_reg_send:
- iov_iter_revert(&msg->msg_iter,
- ctx->sg_plaintext_size - orig_size);
trim_sg(sk, ctx->sg_plaintext_data,
&ctx->sg_plaintext_num_elem,
&ctx->sg_plaintext_size,
@@ -833,7 +831,7 @@ int tls_sw_recvmsg(struct sock *sk,
err = zerocopy_from_iter(sk, &msg->msg_iter,
to_copy, &pages,
&chunk, &sgin[1],
- MAX_SKB_FRAGS, false, true);
+ MAX_SKB_FRAGS, false);
if (err < 0)
goto fallback_to_reg_recv;
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread