°Ô½Ã¹° 1,358°Ç
   
Netfilter u32
±Û¾´ÀÌ : ÃÖ°í°ü¸®ÀÚ ³¯Â¥ : 2010-07-28 (¼ö) 12:47 Á¶È¸ : 7998
±ÛÁÖ¼Ò :
                                

iptablesÀÇ u32 ¸ÅĪÀº IP ·¹º§¿¡¼­ ƯÁ¤ÇÑ À§Ä¡¿¡ ƯÁ¤ÇÑ °ªÀÌ ÀÖ´ÂÁö È®ÀÎ

iptables –A FORWARD –m u32 –u32 ¡°5&0xFF=118¡± –j DROP ### TTL=118
iptables –A FORWARD –m u32 –u32 ¡°32&0xFFFF=16384¡± –j DROP  ### window=16384
Iptables –A FORWORD –m u32 –u32 ¡°5&0xFF=118&&32&0xFFFF=16384¡± –j DROP ### TTL=118 ÀÌ°í window=16384

¡Ø ³í¸®¿¬»êÀÚ 
  ||   or
  &&  and

   u32  [MAN PAGE]
       U32 tests whether quantities of up to 4 bytes extracted from a packet have specified values. The specification of what to extract is general enough to find
       data at given offsets from tcp headers or payloads.

       [!] --u32 tests
              The argument amounts to a program in a small language described below.

              tests := location "=" value | tests "&&" location "=" value

              value := range | value "," range

              range := number | number ":" number

       a single number, n, is interpreted the same as n:n. n:m is interpreted as the range of numbers >=n and <=m.

           location := number | location operator number

           operator := "&" | "<<" | ">>" | "@"

       The operators &, <<, >> and && mean the same as in C.  The = is really a set membership operator and the value syntax describes a set. The  @  operator  is
       what allows moving to the next header and is described further below.

       There are currently some artificial implementation limits on the size of the tests:

           *  no more than 10 of "=" (and 9 "&&"s) in the u32 argument

           *  no more than 10 ranges (and 9 commas) per value

           *  no more than 10 numbers (and 9 operators) per location

       To describe the meaning of location, imagine the following machine that interprets it. There are three registers:

              A is of type char *, initially the address of the IP header

              B and C are unsigned 32 bit integers, initially zero

       The instructions are:

              number B = number;

              C = (*(A+B)<<24) + (*(A+B+1)<<16) + (*(A+B+2)<<8) + *(A+B+3)

              &number C = C & number

              << number C = C << number

              >> number C = C >> number

              @number A = A + C; then do the instruction number

       Any access of memory outside [skb->data,skb->end] causes the match to fail.  Otherwise the result of the computation is the final value of C.

       Whitespace  is allowed but not required in the tests. However, the characters that do occur there are likely to require shell quoting, so it is a good idea
       to enclose the arguments in quotes.

       Example:

              match IP packets with total length >= 256

              The IP header contains a total length field in bytes 2-3.

              --u32 "0 & 0xFFFF = 0x100:0xFFFF"

              read bytes 0-3

              AND that with 0xFFFF (giving bytes 2-3), and test whether that is in the range [0x100:0xFFFF]

       Example: (more realistic, hence more complicated)

              match ICMP packets with icmp type 0

              First test that it is an ICMP packet, true iff byte 9 (protocol) = 1

              --u32 "6 & 0xFF = 1 && ...

              read bytes 6-9, use & to throw away bytes 6-8 and compare the result to 1. Next test that it is not a fragment. (If so, it might be part of  such  a
              packet but we cannot always tell.) N.B.: This test is generally needed if you want to match anything beyond the IP header. The last 6 bits of byte 6
              and all of byte 7 are 0 iff this is a complete packet (not a fragment). Alternatively, you can allow first fragments by only testing the last 5 bits
              of byte 6.

               ... 4 & 0x3FFF = 0 && ...

              Last  test: the first byte past the IP header (the type) is 0. This is where we have to use the @syntax. The length of the IP header (IHL) in 32 bit
              words is stored in the right half of byte 0 of the IP header itself.

               ... 0 >> 22 & 0x3C @ 0 >> 24 = 0"

              The first 0 means read bytes 0-3, >>22 means shift that 22 bits to the right. Shifting 24 bits would give the first byte, so only 22  bits  is  four
              times  that  plus  a  few more bits. &3C then eliminates the two extra bits on the right and the first four bits of the first byte. For instance, if
              IHL=5, then the IP header is 20 (4 x 5) bytes long. In this case, bytes 0-1 are  (in  binary)  xxxx0101  yyzzzzzz,  >>22  gives  the  10  bit  value
              xxxx0101yy  and  &3C  gives 010100. @ means to use this number as a new offset into the packet, and read four bytes starting from there. This is the
              first 4 bytes of the ICMP payload, of which byte 0 is the ICMP type. Therefore, we simply shift the value 24 to the right to throw out all  but  the
              first byte and compare the result with 0.

       Example:

              TCP payload bytes 8-12 is any of 1, 2, 5 or 8

              First we test that the packet is a tcp packet (similar to ICMP).

              --u32 "6 & 0xFF = 6 && ...

              Next, test that it is not a fragment (same as above).

               ... 0 >> 22 & 0x3C @ 12 >> 26 & 0x3C @ 8 = 1,2,5,8"

              0>>22&3C  as above computes the number of bytes in the IP header. @ makes this the new offset into the packet, which is the start of the TCP header.
              The length of the TCP header (again in 32 bit words) is the left half of byte 12 of the TCP header. The 12>>26&3C  computes  this  length  in  bytes
              (similar  to the IP header before). "@" makes this the new offset, which is the start of the TCP payload. Finally, 8 reads bytes 8-12 of the payload
              and = checks whether the result is any of 1, 2, 5 or 8.


 


ÃÖ°í°ü¸®ÀÚ 2010-09-28 (È­) 13:34
&& and
, or
ÃÖ°í°ü¸®ÀÚ 2010-09-28 (È­) 13:46
, ¿É¼ÇÀº ÃÖ´ë 10°³±îÁö¸¸...
EX) -m u32 --u32 "32&0xFFFF=0,512,1024,2048,1624,2048,2256,4096,8192,16448,16380"

±×ÀÌ»ó ¼³Á¤ÇÏ°Ô µÇ¸é ¿¡·¯¹ß»ý!
iptables v1.4.2: u32: at char 62: too many ","s
À̸§ Æнº¿öµå
ºñ¹Ð±Û (üũÇÏ¸é ±Û¾´À̸¸ ³»¿ëÀ» È®ÀÎÇÒ ¼ö ÀÖ½À´Ï´Ù.)
¿ÞÂÊÀÇ ±ÛÀÚ¸¦ ÀÔ·ÂÇϼ¼¿ä.
   

 



 
»çÀÌÆ®¸í : ¸ðÁö¸®³× | ´ëÇ¥ : ÀÌ°æÇö | °³ÀÎÄ¿¹Â´ÏƼ : ·©Å°´åÄÄ ¿î¿µÃ¼Á¦(OS) | °æ±âµµ ¼º³²½Ã ºÐ´ç±¸ | ÀüÀÚ¿ìÆí : mojily°ñ¹ðÀÌchonnom.com Copyright ¨Ï www.chonnom.com www.kyunghyun.net www.mojily.net. All rights reserved.