Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Checksum updating actions |
| 4 | * |
| 5 | * Copyright (c) 2010 Gregoire Baron <baronchon@n7mm.org> |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 6 | */ |
| 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 Rothwell | 2436243 | 2010-08-22 20:31:14 -0700 | [diff] [blame] | 27 | #include <net/ip6_checksum.h> |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 28 | #include <net/sctp/checksum.h> |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 29 | |
| 30 | #include <net/act_api.h> |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 31 | #include <net/pkt_cls.h> |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 32 | |
| 33 | #include <linux/tc_act/tc_csum.h> |
| 34 | #include <net/tc_act/tc_csum.h> |
| 35 | |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 36 | static const struct nla_policy csum_policy[TCA_CSUM_MAX + 1] = { |
| 37 | [TCA_CSUM_PARMS] = { .len = sizeof(struct tc_csum), }, |
| 38 | }; |
| 39 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 40 | static unsigned int csum_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 41 | static struct tc_action_ops act_csum_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 42 | |
| 43 | static int tcf_csum_init(struct net *net, struct nlattr *nla, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 44 | struct nlattr *est, struct tc_action **a, int ovr, |
Davide Caratti | 85d0966 | 2019-03-20 14:59:59 +0100 | [diff] [blame] | 45 | int bind, bool rtnl_held, struct tcf_proto *tp, |
Vlad Buslov | 789871b | 2018-07-05 17:24:25 +0300 | [diff] [blame] | 46 | struct netlink_ext_ack *extack) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 47 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 48 | struct tc_action_net *tn = net_generic(net, csum_net_id); |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 49 | struct tcf_csum_params *params_new; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 50 | struct nlattr *tb[TCA_CSUM_MAX + 1]; |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 51 | struct tcf_chain *goto_ch = NULL; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 52 | struct tc_csum *parm; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 53 | struct tcf_csum *p; |
| 54 | int ret = 0, err; |
| 55 | |
| 56 | if (nla == NULL) |
| 57 | return -EINVAL; |
| 58 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 59 | err = nla_parse_nested_deprecated(tb, TCA_CSUM_MAX, nla, csum_policy, |
| 60 | NULL); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 61 | 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 Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 68 | err = tcf_idr_check_alloc(tn, &parm->index, a, bind); |
| 69 | if (!err) { |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 70 | ret = tcf_idr_create(tn, parm->index, est, a, |
Davide Caratti | f6052cf | 2018-01-22 18:14:31 +0100 | [diff] [blame] | 71 | &act_csum_ops, bind, true); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 72 | if (ret) { |
| 73 | tcf_idr_cleanup(tn, parm->index); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 74 | return ret; |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 75 | } |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 76 | ret = ACT_P_CREATED; |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 77 | } else if (err > 0) { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 78 | if (bind)/* dont override defaults */ |
| 79 | return 0; |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 80 | if (!ovr) { |
| 81 | tcf_idr_release(*a, bind); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 82 | return -EEXIST; |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 83 | } |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 84 | } else { |
| 85 | return err; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 88 | err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack); |
| 89 | if (err < 0) |
| 90 | goto release_idr; |
| 91 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 92 | p = to_tcf_csum(*a); |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 93 | |
| 94 | params_new = kzalloc(sizeof(*params_new), GFP_KERNEL); |
| 95 | if (unlikely(!params_new)) { |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 96 | err = -ENOMEM; |
| 97 | goto put_chain; |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 98 | } |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 99 | params_new->update_flags = parm->update_flags; |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 100 | |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 101 | spin_lock_bh(&p->tcf_lock); |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 102 | goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch); |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 103 | rcu_swap_protected(p->params, params_new, |
| 104 | lockdep_is_held(&p->tcf_lock)); |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 105 | spin_unlock_bh(&p->tcf_lock); |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 106 | |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 107 | if (goto_ch) |
| 108 | tcf_chain_put_by_act(goto_ch); |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 109 | if (params_new) |
| 110 | kfree_rcu(params_new, rcu); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 111 | |
| 112 | if (ret == ACT_P_CREATED) |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 113 | tcf_idr_insert(tn, *a); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 114 | |
| 115 | return ret; |
Davide Caratti | f5c29d8 | 2019-03-20 15:00:01 +0100 | [diff] [blame] | 116 | put_chain: |
| 117 | if (goto_ch) |
| 118 | tcf_chain_put_by_act(goto_ch); |
| 119 | release_idr: |
| 120 | tcf_idr_release(*a, bind); |
| 121 | return err; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 124 | /** |
| 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 | */ |
| 134 | static 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 Borkmann | 3697649 | 2016-02-19 23:05:25 +0100 | [diff] [blame] | 142 | skb_try_make_writable(skb, hl + ntkoff)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 143 | return NULL; |
| 144 | else |
| 145 | return (void *)(skb_network_header(skb) + ihl); |
| 146 | } |
| 147 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 148 | static int tcf_csum_ipv4_icmp(struct sk_buff *skb, unsigned int ihl, |
| 149 | unsigned int ipl) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 150 | { |
| 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 | |
| 166 | static 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 Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 184 | static int tcf_csum_ipv6_icmp(struct sk_buff *skb, unsigned int ihl, |
| 185 | unsigned int ipl) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 186 | { |
| 187 | struct icmp6hdr *icmp6h; |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 188 | const struct ipv6hdr *ip6h; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 189 | |
| 190 | icmp6h = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*icmp6h)); |
| 191 | if (icmp6h == NULL) |
| 192 | return 0; |
| 193 | |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 194 | ip6h = ipv6_hdr(skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 195 | 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 Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 206 | static int tcf_csum_ipv4_tcp(struct sk_buff *skb, unsigned int ihl, |
| 207 | unsigned int ipl) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 208 | { |
| 209 | struct tcphdr *tcph; |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 210 | const struct iphdr *iph; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 211 | |
Davide Caratti | add641e | 2017-03-23 10:39:40 +0100 | [diff] [blame] | 212 | if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) |
| 213 | return 1; |
| 214 | |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 215 | tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph)); |
| 216 | if (tcph == NULL) |
| 217 | return 0; |
| 218 | |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 219 | iph = ip_hdr(skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 220 | 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 Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 230 | static int tcf_csum_ipv6_tcp(struct sk_buff *skb, unsigned int ihl, |
| 231 | unsigned int ipl) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 232 | { |
| 233 | struct tcphdr *tcph; |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 234 | const struct ipv6hdr *ip6h; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 235 | |
Davide Caratti | add641e | 2017-03-23 10:39:40 +0100 | [diff] [blame] | 236 | if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) |
| 237 | return 1; |
| 238 | |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 239 | tcph = tcf_csum_skb_nextlayer(skb, ihl, ipl, sizeof(*tcph)); |
| 240 | if (tcph == NULL) |
| 241 | return 0; |
| 242 | |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 243 | ip6h = ipv6_hdr(skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 244 | 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 Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 255 | static int tcf_csum_ipv4_udp(struct sk_buff *skb, unsigned int ihl, |
| 256 | unsigned int ipl, int udplite) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 257 | { |
| 258 | struct udphdr *udph; |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 259 | const struct iphdr *iph; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 260 | u16 ul; |
| 261 | |
Willem de Bruijn | 0c19f846 | 2017-11-21 10:22:25 -0500 | [diff] [blame] | 262 | if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_UDP) |
| 263 | return 1; |
| 264 | |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 265 | /* |
| 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 268 | * 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 Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 276 | iph = ip_hdr(skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 277 | 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 286 | else if ((ul >= sizeof(*udph)) && (ul <= ipl - ihl)) |
| 287 | skb->csum = csum_partial(udph, ul, 0); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 288 | 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 | |
| 307 | ignore_obscure_skb: |
| 308 | return 1; |
| 309 | } |
| 310 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 311 | static int tcf_csum_ipv6_udp(struct sk_buff *skb, unsigned int ihl, |
| 312 | unsigned int ipl, int udplite) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 313 | { |
| 314 | struct udphdr *udph; |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 315 | const struct ipv6hdr *ip6h; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 316 | u16 ul; |
| 317 | |
Willem de Bruijn | 0c19f846 | 2017-11-21 10:22:25 -0500 | [diff] [blame] | 318 | if (skb_is_gso(skb) && skb_shinfo(skb)->gso_type & SKB_GSO_UDP) |
| 319 | return 1; |
| 320 | |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 321 | /* |
| 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 324 | * 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 Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 332 | ip6h = ipv6_hdr(skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 333 | 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 | |
| 362 | ignore_obscure_skb: |
| 363 | return 1; |
| 364 | } |
| 365 | |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 366 | static int tcf_csum_sctp(struct sk_buff *skb, unsigned int ihl, |
| 367 | unsigned int ipl) |
| 368 | { |
| 369 | struct sctphdr *sctph; |
| 370 | |
Daniel Axtens | 1dd27cd | 2018-03-09 14:06:09 +1100 | [diff] [blame] | 371 | if (skb_is_gso(skb) && skb_is_gso_sctp(skb)) |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 372 | 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 Caratti | dba0030 | 2017-05-18 15:44:40 +0200 | [diff] [blame] | 381 | skb->csum_not_inet = 0; |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 382 | |
| 383 | return 1; |
| 384 | } |
| 385 | |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 386 | static int tcf_csum_ipv4(struct sk_buff *skb, u32 update_flags) |
| 387 | { |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 388 | const struct iphdr *iph; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 389 | 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 Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 401 | if (!tcf_csum_ipv4_icmp(skb, iph->ihl * 4, |
| 402 | ntohs(iph->tot_len))) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 403 | goto fail; |
| 404 | break; |
| 405 | case IPPROTO_IGMP: |
| 406 | if (update_flags & TCA_CSUM_UPDATE_FLAG_IGMP) |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 407 | if (!tcf_csum_ipv4_igmp(skb, iph->ihl * 4, |
| 408 | ntohs(iph->tot_len))) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 409 | goto fail; |
| 410 | break; |
| 411 | case IPPROTO_TCP: |
| 412 | if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 413 | if (!tcf_csum_ipv4_tcp(skb, iph->ihl * 4, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 414 | ntohs(iph->tot_len))) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 415 | goto fail; |
| 416 | break; |
| 417 | case IPPROTO_UDP: |
| 418 | if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 419 | if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 420 | ntohs(iph->tot_len), 0)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 421 | goto fail; |
| 422 | break; |
| 423 | case IPPROTO_UDPLITE: |
| 424 | if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 425 | if (!tcf_csum_ipv4_udp(skb, iph->ihl * 4, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 426 | ntohs(iph->tot_len), 1)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 427 | goto fail; |
| 428 | break; |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 429 | 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | if (update_flags & TCA_CSUM_UPDATE_FLAG_IPV4HDR) { |
Daniel Borkmann | 3697649 | 2016-02-19 23:05:25 +0100 | [diff] [blame] | 437 | if (skb_try_make_writable(skb, sizeof(*iph) + ntkoff)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 438 | goto fail; |
| 439 | |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 440 | ip_send_check(ip_hdr(skb)); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | return 1; |
| 444 | |
| 445 | fail: |
| 446 | return 0; |
| 447 | } |
| 448 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 449 | static int tcf_csum_ipv6_hopopts(struct ipv6_opt_hdr *ip6xh, unsigned int ixhl, |
| 450 | unsigned int *pl) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 451 | { |
| 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 Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 459 | switch (xh[off]) { |
Eldad Zack | 1de5a71 | 2012-05-17 06:00:25 +0000 | [diff] [blame] | 460 | case IPV6_TLV_PAD1: |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 461 | 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 | |
| 481 | done: |
| 482 | return 1; |
| 483 | } |
| 484 | |
| 485 | static 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 Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 519 | ip6xh = (void *)(skb_network_header(skb) + hl); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 520 | 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 Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 528 | if (!tcf_csum_ipv6_icmp(skb, |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 529 | hl, pl + sizeof(*ip6h))) |
| 530 | goto fail; |
| 531 | goto done; |
| 532 | case IPPROTO_TCP: |
| 533 | if (update_flags & TCA_CSUM_UPDATE_FLAG_TCP) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 534 | if (!tcf_csum_ipv6_tcp(skb, |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 535 | hl, pl + sizeof(*ip6h))) |
| 536 | goto fail; |
| 537 | goto done; |
| 538 | case IPPROTO_UDP: |
| 539 | if (update_flags & TCA_CSUM_UPDATE_FLAG_UDP) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 540 | if (!tcf_csum_ipv6_udp(skb, hl, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 541 | pl + sizeof(*ip6h), 0)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 542 | goto fail; |
| 543 | goto done; |
| 544 | case IPPROTO_UDPLITE: |
| 545 | if (update_flags & TCA_CSUM_UPDATE_FLAG_UDPLITE) |
Eric Dumazet | d14a489 | 2013-04-12 11:07:47 -0700 | [diff] [blame] | 546 | if (!tcf_csum_ipv6_udp(skb, hl, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 547 | pl + sizeof(*ip6h), 1)) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 548 | goto fail; |
| 549 | goto done; |
Davide Caratti | c008b33 | 2017-01-09 11:24:21 +0100 | [diff] [blame] | 550 | 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 555 | default: |
| 556 | goto ignore_skb; |
| 557 | } |
| 558 | } while (pskb_may_pull(skb, hl + 1 + ntkoff)); |
| 559 | |
| 560 | done: |
| 561 | ignore_skb: |
| 562 | return 1; |
| 563 | |
| 564 | fail: |
| 565 | return 0; |
| 566 | } |
| 567 | |
Jamal Hadi Salim | c831549 | 2018-08-12 09:34:51 -0400 | [diff] [blame] | 568 | static int tcf_csum_act(struct sk_buff *skb, const struct tc_action *a, |
| 569 | struct tcf_result *res) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 570 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 571 | struct tcf_csum *p = to_tcf_csum(a); |
Eli Britstein | 2ecba2d | 2019-02-26 09:57:34 +0000 | [diff] [blame] | 572 | bool orig_vlan_tag_present = false; |
| 573 | unsigned int vlan_hdr_count = 0; |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 574 | struct tcf_csum_params *params; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 575 | u32 update_flags; |
Eli Britstein | 2ecba2d | 2019-02-26 09:57:34 +0000 | [diff] [blame] | 576 | __be16 protocol; |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 577 | int action; |
| 578 | |
Paolo Abeni | 7fd4b28 | 2018-07-30 14:30:43 +0200 | [diff] [blame] | 579 | params = rcu_dereference_bh(p->params); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 580 | |
Jamal Hadi Salim | 9c4a4e4 | 2016-06-06 06:32:53 -0400 | [diff] [blame] | 581 | tcf_lastuse_update(&p->tcf_tm); |
Davide Caratti | f6052cf | 2018-01-22 18:14:31 +0100 | [diff] [blame] | 582 | bstats_cpu_update(this_cpu_ptr(p->common.cpu_bstats), skb); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 583 | |
Davide Caratti | 11a245e | 2018-07-06 21:01:05 +0200 | [diff] [blame] | 584 | action = READ_ONCE(p->tcf_action); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 585 | if (unlikely(action == TC_ACT_SHOT)) |
Paolo Abeni | 7fd4b28 | 2018-07-30 14:30:43 +0200 | [diff] [blame] | 586 | goto drop; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 587 | |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 588 | update_flags = params->update_flags; |
Eli Britstein | 2ecba2d | 2019-02-26 09:57:34 +0000 | [diff] [blame] | 589 | protocol = tc_skb_protocol(skb); |
| 590 | again: |
| 591 | switch (protocol) { |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 592 | 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 Britstein | 2ecba2d | 2019-02-26 09:57:34 +0000 | [diff] [blame] | 600 | 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 | |
| 616 | out: |
| 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | return action; |
| 624 | |
| 625 | drop: |
Davide Caratti | f6052cf | 2018-01-22 18:14:31 +0100 | [diff] [blame] | 626 | qstats_drop_inc(this_cpu_ptr(p->common.cpu_qstats)); |
Eli Britstein | 2ecba2d | 2019-02-26 09:57:34 +0000 | [diff] [blame] | 627 | action = TC_ACT_SHOT; |
| 628 | goto out; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 629 | } |
| 630 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 631 | static int tcf_csum_dump(struct sk_buff *skb, struct tc_action *a, int bind, |
| 632 | int ref) |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 633 | { |
| 634 | unsigned char *b = skb_tail_pointer(skb); |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 635 | struct tcf_csum *p = to_tcf_csum(a); |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 636 | struct tcf_csum_params *params; |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 637 | struct tc_csum opt = { |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 638 | .index = p->tcf_index, |
Vlad Buslov | 036bb44 | 2018-07-05 17:24:24 +0300 | [diff] [blame] | 639 | .refcnt = refcount_read(&p->tcf_refcnt) - ref, |
| 640 | .bindcnt = atomic_read(&p->tcf_bindcnt) - bind, |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 641 | }; |
| 642 | struct tcf_t t; |
| 643 | |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 644 | spin_lock_bh(&p->tcf_lock); |
Vlad Buslov | b6a2b97 | 2018-08-10 20:51:42 +0300 | [diff] [blame] | 645 | params = rcu_dereference_protected(p->params, |
| 646 | lockdep_is_held(&p->tcf_lock)); |
| 647 | opt.action = p->tcf_action; |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 648 | opt.update_flags = params->update_flags; |
| 649 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 650 | if (nla_put(skb, TCA_CSUM_PARMS, sizeof(opt), &opt)) |
| 651 | goto nla_put_failure; |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 652 | |
| 653 | tcf_tm_dump(&t, &p->tcf_tm); |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 654 | if (nla_put_64bit(skb, TCA_CSUM_TM, sizeof(t), &t, TCA_CSUM_PAD)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 655 | goto nla_put_failure; |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 656 | spin_unlock_bh(&p->tcf_lock); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 657 | |
| 658 | return skb->len; |
| 659 | |
| 660 | nla_put_failure: |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 661 | spin_unlock_bh(&p->tcf_lock); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 662 | nlmsg_trim(skb, b); |
| 663 | return -1; |
| 664 | } |
| 665 | |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 666 | static 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 Caratti | aab378a | 2018-03-16 00:00:54 +0100 | [diff] [blame] | 672 | if (params) |
| 673 | kfree_rcu(params, rcu); |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 674 | } |
| 675 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 676 | static int tcf_csum_walker(struct net *net, struct sk_buff *skb, |
| 677 | struct netlink_callback *cb, int type, |
Alexander Aring | 4178010 | 2018-02-15 10:54:58 -0500 | [diff] [blame] | 678 | const struct tc_action_ops *ops, |
| 679 | struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 680 | { |
| 681 | struct tc_action_net *tn = net_generic(net, csum_net_id); |
| 682 | |
Alexander Aring | b362014 | 2018-02-15 10:54:59 -0500 | [diff] [blame] | 683 | return tcf_generic_walker(tn, skb, cb, type, ops, extack); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 684 | } |
| 685 | |
Cong Wang | f061b48 | 2018-08-29 10:15:35 -0700 | [diff] [blame] | 686 | static int tcf_csum_search(struct net *net, struct tc_action **a, u32 index) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 687 | { |
| 688 | struct tc_action_net *tn = net_generic(net, csum_net_id); |
| 689 | |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 690 | return tcf_idr_search(tn, a, index); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 691 | } |
| 692 | |
Craig Dillabaugh | 29e6eee | 2018-05-01 10:17:43 -0400 | [diff] [blame] | 693 | static 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 Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 698 | static struct tc_action_ops act_csum_ops = { |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 699 | .kind = "csum", |
Eli Cohen | eddd2cf | 2019-02-10 14:25:00 +0200 | [diff] [blame] | 700 | .id = TCA_ID_CSUM, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 701 | .owner = THIS_MODULE, |
Jamal Hadi Salim | c831549 | 2018-08-12 09:34:51 -0400 | [diff] [blame] | 702 | .act = tcf_csum_act, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 703 | .dump = tcf_csum_dump, |
Changli Gao | 0eec32f | 2010-08-23 03:27:58 +0000 | [diff] [blame] | 704 | .init = tcf_csum_init, |
Davide Caratti | 9c5f69b | 2018-01-22 18:14:32 +0100 | [diff] [blame] | 705 | .cleanup = tcf_csum_cleanup, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 706 | .walk = tcf_csum_walker, |
| 707 | .lookup = tcf_csum_search, |
Craig Dillabaugh | 29e6eee | 2018-05-01 10:17:43 -0400 | [diff] [blame] | 708 | .get_fill_size = tcf_csum_get_fill_size, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 709 | .size = sizeof(struct tcf_csum), |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 710 | }; |
| 711 | |
| 712 | static __net_init int csum_init_net(struct net *net) |
| 713 | { |
| 714 | struct tc_action_net *tn = net_generic(net, csum_net_id); |
| 715 | |
Cong Wang | c7e460c | 2017-11-06 13:47:18 -0800 | [diff] [blame] | 716 | return tc_action_net_init(tn, &act_csum_ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 717 | } |
| 718 | |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 719 | static void __net_exit csum_exit_net(struct list_head *net_list) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 720 | { |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 721 | tc_action_net_exit(net_list, csum_net_id); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | static struct pernet_operations csum_net_ops = { |
| 725 | .init = csum_init_net, |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 726 | .exit_batch = csum_exit_net, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 727 | .id = &csum_net_id, |
| 728 | .size = sizeof(struct tc_action_net), |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 729 | }; |
| 730 | |
| 731 | MODULE_DESCRIPTION("Checksum updating actions"); |
| 732 | MODULE_LICENSE("GPL"); |
| 733 | |
| 734 | static int __init csum_init_module(void) |
| 735 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 736 | return tcf_register_action(&act_csum_ops, &csum_net_ops); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | static void __exit csum_cleanup_module(void) |
| 740 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 741 | tcf_unregister_action(&act_csum_ops, &csum_net_ops); |
Grégoire Baron | eb4d406 | 2010-08-18 13:10:35 +0000 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | module_init(csum_init_module); |
| 745 | module_exit(csum_cleanup_module); |