blob: e7ff2dcab6cec0fdd82cfb5ce804e172b67adc1f [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>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08008 */
9
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080010#include <linux/types.h>
11#include <linux/ip.h>
12#include <linux/netfilter.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/icmp.h>
16#include <linux/sysctl.h>
Patrick McHardy0ae2cfe2006-01-05 12:21:52 -080017#include <net/route.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080018#include <net/ip.h>
19
20#include <linux/netfilter_ipv4.h>
21#include <net/netfilter/nf_conntrack.h>
22#include <net/netfilter/nf_conntrack_helper.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010023#include <net/netfilter/nf_conntrack_l4proto.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080024#include <net/netfilter/nf_conntrack_l3proto.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010025#include <net/netfilter/nf_conntrack_zones.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080026#include <net/netfilter/nf_conntrack_core.h>
27#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
Patrick McHardydd13b012008-04-14 11:15:52 +020028#include <net/netfilter/nf_nat_helper.h>
KOVACS Krisztian73e40222008-10-08 11:35:12 +020029#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
Patrick McHardy74f7a652009-08-25 15:33:08 +020030#include <net/netfilter/nf_log.h>
Patrick McHardydd13b012008-04-14 11:15:52 +020031
32int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
33 struct nf_conn *ct,
34 enum ip_conntrack_info ctinfo);
35EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036
Jan Engelhardt8ce84392008-04-14 11:15:52 +020037static bool ipv4_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
38 struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039{
Jan Engelhardt32948582008-01-31 04:53:24 -080040 const __be32 *ap;
41 __be32 _addrs[2];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080042 ap = skb_header_pointer(skb, nhoff + offsetof(struct iphdr, saddr),
43 sizeof(u_int32_t) * 2, _addrs);
44 if (ap == NULL)
Jan Engelhardt8ce84392008-04-14 11:15:52 +020045 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
47 tuple->src.u3.ip = ap[0];
48 tuple->dst.u3.ip = ap[1];
49
Jan Engelhardt8ce84392008-04-14 11:15:52 +020050 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080051}
52
Jan Engelhardt8ce84392008-04-14 11:15:52 +020053static bool ipv4_invert_tuple(struct nf_conntrack_tuple *tuple,
54 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080055{
56 tuple->src.u3.ip = orig->dst.u3.ip;
57 tuple->dst.u3.ip = orig->src.u3.ip;
58
Jan Engelhardt8ce84392008-04-14 11:15:52 +020059 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080060}
61
62static int ipv4_print_tuple(struct seq_file *s,
63 const struct nf_conntrack_tuple *tuple)
64{
Harvey Harrisoncffee382008-10-31 00:53:08 -070065 return seq_printf(s, "src=%pI4 dst=%pI4 ",
66 &tuple->src.u3.ip, &tuple->dst.u3.ip);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067}
68
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070069static int ipv4_get_l4proto(const struct sk_buff *skb, unsigned int nhoff,
70 unsigned int *dataoff, u_int8_t *protonum)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080071{
Jan Engelhardt32948582008-01-31 04:53:24 -080072 const struct iphdr *iph;
73 struct iphdr _iph;
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070074
75 iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph);
76 if (iph == NULL)
Jozsef Kadlecsik8430eac2012-04-09 16:32:16 +020077 return -NF_ACCEPT;
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070078
Patrick McHardy0fb96702007-09-11 11:27:01 +020079 /* Conntrack defragments packets, we might still see fragments
80 * inside ICMP packets though. */
81 if (iph->frag_off & htons(IP_OFFSET))
Jozsef Kadlecsik8430eac2012-04-09 16:32:16 +020082 return -NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -070084 *dataoff = nhoff + (iph->ihl << 2);
85 *protonum = iph->protocol;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086
Jozsef Kadlecsik07153c62012-04-03 22:02:01 +020087 /* Check bogus IP headers */
88 if (*dataoff > skb->len) {
89 pr_debug("nf_conntrack_ipv4: bogus IPv4 packet: "
90 "nhoff %u, ihl %u, skblen %u\n",
91 nhoff, iph->ihl << 2, skb->len);
92 return -NF_ACCEPT;
93 }
94
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080095 return NF_ACCEPT;
96}
97
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +020098static unsigned int ipv4_helper(unsigned int hooknum,
99 struct sk_buff *skb,
100 const struct net_device *in,
101 const struct net_device *out,
102 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800103{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800104 struct nf_conn *ct;
105 enum ip_conntrack_info ctinfo;
Jan Engelhardt32948582008-01-31 04:53:24 -0800106 const struct nf_conn_help *help;
107 const struct nf_conntrack_helper *helper;
Patrick McHardydd13b012008-04-14 11:15:52 +0200108 unsigned int ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109
110 /* This is where we call the helper: as the packet goes out. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700111 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazetfb048832011-05-19 15:44:27 +0200112 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200113 return NF_ACCEPT;
Harald Weltedc808fe2006-03-20 17:56:32 -0800114
115 help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700116 if (!help)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200117 return NF_ACCEPT;
Patrick McHardydd13b012008-04-14 11:15:52 +0200118
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700119 /* rcu_read_lock()ed by nf_hook_slow */
120 helper = rcu_dereference(help->helper);
121 if (!helper)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200122 return NF_ACCEPT;
Patrick McHardydd13b012008-04-14 11:15:52 +0200123
124 ret = helper->help(skb, skb_network_offset(skb) + ip_hdrlen(skb),
125 ct, ctinfo);
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200126 if (ret != NF_ACCEPT && (ret & NF_VERDICT_MASK) != NF_QUEUE) {
Patrick McHardy74f7a652009-08-25 15:33:08 +0200127 nf_log_packet(NFPROTO_IPV4, hooknum, skb, in, out, NULL,
128 "nf_ct_%s: dropping packet", helper->name);
Patrick McHardy74f7a652009-08-25 15:33:08 +0200129 }
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200130 return ret;
131}
132
133static unsigned int ipv4_confirm(unsigned int hooknum,
134 struct sk_buff *skb,
135 const struct net_device *in,
136 const struct net_device *out,
137 int (*okfn)(struct sk_buff *))
138{
139 struct nf_conn *ct;
140 enum ip_conntrack_info ctinfo;
141
142 ct = nf_ct_get(skb, &ctinfo);
143 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
144 goto out;
Patrick McHardydd13b012008-04-14 11:15:52 +0200145
Julian Anastasov42c1edd2011-06-16 17:29:22 +0200146 /* adjust seqs for loopback traffic only in outgoing direction */
147 if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) &&
148 !nf_is_loopback_packet(skb)) {
Patrick McHardydd13b012008-04-14 11:15:52 +0200149 typeof(nf_nat_seq_adjust_hook) seq_adjust;
150
151 seq_adjust = rcu_dereference(nf_nat_seq_adjust_hook);
Pablo Neira Ayuso1db7a742009-03-16 15:18:50 +0100152 if (!seq_adjust || !seq_adjust(skb, ct, ctinfo)) {
153 NF_CT_STAT_INC_ATOMIC(nf_ct_net(ct), drop);
Patrick McHardydd13b012008-04-14 11:15:52 +0200154 return NF_DROP;
Pablo Neira Ayuso1db7a742009-03-16 15:18:50 +0100155 }
Patrick McHardydd13b012008-04-14 11:15:52 +0200156 }
157out:
158 /* We've seen it coming out the other side: confirm it */
159 return nf_conntrack_confirm(skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160}
161
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162static unsigned int ipv4_conntrack_in(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700163 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800164 const struct net_device *in,
165 const struct net_device *out,
166 int (*okfn)(struct sk_buff *))
167{
Alexey Dobriyana702a652008-10-08 11:35:04 +0200168 return nf_conntrack_in(dev_net(in), PF_INET, hooknum, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800169}
170
171static unsigned int ipv4_conntrack_local(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700172 struct sk_buff *skb,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900173 const struct net_device *in,
174 const struct net_device *out,
175 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800176{
177 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700178 if (skb->len < sizeof(struct iphdr) ||
Patrick McHardy88843102009-01-12 00:06:00 +0000179 ip_hdrlen(skb) < sizeof(struct iphdr))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180 return NF_ACCEPT;
Alexey Dobriyana702a652008-10-08 11:35:04 +0200181 return nf_conntrack_in(dev_net(out), PF_INET, hooknum, skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800182}
183
184/* Connection tracking may drop packets, but never alters them, so
185 make it the first hook. */
Patrick McHardy19994142007-12-05 01:23:00 -0800186static struct nf_hook_ops ipv4_conntrack_ops[] __read_mostly = {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700187 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700188 .hook = ipv4_conntrack_in,
189 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200190 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800191 .hooknum = NF_INET_PRE_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700192 .priority = NF_IP_PRI_CONNTRACK,
193 },
194 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700195 .hook = ipv4_conntrack_local,
196 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200197 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800198 .hooknum = NF_INET_LOCAL_OUT,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700199 .priority = NF_IP_PRI_CONNTRACK,
200 },
201 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200202 .hook = ipv4_helper,
203 .owner = THIS_MODULE,
204 .pf = NFPROTO_IPV4,
205 .hooknum = NF_INET_POST_ROUTING,
206 .priority = NF_IP_PRI_CONNTRACK_HELPER,
207 },
208 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700209 .hook = ipv4_confirm,
210 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200211 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800212 .hooknum = NF_INET_POST_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700213 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
214 },
215 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200216 .hook = ipv4_helper,
217 .owner = THIS_MODULE,
218 .pf = NFPROTO_IPV4,
219 .hooknum = NF_INET_LOCAL_IN,
220 .priority = NF_IP_PRI_CONNTRACK_HELPER,
221 },
222 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700223 .hook = ipv4_confirm,
224 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200225 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800226 .hooknum = NF_INET_LOCAL_IN,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700227 .priority = NF_IP_PRI_CONNTRACK_CONFIRM,
228 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800229};
230
Patrick McHardya999e682006-11-29 02:35:20 +0100231#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
232static int log_invalid_proto_min = 0;
233static int log_invalid_proto_max = 255;
234
235static ctl_table ip_ct_sysctl_table[] = {
236 {
Patrick McHardya999e682006-11-29 02:35:20 +0100237 .procname = "ip_conntrack_max",
Patrick McHardya999e682006-11-29 02:35:20 +0100238 .maxlen = sizeof(int),
239 .mode = 0644,
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_count",
Patrick McHardya999e682006-11-29 02:35:20 +0100244 .maxlen = sizeof(int),
245 .mode = 0444,
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_buckets",
Patrick McHardya999e682006-11-29 02:35:20 +0100250 .maxlen = sizeof(unsigned int),
251 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800252 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100253 },
254 {
Patrick McHardya999e682006-11-29 02:35:20 +0100255 .procname = "ip_conntrack_checksum",
Patrick McHardya999e682006-11-29 02:35:20 +0100256 .maxlen = sizeof(int),
257 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800258 .proc_handler = proc_dointvec,
Patrick McHardya999e682006-11-29 02:35:20 +0100259 },
260 {
Patrick McHardya999e682006-11-29 02:35:20 +0100261 .procname = "ip_conntrack_log_invalid",
Patrick McHardya999e682006-11-29 02:35:20 +0100262 .maxlen = sizeof(unsigned int),
263 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800264 .proc_handler = proc_dointvec_minmax,
Patrick McHardya999e682006-11-29 02:35:20 +0100265 .extra1 = &log_invalid_proto_min,
266 .extra2 = &log_invalid_proto_max,
267 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800268 { }
Patrick McHardya999e682006-11-29 02:35:20 +0100269};
270#endif /* CONFIG_SYSCTL && CONFIG_NF_CONNTRACK_PROC_COMPAT */
271
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272/* Fast function for those who don't want to parse /proc (and I don't
273 blame them). */
274/* Reversing the socket's dst/src point of view gives us the reply
275 mapping. */
276static int
277getorigdst(struct sock *sk, int optval, void __user *user, int *len)
278{
Jan Engelhardt32948582008-01-31 04:53:24 -0800279 const struct inet_sock *inet = inet_sk(sk);
280 const struct nf_conntrack_tuple_hash *h;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800281 struct nf_conntrack_tuple tuple;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900282
Philip Craig443a70d2008-04-29 03:35:10 -0700283 memset(&tuple, 0, sizeof(tuple));
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000284 tuple.src.u3.ip = inet->inet_rcv_saddr;
285 tuple.src.u.tcp.port = inet->inet_sport;
286 tuple.dst.u3.ip = inet->inet_daddr;
287 tuple.dst.u.tcp.port = inet->inet_dport;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800288 tuple.src.l3num = PF_INET;
Rafael Laufer54981272009-08-10 10:08:27 +0200289 tuple.dst.protonum = sk->sk_protocol;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800290
Rafael Laufer54981272009-08-10 10:08:27 +0200291 /* We only do TCP and SCTP at the moment: is there a better way? */
292 if (sk->sk_protocol != IPPROTO_TCP && sk->sk_protocol != IPPROTO_SCTP) {
293 pr_debug("SO_ORIGINAL_DST: Not a TCP/SCTP socket\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800294 return -ENOPROTOOPT;
295 }
296
297 if ((unsigned int) *len < sizeof(struct sockaddr_in)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700298 pr_debug("SO_ORIGINAL_DST: len %d not %Zu\n",
299 *len, sizeof(struct sockaddr_in));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800300 return -EINVAL;
301 }
302
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100303 h = nf_conntrack_find_get(sock_net(sk), NF_CT_DEFAULT_ZONE, &tuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800304 if (h) {
305 struct sockaddr_in sin;
306 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
307
308 sin.sin_family = AF_INET;
309 sin.sin_port = ct->tuplehash[IP_CT_DIR_ORIGINAL]
310 .tuple.dst.u.tcp.port;
311 sin.sin_addr.s_addr = ct->tuplehash[IP_CT_DIR_ORIGINAL]
312 .tuple.dst.u3.ip;
Marcel Holtmann6c813c32006-05-28 22:50:18 -0700313 memset(sin.sin_zero, 0, sizeof(sin.sin_zero));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314
Harvey Harrisoncffee382008-10-31 00:53:08 -0700315 pr_debug("SO_ORIGINAL_DST: %pI4 %u\n",
316 &sin.sin_addr.s_addr, ntohs(sin.sin_port));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800317 nf_ct_put(ct);
318 if (copy_to_user(user, &sin, sizeof(sin)) != 0)
319 return -EFAULT;
320 else
321 return 0;
322 }
Harvey Harrisoncffee382008-10-31 00:53:08 -0700323 pr_debug("SO_ORIGINAL_DST: Can't find %pI4/%u-%pI4/%u.\n",
324 &tuple.src.u3.ip, ntohs(tuple.src.u.tcp.port),
325 &tuple.dst.u3.ip, ntohs(tuple.dst.u.tcp.port));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800326 return -ENOENT;
327}
328
Patrick McHardye281db5c2007-03-04 15:57:25 -0800329#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800330
331#include <linux/netfilter/nfnetlink.h>
332#include <linux/netfilter/nfnetlink_conntrack.h>
333
Patrick McHardyfdf70832007-09-28 14:37:41 -0700334static int ipv4_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800335 const struct nf_conntrack_tuple *tuple)
336{
David S. Millerd317e4f2012-04-01 20:40:20 -0400337 if (nla_put_be32(skb, CTA_IP_V4_SRC, tuple->src.u3.ip) ||
338 nla_put_be32(skb, CTA_IP_V4_DST, tuple->dst.u3.ip))
339 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800340 return 0;
341
Patrick McHardydf6fb862007-09-28 14:37:03 -0700342nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800343 return -1;
344}
345
Patrick McHardyf73e9242007-09-28 14:39:55 -0700346static const struct nla_policy ipv4_nla_policy[CTA_IP_MAX+1] = {
347 [CTA_IP_V4_SRC] = { .type = NLA_U32 },
348 [CTA_IP_V4_DST] = { .type = NLA_U32 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800349};
350
Patrick McHardyfdf70832007-09-28 14:37:41 -0700351static int ipv4_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800352 struct nf_conntrack_tuple *t)
353{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700354 if (!tb[CTA_IP_V4_SRC] || !tb[CTA_IP_V4_DST])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800355 return -EINVAL;
356
Patrick McHardy77236b62007-12-17 22:29:45 -0800357 t->src.u3.ip = nla_get_be32(tb[CTA_IP_V4_SRC]);
358 t->dst.u3.ip = nla_get_be32(tb[CTA_IP_V4_DST]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800359
360 return 0;
361}
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100362
363static int ipv4_nlattr_tuple_size(void)
364{
365 return nla_policy_len(ipv4_nla_policy, CTA_IP_MAX + 1);
366}
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800367#endif
368
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800369static struct nf_sockopt_ops so_getorigdst = {
370 .pf = PF_INET,
371 .get_optmin = SO_ORIGINAL_DST,
372 .get_optmax = SO_ORIGINAL_DST+1,
373 .get = &getorigdst,
Neil Horman16fcec32007-09-11 11:28:26 +0200374 .owner = THIS_MODULE,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800375};
376
Gao feng3ea04dd2012-05-28 21:04:16 +0000377static int ipv4_init_net(struct net *net)
378{
379#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
380 struct nf_ip_net *in = &net->ct.nf_ct_proto;
381 in->ctl_table = kmemdup(ip_ct_sysctl_table,
382 sizeof(ip_ct_sysctl_table),
383 GFP_KERNEL);
384 if (!in->ctl_table)
385 return -ENOMEM;
386
387 in->ctl_table[0].data = &nf_conntrack_max;
388 in->ctl_table[1].data = &net->ct.count;
389 in->ctl_table[2].data = &net->ct.htable_size;
390 in->ctl_table[3].data = &net->ct.sysctl_checksum;
391 in->ctl_table[4].data = &net->ct.sysctl_log_invalid;
392#endif
393 return 0;
394}
395
Patrick McHardy61075af2007-07-14 20:48:19 -0700396struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 __read_mostly = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800397 .l3proto = PF_INET,
398 .name = "ipv4",
399 .pkt_to_tuple = ipv4_pkt_to_tuple,
400 .invert_tuple = ipv4_invert_tuple,
401 .print_tuple = ipv4_print_tuple,
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700402 .get_l4proto = ipv4_get_l4proto,
Patrick McHardye281db5c2007-03-04 15:57:25 -0800403#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700404 .tuple_to_nlattr = ipv4_tuple_to_nlattr,
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100405 .nlattr_tuple_size = ipv4_nlattr_tuple_size,
Patrick McHardyfdf70832007-09-28 14:37:41 -0700406 .nlattr_to_tuple = ipv4_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700407 .nla_policy = ipv4_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800408#endif
Patrick McHardya999e682006-11-29 02:35:20 +0100409#if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
Eric W. Biedermanf99e8f72012-04-19 13:43:55 +0000410 .ctl_table_path = "net/ipv4/netfilter",
Patrick McHardya999e682006-11-29 02:35:20 +0100411#endif
Gao feng3ea04dd2012-05-28 21:04:16 +0000412 .init_net = ipv4_init_net,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800413 .me = THIS_MODULE,
414};
415
Patrick McHardyfae718d2007-12-24 21:09:10 -0800416module_param_call(hashsize, nf_conntrack_set_hashsize, param_get_uint,
417 &nf_conntrack_htable_size, 0600);
418
Patrick McHardy32292a72006-04-06 14:11:30 -0700419MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET));
Patrick McHardyd2483dd2006-12-02 22:06:05 -0800420MODULE_ALIAS("ip_conntrack");
Patrick McHardy32292a72006-04-06 14:11:30 -0700421MODULE_LICENSE("GPL");
422
Gao feng3ea04dd2012-05-28 21:04:16 +0000423static int ipv4_net_init(struct net *net)
424{
425 int ret = 0;
426
427 ret = nf_conntrack_l4proto_register(net,
428 &nf_conntrack_l4proto_tcp4);
429 if (ret < 0) {
430 pr_err("nf_conntrack_l4proto_tcp4 :protocol register failed\n");
431 goto out_tcp;
432 }
433 ret = nf_conntrack_l4proto_register(net,
434 &nf_conntrack_l4proto_udp4);
435 if (ret < 0) {
436 pr_err("nf_conntrack_l4proto_udp4 :protocol register failed\n");
437 goto out_udp;
438 }
439 ret = nf_conntrack_l4proto_register(net,
440 &nf_conntrack_l4proto_icmp);
441 if (ret < 0) {
442 pr_err("nf_conntrack_l4proto_icmp4 :protocol register failed\n");
443 goto out_icmp;
444 }
445 ret = nf_conntrack_l3proto_register(net,
446 &nf_conntrack_l3proto_ipv4);
447 if (ret < 0) {
448 pr_err("nf_conntrack_l3proto_ipv4 :protocol register failed\n");
449 goto out_ipv4;
450 }
451 return 0;
452out_ipv4:
453 nf_conntrack_l4proto_unregister(net,
454 &nf_conntrack_l4proto_icmp);
455out_icmp:
456 nf_conntrack_l4proto_unregister(net,
457 &nf_conntrack_l4proto_udp4);
458out_udp:
459 nf_conntrack_l4proto_unregister(net,
460 &nf_conntrack_l4proto_tcp4);
461out_tcp:
462 return ret;
463}
464
465static void ipv4_net_exit(struct net *net)
466{
467 nf_conntrack_l3proto_unregister(net,
468 &nf_conntrack_l3proto_ipv4);
469 nf_conntrack_l4proto_unregister(net,
470 &nf_conntrack_l4proto_icmp);
471 nf_conntrack_l4proto_unregister(net,
472 &nf_conntrack_l4proto_udp4);
473 nf_conntrack_l4proto_unregister(net,
474 &nf_conntrack_l4proto_tcp4);
475}
476
477static struct pernet_operations ipv4_net_ops = {
478 .init = ipv4_net_init,
479 .exit = ipv4_net_exit,
480};
481
Patrick McHardy32292a72006-04-06 14:11:30 -0700482static int __init nf_conntrack_l3proto_ipv4_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800483{
484 int ret = 0;
485
Patrick McHardy32292a72006-04-06 14:11:30 -0700486 need_conntrack();
KOVACS Krisztian73e40222008-10-08 11:35:12 +0200487 nf_defrag_ipv4_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800488
489 ret = nf_register_sockopt(&so_getorigdst);
490 if (ret < 0) {
491 printk(KERN_ERR "Unable to register netfilter socket option\n");
Patrick McHardy32292a72006-04-06 14:11:30 -0700492 return ret;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800493 }
494
Gao feng3ea04dd2012-05-28 21:04:16 +0000495 ret = register_pernet_subsys(&ipv4_net_ops);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800496 if (ret < 0) {
Gao feng3ea04dd2012-05-28 21:04:16 +0000497 pr_err("nf_conntrack_ipv4: can't register pernet ops\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800498 goto cleanup_sockopt;
499 }
500
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700501 ret = nf_register_hooks(ipv4_conntrack_ops,
502 ARRAY_SIZE(ipv4_conntrack_ops));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503 if (ret < 0) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200504 pr_err("nf_conntrack_ipv4: can't register hooks.\n");
Gao feng3ea04dd2012-05-28 21:04:16 +0000505 goto cleanup_pernet;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800506 }
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100507#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
508 ret = nf_conntrack_ipv4_compat_init();
509 if (ret < 0)
510 goto cleanup_hooks;
511#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800512 return ret;
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100513#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
514 cleanup_hooks:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900515 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100516#endif
Gao feng3ea04dd2012-05-28 21:04:16 +0000517 cleanup_pernet:
518 unregister_pernet_subsys(&ipv4_net_ops);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800519 cleanup_sockopt:
520 nf_unregister_sockopt(&so_getorigdst);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800521 return ret;
522}
523
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800524static void __exit nf_conntrack_l3proto_ipv4_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800525{
Patrick McHardy32292a72006-04-06 14:11:30 -0700526 synchronize_net();
Patrick McHardye4bd8bc2006-11-29 02:35:22 +0100527#if defined(CONFIG_PROC_FS) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT)
528 nf_conntrack_ipv4_compat_fini();
529#endif
Patrick McHardy32292a72006-04-06 14:11:30 -0700530 nf_unregister_hooks(ipv4_conntrack_ops, ARRAY_SIZE(ipv4_conntrack_ops));
Gao feng3ea04dd2012-05-28 21:04:16 +0000531 unregister_pernet_subsys(&ipv4_net_ops);
Patrick McHardy32292a72006-04-06 14:11:30 -0700532 nf_unregister_sockopt(&so_getorigdst);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800533}
534
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800535module_init(nf_conntrack_l3proto_ipv4_init);
536module_exit(nf_conntrack_l3proto_ipv4_fini);
Patrick McHardy591e6202007-08-07 18:12:01 -0700537
538void need_ipv4_conntrack(void)
539{
540 return;
541}
542EXPORT_SYMBOL_GPL(need_ipv4_conntrack);