• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C)2003,2004 USAGI/WIDE Project
4  *
5  * Author:
6  *	Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
7  */
8 
9 #include <linux/types.h>
10 #include <linux/timer.h>
11 #include <linux/module.h>
12 #include <linux/netfilter.h>
13 #include <linux/in6.h>
14 #include <linux/icmpv6.h>
15 #include <linux/ipv6.h>
16 #include <net/ipv6.h>
17 #include <net/ip6_checksum.h>
18 #include <linux/seq_file.h>
19 #include <linux/netfilter_ipv6.h>
20 #include <net/netfilter/nf_conntrack_tuple.h>
21 #include <net/netfilter/nf_conntrack_l4proto.h>
22 #include <net/netfilter/nf_conntrack_core.h>
23 #include <net/netfilter/nf_conntrack_timeout.h>
24 #include <net/netfilter/nf_conntrack_zones.h>
25 #include <net/netfilter/nf_log.h>
26 
27 #include "nf_internals.h"
28 
29 static const unsigned int nf_ct_icmpv6_timeout = 30*HZ;
30 
icmpv6_pkt_to_tuple(const struct sk_buff * skb,unsigned int dataoff,struct net * net,struct nf_conntrack_tuple * tuple)31 bool icmpv6_pkt_to_tuple(const struct sk_buff *skb,
32 			 unsigned int dataoff,
33 			 struct net *net,
34 			 struct nf_conntrack_tuple *tuple)
35 {
36 	const struct icmp6hdr *hp;
37 	struct icmp6hdr _hdr;
38 
39 	hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
40 	if (hp == NULL)
41 		return false;
42 	tuple->dst.u.icmp.type = hp->icmp6_type;
43 	tuple->src.u.icmp.id = hp->icmp6_identifier;
44 	tuple->dst.u.icmp.code = hp->icmp6_code;
45 
46 	return true;
47 }
48 
49 /* Add 1; spaces filled with 0. */
50 static const u_int8_t invmap[] = {
51 	[ICMPV6_ECHO_REQUEST - 128]	= ICMPV6_ECHO_REPLY + 1,
52 	[ICMPV6_ECHO_REPLY - 128]	= ICMPV6_ECHO_REQUEST + 1,
53 	[ICMPV6_NI_QUERY - 128]		= ICMPV6_NI_REPLY + 1,
54 	[ICMPV6_NI_REPLY - 128]		= ICMPV6_NI_QUERY + 1
55 };
56 
57 static const u_int8_t noct_valid_new[] = {
58 	[ICMPV6_MGM_QUERY - 130] = 1,
59 	[ICMPV6_MGM_REPORT - 130] = 1,
60 	[ICMPV6_MGM_REDUCTION - 130] = 1,
61 	[NDISC_ROUTER_SOLICITATION - 130] = 1,
62 	[NDISC_ROUTER_ADVERTISEMENT - 130] = 1,
63 	[NDISC_NEIGHBOUR_SOLICITATION - 130] = 1,
64 	[NDISC_NEIGHBOUR_ADVERTISEMENT - 130] = 1,
65 	[ICMPV6_MLD2_REPORT - 130] = 1
66 };
67 
nf_conntrack_invert_icmpv6_tuple(struct nf_conntrack_tuple * tuple,const struct nf_conntrack_tuple * orig)68 bool nf_conntrack_invert_icmpv6_tuple(struct nf_conntrack_tuple *tuple,
69 				      const struct nf_conntrack_tuple *orig)
70 {
71 	int type = orig->dst.u.icmp.type - 128;
72 	if (type < 0 || type >= sizeof(invmap) || !invmap[type])
73 		return false;
74 
75 	tuple->src.u.icmp.id   = orig->src.u.icmp.id;
76 	tuple->dst.u.icmp.type = invmap[type] - 1;
77 	tuple->dst.u.icmp.code = orig->dst.u.icmp.code;
78 	return true;
79 }
80 
icmpv6_get_timeouts(struct net * net)81 static unsigned int *icmpv6_get_timeouts(struct net *net)
82 {
83 	return &nf_icmpv6_pernet(net)->timeout;
84 }
85 
86 /* Returns verdict for packet, or -1 for invalid. */
nf_conntrack_icmpv6_packet(struct nf_conn * ct,struct sk_buff * skb,enum ip_conntrack_info ctinfo,const struct nf_hook_state * state)87 int nf_conntrack_icmpv6_packet(struct nf_conn *ct,
88 			       struct sk_buff *skb,
89 			       enum ip_conntrack_info ctinfo,
90 			       const struct nf_hook_state *state)
91 {
92 	unsigned int *timeout = nf_ct_timeout_lookup(ct);
93 	static const u8 valid_new[] = {
94 		[ICMPV6_ECHO_REQUEST - 128] = 1,
95 		[ICMPV6_NI_QUERY - 128] = 1
96 	};
97 
98 	if (state->pf != NFPROTO_IPV6)
99 		return -NF_ACCEPT;
100 
101 	if (!nf_ct_is_confirmed(ct)) {
102 		int type = ct->tuplehash[0].tuple.dst.u.icmp.type - 128;
103 
104 		if (type < 0 || type >= sizeof(valid_new) || !valid_new[type]) {
105 			/* Can't create a new ICMPv6 `conn' with this. */
106 			pr_debug("icmpv6: can't create new conn with type %u\n",
107 				 type + 128);
108 			nf_ct_dump_tuple_ipv6(&ct->tuplehash[0].tuple);
109 			return -NF_ACCEPT;
110 		}
111 	}
112 
113 	if (!timeout)
114 		timeout = icmpv6_get_timeouts(nf_ct_net(ct));
115 
116 	/* Do not immediately delete the connection after the first
117 	   successful reply to avoid excessive conntrackd traffic
118 	   and also to handle correctly ICMP echo reply duplicates. */
119 	nf_ct_refresh_acct(ct, ctinfo, skb, *timeout);
120 
121 	return NF_ACCEPT;
122 }
123 
124 
icmpv6_error_log(const struct sk_buff * skb,const struct nf_hook_state * state,const char * msg)125 static void icmpv6_error_log(const struct sk_buff *skb,
126 			     const struct nf_hook_state *state,
127 			     const char *msg)
128 {
129 	nf_l4proto_log_invalid(skb, state->net, state->pf,
130 			       IPPROTO_ICMPV6, "%s", msg);
131 }
132 
133 static noinline_for_stack int
nf_conntrack_icmpv6_redirect(struct nf_conn * tmpl,struct sk_buff * skb,unsigned int dataoff,const struct nf_hook_state * state)134 nf_conntrack_icmpv6_redirect(struct nf_conn *tmpl, struct sk_buff *skb,
135 			     unsigned int dataoff,
136 			     const struct nf_hook_state *state)
137 {
138 	u8 hl = ipv6_hdr(skb)->hop_limit;
139 	union nf_inet_addr outer_daddr;
140 	union {
141 		struct nd_opt_hdr nd_opt;
142 		struct rd_msg rd_msg;
143 	} tmp;
144 	const struct nd_opt_hdr *nd_opt;
145 	const struct rd_msg *rd_msg;
146 
147 	rd_msg = skb_header_pointer(skb, dataoff, sizeof(*rd_msg), &tmp.rd_msg);
148 	if (!rd_msg) {
149 		icmpv6_error_log(skb, state, "short redirect");
150 		return -NF_ACCEPT;
151 	}
152 
153 	if (rd_msg->icmph.icmp6_code != 0)
154 		return NF_ACCEPT;
155 
156 	if (hl != 255 || !(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) {
157 		icmpv6_error_log(skb, state, "invalid saddr or hoplimit for redirect");
158 		return -NF_ACCEPT;
159 	}
160 
161 	dataoff += sizeof(*rd_msg);
162 
163 	/* warning: rd_msg no longer usable after this call */
164 	nd_opt = skb_header_pointer(skb, dataoff, sizeof(*nd_opt), &tmp.nd_opt);
165 	if (!nd_opt || nd_opt->nd_opt_len == 0) {
166 		icmpv6_error_log(skb, state, "redirect without options");
167 		return -NF_ACCEPT;
168 	}
169 
170 	/* We could call ndisc_parse_options(), but it would need
171 	 * skb_linearize() and a bit more work.
172 	 */
173 	if (nd_opt->nd_opt_type != ND_OPT_REDIRECT_HDR)
174 		return NF_ACCEPT;
175 
176 	memcpy(&outer_daddr.ip6, &ipv6_hdr(skb)->daddr,
177 	       sizeof(outer_daddr.ip6));
178 	dataoff += 8;
179 	return nf_conntrack_inet_error(tmpl, skb, dataoff, state,
180 				       IPPROTO_ICMPV6, &outer_daddr);
181 }
182 
nf_conntrack_icmpv6_error(struct nf_conn * tmpl,struct sk_buff * skb,unsigned int dataoff,const struct nf_hook_state * state)183 int nf_conntrack_icmpv6_error(struct nf_conn *tmpl,
184 			      struct sk_buff *skb,
185 			      unsigned int dataoff,
186 			      const struct nf_hook_state *state)
187 {
188 	union nf_inet_addr outer_daddr;
189 	const struct icmp6hdr *icmp6h;
190 	struct icmp6hdr _ih;
191 	int type;
192 
193 	icmp6h = skb_header_pointer(skb, dataoff, sizeof(_ih), &_ih);
194 	if (icmp6h == NULL) {
195 		icmpv6_error_log(skb, state, "short packet");
196 		return -NF_ACCEPT;
197 	}
198 
199 	if (state->hook == NF_INET_PRE_ROUTING &&
200 	    state->net->ct.sysctl_checksum &&
201 	    nf_ip6_checksum(skb, state->hook, dataoff, IPPROTO_ICMPV6)) {
202 		icmpv6_error_log(skb, state, "ICMPv6 checksum failed");
203 		return -NF_ACCEPT;
204 	}
205 
206 	type = icmp6h->icmp6_type - 130;
207 	if (type >= 0 && type < sizeof(noct_valid_new) &&
208 	    noct_valid_new[type]) {
209 		nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
210 		return NF_ACCEPT;
211 	}
212 
213 	if (icmp6h->icmp6_type == NDISC_REDIRECT)
214 		return nf_conntrack_icmpv6_redirect(tmpl, skb, dataoff, state);
215 
216 	/* is not error message ? */
217 	if (icmp6h->icmp6_type >= 128)
218 		return NF_ACCEPT;
219 
220 	memcpy(&outer_daddr.ip6, &ipv6_hdr(skb)->daddr,
221 	       sizeof(outer_daddr.ip6));
222 	dataoff += sizeof(*icmp6h);
223 	return nf_conntrack_inet_error(tmpl, skb, dataoff, state,
224 				       IPPROTO_ICMPV6, &outer_daddr);
225 }
226 
227 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
228 
229 #include <linux/netfilter/nfnetlink.h>
230 #include <linux/netfilter/nfnetlink_conntrack.h>
icmpv6_tuple_to_nlattr(struct sk_buff * skb,const struct nf_conntrack_tuple * t)231 static int icmpv6_tuple_to_nlattr(struct sk_buff *skb,
232 				  const struct nf_conntrack_tuple *t)
233 {
234 	if (nla_put_be16(skb, CTA_PROTO_ICMPV6_ID, t->src.u.icmp.id) ||
235 	    nla_put_u8(skb, CTA_PROTO_ICMPV6_TYPE, t->dst.u.icmp.type) ||
236 	    nla_put_u8(skb, CTA_PROTO_ICMPV6_CODE, t->dst.u.icmp.code))
237 		goto nla_put_failure;
238 	return 0;
239 
240 nla_put_failure:
241 	return -1;
242 }
243 
244 static const struct nla_policy icmpv6_nla_policy[CTA_PROTO_MAX+1] = {
245 	[CTA_PROTO_ICMPV6_TYPE]	= { .type = NLA_U8 },
246 	[CTA_PROTO_ICMPV6_CODE]	= { .type = NLA_U8 },
247 	[CTA_PROTO_ICMPV6_ID]	= { .type = NLA_U16 },
248 };
249 
icmpv6_nlattr_to_tuple(struct nlattr * tb[],struct nf_conntrack_tuple * tuple,u_int32_t flags)250 static int icmpv6_nlattr_to_tuple(struct nlattr *tb[],
251 				struct nf_conntrack_tuple *tuple,
252 				u_int32_t flags)
253 {
254 	if (flags & CTA_FILTER_FLAG(CTA_PROTO_ICMPV6_TYPE)) {
255 		if (!tb[CTA_PROTO_ICMPV6_TYPE])
256 			return -EINVAL;
257 
258 		tuple->dst.u.icmp.type = nla_get_u8(tb[CTA_PROTO_ICMPV6_TYPE]);
259 		if (tuple->dst.u.icmp.type < 128 ||
260 		    tuple->dst.u.icmp.type - 128 >= sizeof(invmap) ||
261 		    !invmap[tuple->dst.u.icmp.type - 128])
262 			return -EINVAL;
263 	}
264 
265 	if (flags & CTA_FILTER_FLAG(CTA_PROTO_ICMPV6_CODE)) {
266 		if (!tb[CTA_PROTO_ICMPV6_CODE])
267 			return -EINVAL;
268 
269 		tuple->dst.u.icmp.code = nla_get_u8(tb[CTA_PROTO_ICMPV6_CODE]);
270 	}
271 
272 	if (flags & CTA_FILTER_FLAG(CTA_PROTO_ICMPV6_ID)) {
273 		if (!tb[CTA_PROTO_ICMPV6_ID])
274 			return -EINVAL;
275 
276 		tuple->src.u.icmp.id = nla_get_be16(tb[CTA_PROTO_ICMPV6_ID]);
277 	}
278 
279 	return 0;
280 }
281 
icmpv6_nlattr_tuple_size(void)282 static unsigned int icmpv6_nlattr_tuple_size(void)
283 {
284 	static unsigned int size __read_mostly;
285 
286 	if (!size)
287 		size = nla_policy_len(icmpv6_nla_policy, CTA_PROTO_MAX + 1);
288 
289 	return size;
290 }
291 #endif
292 
293 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
294 
295 #include <linux/netfilter/nfnetlink.h>
296 #include <linux/netfilter/nfnetlink_cttimeout.h>
297 
icmpv6_timeout_nlattr_to_obj(struct nlattr * tb[],struct net * net,void * data)298 static int icmpv6_timeout_nlattr_to_obj(struct nlattr *tb[],
299 					struct net *net, void *data)
300 {
301 	unsigned int *timeout = data;
302 	struct nf_icmp_net *in = nf_icmpv6_pernet(net);
303 
304 	if (!timeout)
305 		timeout = icmpv6_get_timeouts(net);
306 	if (tb[CTA_TIMEOUT_ICMPV6_TIMEOUT]) {
307 		*timeout =
308 		    ntohl(nla_get_be32(tb[CTA_TIMEOUT_ICMPV6_TIMEOUT])) * HZ;
309 	} else {
310 		/* Set default ICMPv6 timeout. */
311 		*timeout = in->timeout;
312 	}
313 	return 0;
314 }
315 
316 static int
icmpv6_timeout_obj_to_nlattr(struct sk_buff * skb,const void * data)317 icmpv6_timeout_obj_to_nlattr(struct sk_buff *skb, const void *data)
318 {
319 	const unsigned int *timeout = data;
320 
321 	if (nla_put_be32(skb, CTA_TIMEOUT_ICMPV6_TIMEOUT, htonl(*timeout / HZ)))
322 		goto nla_put_failure;
323 	return 0;
324 
325 nla_put_failure:
326 	return -ENOSPC;
327 }
328 
329 static const struct nla_policy
330 icmpv6_timeout_nla_policy[CTA_TIMEOUT_ICMPV6_MAX+1] = {
331 	[CTA_TIMEOUT_ICMPV6_TIMEOUT]	= { .type = NLA_U32 },
332 };
333 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
334 
nf_conntrack_icmpv6_init_net(struct net * net)335 void nf_conntrack_icmpv6_init_net(struct net *net)
336 {
337 	struct nf_icmp_net *in = nf_icmpv6_pernet(net);
338 
339 	in->timeout = nf_ct_icmpv6_timeout;
340 }
341 
342 const struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6 =
343 {
344 	.l4proto		= IPPROTO_ICMPV6,
345 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
346 	.tuple_to_nlattr	= icmpv6_tuple_to_nlattr,
347 	.nlattr_tuple_size	= icmpv6_nlattr_tuple_size,
348 	.nlattr_to_tuple	= icmpv6_nlattr_to_tuple,
349 	.nla_policy		= icmpv6_nla_policy,
350 #endif
351 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
352 	.ctnl_timeout		= {
353 		.nlattr_to_obj	= icmpv6_timeout_nlattr_to_obj,
354 		.obj_to_nlattr	= icmpv6_timeout_obj_to_nlattr,
355 		.nlattr_max	= CTA_TIMEOUT_ICMP_MAX,
356 		.obj_size	= sizeof(unsigned int),
357 		.nla_policy	= icmpv6_timeout_nla_policy,
358 	},
359 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
360 };
361