blob: ee713b03e9ec81f252dc0b45a499a2769583ba55 [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/*
2 * Copyright (C)2003,2004 USAGI/WIDE Project
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Author:
9 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080010 */
11
12#include <linux/types.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080013#include <linux/timer.h>
14#include <linux/module.h>
15#include <linux/netfilter.h>
16#include <linux/in6.h>
17#include <linux/icmpv6.h>
18#include <linux/ipv6.h>
19#include <net/ipv6.h>
20#include <net/ip6_checksum.h>
21#include <linux/seq_file.h>
22#include <linux/netfilter_ipv6.h>
23#include <net/netfilter/nf_conntrack_tuple.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_core.h>
26#include <net/netfilter/ipv6/nf_conntrack_icmpv6.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080027#include <net/netfilter/nf_log.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080028
Patrick McHardy933a41e2006-11-29 02:35:18 +010029static unsigned long nf_ct_icmpv6_timeout __read_mostly = 30*HZ;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080030
Jan Engelhardt09f263c2008-04-14 11:15:53 +020031static bool icmpv6_pkt_to_tuple(const struct sk_buff *skb,
32 unsigned int dataoff,
33 struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080034{
Jan Engelhardt7cc38642008-01-31 04:53:05 -080035 const struct icmp6hdr *hp;
36 struct icmp6hdr _hdr;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037
38 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
39 if (hp == NULL)
Jan Engelhardt09f263c2008-04-14 11:15:53 +020040 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080041 tuple->dst.u.icmp.type = hp->icmp6_type;
42 tuple->src.u.icmp.id = hp->icmp6_identifier;
43 tuple->dst.u.icmp.code = hp->icmp6_code;
44
Jan Engelhardt09f263c2008-04-14 11:15:53 +020045 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046}
47
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -080048/* Add 1; spaces filled with 0. */
Jan Engelhardt7cc38642008-01-31 04:53:05 -080049static const u_int8_t invmap[] = {
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -080050 [ICMPV6_ECHO_REQUEST - 128] = ICMPV6_ECHO_REPLY + 1,
51 [ICMPV6_ECHO_REPLY - 128] = ICMPV6_ECHO_REQUEST + 1,
52 [ICMPV6_NI_QUERY - 128] = ICMPV6_NI_QUERY + 1,
53 [ICMPV6_NI_REPLY - 128] = ICMPV6_NI_REPLY +1
54};
55
Jan Engelhardt09f263c2008-04-14 11:15:53 +020056static bool icmpv6_invert_tuple(struct nf_conntrack_tuple *tuple,
57 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080058{
Yasuyuki Kozakaif16c9102005-12-05 13:32:50 -080059 int type = orig->dst.u.icmp.type - 128;
60 if (type < 0 || type >= sizeof(invmap) || !invmap[type])
Jan Engelhardt09f263c2008-04-14 11:15:53 +020061 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080062
63 tuple->src.u.icmp.id = orig->src.u.icmp.id;
64 tuple->dst.u.icmp.type = invmap[type] - 1;
65 tuple->dst.u.icmp.code = orig->dst.u.icmp.code;
Jan Engelhardt09f263c2008-04-14 11:15:53 +020066 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067}
68
69/* Print out the per-protocol part of the tuple. */
70static int icmpv6_print_tuple(struct seq_file *s,
71 const struct nf_conntrack_tuple *tuple)
72{
73 return seq_printf(s, "type=%u code=%u id=%u ",
74 tuple->dst.u.icmp.type,
75 tuple->dst.u.icmp.code,
76 ntohs(tuple->src.u.icmp.id));
77}
78
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080079/* Returns verdict for packet, or -1 for invalid. */
80static int icmpv6_packet(struct nf_conn *ct,
81 const struct sk_buff *skb,
82 unsigned int dataoff,
83 enum ip_conntrack_info ctinfo,
84 int pf,
85 unsigned int hooknum)
86{
87 /* Try to delete connection immediately after all replies:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090088 won't actually vanish as we still have skb, and del_timer
89 means this will only run once even if count hits zero twice
90 (theoretically possible with SMP) */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080091 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_REPLY) {
92 if (atomic_dec_and_test(&ct->proto.icmp.count)
93 && del_timer(&ct->timeout))
94 ct->timeout.function((unsigned long)ct);
95 } else {
96 atomic_inc(&ct->proto.icmp.count);
97 nf_conntrack_event_cache(IPCT_PROTOINFO_VOLATILE, skb);
98 nf_ct_refresh_acct(ct, ctinfo, skb, nf_ct_icmpv6_timeout);
99 }
100
101 return NF_ACCEPT;
102}
103
104/* Called when a new connection for this protocol found. */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200105static bool icmpv6_new(struct nf_conn *ct, const struct sk_buff *skb,
106 unsigned int dataoff)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107{
Jan Engelhardt7cc38642008-01-31 04:53:05 -0800108 static const u_int8_t valid_new[] = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109 [ICMPV6_ECHO_REQUEST - 128] = 1,
110 [ICMPV6_NI_QUERY - 128] = 1
111 };
Patrick McHardyc88130b2008-01-31 04:42:11 -0800112 int type = ct->tuplehash[0].tuple.dst.u.icmp.type - 128;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113
Yasuyuki Kozakaif16c9102005-12-05 13:32:50 -0800114 if (type < 0 || type >= sizeof(valid_new) || !valid_new[type]) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800115 /* Can't create a new ICMPv6 `conn' with this. */
Patrick McHardy0d537782007-07-07 22:39:38 -0700116 pr_debug("icmpv6: can't create new conn with type %u\n",
117 type + 128);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200118 nf_ct_dump_tuple_ipv6(&ct->tuplehash[0].tuple);
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200119 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800120 }
Patrick McHardyc88130b2008-01-31 04:42:11 -0800121 atomic_set(&ct->proto.icmp.count, 0);
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200122 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800123}
124
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800125static int
126icmpv6_error_message(struct sk_buff *skb,
127 unsigned int icmp6off,
128 enum ip_conntrack_info *ctinfo,
129 unsigned int hooknum)
130{
131 struct nf_conntrack_tuple intuple, origtuple;
Jan Engelhardt7cc38642008-01-31 04:53:05 -0800132 const struct nf_conntrack_tuple_hash *h;
133 const struct nf_conntrack_l4proto *inproto;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134
135 NF_CT_ASSERT(skb->nfct == NULL);
136
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700137 /* Are they talking about one of our connections? */
138 if (!nf_ct_get_tuplepr(skb,
139 skb_network_offset(skb)
140 + sizeof(struct ipv6hdr)
141 + sizeof(struct icmp6hdr),
142 PF_INET6, &origtuple)) {
143 pr_debug("icmpv6_error: Can't get tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800144 return -NF_ACCEPT;
145 }
146
Patrick McHardy923f4902007-02-12 11:12:57 -0800147 /* rcu_read_lock()ed by nf_hook_slow */
Yasuyuki Kozakaie2a31232007-07-14 20:45:14 -0700148 inproto = __nf_ct_l4proto_find(PF_INET6, origtuple.dst.protonum);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800149
150 /* Ordinarily, we'd expect the inverted tupleproto, but it's
151 been preserved inside the ICMP. */
152 if (!nf_ct_invert_tuple(&intuple, &origtuple,
153 &nf_conntrack_l3proto_ipv6, inproto)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700154 pr_debug("icmpv6_error: Can't invert tuple\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155 return -NF_ACCEPT;
156 }
157
158 *ctinfo = IP_CT_RELATED;
159
Patrick McHardy330f7db2007-07-07 22:28:42 -0700160 h = nf_conntrack_find_get(&intuple);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800161 if (!h) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700162 pr_debug("icmpv6_error: no match\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800163 return -NF_ACCEPT;
164 } else {
165 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY)
166 *ctinfo += IP_CT_IS_REPLY;
167 }
168
169 /* Update skb to refer to this connection */
170 skb->nfct = &nf_ct_tuplehash_to_ctrack(h)->ct_general;
171 skb->nfctinfo = *ctinfo;
172 return -NF_ACCEPT;
173}
174
175static int
176icmpv6_error(struct sk_buff *skb, unsigned int dataoff,
177 enum ip_conntrack_info *ctinfo, int pf, unsigned int hooknum)
178{
Jan Engelhardt7cc38642008-01-31 04:53:05 -0800179 const struct icmp6hdr *icmp6h;
180 struct icmp6hdr _ih;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800181
182 icmp6h = skb_header_pointer(skb, dataoff, sizeof(_ih), &_ih);
183 if (icmp6h == NULL) {
184 if (LOG_INVALID(IPPROTO_ICMPV6))
185 nf_log_packet(PF_INET6, 0, skb, NULL, NULL, NULL,
186 "nf_ct_icmpv6: short packet ");
187 return -NF_ACCEPT;
188 }
189
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800190 if (nf_conntrack_checksum && hooknum == NF_INET_PRE_ROUTING &&
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700191 nf_ip6_checksum(skb, hooknum, dataoff, IPPROTO_ICMPV6)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800192 nf_log_packet(PF_INET6, 0, skb, NULL, NULL, NULL,
193 "nf_ct_icmpv6: ICMPv6 checksum failed\n");
194 return -NF_ACCEPT;
195 }
196
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800197 /* is not error message ? */
198 if (icmp6h->icmp6_type >= 128)
199 return NF_ACCEPT;
200
201 return icmpv6_error_message(skb, dataoff, ctinfo, hooknum);
202}
203
Patrick McHardye281db5c2007-03-04 15:57:25 -0800204#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800205
206#include <linux/netfilter/nfnetlink.h>
207#include <linux/netfilter/nfnetlink_conntrack.h>
Patrick McHardyfdf70832007-09-28 14:37:41 -0700208static int icmpv6_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800209 const struct nf_conntrack_tuple *t)
210{
Patrick McHardy77236b62007-12-17 22:29:45 -0800211 NLA_PUT_BE16(skb, CTA_PROTO_ICMPV6_ID, t->src.u.icmp.id);
212 NLA_PUT_U8(skb, CTA_PROTO_ICMPV6_TYPE, t->dst.u.icmp.type);
213 NLA_PUT_U8(skb, CTA_PROTO_ICMPV6_CODE, t->dst.u.icmp.code);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800214
215 return 0;
216
Patrick McHardydf6fb862007-09-28 14:37:03 -0700217nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800218 return -1;
219}
220
Patrick McHardyf73e9242007-09-28 14:39:55 -0700221static const struct nla_policy icmpv6_nla_policy[CTA_PROTO_MAX+1] = {
222 [CTA_PROTO_ICMPV6_TYPE] = { .type = NLA_U8 },
223 [CTA_PROTO_ICMPV6_CODE] = { .type = NLA_U8 },
224 [CTA_PROTO_ICMPV6_ID] = { .type = NLA_U16 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800225};
226
Patrick McHardyfdf70832007-09-28 14:37:41 -0700227static int icmpv6_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800228 struct nf_conntrack_tuple *tuple)
229{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700230 if (!tb[CTA_PROTO_ICMPV6_TYPE]
231 || !tb[CTA_PROTO_ICMPV6_CODE]
232 || !tb[CTA_PROTO_ICMPV6_ID])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800233 return -EINVAL;
234
Patrick McHardy77236b62007-12-17 22:29:45 -0800235 tuple->dst.u.icmp.type = nla_get_u8(tb[CTA_PROTO_ICMPV6_TYPE]);
236 tuple->dst.u.icmp.code = nla_get_u8(tb[CTA_PROTO_ICMPV6_CODE]);
237 tuple->src.u.icmp.id = nla_get_be16(tb[CTA_PROTO_ICMPV6_ID]);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800238
239 if (tuple->dst.u.icmp.type < 128
240 || tuple->dst.u.icmp.type - 128 >= sizeof(invmap)
241 || !invmap[tuple->dst.u.icmp.type - 128])
242 return -EINVAL;
243
244 return 0;
245}
246#endif
247
Patrick McHardy933a41e2006-11-29 02:35:18 +0100248#ifdef CONFIG_SYSCTL
249static struct ctl_table_header *icmpv6_sysctl_header;
250static struct ctl_table icmpv6_sysctl_table[] = {
251 {
Patrick McHardy933a41e2006-11-29 02:35:18 +0100252 .procname = "nf_conntrack_icmpv6_timeout",
253 .data = &nf_ct_icmpv6_timeout,
254 .maxlen = sizeof(unsigned int),
255 .mode = 0644,
256 .proc_handler = &proc_dointvec_jiffies,
257 },
258 {
259 .ctl_name = 0
260 }
261};
262#endif /* CONFIG_SYSCTL */
263
Patrick McHardy61075af2007-07-14 20:48:19 -0700264struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6 __read_mostly =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800265{
266 .l3proto = PF_INET6,
Martin Josefsson605dcad2006-11-29 02:35:06 +0100267 .l4proto = IPPROTO_ICMPV6,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268 .name = "icmpv6",
269 .pkt_to_tuple = icmpv6_pkt_to_tuple,
270 .invert_tuple = icmpv6_invert_tuple,
271 .print_tuple = icmpv6_print_tuple,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800272 .packet = icmpv6_packet,
273 .new = icmpv6_new,
274 .error = icmpv6_error,
Patrick McHardye281db5c2007-03-04 15:57:25 -0800275#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700276 .tuple_to_nlattr = icmpv6_tuple_to_nlattr,
277 .nlattr_to_tuple = icmpv6_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700278 .nla_policy = icmpv6_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800279#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +0100280#ifdef CONFIG_SYSCTL
281 .ctl_table_header = &icmpv6_sysctl_header,
282 .ctl_table = icmpv6_sysctl_table,
283#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800284};