KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Transparent proxy support for Linux/iptables |
| 3 | * |
| 4 | * Copyright (C) 2007-2008 BalaBit IT Ltd. |
| 5 | * Author: Krisztian Kovacs |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | */ |
Jan Engelhardt | ff67e4e | 2010-03-19 21:08:16 +0100 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/netfilter/x_tables.h> |
| 16 | #include <linux/netfilter_ipv4/ip_tables.h> |
| 17 | #include <net/tcp.h> |
| 18 | #include <net/udp.h> |
| 19 | #include <net/icmp.h> |
| 20 | #include <net/sock.h> |
| 21 | #include <net/inet_sock.h> |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 22 | #include <net/netfilter/ipv4/nf_defrag_ipv4.h> |
KOVACS Krisztian | f6318e5 | 2010-10-24 23:38:32 +0000 | [diff] [blame] | 23 | |
Igor Maravić | c0cd115 | 2011-12-12 02:58:24 +0000 | [diff] [blame] | 24 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
KOVACS Krisztian | f6318e5 | 2010-10-24 23:38:32 +0000 | [diff] [blame] | 25 | #include <linux/netfilter_ipv6/ip6_tables.h> |
Florian Westphal | 93742cf | 2013-07-29 15:41:53 +0200 | [diff] [blame] | 26 | #include <net/inet6_hashtables.h> |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 27 | #include <net/netfilter/ipv6/nf_defrag_ipv6.h> |
KOVACS Krisztian | f6318e5 | 2010-10-24 23:38:32 +0000 | [diff] [blame] | 28 | #endif |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 29 | |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 30 | #include <net/netfilter/nf_socket.h> |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 31 | #include <linux/netfilter/xt_socket.h> |
| 32 | |
Florian Westphal | 93742cf | 2013-07-29 15:41:53 +0200 | [diff] [blame] | 33 | /* "socket" match based redirection (no specific rule) |
| 34 | * =================================================== |
| 35 | * |
| 36 | * There are connections with dynamic endpoints (e.g. FTP data |
| 37 | * connection) that the user is unable to add explicit rules |
| 38 | * for. These are taken care of by a generic "socket" rule. It is |
| 39 | * assumed that the proxy application is trusted to open such |
| 40 | * connections without explicit iptables rule (except of course the |
| 41 | * generic 'socket' rule). In this case the following sockets are |
| 42 | * matched in preference order: |
| 43 | * |
| 44 | * - match: if there's a fully established connection matching the |
| 45 | * _packet_ tuple |
| 46 | * |
| 47 | * - match: if there's a non-zero bound listener (possibly with a |
| 48 | * non-local address) We don't accept zero-bound listeners, since |
| 49 | * then local services could intercept traffic going through the |
| 50 | * box. |
| 51 | */ |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 52 | static bool |
| 53 | socket_match(const struct sk_buff *skb, struct xt_action_param *par, |
| 54 | const struct xt_socket_mtinfo1 *info) |
| 55 | { |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 56 | struct sk_buff *pskb = (struct sk_buff *)skb; |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 57 | struct sock *sk = skb->sk; |
| 58 | |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 59 | if (!sk) |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 60 | sk = nf_sk_lookup_slow_v4(xt_net(par), skb, xt_in(par)); |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 61 | if (sk) { |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 62 | bool wildcard; |
| 63 | bool transparent = true; |
| 64 | |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 65 | /* Ignore sockets listening on INADDR_ANY, |
| 66 | * unless XT_SOCKET_NOWILDCARD is set |
| 67 | */ |
| 68 | wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) && |
Eric Dumazet | a940700 | 2015-03-16 21:06:17 -0700 | [diff] [blame] | 69 | sk_fullsock(sk) && |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 70 | inet_sk(sk)->inet_rcv_saddr == 0); |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 71 | |
| 72 | /* Ignore non-transparent sockets, |
Eric Dumazet | a940700 | 2015-03-16 21:06:17 -0700 | [diff] [blame] | 73 | * if XT_SOCKET_TRANSPARENT is used |
| 74 | */ |
Eric Dumazet | baf60ef | 2013-07-11 19:22:19 -0700 | [diff] [blame] | 75 | if (info->flags & XT_SOCKET_TRANSPARENT) |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 76 | transparent = nf_sk_is_transparent(sk); |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 77 | |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 78 | if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard && |
| 79 | transparent) |
| 80 | pskb->mark = sk->sk_mark; |
| 81 | |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 82 | if (sk != skb->sk) |
Eric Dumazet | 1a8bf6e | 2013-10-11 09:03:25 -0700 | [diff] [blame] | 83 | sock_gen_put(sk); |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 84 | |
| 85 | if (wildcard || !transparent) |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 86 | sk = NULL; |
| 87 | } |
| 88 | |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 89 | return sk != NULL; |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 90 | } |
| 91 | |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 92 | static bool |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 93 | socket_mt4_v0(const struct sk_buff *skb, struct xt_action_param *par) |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 94 | { |
Eric Dumazet | baf60ef | 2013-07-11 19:22:19 -0700 | [diff] [blame] | 95 | static struct xt_socket_mtinfo1 xt_info_v0 = { |
| 96 | .flags = 0, |
| 97 | }; |
| 98 | |
| 99 | return socket_match(skb, par, &xt_info_v0); |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static bool |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 103 | socket_mt4_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par) |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 104 | { |
| 105 | return socket_match(skb, par, par->matchinfo); |
| 106 | } |
| 107 | |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 108 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 109 | static bool |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 110 | socket_mt6_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par) |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 111 | { |
| 112 | const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo; |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 113 | struct sk_buff *pskb = (struct sk_buff *)skb; |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 114 | struct sock *sk = skb->sk; |
| 115 | |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 116 | if (!sk) |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 117 | sk = nf_sk_lookup_slow_v6(xt_net(par), skb, xt_in(par)); |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 118 | if (sk) { |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 119 | bool wildcard; |
| 120 | bool transparent = true; |
| 121 | |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 122 | /* Ignore sockets listening on INADDR_ANY |
| 123 | * unless XT_SOCKET_NOWILDCARD is set |
| 124 | */ |
| 125 | wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) && |
Eric Dumazet | a940700 | 2015-03-16 21:06:17 -0700 | [diff] [blame] | 126 | sk_fullsock(sk) && |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 127 | ipv6_addr_any(&sk->sk_v6_rcv_saddr)); |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 128 | |
| 129 | /* Ignore non-transparent sockets, |
Eric Dumazet | a940700 | 2015-03-16 21:06:17 -0700 | [diff] [blame] | 130 | * if XT_SOCKET_TRANSPARENT is used |
| 131 | */ |
Eric Dumazet | baf60ef | 2013-07-11 19:22:19 -0700 | [diff] [blame] | 132 | if (info->flags & XT_SOCKET_TRANSPARENT) |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 133 | transparent = nf_sk_is_transparent(sk); |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 134 | |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 135 | if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard && |
| 136 | transparent) |
| 137 | pskb->mark = sk->sk_mark; |
| 138 | |
Eric Dumazet | 00028aa | 2013-05-22 11:01:06 +0000 | [diff] [blame] | 139 | if (sk != skb->sk) |
Eric Dumazet | 1a8bf6e | 2013-10-11 09:03:25 -0700 | [diff] [blame] | 140 | sock_gen_put(sk); |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 141 | |
| 142 | if (wildcard || !transparent) |
| 143 | sk = NULL; |
| 144 | } |
| 145 | |
Daniel Borkmann | d64d80a | 2015-04-02 14:28:30 +0200 | [diff] [blame] | 146 | return sk != NULL; |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 147 | } |
| 148 | #endif |
| 149 | |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 150 | static int socket_mt_enable_defrag(struct net *net, int family) |
| 151 | { |
| 152 | switch (family) { |
| 153 | case NFPROTO_IPV4: |
| 154 | return nf_defrag_ipv4_enable(net); |
Peter Tirsek | 6bd3d19 | 2017-04-18 12:39:58 -0500 | [diff] [blame] | 155 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 156 | case NFPROTO_IPV6: |
| 157 | return nf_defrag_ipv6_enable(net); |
| 158 | #endif |
| 159 | } |
| 160 | WARN_ONCE(1, "Unknown family %d\n", family); |
| 161 | return 0; |
| 162 | } |
| 163 | |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 164 | static int socket_mt_v1_check(const struct xt_mtchk_param *par) |
| 165 | { |
| 166 | const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo; |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 167 | int err; |
| 168 | |
| 169 | err = socket_mt_enable_defrag(par->net, par->family); |
| 170 | if (err) |
| 171 | return err; |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 172 | |
| 173 | if (info->flags & ~XT_SOCKET_FLAGS_V1) { |
| 174 | pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V1); |
| 175 | return -EINVAL; |
| 176 | } |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static int socket_mt_v2_check(const struct xt_mtchk_param *par) |
| 181 | { |
| 182 | const struct xt_socket_mtinfo2 *info = (struct xt_socket_mtinfo2 *) par->matchinfo; |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 183 | int err; |
| 184 | |
| 185 | err = socket_mt_enable_defrag(par->net, par->family); |
| 186 | if (err) |
| 187 | return err; |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 188 | |
| 189 | if (info->flags & ~XT_SOCKET_FLAGS_V2) { |
| 190 | pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V2); |
| 191 | return -EINVAL; |
| 192 | } |
| 193 | return 0; |
| 194 | } |
| 195 | |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 196 | static int socket_mt_v3_check(const struct xt_mtchk_param *par) |
| 197 | { |
| 198 | const struct xt_socket_mtinfo3 *info = |
| 199 | (struct xt_socket_mtinfo3 *)par->matchinfo; |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 200 | int err; |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 201 | |
Florian Westphal | 834184b | 2016-11-15 21:36:45 +0100 | [diff] [blame] | 202 | err = socket_mt_enable_defrag(par->net, par->family); |
| 203 | if (err) |
| 204 | return err; |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 205 | if (info->flags & ~XT_SOCKET_FLAGS_V3) { |
| 206 | pr_info("unknown flags 0x%x\n", |
| 207 | info->flags & ~XT_SOCKET_FLAGS_V3); |
| 208 | return -EINVAL; |
| 209 | } |
| 210 | return 0; |
| 211 | } |
| 212 | |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 213 | static struct xt_match socket_mt_reg[] __read_mostly = { |
| 214 | { |
| 215 | .name = "socket", |
| 216 | .revision = 0, |
| 217 | .family = NFPROTO_IPV4, |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 218 | .match = socket_mt4_v0, |
Jan Engelhardt | aa3c487 | 2009-10-29 15:35:10 +0100 | [diff] [blame] | 219 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 220 | (1 << NF_INET_LOCAL_IN), |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 221 | .me = THIS_MODULE, |
| 222 | }, |
| 223 | { |
| 224 | .name = "socket", |
| 225 | .revision = 1, |
| 226 | .family = NFPROTO_IPV4, |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 227 | .match = socket_mt4_v1_v2_v3, |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 228 | .checkentry = socket_mt_v1_check, |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 229 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
Jan Engelhardt | aa3c487 | 2009-10-29 15:35:10 +0100 | [diff] [blame] | 230 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 231 | (1 << NF_INET_LOCAL_IN), |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 232 | .me = THIS_MODULE, |
| 233 | }, |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 234 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 235 | { |
| 236 | .name = "socket", |
| 237 | .revision = 1, |
| 238 | .family = NFPROTO_IPV6, |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 239 | .match = socket_mt6_v1_v2_v3, |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 240 | .checkentry = socket_mt_v1_check, |
| 241 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
| 242 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 243 | (1 << NF_INET_LOCAL_IN), |
| 244 | .me = THIS_MODULE, |
| 245 | }, |
| 246 | #endif |
| 247 | { |
| 248 | .name = "socket", |
| 249 | .revision = 2, |
| 250 | .family = NFPROTO_IPV4, |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 251 | .match = socket_mt4_v1_v2_v3, |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 252 | .checkentry = socket_mt_v2_check, |
| 253 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
| 254 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 255 | (1 << NF_INET_LOCAL_IN), |
| 256 | .me = THIS_MODULE, |
| 257 | }, |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 258 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 259 | { |
| 260 | .name = "socket", |
| 261 | .revision = 2, |
| 262 | .family = NFPROTO_IPV6, |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 263 | .match = socket_mt6_v1_v2_v3, |
Eric Dumazet | 681f130 | 2013-06-20 05:52:22 -0700 | [diff] [blame] | 264 | .checkentry = socket_mt_v2_check, |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 265 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
| 266 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 267 | (1 << NF_INET_LOCAL_IN), |
| 268 | .me = THIS_MODULE, |
| 269 | }, |
| 270 | #endif |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 271 | { |
| 272 | .name = "socket", |
| 273 | .revision = 3, |
| 274 | .family = NFPROTO_IPV4, |
| 275 | .match = socket_mt4_v1_v2_v3, |
| 276 | .checkentry = socket_mt_v3_check, |
| 277 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
| 278 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 279 | (1 << NF_INET_LOCAL_IN), |
| 280 | .me = THIS_MODULE, |
| 281 | }, |
Pablo Neira Ayuso | 8db4c5b | 2016-10-27 19:49:48 +0100 | [diff] [blame] | 282 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Harout Hedeshian | 01555e7 | 2015-06-15 18:40:43 -0600 | [diff] [blame] | 283 | { |
| 284 | .name = "socket", |
| 285 | .revision = 3, |
| 286 | .family = NFPROTO_IPV6, |
| 287 | .match = socket_mt6_v1_v2_v3, |
| 288 | .checkentry = socket_mt_v3_check, |
| 289 | .matchsize = sizeof(struct xt_socket_mtinfo1), |
| 290 | .hooks = (1 << NF_INET_PRE_ROUTING) | |
| 291 | (1 << NF_INET_LOCAL_IN), |
| 292 | .me = THIS_MODULE, |
| 293 | }, |
| 294 | #endif |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 295 | }; |
| 296 | |
| 297 | static int __init socket_mt_init(void) |
| 298 | { |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 299 | return xt_register_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg)); |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | static void __exit socket_mt_exit(void) |
| 303 | { |
Laszlo Attila Toth | a31e1ff | 2009-06-09 15:16:34 +0200 | [diff] [blame] | 304 | xt_unregister_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg)); |
KOVACS Krisztian | 136cdc7 | 2008-10-08 11:35:12 +0200 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | module_init(socket_mt_init); |
| 308 | module_exit(socket_mt_exit); |
| 309 | |
| 310 | MODULE_LICENSE("GPL"); |
| 311 | MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler"); |
| 312 | MODULE_DESCRIPTION("x_tables socket match module"); |
| 313 | MODULE_ALIAS("ipt_socket"); |
Balazs Scheidler | b64c925 | 2010-10-21 16:19:42 +0200 | [diff] [blame] | 314 | MODULE_ALIAS("ip6t_socket"); |