1. 01 Feb, 2011 10 commits
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: hash:net set type support · b3837029
      Jozsef Kadlecsik authored
      The module implements the hash:net type support in four flavours:
      for IPv4 and IPv6, both without and with timeout support. The elements
      are one dimensional: IPv4/IPv6 network address/prefixes.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      b3837029
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: hash:ip,port,net set type support · 41d22f7b
      Jozsef Kadlecsik authored
      The module implements the hash:ip,port,net type support in four flavours:
      for IPv4 and IPv6, both without and with timeout support. The elements
      are three dimensional: IPv4/IPv6 address, protocol/port and IPv4/IPv6
      network address/prefix triples. The different prefixes are searched/matched
      from the longest prefix to the shortes one (most specific to least).
      In other words the processing time linearly grows with the number of
      different prefixes in the set.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      41d22f7b
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: hash:ip,port,ip set type support · 5663bc30
      Jozsef Kadlecsik authored
      The module implements the hash:ip,port,ip type support in four flavours:
      for IPv4 and IPv6, both without and with timeout support. The elements
      are three dimensional: IPv4/IPv6 address, protocol/port and IPv4/IPv6
      address triples.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      5663bc30
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: hash:ip,port set type support · 07896ed3
      Jozsef Kadlecsik authored
      The module implements the hash:ip,port type support in four flavours:
      for IPv4 and IPv6, both without and with timeout support. The elements
      are two dimensional: IPv4/IPv6 address and protocol/port pairs. The port
      is interpeted for TCP, UPD, ICMP and ICMPv6 (at the latters as type/code
      of course).
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      07896ed3
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: hash:ip set type support · 6c027889
      Jozsef Kadlecsik authored
      The module implements the hash:ip type support in four flavours:
      for IPv4 or IPv6, both without and with timeout support.
      
      All the hash types are based on the "array hash" or ahash structure
      and functions as a good compromise between minimal memory footprint
      and speed. The hashing uses arrays to resolve clashes. The hash table
      is resized (doubled) when searching becomes too long. Resizing can be
      triggered by userspace add commands only and those are serialized by
      the nfnl mutex. During resizing the set is read-locked, so the only
      possible concurrent operations are the kernel side readers. Those are
      protected by RCU locking.
      
      Because of the four flavours and the other hash types, the functions
      are implemented in general forms in the ip_set_ahash.h header file
      and the real functions are generated before compiling by macro expansion.
      Thus the dereferencing of low-level functions and void pointer arguments
      could be avoided: the low-level functions are inlined, the function
      arguments are pointers of type-specific structures.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      6c027889
    • Jozsef Kadlecsik's avatar
      netfilter: ipset; bitmap:port set type support · 54326190
      Jozsef Kadlecsik authored
      The module implements the bitmap:port type in two flavours, without
      and with timeout support to store TCP/UDP ports from a range.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      54326190
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: bitmap:ip,mac type support · de76021a
      Jozsef Kadlecsik authored
      The module implements the bitmap:ip,mac set type in two flavours,
      without and with timeout support. In this kind of set one can store
      IPv4 address and (source) MAC address pairs. The type supports elements
      added without the MAC part filled out: when the first matching from kernel
      happens, the MAC part is automatically filled out. The timing out of the
      elements stars when an element is complete in the IP,MAC pair.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      de76021a
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: bitmap:ip set type support · 72205fc6
      Jozsef Kadlecsik authored
      The module implements the bitmap:ip set type in two flavours, without
      and with timeout support. In this kind of set one can store IPv4
      addresses (or network addresses) from a given range.
      
      In order not to waste memory, the timeout version does not rely on
      the kernel timer for every element to be timed out but on garbage
      collection. All set types use this mechanism.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      72205fc6
    • Jozsef Kadlecsik's avatar
      netfilter: ipset: IP set core support · a7b4f989
      Jozsef Kadlecsik authored
      The patch adds the IP set core support to the kernel.
      
      The IP set core implements a netlink (nfnetlink) based protocol by which
      one can create, destroy, flush, rename, swap, list, save, restore sets,
      and add, delete, test elements from userspace. For simplicity (and backward
      compatibilty and for not to force ip(6)tables to be linked with a netlink
      library) reasons a small getsockopt-based protocol is also kept in order
      to communicate with the ip(6)tables match and target.
      
      The netlink protocol passes all u16, etc values in network order with
      NLA_F_NET_BYTEORDER flag. The protocol enforces the proper use of the
      NLA_F_NESTED and NLA_F_NET_BYTEORDER flags.
      
      For other kernel subsystems (netfilter match and target) the API contains
      the functions to add, delete and test elements in sets and the required calls
      to get/put refereces to the sets before those operations can be performed.
      
      The set types (which are implemented in independent modules) are stored
      in a simple RCU protected list. A set type may have variants: for example
      without timeout or with timeout support, for IPv4 or for IPv6. The sets
      (i.e. the pointers to the sets) are stored in an array. The sets are
      identified by their index in the array, which makes possible easy and
      fast swapping of sets. The array is protected indirectly by the nfnl
      mutex from nfnetlink. The content of the sets are protected by the rwlock
      of the set.
      
      There are functional differences between the add/del/test functions
      for the kernel and userspace:
      
      - kernel add/del/test: works on the current packet (i.e. one element)
      - kernel test: may trigger an "add" operation  in order to fill
        out unspecified parts of the element from the packet (like MAC address)
      - userspace add/del: works on the netlink message and thus possibly
        on multiple elements from the IPSET_ATTR_ADT container attribute.
      - userspace add: may trigger resizing of a set
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      a7b4f989
    • Jozsef Kadlecsik's avatar
      netfilter: NFNL_SUBSYS_IPSET id and NLA_PUT_NET* macros · f703651e
      Jozsef Kadlecsik authored
      The patch adds the NFNL_SUBSYS_IPSET id and NLA_PUT_NET* macros to the
      vanilla kernel.
      Signed-off-by: default avatarJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      f703651e
  2. 28 Jan, 2011 1 commit
  3. 27 Jan, 2011 1 commit
  4. 26 Jan, 2011 2 commits
  5. 25 Jan, 2011 2 commits
  6. 22 Jan, 2011 2 commits
  7. 20 Jan, 2011 21 commits
  8. 19 Jan, 2011 1 commit