blob: 621fb22ce2a9297f6cab5fd1d675cc2fdd63aa73 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Grégoire Baroneb4d4062010-08-18 13:10:35 +00002/*
3 * Checksum updating actions
4 *
5 * Copyright (c) 2010 Gregoire Baron <baronchon@n7mm.org>
Grégoire Baroneb4d4062010-08-18 13:10:35 +00006 */
7
8#include <linux/types.h>
9#include <linux/init.h>
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/spinlock.h>
13
14#include <linux/netlink.h>
15#include <net/netlink.h>
16#include <linux/rtnetlink.h>
17
18#include <linux/skbuff.h>
19
20#include <net/ip.h>
21#include <net/ipv6.h>
22#include <net/icmp.h>
23#include <linux/icmpv6.h>
24#include <linux/igmp.h>
25#include <net/tcp.h>
26#include <net/udp.h>
Stephen Rothwell24362432010-08-22 20:31:14 -070027#include <net/ip6_checksum.h>
Davide Carattic008b332017-01-09 11:24:21 +010028#include <net/sctp/checksum.h>
Grégoire Baroneb4d4062010-08-18 13:10:35 +000029
30#include <net/act_api.h>
Davide Carattif5c29d82019-03-20 15:00:01 +010031#include <net/pkt_cls.h>
Grégoire Baroneb4d4062010-08-18 13:10:35 +000032
33#include <linux/tc_act/tc_csum.h>
34#include <net/tc_act/tc_csum.h>
35
Grégoire Baroneb4d4062010-08-18 13:10:35 +000036static const struct nla_policy csum_policy[TCA_CSUM_MAX + 1] = {
37 [TCA_CSUM_PARMS] = { .len = sizeof(struct tc_csum), },
38};
39
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030040static unsigned int csum_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070041static struct tc_action_ops act_csum_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080042
43static int tcf_csum_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -070044 struct nlattr *est, struct tc_action **a, int ovr,
Davide Caratti85d09662019-03-20 14:59:59 +010045 int bind, bool rtnl_held, struct tcf_proto *tp,
Vlad Buslov789871b2018-07-05 17:24:25 +030046 struct netlink_ext_ack *extack)
Grégoire Baroneb4d4062010-08-18 13:10:35 +000047{
WANG Congddf97cc2016-02-22 15:57:53 -080048 struct tc_action_net *tn = net_generic(net, csum_net_id);
Vlad Buslovb6a2b972018-08-10 20:51:42 +030049 struct tcf_csum_params *params_new;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000050 struct nlattr *tb[TCA_CSUM_MAX + 1];
Davide Carattif5c29d82019-03-20 15:00:01 +010051 struct tcf_chain *goto_ch = NULL;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000052 struct tc_csum *parm;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000053 struct tcf_csum *p;
54 int ret = 0, err;
55
56 if (nla == NULL)
57 return -EINVAL;
58
Johannes Berg8cb08172019-04-26 14:07:28 +020059 err = nla_parse_nested_deprecated(tb, TCA_CSUM_MAX, nla, csum_policy,
60 NULL);
Grégoire Baroneb4d4062010-08-18 13:10:35 +000061 if (err < 0)
62 return err;
63
64 if (tb[TCA_CSUM_PARMS] == NULL)
65 return -EINVAL;
66 parm = nla_data(tb[TCA_CSUM_PARMS]);
67
Vlad Buslov0190c1d2018-07-05 17:24:32 +030068 err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
69 if (!err) {
Chris Mi65a206c2017-08-30 02:31:59 -040070 ret = tcf_idr_create(tn, parm->index, est, a,
Davide Carattif6052cf2018-01-22 18:14:31 +010071 &act_csum_ops, bind, true);
Vlad Buslov0190c1d2018-07-05 17:24:32 +030072 if (ret) {
73 tcf_idr_cleanup(tn, parm->index);
WANG Cong86062032014-02-11 17:07:31 -080074 return ret;
Vlad Buslov0190c1d2018-07-05 17:24:32 +030075 }
Grégoire Baroneb4d4062010-08-18 13:10:35 +000076 ret = ACT_P_CREATED;
Vlad Buslov0190c1d2018-07-05 17:24:32 +030077 } else if (err > 0) {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050078 if (bind)/* dont override defaults */
79 return 0;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +030080 if (!ovr) {
81 tcf_idr_release(*a, bind);
Grégoire Baroneb4d4062010-08-18 13:10:35 +000082 return -EEXIST;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +030083 }
Vlad Buslov0190c1d2018-07-05 17:24:32 +030084 } else {
85 return err;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000086 }
87
Davide Carattif5c29d82019-03-20 15:00:01 +010088 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
89 if (err < 0)
90 goto release_idr;
91
WANG Conga85a9702016-07-25 16:09:41 -070092 p = to_tcf_csum(*a);
Davide Caratti9c5f69b2018-01-22 18:14:32 +010093
94 params_new = kzalloc(sizeof(*params_new), GFP_KERNEL);
95 if (unlikely(!params_new)) {
Davide Carattif5c29d82019-03-20 15:00:01 +010096 err = -ENOMEM;
97 goto put_chain;
Davide Caratti9c5f69b2018-01-22 18:14:32 +010098 }
Davide Caratti9c5f69b2018-01-22 18:14:32 +010099 params_new->update_flags = parm->update_flags;
Vlad Buslovb6a2b972018-08-10 20:51:42 +0300100
Vlad Buslov653cd282018-08-14 21:46:16 +0300101 spin_lock_bh(&p->tcf_lock);
Davide Carattif5c29d82019-03-20 15:00:01 +0100102 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
Vlad Buslovb6a2b972018-08-10 20:51:42 +0300103 rcu_swap_protected(p->params, params_new,
104 lockdep_is_held(&p->tcf_lock));
Vlad Buslov653cd282018-08-14 21:46:16 +0300105 spin_unlock_bh(&p->tcf_lock);
Vlad Buslovb6a2b972018-08-10 20:51:42 +0300106
Davide Carattif5c29d82019-03-20 15:00:01 +0100107 if (goto_ch)
108 tcf_chain_put_by_act(goto_ch);
Vlad Buslovb6a2b972018-08-10 20:51:42 +0300109 if (params_new)
110 kfree_rcu(params_new, rcu);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000111
112 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400113 tcf_idr_insert(tn, *a);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000114
115 return ret;
Davide Carattif5c29d82019-03-20 15:00:01 +0100116put_chain:
117 if (goto_ch)
118 tcf_chain_put_by_act(goto_ch);
119release_idr:
120 tcf_idr_release(*a, bind);
121 return err;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000122}
123
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000124/**
125 * tcf_csum_skb_nextlayer - Get next layer pointer
126 * @skb: sk_buff to use
127 * @ihl: previous summed headers length
128 * @ipl: complete packet length
129 * @jhl: next header length
130 *
131 * Check the expected next layer availability in the specified sk_buff.
132 * Return the next layer pointer if pass, NULL otherwise.
133 */
134static void *tcf_csum_skb_nextlayer(struct sk_buff *skb,
135 unsigned int ihl, unsigned int ipl,
136 unsigned int jhl)
137{
138 int ntkoff = skb_network_offset(skb);
139 int hl = ihl + jhl;
140
141 if (!pskb_may_pull(skb, ipl + ntkoff) || (ipl < hl) ||
Daniel Borkmann36976492016-02-19 23:05:25 +0100142 skb_try_make_writable(skb, hl + ntkoff))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000143 return NULL;
144 else
145 return (void *)(skb_network_header(skb) + ihl);
146}
147
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400148static int tcf_csum_ipv4_icmp(struct sk_buff *skb, unsigned int ihl,
149 unsigned int ipl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000150{
151 struct icmphdr *icmph;
152
153 icmph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*icmph));
154 if (icmph == NULL)
155 return 0;
156
157 icmph->checksum = 0;
158 skb->csum = csum_partial(icmph, ipl - ihl, 0);
159 icmph->checksum = csum_fold(skb->csum);
160
161 skb->ip_summed = CHECKSUM_NONE;
162
163 return 1;
164}
165
166static int tcf_csum_ipv4_igmp(struct sk_buff *skb,
167 unsigned int ihl, unsigned int ipl)
168{
169 struct igmphdr *igmph;
170
171 igmph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*igmph));
172 if (igmph == NULL)
173 return 0;
174
175 igmph->csum = 0;
176 skb->csum = csum_partial(igmph, ipl - ihl, 0);
177 igmph->csum = csum_fold(skb->csum);
178
179 skb->ip_summed = CHECKSUM_NONE;
180
181 return 1;
182}
183
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400184static int tcf_csum_ipv6_icmp(struct sk_buff *skb, unsigned int ihl,
185 unsigned int ipl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000186{
187 struct icmp6hdr *icmp6h;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700188 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000189
190 icmp6h = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*icmp6h));
191 if (icmp6h == NULL)
192 return 0;
193
Eric Dumazetd14a4892013-04-12 11:07:47 -0700194 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000195 icmp6h->icmp6_cksum = 0;
196 skb->csum = csum_partial(icmp6h, ipl - ihl, 0);
197 icmp6h->icmp6_cksum = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
198 ipl - ihl, IPPROTO_ICMPV6,
199 skb->csum);
200
201 skb->ip_summed = CHECKSUM_NONE;
202
203 return 1;
204}
205
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400206static int tcf_csum_ipv4_tcp(struct sk_buff *skb, unsigned int ihl,
207 unsigned int ipl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000208{
209 struct tcphdr *tcph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700210 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000211
Davide Carattiadd641e2017-03-23 10:39:40 +0100212 if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
213 return 1;
214
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000215 tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph));
216 if (tcph == NULL)
217 return 0;
218
Eric Dumazetd14a4892013-04-12 11:07:47 -0700219 iph = ip_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000220 tcph->check = 0;
221 skb->csum = csum_partial(tcph, ipl - ihl, 0);
222 tcph->check = tcp_v4_check(ipl - ihl,
223 iph->saddr, iph->daddr, skb->csum);
224
225 skb->ip_summed = CHECKSUM_NONE;
226
227 return 1;
228}
229
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400230static int tcf_csum_ipv6_tcp(struct sk_buff *skb, unsigned int ihl,
231 unsigned int ipl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000232{
233 struct tcphdr *tcph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700234 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000235
Davide Carattiadd641e2017-03-23 10:39:40 +0100236 if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
237 return 1;
238
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000239 tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph));
240 if (tcph == NULL)
241 return 0;
242
Eric Dumazetd14a4892013-04-12 11:07:47 -0700243 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000244 tcph->check = 0;
245 skb->csum = csum_partial(tcph, ipl - ihl, 0);
246 tcph->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
247 ipl - ihl, IPPROTO_TCP,
248 skb->csum);
249
250 skb->ip_summed = CHECKSUM_NONE;
251
252 return 1;
253}
254
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400255static int tcf_csum_ipv4_udp(struct sk_buff *skb, unsigned int ihl,
256 unsigned int ipl, int udplite)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000257{
258 struct udphdr *udph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700259 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000260 u16 ul;
261
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500262 if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
263 return 1;
264
Changli Gao0eec32f2010-08-23 03:27:58 +0000265 /*
266 * Support both UDP and UDPLITE checksum algorithms, Don't use
267 * udph->len to get the real length without any protocol check,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000268 * UDPLITE uses udph->len for another thing,
269 * Use iph->tot_len, or just ipl.
270 */
271
272 udph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*udph));
273 if (udph == NULL)
274 return 0;
275
Eric Dumazetd14a4892013-04-12 11:07:47 -0700276 iph = ip_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000277 ul = ntohs(udph->len);
278
279 if (udplite || udph->check) {
280
281 udph->check = 0;
282
283 if (udplite) {
284 if (ul == 0)
285 skb->csum = csum_partial(udph, ipl - ihl, 0);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000286 else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl))
287 skb->csum = csum_partial(udph, ul, 0);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000288 else
289 goto ignore_obscure_skb;
290 } else {
291 if (ul != ipl - ihl)
292 goto ignore_obscure_skb;
293
294 skb->csum = csum_partial(udph, ul, 0);
295 }
296
297 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
298 ul, iph->protocol,
299 skb->csum);
300
301 if (!udph->check)
302 udph->check = CSUM_MANGLED_0;
303 }
304
305 skb->ip_summed = CHECKSUM_NONE;
306
307ignore_obscure_skb:
308 return 1;
309}
310
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400311static int tcf_csum_ipv6_udp(struct sk_buff *skb, unsigned int ihl,
312 unsigned int ipl, int udplite)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000313{
314 struct udphdr *udph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700315 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000316 u16 ul;
317
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500318 if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
319 return 1;
320
Changli Gao0eec32f2010-08-23 03:27:58 +0000321 /*
322 * Support both UDP and UDPLITE checksum algorithms, Don't use
323 * udph->len to get the real length without any protocol check,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000324 * UDPLITE uses udph->len for another thing,
325 * Use ip6h->payload_len + sizeof(*ip6h) ... , or just ipl.
326 */
327
328 udph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*udph));
329 if (udph == NULL)
330 return 0;
331
Eric Dumazetd14a4892013-04-12 11:07:47 -0700332 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000333 ul = ntohs(udph->len);
334
335 udph->check = 0;
336
337 if (udplite) {
338 if (ul == 0)
339 skb->csum = csum_partial(udph, ipl - ihl, 0);
340
341 else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl))
342 skb->csum = csum_partial(udph, ul, 0);
343
344 else
345 goto ignore_obscure_skb;
346 } else {
347 if (ul != ipl - ihl)
348 goto ignore_obscure_skb;
349
350 skb->csum = csum_partial(udph, ul, 0);
351 }
352
353 udph->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr, ul,
354 udplite ? IPPROTO_UDPLITE : IPPROTO_UDP,
355 skb->csum);
356
357 if (!udph->check)
358 udph->check = CSUM_MANGLED_0;
359
360 skb->ip_summed = CHECKSUM_NONE;
361
362ignore_obscure_skb:
363 return 1;
364}
365
Davide Carattic008b332017-01-09 11:24:21 +0100366static int tcf_csum_sctp(struct sk_buff *skb, unsigned int ihl,
367 unsigned int ipl)
368{
369 struct sctphdr *sctph;
370
Daniel Axtens1dd27cd2018-03-09 14:06:09 +1100371 if (skb_is_gso(skb) && skb_is_gso_sctp(skb))
Davide Carattic008b332017-01-09 11:24:21 +0100372 return 1;
373
374 sctph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*sctph));
375 if (!sctph)
376 return 0;
377
378 sctph->checksum = sctp_compute_cksum(skb,
379 skb_network_offset(skb) + ihl);
380 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +0200381 skb->csum_not_inet = 0;
Davide Carattic008b332017-01-09 11:24:21 +0100382
383 return 1;
384}
385
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000386static int tcf_csum_ipv4(struct sk_buff *skb, u32 update_flags)
387{
Eric Dumazetd14a4892013-04-12 11:07:47 -0700388 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000389 int ntkoff;
390
391 ntkoff = skb_network_offset(skb);
392
393 if (!pskb_may_pull(skb, sizeof(*iph) + ntkoff))
394 goto fail;
395
396 iph = ip_hdr(skb);
397
398 switch (iph->frag_off & htons(IP_OFFSET) ? 0 : iph->protocol) {
399 case IPPROTO_ICMP:
400 if (update_flags & TCA_CSUM_UPDATE_FLAG_ICMP)
Changli Gao0eec32f2010-08-23 03:27:58 +0000401 if (!tcf_csum_ipv4_icmp(skb, iph->ihl * 4,
402 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000403 goto fail;
404 break;
405 case IPPROTO_IGMP:
406 if (update_flags & TCA_CSUM_UPDATE_FLAG_IGMP)
Changli Gao0eec32f2010-08-23 03:27:58 +0000407 if (!tcf_csum_ipv4_igmp(skb, iph->ihl * 4,
408 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000409 goto fail;
410 break;
411 case IPPROTO_TCP:
412 if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700413 if (!tcf_csum_ipv4_tcp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000414 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000415 goto fail;
416 break;
417 case IPPROTO_UDP:
418 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700419 if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000420 ntohs(iph->tot_len), 0))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000421 goto fail;
422 break;
423 case IPPROTO_UDPLITE:
424 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700425 if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000426 ntohs(iph->tot_len), 1))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000427 goto fail;
428 break;
Davide Carattic008b332017-01-09 11:24:21 +0100429 case IPPROTO_SCTP:
430 if ((update_flags & TCA_CSUM_UPDATE_FLAG_SCTP) &&
431 !tcf_csum_sctp(skb, iph->ihl * 4, ntohs(iph->tot_len)))
432 goto fail;
433 break;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000434 }
435
436 if (update_flags & TCA_CSUM_UPDATE_FLAG_IPV4HDR) {
Daniel Borkmann36976492016-02-19 23:05:25 +0100437 if (skb_try_make_writable(skb, sizeof(*iph) + ntkoff))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000438 goto fail;
439
Eric Dumazetd14a4892013-04-12 11:07:47 -0700440 ip_send_check(ip_hdr(skb));
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000441 }
442
443 return 1;
444
445fail:
446 return 0;
447}
448
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400449static int tcf_csum_ipv6_hopopts(struct ipv6_opt_hdr *ip6xh, unsigned int ixhl,
450 unsigned int *pl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000451{
452 int off, len, optlen;
453 unsigned char *xh = (void *)ip6xh;
454
455 off = sizeof(*ip6xh);
456 len = ixhl - off;
457
458 while (len > 1) {
Changli Gao0eec32f2010-08-23 03:27:58 +0000459 switch (xh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000460 case IPV6_TLV_PAD1:
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000461 optlen = 1;
462 break;
463 case IPV6_TLV_JUMBO:
464 optlen = xh[off + 1] + 2;
465 if (optlen != 6 || len < 6 || (off & 3) != 2)
466 /* wrong jumbo option length/alignment */
467 return 0;
468 *pl = ntohl(*(__be32 *)(xh + off + 2));
469 goto done;
470 default:
471 optlen = xh[off + 1] + 2;
472 if (optlen > len)
473 /* ignore obscure options */
474 goto done;
475 break;
476 }
477 off += optlen;
478 len -= optlen;
479 }
480
481done:
482 return 1;
483}
484
485static int tcf_csum_ipv6(struct sk_buff *skb, u32 update_flags)
486{
487 struct ipv6hdr *ip6h;
488 struct ipv6_opt_hdr *ip6xh;
489 unsigned int hl, ixhl;
490 unsigned int pl;
491 int ntkoff;
492 u8 nexthdr;
493
494 ntkoff = skb_network_offset(skb);
495
496 hl = sizeof(*ip6h);
497
498 if (!pskb_may_pull(skb, hl + ntkoff))
499 goto fail;
500
501 ip6h = ipv6_hdr(skb);
502
503 pl = ntohs(ip6h->payload_len);
504 nexthdr = ip6h->nexthdr;
505
506 do {
507 switch (nexthdr) {
508 case NEXTHDR_FRAGMENT:
509 goto ignore_skb;
510 case NEXTHDR_ROUTING:
511 case NEXTHDR_HOP:
512 case NEXTHDR_DEST:
513 if (!pskb_may_pull(skb, hl + sizeof(*ip6xh) + ntkoff))
514 goto fail;
515 ip6xh = (void *)(skb_network_header(skb) + hl);
516 ixhl = ipv6_optlen(ip6xh);
517 if (!pskb_may_pull(skb, hl + ixhl + ntkoff))
518 goto fail;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700519 ip6xh = (void *)(skb_network_header(skb) + hl);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000520 if ((nexthdr == NEXTHDR_HOP) &&
521 !(tcf_csum_ipv6_hopopts(ip6xh, ixhl, &pl)))
522 goto fail;
523 nexthdr = ip6xh->nexthdr;
524 hl += ixhl;
525 break;
526 case IPPROTO_ICMPV6:
527 if (update_flags & TCA_CSUM_UPDATE_FLAG_ICMP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700528 if (!tcf_csum_ipv6_icmp(skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000529 hl, pl + sizeof(*ip6h)))
530 goto fail;
531 goto done;
532 case IPPROTO_TCP:
533 if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700534 if (!tcf_csum_ipv6_tcp(skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000535 hl, pl + sizeof(*ip6h)))
536 goto fail;
537 goto done;
538 case IPPROTO_UDP:
539 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700540 if (!tcf_csum_ipv6_udp(skb, hl,
Changli Gao0eec32f2010-08-23 03:27:58 +0000541 pl + sizeof(*ip6h), 0))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000542 goto fail;
543 goto done;
544 case IPPROTO_UDPLITE:
545 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700546 if (!tcf_csum_ipv6_udp(skb, hl,
Changli Gao0eec32f2010-08-23 03:27:58 +0000547 pl + sizeof(*ip6h), 1))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000548 goto fail;
549 goto done;
Davide Carattic008b332017-01-09 11:24:21 +0100550 case IPPROTO_SCTP:
551 if ((update_flags & TCA_CSUM_UPDATE_FLAG_SCTP) &&
552 !tcf_csum_sctp(skb, hl, pl + sizeof(*ip6h)))
553 goto fail;
554 goto done;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000555 default:
556 goto ignore_skb;
557 }
558 } while (pskb_may_pull(skb, hl + 1 + ntkoff));
559
560done:
561ignore_skb:
562 return 1;
563
564fail:
565 return 0;
566}
567
Jamal Hadi Salimc8315492018-08-12 09:34:51 -0400568static int tcf_csum_act(struct sk_buff *skb, const struct tc_action *a,
569 struct tcf_result *res)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000570{
WANG Conga85a9702016-07-25 16:09:41 -0700571 struct tcf_csum *p = to_tcf_csum(a);
Eli Britstein2ecba2d2019-02-26 09:57:34 +0000572 bool orig_vlan_tag_present = false;
573 unsigned int vlan_hdr_count = 0;
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100574 struct tcf_csum_params *params;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000575 u32 update_flags;
Eli Britstein2ecba2d2019-02-26 09:57:34 +0000576 __be16 protocol;
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100577 int action;
578
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200579 params = rcu_dereference_bh(p->params);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000580
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400581 tcf_lastuse_update(&p->tcf_tm);
Davide Carattif6052cf2018-01-22 18:14:31 +0100582 bstats_cpu_update(this_cpu_ptr(p->common.cpu_bstats), skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000583
Davide Caratti11a245e2018-07-06 21:01:05 +0200584 action = READ_ONCE(p->tcf_action);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000585 if (unlikely(action == TC_ACT_SHOT))
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200586 goto drop;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000587
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100588 update_flags = params->update_flags;
Eli Britstein2ecba2d2019-02-26 09:57:34 +0000589 protocol = tc_skb_protocol(skb);
590again:
591 switch (protocol) {
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000592 case cpu_to_be16(ETH_P_IP):
593 if (!tcf_csum_ipv4(skb, update_flags))
594 goto drop;
595 break;
596 case cpu_to_be16(ETH_P_IPV6):
597 if (!tcf_csum_ipv6(skb, update_flags))
598 goto drop;
599 break;
Eli Britstein2ecba2d2019-02-26 09:57:34 +0000600 case cpu_to_be16(ETH_P_8021AD): /* fall through */
601 case cpu_to_be16(ETH_P_8021Q):
602 if (skb_vlan_tag_present(skb) && !orig_vlan_tag_present) {
603 protocol = skb->protocol;
604 orig_vlan_tag_present = true;
605 } else {
606 struct vlan_hdr *vlan = (struct vlan_hdr *)skb->data;
607
608 protocol = vlan->h_vlan_encapsulated_proto;
609 skb_pull(skb, VLAN_HLEN);
610 skb_reset_network_header(skb);
611 vlan_hdr_count++;
612 }
613 goto again;
614 }
615
616out:
617 /* Restore the skb for the pulled VLAN tags */
618 while (vlan_hdr_count--) {
619 skb_push(skb, VLAN_HLEN);
620 skb_reset_network_header(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000621 }
622
623 return action;
624
625drop:
Davide Carattif6052cf2018-01-22 18:14:31 +0100626 qstats_drop_inc(this_cpu_ptr(p->common.cpu_qstats));
Eli Britstein2ecba2d2019-02-26 09:57:34 +0000627 action = TC_ACT_SHOT;
628 goto out;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000629}
630
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400631static int tcf_csum_dump(struct sk_buff *skb, struct tc_action *a, int bind,
632 int ref)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000633{
634 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700635 struct tcf_csum *p = to_tcf_csum(a);
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100636 struct tcf_csum_params *params;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000637 struct tc_csum opt = {
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000638 .index = p->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300639 .refcnt = refcount_read(&p->tcf_refcnt) - ref,
640 .bindcnt = atomic_read(&p->tcf_bindcnt) - bind,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000641 };
642 struct tcf_t t;
643
Vlad Buslov653cd282018-08-14 21:46:16 +0300644 spin_lock_bh(&p->tcf_lock);
Vlad Buslovb6a2b972018-08-10 20:51:42 +0300645 params = rcu_dereference_protected(p->params,
646 lockdep_is_held(&p->tcf_lock));
647 opt.action = p->tcf_action;
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100648 opt.update_flags = params->update_flags;
649
David S. Miller1b34ec42012-03-29 05:11:39 -0400650 if (nla_put(skb, TCA_CSUM_PARMS, sizeof(opt), &opt))
651 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400652
653 tcf_tm_dump(&t, &p->tcf_tm);
Nicolas Dichtel98545182016-04-26 10:06:18 +0200654 if (nla_put_64bit(skb, TCA_CSUM_TM, sizeof(t), &t, TCA_CSUM_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400655 goto nla_put_failure;
Vlad Buslov653cd282018-08-14 21:46:16 +0300656 spin_unlock_bh(&p->tcf_lock);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000657
658 return skb->len;
659
660nla_put_failure:
Vlad Buslov653cd282018-08-14 21:46:16 +0300661 spin_unlock_bh(&p->tcf_lock);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000662 nlmsg_trim(skb, b);
663 return -1;
664}
665
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100666static void tcf_csum_cleanup(struct tc_action *a)
667{
668 struct tcf_csum *p = to_tcf_csum(a);
669 struct tcf_csum_params *params;
670
671 params = rcu_dereference_protected(p->params, 1);
Davide Carattiaab378a2018-03-16 00:00:54 +0100672 if (params)
673 kfree_rcu(params, rcu);
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100674}
675
WANG Congddf97cc2016-02-22 15:57:53 -0800676static int tcf_csum_walker(struct net *net, struct sk_buff *skb,
677 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500678 const struct tc_action_ops *ops,
679 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800680{
681 struct tc_action_net *tn = net_generic(net, csum_net_id);
682
Alexander Aringb3620142018-02-15 10:54:59 -0500683 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800684}
685
Cong Wangf061b482018-08-29 10:15:35 -0700686static int tcf_csum_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800687{
688 struct tc_action_net *tn = net_generic(net, csum_net_id);
689
Chris Mi65a206c2017-08-30 02:31:59 -0400690 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800691}
692
Craig Dillabaugh29e6eee2018-05-01 10:17:43 -0400693static size_t tcf_csum_get_fill_size(const struct tc_action *act)
694{
695 return nla_total_size(sizeof(struct tc_csum));
696}
697
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000698static struct tc_action_ops act_csum_ops = {
Changli Gao0eec32f2010-08-23 03:27:58 +0000699 .kind = "csum",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200700 .id = TCA_ID_CSUM,
Changli Gao0eec32f2010-08-23 03:27:58 +0000701 .owner = THIS_MODULE,
Jamal Hadi Salimc8315492018-08-12 09:34:51 -0400702 .act = tcf_csum_act,
Changli Gao0eec32f2010-08-23 03:27:58 +0000703 .dump = tcf_csum_dump,
Changli Gao0eec32f2010-08-23 03:27:58 +0000704 .init = tcf_csum_init,
Davide Caratti9c5f69b2018-01-22 18:14:32 +0100705 .cleanup = tcf_csum_cleanup,
WANG Congddf97cc2016-02-22 15:57:53 -0800706 .walk = tcf_csum_walker,
707 .lookup = tcf_csum_search,
Craig Dillabaugh29e6eee2018-05-01 10:17:43 -0400708 .get_fill_size = tcf_csum_get_fill_size,
WANG Conga85a9702016-07-25 16:09:41 -0700709 .size = sizeof(struct tcf_csum),
WANG Congddf97cc2016-02-22 15:57:53 -0800710};
711
712static __net_init int csum_init_net(struct net *net)
713{
714 struct tc_action_net *tn = net_generic(net, csum_net_id);
715
Cong Wangc7e460c2017-11-06 13:47:18 -0800716 return tc_action_net_init(tn, &act_csum_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800717}
718
Cong Wang039af9c2017-12-11 15:35:03 -0800719static void __net_exit csum_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800720{
Cong Wang039af9c2017-12-11 15:35:03 -0800721 tc_action_net_exit(net_list, csum_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800722}
723
724static struct pernet_operations csum_net_ops = {
725 .init = csum_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800726 .exit_batch = csum_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800727 .id = &csum_net_id,
728 .size = sizeof(struct tc_action_net),
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000729};
730
731MODULE_DESCRIPTION("Checksum updating actions");
732MODULE_LICENSE("GPL");
733
734static int __init csum_init_module(void)
735{
WANG Congddf97cc2016-02-22 15:57:53 -0800736 return tcf_register_action(&act_csum_ops, &csum_net_ops);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000737}
738
739static void __exit csum_cleanup_module(void)
740{
WANG Congddf97cc2016-02-22 15:57:53 -0800741 tcf_unregister_action(&act_csum_ops, &csum_net_ops);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000742}
743
744module_init(csum_init_module);
745module_exit(csum_cleanup_module);