14 May, 2015

1 commit

  • Add arpt_MARK to xt_mark.

    The corresponding userspace update is available at:

    http://git.netfilter.org/arptables/commit/?id=4bb2f8340783fd3a3f70aa6f8807428a280f8474

    Signed-off-by: Zhang Chunyu
    Signed-off-by: Pablo Neira Ayuso

    Zhang Chunyu
     

12 May, 2010

2 commits


17 Mar, 2010

1 commit

  • Two arguments for combining the two:
    - xt_mark is pretty useless without xt_MARK
    - the actual code is so small anyway that the kmod metadata and the module
    in its loaded state totally outweighs the combined actual code size.

    i586-before:
    -rw-r--r-- 1 jengelh users 3821 Feb 10 01:01 xt_MARK.ko
    -rw-r--r-- 1 jengelh users 2592 Feb 10 00:04 xt_MARK.o
    -rw-r--r-- 1 jengelh users 3274 Feb 10 01:01 xt_mark.ko
    -rw-r--r-- 1 jengelh users 2108 Feb 10 00:05 xt_mark.o
    text data bss dec hex filename
    354 264 0 618 26a xt_MARK.o
    223 176 0 399 18f xt_mark.o
    And the runtime size is like 14 KB.

    i586-after:
    -rw-r--r-- 1 jengelh users 3264 Feb 18 17:28 xt_mark.o

    Signed-off-by: Jan Engelhardt

    Jan Engelhardt
     

10 Aug, 2009

1 commit


08 Oct, 2008

4 commits


29 Jan, 2008

4 commits


11 Jul, 2007

5 commits


13 Feb, 2007

1 commit


03 Dec, 2006

1 commit

  • nfmark is being used in various subsystems and has become
    the defacto mark field for all kinds of packets. Therefore
    it makes sense to rename it to `mark' and remove the
    dependency on CONFIG_NETFILTER.

    Signed-off-by: Thomas Graf
    Signed-off-by: David S. Miller

    Thomas Graf
     

23 Sep, 2006

3 commits


18 Jun, 2006

1 commit


29 Mar, 2006

1 commit

  • Every netfilter module uses `init' for its module_init() function and
    `fini' or `cleanup' for its module_exit() function.

    Problem is, this creates uninformative initcall_debug output and makes
    ctags rather useless.

    So go through and rename them all to $(filename)_init and
    $(filename)_fini.

    Signed-off-by: Andrew Morton
    Signed-off-by: David S. Miller

    Andrew Morton
     

23 Mar, 2006

1 commit


21 Mar, 2006

2 commits


13 Jan, 2006

1 commit

  • This monster-patch tries to do the best job for unifying the data
    structures and backend interfaces for the three evil clones ip_tables,
    ip6_tables and arp_tables. In an ideal world we would never have
    allowed this kind of copy+paste programming... but well, our world
    isn't (yet?) ideal.

    o introduce a new x_tables module
    o {ip,arp,ip6}_tables depend on this x_tables module
    o registration functions for tables, matches and targets are only
    wrappers around x_tables provided functions
    o all matches/targets that are used from ip_tables and ip6_tables
    are now implemented as xt_FOOBAR.c files and provide module aliases
    to ipt_FOOBAR and ip6t_FOOBAR
    o header files for xt_matches are in include/linux/netfilter/,
    include/linux/netfilter_{ipv4,ipv6} contains compatibility wrappers
    around the xt_FOOBAR.h headers

    Based on this patchset we're going to further unify the code,
    gradually getting rid of all the layer 3 specific assumptions.

    Signed-off-by: Harald Welte
    Signed-off-by: David S. Miller

    Harald Welte