netfilter: xt_socket: make module available for INPUT chain
authorJan Engelhardt <jengelh@medozas.de>
Thu, 29 Oct 2009 14:35:10 +0000 (15:35 +0100)
committerPatrick McHardy <kaber@trash.net>
Thu, 29 Oct 2009 14:35:10 +0000 (15:35 +0100)
This should make it possible to test for the existence of local
sockets in the INPUT path.

References: http://marc.info/?l=netfilter-devel&m=125380481517129&w=2

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Balazs Scheidler <bazsi@balabit.hu>
Signed-off-by: Patrick McHardy <kaber@trash.net>
net/netfilter/xt_socket.c

index 362afbd..6a90256 100644 (file)
@@ -192,7 +192,8 @@ static struct xt_match socket_mt_reg[] __read_mostly = {
                .revision       = 0,
                .family         = NFPROTO_IPV4,
                .match          = socket_mt_v0,
-               .hooks          = 1 << NF_INET_PRE_ROUTING,
+               .hooks          = (1 << NF_INET_PRE_ROUTING) |
+                                 (1 << NF_INET_LOCAL_IN),
                .me             = THIS_MODULE,
        },
        {
@@ -201,7 +202,8 @@ static struct xt_match socket_mt_reg[] __read_mostly = {
                .family         = NFPROTO_IPV4,
                .match          = socket_mt_v1,
                .matchsize      = sizeof(struct xt_socket_mtinfo1),
-               .hooks          = 1 << NF_INET_PRE_ROUTING,
+               .hooks          = (1 << NF_INET_PRE_ROUTING) |
+                                 (1 << NF_INET_LOCAL_IN),
                .me             = THIS_MODULE,
        },
 };