2 * Transparent proxy support for Linux/iptables
4 * Copyright (C) 2007-2008 BalaBit IT Ltd.
5 * Author: Krisztian Kovacs
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
21 #include <net/inet_sock.h>
22 #include <net/netfilter/nf_tproxy_core.h>
23 #include <net/netfilter/ipv4/nf_defrag_ipv4.h>
25 #if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
26 #define XT_SOCKET_HAVE_IPV6 1
27 #include <linux/netfilter_ipv6/ip6_tables.h>
28 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
31 #include <linux/netfilter/xt_socket.h>
33 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
34 #define XT_SOCKET_HAVE_CONNTRACK 1
35 #include <net/netfilter/nf_conntrack.h>
39 xt_socket_put_sk(struct sock
*sk
)
41 if (sk
->sk_state
== TCP_TIME_WAIT
)
42 inet_twsk_put(inet_twsk(sk
));
48 extract_icmp4_fields(const struct sk_buff
*skb
,
55 unsigned int outside_hdrlen
= ip_hdrlen(skb
);
56 struct iphdr
*inside_iph
, _inside_iph
;
57 struct icmphdr
*icmph
, _icmph
;
58 __be16
*ports
, _ports
[2];
60 icmph
= skb_header_pointer(skb
, outside_hdrlen
,
61 sizeof(_icmph
), &_icmph
);
65 switch (icmph
->type
) {
66 case ICMP_DEST_UNREACH
:
67 case ICMP_SOURCE_QUENCH
:
69 case ICMP_TIME_EXCEEDED
:
70 case ICMP_PARAMETERPROB
:
76 inside_iph
= skb_header_pointer(skb
, outside_hdrlen
+
77 sizeof(struct icmphdr
),
78 sizeof(_inside_iph
), &_inside_iph
);
79 if (inside_iph
== NULL
)
82 if (inside_iph
->protocol
!= IPPROTO_TCP
&&
83 inside_iph
->protocol
!= IPPROTO_UDP
)
86 ports
= skb_header_pointer(skb
, outside_hdrlen
+
87 sizeof(struct icmphdr
) +
88 (inside_iph
->ihl
<< 2),
89 sizeof(_ports
), &_ports
);
93 /* the inside IP packet is the one quoted from our side, thus
94 * its saddr is the local address */
95 *protocol
= inside_iph
->protocol
;
96 *laddr
= inside_iph
->saddr
;
98 *raddr
= inside_iph
->daddr
;
105 socket_match(const struct sk_buff
*skb
, struct xt_action_param
*par
,
106 const struct xt_socket_mtinfo1
*info
)
108 const struct iphdr
*iph
= ip_hdr(skb
);
109 struct udphdr _hdr
, *hp
= NULL
;
114 #ifdef XT_SOCKET_HAVE_CONNTRACK
115 struct nf_conn
const *ct
;
116 enum ip_conntrack_info ctinfo
;
119 if (iph
->protocol
== IPPROTO_UDP
|| iph
->protocol
== IPPROTO_TCP
) {
120 hp
= skb_header_pointer(skb
, ip_hdrlen(skb
),
121 sizeof(_hdr
), &_hdr
);
125 protocol
= iph
->protocol
;
131 } else if (iph
->protocol
== IPPROTO_ICMP
) {
132 if (extract_icmp4_fields(skb
, &protocol
, &saddr
, &daddr
,
139 #ifdef XT_SOCKET_HAVE_CONNTRACK
140 /* Do the lookup with the original socket address in case this is a
141 * reply packet of an established SNAT-ted connection. */
143 ct
= nf_ct_get(skb
, &ctinfo
);
144 if (ct
&& !nf_ct_is_untracked(ct
) &&
145 ((iph
->protocol
!= IPPROTO_ICMP
&&
146 ctinfo
== IP_CT_ESTABLISHED_REPLY
) ||
147 (iph
->protocol
== IPPROTO_ICMP
&&
148 ctinfo
== IP_CT_RELATED_REPLY
)) &&
149 (ct
->status
& IPS_SRC_NAT_DONE
)) {
151 daddr
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.u3
.ip
;
152 dport
= (iph
->protocol
== IPPROTO_TCP
) ?
153 ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.u
.tcp
.port
:
154 ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.u
.udp
.port
;
158 sk
= nf_tproxy_get_sock_v4(dev_net(skb
->dev
), protocol
,
159 saddr
, daddr
, sport
, dport
, par
->in
, NFT_LOOKUP_ANY
);
162 bool transparent
= true;
164 /* Ignore sockets listening on INADDR_ANY */
165 wildcard
= (sk
->sk_state
!= TCP_TIME_WAIT
&&
166 inet_sk(sk
)->inet_rcv_saddr
== 0);
168 /* Ignore non-transparent sockets,
169 if XT_SOCKET_TRANSPARENT is used */
170 if (info
&& info
->flags
& XT_SOCKET_TRANSPARENT
)
171 transparent
= ((sk
->sk_state
!= TCP_TIME_WAIT
&&
172 inet_sk(sk
)->transparent
) ||
173 (sk
->sk_state
== TCP_TIME_WAIT
&&
174 inet_twsk(sk
)->tw_transparent
));
176 xt_socket_put_sk(sk
);
178 if (wildcard
|| !transparent
)
182 pr_debug("proto %hhu %pI4:%hu -> %pI4:%hu (orig %pI4:%hu) sock %p\n",
183 protocol
, &saddr
, ntohs(sport
),
184 &daddr
, ntohs(dport
),
185 &iph
->daddr
, hp
? ntohs(hp
->dest
) : 0, sk
);
191 socket_mt4_v0(const struct sk_buff
*skb
, struct xt_action_param
*par
)
193 return socket_match(skb
, par
, NULL
);
197 socket_mt4_v1(const struct sk_buff
*skb
, struct xt_action_param
*par
)
199 return socket_match(skb
, par
, par
->matchinfo
);
202 #ifdef XT_SOCKET_HAVE_IPV6
205 extract_icmp6_fields(const struct sk_buff
*skb
,
206 unsigned int outside_hdrlen
,
208 struct in6_addr
**raddr
,
209 struct in6_addr
**laddr
,
213 struct ipv6hdr
*inside_iph
, _inside_iph
;
214 struct icmp6hdr
*icmph
, _icmph
;
215 __be16
*ports
, _ports
[2];
219 icmph
= skb_header_pointer(skb
, outside_hdrlen
,
220 sizeof(_icmph
), &_icmph
);
224 if (icmph
->icmp6_type
& ICMPV6_INFOMSG_MASK
)
227 inside_iph
= skb_header_pointer(skb
, outside_hdrlen
+ sizeof(_icmph
), sizeof(_inside_iph
), &_inside_iph
);
228 if (inside_iph
== NULL
)
230 inside_nexthdr
= inside_iph
->nexthdr
;
232 inside_hdrlen
= ipv6_skip_exthdr(skb
, outside_hdrlen
+ sizeof(_icmph
) + sizeof(_inside_iph
), &inside_nexthdr
);
233 if (inside_hdrlen
< 0)
234 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
236 if (inside_nexthdr
!= IPPROTO_TCP
&&
237 inside_nexthdr
!= IPPROTO_UDP
)
240 ports
= skb_header_pointer(skb
, inside_hdrlen
,
241 sizeof(_ports
), &_ports
);
245 /* the inside IP packet is the one quoted from our side, thus
246 * its saddr is the local address */
247 *protocol
= inside_nexthdr
;
248 *laddr
= &inside_iph
->saddr
;
250 *raddr
= &inside_iph
->daddr
;
257 socket_mt6_v1(const struct sk_buff
*skb
, struct xt_action_param
*par
)
259 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
260 struct udphdr _hdr
, *hp
= NULL
;
262 struct in6_addr
*daddr
, *saddr
;
265 const struct xt_socket_mtinfo1
*info
= (struct xt_socket_mtinfo1
*) par
->matchinfo
;
267 tproto
= ipv6_find_hdr(skb
, &thoff
, -1, NULL
);
269 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
273 if (tproto
== IPPROTO_UDP
|| tproto
== IPPROTO_TCP
) {
274 hp
= skb_header_pointer(skb
, thoff
,
275 sizeof(_hdr
), &_hdr
);
284 } else if (tproto
== IPPROTO_ICMPV6
) {
285 if (extract_icmp6_fields(skb
, thoff
, &tproto
, &saddr
, &daddr
,
292 sk
= nf_tproxy_get_sock_v6(dev_net(skb
->dev
), tproto
,
293 saddr
, daddr
, sport
, dport
, par
->in
, NFT_LOOKUP_ANY
);
296 bool transparent
= true;
298 /* Ignore sockets listening on INADDR_ANY */
299 wildcard
= (sk
->sk_state
!= TCP_TIME_WAIT
&&
300 ipv6_addr_any(&inet6_sk(sk
)->rcv_saddr
));
302 /* Ignore non-transparent sockets,
303 if XT_SOCKET_TRANSPARENT is used */
304 if (info
&& info
->flags
& XT_SOCKET_TRANSPARENT
)
305 transparent
= ((sk
->sk_state
!= TCP_TIME_WAIT
&&
306 inet_sk(sk
)->transparent
) ||
307 (sk
->sk_state
== TCP_TIME_WAIT
&&
308 inet_twsk(sk
)->tw_transparent
));
310 xt_socket_put_sk(sk
);
312 if (wildcard
|| !transparent
)
316 pr_debug("proto %hhd %pI6:%hu -> %pI6:%hu "
317 "(orig %pI6:%hu) sock %p\n",
318 tproto
, saddr
, ntohs(sport
),
320 &iph
->daddr
, hp
? ntohs(hp
->dest
) : 0, sk
);
326 static struct xt_match socket_mt_reg
[] __read_mostly
= {
330 .family
= NFPROTO_IPV4
,
331 .match
= socket_mt4_v0
,
332 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
333 (1 << NF_INET_LOCAL_IN
),
339 .family
= NFPROTO_IPV4
,
340 .match
= socket_mt4_v1
,
341 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
342 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
343 (1 << NF_INET_LOCAL_IN
),
346 #ifdef XT_SOCKET_HAVE_IPV6
350 .family
= NFPROTO_IPV6
,
351 .match
= socket_mt6_v1
,
352 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
353 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
354 (1 << NF_INET_LOCAL_IN
),
360 static int __init
socket_mt_init(void)
362 nf_defrag_ipv4_enable();
363 #ifdef XT_SOCKET_HAVE_IPV6
364 nf_defrag_ipv6_enable();
367 return xt_register_matches(socket_mt_reg
, ARRAY_SIZE(socket_mt_reg
));
370 static void __exit
socket_mt_exit(void)
372 xt_unregister_matches(socket_mt_reg
, ARRAY_SIZE(socket_mt_reg
));
375 module_init(socket_mt_init
);
376 module_exit(socket_mt_exit
);
378 MODULE_LICENSE("GPL");
379 MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
380 MODULE_DESCRIPTION("x_tables socket match module");
381 MODULE_ALIAS("ipt_socket");
382 MODULE_ALIAS("ip6t_socket");