summaryrefslogtreecommitdiffstats
path: root/sys/netpfil/ipfw/ip_fw2.c
diff options
context:
space:
mode:
authorae <ae@FreeBSD.org>2016-03-02 13:38:21 +0000
committerae <ae@FreeBSD.org>2016-03-02 13:38:21 +0000
commit3b4b162df0228ed74a1e63eccc7315071254344f (patch)
treefee6f0b494e39f4c7a4ca867cc1da7e2ed4394fd /sys/netpfil/ipfw/ip_fw2.c
parentc297413491e7dd2dd41bab0b4f0c62d35804211c (diff)
downloadFreeBSD-src-3b4b162df0228ed74a1e63eccc7315071254344f.zip
FreeBSD-src-3b4b162df0228ed74a1e63eccc7315071254344f.tar.gz
MFC r295969:
Fix bug in filling and handling ipfw's O_DSCP opcode. Due to integer overflow CS4 token was handled as BE. PR: 207459 Approved by: re (gjb)
Diffstat (limited to 'sys/netpfil/ipfw/ip_fw2.c')
-rw-r--r--sys/netpfil/ipfw/ip_fw2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/ipfw/ip_fw2.c b/sys/netpfil/ipfw/ip_fw2.c
index 764696c..712c675 100644
--- a/sys/netpfil/ipfw/ip_fw2.c
+++ b/sys/netpfil/ipfw/ip_fw2.c
@@ -1678,7 +1678,7 @@ do { \
break;
/* DSCP bitmask is stored as low_u32 high_u32 */
- if (x > 32)
+ if (x >= 32)
match = *(p + 1) & (1 << (x - 32));
else
match = *p & (1 << x);
OpenPOWER on IntegriCloud