* [PATCH] netfilter: xt_u32: Accept negative offset in AT operation
@ 2014-08-07 17:24 Takero Funaki
0 siblings, 0 replies; only message in thread
From: Takero Funaki @ 2014-08-07 17:24 UTC (permalink / raw)
To: davem
Cc: Takero Funaki, Pablo Neira Ayuso, Patrick McHardy,
Jozsef Kadlecsik, open list:NETFILTER/IPTABLES,
open list:NETFILTER/IPTABLES, open list:NETFILTER/IPTABLES,
open list:NETWORKING [GENERAL], open list
Remove unnecessary uint wraparound checks which prohibited two's
complement representation of negative number in "@" operation.
It is required to test last N bytes of variable length formats and to be
consistent with libxt parser which silently replaces negative number by
its compliment.
For example, --u32 '0&0xFFFF@-4=0' will read IPv4 total length header
then add complement of -4 to test if the last 4 bytes are 0. Previously,
it would never match as (total length)+0xFFFFFFFC always overflow.
Signed-off-by: Takero Funaki <raphanus@gmail.com>
---
net/netfilter/xt_u32.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net/netfilter/xt_u32.c b/net/netfilter/xt_u32.c
index a95b5034..9de339d 100644
--- a/net/netfilter/xt_u32.c
+++ b/net/netfilter/xt_u32.c
@@ -57,12 +57,12 @@ static bool u32_match_it(const struct xt_u32 *data,
val >>= number;
break;
case XT_U32_AT:
- if (at + val < at)
- return false;
at += val;
pos = number;
- if (at + 4 < at || skb->len < at + 4 ||
- pos > skb->len - at - 4)
+ /* unsigned integer may wraparound
+ * to represent negative offset
+ */
+ if (at + pos > skb->len - 4)
return false;
if (skb_copy_bits(skb, at + pos, &n,
--
1.9.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-08-07 17:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-07 17:24 [PATCH] netfilter: xt_u32: Accept negative offset in AT operation Takero Funaki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).