blob: eeb3eb3ea9ebac1ab55ca9b34e3e6eeb72c1421e [file] [log] [blame]
Grégoire Baroneb4d4062010-08-18 13:10:35 +00001/*
2 * Checksum updating actions
3 *
4 * Copyright (c) 2010 Gregoire Baron <baronchon@n7mm.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 */
12
13#include <linux/types.h>
14#include <linux/init.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/spinlock.h>
18
19#include <linux/netlink.h>
20#include <net/netlink.h>
21#include <linux/rtnetlink.h>
22
23#include <linux/skbuff.h>
24
25#include <net/ip.h>
26#include <net/ipv6.h>
27#include <net/icmp.h>
28#include <linux/icmpv6.h>
29#include <linux/igmp.h>
30#include <net/tcp.h>
31#include <net/udp.h>
Stephen Rothwell24362432010-08-22 20:31:14 -070032#include <net/ip6_checksum.h>
Grégoire Baroneb4d4062010-08-18 13:10:35 +000033
34#include <net/act_api.h>
35
36#include <linux/tc_act/tc_csum.h>
37#include <net/tc_act/tc_csum.h>
38
39#define CSUM_TAB_MASK 15
Grégoire Baroneb4d4062010-08-18 13:10:35 +000040
41static const struct nla_policy csum_policy[TCA_CSUM_MAX + 1] = {
42 [TCA_CSUM_PARMS] = { .len = sizeof(struct tc_csum), },
43};
44
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000045static int tcf_csum_init(struct net *n, struct nlattr *nla, struct nlattr *est,
Grégoire Baroneb4d4062010-08-18 13:10:35 +000046 struct tc_action *a, int ovr, int bind)
47{
48 struct nlattr *tb[TCA_CSUM_MAX + 1];
49 struct tc_csum *parm;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000050 struct tcf_csum *p;
51 int ret = 0, err;
52
53 if (nla == NULL)
54 return -EINVAL;
55
Eric Dumazetcc7ec452011-01-19 19:26:56 +000056 err = nla_parse_nested(tb, TCA_CSUM_MAX, nla, csum_policy);
Grégoire Baroneb4d4062010-08-18 13:10:35 +000057 if (err < 0)
58 return err;
59
60 if (tb[TCA_CSUM_PARMS] == NULL)
61 return -EINVAL;
62 parm = nla_data(tb[TCA_CSUM_PARMS]);
63
WANG Cong86062032014-02-11 17:07:31 -080064 if (!tcf_hash_check(parm->index, a, bind)) {
Eric Dumazet519c8182015-07-06 05:18:04 -070065 ret = tcf_hash_create(parm->index, est, a, sizeof(*p),
66 bind, false);
WANG Cong86062032014-02-11 17:07:31 -080067 if (ret)
68 return ret;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000069 ret = ACT_P_CREATED;
70 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050071 if (bind)/* dont override defaults */
72 return 0;
WANG Cong86062032014-02-11 17:07:31 -080073 tcf_hash_release(a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050074 if (!ovr)
Grégoire Baroneb4d4062010-08-18 13:10:35 +000075 return -EEXIST;
Grégoire Baroneb4d4062010-08-18 13:10:35 +000076 }
77
WANG Cong86062032014-02-11 17:07:31 -080078 p = to_tcf_csum(a);
Grégoire Baroneb4d4062010-08-18 13:10:35 +000079 spin_lock_bh(&p->tcf_lock);
80 p->tcf_action = parm->action;
81 p->update_flags = parm->update_flags;
82 spin_unlock_bh(&p->tcf_lock);
83
84 if (ret == ACT_P_CREATED)
WANG Cong86062032014-02-11 17:07:31 -080085 tcf_hash_insert(a);
Grégoire Baroneb4d4062010-08-18 13:10:35 +000086
87 return ret;
88}
89
Grégoire Baroneb4d4062010-08-18 13:10:35 +000090/**
91 * tcf_csum_skb_nextlayer - Get next layer pointer
92 * @skb: sk_buff to use
93 * @ihl: previous summed headers length
94 * @ipl: complete packet length
95 * @jhl: next header length
96 *
97 * Check the expected next layer availability in the specified sk_buff.
98 * Return the next layer pointer if pass, NULL otherwise.
99 */
100static void *tcf_csum_skb_nextlayer(struct sk_buff *skb,
101 unsigned int ihl, unsigned int ipl,
102 unsigned int jhl)
103{
104 int ntkoff = skb_network_offset(skb);
105 int hl = ihl + jhl;
106
107 if (!pskb_may_pull(skb, ipl + ntkoff) || (ipl < hl) ||
Daniel Borkmann36976492016-02-19 23:05:25 +0100108 skb_try_make_writable(skb, hl + ntkoff))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000109 return NULL;
110 else
111 return (void *)(skb_network_header(skb) + ihl);
112}
113
114static int tcf_csum_ipv4_icmp(struct sk_buff *skb,
115 unsigned int ihl, unsigned int ipl)
116{
117 struct icmphdr *icmph;
118
119 icmph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*icmph));
120 if (icmph == NULL)
121 return 0;
122
123 icmph->checksum = 0;
124 skb->csum = csum_partial(icmph, ipl - ihl, 0);
125 icmph->checksum = csum_fold(skb->csum);
126
127 skb->ip_summed = CHECKSUM_NONE;
128
129 return 1;
130}
131
132static int tcf_csum_ipv4_igmp(struct sk_buff *skb,
133 unsigned int ihl, unsigned int ipl)
134{
135 struct igmphdr *igmph;
136
137 igmph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*igmph));
138 if (igmph == NULL)
139 return 0;
140
141 igmph->csum = 0;
142 skb->csum = csum_partial(igmph, ipl - ihl, 0);
143 igmph->csum = csum_fold(skb->csum);
144
145 skb->ip_summed = CHECKSUM_NONE;
146
147 return 1;
148}
149
Eric Dumazetd14a4892013-04-12 11:07:47 -0700150static int tcf_csum_ipv6_icmp(struct sk_buff *skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000151 unsigned int ihl, unsigned int ipl)
152{
153 struct icmp6hdr *icmp6h;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700154 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000155
156 icmp6h = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*icmp6h));
157 if (icmp6h == NULL)
158 return 0;
159
Eric Dumazetd14a4892013-04-12 11:07:47 -0700160 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000161 icmp6h->icmp6_cksum = 0;
162 skb->csum = csum_partial(icmp6h, ipl - ihl, 0);
163 icmp6h->icmp6_cksum = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
164 ipl - ihl, IPPROTO_ICMPV6,
165 skb->csum);
166
167 skb->ip_summed = CHECKSUM_NONE;
168
169 return 1;
170}
171
Eric Dumazetd14a4892013-04-12 11:07:47 -0700172static int tcf_csum_ipv4_tcp(struct sk_buff *skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000173 unsigned int ihl, unsigned int ipl)
174{
175 struct tcphdr *tcph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700176 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000177
178 tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph));
179 if (tcph == NULL)
180 return 0;
181
Eric Dumazetd14a4892013-04-12 11:07:47 -0700182 iph = ip_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000183 tcph->check = 0;
184 skb->csum = csum_partial(tcph, ipl - ihl, 0);
185 tcph->check = tcp_v4_check(ipl - ihl,
186 iph->saddr, iph->daddr, skb->csum);
187
188 skb->ip_summed = CHECKSUM_NONE;
189
190 return 1;
191}
192
Eric Dumazetd14a4892013-04-12 11:07:47 -0700193static int tcf_csum_ipv6_tcp(struct sk_buff *skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000194 unsigned int ihl, unsigned int ipl)
195{
196 struct tcphdr *tcph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700197 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000198
199 tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph));
200 if (tcph == NULL)
201 return 0;
202
Eric Dumazetd14a4892013-04-12 11:07:47 -0700203 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000204 tcph->check = 0;
205 skb->csum = csum_partial(tcph, ipl - ihl, 0);
206 tcph->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
207 ipl - ihl, IPPROTO_TCP,
208 skb->csum);
209
210 skb->ip_summed = CHECKSUM_NONE;
211
212 return 1;
213}
214
Eric Dumazetd14a4892013-04-12 11:07:47 -0700215static int tcf_csum_ipv4_udp(struct sk_buff *skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000216 unsigned int ihl, unsigned int ipl, int udplite)
217{
218 struct udphdr *udph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700219 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000220 u16 ul;
221
Changli Gao0eec32f2010-08-23 03:27:58 +0000222 /*
223 * Support both UDP and UDPLITE checksum algorithms, Don't use
224 * udph->len to get the real length without any protocol check,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000225 * UDPLITE uses udph->len for another thing,
226 * Use iph->tot_len, or just ipl.
227 */
228
229 udph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*udph));
230 if (udph == NULL)
231 return 0;
232
Eric Dumazetd14a4892013-04-12 11:07:47 -0700233 iph = ip_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000234 ul = ntohs(udph->len);
235
236 if (udplite || udph->check) {
237
238 udph->check = 0;
239
240 if (udplite) {
241 if (ul == 0)
242 skb->csum = csum_partial(udph, ipl - ihl, 0);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000243 else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl))
244 skb->csum = csum_partial(udph, ul, 0);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000245 else
246 goto ignore_obscure_skb;
247 } else {
248 if (ul != ipl - ihl)
249 goto ignore_obscure_skb;
250
251 skb->csum = csum_partial(udph, ul, 0);
252 }
253
254 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
255 ul, iph->protocol,
256 skb->csum);
257
258 if (!udph->check)
259 udph->check = CSUM_MANGLED_0;
260 }
261
262 skb->ip_summed = CHECKSUM_NONE;
263
264ignore_obscure_skb:
265 return 1;
266}
267
Eric Dumazetd14a4892013-04-12 11:07:47 -0700268static int tcf_csum_ipv6_udp(struct sk_buff *skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000269 unsigned int ihl, unsigned int ipl, int udplite)
270{
271 struct udphdr *udph;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700272 const struct ipv6hdr *ip6h;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000273 u16 ul;
274
Changli Gao0eec32f2010-08-23 03:27:58 +0000275 /*
276 * Support both UDP and UDPLITE checksum algorithms, Don't use
277 * udph->len to get the real length without any protocol check,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000278 * UDPLITE uses udph->len for another thing,
279 * Use ip6h->payload_len + sizeof(*ip6h) ... , or just ipl.
280 */
281
282 udph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*udph));
283 if (udph == NULL)
284 return 0;
285
Eric Dumazetd14a4892013-04-12 11:07:47 -0700286 ip6h = ipv6_hdr(skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000287 ul = ntohs(udph->len);
288
289 udph->check = 0;
290
291 if (udplite) {
292 if (ul == 0)
293 skb->csum = csum_partial(udph, ipl - ihl, 0);
294
295 else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl))
296 skb->csum = csum_partial(udph, ul, 0);
297
298 else
299 goto ignore_obscure_skb;
300 } else {
301 if (ul != ipl - ihl)
302 goto ignore_obscure_skb;
303
304 skb->csum = csum_partial(udph, ul, 0);
305 }
306
307 udph->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr, ul,
308 udplite ? IPPROTO_UDPLITE : IPPROTO_UDP,
309 skb->csum);
310
311 if (!udph->check)
312 udph->check = CSUM_MANGLED_0;
313
314 skb->ip_summed = CHECKSUM_NONE;
315
316ignore_obscure_skb:
317 return 1;
318}
319
320static int tcf_csum_ipv4(struct sk_buff *skb, u32 update_flags)
321{
Eric Dumazetd14a4892013-04-12 11:07:47 -0700322 const struct iphdr *iph;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000323 int ntkoff;
324
325 ntkoff = skb_network_offset(skb);
326
327 if (!pskb_may_pull(skb, sizeof(*iph) + ntkoff))
328 goto fail;
329
330 iph = ip_hdr(skb);
331
332 switch (iph->frag_off & htons(IP_OFFSET) ? 0 : iph->protocol) {
333 case IPPROTO_ICMP:
334 if (update_flags & TCA_CSUM_UPDATE_FLAG_ICMP)
Changli Gao0eec32f2010-08-23 03:27:58 +0000335 if (!tcf_csum_ipv4_icmp(skb, iph->ihl * 4,
336 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000337 goto fail;
338 break;
339 case IPPROTO_IGMP:
340 if (update_flags & TCA_CSUM_UPDATE_FLAG_IGMP)
Changli Gao0eec32f2010-08-23 03:27:58 +0000341 if (!tcf_csum_ipv4_igmp(skb, iph->ihl * 4,
342 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000343 goto fail;
344 break;
345 case IPPROTO_TCP:
346 if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700347 if (!tcf_csum_ipv4_tcp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000348 ntohs(iph->tot_len)))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000349 goto fail;
350 break;
351 case IPPROTO_UDP:
352 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700353 if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000354 ntohs(iph->tot_len), 0))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000355 goto fail;
356 break;
357 case IPPROTO_UDPLITE:
358 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700359 if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4,
Changli Gao0eec32f2010-08-23 03:27:58 +0000360 ntohs(iph->tot_len), 1))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000361 goto fail;
362 break;
363 }
364
365 if (update_flags & TCA_CSUM_UPDATE_FLAG_IPV4HDR) {
Daniel Borkmann36976492016-02-19 23:05:25 +0100366 if (skb_try_make_writable(skb, sizeof(*iph) + ntkoff))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000367 goto fail;
368
Eric Dumazetd14a4892013-04-12 11:07:47 -0700369 ip_send_check(ip_hdr(skb));
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000370 }
371
372 return 1;
373
374fail:
375 return 0;
376}
377
378static int tcf_csum_ipv6_hopopts(struct ipv6_opt_hdr *ip6xh,
Changli Gao0eec32f2010-08-23 03:27:58 +0000379 unsigned int ixhl, unsigned int *pl)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000380{
381 int off, len, optlen;
382 unsigned char *xh = (void *)ip6xh;
383
384 off = sizeof(*ip6xh);
385 len = ixhl - off;
386
387 while (len > 1) {
Changli Gao0eec32f2010-08-23 03:27:58 +0000388 switch (xh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000389 case IPV6_TLV_PAD1:
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000390 optlen = 1;
391 break;
392 case IPV6_TLV_JUMBO:
393 optlen = xh[off + 1] + 2;
394 if (optlen != 6 || len < 6 || (off & 3) != 2)
395 /* wrong jumbo option length/alignment */
396 return 0;
397 *pl = ntohl(*(__be32 *)(xh + off + 2));
398 goto done;
399 default:
400 optlen = xh[off + 1] + 2;
401 if (optlen > len)
402 /* ignore obscure options */
403 goto done;
404 break;
405 }
406 off += optlen;
407 len -= optlen;
408 }
409
410done:
411 return 1;
412}
413
414static int tcf_csum_ipv6(struct sk_buff *skb, u32 update_flags)
415{
416 struct ipv6hdr *ip6h;
417 struct ipv6_opt_hdr *ip6xh;
418 unsigned int hl, ixhl;
419 unsigned int pl;
420 int ntkoff;
421 u8 nexthdr;
422
423 ntkoff = skb_network_offset(skb);
424
425 hl = sizeof(*ip6h);
426
427 if (!pskb_may_pull(skb, hl + ntkoff))
428 goto fail;
429
430 ip6h = ipv6_hdr(skb);
431
432 pl = ntohs(ip6h->payload_len);
433 nexthdr = ip6h->nexthdr;
434
435 do {
436 switch (nexthdr) {
437 case NEXTHDR_FRAGMENT:
438 goto ignore_skb;
439 case NEXTHDR_ROUTING:
440 case NEXTHDR_HOP:
441 case NEXTHDR_DEST:
442 if (!pskb_may_pull(skb, hl + sizeof(*ip6xh) + ntkoff))
443 goto fail;
444 ip6xh = (void *)(skb_network_header(skb) + hl);
445 ixhl = ipv6_optlen(ip6xh);
446 if (!pskb_may_pull(skb, hl + ixhl + ntkoff))
447 goto fail;
Eric Dumazetd14a4892013-04-12 11:07:47 -0700448 ip6xh = (void *)(skb_network_header(skb) + hl);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000449 if ((nexthdr == NEXTHDR_HOP) &&
450 !(tcf_csum_ipv6_hopopts(ip6xh, ixhl, &pl)))
451 goto fail;
452 nexthdr = ip6xh->nexthdr;
453 hl += ixhl;
454 break;
455 case IPPROTO_ICMPV6:
456 if (update_flags & TCA_CSUM_UPDATE_FLAG_ICMP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700457 if (!tcf_csum_ipv6_icmp(skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000458 hl, pl + sizeof(*ip6h)))
459 goto fail;
460 goto done;
461 case IPPROTO_TCP:
462 if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700463 if (!tcf_csum_ipv6_tcp(skb,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000464 hl, pl + sizeof(*ip6h)))
465 goto fail;
466 goto done;
467 case IPPROTO_UDP:
468 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700469 if (!tcf_csum_ipv6_udp(skb, hl,
Changli Gao0eec32f2010-08-23 03:27:58 +0000470 pl + sizeof(*ip6h), 0))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000471 goto fail;
472 goto done;
473 case IPPROTO_UDPLITE:
474 if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE)
Eric Dumazetd14a4892013-04-12 11:07:47 -0700475 if (!tcf_csum_ipv6_udp(skb, hl,
Changli Gao0eec32f2010-08-23 03:27:58 +0000476 pl + sizeof(*ip6h), 1))
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000477 goto fail;
478 goto done;
479 default:
480 goto ignore_skb;
481 }
482 } while (pskb_may_pull(skb, hl + 1 + ntkoff));
483
484done:
485ignore_skb:
486 return 1;
487
488fail:
489 return 0;
490}
491
492static int tcf_csum(struct sk_buff *skb,
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000493 const struct tc_action *a, struct tcf_result *res)
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000494{
495 struct tcf_csum *p = a->priv;
496 int action;
497 u32 update_flags;
498
499 spin_lock(&p->tcf_lock);
500 p->tcf_tm.lastuse = jiffies;
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000501 bstats_update(&p->tcf_bstats, skb);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000502 action = p->tcf_action;
503 update_flags = p->update_flags;
504 spin_unlock(&p->tcf_lock);
505
506 if (unlikely(action == TC_ACT_SHOT))
507 goto drop;
508
Jiri Pirkod8b96052015-01-13 17:13:43 +0100509 switch (tc_skb_protocol(skb)) {
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000510 case cpu_to_be16(ETH_P_IP):
511 if (!tcf_csum_ipv4(skb, update_flags))
512 goto drop;
513 break;
514 case cpu_to_be16(ETH_P_IPV6):
515 if (!tcf_csum_ipv6(skb, update_flags))
516 goto drop;
517 break;
518 }
519
520 return action;
521
522drop:
523 spin_lock(&p->tcf_lock);
524 p->tcf_qstats.drops++;
525 spin_unlock(&p->tcf_lock);
526 return TC_ACT_SHOT;
527}
528
529static int tcf_csum_dump(struct sk_buff *skb,
530 struct tc_action *a, int bind, int ref)
531{
532 unsigned char *b = skb_tail_pointer(skb);
533 struct tcf_csum *p = a->priv;
534 struct tc_csum opt = {
535 .update_flags = p->update_flags,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000536 .index = p->tcf_index,
537 .action = p->tcf_action,
538 .refcnt = p->tcf_refcnt - ref,
539 .bindcnt = p->tcf_bindcnt - bind,
540 };
541 struct tcf_t t;
542
David S. Miller1b34ec42012-03-29 05:11:39 -0400543 if (nla_put(skb, TCA_CSUM_PARMS, sizeof(opt), &opt))
544 goto nla_put_failure;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000545 t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install);
546 t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse);
547 t.expires = jiffies_to_clock_t(p->tcf_tm.expires);
David S. Miller1b34ec42012-03-29 05:11:39 -0400548 if (nla_put(skb, TCA_CSUM_TM, sizeof(t), &t))
549 goto nla_put_failure;
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000550
551 return skb->len;
552
553nla_put_failure:
554 nlmsg_trim(skb, b);
555 return -1;
556}
557
558static struct tc_action_ops act_csum_ops = {
Changli Gao0eec32f2010-08-23 03:27:58 +0000559 .kind = "csum",
Changli Gao0eec32f2010-08-23 03:27:58 +0000560 .type = TCA_ACT_CSUM,
Changli Gao0eec32f2010-08-23 03:27:58 +0000561 .owner = THIS_MODULE,
562 .act = tcf_csum,
563 .dump = tcf_csum_dump,
Changli Gao0eec32f2010-08-23 03:27:58 +0000564 .init = tcf_csum_init,
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000565};
566
567MODULE_DESCRIPTION("Checksum updating actions");
568MODULE_LICENSE("GPL");
569
570static int __init csum_init_module(void)
571{
WANG Cong4f1e9d82014-02-11 17:07:33 -0800572 return tcf_register_action(&act_csum_ops, CSUM_TAB_MASK);
Grégoire Baroneb4d4062010-08-18 13:10:35 +0000573}
574
575static void __exit csum_cleanup_module(void)
576{
577 tcf_unregister_action(&act_csum_ops);
578}
579
580module_init(csum_init_module);
581module_exit(csum_cleanup_module);