blob: 1e48fcf29203f1a8ba269803833c55bae34c1048 [file] [log] [blame]
KOVACS Krisztian136cdc72008-10-08 11:35:12 +02001/*
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 Engelhardtff67e4e2010-03-19 21:08:16 +010012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020013#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>
22#include <net/netfilter/nf_tproxy_core.h>
23#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
KOVACS Krisztianf6318e52010-10-24 23:38:32 +000024
Igor Maravićc0cd1152011-12-12 02:58:24 +000025#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
KOVACS Krisztianf6318e52010-10-24 23:38:32 +000026#define XT_SOCKET_HAVE_IPV6 1
27#include <linux/netfilter_ipv6/ip6_tables.h>
Balazs Scheidlerb64c9252010-10-21 16:19:42 +020028#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
KOVACS Krisztianf6318e52010-10-24 23:38:32 +000029#endif
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020030
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +020031#include <linux/netfilter/xt_socket.h>
32
Igor Maravićc0cd1152011-12-12 02:58:24 +000033#if IS_ENABLED(CONFIG_NF_CONNTRACK)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020034#define XT_SOCKET_HAVE_CONNTRACK 1
35#include <net/netfilter/nf_conntrack.h>
36#endif
37
JP Abgrall0735f542011-06-15 16:52:40 -070038void
Florian Westphald503b302011-02-17 11:32:38 +010039xt_socket_put_sk(struct sock *sk)
40{
41 if (sk->sk_state == TCP_TIME_WAIT)
42 inet_twsk_put(inet_twsk(sk));
43 else
44 sock_put(sk);
45}
JP Abgrall0735f542011-06-15 16:52:40 -070046EXPORT_SYMBOL(xt_socket_put_sk);
Florian Westphald503b302011-02-17 11:32:38 +010047
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020048static int
Balazs Scheidlerb64c9252010-10-21 16:19:42 +020049extract_icmp4_fields(const struct sk_buff *skb,
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020050 u8 *protocol,
51 __be32 *raddr,
52 __be32 *laddr,
53 __be16 *rport,
54 __be16 *lport)
55{
56 unsigned int outside_hdrlen = ip_hdrlen(skb);
57 struct iphdr *inside_iph, _inside_iph;
58 struct icmphdr *icmph, _icmph;
59 __be16 *ports, _ports[2];
60
61 icmph = skb_header_pointer(skb, outside_hdrlen,
62 sizeof(_icmph), &_icmph);
63 if (icmph == NULL)
64 return 1;
65
66 switch (icmph->type) {
67 case ICMP_DEST_UNREACH:
68 case ICMP_SOURCE_QUENCH:
69 case ICMP_REDIRECT:
70 case ICMP_TIME_EXCEEDED:
71 case ICMP_PARAMETERPROB:
72 break;
73 default:
74 return 1;
75 }
76
77 inside_iph = skb_header_pointer(skb, outside_hdrlen +
78 sizeof(struct icmphdr),
79 sizeof(_inside_iph), &_inside_iph);
80 if (inside_iph == NULL)
81 return 1;
82
83 if (inside_iph->protocol != IPPROTO_TCP &&
84 inside_iph->protocol != IPPROTO_UDP)
85 return 1;
86
87 ports = skb_header_pointer(skb, outside_hdrlen +
88 sizeof(struct icmphdr) +
89 (inside_iph->ihl << 2),
90 sizeof(_ports), &_ports);
91 if (ports == NULL)
92 return 1;
93
94 /* the inside IP packet is the one quoted from our side, thus
95 * its saddr is the local address */
96 *protocol = inside_iph->protocol;
97 *laddr = inside_iph->saddr;
98 *lport = ports[0];
99 *raddr = inside_iph->daddr;
100 *rport = ports[1];
101
102 return 0;
103}
104
JP Abgrall0735f542011-06-15 16:52:40 -0700105struct sock*
106xt_socket_get4_sk(const struct sk_buff *skb, struct xt_action_param *par)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200107{
108 const struct iphdr *iph = ip_hdr(skb);
109 struct udphdr _hdr, *hp = NULL;
110 struct sock *sk;
111 __be32 daddr, saddr;
112 __be16 dport, sport;
113 u8 protocol;
114#ifdef XT_SOCKET_HAVE_CONNTRACK
115 struct nf_conn const *ct;
116 enum ip_conntrack_info ctinfo;
117#endif
118
119 if (iph->protocol == IPPROTO_UDP || iph->protocol == IPPROTO_TCP) {
120 hp = skb_header_pointer(skb, ip_hdrlen(skb),
121 sizeof(_hdr), &_hdr);
122 if (hp == NULL)
JP Abgrall0735f542011-06-15 16:52:40 -0700123 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200124
125 protocol = iph->protocol;
126 saddr = iph->saddr;
127 sport = hp->source;
128 daddr = iph->daddr;
129 dport = hp->dest;
130
131 } else if (iph->protocol == IPPROTO_ICMP) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200132 if (extract_icmp4_fields(skb, &protocol, &saddr, &daddr,
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200133 &sport, &dport))
JP Abgrall0735f542011-06-15 16:52:40 -0700134 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200135 } else {
JP Abgrall0735f542011-06-15 16:52:40 -0700136 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200137 }
138
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. */
142
143 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200144 if (ct && !nf_ct_is_untracked(ct) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200145 ((iph->protocol != IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200146 ctinfo == IP_CT_ESTABLISHED_REPLY) ||
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200147 (iph->protocol == IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200148 ctinfo == IP_CT_RELATED_REPLY)) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200149 (ct->status & IPS_SRC_NAT_DONE)) {
150
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;
155 }
156#endif
157
158 sk = nf_tproxy_get_sock_v4(dev_net(skb->dev), protocol,
Balazs Scheidler106e4c22010-10-21 12:45:14 +0200159 saddr, daddr, sport, dport, par->in, NFT_LOOKUP_ANY);
JP Abgrall0735f542011-06-15 16:52:40 -0700160
161 pr_debug("proto %hhu %pI4:%hu -> %pI4:%hu (orig %pI4:%hu) sock %p\n",
162 protocol, &saddr, ntohs(sport),
163 &daddr, ntohs(dport),
164 &iph->daddr, hp ? ntohs(hp->dest) : 0, sk);
165
166 return sk;
167}
168EXPORT_SYMBOL(xt_socket_get4_sk);
169
170static bool
171socket_match(const struct sk_buff *skb, struct xt_action_param *par,
172 const struct xt_socket_mtinfo1 *info)
173{
174 struct sock *sk;
175
176 sk = xt_socket_get4_sk(skb, par);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200177 if (sk != NULL) {
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200178 bool wildcard;
179 bool transparent = true;
180
181 /* Ignore sockets listening on INADDR_ANY */
182 wildcard = (sk->sk_state != TCP_TIME_WAIT &&
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000183 inet_sk(sk)->inet_rcv_saddr == 0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200184
185 /* Ignore non-transparent sockets,
186 if XT_SOCKET_TRANSPARENT is used */
187 if (info && info->flags & XT_SOCKET_TRANSPARENT)
188 transparent = ((sk->sk_state != TCP_TIME_WAIT &&
189 inet_sk(sk)->transparent) ||
190 (sk->sk_state == TCP_TIME_WAIT &&
191 inet_twsk(sk)->tw_transparent));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200192
Florian Westphald503b302011-02-17 11:32:38 +0100193 xt_socket_put_sk(sk);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200194
195 if (wildcard || !transparent)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200196 sk = NULL;
197 }
198
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200199 return (sk != NULL);
200}
201
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200202static bool
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200203socket_mt4_v0(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200204{
205 return socket_match(skb, par, NULL);
206}
207
208static bool
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200209socket_mt4_v1(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200210{
211 return socket_match(skb, par, par->matchinfo);
212}
213
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000214#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200215
216static int
217extract_icmp6_fields(const struct sk_buff *skb,
218 unsigned int outside_hdrlen,
David S. Miller089282f2010-10-28 12:59:53 -0700219 int *protocol,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200220 struct in6_addr **raddr,
221 struct in6_addr **laddr,
222 __be16 *rport,
223 __be16 *lport)
224{
225 struct ipv6hdr *inside_iph, _inside_iph;
226 struct icmp6hdr *icmph, _icmph;
227 __be16 *ports, _ports[2];
228 u8 inside_nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800229 __be16 inside_fragoff;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200230 int inside_hdrlen;
231
232 icmph = skb_header_pointer(skb, outside_hdrlen,
233 sizeof(_icmph), &_icmph);
234 if (icmph == NULL)
235 return 1;
236
237 if (icmph->icmp6_type & ICMPV6_INFOMSG_MASK)
238 return 1;
239
240 inside_iph = skb_header_pointer(skb, outside_hdrlen + sizeof(_icmph), sizeof(_inside_iph), &_inside_iph);
241 if (inside_iph == NULL)
242 return 1;
243 inside_nexthdr = inside_iph->nexthdr;
244
Jesse Gross75f28112011-11-30 17:05:51 -0800245 inside_hdrlen = ipv6_skip_exthdr(skb, outside_hdrlen + sizeof(_icmph) + sizeof(_inside_iph),
246 &inside_nexthdr, &inside_fragoff);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200247 if (inside_hdrlen < 0)
248 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
249
250 if (inside_nexthdr != IPPROTO_TCP &&
251 inside_nexthdr != IPPROTO_UDP)
252 return 1;
253
254 ports = skb_header_pointer(skb, inside_hdrlen,
255 sizeof(_ports), &_ports);
256 if (ports == NULL)
257 return 1;
258
259 /* the inside IP packet is the one quoted from our side, thus
260 * its saddr is the local address */
261 *protocol = inside_nexthdr;
262 *laddr = &inside_iph->saddr;
263 *lport = ports[0];
264 *raddr = &inside_iph->daddr;
265 *rport = ports[1];
266
267 return 0;
268}
269
JP Abgrall0735f542011-06-15 16:52:40 -0700270struct sock*
271xt_socket_get6_sk(const struct sk_buff *skb, struct xt_action_param *par)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200272{
273 struct ipv6hdr *iph = ipv6_hdr(skb);
274 struct udphdr _hdr, *hp = NULL;
275 struct sock *sk;
276 struct in6_addr *daddr, *saddr;
277 __be16 dport, sport;
David S. Miller089282f2010-10-28 12:59:53 -0700278 int thoff, tproto;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200279
280 tproto = ipv6_find_hdr(skb, &thoff, -1, NULL);
281 if (tproto < 0) {
282 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
283 return NF_DROP;
284 }
285
286 if (tproto == IPPROTO_UDP || tproto == IPPROTO_TCP) {
287 hp = skb_header_pointer(skb, thoff,
288 sizeof(_hdr), &_hdr);
289 if (hp == NULL)
JP Abgrall0735f542011-06-15 16:52:40 -0700290 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200291
292 saddr = &iph->saddr;
293 sport = hp->source;
294 daddr = &iph->daddr;
295 dport = hp->dest;
296
297 } else if (tproto == IPPROTO_ICMPV6) {
298 if (extract_icmp6_fields(skb, thoff, &tproto, &saddr, &daddr,
299 &sport, &dport))
JP Abgrall0735f542011-06-15 16:52:40 -0700300 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200301 } else {
JP Abgrall0735f542011-06-15 16:52:40 -0700302 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200303 }
304
305 sk = nf_tproxy_get_sock_v6(dev_net(skb->dev), tproto,
306 saddr, daddr, sport, dport, par->in, NFT_LOOKUP_ANY);
JP Abgrall0735f542011-06-15 16:52:40 -0700307 pr_debug("proto %hhd %pI6:%hu -> %pI6:%hu "
308 "(orig %pI6:%hu) sock %p\n",
309 tproto, saddr, ntohs(sport),
310 daddr, ntohs(dport),
311 &iph->daddr, hp ? ntohs(hp->dest) : 0, sk);
312 return sk;
313}
314EXPORT_SYMBOL(xt_socket_get6_sk);
315
316static bool
317socket_mt6_v1(const struct sk_buff *skb, struct xt_action_param *par)
318{
319 struct sock *sk;
320 const struct xt_socket_mtinfo1 *info;
321
322 info = (struct xt_socket_mtinfo1 *) par->matchinfo;
323 sk = xt_socket_get6_sk(skb, par);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200324 if (sk != NULL) {
325 bool wildcard;
326 bool transparent = true;
327
328 /* Ignore sockets listening on INADDR_ANY */
329 wildcard = (sk->sk_state != TCP_TIME_WAIT &&
330 ipv6_addr_any(&inet6_sk(sk)->rcv_saddr));
331
332 /* Ignore non-transparent sockets,
333 if XT_SOCKET_TRANSPARENT is used */
334 if (info && info->flags & XT_SOCKET_TRANSPARENT)
335 transparent = ((sk->sk_state != TCP_TIME_WAIT &&
336 inet_sk(sk)->transparent) ||
337 (sk->sk_state == TCP_TIME_WAIT &&
338 inet_twsk(sk)->tw_transparent));
339
Florian Westphald503b302011-02-17 11:32:38 +0100340 xt_socket_put_sk(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200341
342 if (wildcard || !transparent)
343 sk = NULL;
344 }
345
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200346 return (sk != NULL);
347}
348#endif
349
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200350static struct xt_match socket_mt_reg[] __read_mostly = {
351 {
352 .name = "socket",
353 .revision = 0,
354 .family = NFPROTO_IPV4,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200355 .match = socket_mt4_v0,
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100356 .hooks = (1 << NF_INET_PRE_ROUTING) |
357 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200358 .me = THIS_MODULE,
359 },
360 {
361 .name = "socket",
362 .revision = 1,
363 .family = NFPROTO_IPV4,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200364 .match = socket_mt4_v1,
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200365 .matchsize = sizeof(struct xt_socket_mtinfo1),
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100366 .hooks = (1 << NF_INET_PRE_ROUTING) |
367 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200368 .me = THIS_MODULE,
369 },
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000370#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200371 {
372 .name = "socket",
373 .revision = 1,
374 .family = NFPROTO_IPV6,
375 .match = socket_mt6_v1,
376 .matchsize = sizeof(struct xt_socket_mtinfo1),
377 .hooks = (1 << NF_INET_PRE_ROUTING) |
378 (1 << NF_INET_LOCAL_IN),
379 .me = THIS_MODULE,
380 },
381#endif
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200382};
383
384static int __init socket_mt_init(void)
385{
386 nf_defrag_ipv4_enable();
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000387#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200388 nf_defrag_ipv6_enable();
389#endif
390
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200391 return xt_register_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200392}
393
394static void __exit socket_mt_exit(void)
395{
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200396 xt_unregister_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200397}
398
399module_init(socket_mt_init);
400module_exit(socket_mt_exit);
401
402MODULE_LICENSE("GPL");
403MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
404MODULE_DESCRIPTION("x_tables socket match module");
405MODULE_ALIAS("ipt_socket");
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200406MODULE_ALIAS("ip6t_socket");