Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/cls_u32.c Ugly (or Universal) 32bit key Packet Classifier. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 10 | * |
| 11 | * The filters are packed to hash tables of key nodes |
| 12 | * with a set of 32bit key/mask pairs at every node. |
| 13 | * Nodes reference next level hash tables etc. |
| 14 | * |
| 15 | * This scheme is the best universal classifier I managed to |
| 16 | * invent; it is not super-fast, but it is not slow (provided you |
| 17 | * program it correctly), and general enough. And its relative |
| 18 | * speed grows as the number of rules becomes larger. |
| 19 | * |
| 20 | * It seems that it represents the best middle point between |
| 21 | * speed and manageability both by human and by machine. |
| 22 | * |
| 23 | * It is especially useful for link sharing combined with QoS; |
| 24 | * pure RSVP doesn't need such a general approach and can use |
| 25 | * much simpler (and faster) schemes, sort of cls_rsvp.c. |
| 26 | * |
| 27 | * JHS: We should remove the CONFIG_NET_CLS_IND from here |
| 28 | * eventually when the meta match extension is made available |
| 29 | * |
| 30 | * nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro> |
| 31 | */ |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/types.h> |
| 36 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/errno.h> |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 39 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/rtnetlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/skbuff.h> |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 42 | #include <linux/bitmap.h> |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 43 | #include <linux/netdevice.h> |
| 44 | #include <linux/hash.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 45 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <net/act_api.h> |
| 47 | #include <net/pkt_cls.h> |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 48 | #include <linux/idr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 50 | struct tc_u_knode { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 51 | struct tc_u_knode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | u32 handle; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 53 | struct tc_u_hnode __rcu *ht_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | struct tcf_exts exts; |
| 55 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 56 | int ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #endif |
| 58 | u8 fshift; |
| 59 | struct tcf_result res; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 60 | struct tc_u_hnode __rcu *ht_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 62 | struct tc_u32_pcnt __percpu *pf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 64 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 66 | u32 val; |
| 67 | u32 mask; |
| 68 | u32 __percpu *pcpu_success; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #endif |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 70 | struct tcf_proto *tp; |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 71 | union { |
| 72 | struct work_struct work; |
| 73 | struct rcu_head rcu; |
| 74 | }; |
John Fastabend | 4e2840e | 2014-09-17 11:11:46 -0700 | [diff] [blame] | 75 | /* The 'sel' field MUST be the last field in structure to allow for |
| 76 | * tc_u32_keys allocated at end of structure. |
| 77 | */ |
| 78 | struct tc_u32_sel sel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | }; |
| 80 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 81 | struct tc_u_hnode { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 82 | struct tc_u_hnode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | u32 handle; |
| 84 | u32 prio; |
| 85 | struct tc_u_common *tp_c; |
| 86 | int refcnt; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 87 | unsigned int divisor; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 88 | struct idr handle_idr; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 89 | struct rcu_head rcu; |
Jakub Kicinski | f40fe58 | 2018-01-24 12:54:22 -0800 | [diff] [blame] | 90 | u32 flags; |
WANG Cong | 5778d39 | 2015-03-09 17:03:40 -0700 | [diff] [blame] | 91 | /* The 'ht' field MUST be the last field in structure to allow for |
| 92 | * more entries allocated at end of structure. |
| 93 | */ |
| 94 | struct tc_u_knode __rcu *ht[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | }; |
| 96 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 97 | struct tc_u_common { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 98 | struct tc_u_hnode __rcu *hlist; |
Jiri Pirko | 7fa9d97 | 2017-10-13 14:01:02 +0200 | [diff] [blame] | 99 | struct tcf_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | int refcnt; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 101 | struct idr handle_idr; |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 102 | struct hlist_node hnode; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 103 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 106 | static inline unsigned int u32_hash_fold(__be32 key, |
| 107 | const struct tc_u32_sel *sel, |
| 108 | u8 fshift) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 110 | unsigned int h = ntohl(key & sel->hmask) >> fshift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | return h; |
| 113 | } |
| 114 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 115 | static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
| 116 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
| 118 | struct { |
| 119 | struct tc_u_knode *knode; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 120 | unsigned int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } stack[TC_U32_MAXDEPTH]; |
| 122 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 123 | struct tc_u_hnode *ht = rcu_dereference_bh(tp->root); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 124 | unsigned int off = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct tc_u_knode *n; |
| 126 | int sdepth = 0; |
| 127 | int off2 = 0; |
| 128 | int sel = 0; |
| 129 | #ifdef CONFIG_CLS_U32_PERF |
| 130 | int j; |
| 131 | #endif |
| 132 | int i, r; |
| 133 | |
| 134 | next_ht: |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 135 | n = rcu_dereference_bh(ht->ht[sel]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | next_knode: |
| 138 | if (n) { |
| 139 | struct tc_u32_key *key = n->sel.keys; |
| 140 | |
| 141 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 142 | __this_cpu_inc(n->pf->rcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | j = 0; |
| 144 | #endif |
| 145 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 146 | if (tc_skip_sw(n->flags)) { |
| 147 | n = rcu_dereference_bh(n->next); |
| 148 | goto next_knode; |
| 149 | } |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 152 | if ((skb->mark & n->mask) != n->val) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 153 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | goto next_knode; |
| 155 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 156 | __this_cpu_inc(*n->pcpu_success); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | #endif |
| 159 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 160 | for (i = n->sel.nkeys; i > 0; i--, key++) { |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 161 | int toff = off + key->off + (off2 & key->offmask); |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 162 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Dan Carpenter | 4e18b3e | 2010-10-04 02:28:36 +0000 | [diff] [blame] | 164 | if (skb_headroom(skb) + toff > INT_MAX) |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 165 | goto out; |
| 166 | |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 167 | data = skb_header_pointer(skb, toff, 4, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 168 | if (!data) |
| 169 | goto out; |
| 170 | if ((*data ^ key->val) & key->mask) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 171 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | goto next_knode; |
| 173 | } |
| 174 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 175 | __this_cpu_inc(n->pf->kcnts[j]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | j++; |
| 177 | #endif |
| 178 | } |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 179 | |
| 180 | ht = rcu_dereference_bh(n->ht_down); |
| 181 | if (!ht) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | check_terminal: |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 183 | if (n->sel.flags & TC_U32_TERMINAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | *res = n->res; |
| 186 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 187 | if (!tcf_match_indev(skb, n->ifindex)) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 188 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | goto next_knode; |
| 190 | } |
| 191 | #endif |
| 192 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 193 | __this_cpu_inc(n->pf->rhit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | #endif |
| 195 | r = tcf_exts_exec(skb, &n->exts, res); |
| 196 | if (r < 0) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 197 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | goto next_knode; |
| 199 | } |
| 200 | |
| 201 | return r; |
| 202 | } |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 203 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | goto next_knode; |
| 205 | } |
| 206 | |
| 207 | /* PUSH */ |
| 208 | if (sdepth >= TC_U32_MAXDEPTH) |
| 209 | goto deadloop; |
| 210 | stack[sdepth].knode = n; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 211 | stack[sdepth].off = off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | sdepth++; |
| 213 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 214 | ht = rcu_dereference_bh(n->ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | sel = 0; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 216 | if (ht->divisor) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 217 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 219 | data = skb_header_pointer(skb, off + n->sel.hoff, 4, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 220 | &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 221 | if (!data) |
| 222 | goto out; |
| 223 | sel = ht->divisor & u32_hash_fold(*data, &n->sel, |
| 224 | n->fshift); |
| 225 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 226 | if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | goto next_ht; |
| 228 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 229 | if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | off2 = n->sel.off + 3; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 231 | if (n->sel.flags & TC_U32_VAROFFSET) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 232 | __be16 *data, hdata; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 233 | |
| 234 | data = skb_header_pointer(skb, |
| 235 | off + n->sel.offoff, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 236 | 2, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 237 | if (!data) |
| 238 | goto out; |
| 239 | off2 += ntohs(n->sel.offmask & *data) >> |
| 240 | n->sel.offshift; |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | off2 &= ~3; |
| 243 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 244 | if (n->sel.flags & TC_U32_EAT) { |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 245 | off += off2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | off2 = 0; |
| 247 | } |
| 248 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 249 | if (off < skb->len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | goto next_ht; |
| 251 | } |
| 252 | |
| 253 | /* POP */ |
| 254 | if (sdepth--) { |
| 255 | n = stack[sdepth].knode; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 256 | ht = rcu_dereference_bh(n->ht_up); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 257 | off = stack[sdepth].off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | goto check_terminal; |
| 259 | } |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 260 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return -1; |
| 262 | |
| 263 | deadloop: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 264 | net_warn_ratelimited("cls_u32: dead loop\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | return -1; |
| 266 | } |
| 267 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 268 | static struct tc_u_hnode *u32_lookup_ht(struct tc_u_common *tp_c, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
| 270 | struct tc_u_hnode *ht; |
| 271 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 272 | for (ht = rtnl_dereference(tp_c->hlist); |
| 273 | ht; |
| 274 | ht = rtnl_dereference(ht->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | if (ht->handle == handle) |
| 276 | break; |
| 277 | |
| 278 | return ht; |
| 279 | } |
| 280 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 281 | static struct tc_u_knode *u32_lookup_key(struct tc_u_hnode *ht, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 283 | unsigned int sel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | struct tc_u_knode *n = NULL; |
| 285 | |
| 286 | sel = TC_U32_HASH(handle); |
| 287 | if (sel > ht->divisor) |
| 288 | goto out; |
| 289 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 290 | for (n = rtnl_dereference(ht->ht[sel]); |
| 291 | n; |
| 292 | n = rtnl_dereference(n->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | if (n->handle == handle) |
| 294 | break; |
| 295 | out: |
| 296 | return n; |
| 297 | } |
| 298 | |
| 299 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 300 | static void *u32_get(struct tcf_proto *tp, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
| 302 | struct tc_u_hnode *ht; |
| 303 | struct tc_u_common *tp_c = tp->data; |
| 304 | |
| 305 | if (TC_U32_HTID(handle) == TC_U32_ROOT) |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 306 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | else |
| 308 | ht = u32_lookup_ht(tp_c, TC_U32_HTID(handle)); |
| 309 | |
| 310 | if (!ht) |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 311 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | if (TC_U32_KEY(handle) == 0) |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 314 | return ht; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 316 | return u32_lookup_key(ht, handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame^] | 319 | /* Protected by rtnl lock */ |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 320 | static u32 gen_new_htid(struct tc_u_common *tp_c, struct tc_u_hnode *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | { |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame^] | 322 | int id = idr_alloc_cyclic(&tp_c->handle_idr, ptr, 1, 0x7FF, GFP_KERNEL); |
| 323 | if (id < 0) |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 324 | return 0; |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame^] | 325 | return (id | 0x800U) << 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 328 | static struct hlist_head *tc_u_common_hash; |
| 329 | |
| 330 | #define U32_HASH_SHIFT 10 |
| 331 | #define U32_HASH_SIZE (1 << U32_HASH_SHIFT) |
| 332 | |
| 333 | static unsigned int tc_u_hash(const struct tcf_proto *tp) |
| 334 | { |
Arnd Bergmann | d18b4b3 | 2017-10-18 10:33:37 +0200 | [diff] [blame] | 335 | return hash_ptr(tp->chain->block, U32_HASH_SHIFT); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | static struct tc_u_common *tc_u_common_find(const struct tcf_proto *tp) |
| 339 | { |
| 340 | struct tc_u_common *tc; |
| 341 | unsigned int h; |
| 342 | |
| 343 | h = tc_u_hash(tp); |
| 344 | hlist_for_each_entry(tc, &tc_u_common_hash[h], hnode) { |
Jiri Pirko | 7fa9d97 | 2017-10-13 14:01:02 +0200 | [diff] [blame] | 345 | if (tc->block == tp->chain->block) |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 346 | return tc; |
| 347 | } |
| 348 | return NULL; |
| 349 | } |
| 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | static int u32_init(struct tcf_proto *tp) |
| 352 | { |
| 353 | struct tc_u_hnode *root_ht; |
| 354 | struct tc_u_common *tp_c; |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 355 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 357 | tp_c = tc_u_common_find(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 359 | root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (root_ht == NULL) |
| 361 | return -ENOBUFS; |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | root_ht->refcnt++; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 364 | root_ht->handle = tp_c ? gen_new_htid(tp_c, root_ht) : 0x80000000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | root_ht->prio = tp->prio; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 366 | idr_init(&root_ht->handle_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | if (tp_c == NULL) { |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 369 | tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | if (tp_c == NULL) { |
| 371 | kfree(root_ht); |
| 372 | return -ENOBUFS; |
| 373 | } |
Jiri Pirko | 7fa9d97 | 2017-10-13 14:01:02 +0200 | [diff] [blame] | 374 | tp_c->block = tp->chain->block; |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 375 | INIT_HLIST_NODE(&tp_c->hnode); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 376 | idr_init(&tp_c->handle_idr); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 377 | |
| 378 | h = tc_u_hash(tp); |
| 379 | hlist_add_head(&tp_c->hnode, &tc_u_common_hash[h]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | tp_c->refcnt++; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 383 | RCU_INIT_POINTER(root_ht->next, tp_c->hlist); |
| 384 | rcu_assign_pointer(tp_c->hlist, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | root_ht->tp_c = tp_c; |
| 386 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 387 | rcu_assign_pointer(tp->root, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | tp->data = tp_c; |
| 389 | return 0; |
| 390 | } |
| 391 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 392 | static int u32_destroy_key(struct tcf_proto *tp, struct tc_u_knode *n, |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 393 | bool free_pf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 395 | tcf_exts_destroy(&n->exts); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 396 | tcf_exts_put_net(&n->exts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | if (n->ht_down) |
| 398 | n->ht_down->refcnt--; |
| 399 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 400 | if (free_pf) |
| 401 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | #endif |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 403 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 404 | if (free_pf) |
| 405 | free_percpu(n->pcpu_success); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 406 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | kfree(n); |
| 408 | return 0; |
| 409 | } |
| 410 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 411 | /* u32_delete_key_rcu should be called when free'ing a copied |
| 412 | * version of a tc_u_knode obtained from u32_init_knode(). When |
| 413 | * copies are obtained from u32_init_knode() the statistics are |
| 414 | * shared between the old and new copies to allow readers to |
| 415 | * continue to update the statistics during the copy. To support |
| 416 | * this the u32_delete_key_rcu variant does not free the percpu |
| 417 | * statistics. |
| 418 | */ |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 419 | static void u32_delete_key_work(struct work_struct *work) |
| 420 | { |
| 421 | struct tc_u_knode *key = container_of(work, struct tc_u_knode, work); |
| 422 | |
| 423 | rtnl_lock(); |
| 424 | u32_destroy_key(key->tp, key, false); |
| 425 | rtnl_unlock(); |
| 426 | } |
| 427 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 428 | static void u32_delete_key_rcu(struct rcu_head *rcu) |
| 429 | { |
| 430 | struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu); |
| 431 | |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 432 | INIT_WORK(&key->work, u32_delete_key_work); |
| 433 | tcf_queue_work(&key->work); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | /* u32_delete_key_freepf_rcu is the rcu callback variant |
| 437 | * that free's the entire structure including the statistics |
| 438 | * percpu variables. Only use this if the key is not a copy |
| 439 | * returned by u32_init_knode(). See u32_delete_key_rcu() |
| 440 | * for the variant that should be used with keys return from |
| 441 | * u32_init_knode() |
| 442 | */ |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 443 | static void u32_delete_key_freepf_work(struct work_struct *work) |
| 444 | { |
| 445 | struct tc_u_knode *key = container_of(work, struct tc_u_knode, work); |
| 446 | |
| 447 | rtnl_lock(); |
| 448 | u32_destroy_key(key->tp, key, true); |
| 449 | rtnl_unlock(); |
| 450 | } |
| 451 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 452 | static void u32_delete_key_freepf_rcu(struct rcu_head *rcu) |
| 453 | { |
| 454 | struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu); |
| 455 | |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 456 | INIT_WORK(&key->work, u32_delete_key_freepf_work); |
| 457 | tcf_queue_work(&key->work); |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Yang Yingliang | 82d567c | 2013-12-10 20:55:31 +0800 | [diff] [blame] | 460 | static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 462 | struct tc_u_knode __rcu **kp; |
| 463 | struct tc_u_knode *pkp; |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 464 | struct tc_u_hnode *ht = rtnl_dereference(key->ht_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | if (ht) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 467 | kp = &ht->ht[TC_U32_HASH(key->handle)]; |
| 468 | for (pkp = rtnl_dereference(*kp); pkp; |
| 469 | kp = &pkp->next, pkp = rtnl_dereference(*kp)) { |
| 470 | if (pkp == key) { |
| 471 | RCU_INIT_POINTER(*kp, key->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 473 | tcf_unbind_filter(tp, &key->res); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 474 | tcf_exts_get_net(&key->exts); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 475 | call_rcu(&key->rcu, u32_delete_key_freepf_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | return 0; |
| 477 | } |
| 478 | } |
| 479 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 480 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | return 0; |
| 482 | } |
| 483 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 484 | static void u32_clear_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h, |
| 485 | struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 486 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 487 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 488 | struct tc_cls_u32_offload cls_u32 = {}; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 489 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 490 | tc_cls_common_offload_init(&cls_u32.common, tp, h->flags, extack); |
Jiri Pirko | 7746041 | 2017-10-19 15:50:34 +0200 | [diff] [blame] | 491 | cls_u32.command = TC_CLSU32_DELETE_HNODE; |
| 492 | cls_u32.hnode.divisor = h->divisor; |
| 493 | cls_u32.hnode.handle = h->handle; |
| 494 | cls_u32.hnode.prio = h->prio; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 495 | |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 496 | tc_setup_cb_call(block, NULL, TC_SETUP_CLSU32, &cls_u32, false); |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 497 | } |
| 498 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 499 | static int u32_replace_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h, |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 500 | u32 flags, struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 501 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 502 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 503 | struct tc_cls_u32_offload cls_u32 = {}; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 504 | bool skip_sw = tc_skip_sw(flags); |
| 505 | bool offloaded = false; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 506 | int err; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 507 | |
Jakub Kicinski | f40fe58 | 2018-01-24 12:54:22 -0800 | [diff] [blame] | 508 | tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack); |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 509 | cls_u32.command = TC_CLSU32_NEW_HNODE; |
| 510 | cls_u32.hnode.divisor = h->divisor; |
| 511 | cls_u32.hnode.handle = h->handle; |
| 512 | cls_u32.hnode.prio = h->prio; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 513 | |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 514 | err = tc_setup_cb_call(block, NULL, TC_SETUP_CLSU32, &cls_u32, skip_sw); |
| 515 | if (err < 0) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 516 | u32_clear_hw_hnode(tp, h, NULL); |
Jakub Kicinski | d47a0f3 | 2016-06-06 16:16:48 +0100 | [diff] [blame] | 517 | return err; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 518 | } else if (err > 0) { |
| 519 | offloaded = true; |
| 520 | } |
| 521 | |
| 522 | if (skip_sw && !offloaded) |
| 523 | return -EINVAL; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 524 | |
| 525 | return 0; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 526 | } |
| 527 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 528 | static void u32_remove_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n, |
| 529 | struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 530 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 531 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 532 | struct tc_cls_u32_offload cls_u32 = {}; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 533 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 534 | tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack); |
Jiri Pirko | 7746041 | 2017-10-19 15:50:34 +0200 | [diff] [blame] | 535 | cls_u32.command = TC_CLSU32_DELETE_KNODE; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 536 | cls_u32.knode.handle = n->handle; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 537 | |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 538 | tc_setup_cb_call(block, NULL, TC_SETUP_CLSU32, &cls_u32, false); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 539 | tcf_block_offload_dec(block, &n->flags); |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 540 | } |
| 541 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 542 | static int u32_replace_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n, |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 543 | u32 flags, struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 544 | { |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 545 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 546 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 547 | struct tc_cls_u32_offload cls_u32 = {}; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 548 | bool skip_sw = tc_skip_sw(flags); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 549 | int err; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 550 | |
Jakub Kicinski | f40fe58 | 2018-01-24 12:54:22 -0800 | [diff] [blame] | 551 | tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack); |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 552 | cls_u32.command = TC_CLSU32_REPLACE_KNODE; |
| 553 | cls_u32.knode.handle = n->handle; |
| 554 | cls_u32.knode.fshift = n->fshift; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 555 | #ifdef CONFIG_CLS_U32_MARK |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 556 | cls_u32.knode.val = n->val; |
| 557 | cls_u32.knode.mask = n->mask; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 558 | #else |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 559 | cls_u32.knode.val = 0; |
| 560 | cls_u32.knode.mask = 0; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 561 | #endif |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 562 | cls_u32.knode.sel = &n->sel; |
| 563 | cls_u32.knode.exts = &n->exts; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 564 | if (n->ht_down) |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 565 | cls_u32.knode.link_handle = ht->handle; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 566 | |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 567 | err = tc_setup_cb_call(block, NULL, TC_SETUP_CLSU32, &cls_u32, skip_sw); |
| 568 | if (err < 0) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 569 | u32_remove_hw_knode(tp, n, NULL); |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 570 | return err; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 571 | } else if (err > 0) { |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 572 | tcf_block_offload_inc(block, &n->flags); |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 573 | } |
| 574 | |
Colin Ian King | 0f04d05 | 2017-11-03 08:09:45 +0000 | [diff] [blame] | 575 | if (skip_sw && !(n->flags & TCA_CLS_FLAGS_IN_HW)) |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 576 | return -EINVAL; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 577 | |
| 578 | return 0; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 579 | } |
| 580 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 581 | static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht, |
| 582 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
| 584 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 585 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 587 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 588 | while ((n = rtnl_dereference(ht->ht[h])) != NULL) { |
| 589 | RCU_INIT_POINTER(ht->ht[h], |
| 590 | rtnl_dereference(n->next)); |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 591 | tcf_unbind_filter(tp, &n->res); |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 592 | u32_remove_hw_knode(tp, n, extack); |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 593 | idr_remove(&ht->handle_idr, n->handle); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 594 | if (tcf_exts_get_net(&n->exts)) |
| 595 | call_rcu(&n->rcu, u32_delete_key_freepf_rcu); |
| 596 | else |
| 597 | u32_destroy_key(n->tp, n, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | } |
| 600 | } |
| 601 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 602 | static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht, |
| 603 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
| 605 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 606 | struct tc_u_hnode __rcu **hn; |
| 607 | struct tc_u_hnode *phn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 609 | WARN_ON(ht->refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 611 | u32_clear_hnode(tp, ht, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 613 | hn = &tp_c->hlist; |
| 614 | for (phn = rtnl_dereference(*hn); |
| 615 | phn; |
| 616 | hn = &phn->next, phn = rtnl_dereference(*hn)) { |
| 617 | if (phn == ht) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 618 | u32_clear_hw_hnode(tp, ht, extack); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 619 | idr_destroy(&ht->handle_idr); |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 620 | idr_remove(&tp_c->handle_idr, ht->handle); |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 621 | RCU_INIT_POINTER(*hn, ht->next); |
| 622 | kfree_rcu(ht, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | } |
| 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | return -ENOENT; |
| 628 | } |
| 629 | |
Cong Wang | 1e052be | 2015-03-06 11:47:59 -0800 | [diff] [blame] | 630 | static bool ht_empty(struct tc_u_hnode *ht) |
| 631 | { |
| 632 | unsigned int h; |
| 633 | |
| 634 | for (h = 0; h <= ht->divisor; h++) |
| 635 | if (rcu_access_pointer(ht->ht[h])) |
| 636 | return false; |
| 637 | |
| 638 | return true; |
| 639 | } |
| 640 | |
Jakub Kicinski | 715df5e | 2018-01-24 12:54:13 -0800 | [diff] [blame] | 641 | static void u32_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | { |
| 643 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 644 | struct tc_u_hnode *root_ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 646 | WARN_ON(root_ht == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
| 648 | if (root_ht && --root_ht->refcnt == 0) |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 649 | u32_destroy_hnode(tp, root_ht, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
| 651 | if (--tp_c->refcnt == 0) { |
| 652 | struct tc_u_hnode *ht; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 654 | hlist_del(&tp_c->hnode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 656 | for (ht = rtnl_dereference(tp_c->hlist); |
| 657 | ht; |
| 658 | ht = rtnl_dereference(ht->next)) { |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 659 | ht->refcnt--; |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 660 | u32_clear_hnode(tp, ht, extack); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 661 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 663 | while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) { |
| 664 | RCU_INIT_POINTER(tp_c->hlist, ht->next); |
| 665 | kfree_rcu(ht, rcu); |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 668 | idr_destroy(&tp_c->handle_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | kfree(tp_c); |
| 670 | } |
| 671 | |
| 672 | tp->data = NULL; |
| 673 | } |
| 674 | |
Alexander Aring | 571acf2 | 2018-01-18 11:20:53 -0500 | [diff] [blame] | 675 | static int u32_delete(struct tcf_proto *tp, void *arg, bool *last, |
| 676 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 678 | struct tc_u_hnode *ht = arg; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 679 | struct tc_u_hnode *root_ht = rtnl_dereference(tp->root); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 680 | struct tc_u_common *tp_c = tp->data; |
| 681 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
| 683 | if (ht == NULL) |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 684 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 686 | if (TC_U32_KEY(ht->handle)) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 687 | u32_remove_hw_knode(tp, (struct tc_u_knode *)ht, extack); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 688 | ret = u32_delete_key(tp, (struct tc_u_knode *)ht); |
| 689 | goto out; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 690 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 692 | if (root_ht == ht) { |
| 693 | NL_SET_ERR_MSG_MOD(extack, "Not allowed to delete root node"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 695 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 697 | if (ht->refcnt == 1) { |
| 698 | ht->refcnt--; |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 699 | u32_destroy_hnode(tp, ht, extack); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 700 | } else { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 701 | NL_SET_ERR_MSG_MOD(extack, "Can not delete in-use filter"); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 702 | return -EBUSY; |
| 703 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 705 | out: |
| 706 | *last = true; |
| 707 | if (root_ht) { |
| 708 | if (root_ht->refcnt > 1) { |
| 709 | *last = false; |
| 710 | goto ret; |
| 711 | } |
| 712 | if (root_ht->refcnt == 1) { |
| 713 | if (!ht_empty(root_ht)) { |
| 714 | *last = false; |
| 715 | goto ret; |
| 716 | } |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | if (tp_c->refcnt > 1) { |
| 721 | *last = false; |
| 722 | goto ret; |
| 723 | } |
| 724 | |
| 725 | if (tp_c->refcnt == 1) { |
| 726 | struct tc_u_hnode *ht; |
| 727 | |
| 728 | for (ht = rtnl_dereference(tp_c->hlist); |
| 729 | ht; |
| 730 | ht = rtnl_dereference(ht->next)) |
| 731 | if (!ht_empty(ht)) { |
| 732 | *last = false; |
| 733 | break; |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | ret: |
| 738 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
| 740 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 741 | static u32 gen_new_kid(struct tc_u_hnode *ht, u32 htid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 743 | unsigned long idr_index; |
| 744 | u32 start = htid | 0x800; |
| 745 | u32 max = htid | 0xFFF; |
| 746 | u32 min = htid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 748 | if (idr_alloc_ext(&ht->handle_idr, NULL, &idr_index, |
| 749 | start, max + 1, GFP_KERNEL)) { |
| 750 | if (idr_alloc_ext(&ht->handle_idr, NULL, &idr_index, |
| 751 | min + 1, max + 1, GFP_KERNEL)) |
| 752 | return max; |
| 753 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 755 | return (u32)idr_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 758 | static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = { |
| 759 | [TCA_U32_CLASSID] = { .type = NLA_U32 }, |
| 760 | [TCA_U32_HASH] = { .type = NLA_U32 }, |
| 761 | [TCA_U32_LINK] = { .type = NLA_U32 }, |
| 762 | [TCA_U32_DIVISOR] = { .type = NLA_U32 }, |
| 763 | [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) }, |
| 764 | [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ }, |
| 765 | [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) }, |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 766 | [TCA_U32_FLAGS] = { .type = NLA_U32 }, |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 767 | }; |
| 768 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 769 | static int u32_set_parms(struct net *net, struct tcf_proto *tp, |
| 770 | unsigned long base, struct tc_u_hnode *ht, |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 771 | struct tc_u_knode *n, struct nlattr **tb, |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 772 | struct nlattr *est, bool ovr, |
| 773 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | { |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 775 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 777 | err = tcf_exts_validate(net, tp, tb, est, &n->exts, ovr, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | if (err < 0) |
| 779 | return err; |
| 780 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 781 | if (tb[TCA_U32_LINK]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 782 | u32 handle = nla_get_u32(tb[TCA_U32_LINK]); |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 783 | struct tc_u_hnode *ht_down = NULL, *ht_old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 785 | if (TC_U32_KEY(handle)) { |
| 786 | NL_SET_ERR_MSG_MOD(extack, "u32 Link handle must be a hash table"); |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 787 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 788 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
| 790 | if (handle) { |
| 791 | ht_down = u32_lookup_ht(ht->tp_c, handle); |
| 792 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 793 | if (!ht_down) { |
| 794 | NL_SET_ERR_MSG_MOD(extack, "Link hash table not found"); |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 795 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 796 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | ht_down->refcnt++; |
| 798 | } |
| 799 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 800 | ht_old = rtnl_dereference(n->ht_down); |
| 801 | rcu_assign_pointer(n->ht_down, ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 803 | if (ht_old) |
| 804 | ht_old->refcnt--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | } |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 806 | if (tb[TCA_U32_CLASSID]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 807 | n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | tcf_bind_filter(tp, &n->res, base); |
| 809 | } |
| 810 | |
| 811 | #ifdef CONFIG_NET_CLS_IND |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 812 | if (tb[TCA_U32_INDEV]) { |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 813 | int ret; |
Alexander Aring | 1057c55 | 2018-01-18 11:20:54 -0500 | [diff] [blame] | 814 | ret = tcf_change_indev(net, tb[TCA_U32_INDEV], extack); |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 815 | if (ret < 0) |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 816 | return -EINVAL; |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 817 | n->ifindex = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } |
| 819 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | } |
| 822 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 823 | static void u32_replace_knode(struct tcf_proto *tp, struct tc_u_common *tp_c, |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 824 | struct tc_u_knode *n) |
| 825 | { |
| 826 | struct tc_u_knode __rcu **ins; |
| 827 | struct tc_u_knode *pins; |
| 828 | struct tc_u_hnode *ht; |
| 829 | |
| 830 | if (TC_U32_HTID(n->handle) == TC_U32_ROOT) |
| 831 | ht = rtnl_dereference(tp->root); |
| 832 | else |
| 833 | ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle)); |
| 834 | |
| 835 | ins = &ht->ht[TC_U32_HASH(n->handle)]; |
| 836 | |
| 837 | /* The node must always exist for it to be replaced if this is not the |
| 838 | * case then something went very wrong elsewhere. |
| 839 | */ |
| 840 | for (pins = rtnl_dereference(*ins); ; |
| 841 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 842 | if (pins->handle == n->handle) |
| 843 | break; |
| 844 | |
Matthew Wilcox | 234a462 | 2017-11-28 09:56:36 -0500 | [diff] [blame] | 845 | idr_replace(&ht->handle_idr, n, n->handle); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 846 | RCU_INIT_POINTER(n->next, pins->next); |
| 847 | rcu_assign_pointer(*ins, n); |
| 848 | } |
| 849 | |
| 850 | static struct tc_u_knode *u32_init_knode(struct tcf_proto *tp, |
| 851 | struct tc_u_knode *n) |
| 852 | { |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 853 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 854 | struct tc_u32_sel *s = &n->sel; |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 855 | struct tc_u_knode *new; |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 856 | |
| 857 | new = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), |
| 858 | GFP_KERNEL); |
| 859 | |
| 860 | if (!new) |
| 861 | return NULL; |
| 862 | |
| 863 | RCU_INIT_POINTER(new->next, n->next); |
| 864 | new->handle = n->handle; |
| 865 | RCU_INIT_POINTER(new->ht_up, n->ht_up); |
| 866 | |
| 867 | #ifdef CONFIG_NET_CLS_IND |
| 868 | new->ifindex = n->ifindex; |
| 869 | #endif |
| 870 | new->fshift = n->fshift; |
| 871 | new->res = n->res; |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 872 | new->flags = n->flags; |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 873 | RCU_INIT_POINTER(new->ht_down, ht); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 874 | |
| 875 | /* bump reference count as long as we hold pointer to structure */ |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 876 | if (ht) |
| 877 | ht->refcnt++; |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 878 | |
| 879 | #ifdef CONFIG_CLS_U32_PERF |
| 880 | /* Statistics may be incremented by readers during update |
| 881 | * so we must keep them in tact. When the node is later destroyed |
| 882 | * a special destroy call must be made to not free the pf memory. |
| 883 | */ |
| 884 | new->pf = n->pf; |
| 885 | #endif |
| 886 | |
| 887 | #ifdef CONFIG_CLS_U32_MARK |
| 888 | new->val = n->val; |
| 889 | new->mask = n->mask; |
| 890 | /* Similarly success statistics must be moved as pointers */ |
| 891 | new->pcpu_success = n->pcpu_success; |
| 892 | #endif |
| 893 | new->tp = tp; |
| 894 | memcpy(&new->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key)); |
| 895 | |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 896 | if (tcf_exts_init(&new->exts, TCA_U32_ACT, TCA_U32_POLICE)) { |
| 897 | kfree(new); |
| 898 | return NULL; |
| 899 | } |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 900 | |
| 901 | return new; |
| 902 | } |
| 903 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 904 | static int u32_change(struct net *net, struct sk_buff *in_skb, |
Eric W. Biederman | af4c664 | 2012-05-25 13:42:45 -0600 | [diff] [blame] | 905 | struct tcf_proto *tp, unsigned long base, u32 handle, |
Alexander Aring | 7306db3 | 2018-01-18 11:20:51 -0500 | [diff] [blame] | 906 | struct nlattr **tca, void **arg, bool ovr, |
| 907 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
| 909 | struct tc_u_common *tp_c = tp->data; |
| 910 | struct tc_u_hnode *ht; |
| 911 | struct tc_u_knode *n; |
| 912 | struct tc_u32_sel *s; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 913 | struct nlattr *opt = tca[TCA_OPTIONS]; |
| 914 | struct nlattr *tb[TCA_U32_MAX + 1]; |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 915 | u32 htid, flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | int err; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 917 | #ifdef CONFIG_CLS_U32_PERF |
| 918 | size_t size; |
| 919 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 921 | if (!opt) { |
| 922 | if (handle) { |
| 923 | NL_SET_ERR_MSG_MOD(extack, "Filter handle requires options"); |
| 924 | return -EINVAL; |
| 925 | } else { |
| 926 | return 0; |
| 927 | } |
| 928 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 930 | err = nla_parse_nested(tb, TCA_U32_MAX, opt, u32_policy, extack); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 931 | if (err < 0) |
| 932 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 934 | if (tb[TCA_U32_FLAGS]) { |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 935 | flags = nla_get_u32(tb[TCA_U32_FLAGS]); |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 936 | if (!tc_flags_valid(flags)) { |
| 937 | NL_SET_ERR_MSG_MOD(extack, "Invalid filter flags"); |
Jakub Kicinski | 1a0f7d2 | 2016-06-06 16:16:47 +0100 | [diff] [blame] | 938 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 939 | } |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 940 | } |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 941 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 942 | n = *arg; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 943 | if (n) { |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 944 | struct tc_u_knode *new; |
| 945 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 946 | if (TC_U32_KEY(n->handle) == 0) { |
| 947 | NL_SET_ERR_MSG_MOD(extack, "Key node id cannot be zero"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 949 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 951 | if (n->flags != flags) { |
| 952 | NL_SET_ERR_MSG_MOD(extack, "Key node flags do not match passed flags"); |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 953 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 954 | } |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 955 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 956 | new = u32_init_knode(tp, n); |
| 957 | if (!new) |
| 958 | return -ENOMEM; |
| 959 | |
| 960 | err = u32_set_parms(net, tp, base, |
| 961 | rtnl_dereference(n->ht_up), new, tb, |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 962 | tca[TCA_RATE], ovr, extack); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 963 | |
| 964 | if (err) { |
| 965 | u32_destroy_key(tp, new, false); |
| 966 | return err; |
| 967 | } |
| 968 | |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 969 | err = u32_replace_hw_knode(tp, new, flags, extack); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 970 | if (err) { |
| 971 | u32_destroy_key(tp, new, false); |
| 972 | return err; |
| 973 | } |
| 974 | |
Or Gerlitz | 24d3dc6 | 2017-02-16 10:31:15 +0200 | [diff] [blame] | 975 | if (!tc_in_hw(new->flags)) |
| 976 | new->flags |= TCA_CLS_FLAGS_NOT_IN_HW; |
| 977 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 978 | u32_replace_knode(tp, tp_c, new); |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 979 | tcf_unbind_filter(tp, &n->res); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 980 | tcf_exts_get_net(&n->exts); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 981 | call_rcu(&n->rcu, u32_delete_key_rcu); |
| 982 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | } |
| 984 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 985 | if (tb[TCA_U32_DIVISOR]) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 986 | unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 988 | if (--divisor > 0x100) { |
| 989 | NL_SET_ERR_MSG_MOD(extack, "Exceeded maximum 256 hash buckets"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 991 | } |
| 992 | if (TC_U32_KEY(handle)) { |
| 993 | NL_SET_ERR_MSG_MOD(extack, "Divisor can only be used on a hash table"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 995 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 996 | ht = kzalloc(sizeof(*ht) + divisor*sizeof(void *), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | if (ht == NULL) |
| 998 | return -ENOBUFS; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 999 | if (handle == 0) { |
| 1000 | handle = gen_new_htid(tp->data, ht); |
| 1001 | if (handle == 0) { |
| 1002 | kfree(ht); |
| 1003 | return -ENOMEM; |
| 1004 | } |
| 1005 | } else { |
| 1006 | err = idr_alloc_ext(&tp_c->handle_idr, ht, NULL, |
| 1007 | handle, handle + 1, GFP_KERNEL); |
| 1008 | if (err) { |
| 1009 | kfree(ht); |
| 1010 | return err; |
| 1011 | } |
| 1012 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | ht->tp_c = tp_c; |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 1014 | ht->refcnt = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | ht->divisor = divisor; |
| 1016 | ht->handle = handle; |
| 1017 | ht->prio = tp->prio; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1018 | idr_init(&ht->handle_idr); |
Jakub Kicinski | f40fe58 | 2018-01-24 12:54:22 -0800 | [diff] [blame] | 1019 | ht->flags = flags; |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 1020 | |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 1021 | err = u32_replace_hw_hnode(tp, ht, flags, extack); |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 1022 | if (err) { |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 1023 | idr_remove(&tp_c->handle_idr, handle); |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 1024 | kfree(ht); |
| 1025 | return err; |
| 1026 | } |
| 1027 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1028 | RCU_INIT_POINTER(ht->next, tp_c->hlist); |
| 1029 | rcu_assign_pointer(tp_c->hlist, ht); |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1030 | *arg = ht; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 1031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | return 0; |
| 1033 | } |
| 1034 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1035 | if (tb[TCA_U32_HASH]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 1036 | htid = nla_get_u32(tb[TCA_U32_HASH]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | if (TC_U32_HTID(htid) == TC_U32_ROOT) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1038 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | htid = ht->handle; |
| 1040 | } else { |
| 1041 | ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid)); |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1042 | if (!ht) { |
| 1043 | NL_SET_ERR_MSG_MOD(extack, "Specified hash table not found"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1045 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
| 1047 | } else { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1048 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | htid = ht->handle; |
| 1050 | } |
| 1051 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1052 | if (ht->divisor < TC_U32_HASH(htid)) { |
| 1053 | NL_SET_ERR_MSG_MOD(extack, "Specified hash table buckets exceed configured value"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1055 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | |
| 1057 | if (handle) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1058 | if (TC_U32_HTID(handle) && TC_U32_HTID(handle ^ htid)) { |
| 1059 | NL_SET_ERR_MSG_MOD(extack, "Handle specified hash table address mismatch"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1061 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | handle = htid | TC_U32_NODE(handle); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1063 | err = idr_alloc_ext(&ht->handle_idr, NULL, NULL, |
| 1064 | handle, handle + 1, |
| 1065 | GFP_KERNEL); |
| 1066 | if (err) |
| 1067 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | } else |
| 1069 | handle = gen_new_kid(ht, htid); |
| 1070 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1071 | if (tb[TCA_U32_SEL] == NULL) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1072 | NL_SET_ERR_MSG_MOD(extack, "Selector not specified"); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1073 | err = -EINVAL; |
| 1074 | goto erridr; |
| 1075 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1077 | s = nla_data(tb[TCA_U32_SEL]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1079 | n = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), GFP_KERNEL); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1080 | if (n == NULL) { |
| 1081 | err = -ENOBUFS; |
| 1082 | goto erridr; |
| 1083 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1086 | size = sizeof(struct tc_u32_pcnt) + s->nkeys * sizeof(u64); |
| 1087 | n->pf = __alloc_percpu(size, __alignof__(struct tc_u32_pcnt)); |
| 1088 | if (!n->pf) { |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1089 | err = -ENOBUFS; |
| 1090 | goto errfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | #endif |
| 1093 | |
| 1094 | memcpy(&n->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key)); |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 1095 | RCU_INIT_POINTER(n->ht_up, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | n->handle = handle; |
Radu Rendec | b226801 | 2007-11-10 21:54:50 -0800 | [diff] [blame] | 1097 | n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0; |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 1098 | n->flags = flags; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1099 | n->tp = tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 1101 | err = tcf_exts_init(&n->exts, TCA_U32_ACT, TCA_U32_POLICE); |
| 1102 | if (err < 0) |
| 1103 | goto errout; |
| 1104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1106 | n->pcpu_success = alloc_percpu(u32); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1107 | if (!n->pcpu_success) { |
| 1108 | err = -ENOMEM; |
| 1109 | goto errout; |
| 1110 | } |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1111 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1112 | if (tb[TCA_U32_MARK]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | struct tc_u32_mark *mark; |
| 1114 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1115 | mark = nla_data(tb[TCA_U32_MARK]); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1116 | n->val = mark->val; |
| 1117 | n->mask = mark->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | } |
| 1119 | #endif |
| 1120 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 1121 | err = u32_set_parms(net, tp, base, ht, n, tb, tca[TCA_RATE], ovr, |
| 1122 | extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | if (err == 0) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1124 | struct tc_u_knode __rcu **ins; |
| 1125 | struct tc_u_knode *pins; |
| 1126 | |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 1127 | err = u32_replace_hw_knode(tp, n, flags, extack); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 1128 | if (err) |
| 1129 | goto errhw; |
| 1130 | |
Or Gerlitz | 24d3dc6 | 2017-02-16 10:31:15 +0200 | [diff] [blame] | 1131 | if (!tc_in_hw(n->flags)) |
| 1132 | n->flags |= TCA_CLS_FLAGS_NOT_IN_HW; |
| 1133 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1134 | ins = &ht->ht[TC_U32_HASH(handle)]; |
| 1135 | for (pins = rtnl_dereference(*ins); pins; |
| 1136 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 1137 | if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | break; |
| 1139 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1140 | RCU_INIT_POINTER(n->next, pins); |
| 1141 | rcu_assign_pointer(*ins, n); |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1142 | *arg = n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | return 0; |
| 1144 | } |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1145 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 1146 | errhw: |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1147 | #ifdef CONFIG_CLS_U32_MARK |
| 1148 | free_percpu(n->pcpu_success); |
| 1149 | #endif |
| 1150 | |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 1151 | errout: |
| 1152 | tcf_exts_destroy(&n->exts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | #ifdef CONFIG_CLS_U32_PERF |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1154 | errfree: |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1155 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | #endif |
| 1157 | kfree(n); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1158 | erridr: |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 1159 | idr_remove(&ht->handle_idr, handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | return err; |
| 1161 | } |
| 1162 | |
| 1163 | static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg) |
| 1164 | { |
| 1165 | struct tc_u_common *tp_c = tp->data; |
| 1166 | struct tc_u_hnode *ht; |
| 1167 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1168 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | if (arg->stop) |
| 1171 | return; |
| 1172 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1173 | for (ht = rtnl_dereference(tp_c->hlist); |
| 1174 | ht; |
| 1175 | ht = rtnl_dereference(ht->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | if (ht->prio != tp->prio) |
| 1177 | continue; |
| 1178 | if (arg->count >= arg->skip) { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1179 | if (arg->fn(tp, ht, arg) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | arg->stop = 1; |
| 1181 | return; |
| 1182 | } |
| 1183 | } |
| 1184 | arg->count++; |
| 1185 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1186 | for (n = rtnl_dereference(ht->ht[h]); |
| 1187 | n; |
| 1188 | n = rtnl_dereference(n->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | if (arg->count < arg->skip) { |
| 1190 | arg->count++; |
| 1191 | continue; |
| 1192 | } |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1193 | if (arg->fn(tp, n, arg) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | arg->stop = 1; |
| 1195 | return; |
| 1196 | } |
| 1197 | arg->count++; |
| 1198 | } |
| 1199 | } |
| 1200 | } |
| 1201 | } |
| 1202 | |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 1203 | static void u32_bind_class(void *fh, u32 classid, unsigned long cl) |
| 1204 | { |
| 1205 | struct tc_u_knode *n = fh; |
| 1206 | |
| 1207 | if (n && n->res.classid == classid) |
| 1208 | n->res.class = cl; |
| 1209 | } |
| 1210 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1211 | static int u32_dump(struct net *net, struct tcf_proto *tp, void *fh, |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 1212 | struct sk_buff *skb, struct tcmsg *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1214 | struct tc_u_knode *n = fh; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1215 | struct tc_u_hnode *ht_up, *ht_down; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1216 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | |
| 1218 | if (n == NULL) |
| 1219 | return skb->len; |
| 1220 | |
| 1221 | t->tcm_handle = n->handle; |
| 1222 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1223 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 1224 | if (nest == NULL) |
| 1225 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
| 1227 | if (TC_U32_KEY(n->handle) == 0) { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1228 | struct tc_u_hnode *ht = fh; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1229 | u32 divisor = ht->divisor + 1; |
| 1230 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1231 | if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor)) |
| 1232 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1234 | #ifdef CONFIG_CLS_U32_PERF |
| 1235 | struct tc_u32_pcnt *gpf; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1236 | int cpu; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1237 | #endif |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1238 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1239 | if (nla_put(skb, TCA_U32_SEL, |
| 1240 | sizeof(n->sel) + n->sel.nkeys*sizeof(struct tc_u32_key), |
| 1241 | &n->sel)) |
| 1242 | goto nla_put_failure; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1243 | |
| 1244 | ht_up = rtnl_dereference(n->ht_up); |
| 1245 | if (ht_up) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | u32 htid = n->handle & 0xFFFFF000; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1247 | if (nla_put_u32(skb, TCA_U32_HASH, htid)) |
| 1248 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | } |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1250 | if (n->res.classid && |
| 1251 | nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid)) |
| 1252 | goto nla_put_failure; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1253 | |
| 1254 | ht_down = rtnl_dereference(n->ht_down); |
| 1255 | if (ht_down && |
| 1256 | nla_put_u32(skb, TCA_U32_LINK, ht_down->handle)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1257 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 1259 | if (n->flags && nla_put_u32(skb, TCA_U32_FLAGS, n->flags)) |
| 1260 | goto nla_put_failure; |
| 1261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1263 | if ((n->val || n->mask)) { |
| 1264 | struct tc_u32_mark mark = {.val = n->val, |
| 1265 | .mask = n->mask, |
| 1266 | .success = 0}; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1267 | int cpum; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1268 | |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1269 | for_each_possible_cpu(cpum) { |
| 1270 | __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1271 | |
| 1272 | mark.success += cnt; |
| 1273 | } |
| 1274 | |
| 1275 | if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark)) |
| 1276 | goto nla_put_failure; |
| 1277 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | #endif |
| 1279 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 1280 | if (tcf_exts_dump(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1281 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | |
| 1283 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 1284 | if (n->ifindex) { |
| 1285 | struct net_device *dev; |
| 1286 | dev = __dev_get_by_index(net, n->ifindex); |
| 1287 | if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name)) |
| 1288 | goto nla_put_failure; |
| 1289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | #endif |
| 1291 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1292 | gpf = kzalloc(sizeof(struct tc_u32_pcnt) + |
| 1293 | n->sel.nkeys * sizeof(u64), |
| 1294 | GFP_KERNEL); |
| 1295 | if (!gpf) |
| 1296 | goto nla_put_failure; |
| 1297 | |
| 1298 | for_each_possible_cpu(cpu) { |
| 1299 | int i; |
| 1300 | struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu); |
| 1301 | |
| 1302 | gpf->rcnt += pf->rcnt; |
| 1303 | gpf->rhit += pf->rhit; |
| 1304 | for (i = 0; i < n->sel.nkeys; i++) |
| 1305 | gpf->kcnts[i] += pf->kcnts[i]; |
| 1306 | } |
| 1307 | |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 1308 | if (nla_put_64bit(skb, TCA_U32_PCNT, |
| 1309 | sizeof(struct tc_u32_pcnt) + |
| 1310 | n->sel.nkeys * sizeof(u64), |
| 1311 | gpf, TCA_U32_PAD)) { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1312 | kfree(gpf); |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1313 | goto nla_put_failure; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1314 | } |
| 1315 | kfree(gpf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | #endif |
| 1317 | } |
| 1318 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1319 | nla_nest_end(skb, nest); |
| 1320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | if (TC_U32_KEY(n->handle)) |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 1322 | if (tcf_exts_dump_stats(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1323 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | return skb->len; |
| 1325 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1326 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1327 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | return -1; |
| 1329 | } |
| 1330 | |
Patrick McHardy | 2eb9d75 | 2008-01-22 22:10:42 -0800 | [diff] [blame] | 1331 | static struct tcf_proto_ops cls_u32_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | .kind = "u32", |
| 1333 | .classify = u32_classify, |
| 1334 | .init = u32_init, |
| 1335 | .destroy = u32_destroy, |
| 1336 | .get = u32_get, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | .change = u32_change, |
| 1338 | .delete = u32_delete, |
| 1339 | .walk = u32_walk, |
| 1340 | .dump = u32_dump, |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 1341 | .bind_class = u32_bind_class, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | .owner = THIS_MODULE, |
| 1343 | }; |
| 1344 | |
| 1345 | static int __init init_u32(void) |
| 1346 | { |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1347 | int i, ret; |
| 1348 | |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1349 | pr_info("u32 classifier\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | #ifdef CONFIG_CLS_U32_PERF |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1351 | pr_info(" Performance counters on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | #ifdef CONFIG_NET_CLS_IND |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1354 | pr_info(" input device check on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | #endif |
| 1356 | #ifdef CONFIG_NET_CLS_ACT |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1357 | pr_info(" Actions configured\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | #endif |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1359 | tc_u_common_hash = kvmalloc_array(U32_HASH_SIZE, |
| 1360 | sizeof(struct hlist_head), |
| 1361 | GFP_KERNEL); |
| 1362 | if (!tc_u_common_hash) |
| 1363 | return -ENOMEM; |
| 1364 | |
| 1365 | for (i = 0; i < U32_HASH_SIZE; i++) |
| 1366 | INIT_HLIST_HEAD(&tc_u_common_hash[i]); |
| 1367 | |
| 1368 | ret = register_tcf_proto_ops(&cls_u32_ops); |
| 1369 | if (ret) |
| 1370 | kvfree(tc_u_common_hash); |
| 1371 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | } |
| 1373 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 1374 | static void __exit exit_u32(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | { |
| 1376 | unregister_tcf_proto_ops(&cls_u32_ops); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1377 | kvfree(tc_u_common_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
| 1380 | module_init(init_u32) |
| 1381 | module_exit(exit_u32) |
| 1382 | MODULE_LICENSE("GPL"); |