All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix frag list handling in TCP splice receive
@ 2008-05-17 13:36 Octavian Purdila
  2008-05-21  8:05 ` Octavian Purdila
  0 siblings, 1 reply; 4+ messages in thread
From: Octavian Purdila @ 2008-05-17 13:36 UTC (permalink / raw)
  To: netdev

If an skb does not have fragments but its fragment list is not empty (can
happen, via LRO at least) and a previous tcp_read_sock has consumed
the linear part of the skb then __skb_splice_bits:

(a) incorrectly reports an error and

(b) forgets to update the offset to account for the linear part

Any of the two problems will cause the subsequent __skb_splice_bits call
(the one that handles the fragment list skbs) to either skip data, or, if the
unadjusted offset is greater then the size of the next skb, make
tcp_splice_read loop forever.

Signed-off-by: Octavian Purdila <opurdila@ixiacom.com>
---
 net/core/skbuff.c |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 2e4fcd9..0a9002b 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -1198,12 +1198,14 @@ static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
 {
 	unsigned int nr_pages = spd->nr_pages;
 	unsigned int poff, plen, len, toff, tlen;
-	int headlen, seg;
+	int headlen, seg, error = 0;
 
 	toff = *offset;
 	tlen = *total_len;
-	if (!tlen)
+	if (!tlen) {
+		error = 1;
 		goto err;
+	}
 
 	/*
 	 * if the offset is greater than the linear part, go directly to
@@ -1245,7 +1247,8 @@ static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
 		 * just jump directly to update and return, no point
 		 * in going over fragments when the output is full.
 		 */
-		if (spd_fill_page(spd, virt_to_page(p), plen, poff, skb))
+		error = spd_fill_page(spd, virt_to_page(p), plen, poff, skb);
+		if (error)
 			goto done;
 
 		tlen -= plen;
@@ -1275,7 +1278,8 @@ map_frag:
 		if (!plen)
 			break;
 
-		if (spd_fill_page(spd, f->page, plen, poff, skb))
+		error = spd_fill_page(spd, f->page, plen, poff, skb);
+		if (error)
 			break;
 
 		tlen -= plen;
@@ -1288,7 +1292,10 @@ done:
 		return 0;
 	}
 err:
-	return 1;
+	/* update the offset to reflect the linear part skip, if any */
+	if (!error)
+		*offset = toff;
+	return error;
 }
 
 /*
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix frag list handling in TCP splice receive
  2008-05-17 13:36 [PATCH] Fix frag list handling in TCP splice receive Octavian Purdila
@ 2008-05-21  8:05 ` Octavian Purdila
  2008-05-21  8:13   ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Octavian Purdila @ 2008-05-21  8:05 UTC (permalink / raw)
  To: netdev

On Saturday 17 May 2008, Octavian Purdila wrote:
> If an skb does not have fragments but its fragment list is not empty (can
> happen, via LRO at least) and a previous tcp_read_sock has consumed
> the linear part of the skb then __skb_splice_bits:
>
> (a) incorrectly reports an error and
>
> (b) forgets to update the offset to account for the linear part
>
> Any of the two problems will cause the subsequent __skb_splice_bits call
> (the one that handles the fragment list skbs) to either skip data, or, if
> the unadjusted offset is greater then the size of the next skb, make
> tcp_splice_read loop forever.
>

Hi,

Any comments, please?

Patch for 2.6.25 is here:

http://www.spinics.net/lists/netdev/msg63541.html

Thanks,
tavi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix frag list handling in TCP splice receive
  2008-05-21  8:05 ` Octavian Purdila
@ 2008-05-21  8:13   ` David Miller
  2008-05-21 12:31     ` Octavian Purdila
  0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2008-05-21  8:13 UTC (permalink / raw)
  To: opurdila; +Cc: netdev

From: Octavian Purdila <opurdila@ixiacom.com>
Date: Wed, 21 May 2008 11:05:03 +0300

> Any comments, please?
> 
> Patch for 2.6.25 is here:
> 
> http://www.spinics.net/lists/netdev/msg63541.html

A lot of us saw your patch but are very busy, and personally I'm about
to go on three weeks of travel starting on thursday so I have a lot of
things to wrap up which came in way before your patch.

So please be patient.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix frag list handling in TCP splice receive
  2008-05-21  8:13   ` David Miller
@ 2008-05-21 12:31     ` Octavian Purdila
  0 siblings, 0 replies; 4+ messages in thread
From: Octavian Purdila @ 2008-05-21 12:31 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

On Wednesday 21 May 2008, David Miller wrote:
>
> A lot of us saw your patch but are very busy, and personally I'm about
> to go on three weeks of travel starting on thursday so I have a lot of
> things to wrap up which came in way before your patch.
>
> So please be patient.

Ack and sorry for the bugging - I just wanted to be sure that it didn't slip 
through the cracks.

Thanks,
tavi


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-21 12:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-17 13:36 [PATCH] Fix frag list handling in TCP splice receive Octavian Purdila
2008-05-21  8:05 ` Octavian Purdila
2008-05-21  8:13   ` David Miller
2008-05-21 12:31     ` Octavian Purdila

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.