]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
[NETFILTER]: xt_TOS: Change semantic of mask value
authorJan Engelhardt <jengelh@computergmbh.de>
Tue, 15 Jan 2008 07:32:37 +0000 (23:32 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 23:02:18 +0000 (15:02 -0800)
commit9bb268ed7c5f0ec76a5bd6824450a104231152ba
tree83384863682a32413ed13423ce001a1a9b5f718a
parent11fa2aa362fa54b9eaa8adce9a89f9b467cc9214
[NETFILTER]: xt_TOS: Change semantic of mask value

This patch changes the behavior of xt_TOS v1 so that the mask value
the user supplies means "zero out these bits" rather than "keep these
bits". This is more easy on the user, as (I would assume) people keep
more bits than zeroing, so, an example:

Action:     Set bit 0x01.
     before (&): iptables -j TOS --set-tos 0x01/0xFE
     after (&~): iptables -j TOS --set-tos 0x01/0x01

This is not too "tragic" with xt_TOS, but where larger fields are used
(e.g. proposed xt_MARK v2), `--set-xmar 0x01/0x01` vs. `--set-xmark
0x01/0xFFFFFFFE` really makes a difference. Other target(!) modules,
such as xt_TPROXY also use &~ rather than &, so let's get to a common
ground.

(Since xt_TOS has not yet left the development tree en direction to
mainline, the semantic can be changed as proposed without breaking
iptables.)

Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netfilter/xt_DSCP.c