Skip to content

Commit 5e52fff

Browse files
jbainbrigregkh
authored andcommitted
ipv6: check raw payload size correctly in ioctl
[ Upstream commit 105f5528b9bbaa08b526d3405a5bcd2ff0c953c8 ] In situations where an skb is paged, the transport header pointer and tail pointer can be the same because the skb contents are in frags. This results in ioctl(SIOCINQ/FIONREAD) incorrectly returning a length of 0 when the length to receive is actually greater than zero. skb->len is already correctly set in ip6_input_finish() with pskb_pull(), so use skb->len as it always returns the correct result for both linear and paged data. Signed-off-by: Jamie Bainbridge <jbainbri@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent befb925 commit 5e52fff

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

net/ipv6/raw.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,8 +1144,7 @@ static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
11441144
spin_lock_bh(&sk->sk_receive_queue.lock);
11451145
skb = skb_peek(&sk->sk_receive_queue);
11461146
if (skb)
1147-
amount = skb_tail_pointer(skb) -
1148-
skb_transport_header(skb);
1147+
amount = skb->len;
11491148
spin_unlock_bh(&sk->sk_receive_queue.lock);
11501149
return put_user(amount, (int __user *)arg);
11511150
}

0 commit comments

Comments
 (0)