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 IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
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 IS_ENABLED(CONFIG_NF_CONNTRACK)
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
;
110 struct sock
*sk
= skb
->sk
;
111 __be32
uninitialized_var(daddr
), uninitialized_var(saddr
);
112 __be16
uninitialized_var(dport
), uninitialized_var(sport
);
113 u8
uninitialized_var(protocol
);
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
;
159 sk
= nf_tproxy_get_sock_v4(dev_net(skb
->dev
), protocol
,
160 saddr
, daddr
, sport
, dport
,
161 par
->in
, NFT_LOOKUP_ANY
);
164 bool transparent
= true;
166 /* Ignore sockets listening on INADDR_ANY,
167 * unless XT_SOCKET_NOWILDCARD is set
169 wildcard
= (!(info
->flags
& XT_SOCKET_NOWILDCARD
) &&
170 sk
->sk_state
!= TCP_TIME_WAIT
&&
171 inet_sk(sk
)->inet_rcv_saddr
== 0);
173 /* Ignore non-transparent sockets,
174 if XT_SOCKET_TRANSPARENT is used */
175 if (info
&& info
->flags
& XT_SOCKET_TRANSPARENT
)
176 transparent
= ((sk
->sk_state
!= TCP_TIME_WAIT
&&
177 inet_sk(sk
)->transparent
) ||
178 (sk
->sk_state
== TCP_TIME_WAIT
&&
179 inet_twsk(sk
)->tw_transparent
));
182 xt_socket_put_sk(sk
);
184 if (wildcard
|| !transparent
)
188 pr_debug("proto %hhu %pI4:%hu -> %pI4:%hu (orig %pI4:%hu) sock %p\n",
189 protocol
, &saddr
, ntohs(sport
),
190 &daddr
, ntohs(dport
),
191 &iph
->daddr
, hp
? ntohs(hp
->dest
) : 0, sk
);
197 socket_mt4_v0(const struct sk_buff
*skb
, struct xt_action_param
*par
)
199 return socket_match(skb
, par
, NULL
);
203 socket_mt4_v1_v2(const struct sk_buff
*skb
, struct xt_action_param
*par
)
205 return socket_match(skb
, par
, par
->matchinfo
);
208 #ifdef XT_SOCKET_HAVE_IPV6
211 extract_icmp6_fields(const struct sk_buff
*skb
,
212 unsigned int outside_hdrlen
,
214 struct in6_addr
**raddr
,
215 struct in6_addr
**laddr
,
219 struct ipv6hdr
*inside_iph
, _inside_iph
;
220 struct icmp6hdr
*icmph
, _icmph
;
221 __be16
*ports
, _ports
[2];
223 __be16 inside_fragoff
;
226 icmph
= skb_header_pointer(skb
, outside_hdrlen
,
227 sizeof(_icmph
), &_icmph
);
231 if (icmph
->icmp6_type
& ICMPV6_INFOMSG_MASK
)
234 inside_iph
= skb_header_pointer(skb
, outside_hdrlen
+ sizeof(_icmph
), sizeof(_inside_iph
), &_inside_iph
);
235 if (inside_iph
== NULL
)
237 inside_nexthdr
= inside_iph
->nexthdr
;
239 inside_hdrlen
= ipv6_skip_exthdr(skb
, outside_hdrlen
+ sizeof(_icmph
) + sizeof(_inside_iph
),
240 &inside_nexthdr
, &inside_fragoff
);
241 if (inside_hdrlen
< 0)
242 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
244 if (inside_nexthdr
!= IPPROTO_TCP
&&
245 inside_nexthdr
!= IPPROTO_UDP
)
248 ports
= skb_header_pointer(skb
, inside_hdrlen
,
249 sizeof(_ports
), &_ports
);
253 /* the inside IP packet is the one quoted from our side, thus
254 * its saddr is the local address */
255 *protocol
= inside_nexthdr
;
256 *laddr
= &inside_iph
->saddr
;
258 *raddr
= &inside_iph
->daddr
;
265 socket_mt6_v1_v2(const struct sk_buff
*skb
, struct xt_action_param
*par
)
267 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
268 struct udphdr _hdr
, *hp
= NULL
;
269 struct sock
*sk
= skb
->sk
;
270 struct in6_addr
*daddr
= NULL
, *saddr
= NULL
;
271 __be16
uninitialized_var(dport
), uninitialized_var(sport
);
272 int thoff
= 0, uninitialized_var(tproto
);
273 const struct xt_socket_mtinfo1
*info
= (struct xt_socket_mtinfo1
*) par
->matchinfo
;
275 tproto
= ipv6_find_hdr(skb
, &thoff
, -1, NULL
, NULL
);
277 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
281 if (tproto
== IPPROTO_UDP
|| tproto
== IPPROTO_TCP
) {
282 hp
= skb_header_pointer(skb
, thoff
,
283 sizeof(_hdr
), &_hdr
);
292 } else if (tproto
== IPPROTO_ICMPV6
) {
293 if (extract_icmp6_fields(skb
, thoff
, &tproto
, &saddr
, &daddr
,
301 sk
= nf_tproxy_get_sock_v6(dev_net(skb
->dev
), tproto
,
302 saddr
, daddr
, sport
, dport
,
303 par
->in
, NFT_LOOKUP_ANY
);
306 bool transparent
= true;
308 /* Ignore sockets listening on INADDR_ANY
309 * unless XT_SOCKET_NOWILDCARD is set
311 wildcard
= (!(info
->flags
& XT_SOCKET_NOWILDCARD
) &&
312 sk
->sk_state
!= TCP_TIME_WAIT
&&
313 ipv6_addr_any(&inet6_sk(sk
)->rcv_saddr
));
315 /* Ignore non-transparent sockets,
316 if XT_SOCKET_TRANSPARENT is used */
317 if (info
&& info
->flags
& XT_SOCKET_TRANSPARENT
)
318 transparent
= ((sk
->sk_state
!= TCP_TIME_WAIT
&&
319 inet_sk(sk
)->transparent
) ||
320 (sk
->sk_state
== TCP_TIME_WAIT
&&
321 inet_twsk(sk
)->tw_transparent
));
324 xt_socket_put_sk(sk
);
326 if (wildcard
|| !transparent
)
330 pr_debug("proto %hhd %pI6:%hu -> %pI6:%hu "
331 "(orig %pI6:%hu) sock %p\n",
332 tproto
, saddr
, ntohs(sport
),
334 &iph
->daddr
, hp
? ntohs(hp
->dest
) : 0, sk
);
340 static int socket_mt_v1_check(const struct xt_mtchk_param
*par
)
342 const struct xt_socket_mtinfo1
*info
= (struct xt_socket_mtinfo1
*) par
->matchinfo
;
344 if (info
->flags
& ~XT_SOCKET_FLAGS_V1
) {
345 pr_info("unknown flags 0x%x\n", info
->flags
& ~XT_SOCKET_FLAGS_V1
);
351 static int socket_mt_v2_check(const struct xt_mtchk_param
*par
)
353 const struct xt_socket_mtinfo2
*info
= (struct xt_socket_mtinfo2
*) par
->matchinfo
;
355 if (info
->flags
& ~XT_SOCKET_FLAGS_V2
) {
356 pr_info("unknown flags 0x%x\n", info
->flags
& ~XT_SOCKET_FLAGS_V2
);
362 static struct xt_match socket_mt_reg
[] __read_mostly
= {
366 .family
= NFPROTO_IPV4
,
367 .match
= socket_mt4_v0
,
368 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
369 (1 << NF_INET_LOCAL_IN
),
375 .family
= NFPROTO_IPV4
,
376 .match
= socket_mt4_v1_v2
,
377 .checkentry
= socket_mt_v1_check
,
378 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
379 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
380 (1 << NF_INET_LOCAL_IN
),
383 #ifdef XT_SOCKET_HAVE_IPV6
387 .family
= NFPROTO_IPV6
,
388 .match
= socket_mt6_v1_v2
,
389 .checkentry
= socket_mt_v1_check
,
390 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
391 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
392 (1 << NF_INET_LOCAL_IN
),
399 .family
= NFPROTO_IPV4
,
400 .match
= socket_mt4_v1_v2
,
401 .checkentry
= socket_mt_v2_check
,
402 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
403 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
404 (1 << NF_INET_LOCAL_IN
),
407 #ifdef XT_SOCKET_HAVE_IPV6
411 .family
= NFPROTO_IPV6
,
412 .match
= socket_mt6_v1_v2
,
413 .checkentry
= socket_mt_v2_check
,
414 .matchsize
= sizeof(struct xt_socket_mtinfo1
),
415 .hooks
= (1 << NF_INET_PRE_ROUTING
) |
416 (1 << NF_INET_LOCAL_IN
),
422 static int __init
socket_mt_init(void)
424 nf_defrag_ipv4_enable();
425 #ifdef XT_SOCKET_HAVE_IPV6
426 nf_defrag_ipv6_enable();
429 return xt_register_matches(socket_mt_reg
, ARRAY_SIZE(socket_mt_reg
));
432 static void __exit
socket_mt_exit(void)
434 xt_unregister_matches(socket_mt_reg
, ARRAY_SIZE(socket_mt_reg
));
437 module_init(socket_mt_init
);
438 module_exit(socket_mt_exit
);
440 MODULE_LICENSE("GPL");
441 MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
442 MODULE_DESCRIPTION("x_tables socket match module");
443 MODULE_ALIAS("ipt_socket");
444 MODULE_ALIAS("ip6t_socket");