Some questions about “-set-xmark” in iptables
Some questions about “-set-xmark” in iptables
I have a rule as following:
-A PREROUTING -d 10.228.20.15/32 -p tcp -m tcp --dport 80--tcp-flags FIN,SYN,RST,ACK SYN -j MARK --set-xmark 0x70/0xffffffff
The man doc explains --set-xmark
as below:
--set-xmark
Zero out the bits given by mask and XOR value into the ctmark.
English is not my native language. Could anyone help to explain what value would be set into ctmark?
What zero out means? Take a example would be appreciated.
2 Answers
2
So the syntax is --set-xmark value/mask
. The resulting operation is:
--set-xmark value/mask
ctmark = (ctmark AND NOT mask) XOR value
Zero-out corresponds to (ctmark AND NOT mask)
: if a bit in mask
is set, then the corresponding bit in ctmark
will be zero (before the XOR).
(ctmark AND NOT mask)
mask
ctmark
The man page also states:
--and-mark bits
Binary AND the ctmark with bits. (Mnemonic for --set-xmark
0/invbits, where invbits is the binary negation of bits.)
--or-mark bits
Binary OR the ctmark with bits. (Mnemonic for --set-xmark
bits/bits.)
--xor-mark bits
Binary XOR the ctmark with bits. (Mnemonic for --set-xmark
bits/0.)
You can validate the operation above against those definitions:
--and-mark bits == --set-xmark 0/invbits
ctmark AND bits = (ctmark AND NOT invbits) XOR 0
-> bits = NOT invbits
-> anything XOR 0 = anything
so: ctmark AND bits = ctmark AND NOT NOT bits = ctmark AND bits
--or-mark bits == --set-mark bits/bits
ctmark OR bits = (ctmark AND NOT bits) XOR bits
-> should be obvious based on boolean logic
--xor-mark bits == -set-mark bits/0
ctmark XOR bits = (ctmark AND NOT 0) XOR bits
-> anything AND NOT 0 = anything
I have questions.
For example, I wrote --set-xmark 0x1000/0xFF00
, it's means 0x1000 AND 0xFF00
=> 0x1000
.
--set-xmark 0x1000/0xFF00
0x1000 AND 0xFF00
0x1000
I think the value of ctmark is the current value. what if ctmark value is 0.
therefore 0x1000 XOR 0x0000
=> 0x1000
0x1000 XOR 0x0000
0x1000
Summary: --set-xmark 0x1000/0xFF00
is (0x1000 AND 0xFF00) XOR 0x0000)
=> 0x1000
--set-xmark 0x1000/0xFF00
(0x1000 AND 0xFF00) XOR 0x0000)
0x1000
it's ok?
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Thanks for your explanation. It's very helpful for me to understand.
– harlan
Feb 25 '14 at 6:20