blob: 86f5b34a4ed1865cd1438817bfb46f6eb589f61e [file] [log] [blame]
KOVACS Krisztian73e40222008-10-08 11:35:12 +02001
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08002/* (C) 1999-2001 Paul `Rusty' Russell
3 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02004 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08009 */
10
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080011#include <linux/types.h>
12#include <linux/ip.h>
13#include <linux/netfilter.h>
14#include <linux/module.h>
15#include <linux/skbuff.h>
16#include <linux/icmp.h>
17#include <linux/sysctl.h>
Patrick McHardy0ae2cfe2006-01-05 12:21:52 -080018#include <net/route.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080019#include <net/ip.h>
20
21#include <linux/netfilter_ipv4.h>
22#include <net/netfilter/nf_conntrack.h>
23#include <net/netfilter/nf_conntrack_helper.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010024#include <net/netfilter/nf_conntrack_l4proto.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080025#include <net/netfilter/nf_conntrack_l3proto.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010026#include <net/netfilter/nf_conntrack_zones.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027#include <net/netfilter/nf_conntrack_core.h>
Patrick McHardy41d73ec2013-08-27 08:50:12 +020028#include <net/netfilter/nf_conntrack_seqadj.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080029#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardydd13b012008-04-14 11:15:52 +020030#include <net/netfilter/nf_nat_helper.h>
KOVACS Krisztian73e40222008-10-08 11:35:12 +020031#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
Patrick McHardy74f7a652009-08-25 15:33:08 +020032#include <net/netfilter/nf_log.h>
Patrick McHardydd13b012008-04-14 11:15:52 +020033
Jan Engelhardt8ce84392008-04-14 11:15:52 +020034static bool ipv4_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
35 struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036{
Jan Engelhardt32948582008-01-31 04:53:24 -080037 const __be32 *ap;
38 __be32 _addrs[2];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039 ap = skb_header_pointer(skb, nhoff + offsetof(struct iphdr, saddr),
40 sizeof(u_int32_t) * 2, _addrs);
41 if (ap == NULL)
Jan Engelhardt8ce84392008-04-14 11:15:52 +020042 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043
44 tuple->src.u3.ip = ap[0];
45 tuple->dst.u3.ip = ap[1];
46
Jan Engelhardt8ce84392008-04-14 11:15:52 +020047 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080048}
49
Jan Engelhardt8ce84392008-04-14 11:15:52 +020050static bool ipv4_invert_tuple(struct nf_conntrack_tuple *tuple,
51 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080052{
53 tuple->src.u3.ip = orig->dst.u3.ip;
54 tuple->dst.u3.ip = orig->src.u3.ip;
55
Jan Engelhardt8ce84392008-04-14 11:15:52 +020056 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080057}
58
59static int ipv4_print_tuple(struct seq_file *s,
60 const struct nf_conntrack_tuple *tuple)
61{
Harvey Harrisoncffee382008-10-31 00:53:08 -070062 return seq_printf(s, "src=%pI4 dst=%pI4 ",
63 &tuple->src.u3.ip, &tuple->dst.u3.ip);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080064}
65
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070066static int ipv4_get_l4proto(const struct sk_buff *skb, unsigned int nhoff,
67 unsigned int *dataoff, u_int8_t *protonum)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080068{
Jan Engelhardt32948582008-01-31 04:53:24 -080069 const struct iphdr *iph;
70 struct iphdr _iph;
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070071
72 iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph);
73 if (iph == NULL)
Jozsef Kadlecsik8430eac2012-04-09 16:32:16 +020074 return -NF_ACCEPT;
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070075
Patrick McHardy0fb96702007-09-11 11:27:01 +020076 /* Conntrack defragments packets, we might still see fragments
77 * inside ICMP packets though. */
78 if (iph->frag_off & htons(IP_OFFSET))
Jozsef Kadlecsik8430eac2012-04-09 16:32:16 +020079 return -NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080080
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070081 *dataoff = nhoff + (iph->ihl << 2);
82 *protonum = iph->protocol;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
Jozsef Kadlecsik07153c62012-04-03 22:02:01 +020084 /* Check bogus IP headers */
85 if (*dataoff > skb->len) {
86 pr_debug("nf_conntrack_ipv4: bogus IPv4 packet: "
87 "nhoff %u, ihl %u, skblen %u\n",
88 nhoff, iph->ihl << 2, skb->len);
89 return -NF_ACCEPT;
90 }
91
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080092 return NF_ACCEPT;
93}
94
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +020095static unsigned int ipv4_helper(unsigned int hooknum,
96 struct sk_buff *skb,
97 const struct net_device *in,
98 const struct net_device *out,
99 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800100{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800101 struct nf_conn *ct;
102 enum ip_conntrack_info ctinfo;
Jan Engelhardt32948582008-01-31 04:53:24 -0800103 const struct nf_conn_help *help;
104 const struct nf_conntrack_helper *helper;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105
106 /* This is where we call the helper: as the packet goes out. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700107 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazetfb048832011-05-19 15:44:27 +0200108 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200109 return NF_ACCEPT;
Harald Weltedc808fe2006-03-20 17:56:32 -0800110
111 help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700112 if (!help)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200113 return NF_ACCEPT;
Patrick McHardydd13b012008-04-14 11:15:52 +0200114
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700115 /* rcu_read_lock()ed by nf_hook_slow */
116 helper = rcu_dereference(help->helper);
117 if (!helper)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200118 return NF_ACCEPT;
Patrick McHardydd13b012008-04-14 11:15:52 +0200119
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100120 return helper->help(skb, skb_network_offset(skb) + ip_hdrlen(skb),
121 ct, ctinfo);
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200122}
123
124static unsigned int ipv4_confirm(unsigned int hooknum,
125 struct sk_buff *skb,
126 const struct net_device *in,
127 const struct net_device *out,
128 int (*okfn)(struct sk_buff *))
129{
130 struct nf_conn *ct;
131 enum ip_conntrack_info ctinfo;
132
133 ct = nf_ct_get(skb, &ctinfo);
134 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
135 goto out;
Patrick McHardydd13b012008-04-14 11:15:52 +0200136
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200137 /* adjust seqs for loopback traffic only in outgoing direction */
138 if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) &&
139 !nf_is_loopback_packet(skb)) {
Patrick McHardy41d73ec2013-08-27 08:50:12 +0200140 if (!nf_ct_seq_adjust(skb, ct, ctinfo, ip_hdrlen(skb))) {
Pablo Neira Ayuso1db7a742009-03-16 15:18:50 +0100141 NF_CT_STAT_INC_ATOMIC(nf_ct_net(ct), drop);
Patrick McHardydd13b012008-04-14 11:15:52 +0200142 return NF_DROP;
Pablo Neira Ayuso1db7a742009-03-16 15:18:50 +0100143 }
Patrick McHardydd13b012008-04-14 11:15:52 +0200144 }
145out:
146 /* We've seen it coming out the other side: confirm it */
147 return nf_conntrack_confirm(skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800148}
149
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800150static unsigned int ipv4_conntrack_in(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700151 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800152 const struct net_device *in,
153 const struct net_device *out,
154 int (*okfn)(struct sk_buff *))
155{
Alexey Dobriyana702a652008-10-08 11:35:04 +0200156 return nf_conntrack_in(dev_net(in), PF_INET, hooknum, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800157}
158
159static unsigned int ipv4_conntrack_local(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700160 struct sk_buff *skb,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900161 const struct net_device *in,
162 const struct net_device *out,
163 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164{
165 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700166 if (skb->len < sizeof(struct iphdr) ||
Patrick McHardy88843102009-01-12 00:06:00 +0000167 ip_hdrlen(skb) < sizeof(struct iphdr))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168 return NF_ACCEPT;
Alexey Dobriyana702a652008-10-08 11:35:04 +0200169 return nf_conntrack_in(dev_net(out), PF_INET, hooknum, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800170}
171
172/* Connection tracking may drop packets, but never alters them, so
173 make it the first hook. */
Patrick McHardy19994142007-12-05 01:23:00 -0800174static struct nf_hook_ops ipv4_conntrack_ops[] __read_mostly = {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700175 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700176 .hook = ipv4_conntrack_in,
177 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200178 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800179 .hooknum = NF_INET_PRE_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700180 .priority = NF_IP_PRI_CONNTRACK,
181 },
182 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700183 .hook = ipv4_conntrack_local,
184 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200185 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800186 .hooknum = NF_INET_LOCAL_OUT,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700187 .priority = NF_IP_PRI_CONNTRACK,
188 },
189 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200190 .hook = ipv4_helper,
191 .owner = THIS_MODULE,
192 .pf = NFPROTO_IPV4,
193 .hooknum = NF_INET_POST_ROUTING,
194 .priority = NF_IP_PRI_CONNTRACK_HELPER,
195 },
196 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700197 .hook = ipv4_confirm,
198 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200199 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800200 .hooknum = NF_INET_POST_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700201 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
202 },
203 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200204 .hook = ipv4_helper,
205 .owner = THIS_MODULE,
206 .pf = NFPROTO_IPV4,
207 .hooknum = NF_INET_LOCAL_IN,
208 .priority = NF_IP_PRI_CONNTRACK_HELPER,
209 },
210 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700211 .hook = ipv4_confirm,
212 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200213 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800214 .hooknum = NF_INET_LOCAL_IN,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700215 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
216 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217};
218
Patrick McHardya999e682006-11-29 02:35:20 +0100219#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
220static int log_invalid_proto_min = 0;
221static int log_invalid_proto_max = 255;
222
Joe Perchesfe2c6332013-06-11 23:04:25 -0700223static struct ctl_table ip_ct_sysctl_table[] = {
Patrick McHardya999e682006-11-29 02:35:20 +0100224 {
Patrick McHardya999e682006-11-29 02:35:20 +0100225 .procname = "ip_conntrack_max",
Patrick McHardya999e682006-11-29 02:35:20 +0100226 .maxlen = sizeof(int),
227 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800228 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100229 },
230 {
Patrick McHardya999e682006-11-29 02:35:20 +0100231 .procname = "ip_conntrack_count",
Patrick McHardya999e682006-11-29 02:35:20 +0100232 .maxlen = sizeof(int),
233 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800234 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100235 },
236 {
Patrick McHardya999e682006-11-29 02:35:20 +0100237 .procname = "ip_conntrack_buckets",
Patrick McHardya999e682006-11-29 02:35:20 +0100238 .maxlen = sizeof(unsigned int),
239 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800240 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100241 },
242 {
Patrick McHardya999e682006-11-29 02:35:20 +0100243 .procname = "ip_conntrack_checksum",
Patrick McHardya999e682006-11-29 02:35:20 +0100244 .maxlen = sizeof(int),
245 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800246 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100247 },
248 {
Patrick McHardya999e682006-11-29 02:35:20 +0100249 .procname = "ip_conntrack_log_invalid",
Patrick McHardya999e682006-11-29 02:35:20 +0100250 .maxlen = sizeof(unsigned int),
251 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800252 .proc_handler = proc_dointvec_minmax,
Patrick McHardya999e682006-11-29 02:35:20 +0100253 .extra1 = &log_invalid_proto_min,
254 .extra2 = &log_invalid_proto_max,
255 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800256 { }
Patrick McHardya999e682006-11-29 02:35:20 +0100257};
258#endif /* CONFIG_SYSCTL && CONFIG_NF_CONNTRACK_PROC_COMPAT */
259
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800260/* Fast function for those who don't want to parse /proc (and I don't
261 blame them). */
262/* Reversing the socket's dst/src point of view gives us the reply
263 mapping. */
264static int
265getorigdst(struct sock *sk, int optval, void __user *user, int *len)
266{
Jan Engelhardt32948582008-01-31 04:53:24 -0800267 const struct inet_sock *inet = inet_sk(sk);
268 const struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800269 struct nf_conntrack_tuple tuple;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900270
Philip Craig443a70d2008-04-29 03:35:10 -0700271 memset(&tuple, 0, sizeof(tuple));
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000272 tuple.src.u3.ip = inet->inet_rcv_saddr;
273 tuple.src.u.tcp.port = inet->inet_sport;
274 tuple.dst.u3.ip = inet->inet_daddr;
275 tuple.dst.u.tcp.port = inet->inet_dport;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800276 tuple.src.l3num = PF_INET;
Rafael Laufer54981272009-08-10 10:08:27 +0200277 tuple.dst.protonum = sk->sk_protocol;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800278
Rafael Laufer54981272009-08-10 10:08:27 +0200279 /* We only do TCP and SCTP at the moment: is there a better way? */
280 if (sk->sk_protocol != IPPROTO_TCP && sk->sk_protocol != IPPROTO_SCTP) {
281 pr_debug("SO_ORIGINAL_DST: Not a TCP/SCTP socket\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800282 return -ENOPROTOOPT;
283 }
284
285 if ((unsigned int) *len < sizeof(struct sockaddr_in)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700286 pr_debug("SO_ORIGINAL_DST: len %d not %Zu\n",
287 *len, sizeof(struct sockaddr_in));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288 return -EINVAL;
289 }
290
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100291 h = nf_conntrack_find_get(sock_net(sk), NF_CT_DEFAULT_ZONE, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800292 if (h) {
293 struct sockaddr_in sin;
294 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
295
296 sin.sin_family = AF_INET;
297 sin.sin_port = ct->tuplehash[IP_CT_DIR_ORIGINAL]
298 .tuple.dst.u.tcp.port;
299 sin.sin_addr.s_addr = ct->tuplehash[IP_CT_DIR_ORIGINAL]
300 .tuple.dst.u3.ip;
Marcel Holtmann6c813c32006-05-28 22:50:18 -0700301 memset(sin.sin_zero, 0, sizeof(sin.sin_zero));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800302
Harvey Harrisoncffee382008-10-31 00:53:08 -0700303 pr_debug("SO_ORIGINAL_DST: %pI4 %u\n",
304 &sin.sin_addr.s_addr, ntohs(sin.sin_port));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800305 nf_ct_put(ct);
306 if (copy_to_user(user, &sin, sizeof(sin)) != 0)
307 return -EFAULT;
308 else
309 return 0;
310 }
Harvey Harrisoncffee382008-10-31 00:53:08 -0700311 pr_debug("SO_ORIGINAL_DST: Can't find %pI4/%u-%pI4/%u.\n",
312 &tuple.src.u3.ip, ntohs(tuple.src.u.tcp.port),
313 &tuple.dst.u3.ip, ntohs(tuple.dst.u.tcp.port));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314 return -ENOENT;
315}
316
Patrick McHardye281db5c2007-03-04 15:57:25 -0800317#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800318
319#include <linux/netfilter/nfnetlink.h>
320#include <linux/netfilter/nfnetlink_conntrack.h>
321
Patrick McHardyfdf70832007-09-28 14:37:41 -0700322static int ipv4_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800323 const struct nf_conntrack_tuple *tuple)
324{
David S. Millerd317e4f2012-04-01 20:40:20 -0400325 if (nla_put_be32(skb, CTA_IP_V4_SRC, tuple->src.u3.ip) ||
326 nla_put_be32(skb, CTA_IP_V4_DST, tuple->dst.u3.ip))
327 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800328 return 0;
329
Patrick McHardydf6fb862007-09-28 14:37:03 -0700330nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800331 return -1;
332}
333
Patrick McHardyf73e9242007-09-28 14:39:55 -0700334static const struct nla_policy ipv4_nla_policy[CTA_IP_MAX+1] = {
335 [CTA_IP_V4_SRC] = { .type = NLA_U32 },
336 [CTA_IP_V4_DST] = { .type = NLA_U32 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800337};
338
Patrick McHardyfdf70832007-09-28 14:37:41 -0700339static int ipv4_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800340 struct nf_conntrack_tuple *t)
341{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700342 if (!tb[CTA_IP_V4_SRC] || !tb[CTA_IP_V4_DST])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800343 return -EINVAL;
344
Patrick McHardy77236b62007-12-17 22:29:45 -0800345 t->src.u3.ip = nla_get_be32(tb[CTA_IP_V4_SRC]);
346 t->dst.u3.ip = nla_get_be32(tb[CTA_IP_V4_DST]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800347
348 return 0;
349}
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100350
351static int ipv4_nlattr_tuple_size(void)
352{
353 return nla_policy_len(ipv4_nla_policy, CTA_IP_MAX + 1);
354}
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800355#endif
356
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800357static struct nf_sockopt_ops so_getorigdst = {
358 .pf = PF_INET,
359 .get_optmin = SO_ORIGINAL_DST,
360 .get_optmax = SO_ORIGINAL_DST+1,
361 .get = &getorigdst,
Neil Horman16fcec32007-09-11 11:28:26 +0200362 .owner = THIS_MODULE,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800363};
364
Gao feng3ea04dd2012-05-28 21:04:16 +0000365static int ipv4_init_net(struct net *net)
366{
367#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
368 struct nf_ip_net *in = &net->ct.nf_ct_proto;
369 in->ctl_table = kmemdup(ip_ct_sysctl_table,
370 sizeof(ip_ct_sysctl_table),
371 GFP_KERNEL);
372 if (!in->ctl_table)
373 return -ENOMEM;
374
375 in->ctl_table[0].data = &nf_conntrack_max;
376 in->ctl_table[1].data = &net->ct.count;
377 in->ctl_table[2].data = &net->ct.htable_size;
378 in->ctl_table[3].data = &net->ct.sysctl_checksum;
379 in->ctl_table[4].data = &net->ct.sysctl_log_invalid;
380#endif
381 return 0;
382}
383
Patrick McHardy61075af2007-07-14 20:48:19 -0700384struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 __read_mostly = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800385 .l3proto = PF_INET,
386 .name = "ipv4",
387 .pkt_to_tuple = ipv4_pkt_to_tuple,
388 .invert_tuple = ipv4_invert_tuple,
389 .print_tuple = ipv4_print_tuple,
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700390 .get_l4proto = ipv4_get_l4proto,
Patrick McHardye281db5c2007-03-04 15:57:25 -0800391#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700392 .tuple_to_nlattr = ipv4_tuple_to_nlattr,
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100393 .nlattr_tuple_size = ipv4_nlattr_tuple_size,
Patrick McHardyfdf70832007-09-28 14:37:41 -0700394 .nlattr_to_tuple = ipv4_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700395 .nla_policy = ipv4_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800396#endif
Patrick McHardya999e682006-11-29 02:35:20 +0100397#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
Eric W. Biedermanf99e8f72012-04-19 13:43:55 +0000398 .ctl_table_path = "net/ipv4/netfilter",
Patrick McHardya999e682006-11-29 02:35:20 +0100399#endif
Gao feng3ea04dd2012-05-28 21:04:16 +0000400 .init_net = ipv4_init_net,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401 .me = THIS_MODULE,
402};
403
Patrick McHardyfae718d2007-12-24 21:09:10 -0800404module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
405 &nf_conntrack_htable_size, 0600);
406
Patrick McHardy32292a72006-04-06 14:11:30 -0700407MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET));
Patrick McHardyd2483dd2006-12-02 22:06:05 -0800408MODULE_ALIAS("ip_conntrack");
Patrick McHardy32292a72006-04-06 14:11:30 -0700409MODULE_LICENSE("GPL");
410
Gao feng3ea04dd2012-05-28 21:04:16 +0000411static int ipv4_net_init(struct net *net)
412{
413 int ret = 0;
414
Gao fengc296bb42013-01-23 12:51:10 +0100415 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_tcp4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000416 if (ret < 0) {
Gao fengc296bb42013-01-23 12:51:10 +0100417 pr_err("nf_conntrack_tcp4: pernet registration failed\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000418 goto out_tcp;
419 }
Gao fengc296bb42013-01-23 12:51:10 +0100420 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_udp4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000421 if (ret < 0) {
Gao fengc296bb42013-01-23 12:51:10 +0100422 pr_err("nf_conntrack_udp4: pernet registration failed\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000423 goto out_udp;
424 }
Gao fengc296bb42013-01-23 12:51:10 +0100425 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_icmp);
Gao feng3ea04dd2012-05-28 21:04:16 +0000426 if (ret < 0) {
Gao fengc296bb42013-01-23 12:51:10 +0100427 pr_err("nf_conntrack_icmp4: pernet registration failed\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000428 goto out_icmp;
429 }
Gao feng63307502013-01-21 22:10:33 +0000430 ret = nf_ct_l3proto_pernet_register(net, &nf_conntrack_l3proto_ipv4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000431 if (ret < 0) {
Gao feng63307502013-01-21 22:10:33 +0000432 pr_err("nf_conntrack_ipv4: pernet registration failed\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000433 goto out_ipv4;
434 }
435 return 0;
436out_ipv4:
Gao fengc296bb42013-01-23 12:51:10 +0100437 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_icmp);
Gao feng3ea04dd2012-05-28 21:04:16 +0000438out_icmp:
Gao fengc296bb42013-01-23 12:51:10 +0100439 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_udp4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000440out_udp:
Gao fengc296bb42013-01-23 12:51:10 +0100441 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_tcp4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000442out_tcp:
443 return ret;
444}
445
446static void ipv4_net_exit(struct net *net)
447{
Gao feng63307502013-01-21 22:10:33 +0000448 nf_ct_l3proto_pernet_unregister(net, &nf_conntrack_l3proto_ipv4);
Gao fengc296bb42013-01-23 12:51:10 +0100449 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_icmp);
450 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_udp4);
451 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_tcp4);
Gao feng3ea04dd2012-05-28 21:04:16 +0000452}
453
454static struct pernet_operations ipv4_net_ops = {
455 .init = ipv4_net_init,
456 .exit = ipv4_net_exit,
457};
458
Patrick McHardy32292a72006-04-06 14:11:30 -0700459static int __init nf_conntrack_l3proto_ipv4_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800460{
461 int ret = 0;
462
Patrick McHardy32292a72006-04-06 14:11:30 -0700463 need_conntrack();
KOVACS Krisztian73e40222008-10-08 11:35:12 +0200464 nf_defrag_ipv4_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800465
466 ret = nf_register_sockopt(&so_getorigdst);
467 if (ret < 0) {
468 printk(KERN_ERR "Unable to register netfilter socket option\n");
Patrick McHardy32292a72006-04-06 14:11:30 -0700469 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800470 }
471
Gao feng3ea04dd2012-05-28 21:04:16 +0000472 ret = register_pernet_subsys(&ipv4_net_ops);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800473 if (ret < 0) {
Gao feng3ea04dd2012-05-28 21:04:16 +0000474 pr_err("nf_conntrack_ipv4: can't register pernet ops\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800475 goto cleanup_sockopt;
476 }
477
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700478 ret = nf_register_hooks(ipv4_conntrack_ops,
479 ARRAY_SIZE(ipv4_conntrack_ops));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800480 if (ret < 0) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200481 pr_err("nf_conntrack_ipv4: can't register hooks.\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000482 goto cleanup_pernet;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483 }
Gao feng63307502013-01-21 22:10:33 +0000484
Gao fengc296bb42013-01-23 12:51:10 +0100485 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_tcp4);
486 if (ret < 0) {
487 pr_err("nf_conntrack_ipv4: can't register tcp4 proto.\n");
488 goto cleanup_hooks;
489 }
490
491 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_udp4);
492 if (ret < 0) {
493 pr_err("nf_conntrack_ipv4: can't register udp4 proto.\n");
494 goto cleanup_tcp4;
495 }
496
497 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_icmp);
498 if (ret < 0) {
499 pr_err("nf_conntrack_ipv4: can't register icmpv4 proto.\n");
500 goto cleanup_udp4;
501 }
502
Gao feng63307502013-01-21 22:10:33 +0000503 ret = nf_ct_l3proto_register(&nf_conntrack_l3proto_ipv4);
504 if (ret < 0) {
505 pr_err("nf_conntrack_ipv4: can't register ipv4 proto.\n");
Gao fengc296bb42013-01-23 12:51:10 +0100506 goto cleanup_icmpv4;
Gao feng63307502013-01-21 22:10:33 +0000507 }
508
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100509#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
510 ret = nf_conntrack_ipv4_compat_init();
511 if (ret < 0)
Gao feng63307502013-01-21 22:10:33 +0000512 goto cleanup_proto;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100513#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800514 return ret;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100515#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
Gao feng63307502013-01-21 22:10:33 +0000516 cleanup_proto:
517 nf_ct_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
518#endif
Gao fengc296bb42013-01-23 12:51:10 +0100519 cleanup_icmpv4:
520 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_icmp);
521 cleanup_udp4:
522 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_udp4);
523 cleanup_tcp4:
524 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100525 cleanup_hooks:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900526 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
Gao feng3ea04dd2012-05-28 21:04:16 +0000527 cleanup_pernet:
528 unregister_pernet_subsys(&ipv4_net_ops);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800529 cleanup_sockopt:
530 nf_unregister_sockopt(&so_getorigdst);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800531 return ret;
532}
533
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800534static void __exit nf_conntrack_l3proto_ipv4_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800535{
Patrick McHardy32292a72006-04-06 14:11:30 -0700536 synchronize_net();
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100537#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
538 nf_conntrack_ipv4_compat_fini();
539#endif
Gao feng63307502013-01-21 22:10:33 +0000540 nf_ct_l3proto_unregister(&nf_conntrack_l3proto_ipv4);
Gao fengc296bb42013-01-23 12:51:10 +0100541 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_icmp);
542 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_udp4);
543 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_tcp4);
Patrick McHardy32292a72006-04-06 14:11:30 -0700544 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
Gao feng3ea04dd2012-05-28 21:04:16 +0000545 unregister_pernet_subsys(&ipv4_net_ops);
Patrick McHardy32292a72006-04-06 14:11:30 -0700546 nf_unregister_sockopt(&so_getorigdst);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800547}
548
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800549module_init(nf_conntrack_l3proto_ipv4_init);
550module_exit(nf_conntrack_l3proto_ipv4_fini);
Patrick McHardy591e6202007-08-07 18:12:01 -0700551
552void need_ipv4_conntrack(void)
553{
554 return;
555}
556EXPORT_SYMBOL_GPL(need_ipv4_conntrack);