blob: a52fbaf526913f67774fe3d131c8c70665e5ba90 [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 Stultzbd1bca42014-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 Torokhov20e85a22015-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) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200164 struct udphdr _hdr, *hp;
165
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200166 hp = skb_header_pointer(skb, ip_hdrlen(skb),
167 sizeof(_hdr), &_hdr);
168 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200169 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200170
171 protocol = iph->protocol;
172 saddr = iph->saddr;
173 sport = hp->source;
174 daddr = iph->daddr;
175 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500176 data_skb = (struct sk_buff *)skb;
177 doff = iph->protocol == IPPROTO_TCP ?
178 ip_hdrlen(skb) + __tcp_hdrlen((struct tcphdr *)hp) :
179 ip_hdrlen(skb) + sizeof(*hp);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200180
181 } else if (iph->protocol == IPPROTO_ICMP) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200182 if (extract_icmp4_fields(skb, &protocol, &saddr, &daddr,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200183 &sport, &dport))
184 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200185 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200186 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200187 }
188
189#ifdef XT_SOCKET_HAVE_CONNTRACK
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200190 /* Do the lookup with the original socket address in
191 * case this is a reply packet of an established
192 * SNAT-ted connection.
193 */
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200194 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200195 if (ct && !nf_ct_is_untracked(ct) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200196 ((iph->protocol != IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200197 ctinfo == IP_CT_ESTABLISHED_REPLY) ||
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200198 (iph->protocol == IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200199 ctinfo == IP_CT_RELATED_REPLY)) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200200 (ct->status & IPS_SRC_NAT_DONE)) {
201
202 daddr = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip;
203 dport = (iph->protocol == IPPROTO_TCP) ?
204 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.tcp.port :
205 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port;
206 }
207#endif
208
Dmitry Torokhov20e85a22015-09-03 14:48:52 -0700209 if (sk)
210 atomic_inc(&sk->sk_refcnt);
211 else
212 sk = xt_socket_get_sock_v4(dev_net(skb->dev), data_skb, doff,
213 protocol, saddr, daddr, sport,
214 dport, indev);
215
216 return sk;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200217}
John Stultzbd1bca42014-03-28 16:23:48 -0700218EXPORT_SYMBOL(xt_socket_lookup_slow_v4);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200219
220static bool
221socket_match(const struct sk_buff *skb, struct xt_action_param *par,
222 const struct xt_socket_mtinfo1 *info)
223{
Harout Hedeshian01555e72015-06-15 18:40:43 -0600224 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200225 struct sock *sk = skb->sk;
226
Eric Dumazet00028aa2013-05-22 11:01:06 +0000227 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500228 sk = xt_socket_lookup_slow_v4(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000229 if (sk) {
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200230 bool wildcard;
231 bool transparent = true;
232
Eric Dumazet681f1302013-06-20 05:52:22 -0700233 /* Ignore sockets listening on INADDR_ANY,
234 * unless XT_SOCKET_NOWILDCARD is set
235 */
236 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700237 sk_fullsock(sk) &&
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000238 inet_sk(sk)->inet_rcv_saddr == 0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200239
240 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700241 * if XT_SOCKET_TRANSPARENT is used
242 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700243 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700244 transparent = xt_socket_sk_is_transparent(sk);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200245
Harout Hedeshian01555e72015-06-15 18:40:43 -0600246 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
247 transparent)
248 pskb->mark = sk->sk_mark;
249
Dmitry Torokhov20e85a22015-09-03 14:48:52 -0700250 sock_gen_put(sk);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200251
252 if (wildcard || !transparent)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200253 sk = NULL;
254 }
255
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200256 return sk != NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200257}
258
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200259static bool
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200260socket_mt4_v0(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200261{
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700262 static struct xt_socket_mtinfo1 xt_info_v0 = {
263 .flags = 0,
264 };
265
266 return socket_match(skb, par, &xt_info_v0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200267}
268
269static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600270socket_mt4_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200271{
272 return socket_match(skb, par, par->matchinfo);
273}
274
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000275#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200276
277static int
278extract_icmp6_fields(const struct sk_buff *skb,
279 unsigned int outside_hdrlen,
David S. Miller089282f2010-10-28 12:59:53 -0700280 int *protocol,
Eric Dumazet78296c92015-02-15 19:03:45 -0800281 const struct in6_addr **raddr,
282 const struct in6_addr **laddr,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200283 __be16 *rport,
Eric Dumazet78296c92015-02-15 19:03:45 -0800284 __be16 *lport,
285 struct ipv6hdr *ipv6_var)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200286{
Eric Dumazet78296c92015-02-15 19:03:45 -0800287 const struct ipv6hdr *inside_iph;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200288 struct icmp6hdr *icmph, _icmph;
289 __be16 *ports, _ports[2];
290 u8 inside_nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800291 __be16 inside_fragoff;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200292 int inside_hdrlen;
293
294 icmph = skb_header_pointer(skb, outside_hdrlen,
295 sizeof(_icmph), &_icmph);
296 if (icmph == NULL)
297 return 1;
298
299 if (icmph->icmp6_type & ICMPV6_INFOMSG_MASK)
300 return 1;
301
Eric Dumazet78296c92015-02-15 19:03:45 -0800302 inside_iph = skb_header_pointer(skb, outside_hdrlen + sizeof(_icmph),
303 sizeof(*ipv6_var), ipv6_var);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200304 if (inside_iph == NULL)
305 return 1;
306 inside_nexthdr = inside_iph->nexthdr;
307
Eric Dumazet78296c92015-02-15 19:03:45 -0800308 inside_hdrlen = ipv6_skip_exthdr(skb, outside_hdrlen + sizeof(_icmph) +
309 sizeof(*ipv6_var),
Jesse Gross75f28112011-11-30 17:05:51 -0800310 &inside_nexthdr, &inside_fragoff);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200311 if (inside_hdrlen < 0)
312 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
313
314 if (inside_nexthdr != IPPROTO_TCP &&
315 inside_nexthdr != IPPROTO_UDP)
316 return 1;
317
318 ports = skb_header_pointer(skb, inside_hdrlen,
319 sizeof(_ports), &_ports);
320 if (ports == NULL)
321 return 1;
322
323 /* the inside IP packet is the one quoted from our side, thus
324 * its saddr is the local address */
325 *protocol = inside_nexthdr;
326 *laddr = &inside_iph->saddr;
327 *lport = ports[0];
328 *raddr = &inside_iph->daddr;
329 *rport = ports[1];
330
331 return 0;
332}
333
Florian Westphal93742cf2013-07-29 15:41:53 +0200334static struct sock *
Craig Galleka5836362016-02-10 11:50:38 -0500335xt_socket_get_sock_v6(struct net *net, struct sk_buff *skb, int doff,
336 const u8 protocol,
Florian Westphal93742cf2013-07-29 15:41:53 +0200337 const struct in6_addr *saddr, const struct in6_addr *daddr,
338 const __be16 sport, const __be16 dport,
339 const struct net_device *in)
340{
341 switch (protocol) {
342 case IPPROTO_TCP:
Craig Galleka5836362016-02-10 11:50:38 -0500343 return inet6_lookup(net, &tcp_hashinfo, skb, doff,
Florian Westphal93742cf2013-07-29 15:41:53 +0200344 saddr, sport, daddr, dport,
345 in->ifindex);
346 case IPPROTO_UDP:
347 return udp6_lib_lookup(net, saddr, sport, daddr, dport,
348 in->ifindex);
349 }
350
351 return NULL;
352}
353
John Stultzbd1bca42014-03-28 16:23:48 -0700354struct sock *xt_socket_lookup_slow_v6(struct net *net,
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500355 const struct sk_buff *skb,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200356 const struct net_device *indev)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200357{
Dmitry Torokhov20e85a22015-09-03 14:48:52 -0700358 struct sock *sk = skb->sk;
Pablo Neira Ayuso6703aa72012-08-29 15:58:29 +0000359 __be16 uninitialized_var(dport), uninitialized_var(sport);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200360 const struct in6_addr *daddr = NULL, *saddr = NULL;
361 struct ipv6hdr *iph = ipv6_hdr(skb);
Craig Galleka5836362016-02-10 11:50:38 -0500362 struct sk_buff *data_skb = NULL;
363 int doff = 0;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200364 int thoff = 0, tproto;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200365
Hans Schillstrom84018f52012-04-23 03:35:26 +0000366 tproto = ipv6_find_hdr(skb, &thoff, -1, NULL, NULL);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200367 if (tproto < 0) {
368 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200369 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200370 }
371
372 if (tproto == IPPROTO_UDP || tproto == IPPROTO_TCP) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200373 struct udphdr _hdr, *hp;
374
375 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200376 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200377 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200378
379 saddr = &iph->saddr;
380 sport = hp->source;
381 daddr = &iph->daddr;
382 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500383 data_skb = (struct sk_buff *)skb;
384 doff = tproto == IPPROTO_TCP ?
385 thoff + __tcp_hdrlen((struct tcphdr *)hp) :
386 thoff + sizeof(*hp);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200387
388 } else if (tproto == IPPROTO_ICMPV6) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200389 struct ipv6hdr ipv6_var;
390
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200391 if (extract_icmp6_fields(skb, thoff, &tproto, &saddr, &daddr,
Eric Dumazet78296c92015-02-15 19:03:45 -0800392 &sport, &dport, &ipv6_var))
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200393 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200394 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200395 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200396 }
397
Dmitry Torokhov20e85a22015-09-03 14:48:52 -0700398 if (sk)
399 atomic_inc(&sk->sk_refcnt);
400 else
401 sk = xt_socket_get_sock_v6(dev_net(skb->dev), data_skb, doff,
402 tproto, saddr, daddr, sport, dport,
403 indev);
404
405 return sk;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200406}
John Stultzbd1bca42014-03-28 16:23:48 -0700407EXPORT_SYMBOL(xt_socket_lookup_slow_v6);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200408
409static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600410socket_mt6_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200411{
412 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
Harout Hedeshian01555e72015-06-15 18:40:43 -0600413 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200414 struct sock *sk = skb->sk;
415
Eric Dumazet00028aa2013-05-22 11:01:06 +0000416 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500417 sk = xt_socket_lookup_slow_v6(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000418 if (sk) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200419 bool wildcard;
420 bool transparent = true;
421
Eric Dumazet681f1302013-06-20 05:52:22 -0700422 /* Ignore sockets listening on INADDR_ANY
423 * unless XT_SOCKET_NOWILDCARD is set
424 */
425 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700426 sk_fullsock(sk) &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700427 ipv6_addr_any(&sk->sk_v6_rcv_saddr));
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200428
429 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700430 * if XT_SOCKET_TRANSPARENT is used
431 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700432 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700433 transparent = xt_socket_sk_is_transparent(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200434
Harout Hedeshian01555e72015-06-15 18:40:43 -0600435 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
436 transparent)
437 pskb->mark = sk->sk_mark;
438
Eric Dumazet00028aa2013-05-22 11:01:06 +0000439 if (sk != skb->sk)
Eric Dumazet1a8bf6e2013-10-11 09:03:25 -0700440 sock_gen_put(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200441
442 if (wildcard || !transparent)
443 sk = NULL;
444 }
445
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200446 return sk != NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200447}
448#endif
449
Eric Dumazet681f1302013-06-20 05:52:22 -0700450static int socket_mt_v1_check(const struct xt_mtchk_param *par)
451{
452 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
453
454 if (info->flags & ~XT_SOCKET_FLAGS_V1) {
455 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V1);
456 return -EINVAL;
457 }
458 return 0;
459}
460
461static int socket_mt_v2_check(const struct xt_mtchk_param *par)
462{
463 const struct xt_socket_mtinfo2 *info = (struct xt_socket_mtinfo2 *) par->matchinfo;
464
465 if (info->flags & ~XT_SOCKET_FLAGS_V2) {
466 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V2);
467 return -EINVAL;
468 }
469 return 0;
470}
471
Harout Hedeshian01555e72015-06-15 18:40:43 -0600472static int socket_mt_v3_check(const struct xt_mtchk_param *par)
473{
474 const struct xt_socket_mtinfo3 *info =
475 (struct xt_socket_mtinfo3 *)par->matchinfo;
476
477 if (info->flags & ~XT_SOCKET_FLAGS_V3) {
478 pr_info("unknown flags 0x%x\n",
479 info->flags & ~XT_SOCKET_FLAGS_V3);
480 return -EINVAL;
481 }
482 return 0;
483}
484
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200485static struct xt_match socket_mt_reg[] __read_mostly = {
486 {
487 .name = "socket",
488 .revision = 0,
489 .family = NFPROTO_IPV4,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200490 .match = socket_mt4_v0,
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100491 .hooks = (1 << NF_INET_PRE_ROUTING) |
492 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200493 .me = THIS_MODULE,
494 },
495 {
496 .name = "socket",
497 .revision = 1,
498 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600499 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700500 .checkentry = socket_mt_v1_check,
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200501 .matchsize = sizeof(struct xt_socket_mtinfo1),
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100502 .hooks = (1 << NF_INET_PRE_ROUTING) |
503 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200504 .me = THIS_MODULE,
505 },
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000506#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200507 {
508 .name = "socket",
509 .revision = 1,
510 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600511 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700512 .checkentry = socket_mt_v1_check,
513 .matchsize = sizeof(struct xt_socket_mtinfo1),
514 .hooks = (1 << NF_INET_PRE_ROUTING) |
515 (1 << NF_INET_LOCAL_IN),
516 .me = THIS_MODULE,
517 },
518#endif
519 {
520 .name = "socket",
521 .revision = 2,
522 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600523 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700524 .checkentry = socket_mt_v2_check,
525 .matchsize = sizeof(struct xt_socket_mtinfo1),
526 .hooks = (1 << NF_INET_PRE_ROUTING) |
527 (1 << NF_INET_LOCAL_IN),
528 .me = THIS_MODULE,
529 },
530#ifdef XT_SOCKET_HAVE_IPV6
531 {
532 .name = "socket",
533 .revision = 2,
534 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600535 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700536 .checkentry = socket_mt_v2_check,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200537 .matchsize = sizeof(struct xt_socket_mtinfo1),
538 .hooks = (1 << NF_INET_PRE_ROUTING) |
539 (1 << NF_INET_LOCAL_IN),
540 .me = THIS_MODULE,
541 },
542#endif
Harout Hedeshian01555e72015-06-15 18:40:43 -0600543 {
544 .name = "socket",
545 .revision = 3,
546 .family = NFPROTO_IPV4,
547 .match = socket_mt4_v1_v2_v3,
548 .checkentry = socket_mt_v3_check,
549 .matchsize = sizeof(struct xt_socket_mtinfo1),
550 .hooks = (1 << NF_INET_PRE_ROUTING) |
551 (1 << NF_INET_LOCAL_IN),
552 .me = THIS_MODULE,
553 },
554#ifdef XT_SOCKET_HAVE_IPV6
555 {
556 .name = "socket",
557 .revision = 3,
558 .family = NFPROTO_IPV6,
559 .match = socket_mt6_v1_v2_v3,
560 .checkentry = socket_mt_v3_check,
561 .matchsize = sizeof(struct xt_socket_mtinfo1),
562 .hooks = (1 << NF_INET_PRE_ROUTING) |
563 (1 << NF_INET_LOCAL_IN),
564 .me = THIS_MODULE,
565 },
566#endif
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200567};
568
569static int __init socket_mt_init(void)
570{
571 nf_defrag_ipv4_enable();
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000572#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200573 nf_defrag_ipv6_enable();
574#endif
575
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200576 return xt_register_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200577}
578
579static void __exit socket_mt_exit(void)
580{
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200581 xt_unregister_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200582}
583
584module_init(socket_mt_init);
585module_exit(socket_mt_exit);
586
587MODULE_LICENSE("GPL");
588MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
589MODULE_DESCRIPTION("x_tables socket match module");
590MODULE_ALIAS("ipt_socket");
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200591MODULE_ALIAS("ip6t_socket");