* [PATCH] af_packet: check loop for greater than zero in tpacket_fill_skb
@ 2012-06-10 19:25 Daniel Borkmann
2012-06-11 3:10 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Borkmann @ 2012-06-10 19:25 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev@vger.kernel.org
It could be more safe to check the 'to_write' for 'greater than zero'
instead for 'not zero'. 'to_write' is of type int and subtraction operations
are performed on it, so in the case of malformed values that are
subtracted from 'to_write', it could become less than zero, which is then
interpreted as 'not zero' in the while condition, thus the loop won't
return as expected.
Signed-off-by: Daniel Borkmann <daniel.borkmann@tik.ee.ethz.ch>
---
net/packet/af_packet.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index 0f66174..3e53680 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -2027,7 +2027,7 @@ static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
skb->truesize += to_write;
atomic_add(to_write, &po->sk.sk_wmem_alloc);
- while (likely(to_write)) {
+ while (likely(to_write > 0)) {
nr_frags = skb_shinfo(skb)->nr_frags;
if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] af_packet: check loop for greater than zero in tpacket_fill_skb
2012-06-10 19:25 [PATCH] af_packet: check loop for greater than zero in tpacket_fill_skb Daniel Borkmann
@ 2012-06-11 3:10 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2012-06-11 3:10 UTC (permalink / raw)
To: danborkmann; +Cc: netdev
From: Daniel Borkmann <danborkmann@iogearbox.net>
Date: Sun, 10 Jun 2012 21:25:08 +0200
> It could be more safe to check the 'to_write' for 'greater than zero'
> instead for 'not zero'. 'to_write' is of type int and subtraction operations
> are performed on it, so in the case of malformed values that are
> subtracted from 'to_write', it could become less than zero, which is then
> interpreted as 'not zero' in the while condition, thus the loop won't
> return as expected.
>
> Signed-off-by: Daniel Borkmann <daniel.borkmann@tik.ee.ethz.ch>
I hate this kind of change.
The implication is that there are bugs in the loop that can cause
the value to go negative.
Unless you can show that this actually happens, leave this clean
test alone.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-11 3:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-10 19:25 [PATCH] af_packet: check loop for greater than zero in tpacket_fill_skb Daniel Borkmann
2012-06-11 3:10 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox