blob: 313a6dd79f1b5e88d90f7a0117b3ec1f71119839 [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>
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020022#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
KOVACS Krisztianf6318e52010-10-24 23:38:32 +000023
Igor Maravićc0cd1152011-12-12 02:58:24 +000024#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
KOVACS Krisztianf6318e52010-10-24 23:38:32 +000025#define XT_SOCKET_HAVE_IPV6 1
26#include <linux/netfilter_ipv6/ip6_tables.h>
Florian Westphal93742cf2013-07-29 15:41:53 +020027#include <net/inet6_hashtables.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
38static int
Balazs Scheidlerb64c9252010-10-21 16:19:42 +020039extract_icmp4_fields(const struct sk_buff *skb,
KOVACS Krisztian136cdc72008-10-08 11:35:12 +020040 u8 *protocol,
41 __be32 *raddr,
42 __be32 *laddr,
43 __be16 *rport,
44 __be16 *lport)
45{
46 unsigned int outside_hdrlen = ip_hdrlen(skb);
47 struct iphdr *inside_iph, _inside_iph;
48 struct icmphdr *icmph, _icmph;
49 __be16 *ports, _ports[2];
50
51 icmph = skb_header_pointer(skb, outside_hdrlen,
52 sizeof(_icmph), &_icmph);
53 if (icmph == NULL)
54 return 1;
55
56 switch (icmph->type) {
57 case ICMP_DEST_UNREACH:
58 case ICMP_SOURCE_QUENCH:
59 case ICMP_REDIRECT:
60 case ICMP_TIME_EXCEEDED:
61 case ICMP_PARAMETERPROB:
62 break;
63 default:
64 return 1;
65 }
66
67 inside_iph = skb_header_pointer(skb, outside_hdrlen +
68 sizeof(struct icmphdr),
69 sizeof(_inside_iph), &_inside_iph);
70 if (inside_iph == NULL)
71 return 1;
72
73 if (inside_iph->protocol != IPPROTO_TCP &&
74 inside_iph->protocol != IPPROTO_UDP)
75 return 1;
76
77 ports = skb_header_pointer(skb, outside_hdrlen +
78 sizeof(struct icmphdr) +
79 (inside_iph->ihl << 2),
80 sizeof(_ports), &_ports);
81 if (ports == NULL)
82 return 1;
83
84 /* the inside IP packet is the one quoted from our side, thus
85 * its saddr is the local address */
86 *protocol = inside_iph->protocol;
87 *laddr = inside_iph->saddr;
88 *lport = ports[0];
89 *raddr = inside_iph->daddr;
90 *rport = ports[1];
91
92 return 0;
93}
94
Florian Westphal93742cf2013-07-29 15:41:53 +020095/* "socket" match based redirection (no specific rule)
96 * ===================================================
97 *
98 * There are connections with dynamic endpoints (e.g. FTP data
99 * connection) that the user is unable to add explicit rules
100 * for. These are taken care of by a generic "socket" rule. It is
101 * assumed that the proxy application is trusted to open such
102 * connections without explicit iptables rule (except of course the
103 * generic 'socket' rule). In this case the following sockets are
104 * matched in preference order:
105 *
106 * - match: if there's a fully established connection matching the
107 * _packet_ tuple
108 *
109 * - match: if there's a non-zero bound listener (possibly with a
110 * non-local address) We don't accept zero-bound listeners, since
111 * then local services could intercept traffic going through the
112 * box.
113 */
114static struct sock *
Craig Galleka5836362016-02-10 11:50:38 -0500115xt_socket_get_sock_v4(struct net *net, struct sk_buff *skb, const int doff,
116 const u8 protocol,
Florian Westphal93742cf2013-07-29 15:41:53 +0200117 const __be32 saddr, const __be32 daddr,
118 const __be16 sport, const __be16 dport,
119 const struct net_device *in)
120{
121 switch (protocol) {
122 case IPPROTO_TCP:
Eric Dumazet3b24d852016-04-01 08:52:17 -0700123 return inet_lookup(net, &tcp_hashinfo, skb, doff,
124 saddr, sport, daddr, dport,
125 in->ifindex);
Florian Westphal93742cf2013-07-29 15:41:53 +0200126 case IPPROTO_UDP:
127 return udp4_lib_lookup(net, saddr, sport, daddr, dport,
128 in->ifindex);
129 }
130 return NULL;
131}
132
Eric Dumazeta9407002015-03-16 21:06:17 -0700133static bool xt_socket_sk_is_transparent(struct sock *sk)
134{
135 switch (sk->sk_state) {
136 case TCP_TIME_WAIT:
137 return inet_twsk(sk)->tw_transparent;
138
139 case TCP_NEW_SYN_RECV:
140 return inet_rsk(inet_reqsk(sk))->no_srccheck;
141
142 default:
143 return inet_sk(sk)->transparent;
144 }
145}
146
John Stultz994ee752014-03-28 16:23:48 -0700147struct sock *xt_socket_lookup_slow_v4(struct net *net,
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500148 const struct sk_buff *skb,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200149 const struct net_device *indev)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200150{
151 const struct iphdr *iph = ip_hdr(skb);
Craig Galleka5836362016-02-10 11:50:38 -0500152 struct sk_buff *data_skb = NULL;
153 int doff = 0;
Dmitry Torokhov80ce2e02015-09-03 14:48:52 -0700154 struct sock *sk = skb->sk;
Pablo Neira Ayuso6703aa72012-08-29 15:58:29 +0000155 __be32 uninitialized_var(daddr), uninitialized_var(saddr);
156 __be16 uninitialized_var(dport), uninitialized_var(sport);
157 u8 uninitialized_var(protocol);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200158#ifdef XT_SOCKET_HAVE_CONNTRACK
159 struct nf_conn const *ct;
160 enum ip_conntrack_info ctinfo;
161#endif
162
163 if (iph->protocol == IPPROTO_UDP || iph->protocol == IPPROTO_TCP) {
Tejaswi Tanikella7fbbe372018-01-05 12:40:48 +0530164 struct udphdr *hp;
165 struct tcphdr _hdr;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200166
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200167 hp = skb_header_pointer(skb, ip_hdrlen(skb),
Tejaswi Tanikella7fbbe372018-01-05 12:40:48 +0530168 iph->protocol == IPPROTO_UDP ?
169 sizeof(*hp) : sizeof(_hdr),
170 &_hdr);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200171 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200172 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200173
174 protocol = iph->protocol;
175 saddr = iph->saddr;
176 sport = hp->source;
177 daddr = iph->daddr;
178 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500179 data_skb = (struct sk_buff *)skb;
180 doff = iph->protocol == IPPROTO_TCP ?
181 ip_hdrlen(skb) + __tcp_hdrlen((struct tcphdr *)hp) :
182 ip_hdrlen(skb) + sizeof(*hp);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200183
184 } else if (iph->protocol == IPPROTO_ICMP) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200185 if (extract_icmp4_fields(skb, &protocol, &saddr, &daddr,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200186 &sport, &dport))
187 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200188 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200189 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200190 }
191
192#ifdef XT_SOCKET_HAVE_CONNTRACK
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200193 /* Do the lookup with the original socket address in
194 * case this is a reply packet of an established
195 * SNAT-ted connection.
196 */
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200197 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200198 if (ct && !nf_ct_is_untracked(ct) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200199 ((iph->protocol != IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200200 ctinfo == IP_CT_ESTABLISHED_REPLY) ||
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200201 (iph->protocol == IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200202 ctinfo == IP_CT_RELATED_REPLY)) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200203 (ct->status & IPS_SRC_NAT_DONE)) {
204
205 daddr = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip;
206 dport = (iph->protocol == IPPROTO_TCP) ?
207 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.tcp.port :
208 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port;
209 }
210#endif
211
Dmitry Torokhov80ce2e02015-09-03 14:48:52 -0700212 if (sk)
213 atomic_inc(&sk->sk_refcnt);
214 else
215 sk = xt_socket_get_sock_v4(dev_net(skb->dev), data_skb, doff,
216 protocol, saddr, daddr, sport,
217 dport, indev);
218
219 return sk;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200220}
John Stultz994ee752014-03-28 16:23:48 -0700221EXPORT_SYMBOL(xt_socket_lookup_slow_v4);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200222
223static bool
224socket_match(const struct sk_buff *skb, struct xt_action_param *par,
225 const struct xt_socket_mtinfo1 *info)
226{
Harout Hedeshian01555e72015-06-15 18:40:43 -0600227 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200228 struct sock *sk = skb->sk;
229
Eric Dumazet00028aa2013-05-22 11:01:06 +0000230 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500231 sk = xt_socket_lookup_slow_v4(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000232 if (sk) {
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200233 bool wildcard;
234 bool transparent = true;
235
Eric Dumazet681f1302013-06-20 05:52:22 -0700236 /* Ignore sockets listening on INADDR_ANY,
237 * unless XT_SOCKET_NOWILDCARD is set
238 */
239 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700240 sk_fullsock(sk) &&
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000241 inet_sk(sk)->inet_rcv_saddr == 0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200242
243 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700244 * if XT_SOCKET_TRANSPARENT is used
245 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700246 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700247 transparent = xt_socket_sk_is_transparent(sk);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200248
Harout Hedeshian01555e72015-06-15 18:40:43 -0600249 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
Subash Abhinov Kasiviswanathanda02c832017-09-21 14:51:12 -0600250 transparent && sk_fullsock(sk))
Harout Hedeshian01555e72015-06-15 18:40:43 -0600251 pskb->mark = sk->sk_mark;
252
Dmitry Torokhov80ce2e02015-09-03 14:48:52 -0700253 sock_gen_put(sk);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200254
255 if (wildcard || !transparent)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200256 sk = NULL;
257 }
258
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200259 return sk != NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200260}
261
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200262static bool
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200263socket_mt4_v0(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200264{
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700265 static struct xt_socket_mtinfo1 xt_info_v0 = {
266 .flags = 0,
267 };
268
269 return socket_match(skb, par, &xt_info_v0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200270}
271
272static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600273socket_mt4_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200274{
275 return socket_match(skb, par, par->matchinfo);
276}
277
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000278#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200279
280static int
281extract_icmp6_fields(const struct sk_buff *skb,
282 unsigned int outside_hdrlen,
David S. Miller089282f2010-10-28 12:59:53 -0700283 int *protocol,
Eric Dumazet78296c92015-02-15 19:03:45 -0800284 const struct in6_addr **raddr,
285 const struct in6_addr **laddr,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200286 __be16 *rport,
Eric Dumazet78296c92015-02-15 19:03:45 -0800287 __be16 *lport,
288 struct ipv6hdr *ipv6_var)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200289{
Eric Dumazet78296c92015-02-15 19:03:45 -0800290 const struct ipv6hdr *inside_iph;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200291 struct icmp6hdr *icmph, _icmph;
292 __be16 *ports, _ports[2];
293 u8 inside_nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800294 __be16 inside_fragoff;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200295 int inside_hdrlen;
296
297 icmph = skb_header_pointer(skb, outside_hdrlen,
298 sizeof(_icmph), &_icmph);
299 if (icmph == NULL)
300 return 1;
301
302 if (icmph->icmp6_type & ICMPV6_INFOMSG_MASK)
303 return 1;
304
Eric Dumazet78296c92015-02-15 19:03:45 -0800305 inside_iph = skb_header_pointer(skb, outside_hdrlen + sizeof(_icmph),
306 sizeof(*ipv6_var), ipv6_var);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200307 if (inside_iph == NULL)
308 return 1;
309 inside_nexthdr = inside_iph->nexthdr;
310
Eric Dumazet78296c92015-02-15 19:03:45 -0800311 inside_hdrlen = ipv6_skip_exthdr(skb, outside_hdrlen + sizeof(_icmph) +
312 sizeof(*ipv6_var),
Jesse Gross75f28112011-11-30 17:05:51 -0800313 &inside_nexthdr, &inside_fragoff);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200314 if (inside_hdrlen < 0)
315 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
316
317 if (inside_nexthdr != IPPROTO_TCP &&
318 inside_nexthdr != IPPROTO_UDP)
319 return 1;
320
321 ports = skb_header_pointer(skb, inside_hdrlen,
322 sizeof(_ports), &_ports);
323 if (ports == NULL)
324 return 1;
325
326 /* the inside IP packet is the one quoted from our side, thus
327 * its saddr is the local address */
328 *protocol = inside_nexthdr;
329 *laddr = &inside_iph->saddr;
330 *lport = ports[0];
331 *raddr = &inside_iph->daddr;
332 *rport = ports[1];
333
334 return 0;
335}
336
Florian Westphal93742cf2013-07-29 15:41:53 +0200337static struct sock *
Craig Galleka5836362016-02-10 11:50:38 -0500338xt_socket_get_sock_v6(struct net *net, struct sk_buff *skb, int doff,
339 const u8 protocol,
Florian Westphal93742cf2013-07-29 15:41:53 +0200340 const struct in6_addr *saddr, const struct in6_addr *daddr,
341 const __be16 sport, const __be16 dport,
342 const struct net_device *in)
343{
344 switch (protocol) {
345 case IPPROTO_TCP:
Craig Galleka5836362016-02-10 11:50:38 -0500346 return inet6_lookup(net, &tcp_hashinfo, skb, doff,
Florian Westphal93742cf2013-07-29 15:41:53 +0200347 saddr, sport, daddr, dport,
348 in->ifindex);
349 case IPPROTO_UDP:
350 return udp6_lib_lookup(net, saddr, sport, daddr, dport,
351 in->ifindex);
352 }
353
354 return NULL;
355}
356
John Stultz994ee752014-03-28 16:23:48 -0700357struct sock *xt_socket_lookup_slow_v6(struct net *net,
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500358 const struct sk_buff *skb,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200359 const struct net_device *indev)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200360{
Dmitry Torokhov80ce2e02015-09-03 14:48:52 -0700361 struct sock *sk = skb->sk;
Pablo Neira Ayuso6703aa72012-08-29 15:58:29 +0000362 __be16 uninitialized_var(dport), uninitialized_var(sport);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200363 const struct in6_addr *daddr = NULL, *saddr = NULL;
364 struct ipv6hdr *iph = ipv6_hdr(skb);
Craig Galleka5836362016-02-10 11:50:38 -0500365 struct sk_buff *data_skb = NULL;
366 int doff = 0;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200367 int thoff = 0, tproto;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200368
Hans Schillstrom84018f52012-04-23 03:35:26 +0000369 tproto = ipv6_find_hdr(skb, &thoff, -1, NULL, NULL);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200370 if (tproto < 0) {
371 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200372 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200373 }
374
375 if (tproto == IPPROTO_UDP || tproto == IPPROTO_TCP) {
Tejaswi Tanikella7fbbe372018-01-05 12:40:48 +0530376 struct udphdr *hp;
377 struct tcphdr _hdr;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200378
Tejaswi Tanikella7fbbe372018-01-05 12:40:48 +0530379 hp = skb_header_pointer(skb, thoff, tproto == IPPROTO_UDP ?
380 sizeof(*hp) : sizeof(_hdr), &_hdr);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200381 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200382 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200383
384 saddr = &iph->saddr;
385 sport = hp->source;
386 daddr = &iph->daddr;
387 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500388 data_skb = (struct sk_buff *)skb;
389 doff = tproto == IPPROTO_TCP ?
390 thoff + __tcp_hdrlen((struct tcphdr *)hp) :
391 thoff + sizeof(*hp);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200392
393 } else if (tproto == IPPROTO_ICMPV6) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200394 struct ipv6hdr ipv6_var;
395
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200396 if (extract_icmp6_fields(skb, thoff, &tproto, &saddr, &daddr,
Eric Dumazet78296c92015-02-15 19:03:45 -0800397 &sport, &dport, &ipv6_var))
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200398 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200399 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200400 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200401 }
402
Dmitry Torokhov80ce2e02015-09-03 14:48:52 -0700403 if (sk)
404 atomic_inc(&sk->sk_refcnt);
405 else
406 sk = xt_socket_get_sock_v6(dev_net(skb->dev), data_skb, doff,
407 tproto, saddr, daddr, sport, dport,
408 indev);
409
410 return sk;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200411}
John Stultz994ee752014-03-28 16:23:48 -0700412EXPORT_SYMBOL(xt_socket_lookup_slow_v6);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200413
414static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600415socket_mt6_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200416{
417 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
Harout Hedeshian01555e72015-06-15 18:40:43 -0600418 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200419 struct sock *sk = skb->sk;
420
Eric Dumazet00028aa2013-05-22 11:01:06 +0000421 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500422 sk = xt_socket_lookup_slow_v6(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000423 if (sk) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200424 bool wildcard;
425 bool transparent = true;
426
Eric Dumazet681f1302013-06-20 05:52:22 -0700427 /* Ignore sockets listening on INADDR_ANY
428 * unless XT_SOCKET_NOWILDCARD is set
429 */
430 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700431 sk_fullsock(sk) &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700432 ipv6_addr_any(&sk->sk_v6_rcv_saddr));
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200433
434 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700435 * if XT_SOCKET_TRANSPARENT is used
436 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700437 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700438 transparent = xt_socket_sk_is_transparent(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200439
Harout Hedeshian01555e72015-06-15 18:40:43 -0600440 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
Subash Abhinov Kasiviswanathanda02c832017-09-21 14:51:12 -0600441 transparent && sk_fullsock(sk))
Harout Hedeshian01555e72015-06-15 18:40:43 -0600442 pskb->mark = sk->sk_mark;
443
Eric Dumazet00028aa2013-05-22 11:01:06 +0000444 if (sk != skb->sk)
Eric Dumazet1a8bf6e2013-10-11 09:03:25 -0700445 sock_gen_put(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200446
447 if (wildcard || !transparent)
448 sk = NULL;
449 }
450
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200451 return sk != NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200452}
453#endif
454
Eric Dumazet681f1302013-06-20 05:52:22 -0700455static int socket_mt_v1_check(const struct xt_mtchk_param *par)
456{
457 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
458
459 if (info->flags & ~XT_SOCKET_FLAGS_V1) {
460 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V1);
461 return -EINVAL;
462 }
463 return 0;
464}
465
466static int socket_mt_v2_check(const struct xt_mtchk_param *par)
467{
468 const struct xt_socket_mtinfo2 *info = (struct xt_socket_mtinfo2 *) par->matchinfo;
469
470 if (info->flags & ~XT_SOCKET_FLAGS_V2) {
471 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V2);
472 return -EINVAL;
473 }
474 return 0;
475}
476
Harout Hedeshian01555e72015-06-15 18:40:43 -0600477static int socket_mt_v3_check(const struct xt_mtchk_param *par)
478{
479 const struct xt_socket_mtinfo3 *info =
480 (struct xt_socket_mtinfo3 *)par->matchinfo;
481
482 if (info->flags & ~XT_SOCKET_FLAGS_V3) {
483 pr_info("unknown flags 0x%x\n",
484 info->flags & ~XT_SOCKET_FLAGS_V3);
485 return -EINVAL;
486 }
487 return 0;
488}
489
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200490static struct xt_match socket_mt_reg[] __read_mostly = {
491 {
492 .name = "socket",
493 .revision = 0,
494 .family = NFPROTO_IPV4,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200495 .match = socket_mt4_v0,
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100496 .hooks = (1 << NF_INET_PRE_ROUTING) |
497 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200498 .me = THIS_MODULE,
499 },
500 {
501 .name = "socket",
502 .revision = 1,
503 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600504 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700505 .checkentry = socket_mt_v1_check,
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200506 .matchsize = sizeof(struct xt_socket_mtinfo1),
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100507 .hooks = (1 << NF_INET_PRE_ROUTING) |
508 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200509 .me = THIS_MODULE,
510 },
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000511#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200512 {
513 .name = "socket",
514 .revision = 1,
515 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600516 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700517 .checkentry = socket_mt_v1_check,
518 .matchsize = sizeof(struct xt_socket_mtinfo1),
519 .hooks = (1 << NF_INET_PRE_ROUTING) |
520 (1 << NF_INET_LOCAL_IN),
521 .me = THIS_MODULE,
522 },
523#endif
524 {
525 .name = "socket",
526 .revision = 2,
527 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600528 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700529 .checkentry = socket_mt_v2_check,
530 .matchsize = sizeof(struct xt_socket_mtinfo1),
531 .hooks = (1 << NF_INET_PRE_ROUTING) |
532 (1 << NF_INET_LOCAL_IN),
533 .me = THIS_MODULE,
534 },
535#ifdef XT_SOCKET_HAVE_IPV6
536 {
537 .name = "socket",
538 .revision = 2,
539 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600540 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700541 .checkentry = socket_mt_v2_check,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200542 .matchsize = sizeof(struct xt_socket_mtinfo1),
543 .hooks = (1 << NF_INET_PRE_ROUTING) |
544 (1 << NF_INET_LOCAL_IN),
545 .me = THIS_MODULE,
546 },
547#endif
Harout Hedeshian01555e72015-06-15 18:40:43 -0600548 {
549 .name = "socket",
550 .revision = 3,
551 .family = NFPROTO_IPV4,
552 .match = socket_mt4_v1_v2_v3,
553 .checkentry = socket_mt_v3_check,
554 .matchsize = sizeof(struct xt_socket_mtinfo1),
555 .hooks = (1 << NF_INET_PRE_ROUTING) |
556 (1 << NF_INET_LOCAL_IN),
557 .me = THIS_MODULE,
558 },
559#ifdef XT_SOCKET_HAVE_IPV6
560 {
561 .name = "socket",
562 .revision = 3,
563 .family = NFPROTO_IPV6,
564 .match = socket_mt6_v1_v2_v3,
565 .checkentry = socket_mt_v3_check,
566 .matchsize = sizeof(struct xt_socket_mtinfo1),
567 .hooks = (1 << NF_INET_PRE_ROUTING) |
568 (1 << NF_INET_LOCAL_IN),
569 .me = THIS_MODULE,
570 },
571#endif
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200572};
573
574static int __init socket_mt_init(void)
575{
576 nf_defrag_ipv4_enable();
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000577#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200578 nf_defrag_ipv6_enable();
579#endif
580
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200581 return xt_register_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200582}
583
584static void __exit socket_mt_exit(void)
585{
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200586 xt_unregister_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200587}
588
589module_init(socket_mt_init);
590module_exit(socket_mt_exit);
591
592MODULE_LICENSE("GPL");
593MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
594MODULE_DESCRIPTION("x_tables socket match module");
595MODULE_ALIAS("ipt_socket");
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200596MODULE_ALIAS("ip6t_socket");