mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 18:55:12 +00:00
Revert "net: add length argument to skb_copy_and_csum_datagram_iovec"
This reverts commit c507639ba9
.
As reported by Michal Kubecek, this fix doesn't handle truncated
reads correctly. Next patch from Eric fixes it better.
Signed-off-by: Willy Tarreau <w@1wt.eu>
This commit is contained in:
parent
6e5577bfd9
commit
d699b47f3c
@ -1765,8 +1765,7 @@ extern int skb_copy_datagram_iovec(const struct sk_buff *from,
|
||||
int size);
|
||||
extern int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
|
||||
int hlen,
|
||||
struct iovec *iov,
|
||||
int len);
|
||||
struct iovec *iov);
|
||||
extern int skb_copy_datagram_from_iovec(struct sk_buff *skb,
|
||||
int offset,
|
||||
const struct iovec *from,
|
||||
|
@ -693,7 +693,6 @@ EXPORT_SYMBOL(__skb_checksum_complete);
|
||||
* @skb: skbuff
|
||||
* @hlen: hardware length
|
||||
* @iov: io vector
|
||||
* @len: amount of data to copy from skb to iov
|
||||
*
|
||||
* Caller _must_ check that skb will fit to this iovec.
|
||||
*
|
||||
@ -703,14 +702,11 @@ EXPORT_SYMBOL(__skb_checksum_complete);
|
||||
* can be modified!
|
||||
*/
|
||||
int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
|
||||
int hlen, struct iovec *iov, int len)
|
||||
int hlen, struct iovec *iov)
|
||||
{
|
||||
__wsum csum;
|
||||
int chunk = skb->len - hlen;
|
||||
|
||||
if (chunk > len)
|
||||
chunk = len;
|
||||
|
||||
if (!chunk)
|
||||
return 0;
|
||||
|
||||
|
@ -4985,7 +4985,7 @@ static int tcp_copy_to_iovec(struct sock *sk, struct sk_buff *skb, int hlen)
|
||||
err = skb_copy_datagram_iovec(skb, hlen, tp->ucopy.iov, chunk);
|
||||
else
|
||||
err = skb_copy_and_csum_datagram_iovec(skb, hlen,
|
||||
tp->ucopy.iov, chunk);
|
||||
tp->ucopy.iov);
|
||||
|
||||
if (!err) {
|
||||
tp->ucopy.len -= chunk;
|
||||
|
@ -975,7 +975,7 @@ int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
|
||||
else {
|
||||
err = skb_copy_and_csum_datagram_iovec(skb,
|
||||
sizeof(struct udphdr),
|
||||
msg->msg_iov, copied);
|
||||
msg->msg_iov);
|
||||
|
||||
if (err == -EINVAL)
|
||||
goto csum_copy_err;
|
||||
|
@ -476,7 +476,7 @@ static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
|
||||
goto csum_copy_err;
|
||||
err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
|
||||
} else {
|
||||
err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov, copied);
|
||||
err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
|
||||
if (err == -EINVAL)
|
||||
goto csum_copy_err;
|
||||
}
|
||||
|
@ -233,8 +233,7 @@ int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
|
||||
err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
|
||||
msg->msg_iov, copied );
|
||||
else {
|
||||
err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr),
|
||||
msg->msg_iov, copied);
|
||||
err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
|
||||
if (err == -EINVAL)
|
||||
goto csum_copy_err;
|
||||
}
|
||||
|
@ -184,8 +184,7 @@ int rxrpc_recvmsg(struct kiocb *iocb, struct socket *sock,
|
||||
msg->msg_iov, copy);
|
||||
} else {
|
||||
ret = skb_copy_and_csum_datagram_iovec(skb, offset,
|
||||
msg->msg_iov,
|
||||
copy);
|
||||
msg->msg_iov);
|
||||
if (ret == -EINVAL)
|
||||
goto csum_copy_error;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user