blob: b10ade272b50941fbdb6d730944db6dc334c8c29 [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
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500147static struct sock *xt_socket_lookup_slow_v4(struct net *net,
148 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;
Pablo Neira Ayuso6703aa72012-08-29 15:58:29 +0000154 __be32 uninitialized_var(daddr), uninitialized_var(saddr);
155 __be16 uninitialized_var(dport), uninitialized_var(sport);
156 u8 uninitialized_var(protocol);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200157#ifdef XT_SOCKET_HAVE_CONNTRACK
158 struct nf_conn const *ct;
159 enum ip_conntrack_info ctinfo;
160#endif
161
162 if (iph->protocol == IPPROTO_UDP || iph->protocol == IPPROTO_TCP) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200163 struct udphdr _hdr, *hp;
164
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200165 hp = skb_header_pointer(skb, ip_hdrlen(skb),
166 sizeof(_hdr), &_hdr);
167 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200168 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200169
170 protocol = iph->protocol;
171 saddr = iph->saddr;
172 sport = hp->source;
173 daddr = iph->daddr;
174 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500175 data_skb = (struct sk_buff *)skb;
176 doff = iph->protocol == IPPROTO_TCP ?
177 ip_hdrlen(skb) + __tcp_hdrlen((struct tcphdr *)hp) :
178 ip_hdrlen(skb) + sizeof(*hp);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200179
180 } else if (iph->protocol == IPPROTO_ICMP) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200181 if (extract_icmp4_fields(skb, &protocol, &saddr, &daddr,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200182 &sport, &dport))
183 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200184 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200185 return NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200186 }
187
188#ifdef XT_SOCKET_HAVE_CONNTRACK
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200189 /* Do the lookup with the original socket address in
190 * case this is a reply packet of an established
191 * SNAT-ted connection.
192 */
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200193 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet5bfddbd2010-06-08 16:09:52 +0200194 if (ct && !nf_ct_is_untracked(ct) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200195 ((iph->protocol != IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200196 ctinfo == IP_CT_ESTABLISHED_REPLY) ||
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200197 (iph->protocol == IPPROTO_ICMP &&
Eric Dumazetfb048832011-05-19 15:44:27 +0200198 ctinfo == IP_CT_RELATED_REPLY)) &&
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200199 (ct->status & IPS_SRC_NAT_DONE)) {
200
201 daddr = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip;
202 dport = (iph->protocol == IPPROTO_TCP) ?
203 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.tcp.port :
204 ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port;
205 }
206#endif
207
Craig Galleka5836362016-02-10 11:50:38 -0500208 return xt_socket_get_sock_v4(net, data_skb, doff, protocol, saddr,
209 daddr, sport, dport, indev);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200210}
211
212static bool
213socket_match(const struct sk_buff *skb, struct xt_action_param *par,
214 const struct xt_socket_mtinfo1 *info)
215{
Harout Hedeshian01555e72015-06-15 18:40:43 -0600216 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200217 struct sock *sk = skb->sk;
218
Eric Dumazet00028aa2013-05-22 11:01:06 +0000219 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500220 sk = xt_socket_lookup_slow_v4(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000221 if (sk) {
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200222 bool wildcard;
223 bool transparent = true;
224
Eric Dumazet681f1302013-06-20 05:52:22 -0700225 /* Ignore sockets listening on INADDR_ANY,
226 * unless XT_SOCKET_NOWILDCARD is set
227 */
228 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700229 sk_fullsock(sk) &&
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000230 inet_sk(sk)->inet_rcv_saddr == 0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200231
232 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700233 * if XT_SOCKET_TRANSPARENT is used
234 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700235 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700236 transparent = xt_socket_sk_is_transparent(sk);
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200237
Harout Hedeshian01555e72015-06-15 18:40:43 -0600238 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
239 transparent)
240 pskb->mark = sk->sk_mark;
241
Eric Dumazet00028aa2013-05-22 11:01:06 +0000242 if (sk != skb->sk)
Eric Dumazet1a8bf6e2013-10-11 09:03:25 -0700243 sock_gen_put(sk);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200244
245 if (wildcard || !transparent)
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200246 sk = NULL;
247 }
248
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200249 return sk != NULL;
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200250}
251
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200252static bool
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200253socket_mt4_v0(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200254{
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700255 static struct xt_socket_mtinfo1 xt_info_v0 = {
256 .flags = 0,
257 };
258
259 return socket_match(skb, par, &xt_info_v0);
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200260}
261
262static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600263socket_mt4_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200264{
265 return socket_match(skb, par, par->matchinfo);
266}
267
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000268#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200269
270static int
271extract_icmp6_fields(const struct sk_buff *skb,
272 unsigned int outside_hdrlen,
David S. Miller089282f2010-10-28 12:59:53 -0700273 int *protocol,
Eric Dumazet78296c92015-02-15 19:03:45 -0800274 const struct in6_addr **raddr,
275 const struct in6_addr **laddr,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200276 __be16 *rport,
Eric Dumazet78296c92015-02-15 19:03:45 -0800277 __be16 *lport,
278 struct ipv6hdr *ipv6_var)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200279{
Eric Dumazet78296c92015-02-15 19:03:45 -0800280 const struct ipv6hdr *inside_iph;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200281 struct icmp6hdr *icmph, _icmph;
282 __be16 *ports, _ports[2];
283 u8 inside_nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800284 __be16 inside_fragoff;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200285 int inside_hdrlen;
286
287 icmph = skb_header_pointer(skb, outside_hdrlen,
288 sizeof(_icmph), &_icmph);
289 if (icmph == NULL)
290 return 1;
291
292 if (icmph->icmp6_type & ICMPV6_INFOMSG_MASK)
293 return 1;
294
Eric Dumazet78296c92015-02-15 19:03:45 -0800295 inside_iph = skb_header_pointer(skb, outside_hdrlen + sizeof(_icmph),
296 sizeof(*ipv6_var), ipv6_var);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200297 if (inside_iph == NULL)
298 return 1;
299 inside_nexthdr = inside_iph->nexthdr;
300
Eric Dumazet78296c92015-02-15 19:03:45 -0800301 inside_hdrlen = ipv6_skip_exthdr(skb, outside_hdrlen + sizeof(_icmph) +
302 sizeof(*ipv6_var),
Jesse Gross75f28112011-11-30 17:05:51 -0800303 &inside_nexthdr, &inside_fragoff);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200304 if (inside_hdrlen < 0)
305 return 1; /* hjm: Packet has no/incomplete transport layer headers. */
306
307 if (inside_nexthdr != IPPROTO_TCP &&
308 inside_nexthdr != IPPROTO_UDP)
309 return 1;
310
311 ports = skb_header_pointer(skb, inside_hdrlen,
312 sizeof(_ports), &_ports);
313 if (ports == NULL)
314 return 1;
315
316 /* the inside IP packet is the one quoted from our side, thus
317 * its saddr is the local address */
318 *protocol = inside_nexthdr;
319 *laddr = &inside_iph->saddr;
320 *lport = ports[0];
321 *raddr = &inside_iph->daddr;
322 *rport = ports[1];
323
324 return 0;
325}
326
Florian Westphal93742cf2013-07-29 15:41:53 +0200327static struct sock *
Craig Galleka5836362016-02-10 11:50:38 -0500328xt_socket_get_sock_v6(struct net *net, struct sk_buff *skb, int doff,
329 const u8 protocol,
Florian Westphal93742cf2013-07-29 15:41:53 +0200330 const struct in6_addr *saddr, const struct in6_addr *daddr,
331 const __be16 sport, const __be16 dport,
332 const struct net_device *in)
333{
334 switch (protocol) {
335 case IPPROTO_TCP:
Craig Galleka5836362016-02-10 11:50:38 -0500336 return inet6_lookup(net, &tcp_hashinfo, skb, doff,
Florian Westphal93742cf2013-07-29 15:41:53 +0200337 saddr, sport, daddr, dport,
338 in->ifindex);
339 case IPPROTO_UDP:
340 return udp6_lib_lookup(net, saddr, sport, daddr, dport,
341 in->ifindex);
342 }
343
344 return NULL;
345}
346
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500347static struct sock *xt_socket_lookup_slow_v6(struct net *net,
348 const struct sk_buff *skb,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200349 const struct net_device *indev)
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200350{
Pablo Neira Ayuso6703aa72012-08-29 15:58:29 +0000351 __be16 uninitialized_var(dport), uninitialized_var(sport);
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200352 const struct in6_addr *daddr = NULL, *saddr = NULL;
353 struct ipv6hdr *iph = ipv6_hdr(skb);
Craig Galleka5836362016-02-10 11:50:38 -0500354 struct sk_buff *data_skb = NULL;
355 int doff = 0;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200356 int thoff = 0, tproto;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200357
Hans Schillstrom84018f52012-04-23 03:35:26 +0000358 tproto = ipv6_find_hdr(skb, &thoff, -1, NULL, NULL);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200359 if (tproto < 0) {
360 pr_debug("unable to find transport header in IPv6 packet, dropping\n");
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200361 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200362 }
363
364 if (tproto == IPPROTO_UDP || tproto == IPPROTO_TCP) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200365 struct udphdr _hdr, *hp;
366
367 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200368 if (hp == NULL)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200369 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200370
371 saddr = &iph->saddr;
372 sport = hp->source;
373 daddr = &iph->daddr;
374 dport = hp->dest;
Craig Galleka5836362016-02-10 11:50:38 -0500375 data_skb = (struct sk_buff *)skb;
376 doff = tproto == IPPROTO_TCP ?
377 thoff + __tcp_hdrlen((struct tcphdr *)hp) :
378 thoff + sizeof(*hp);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200379
380 } else if (tproto == IPPROTO_ICMPV6) {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200381 struct ipv6hdr ipv6_var;
382
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200383 if (extract_icmp6_fields(skb, thoff, &tproto, &saddr, &daddr,
Eric Dumazet78296c92015-02-15 19:03:45 -0800384 &sport, &dport, &ipv6_var))
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200385 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200386 } else {
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200387 return NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200388 }
389
Craig Galleka5836362016-02-10 11:50:38 -0500390 return xt_socket_get_sock_v6(net, data_skb, doff, tproto, saddr, daddr,
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200391 sport, dport, indev);
392}
393
394static bool
Harout Hedeshian01555e72015-06-15 18:40:43 -0600395socket_mt6_v1_v2_v3(const struct sk_buff *skb, struct xt_action_param *par)
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200396{
397 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
Harout Hedeshian01555e72015-06-15 18:40:43 -0600398 struct sk_buff *pskb = (struct sk_buff *)skb;
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200399 struct sock *sk = skb->sk;
400
Eric Dumazet00028aa2013-05-22 11:01:06 +0000401 if (!sk)
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500402 sk = xt_socket_lookup_slow_v6(par->net, skb, par->in);
Eric Dumazet00028aa2013-05-22 11:01:06 +0000403 if (sk) {
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200404 bool wildcard;
405 bool transparent = true;
406
Eric Dumazet681f1302013-06-20 05:52:22 -0700407 /* Ignore sockets listening on INADDR_ANY
408 * unless XT_SOCKET_NOWILDCARD is set
409 */
410 wildcard = (!(info->flags & XT_SOCKET_NOWILDCARD) &&
Eric Dumazeta9407002015-03-16 21:06:17 -0700411 sk_fullsock(sk) &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700412 ipv6_addr_any(&sk->sk_v6_rcv_saddr));
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200413
414 /* Ignore non-transparent sockets,
Eric Dumazeta9407002015-03-16 21:06:17 -0700415 * if XT_SOCKET_TRANSPARENT is used
416 */
Eric Dumazetbaf60ef2013-07-11 19:22:19 -0700417 if (info->flags & XT_SOCKET_TRANSPARENT)
Eric Dumazeta9407002015-03-16 21:06:17 -0700418 transparent = xt_socket_sk_is_transparent(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200419
Harout Hedeshian01555e72015-06-15 18:40:43 -0600420 if (info->flags & XT_SOCKET_RESTORESKMARK && !wildcard &&
421 transparent)
422 pskb->mark = sk->sk_mark;
423
Eric Dumazet00028aa2013-05-22 11:01:06 +0000424 if (sk != skb->sk)
Eric Dumazet1a8bf6e2013-10-11 09:03:25 -0700425 sock_gen_put(sk);
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200426
427 if (wildcard || !transparent)
428 sk = NULL;
429 }
430
Daniel Borkmannd64d80a2015-04-02 14:28:30 +0200431 return sk != NULL;
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200432}
433#endif
434
Eric Dumazet681f1302013-06-20 05:52:22 -0700435static int socket_mt_v1_check(const struct xt_mtchk_param *par)
436{
437 const struct xt_socket_mtinfo1 *info = (struct xt_socket_mtinfo1 *) par->matchinfo;
438
439 if (info->flags & ~XT_SOCKET_FLAGS_V1) {
440 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V1);
441 return -EINVAL;
442 }
443 return 0;
444}
445
446static int socket_mt_v2_check(const struct xt_mtchk_param *par)
447{
448 const struct xt_socket_mtinfo2 *info = (struct xt_socket_mtinfo2 *) par->matchinfo;
449
450 if (info->flags & ~XT_SOCKET_FLAGS_V2) {
451 pr_info("unknown flags 0x%x\n", info->flags & ~XT_SOCKET_FLAGS_V2);
452 return -EINVAL;
453 }
454 return 0;
455}
456
Harout Hedeshian01555e72015-06-15 18:40:43 -0600457static int socket_mt_v3_check(const struct xt_mtchk_param *par)
458{
459 const struct xt_socket_mtinfo3 *info =
460 (struct xt_socket_mtinfo3 *)par->matchinfo;
461
462 if (info->flags & ~XT_SOCKET_FLAGS_V3) {
463 pr_info("unknown flags 0x%x\n",
464 info->flags & ~XT_SOCKET_FLAGS_V3);
465 return -EINVAL;
466 }
467 return 0;
468}
469
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200470static struct xt_match socket_mt_reg[] __read_mostly = {
471 {
472 .name = "socket",
473 .revision = 0,
474 .family = NFPROTO_IPV4,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200475 .match = socket_mt4_v0,
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100476 .hooks = (1 << NF_INET_PRE_ROUTING) |
477 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200478 .me = THIS_MODULE,
479 },
480 {
481 .name = "socket",
482 .revision = 1,
483 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600484 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700485 .checkentry = socket_mt_v1_check,
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200486 .matchsize = sizeof(struct xt_socket_mtinfo1),
Jan Engelhardtaa3c4872009-10-29 15:35:10 +0100487 .hooks = (1 << NF_INET_PRE_ROUTING) |
488 (1 << NF_INET_LOCAL_IN),
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200489 .me = THIS_MODULE,
490 },
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000491#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200492 {
493 .name = "socket",
494 .revision = 1,
495 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600496 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700497 .checkentry = socket_mt_v1_check,
498 .matchsize = sizeof(struct xt_socket_mtinfo1),
499 .hooks = (1 << NF_INET_PRE_ROUTING) |
500 (1 << NF_INET_LOCAL_IN),
501 .me = THIS_MODULE,
502 },
503#endif
504 {
505 .name = "socket",
506 .revision = 2,
507 .family = NFPROTO_IPV4,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600508 .match = socket_mt4_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700509 .checkentry = socket_mt_v2_check,
510 .matchsize = sizeof(struct xt_socket_mtinfo1),
511 .hooks = (1 << NF_INET_PRE_ROUTING) |
512 (1 << NF_INET_LOCAL_IN),
513 .me = THIS_MODULE,
514 },
515#ifdef XT_SOCKET_HAVE_IPV6
516 {
517 .name = "socket",
518 .revision = 2,
519 .family = NFPROTO_IPV6,
Harout Hedeshian01555e72015-06-15 18:40:43 -0600520 .match = socket_mt6_v1_v2_v3,
Eric Dumazet681f1302013-06-20 05:52:22 -0700521 .checkentry = socket_mt_v2_check,
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200522 .matchsize = sizeof(struct xt_socket_mtinfo1),
523 .hooks = (1 << NF_INET_PRE_ROUTING) |
524 (1 << NF_INET_LOCAL_IN),
525 .me = THIS_MODULE,
526 },
527#endif
Harout Hedeshian01555e72015-06-15 18:40:43 -0600528 {
529 .name = "socket",
530 .revision = 3,
531 .family = NFPROTO_IPV4,
532 .match = socket_mt4_v1_v2_v3,
533 .checkentry = socket_mt_v3_check,
534 .matchsize = sizeof(struct xt_socket_mtinfo1),
535 .hooks = (1 << NF_INET_PRE_ROUTING) |
536 (1 << NF_INET_LOCAL_IN),
537 .me = THIS_MODULE,
538 },
539#ifdef XT_SOCKET_HAVE_IPV6
540 {
541 .name = "socket",
542 .revision = 3,
543 .family = NFPROTO_IPV6,
544 .match = socket_mt6_v1_v2_v3,
545 .checkentry = socket_mt_v3_check,
546 .matchsize = sizeof(struct xt_socket_mtinfo1),
547 .hooks = (1 << NF_INET_PRE_ROUTING) |
548 (1 << NF_INET_LOCAL_IN),
549 .me = THIS_MODULE,
550 },
551#endif
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200552};
553
554static int __init socket_mt_init(void)
555{
556 nf_defrag_ipv4_enable();
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000557#ifdef XT_SOCKET_HAVE_IPV6
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200558 nf_defrag_ipv6_enable();
559#endif
560
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200561 return xt_register_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200562}
563
564static void __exit socket_mt_exit(void)
565{
Laszlo Attila Totha31e1ff2009-06-09 15:16:34 +0200566 xt_unregister_matches(socket_mt_reg, ARRAY_SIZE(socket_mt_reg));
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200567}
568
569module_init(socket_mt_init);
570module_exit(socket_mt_exit);
571
572MODULE_LICENSE("GPL");
573MODULE_AUTHOR("Krisztian Kovacs, Balazs Scheidler");
574MODULE_DESCRIPTION("x_tables socket match module");
575MODULE_ALIAS("ipt_socket");
Balazs Scheidlerb64c9252010-10-21 16:19:42 +0200576MODULE_ALIAS("ip6t_socket");