blob: cf5649292ee00941e5c4a4d5b11b1c3dc98cce3f [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * net/sched/cls_u32.c Ugly (or Universal) 32bit key Packet Classifier.
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 *
7 * The filters are packed to hash tables of key nodes
8 * with a set of 32bit key/mask pairs at every node.
9 * Nodes reference next level hash tables etc.
10 *
11 * This scheme is the best universal classifier I managed to
12 * invent; it is not super-fast, but it is not slow (provided you
13 * program it correctly), and general enough. And its relative
14 * speed grows as the number of rules becomes larger.
15 *
16 * It seems that it represents the best middle point between
17 * speed and manageability both by human and by machine.
18 *
19 * It is especially useful for link sharing combined with QoS;
20 * pure RSVP doesn't need such a general approach and can use
21 * much simpler (and faster) schemes, sort of cls_rsvp.c.
22 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro>
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
John Fastabend1ce877202014-09-12 20:09:16 -070032#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/skbuff.h>
Cong Wang7801db82014-07-17 17:34:53 -070035#include <linux/bitmap.h>
WANG Cong3cd904e2017-08-24 16:51:30 -070036#include <linux/netdevice.h>
37#include <linux/hash.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070038#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/act_api.h>
40#include <net/pkt_cls.h>
Cong Wange7614372017-09-25 10:13:51 -070041#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Eric Dumazetcc7ec452011-01-19 19:26:56 +000043struct tc_u_knode {
John Fastabend1ce877202014-09-12 20:09:16 -070044 struct tc_u_knode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 u32 handle;
John Fastabend1ce877202014-09-12 20:09:16 -070046 struct tc_u_hnode __rcu *ht_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct tcf_exts exts;
WANG Cong2519a602014-01-09 16:14:02 -080048 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 u8 fshift;
50 struct tcf_result res;
John Fastabend1ce877202014-09-12 20:09:16 -070051 struct tc_u_hnode __rcu *ht_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -070053 struct tc_u32_pcnt __percpu *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif
John Fastabend9e8ce792016-02-26 07:54:39 -080055 u32 flags;
John Hurley530d9952018-06-25 14:30:08 -070056 unsigned int in_hw_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -070058 u32 val;
59 u32 mask;
60 u32 __percpu *pcpu_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
Cong Wangaaa908f2018-05-23 15:26:53 -070062 struct rcu_work rwork;
John Fastabend4e2840e2014-09-17 11:11:46 -070063 /* The 'sel' field MUST be the last field in structure to allow for
64 * tc_u32_keys allocated at end of structure.
65 */
66 struct tc_u32_sel sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Eric Dumazetcc7ec452011-01-19 19:26:56 +000069struct tc_u_hnode {
John Fastabend1ce877202014-09-12 20:09:16 -070070 struct tc_u_hnode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 handle;
72 u32 prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 int refcnt;
Eric Dumazetcc7ec452011-01-19 19:26:56 +000074 unsigned int divisor;
Cong Wange7614372017-09-25 10:13:51 -070075 struct idr handle_idr;
Al Virob44ef842018-10-08 06:22:33 -040076 bool is_root;
John Fastabend1ce877202014-09-12 20:09:16 -070077 struct rcu_head rcu;
Jakub Kicinskif40fe582018-01-24 12:54:22 -080078 u32 flags;
WANG Cong5778d392015-03-09 17:03:40 -070079 /* The 'ht' field MUST be the last field in structure to allow for
80 * more entries allocated at end of structure.
81 */
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -050082 struct tc_u_knode __rcu *ht[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Eric Dumazetcc7ec452011-01-19 19:26:56 +000085struct tc_u_common {
John Fastabend1ce877202014-09-12 20:09:16 -070086 struct tc_u_hnode __rcu *hlist;
Jiri Pirko339c21d2018-02-13 12:00:17 +010087 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int refcnt;
Cong Wange7614372017-09-25 10:13:51 -070089 struct idr handle_idr;
WANG Cong3cd904e2017-08-24 16:51:30 -070090 struct hlist_node hnode;
Al Virob245d322018-10-08 06:22:43 -040091 long knodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Eric Dumazetcc7ec452011-01-19 19:26:56 +000094static inline unsigned int u32_hash_fold(__be32 key,
95 const struct tc_u32_sel *sel,
96 u8 fshift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000098 unsigned int h = ntohl(key & sel->hmask) >> fshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 return h;
101}
102
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400103static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp,
104 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 struct {
107 struct tc_u_knode *knode;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700108 unsigned int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 } stack[TC_U32_MAXDEPTH];
110
John Fastabend1ce877202014-09-12 20:09:16 -0700111 struct tc_u_hnode *ht = rcu_dereference_bh(tp->root);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700112 unsigned int off = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct tc_u_knode *n;
114 int sdepth = 0;
115 int off2 = 0;
116 int sel = 0;
117#ifdef CONFIG_CLS_U32_PERF
118 int j;
119#endif
120 int i, r;
121
122next_ht:
John Fastabend1ce877202014-09-12 20:09:16 -0700123 n = rcu_dereference_bh(ht->ht[sel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125next_knode:
126 if (n) {
127 struct tc_u32_key *key = n->sel.keys;
128
129#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700130 __this_cpu_inc(n->pf->rcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 j = 0;
132#endif
133
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700134 if (tc_skip_sw(n->flags)) {
135 n = rcu_dereference_bh(n->next);
136 goto next_knode;
137 }
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700140 if ((skb->mark & n->mask) != n->val) {
John Fastabend1ce877202014-09-12 20:09:16 -0700141 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto next_knode;
143 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700144 __this_cpu_inc(*n->pcpu_success);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146#endif
147
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000148 for (i = n->sel.nkeys; i > 0; i--, key++) {
stephen hemminger66d50d22010-08-02 13:44:13 +0000149 int toff = off + key->off + (off2 & key->offmask);
stephen hemminger86fce3b2011-02-20 16:14:23 +0000150 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dan Carpenter4e18b3e2010-10-04 02:28:36 +0000152 if (skb_headroom(skb) + toff > INT_MAX)
stephen hemminger66d50d22010-08-02 13:44:13 +0000153 goto out;
154
stephen hemminger86fce3b2011-02-20 16:14:23 +0000155 data = skb_header_pointer(skb, toff, 4, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700156 if (!data)
157 goto out;
158 if ((*data ^ key->val) & key->mask) {
John Fastabend1ce877202014-09-12 20:09:16 -0700159 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto next_knode;
161 }
162#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700163 __this_cpu_inc(n->pf->kcnts[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 j++;
165#endif
166 }
John Fastabend1ce877202014-09-12 20:09:16 -0700167
168 ht = rcu_dereference_bh(n->ht_down);
169 if (!ht) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170check_terminal:
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000171 if (n->sel.flags & TC_U32_TERMINAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 *res = n->res;
WANG Cong2519a602014-01-09 16:14:02 -0800174 if (!tcf_match_indev(skb, n->ifindex)) {
John Fastabend1ce877202014-09-12 20:09:16 -0700175 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 goto next_knode;
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700179 __this_cpu_inc(n->pf->rhit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#endif
181 r = tcf_exts_exec(skb, &n->exts, res);
182 if (r < 0) {
John Fastabend1ce877202014-09-12 20:09:16 -0700183 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 goto next_knode;
185 }
186
187 return r;
188 }
John Fastabend1ce877202014-09-12 20:09:16 -0700189 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 goto next_knode;
191 }
192
193 /* PUSH */
194 if (sdepth >= TC_U32_MAXDEPTH)
195 goto deadloop;
196 stack[sdepth].knode = n;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700197 stack[sdepth].off = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 sdepth++;
199
John Fastabend1ce877202014-09-12 20:09:16 -0700200 ht = rcu_dereference_bh(n->ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 sel = 0;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700202 if (ht->divisor) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000203 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700205 data = skb_header_pointer(skb, off + n->sel.hoff, 4,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000206 &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700207 if (!data)
208 goto out;
209 sel = ht->divisor & u32_hash_fold(*data, &n->sel,
210 n->fshift);
211 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000212 if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 goto next_ht;
214
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000215 if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 off2 = n->sel.off + 3;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700217 if (n->sel.flags & TC_U32_VAROFFSET) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000218 __be16 *data, hdata;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700219
220 data = skb_header_pointer(skb,
221 off + n->sel.offoff,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000222 2, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700223 if (!data)
224 goto out;
225 off2 += ntohs(n->sel.offmask & *data) >>
226 n->sel.offshift;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 off2 &= ~3;
229 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000230 if (n->sel.flags & TC_U32_EAT) {
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700231 off += off2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 off2 = 0;
233 }
234
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700235 if (off < skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto next_ht;
237 }
238
239 /* POP */
240 if (sdepth--) {
241 n = stack[sdepth].knode;
John Fastabend1ce877202014-09-12 20:09:16 -0700242 ht = rcu_dereference_bh(n->ht_up);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700243 off = stack[sdepth].off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto check_terminal;
245 }
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700246out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -1;
248
249deadloop:
Joe Perchese87cc472012-05-13 21:56:26 +0000250 net_warn_ratelimited("cls_u32: dead loop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return -1;
252}
253
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400254static struct tc_u_hnode *u32_lookup_ht(struct tc_u_common *tp_c, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct tc_u_hnode *ht;
257
John Fastabend1ce877202014-09-12 20:09:16 -0700258 for (ht = rtnl_dereference(tp_c->hlist);
259 ht;
260 ht = rtnl_dereference(ht->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (ht->handle == handle)
262 break;
263
264 return ht;
265}
266
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400267static struct tc_u_knode *u32_lookup_key(struct tc_u_hnode *ht, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000269 unsigned int sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct tc_u_knode *n = NULL;
271
272 sel = TC_U32_HASH(handle);
273 if (sel > ht->divisor)
274 goto out;
275
John Fastabend1ce877202014-09-12 20:09:16 -0700276 for (n = rtnl_dereference(ht->ht[sel]);
277 n;
278 n = rtnl_dereference(n->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (n->handle == handle)
280 break;
281out:
282 return n;
283}
284
285
WANG Cong8113c092017-08-04 21:31:43 -0700286static void *u32_get(struct tcf_proto *tp, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct tc_u_hnode *ht;
289 struct tc_u_common *tp_c = tp->data;
290
291 if (TC_U32_HTID(handle) == TC_U32_ROOT)
John Fastabend1ce877202014-09-12 20:09:16 -0700292 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 else
294 ht = u32_lookup_ht(tp_c, TC_U32_HTID(handle));
295
296 if (!ht)
WANG Cong8113c092017-08-04 21:31:43 -0700297 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (TC_U32_KEY(handle) == 0)
WANG Cong8113c092017-08-04 21:31:43 -0700300 return ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
WANG Cong8113c092017-08-04 21:31:43 -0700302 return u32_lookup_key(ht, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500305/* Protected by rtnl lock */
Cong Wange7614372017-09-25 10:13:51 -0700306static u32 gen_new_htid(struct tc_u_common *tp_c, struct tc_u_hnode *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500308 int id = idr_alloc_cyclic(&tp_c->handle_idr, ptr, 1, 0x7FF, GFP_KERNEL);
309 if (id < 0)
Cong Wange7614372017-09-25 10:13:51 -0700310 return 0;
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500311 return (id | 0x800U) << 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
WANG Cong3cd904e2017-08-24 16:51:30 -0700314static struct hlist_head *tc_u_common_hash;
315
316#define U32_HASH_SHIFT 10
317#define U32_HASH_SIZE (1 << U32_HASH_SHIFT)
318
Jiri Pirko339c21d2018-02-13 12:00:17 +0100319static void *tc_u_common_ptr(const struct tcf_proto *tp)
320{
321 struct tcf_block *block = tp->chain->block;
322
323 /* The block sharing is currently supported only
324 * for classless qdiscs. In that case we use block
325 * for tc_u_common identification. In case the
326 * block is not shared, block->q is a valid pointer
327 * and we can use that. That works for classful qdiscs.
328 */
329 if (tcf_block_shared(block))
330 return block;
331 else
332 return block->q;
333}
334
Al Viro4895c422018-10-08 06:22:39 -0400335static struct hlist_head *tc_u_hash(void *key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700336{
Al Viro4895c422018-10-08 06:22:39 -0400337 return tc_u_common_hash + hash_ptr(key, U32_HASH_SHIFT);
WANG Cong3cd904e2017-08-24 16:51:30 -0700338}
339
Al Viro4895c422018-10-08 06:22:39 -0400340static struct tc_u_common *tc_u_common_find(void *key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700341{
342 struct tc_u_common *tc;
Al Viro4895c422018-10-08 06:22:39 -0400343 hlist_for_each_entry(tc, tc_u_hash(key), hnode) {
344 if (tc->ptr == key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700345 return tc;
346 }
347 return NULL;
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static int u32_init(struct tcf_proto *tp)
351{
352 struct tc_u_hnode *root_ht;
Al Viro4895c422018-10-08 06:22:39 -0400353 void *key = tc_u_common_ptr(tp);
354 struct tc_u_common *tp_c = tc_u_common_find(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -0500356 root_ht = kzalloc(struct_size(root_ht, ht, 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (root_ht == NULL)
358 return -ENOBUFS;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 root_ht->refcnt++;
Cong Wange7614372017-09-25 10:13:51 -0700361 root_ht->handle = tp_c ? gen_new_htid(tp_c, root_ht) : 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 root_ht->prio = tp->prio;
Al Virob44ef842018-10-08 06:22:33 -0400363 root_ht->is_root = true;
Cong Wange7614372017-09-25 10:13:51 -0700364 idr_init(&root_ht->handle_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (tp_c == NULL) {
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -0500367 tp_c = kzalloc(struct_size(tp_c, hlist->ht, 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (tp_c == NULL) {
369 kfree(root_ht);
370 return -ENOBUFS;
371 }
Al Viro4895c422018-10-08 06:22:39 -0400372 tp_c->ptr = key;
WANG Cong3cd904e2017-08-24 16:51:30 -0700373 INIT_HLIST_NODE(&tp_c->hnode);
Cong Wange7614372017-09-25 10:13:51 -0700374 idr_init(&tp_c->handle_idr);
WANG Cong3cd904e2017-08-24 16:51:30 -0700375
Al Viro4895c422018-10-08 06:22:39 -0400376 hlist_add_head(&tp_c->hnode, tc_u_hash(key));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
379 tp_c->refcnt++;
John Fastabend1ce877202014-09-12 20:09:16 -0700380 RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
381 rcu_assign_pointer(tp_c->hlist, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Al Viro6d4c4072018-10-07 07:40:17 -0400383 root_ht->refcnt++;
John Fastabend1ce877202014-09-12 20:09:16 -0700384 rcu_assign_pointer(tp->root, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 tp->data = tp_c;
386 return 0;
387}
388
Al Virodc07c572018-10-08 06:22:36 -0400389static int u32_destroy_key(struct tc_u_knode *n, bool free_pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Paolo Abenid7cdee52018-02-05 22:23:01 +0100391 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
392
WANG Cong18d02642014-09-25 10:26:37 -0700393 tcf_exts_destroy(&n->exts);
Cong Wang35c55fc2017-11-06 13:47:30 -0800394 tcf_exts_put_net(&n->exts);
Paolo Abenid7cdee52018-02-05 22:23:01 +0100395 if (ht && --ht->refcnt == 0)
396 kfree(ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397#ifdef CONFIG_CLS_U32_PERF
John Fastabendde5df632014-09-19 21:50:34 -0700398 if (free_pf)
399 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#endif
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700401#ifdef CONFIG_CLS_U32_MARK
John Fastabendde5df632014-09-19 21:50:34 -0700402 if (free_pf)
403 free_percpu(n->pcpu_success);
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 kfree(n);
406 return 0;
407}
408
John Fastabendde5df632014-09-19 21:50:34 -0700409/* u32_delete_key_rcu should be called when free'ing a copied
410 * version of a tc_u_knode obtained from u32_init_knode(). When
411 * copies are obtained from u32_init_knode() the statistics are
412 * shared between the old and new copies to allow readers to
413 * continue to update the statistics during the copy. To support
414 * this the u32_delete_key_rcu variant does not free the percpu
415 * statistics.
416 */
Cong Wangc0d378e2017-10-26 18:24:36 -0700417static void u32_delete_key_work(struct work_struct *work)
418{
Cong Wangaaa908f2018-05-23 15:26:53 -0700419 struct tc_u_knode *key = container_of(to_rcu_work(work),
420 struct tc_u_knode,
421 rwork);
Cong Wangc0d378e2017-10-26 18:24:36 -0700422 rtnl_lock();
Al Virodc07c572018-10-08 06:22:36 -0400423 u32_destroy_key(key, false);
Cong Wangc0d378e2017-10-26 18:24:36 -0700424 rtnl_unlock();
425}
426
John Fastabendde5df632014-09-19 21:50:34 -0700427/* u32_delete_key_freepf_rcu is the rcu callback variant
428 * that free's the entire structure including the statistics
429 * percpu variables. Only use this if the key is not a copy
430 * returned by u32_init_knode(). See u32_delete_key_rcu()
431 * for the variant that should be used with keys return from
432 * u32_init_knode()
433 */
Cong Wangc0d378e2017-10-26 18:24:36 -0700434static void u32_delete_key_freepf_work(struct work_struct *work)
435{
Cong Wangaaa908f2018-05-23 15:26:53 -0700436 struct tc_u_knode *key = container_of(to_rcu_work(work),
437 struct tc_u_knode,
438 rwork);
Cong Wangc0d378e2017-10-26 18:24:36 -0700439 rtnl_lock();
Al Virodc07c572018-10-08 06:22:36 -0400440 u32_destroy_key(key, true);
Cong Wangc0d378e2017-10-26 18:24:36 -0700441 rtnl_unlock();
442}
443
Yang Yingliang82d567c2013-12-10 20:55:31 +0800444static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Al Virob245d322018-10-08 06:22:43 -0400446 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700447 struct tc_u_knode __rcu **kp;
448 struct tc_u_knode *pkp;
John Fastabenda96366bf2014-09-15 23:30:49 -0700449 struct tc_u_hnode *ht = rtnl_dereference(key->ht_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (ht) {
John Fastabend1ce877202014-09-12 20:09:16 -0700452 kp = &ht->ht[TC_U32_HASH(key->handle)];
453 for (pkp = rtnl_dereference(*kp); pkp;
454 kp = &pkp->next, pkp = rtnl_dereference(*kp)) {
455 if (pkp == key) {
456 RCU_INIT_POINTER(*kp, key->next);
Al Virob245d322018-10-08 06:22:43 -0400457 tp_c->knodes--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
WANG Conga0efb802014-09-30 16:07:24 -0700459 tcf_unbind_filter(tp, &key->res);
Cong Wangf12c6432018-04-06 17:19:41 -0700460 idr_remove(&ht->handle_idr, key->handle);
Cong Wang35c55fc2017-11-06 13:47:30 -0800461 tcf_exts_get_net(&key->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700462 tcf_queue_work(&key->rwork, u32_delete_key_freepf_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 0;
464 }
465 }
466 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700467 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}
470
Jakub Kicinski458e7042018-01-24 12:54:23 -0800471static void u32_clear_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h,
472 struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800473{
Jiri Pirko245dc512017-10-19 15:50:35 +0200474 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200475 struct tc_cls_u32_offload cls_u32 = {};
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800476
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700477 tc_cls_common_offload_init(&cls_u32.common, tp, h->flags, extack);
Jiri Pirko77460412017-10-19 15:50:34 +0200478 cls_u32.command = TC_CLSU32_DELETE_HNODE;
479 cls_u32.hnode.divisor = h->divisor;
480 cls_u32.hnode.handle = h->handle;
481 cls_u32.hnode.prio = h->prio;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200482
Vlad Buslov40119212019-08-26 16:44:59 +0300483 tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, false, true);
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800484}
485
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400486static int u32_replace_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h,
Quentin Monnet10a47e02018-01-19 17:44:45 -0800487 u32 flags, struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800488{
Jiri Pirko245dc512017-10-19 15:50:35 +0200489 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200490 struct tc_cls_u32_offload cls_u32 = {};
Jiri Pirko245dc512017-10-19 15:50:35 +0200491 bool skip_sw = tc_skip_sw(flags);
492 bool offloaded = false;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700493 int err;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800494
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700495 tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +0200496 cls_u32.command = TC_CLSU32_NEW_HNODE;
497 cls_u32.hnode.divisor = h->divisor;
498 cls_u32.hnode.handle = h->handle;
499 cls_u32.hnode.prio = h->prio;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800500
Vlad Buslov40119212019-08-26 16:44:59 +0300501 err = tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, skip_sw, true);
Jiri Pirko245dc512017-10-19 15:50:35 +0200502 if (err < 0) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800503 u32_clear_hw_hnode(tp, h, NULL);
Jakub Kicinskid47a0f32016-06-06 16:16:48 +0100504 return err;
Jiri Pirko245dc512017-10-19 15:50:35 +0200505 } else if (err > 0) {
506 offloaded = true;
507 }
508
509 if (skip_sw && !offloaded)
510 return -EINVAL;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700511
512 return 0;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800513}
514
Jakub Kicinski458e7042018-01-24 12:54:23 -0800515static void u32_remove_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n,
516 struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800517{
Jiri Pirko245dc512017-10-19 15:50:35 +0200518 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200519 struct tc_cls_u32_offload cls_u32 = {};
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800520
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700521 tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack);
Jiri Pirko77460412017-10-19 15:50:34 +0200522 cls_u32.command = TC_CLSU32_DELETE_KNODE;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100523 cls_u32.knode.handle = n->handle;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800524
Vlad Buslov40119212019-08-26 16:44:59 +0300525 tc_setup_cb_destroy(block, tp, TC_SETUP_CLSU32, &cls_u32, false,
526 &n->flags, &n->in_hw_count, true);
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800527}
528
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400529static int u32_replace_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n,
Quentin Monnet10a47e02018-01-19 17:44:45 -0800530 u32 flags, struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800531{
Paolo Abeni058a6c02018-02-02 16:02:22 +0100532 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
Jiri Pirko245dc512017-10-19 15:50:35 +0200533 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200534 struct tc_cls_u32_offload cls_u32 = {};
Jiri Pirko245dc512017-10-19 15:50:35 +0200535 bool skip_sw = tc_skip_sw(flags);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700536 int err;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800537
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700538 tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +0200539 cls_u32.command = TC_CLSU32_REPLACE_KNODE;
540 cls_u32.knode.handle = n->handle;
541 cls_u32.knode.fshift = n->fshift;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100542#ifdef CONFIG_CLS_U32_MARK
Jiri Pirkode4784c2017-08-07 10:15:32 +0200543 cls_u32.knode.val = n->val;
544 cls_u32.knode.mask = n->mask;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100545#else
Jiri Pirkode4784c2017-08-07 10:15:32 +0200546 cls_u32.knode.val = 0;
547 cls_u32.knode.mask = 0;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100548#endif
Jiri Pirkode4784c2017-08-07 10:15:32 +0200549 cls_u32.knode.sel = &n->sel;
Jakub Kicinski068ceb32018-11-19 15:21:46 -0800550 cls_u32.knode.res = &n->res;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200551 cls_u32.knode.exts = &n->exts;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100552 if (n->ht_down)
Paolo Abeni058a6c02018-02-02 16:02:22 +0100553 cls_u32.knode.link_handle = ht->handle;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100554
Vlad Buslov40119212019-08-26 16:44:59 +0300555 err = tc_setup_cb_add(block, tp, TC_SETUP_CLSU32, &cls_u32, skip_sw,
556 &n->flags, &n->in_hw_count, true);
557 if (err) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800558 u32_remove_hw_knode(tp, n, NULL);
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100559 return err;
Jiri Pirko245dc512017-10-19 15:50:35 +0200560 }
561
Colin Ian King0f04d052017-11-03 08:09:45 +0000562 if (skip_sw && !(n->flags & TCA_CLS_FLAGS_IN_HW))
Jiri Pirko245dc512017-10-19 15:50:35 +0200563 return -EINVAL;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700564
565 return 0;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800566}
567
Jakub Kicinski458e7042018-01-24 12:54:23 -0800568static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
569 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Al Virob245d322018-10-08 06:22:43 -0400571 struct tc_u_common *tp_c = tp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000573 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000575 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce877202014-09-12 20:09:16 -0700576 while ((n = rtnl_dereference(ht->ht[h])) != NULL) {
577 RCU_INIT_POINTER(ht->ht[h],
578 rtnl_dereference(n->next));
Al Virob245d322018-10-08 06:22:43 -0400579 tp_c->knodes--;
WANG Conga0efb802014-09-30 16:07:24 -0700580 tcf_unbind_filter(tp, &n->res);
Jakub Kicinski458e7042018-01-24 12:54:23 -0800581 u32_remove_hw_knode(tp, n, extack);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500582 idr_remove(&ht->handle_idr, n->handle);
Cong Wang35c55fc2017-11-06 13:47:30 -0800583 if (tcf_exts_get_net(&n->exts))
Cong Wangaaa908f2018-05-23 15:26:53 -0700584 tcf_queue_work(&n->rwork, u32_delete_key_freepf_work);
Cong Wang35c55fc2017-11-06 13:47:30 -0800585 else
Al Virodc07c572018-10-08 06:22:36 -0400586 u32_destroy_key(n, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588 }
589}
590
Jakub Kicinski458e7042018-01-24 12:54:23 -0800591static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
592 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700595 struct tc_u_hnode __rcu **hn;
596 struct tc_u_hnode *phn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Al Viro6d4c4072018-10-07 07:40:17 -0400598 WARN_ON(--ht->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jakub Kicinski458e7042018-01-24 12:54:23 -0800600 u32_clear_hnode(tp, ht, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
John Fastabend1ce877202014-09-12 20:09:16 -0700602 hn = &tp_c->hlist;
603 for (phn = rtnl_dereference(*hn);
604 phn;
605 hn = &phn->next, phn = rtnl_dereference(*hn)) {
606 if (phn == ht) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800607 u32_clear_hw_hnode(tp, ht, extack);
Cong Wange7614372017-09-25 10:13:51 -0700608 idr_destroy(&ht->handle_idr);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500609 idr_remove(&tp_c->handle_idr, ht->handle);
John Fastabend1ce877202014-09-12 20:09:16 -0700610 RCU_INIT_POINTER(*hn, ht->next);
611 kfree_rcu(ht, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613 }
614 }
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -ENOENT;
617}
618
Vlad Buslov12db03b2019-02-11 10:55:45 +0200619static void u32_destroy(struct tcf_proto *tp, bool rtnl_held,
620 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700623 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700625 WARN_ON(root_ht == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Al Viro6d4c4072018-10-07 07:40:17 -0400627 if (root_ht && --root_ht->refcnt == 1)
Jakub Kicinski458e7042018-01-24 12:54:23 -0800628 u32_destroy_hnode(tp, root_ht, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if (--tp_c->refcnt == 0) {
631 struct tc_u_hnode *ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
WANG Cong3cd904e2017-08-24 16:51:30 -0700633 hlist_del(&tp_c->hnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
John Fastabend1ce877202014-09-12 20:09:16 -0700635 while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) {
Paolo Abenid7cdee52018-02-05 22:23:01 +0100636 u32_clear_hnode(tp, ht, extack);
John Fastabend1ce877202014-09-12 20:09:16 -0700637 RCU_INIT_POINTER(tp_c->hlist, ht->next);
Paolo Abenid7cdee52018-02-05 22:23:01 +0100638
639 /* u32_destroy_key() will later free ht for us, if it's
640 * still referenced by some knode
641 */
642 if (--ht->refcnt == 0)
643 kfree_rcu(ht, rcu);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Cong Wange7614372017-09-25 10:13:51 -0700646 idr_destroy(&tp_c->handle_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 kfree(tp_c);
648 }
649
650 tp->data = NULL;
651}
652
Alexander Aring571acf22018-01-18 11:20:53 -0500653static int u32_delete(struct tcf_proto *tp, void *arg, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +0200654 bool rtnl_held, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
WANG Cong8113c092017-08-04 21:31:43 -0700656 struct tc_u_hnode *ht = arg;
WANG Cong763dbf62017-04-19 14:21:21 -0700657 struct tc_u_common *tp_c = tp->data;
658 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800660 if (TC_U32_KEY(ht->handle)) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800661 u32_remove_hw_knode(tp, (struct tc_u_knode *)ht, extack);
WANG Cong763dbf62017-04-19 14:21:21 -0700662 ret = u32_delete_key(tp, (struct tc_u_knode *)ht);
663 goto out;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Al Virob44ef842018-10-08 06:22:33 -0400666 if (ht->is_root) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500667 NL_SET_ERR_MSG_MOD(extack, "Not allowed to delete root node");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700671 if (ht->refcnt == 1) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800672 u32_destroy_hnode(tp, ht, extack);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700673 } else {
Alexander Aring4b981db2018-01-18 11:20:55 -0500674 NL_SET_ERR_MSG_MOD(extack, "Can not delete in-use filter");
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700675 return -EBUSY;
676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
WANG Cong763dbf62017-04-19 14:21:21 -0700678out:
Al Viroa0305982018-10-08 06:22:44 -0400679 *last = tp_c->refcnt == 1 && tp_c->knodes == 0;
WANG Cong763dbf62017-04-19 14:21:21 -0700680 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Cong Wange7614372017-09-25 10:13:51 -0700683static u32 gen_new_kid(struct tc_u_hnode *ht, u32 htid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500685 u32 index = htid | 0x800;
Cong Wange7614372017-09-25 10:13:51 -0700686 u32 max = htid | 0xFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500688 if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max, GFP_KERNEL)) {
689 index = htid + 1;
690 if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max,
691 GFP_KERNEL))
692 index = max;
Cong Wange7614372017-09-25 10:13:51 -0700693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500695 return index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800698static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = {
699 [TCA_U32_CLASSID] = { .type = NLA_U32 },
700 [TCA_U32_HASH] = { .type = NLA_U32 },
701 [TCA_U32_LINK] = { .type = NLA_U32 },
702 [TCA_U32_DIVISOR] = { .type = NLA_U32 },
703 [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) },
704 [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ },
705 [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) },
John Fastabend9e8ce792016-02-26 07:54:39 -0800706 [TCA_U32_FLAGS] = { .type = NLA_U32 },
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800707};
708
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000709static int u32_set_parms(struct net *net, struct tcf_proto *tp,
Al Viro8a8065f2018-10-08 06:22:42 -0400710 unsigned long base,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800711 struct tc_u_knode *n, struct nlattr **tb,
Baowen Zhengc86e0202021-12-17 19:16:28 +0100712 struct nlattr *est, u32 flags, u32 fl_flags,
Alexander Aring50a56192018-01-18 11:20:52 -0500713 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
WANG Congb9a24bb2016-08-19 12:36:54 -0700715 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Baowen Zhengc86e0202021-12-17 19:16:28 +0100717 err = tcf_exts_validate_ex(net, tp, tb, est, &n->exts, flags,
718 fl_flags, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (err < 0)
720 return err;
721
Patrick McHardyadd93b62008-01-22 22:11:33 -0800722 if (tb[TCA_U32_LINK]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800723 u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000724 struct tc_u_hnode *ht_down = NULL, *ht_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Alexander Aring4b981db2018-01-18 11:20:55 -0500726 if (TC_U32_KEY(handle)) {
727 NL_SET_ERR_MSG_MOD(extack, "u32 Link handle must be a hash table");
Jiri Pirko705c7092017-08-04 14:29:14 +0200728 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 if (handle) {
Al Viro8a8065f2018-10-08 06:22:42 -0400732 ht_down = u32_lookup_ht(tp->data, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Alexander Aring4b981db2018-01-18 11:20:55 -0500734 if (!ht_down) {
735 NL_SET_ERR_MSG_MOD(extack, "Link hash table not found");
Jiri Pirko705c7092017-08-04 14:29:14 +0200736 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500737 }
Al Viro27594ec2018-10-08 06:22:34 -0400738 if (ht_down->is_root) {
739 NL_SET_ERR_MSG_MOD(extack, "Not linking to root node");
740 return -EINVAL;
741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 ht_down->refcnt++;
743 }
744
John Fastabend1ce877202014-09-12 20:09:16 -0700745 ht_old = rtnl_dereference(n->ht_down);
746 rcu_assign_pointer(n->ht_down, ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000748 if (ht_old)
749 ht_old->refcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Patrick McHardyadd93b62008-01-22 22:11:33 -0800751 if (tb[TCA_U32_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800752 n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 tcf_bind_filter(tp, &n->res, base);
754 }
755
Patrick McHardyadd93b62008-01-22 22:11:33 -0800756 if (tb[TCA_U32_INDEV]) {
WANG Cong2519a602014-01-09 16:14:02 -0800757 int ret;
Alexander Aring1057c552018-01-18 11:20:54 -0500758 ret = tcf_change_indev(net, tb[TCA_U32_INDEV], extack);
WANG Cong2519a602014-01-09 16:14:02 -0800759 if (ret < 0)
Jiri Pirko705c7092017-08-04 14:29:14 +0200760 return -EINVAL;
WANG Cong2519a602014-01-09 16:14:02 -0800761 n->ifindex = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400766static void u32_replace_knode(struct tcf_proto *tp, struct tc_u_common *tp_c,
John Fastabendde5df632014-09-19 21:50:34 -0700767 struct tc_u_knode *n)
768{
769 struct tc_u_knode __rcu **ins;
770 struct tc_u_knode *pins;
771 struct tc_u_hnode *ht;
772
773 if (TC_U32_HTID(n->handle) == TC_U32_ROOT)
774 ht = rtnl_dereference(tp->root);
775 else
776 ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle));
777
778 ins = &ht->ht[TC_U32_HASH(n->handle)];
779
780 /* The node must always exist for it to be replaced if this is not the
781 * case then something went very wrong elsewhere.
782 */
783 for (pins = rtnl_dereference(*ins); ;
784 ins = &pins->next, pins = rtnl_dereference(*ins))
785 if (pins->handle == n->handle)
786 break;
787
Matthew Wilcox234a4622017-11-28 09:56:36 -0500788 idr_replace(&ht->handle_idr, n, n->handle);
John Fastabendde5df632014-09-19 21:50:34 -0700789 RCU_INIT_POINTER(n->next, pins->next);
790 rcu_assign_pointer(*ins, n);
791}
792
Cong Wang14215102019-02-20 21:37:42 -0800793static struct tc_u_knode *u32_init_knode(struct net *net, struct tcf_proto *tp,
John Fastabendde5df632014-09-19 21:50:34 -0700794 struct tc_u_knode *n)
795{
Paolo Abeni058a6c02018-02-02 16:02:22 +0100796 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
John Fastabendde5df632014-09-19 21:50:34 -0700797 struct tc_u32_sel *s = &n->sel;
Paolo Abeni058a6c02018-02-02 16:02:22 +0100798 struct tc_u_knode *new;
John Fastabendde5df632014-09-19 21:50:34 -0700799
Gustavo A. R. Silvac5eb1792020-06-18 09:53:42 -0500800 new = kzalloc(struct_size(new, sel.keys, s->nkeys), GFP_KERNEL);
John Fastabendde5df632014-09-19 21:50:34 -0700801 if (!new)
802 return NULL;
803
804 RCU_INIT_POINTER(new->next, n->next);
805 new->handle = n->handle;
806 RCU_INIT_POINTER(new->ht_up, n->ht_up);
807
John Fastabendde5df632014-09-19 21:50:34 -0700808 new->ifindex = n->ifindex;
John Fastabendde5df632014-09-19 21:50:34 -0700809 new->fshift = n->fshift;
810 new->res = n->res;
John Fastabend9e8ce792016-02-26 07:54:39 -0800811 new->flags = n->flags;
Paolo Abeni058a6c02018-02-02 16:02:22 +0100812 RCU_INIT_POINTER(new->ht_down, ht);
John Fastabendde5df632014-09-19 21:50:34 -0700813
814 /* bump reference count as long as we hold pointer to structure */
Paolo Abeni058a6c02018-02-02 16:02:22 +0100815 if (ht)
816 ht->refcnt++;
John Fastabendde5df632014-09-19 21:50:34 -0700817
818#ifdef CONFIG_CLS_U32_PERF
819 /* Statistics may be incremented by readers during update
820 * so we must keep them in tact. When the node is later destroyed
821 * a special destroy call must be made to not free the pf memory.
822 */
823 new->pf = n->pf;
824#endif
825
826#ifdef CONFIG_CLS_U32_MARK
827 new->val = n->val;
828 new->mask = n->mask;
829 /* Similarly success statistics must be moved as pointers */
830 new->pcpu_success = n->pcpu_success;
831#endif
Gustavo A. R. Silvae512fcf2019-05-01 11:23:15 -0500832 memcpy(&new->sel, s, struct_size(s, keys, s->nkeys));
John Fastabendde5df632014-09-19 21:50:34 -0700833
Cong Wang14215102019-02-20 21:37:42 -0800834 if (tcf_exts_init(&new->exts, net, TCA_U32_ACT, TCA_U32_POLICE)) {
WANG Congb9a24bb2016-08-19 12:36:54 -0700835 kfree(new);
836 return NULL;
837 }
John Fastabendde5df632014-09-19 21:50:34 -0700838
839 return new;
840}
841
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000842static int u32_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600843 struct tcf_proto *tp, unsigned long base, u32 handle,
Cong Wang695176b2021-07-29 16:12:14 -0700844 struct nlattr **tca, void **arg, u32 flags,
Alexander Aring7306db32018-01-18 11:20:51 -0500845 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 struct tc_u_common *tp_c = tp->data;
848 struct tc_u_hnode *ht;
849 struct tc_u_knode *n;
850 struct tc_u32_sel *s;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800851 struct nlattr *opt = tca[TCA_OPTIONS];
852 struct nlattr *tb[TCA_U32_MAX + 1];
Cong Wang695176b2021-07-29 16:12:14 -0700853 u32 htid, userflags = 0;
Kees Cook98c8f122018-08-25 22:58:01 -0700854 size_t sel_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 int err;
856
Alexander Aring4b981db2018-01-18 11:20:55 -0500857 if (!opt) {
858 if (handle) {
859 NL_SET_ERR_MSG_MOD(extack, "Filter handle requires options");
860 return -EINVAL;
861 } else {
862 return 0;
863 }
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Johannes Berg8cb08172019-04-26 14:07:28 +0200866 err = nla_parse_nested_deprecated(tb, TCA_U32_MAX, opt, u32_policy,
867 extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800868 if (err < 0)
869 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700871 if (tb[TCA_U32_FLAGS]) {
Cong Wang695176b2021-07-29 16:12:14 -0700872 userflags = nla_get_u32(tb[TCA_U32_FLAGS]);
873 if (!tc_flags_valid(userflags)) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500874 NL_SET_ERR_MSG_MOD(extack, "Invalid filter flags");
Jakub Kicinski1a0f7d22016-06-06 16:16:47 +0100875 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500876 }
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700877 }
John Fastabend9e8ce792016-02-26 07:54:39 -0800878
WANG Cong8113c092017-08-04 21:31:43 -0700879 n = *arg;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000880 if (n) {
John Fastabendde5df632014-09-19 21:50:34 -0700881 struct tc_u_knode *new;
882
Alexander Aring4b981db2018-01-18 11:20:55 -0500883 if (TC_U32_KEY(n->handle) == 0) {
884 NL_SET_ERR_MSG_MOD(extack, "Key node id cannot be zero");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Cong Wang695176b2021-07-29 16:12:14 -0700888 if ((n->flags ^ userflags) &
Ivan Veceraeb53f7a2018-02-08 16:10:39 +0100889 ~(TCA_CLS_FLAGS_IN_HW | TCA_CLS_FLAGS_NOT_IN_HW)) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500890 NL_SET_ERR_MSG_MOD(extack, "Key node flags do not match passed flags");
John Fastabend9e8ce792016-02-26 07:54:39 -0800891 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500892 }
John Fastabend9e8ce792016-02-26 07:54:39 -0800893
Cong Wang14215102019-02-20 21:37:42 -0800894 new = u32_init_knode(net, tp, n);
John Fastabendde5df632014-09-19 21:50:34 -0700895 if (!new)
896 return -ENOMEM;
897
Al Viro8a8065f2018-10-08 06:22:42 -0400898 err = u32_set_parms(net, tp, base, new, tb,
Baowen Zhengc86e0202021-12-17 19:16:28 +0100899 tca[TCA_RATE], flags, new->flags,
900 extack);
John Fastabendde5df632014-09-19 21:50:34 -0700901
902 if (err) {
Al Virodc07c572018-10-08 06:22:36 -0400903 u32_destroy_key(new, false);
John Fastabendde5df632014-09-19 21:50:34 -0700904 return err;
905 }
906
Quentin Monnet10a47e02018-01-19 17:44:45 -0800907 err = u32_replace_hw_knode(tp, new, flags, extack);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700908 if (err) {
Al Virodc07c572018-10-08 06:22:36 -0400909 u32_destroy_key(new, false);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700910 return err;
911 }
912
Or Gerlitz24d3dc62017-02-16 10:31:15 +0200913 if (!tc_in_hw(new->flags))
914 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
915
John Fastabendde5df632014-09-19 21:50:34 -0700916 u32_replace_knode(tp, tp_c, new);
WANG Conga0efb802014-09-30 16:07:24 -0700917 tcf_unbind_filter(tp, &n->res);
Cong Wang35c55fc2017-11-06 13:47:30 -0800918 tcf_exts_get_net(&n->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700919 tcf_queue_work(&n->rwork, u32_delete_key_work);
John Fastabendde5df632014-09-19 21:50:34 -0700920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
Patrick McHardyadd93b62008-01-22 22:11:33 -0800923 if (tb[TCA_U32_DIVISOR]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000924 unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Al Viro2f0c9822018-10-08 06:22:35 -0400926 if (!is_power_of_2(divisor)) {
927 NL_SET_ERR_MSG_MOD(extack, "Divisor is not a power of 2");
928 return -EINVAL;
929 }
930 if (divisor-- > 0x100) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500931 NL_SET_ERR_MSG_MOD(extack, "Exceeded maximum 256 hash buckets");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500933 }
934 if (TC_U32_KEY(handle)) {
935 NL_SET_ERR_MSG_MOD(extack, "Divisor can only be used on a hash table");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500937 }
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -0500938 ht = kzalloc(struct_size(ht, ht, divisor + 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (ht == NULL)
940 return -ENOBUFS;
Cong Wange7614372017-09-25 10:13:51 -0700941 if (handle == 0) {
942 handle = gen_new_htid(tp->data, ht);
943 if (handle == 0) {
944 kfree(ht);
945 return -ENOMEM;
946 }
947 } else {
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500948 err = idr_alloc_u32(&tp_c->handle_idr, ht, &handle,
949 handle, GFP_KERNEL);
Cong Wange7614372017-09-25 10:13:51 -0700950 if (err) {
951 kfree(ht);
952 return err;
953 }
954 }
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700955 ht->refcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 ht->divisor = divisor;
957 ht->handle = handle;
958 ht->prio = tp->prio;
Cong Wange7614372017-09-25 10:13:51 -0700959 idr_init(&ht->handle_idr);
Cong Wang695176b2021-07-29 16:12:14 -0700960 ht->flags = userflags;
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100961
Cong Wang695176b2021-07-29 16:12:14 -0700962 err = u32_replace_hw_hnode(tp, ht, userflags, extack);
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100963 if (err) {
Matthew Wilcox9c160942017-11-28 09:48:43 -0500964 idr_remove(&tp_c->handle_idr, handle);
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100965 kfree(ht);
966 return err;
967 }
968
John Fastabend1ce877202014-09-12 20:09:16 -0700969 RCU_INIT_POINTER(ht->next, tp_c->hlist);
970 rcu_assign_pointer(tp_c->hlist, ht);
WANG Cong8113c092017-08-04 21:31:43 -0700971 *arg = ht;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return 0;
974 }
975
Patrick McHardyadd93b62008-01-22 22:11:33 -0800976 if (tb[TCA_U32_HASH]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800977 htid = nla_get_u32(tb[TCA_U32_HASH]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (TC_U32_HTID(htid) == TC_U32_ROOT) {
John Fastabend1ce877202014-09-12 20:09:16 -0700979 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 htid = ht->handle;
981 } else {
982 ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid));
Alexander Aring4b981db2018-01-18 11:20:55 -0500983 if (!ht) {
984 NL_SET_ERR_MSG_MOD(extack, "Specified hash table not found");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988 } else {
John Fastabend1ce877202014-09-12 20:09:16 -0700989 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 htid = ht->handle;
991 }
992
Alexander Aring4b981db2018-01-18 11:20:55 -0500993 if (ht->divisor < TC_U32_HASH(htid)) {
994 NL_SET_ERR_MSG_MOD(extack, "Specified hash table buckets exceed configured value");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (handle) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500999 if (TC_U32_HTID(handle) && TC_U32_HTID(handle ^ htid)) {
1000 NL_SET_ERR_MSG_MOD(extack, "Handle specified hash table address mismatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -05001002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 handle = htid | TC_U32_NODE(handle);
Matthew Wilcoxf730cb92017-11-28 13:45:02 -05001004 err = idr_alloc_u32(&ht->handle_idr, NULL, &handle, handle,
Cong Wange7614372017-09-25 10:13:51 -07001005 GFP_KERNEL);
1006 if (err)
1007 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 } else
1009 handle = gen_new_kid(ht, htid);
1010
Cong Wange7614372017-09-25 10:13:51 -07001011 if (tb[TCA_U32_SEL] == NULL) {
Alexander Aring4b981db2018-01-18 11:20:55 -05001012 NL_SET_ERR_MSG_MOD(extack, "Selector not specified");
Cong Wange7614372017-09-25 10:13:51 -07001013 err = -EINVAL;
1014 goto erridr;
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Patrick McHardyadd93b62008-01-22 22:11:33 -08001017 s = nla_data(tb[TCA_U32_SEL]);
Kees Cook98c8f122018-08-25 22:58:01 -07001018 sel_size = struct_size(s, keys, s->nkeys);
1019 if (nla_len(tb[TCA_U32_SEL]) < sel_size) {
1020 err = -EINVAL;
1021 goto erridr;
1022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001024 n = kzalloc(struct_size(n, sel.keys, s->nkeys), GFP_KERNEL);
Cong Wange7614372017-09-25 10:13:51 -07001025 if (n == NULL) {
1026 err = -ENOBUFS;
1027 goto erridr;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#ifdef CONFIG_CLS_U32_PERF
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001031 n->pf = __alloc_percpu(struct_size(n->pf, kcnts, s->nkeys),
1032 __alignof__(struct tc_u32_pcnt));
John Fastabend459d5f62014-09-12 20:08:47 -07001033 if (!n->pf) {
Cong Wange7614372017-09-25 10:13:51 -07001034 err = -ENOBUFS;
1035 goto errfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037#endif
1038
Kees Cook98c8f122018-08-25 22:58:01 -07001039 memcpy(&n->sel, s, sel_size);
John Fastabenda96366bf2014-09-15 23:30:49 -07001040 RCU_INIT_POINTER(n->ht_up, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 n->handle = handle;
Radu Rendecb2268012007-11-10 21:54:50 -08001042 n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0;
Cong Wang695176b2021-07-29 16:12:14 -07001043 n->flags = userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Cong Wang14215102019-02-20 21:37:42 -08001045 err = tcf_exts_init(&n->exts, net, TCA_U32_ACT, TCA_U32_POLICE);
WANG Congb9a24bb2016-08-19 12:36:54 -07001046 if (err < 0)
1047 goto errout;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -07001050 n->pcpu_success = alloc_percpu(u32);
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001051 if (!n->pcpu_success) {
1052 err = -ENOMEM;
1053 goto errout;
1054 }
John Fastabend459d5f62014-09-12 20:08:47 -07001055
Patrick McHardyadd93b62008-01-22 22:11:33 -08001056 if (tb[TCA_U32_MARK]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct tc_u32_mark *mark;
1058
Patrick McHardyadd93b62008-01-22 22:11:33 -08001059 mark = nla_data(tb[TCA_U32_MARK]);
John Fastabend459d5f62014-09-12 20:08:47 -07001060 n->val = mark->val;
1061 n->mask = mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063#endif
1064
Baowen Zhengc86e0202021-12-17 19:16:28 +01001065 err = u32_set_parms(net, tp, base, n, tb, tca[TCA_RATE],
1066 flags, n->flags, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (err == 0) {
John Fastabend1ce877202014-09-12 20:09:16 -07001068 struct tc_u_knode __rcu **ins;
1069 struct tc_u_knode *pins;
1070
Quentin Monnet10a47e02018-01-19 17:44:45 -08001071 err = u32_replace_hw_knode(tp, n, flags, extack);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -07001072 if (err)
1073 goto errhw;
1074
Or Gerlitz24d3dc62017-02-16 10:31:15 +02001075 if (!tc_in_hw(n->flags))
1076 n->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
1077
John Fastabend1ce877202014-09-12 20:09:16 -07001078 ins = &ht->ht[TC_U32_HASH(handle)];
1079 for (pins = rtnl_dereference(*ins); pins;
1080 ins = &pins->next, pins = rtnl_dereference(*ins))
1081 if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 break;
1083
John Fastabend1ce877202014-09-12 20:09:16 -07001084 RCU_INIT_POINTER(n->next, pins);
1085 rcu_assign_pointer(*ins, n);
Al Virob245d322018-10-08 06:22:43 -04001086 tp_c->knodes++;
WANG Cong8113c092017-08-04 21:31:43 -07001087 *arg = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 0;
1089 }
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001090
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -07001091errhw:
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001092#ifdef CONFIG_CLS_U32_MARK
1093 free_percpu(n->pcpu_success);
1094#endif
1095
WANG Congb9a24bb2016-08-19 12:36:54 -07001096errout:
1097 tcf_exts_destroy(&n->exts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098#ifdef CONFIG_CLS_U32_PERF
Cong Wange7614372017-09-25 10:13:51 -07001099errfree:
John Fastabend1ce877202014-09-12 20:09:16 -07001100 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101#endif
1102 kfree(n);
Cong Wange7614372017-09-25 10:13:51 -07001103erridr:
Matthew Wilcox9c160942017-11-28 09:48:43 -05001104 idr_remove(&ht->handle_idr, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return err;
1106}
1107
Vlad Buslov12db03b2019-02-11 10:55:45 +02001108static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg,
1109 bool rtnl_held)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 struct tc_u_common *tp_c = tp->data;
1112 struct tc_u_hnode *ht;
1113 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001114 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 if (arg->stop)
1117 return;
1118
John Fastabend1ce877202014-09-12 20:09:16 -07001119 for (ht = rtnl_dereference(tp_c->hlist);
1120 ht;
1121 ht = rtnl_dereference(ht->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (ht->prio != tp->prio)
1123 continue;
1124 if (arg->count >= arg->skip) {
WANG Cong8113c092017-08-04 21:31:43 -07001125 if (arg->fn(tp, ht, arg) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 arg->stop = 1;
1127 return;
1128 }
1129 }
1130 arg->count++;
1131 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce877202014-09-12 20:09:16 -07001132 for (n = rtnl_dereference(ht->ht[h]);
1133 n;
1134 n = rtnl_dereference(n->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (arg->count < arg->skip) {
1136 arg->count++;
1137 continue;
1138 }
WANG Cong8113c092017-08-04 21:31:43 -07001139 if (arg->fn(tp, n, arg) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 arg->stop = 1;
1141 return;
1142 }
1143 arg->count++;
1144 }
1145 }
1146 }
1147}
1148
John Hurley530d9952018-06-25 14:30:08 -07001149static int u32_reoffload_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001150 bool add, flow_setup_cb_t *cb, void *cb_priv,
John Hurley530d9952018-06-25 14:30:08 -07001151 struct netlink_ext_ack *extack)
1152{
1153 struct tc_cls_u32_offload cls_u32 = {};
1154 int err;
1155
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -07001156 tc_cls_common_offload_init(&cls_u32.common, tp, ht->flags, extack);
John Hurley530d9952018-06-25 14:30:08 -07001157 cls_u32.command = add ? TC_CLSU32_NEW_HNODE : TC_CLSU32_DELETE_HNODE;
1158 cls_u32.hnode.divisor = ht->divisor;
1159 cls_u32.hnode.handle = ht->handle;
1160 cls_u32.hnode.prio = ht->prio;
1161
1162 err = cb(TC_SETUP_CLSU32, &cls_u32, cb_priv);
1163 if (err && add && tc_skip_sw(ht->flags))
1164 return err;
1165
1166 return 0;
1167}
1168
1169static int u32_reoffload_knode(struct tcf_proto *tp, struct tc_u_knode *n,
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001170 bool add, flow_setup_cb_t *cb, void *cb_priv,
John Hurley530d9952018-06-25 14:30:08 -07001171 struct netlink_ext_ack *extack)
1172{
1173 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
1174 struct tcf_block *block = tp->chain->block;
1175 struct tc_cls_u32_offload cls_u32 = {};
John Hurley530d9952018-06-25 14:30:08 -07001176
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -07001177 tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack);
John Hurley530d9952018-06-25 14:30:08 -07001178 cls_u32.command = add ?
1179 TC_CLSU32_REPLACE_KNODE : TC_CLSU32_DELETE_KNODE;
1180 cls_u32.knode.handle = n->handle;
1181
1182 if (add) {
1183 cls_u32.knode.fshift = n->fshift;
1184#ifdef CONFIG_CLS_U32_MARK
1185 cls_u32.knode.val = n->val;
1186 cls_u32.knode.mask = n->mask;
1187#else
1188 cls_u32.knode.val = 0;
1189 cls_u32.knode.mask = 0;
1190#endif
1191 cls_u32.knode.sel = &n->sel;
Jakub Kicinski068ceb32018-11-19 15:21:46 -08001192 cls_u32.knode.res = &n->res;
John Hurley530d9952018-06-25 14:30:08 -07001193 cls_u32.knode.exts = &n->exts;
1194 if (n->ht_down)
1195 cls_u32.knode.link_handle = ht->handle;
1196 }
1197
Zheng Yongjun57b06372020-12-08 20:08:22 +08001198 return tc_setup_cb_reoffload(block, tp, add, cb, TC_SETUP_CLSU32,
1199 &cls_u32, cb_priv, &n->flags,
1200 &n->in_hw_count);
John Hurley530d9952018-06-25 14:30:08 -07001201}
1202
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001203static int u32_reoffload(struct tcf_proto *tp, bool add, flow_setup_cb_t *cb,
John Hurley530d9952018-06-25 14:30:08 -07001204 void *cb_priv, struct netlink_ext_ack *extack)
1205{
1206 struct tc_u_common *tp_c = tp->data;
1207 struct tc_u_hnode *ht;
1208 struct tc_u_knode *n;
1209 unsigned int h;
1210 int err;
1211
1212 for (ht = rtnl_dereference(tp_c->hlist);
1213 ht;
1214 ht = rtnl_dereference(ht->next)) {
1215 if (ht->prio != tp->prio)
1216 continue;
1217
1218 /* When adding filters to a new dev, try to offload the
1219 * hashtable first. When removing, do the filters before the
1220 * hashtable.
1221 */
1222 if (add && !tc_skip_hw(ht->flags)) {
1223 err = u32_reoffload_hnode(tp, ht, add, cb, cb_priv,
1224 extack);
1225 if (err)
1226 return err;
1227 }
1228
1229 for (h = 0; h <= ht->divisor; h++) {
1230 for (n = rtnl_dereference(ht->ht[h]);
1231 n;
1232 n = rtnl_dereference(n->next)) {
1233 if (tc_skip_hw(n->flags))
1234 continue;
1235
1236 err = u32_reoffload_knode(tp, n, add, cb,
1237 cb_priv, extack);
1238 if (err)
1239 return err;
1240 }
1241 }
1242
1243 if (!add && !tc_skip_hw(ht->flags))
1244 u32_reoffload_hnode(tp, ht, add, cb, cb_priv, extack);
1245 }
1246
1247 return 0;
1248}
1249
Cong Wang2e24cd72020-01-23 16:26:18 -08001250static void u32_bind_class(void *fh, u32 classid, unsigned long cl, void *q,
1251 unsigned long base)
Cong Wang07d79fc2017-08-30 14:30:36 -07001252{
1253 struct tc_u_knode *n = fh;
1254
Cong Wang2e24cd72020-01-23 16:26:18 -08001255 if (n && n->res.classid == classid) {
1256 if (cl)
1257 __tcf_bind_filter(q, &n->res, base);
1258 else
1259 __tcf_unbind_filter(q, &n->res);
1260 }
Cong Wang07d79fc2017-08-30 14:30:36 -07001261}
1262
WANG Cong8113c092017-08-04 21:31:43 -07001263static int u32_dump(struct net *net, struct tcf_proto *tp, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001264 struct sk_buff *skb, struct tcmsg *t, bool rtnl_held)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
WANG Cong8113c092017-08-04 21:31:43 -07001266 struct tc_u_knode *n = fh;
John Fastabend1ce877202014-09-12 20:09:16 -07001267 struct tc_u_hnode *ht_up, *ht_down;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001268 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 if (n == NULL)
1271 return skb->len;
1272
1273 t->tcm_handle = n->handle;
1274
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001275 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001276 if (nest == NULL)
1277 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 if (TC_U32_KEY(n->handle) == 0) {
WANG Cong8113c092017-08-04 21:31:43 -07001280 struct tc_u_hnode *ht = fh;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001281 u32 divisor = ht->divisor + 1;
1282
David S. Miller1b34ec42012-03-29 05:11:39 -04001283 if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor))
1284 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 } else {
John Fastabend459d5f62014-09-12 20:08:47 -07001286#ifdef CONFIG_CLS_U32_PERF
1287 struct tc_u32_pcnt *gpf;
John Fastabend459d5f62014-09-12 20:08:47 -07001288 int cpu;
John Fastabend80aab732014-09-15 23:30:26 -07001289#endif
John Fastabend459d5f62014-09-12 20:08:47 -07001290
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001291 if (nla_put(skb, TCA_U32_SEL, struct_size(&n->sel, keys, n->sel.nkeys),
David S. Miller1b34ec42012-03-29 05:11:39 -04001292 &n->sel))
1293 goto nla_put_failure;
John Fastabend1ce877202014-09-12 20:09:16 -07001294
1295 ht_up = rtnl_dereference(n->ht_up);
1296 if (ht_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 u32 htid = n->handle & 0xFFFFF000;
David S. Miller1b34ec42012-03-29 05:11:39 -04001298 if (nla_put_u32(skb, TCA_U32_HASH, htid))
1299 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
David S. Miller1b34ec42012-03-29 05:11:39 -04001301 if (n->res.classid &&
1302 nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid))
1303 goto nla_put_failure;
John Fastabend1ce877202014-09-12 20:09:16 -07001304
1305 ht_down = rtnl_dereference(n->ht_down);
1306 if (ht_down &&
1307 nla_put_u32(skb, TCA_U32_LINK, ht_down->handle))
David S. Miller1b34ec42012-03-29 05:11:39 -04001308 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
John Fastabend9e8ce792016-02-26 07:54:39 -08001310 if (n->flags && nla_put_u32(skb, TCA_U32_FLAGS, n->flags))
1311 goto nla_put_failure;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -07001314 if ((n->val || n->mask)) {
1315 struct tc_u32_mark mark = {.val = n->val,
1316 .mask = n->mask,
1317 .success = 0};
John Fastabend80aab732014-09-15 23:30:26 -07001318 int cpum;
John Fastabend459d5f62014-09-12 20:08:47 -07001319
John Fastabend80aab732014-09-15 23:30:26 -07001320 for_each_possible_cpu(cpum) {
1321 __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum);
John Fastabend459d5f62014-09-12 20:08:47 -07001322
1323 mark.success += cnt;
1324 }
1325
1326 if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark))
1327 goto nla_put_failure;
1328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329#endif
1330
WANG Cong5da57f42013-12-15 20:15:07 -08001331 if (tcf_exts_dump(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001332 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
WANG Cong2519a602014-01-09 16:14:02 -08001334 if (n->ifindex) {
1335 struct net_device *dev;
1336 dev = __dev_get_by_index(net, n->ifindex);
1337 if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name))
1338 goto nla_put_failure;
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340#ifdef CONFIG_CLS_U32_PERF
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001341 gpf = kzalloc(struct_size(gpf, kcnts, n->sel.nkeys), GFP_KERNEL);
John Fastabend459d5f62014-09-12 20:08:47 -07001342 if (!gpf)
1343 goto nla_put_failure;
1344
1345 for_each_possible_cpu(cpu) {
1346 int i;
1347 struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu);
1348
1349 gpf->rcnt += pf->rcnt;
1350 gpf->rhit += pf->rhit;
1351 for (i = 0; i < n->sel.nkeys; i++)
1352 gpf->kcnts[i] += pf->kcnts[i];
1353 }
1354
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001355 if (nla_put_64bit(skb, TCA_U32_PCNT, struct_size(gpf, kcnts, n->sel.nkeys),
Nicolas Dichtel9854518e2016-04-26 10:06:18 +02001356 gpf, TCA_U32_PAD)) {
John Fastabend459d5f62014-09-12 20:08:47 -07001357 kfree(gpf);
David S. Miller1b34ec42012-03-29 05:11:39 -04001358 goto nla_put_failure;
John Fastabend459d5f62014-09-12 20:08:47 -07001359 }
1360 kfree(gpf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361#endif
1362 }
1363
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001364 nla_nest_end(skb, nest);
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (TC_U32_KEY(n->handle))
WANG Cong5da57f42013-12-15 20:15:07 -08001367 if (tcf_exts_dump_stats(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001368 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return skb->len;
1370
Patrick McHardyadd93b62008-01-22 22:11:33 -08001371nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001372 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return -1;
1374}
1375
Patrick McHardy2eb9d752008-01-22 22:10:42 -08001376static struct tcf_proto_ops cls_u32_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .kind = "u32",
1378 .classify = u32_classify,
1379 .init = u32_init,
1380 .destroy = u32_destroy,
1381 .get = u32_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 .change = u32_change,
1383 .delete = u32_delete,
1384 .walk = u32_walk,
John Hurley530d9952018-06-25 14:30:08 -07001385 .reoffload = u32_reoffload,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 .dump = u32_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -07001387 .bind_class = u32_bind_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 .owner = THIS_MODULE,
1389};
1390
1391static int __init init_u32(void)
1392{
WANG Cong3cd904e2017-08-24 16:51:30 -07001393 int i, ret;
1394
stephen hemminger6ff9c362010-05-12 06:37:05 +00001395 pr_info("u32 classifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396#ifdef CONFIG_CLS_U32_PERF
stephen hemminger6ff9c362010-05-12 06:37:05 +00001397 pr_info(" Performance counters on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398#endif
stephen hemminger6ff9c362010-05-12 06:37:05 +00001399 pr_info(" input device check on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400#ifdef CONFIG_NET_CLS_ACT
stephen hemminger6ff9c362010-05-12 06:37:05 +00001401 pr_info(" Actions configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#endif
WANG Cong3cd904e2017-08-24 16:51:30 -07001403 tc_u_common_hash = kvmalloc_array(U32_HASH_SIZE,
1404 sizeof(struct hlist_head),
1405 GFP_KERNEL);
1406 if (!tc_u_common_hash)
1407 return -ENOMEM;
1408
1409 for (i = 0; i < U32_HASH_SIZE; i++)
1410 INIT_HLIST_HEAD(&tc_u_common_hash[i]);
1411
1412 ret = register_tcf_proto_ops(&cls_u32_ops);
1413 if (ret)
1414 kvfree(tc_u_common_hash);
1415 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001418static void __exit exit_u32(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
1420 unregister_tcf_proto_ops(&cls_u32_ops);
WANG Cong3cd904e2017-08-24 16:51:30 -07001421 kvfree(tc_u_common_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424module_init(init_u32)
1425module_exit(exit_u32)
1426MODULE_LICENSE("GPL");