ASoC: SOF: Drop superfluous snd_pcm_sgbuf_ops_page
[linux-2.6-block.git] / net / netfilter / nf_conntrack_proto_icmpv6.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
9fb9cbb1
YK
2/*
3 * Copyright (C)2003,2004 USAGI/WIDE Project
4 *
9fb9cbb1
YK
5 * Author:
6 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
9fb9cbb1
YK
7 */
8
9#include <linux/types.h>
9fb9cbb1
YK
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>
605dcad6 21#include <net/netfilter/nf_conntrack_l4proto.h>
9fb9cbb1 22#include <net/netfilter/nf_conntrack_core.h>
c779e849 23#include <net/netfilter/nf_conntrack_timeout.h>
5d0aa2cc 24#include <net/netfilter/nf_conntrack_zones.h>
f01ffbd6 25#include <net/netfilter/nf_log.h>
9fb9cbb1 26
2c9e8637 27static const unsigned int nf_ct_icmpv6_timeout = 30*HZ;
9fb9cbb1 28
e2e48b47
FW
29bool icmpv6_pkt_to_tuple(const struct sk_buff *skb,
30 unsigned int dataoff,
31 struct net *net,
32 struct nf_conntrack_tuple *tuple)
9fb9cbb1 33{
7cc3864d
JE
34 const struct icmp6hdr *hp;
35 struct icmp6hdr _hdr;
9fb9cbb1
YK
36
37 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
38 if (hp == NULL)
09f263cd 39 return false;
9fb9cbb1
YK
40 tuple->dst.u.icmp.type = hp->icmp6_type;
41 tuple->src.u.icmp.id = hp->icmp6_identifier;
42 tuple->dst.u.icmp.code = hp->icmp6_code;
43
09f263cd 44 return true;
9fb9cbb1
YK
45}
46
c1d10adb 47/* Add 1; spaces filled with 0. */
7cc3864d 48static const u_int8_t invmap[] = {
c1d10adb
PNA
49 [ICMPV6_ECHO_REQUEST - 128] = ICMPV6_ECHO_REPLY + 1,
50 [ICMPV6_ECHO_REPLY - 128] = ICMPV6_ECHO_REQUEST + 1,
a51f42f3 51 [ICMPV6_NI_QUERY - 128] = ICMPV6_NI_REPLY + 1,
f9527ea9 52 [ICMPV6_NI_REPLY - 128] = ICMPV6_NI_QUERY + 1
c1d10adb
PNA
53};
54
3f900713
EL
55static const u_int8_t noct_valid_new[] = {
56 [ICMPV6_MGM_QUERY - 130] = 1,
f9527ea9 57 [ICMPV6_MGM_REPORT - 130] = 1,
3f900713
EL
58 [ICMPV6_MGM_REDUCTION - 130] = 1,
59 [NDISC_ROUTER_SOLICITATION - 130] = 1,
60 [NDISC_ROUTER_ADVERTISEMENT - 130] = 1,
61 [NDISC_NEIGHBOUR_SOLICITATION - 130] = 1,
62 [NDISC_NEIGHBOUR_ADVERTISEMENT - 130] = 1,
63 [ICMPV6_MLD2_REPORT - 130] = 1
64};
65
197c4300
FW
66bool nf_conntrack_invert_icmpv6_tuple(struct nf_conntrack_tuple *tuple,
67 const struct nf_conntrack_tuple *orig)
9fb9cbb1 68{
f16c9107
YK
69 int type = orig->dst.u.icmp.type - 128;
70 if (type < 0 || type >= sizeof(invmap) || !invmap[type])
09f263cd 71 return false;
9fb9cbb1
YK
72
73 tuple->src.u.icmp.id = orig->src.u.icmp.id;
74 tuple->dst.u.icmp.type = invmap[type] - 1;
75 tuple->dst.u.icmp.code = orig->dst.u.icmp.code;
09f263cd 76 return true;
9fb9cbb1
YK
77}
78
2c8503f5
PNA
79static unsigned int *icmpv6_get_timeouts(struct net *net)
80{
a95a7774 81 return &nf_icmpv6_pernet(net)->timeout;
2c8503f5
PNA
82}
83
9fb9cbb1 84/* Returns verdict for packet, or -1 for invalid. */
a47c5404
FW
85int nf_conntrack_icmpv6_packet(struct nf_conn *ct,
86 struct sk_buff *skb,
87 enum ip_conntrack_info ctinfo,
88 const struct nf_hook_state *state)
9fb9cbb1 89{
c779e849 90 unsigned int *timeout = nf_ct_timeout_lookup(ct);
9976fc6e
FW
91 static const u8 valid_new[] = {
92 [ICMPV6_ECHO_REQUEST - 128] = 1,
93 [ICMPV6_NI_QUERY - 128] = 1
94 };
95
dd2934a9
FW
96 if (state->pf != NFPROTO_IPV6)
97 return -NF_ACCEPT;
98
9976fc6e
FW
99 if (!nf_ct_is_confirmed(ct)) {
100 int type = ct->tuplehash[0].tuple.dst.u.icmp.type - 128;
101
102 if (type < 0 || type >= sizeof(valid_new) || !valid_new[type]) {
103 /* Can't create a new ICMPv6 `conn' with this. */
104 pr_debug("icmpv6: can't create new conn with type %u\n",
105 type + 128);
106 nf_ct_dump_tuple_ipv6(&ct->tuplehash[0].tuple);
107 return -NF_ACCEPT;
108 }
109 }
c779e849
FW
110
111 if (!timeout)
112 timeout = icmpv6_get_timeouts(nf_ct_net(ct));
113
f87fb666
JK
114 /* Do not immediately delete the connection after the first
115 successful reply to avoid excessive conntrackd traffic
116 and also to handle correctly ICMP echo reply duplicates. */
2c8503f5 117 nf_ct_refresh_acct(ct, ctinfo, skb, *timeout);
9fb9cbb1
YK
118
119 return NF_ACCEPT;
120}
121
9fb9cbb1 122
93e66024
FW
123static void icmpv6_error_log(const struct sk_buff *skb,
124 const struct nf_hook_state *state,
125 const char *msg)
c4f3db15 126{
93e66024
FW
127 nf_l4proto_log_invalid(skb, state->net, state->pf,
128 IPPROTO_ICMPV6, "%s", msg);
c4f3db15
FW
129}
130
6fe78fa4
FW
131int nf_conntrack_icmpv6_error(struct nf_conn *tmpl,
132 struct sk_buff *skb,
133 unsigned int dataoff,
134 const struct nf_hook_state *state)
9fb9cbb1 135{
1025ce75 136 union nf_inet_addr outer_daddr;
7cc3864d
JE
137 const struct icmp6hdr *icmp6h;
138 struct icmp6hdr _ih;
3f900713 139 int type;
9fb9cbb1
YK
140
141 icmp6h = skb_header_pointer(skb, dataoff, sizeof(_ih), &_ih);
142 if (icmp6h == NULL) {
93e66024 143 icmpv6_error_log(skb, state, "short packet");
9fb9cbb1
YK
144 return -NF_ACCEPT;
145 }
146
93e66024
FW
147 if (state->hook == NF_INET_PRE_ROUTING &&
148 state->net->ct.sysctl_checksum &&
149 nf_ip6_checksum(skb, state->hook, dataoff, IPPROTO_ICMPV6)) {
150 icmpv6_error_log(skb, state, "ICMPv6 checksum failed");
9fb9cbb1
YK
151 return -NF_ACCEPT;
152 }
153
3f900713
EL
154 type = icmp6h->icmp6_type - 130;
155 if (type >= 0 && type < sizeof(noct_valid_new) &&
156 noct_valid_new[type]) {
cc41c84b 157 nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
3f900713
EL
158 return NF_ACCEPT;
159 }
160
9fb9cbb1
YK
161 /* is not error message ? */
162 if (icmp6h->icmp6_type >= 128)
163 return NF_ACCEPT;
164
1025ce75
FW
165 memcpy(&outer_daddr.ip6, &ipv6_hdr(skb)->daddr,
166 sizeof(outer_daddr.ip6));
167 dataoff += sizeof(*icmp6h);
168 return nf_conntrack_inet_error(tmpl, skb, dataoff, state,
169 IPPROTO_ICMPV6, &outer_daddr);
9fb9cbb1
YK
170}
171
07a93626 172#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
c1d10adb
PNA
173
174#include <linux/netfilter/nfnetlink.h>
175#include <linux/netfilter/nfnetlink_conntrack.h>
fdf70832 176static int icmpv6_tuple_to_nlattr(struct sk_buff *skb,
c1d10adb
PNA
177 const struct nf_conntrack_tuple *t)
178{
e549a6b3
DM
179 if (nla_put_be16(skb, CTA_PROTO_ICMPV6_ID, t->src.u.icmp.id) ||
180 nla_put_u8(skb, CTA_PROTO_ICMPV6_TYPE, t->dst.u.icmp.type) ||
181 nla_put_u8(skb, CTA_PROTO_ICMPV6_CODE, t->dst.u.icmp.code))
182 goto nla_put_failure;
c1d10adb
PNA
183 return 0;
184
df6fb868 185nla_put_failure:
c1d10adb
PNA
186 return -1;
187}
188
f73e924c
PM
189static const struct nla_policy icmpv6_nla_policy[CTA_PROTO_MAX+1] = {
190 [CTA_PROTO_ICMPV6_TYPE] = { .type = NLA_U8 },
191 [CTA_PROTO_ICMPV6_CODE] = { .type = NLA_U8 },
192 [CTA_PROTO_ICMPV6_ID] = { .type = NLA_U16 },
c1d10adb
PNA
193};
194
fdf70832 195static int icmpv6_nlattr_to_tuple(struct nlattr *tb[],
c1d10adb
PNA
196 struct nf_conntrack_tuple *tuple)
197{
3666ed1c
JP
198 if (!tb[CTA_PROTO_ICMPV6_TYPE] ||
199 !tb[CTA_PROTO_ICMPV6_CODE] ||
200 !tb[CTA_PROTO_ICMPV6_ID])
c1d10adb
PNA
201 return -EINVAL;
202
77236b6e
PM
203 tuple->dst.u.icmp.type = nla_get_u8(tb[CTA_PROTO_ICMPV6_TYPE]);
204 tuple->dst.u.icmp.code = nla_get_u8(tb[CTA_PROTO_ICMPV6_CODE]);
205 tuple->src.u.icmp.id = nla_get_be16(tb[CTA_PROTO_ICMPV6_ID]);
c1d10adb 206
3666ed1c
JP
207 if (tuple->dst.u.icmp.type < 128 ||
208 tuple->dst.u.icmp.type - 128 >= sizeof(invmap) ||
209 !invmap[tuple->dst.u.icmp.type - 128])
c1d10adb
PNA
210 return -EINVAL;
211
212 return 0;
213}
a400c30e 214
5caaed15 215static unsigned int icmpv6_nlattr_tuple_size(void)
a400c30e 216{
5caaed15
FW
217 static unsigned int size __read_mostly;
218
219 if (!size)
220 size = nla_policy_len(icmpv6_nla_policy, CTA_PROTO_MAX + 1);
221
222 return size;
a400c30e 223}
c1d10adb
PNA
224#endif
225
a874752a 226#ifdef CONFIG_NF_CONNTRACK_TIMEOUT
50978462
PNA
227
228#include <linux/netfilter/nfnetlink.h>
229#include <linux/netfilter/nfnetlink_cttimeout.h>
230
8264deb8
G
231static int icmpv6_timeout_nlattr_to_obj(struct nlattr *tb[],
232 struct net *net, void *data)
50978462
PNA
233{
234 unsigned int *timeout = data;
a95a7774 235 struct nf_icmp_net *in = nf_icmpv6_pernet(net);
50978462 236
c779e849
FW
237 if (!timeout)
238 timeout = icmpv6_get_timeouts(net);
50978462
PNA
239 if (tb[CTA_TIMEOUT_ICMPV6_TIMEOUT]) {
240 *timeout =
241 ntohl(nla_get_be32(tb[CTA_TIMEOUT_ICMPV6_TIMEOUT])) * HZ;
242 } else {
243 /* Set default ICMPv6 timeout. */
8264deb8 244 *timeout = in->timeout;
50978462
PNA
245 }
246 return 0;
247}
248
249static int
250icmpv6_timeout_obj_to_nlattr(struct sk_buff *skb, const void *data)
251{
252 const unsigned int *timeout = data;
253
e549a6b3
DM
254 if (nla_put_be32(skb, CTA_TIMEOUT_ICMPV6_TIMEOUT, htonl(*timeout / HZ)))
255 goto nla_put_failure;
50978462
PNA
256 return 0;
257
258nla_put_failure:
259 return -ENOSPC;
260}
261
262static const struct nla_policy
263icmpv6_timeout_nla_policy[CTA_TIMEOUT_ICMPV6_MAX+1] = {
264 [CTA_TIMEOUT_ICMPV6_TIMEOUT] = { .type = NLA_U32 },
265};
a874752a 266#endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
50978462 267
2a389de8 268void nf_conntrack_icmpv6_init_net(struct net *net)
8fc02781 269{
a95a7774 270 struct nf_icmp_net *in = nf_icmpv6_pernet(net);
8fc02781
G
271
272 in->timeout = nf_ct_icmpv6_timeout;
08911475
PNA
273}
274
9dae47ab 275const struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6 =
9fb9cbb1 276{
605dcad6 277 .l4proto = IPPROTO_ICMPV6,
07a93626 278#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
fdf70832 279 .tuple_to_nlattr = icmpv6_tuple_to_nlattr,
a400c30e 280 .nlattr_tuple_size = icmpv6_nlattr_tuple_size,
fdf70832 281 .nlattr_to_tuple = icmpv6_nlattr_to_tuple,
f73e924c 282 .nla_policy = icmpv6_nla_policy,
c1d10adb 283#endif
a874752a 284#ifdef CONFIG_NF_CONNTRACK_TIMEOUT
50978462
PNA
285 .ctnl_timeout = {
286 .nlattr_to_obj = icmpv6_timeout_nlattr_to_obj,
287 .obj_to_nlattr = icmpv6_timeout_obj_to_nlattr,
288 .nlattr_max = CTA_TIMEOUT_ICMP_MAX,
289 .obj_size = sizeof(unsigned int),
290 .nla_policy = icmpv6_timeout_nla_policy,
291 },
a874752a 292#endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
9fb9cbb1 293};