blob: 9412d88a99bc1225bdc0a655f3dbd5c5f159615a [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>
Pedro Tammela9f3101d2022-12-06 10:55:13 -030042#include <net/tc_wrapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Eric Dumazetcc7ec452011-01-19 19:26:56 +000044struct tc_u_knode {
John Fastabend1ce877202014-09-12 20:09:16 -070045 struct tc_u_knode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 u32 handle;
John Fastabend1ce877202014-09-12 20:09:16 -070047 struct tc_u_hnode __rcu *ht_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct tcf_exts exts;
WANG Cong2519a602014-01-09 16:14:02 -080049 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 u8 fshift;
51 struct tcf_result res;
John Fastabend1ce877202014-09-12 20:09:16 -070052 struct tc_u_hnode __rcu *ht_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -070054 struct tc_u32_pcnt __percpu *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
John Fastabend9e8ce792016-02-26 07:54:39 -080056 u32 flags;
John Hurley530d9952018-06-25 14:30:08 -070057 unsigned int in_hw_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -070059 u32 val;
60 u32 mask;
61 u32 __percpu *pcpu_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
Cong Wangaaa908f2018-05-23 15:26:53 -070063 struct rcu_work rwork;
John Fastabend4e2840e2014-09-17 11:11:46 -070064 /* The 'sel' field MUST be the last field in structure to allow for
65 * tc_u32_keys allocated at end of structure.
66 */
67 struct tc_u32_sel sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Eric Dumazetcc7ec452011-01-19 19:26:56 +000070struct tc_u_hnode {
John Fastabend1ce877202014-09-12 20:09:16 -070071 struct tc_u_hnode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 u32 handle;
73 u32 prio;
Pedro Tammela6b78deb2023-11-14 11:18:55 -030074 refcount_t refcnt;
Eric Dumazetcc7ec452011-01-19 19:26:56 +000075 unsigned int divisor;
Cong Wange7614372017-09-25 10:13:51 -070076 struct idr handle_idr;
Al Virob44ef842018-10-08 06:22:33 -040077 bool is_root;
John Fastabend1ce877202014-09-12 20:09:16 -070078 struct rcu_head rcu;
Jakub Kicinskif40fe582018-01-24 12:54:22 -080079 u32 flags;
WANG Cong5778d392015-03-09 17:03:40 -070080 /* The 'ht' field MUST be the last field in structure to allow for
81 * more entries allocated at end of structure.
82 */
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -050083 struct tc_u_knode __rcu *ht[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Eric Dumazetcc7ec452011-01-19 19:26:56 +000086struct tc_u_common {
John Fastabend1ce877202014-09-12 20:09:16 -070087 struct tc_u_hnode __rcu *hlist;
Jiri Pirko339c21d2018-02-13 12:00:17 +010088 void *ptr;
Pedro Tammela6b78deb2023-11-14 11:18:55 -030089 refcount_t refcnt;
Cong Wange7614372017-09-25 10:13:51 -070090 struct idr handle_idr;
WANG Cong3cd904e2017-08-24 16:51:30 -070091 struct hlist_node hnode;
Al Virob245d322018-10-08 06:22:43 -040092 long knodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
Eric Dumazetcc7ec452011-01-19 19:26:56 +000095static inline unsigned int u32_hash_fold(__be32 key,
96 const struct tc_u32_sel *sel,
97 u8 fshift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000099 unsigned int h = ntohl(key & sel->hmask) >> fshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 return h;
102}
103
Pedro Tammela9f3101d2022-12-06 10:55:13 -0300104TC_INDIRECT_SCOPE int u32_classify(struct sk_buff *skb,
105 const struct tcf_proto *tp,
106 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 struct {
109 struct tc_u_knode *knode;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700110 unsigned int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } stack[TC_U32_MAXDEPTH];
112
John Fastabend1ce877202014-09-12 20:09:16 -0700113 struct tc_u_hnode *ht = rcu_dereference_bh(tp->root);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700114 unsigned int off = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct tc_u_knode *n;
116 int sdepth = 0;
117 int off2 = 0;
118 int sel = 0;
119#ifdef CONFIG_CLS_U32_PERF
120 int j;
121#endif
122 int i, r;
123
124next_ht:
John Fastabend1ce877202014-09-12 20:09:16 -0700125 n = rcu_dereference_bh(ht->ht[sel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127next_knode:
128 if (n) {
129 struct tc_u32_key *key = n->sel.keys;
130
131#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700132 __this_cpu_inc(n->pf->rcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 j = 0;
134#endif
135
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700136 if (tc_skip_sw(n->flags)) {
137 n = rcu_dereference_bh(n->next);
138 goto next_knode;
139 }
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700142 if ((skb->mark & n->mask) != n->val) {
John Fastabend1ce877202014-09-12 20:09:16 -0700143 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 goto next_knode;
145 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700146 __this_cpu_inc(*n->pcpu_success);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148#endif
149
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000150 for (i = n->sel.nkeys; i > 0; i--, key++) {
stephen hemminger66d50d22010-08-02 13:44:13 +0000151 int toff = off + key->off + (off2 & key->offmask);
stephen hemminger86fce3b2011-02-20 16:14:23 +0000152 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Dan Carpenter4e18b3e2010-10-04 02:28:36 +0000154 if (skb_headroom(skb) + toff > INT_MAX)
stephen hemminger66d50d22010-08-02 13:44:13 +0000155 goto out;
156
stephen hemminger86fce3b2011-02-20 16:14:23 +0000157 data = skb_header_pointer(skb, toff, 4, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700158 if (!data)
159 goto out;
160 if ((*data ^ key->val) & key->mask) {
John Fastabend1ce877202014-09-12 20:09:16 -0700161 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 goto next_knode;
163 }
164#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700165 __this_cpu_inc(n->pf->kcnts[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 j++;
167#endif
168 }
John Fastabend1ce877202014-09-12 20:09:16 -0700169
170 ht = rcu_dereference_bh(n->ht_down);
171 if (!ht) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172check_terminal:
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000173 if (n->sel.flags & TC_U32_TERMINAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 *res = n->res;
WANG Cong2519a602014-01-09 16:14:02 -0800176 if (!tcf_match_indev(skb, n->ifindex)) {
John Fastabend1ce877202014-09-12 20:09:16 -0700177 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 goto next_knode;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700181 __this_cpu_inc(n->pf->rhit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#endif
183 r = tcf_exts_exec(skb, &n->exts, res);
184 if (r < 0) {
John Fastabend1ce877202014-09-12 20:09:16 -0700185 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 goto next_knode;
187 }
188
189 return r;
190 }
John Fastabend1ce877202014-09-12 20:09:16 -0700191 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto next_knode;
193 }
194
195 /* PUSH */
196 if (sdepth >= TC_U32_MAXDEPTH)
197 goto deadloop;
198 stack[sdepth].knode = n;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700199 stack[sdepth].off = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 sdepth++;
201
John Fastabend1ce877202014-09-12 20:09:16 -0700202 ht = rcu_dereference_bh(n->ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 sel = 0;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700204 if (ht->divisor) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000205 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700207 data = skb_header_pointer(skb, off + n->sel.hoff, 4,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000208 &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700209 if (!data)
210 goto out;
211 sel = ht->divisor & u32_hash_fold(*data, &n->sel,
212 n->fshift);
213 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000214 if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 goto next_ht;
216
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000217 if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 off2 = n->sel.off + 3;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700219 if (n->sel.flags & TC_U32_VAROFFSET) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000220 __be16 *data, hdata;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700221
222 data = skb_header_pointer(skb,
223 off + n->sel.offoff,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000224 2, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700225 if (!data)
226 goto out;
227 off2 += ntohs(n->sel.offmask & *data) >>
228 n->sel.offshift;
229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 off2 &= ~3;
231 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000232 if (n->sel.flags & TC_U32_EAT) {
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700233 off += off2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 off2 = 0;
235 }
236
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700237 if (off < skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto next_ht;
239 }
240
241 /* POP */
242 if (sdepth--) {
243 n = stack[sdepth].knode;
John Fastabend1ce877202014-09-12 20:09:16 -0700244 ht = rcu_dereference_bh(n->ht_up);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700245 off = stack[sdepth].off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 goto check_terminal;
247 }
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700248out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return -1;
250
251deadloop:
Joe Perchese87cc472012-05-13 21:56:26 +0000252 net_warn_ratelimited("cls_u32: dead loop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return -1;
254}
255
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400256static struct tc_u_hnode *u32_lookup_ht(struct tc_u_common *tp_c, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct tc_u_hnode *ht;
259
John Fastabend1ce877202014-09-12 20:09:16 -0700260 for (ht = rtnl_dereference(tp_c->hlist);
261 ht;
262 ht = rtnl_dereference(ht->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (ht->handle == handle)
264 break;
265
266 return ht;
267}
268
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400269static struct tc_u_knode *u32_lookup_key(struct tc_u_hnode *ht, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000271 unsigned int sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct tc_u_knode *n = NULL;
273
274 sel = TC_U32_HASH(handle);
275 if (sel > ht->divisor)
276 goto out;
277
John Fastabend1ce877202014-09-12 20:09:16 -0700278 for (n = rtnl_dereference(ht->ht[sel]);
279 n;
280 n = rtnl_dereference(n->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (n->handle == handle)
282 break;
283out:
284 return n;
285}
286
287
WANG Cong8113c092017-08-04 21:31:43 -0700288static void *u32_get(struct tcf_proto *tp, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct tc_u_hnode *ht;
291 struct tc_u_common *tp_c = tp->data;
292
293 if (TC_U32_HTID(handle) == TC_U32_ROOT)
John Fastabend1ce877202014-09-12 20:09:16 -0700294 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 else
296 ht = u32_lookup_ht(tp_c, TC_U32_HTID(handle));
297
298 if (!ht)
WANG Cong8113c092017-08-04 21:31:43 -0700299 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (TC_U32_KEY(handle) == 0)
WANG Cong8113c092017-08-04 21:31:43 -0700302 return ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
WANG Cong8113c092017-08-04 21:31:43 -0700304 return u32_lookup_key(ht, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500307/* Protected by rtnl lock */
Cong Wange7614372017-09-25 10:13:51 -0700308static u32 gen_new_htid(struct tc_u_common *tp_c, struct tc_u_hnode *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500310 int id = idr_alloc_cyclic(&tp_c->handle_idr, ptr, 1, 0x7FF, GFP_KERNEL);
311 if (id < 0)
Cong Wange7614372017-09-25 10:13:51 -0700312 return 0;
Matthew Wilcoxffdc2d92017-11-28 12:05:54 -0500313 return (id | 0x800U) << 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
WANG Cong3cd904e2017-08-24 16:51:30 -0700316static struct hlist_head *tc_u_common_hash;
317
318#define U32_HASH_SHIFT 10
319#define U32_HASH_SIZE (1 << U32_HASH_SHIFT)
320
Jiri Pirko339c21d2018-02-13 12:00:17 +0100321static void *tc_u_common_ptr(const struct tcf_proto *tp)
322{
323 struct tcf_block *block = tp->chain->block;
324
325 /* The block sharing is currently supported only
326 * for classless qdiscs. In that case we use block
327 * for tc_u_common identification. In case the
328 * block is not shared, block->q is a valid pointer
329 * and we can use that. That works for classful qdiscs.
330 */
331 if (tcf_block_shared(block))
332 return block;
333 else
334 return block->q;
335}
336
Al Viro4895c422018-10-08 06:22:39 -0400337static struct hlist_head *tc_u_hash(void *key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700338{
Al Viro4895c422018-10-08 06:22:39 -0400339 return tc_u_common_hash + hash_ptr(key, U32_HASH_SHIFT);
WANG Cong3cd904e2017-08-24 16:51:30 -0700340}
341
Al Viro4895c422018-10-08 06:22:39 -0400342static struct tc_u_common *tc_u_common_find(void *key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700343{
344 struct tc_u_common *tc;
Al Viro4895c422018-10-08 06:22:39 -0400345 hlist_for_each_entry(tc, tc_u_hash(key), hnode) {
346 if (tc->ptr == key)
WANG Cong3cd904e2017-08-24 16:51:30 -0700347 return tc;
348 }
349 return NULL;
350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352static int u32_init(struct tcf_proto *tp)
353{
354 struct tc_u_hnode *root_ht;
Al Viro4895c422018-10-08 06:22:39 -0400355 void *key = tc_u_common_ptr(tp);
356 struct tc_u_common *tp_c = tc_u_common_find(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -0500358 root_ht = kzalloc(struct_size(root_ht, ht, 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (root_ht == NULL)
360 return -ENOBUFS;
361
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300362 refcount_set(&root_ht->refcnt, 1);
Cong Wange7614372017-09-25 10:13:51 -0700363 root_ht->handle = tp_c ? gen_new_htid(tp_c, root_ht) : 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 root_ht->prio = tp->prio;
Al Virob44ef842018-10-08 06:22:33 -0400365 root_ht->is_root = true;
Cong Wange7614372017-09-25 10:13:51 -0700366 idr_init(&root_ht->handle_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (tp_c == NULL) {
Gustavo A. R. Silvac4d49192023-10-04 15:19:37 +0200369 tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (tp_c == NULL) {
371 kfree(root_ht);
372 return -ENOBUFS;
373 }
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300374 refcount_set(&tp_c->refcnt, 1);
Al Viro4895c422018-10-08 06:22:39 -0400375 tp_c->ptr = key;
WANG Cong3cd904e2017-08-24 16:51:30 -0700376 INIT_HLIST_NODE(&tp_c->hnode);
Cong Wange7614372017-09-25 10:13:51 -0700377 idr_init(&tp_c->handle_idr);
WANG Cong3cd904e2017-08-24 16:51:30 -0700378
Al Viro4895c422018-10-08 06:22:39 -0400379 hlist_add_head(&tp_c->hnode, tc_u_hash(key));
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300380 } else {
381 refcount_inc(&tp_c->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
John Fastabend1ce877202014-09-12 20:09:16 -0700384 RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
385 rcu_assign_pointer(tp_c->hlist, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300387 /* root_ht must be destroyed when tcf_proto is destroyed */
John Fastabend1ce877202014-09-12 20:09:16 -0700388 rcu_assign_pointer(tp->root, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 tp->data = tp_c;
390 return 0;
391}
392
Eric Dumazet3db09e72022-04-13 10:35:41 -0700393static void __u32_destroy_key(struct tc_u_knode *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Paolo Abenid7cdee52018-02-05 22:23:01 +0100395 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
396
WANG Cong18d02642014-09-25 10:26:37 -0700397 tcf_exts_destroy(&n->exts);
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300398 if (ht && refcount_dec_and_test(&ht->refcnt))
Paolo Abenid7cdee52018-02-05 22:23:01 +0100399 kfree(ht);
Eric Dumazet3db09e72022-04-13 10:35:41 -0700400 kfree(n);
401}
402
403static void u32_destroy_key(struct tc_u_knode *n, bool free_pf)
404{
405 tcf_exts_put_net(&n->exts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#ifdef CONFIG_CLS_U32_PERF
John Fastabendde5df632014-09-19 21:50:34 -0700407 if (free_pf)
408 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#endif
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700410#ifdef CONFIG_CLS_U32_MARK
John Fastabendde5df632014-09-19 21:50:34 -0700411 if (free_pf)
412 free_percpu(n->pcpu_success);
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700413#endif
Eric Dumazet3db09e72022-04-13 10:35:41 -0700414 __u32_destroy_key(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
John Fastabendde5df632014-09-19 21:50:34 -0700417/* u32_delete_key_rcu should be called when free'ing a copied
418 * version of a tc_u_knode obtained from u32_init_knode(). When
419 * copies are obtained from u32_init_knode() the statistics are
420 * shared between the old and new copies to allow readers to
421 * continue to update the statistics during the copy. To support
422 * this the u32_delete_key_rcu variant does not free the percpu
423 * statistics.
424 */
Cong Wangc0d378e2017-10-26 18:24:36 -0700425static void u32_delete_key_work(struct work_struct *work)
426{
Cong Wangaaa908f2018-05-23 15:26:53 -0700427 struct tc_u_knode *key = container_of(to_rcu_work(work),
428 struct tc_u_knode,
429 rwork);
Cong Wangc0d378e2017-10-26 18:24:36 -0700430 rtnl_lock();
Al Virodc07c572018-10-08 06:22:36 -0400431 u32_destroy_key(key, false);
Cong Wangc0d378e2017-10-26 18:24:36 -0700432 rtnl_unlock();
433}
434
John Fastabendde5df632014-09-19 21:50:34 -0700435/* u32_delete_key_freepf_rcu is the rcu callback variant
436 * that free's the entire structure including the statistics
437 * percpu variables. Only use this if the key is not a copy
438 * returned by u32_init_knode(). See u32_delete_key_rcu()
439 * for the variant that should be used with keys return from
440 * u32_init_knode()
441 */
Cong Wangc0d378e2017-10-26 18:24:36 -0700442static void u32_delete_key_freepf_work(struct work_struct *work)
443{
Cong Wangaaa908f2018-05-23 15:26:53 -0700444 struct tc_u_knode *key = container_of(to_rcu_work(work),
445 struct tc_u_knode,
446 rwork);
Cong Wangc0d378e2017-10-26 18:24:36 -0700447 rtnl_lock();
Al Virodc07c572018-10-08 06:22:36 -0400448 u32_destroy_key(key, true);
Cong Wangc0d378e2017-10-26 18:24:36 -0700449 rtnl_unlock();
450}
451
Yang Yingliang82d567c2013-12-10 20:55:31 +0800452static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Al Virob245d322018-10-08 06:22:43 -0400454 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700455 struct tc_u_knode __rcu **kp;
456 struct tc_u_knode *pkp;
John Fastabenda96366bf2014-09-15 23:30:49 -0700457 struct tc_u_hnode *ht = rtnl_dereference(key->ht_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (ht) {
John Fastabend1ce877202014-09-12 20:09:16 -0700460 kp = &ht->ht[TC_U32_HASH(key->handle)];
461 for (pkp = rtnl_dereference(*kp); pkp;
462 kp = &pkp->next, pkp = rtnl_dereference(*kp)) {
463 if (pkp == key) {
464 RCU_INIT_POINTER(*kp, key->next);
Al Virob245d322018-10-08 06:22:43 -0400465 tp_c->knodes--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
WANG Conga0efb802014-09-30 16:07:24 -0700467 tcf_unbind_filter(tp, &key->res);
Cong Wangf12c6432018-04-06 17:19:41 -0700468 idr_remove(&ht->handle_idr, key->handle);
Cong Wang35c55fc2017-11-06 13:47:30 -0800469 tcf_exts_get_net(&key->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700470 tcf_queue_work(&key->rwork, u32_delete_key_freepf_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
472 }
473 }
474 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700475 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 0;
477}
478
Jakub Kicinski458e7042018-01-24 12:54:23 -0800479static void u32_clear_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h,
480 struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800481{
Jiri Pirko245dc512017-10-19 15:50:35 +0200482 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200483 struct tc_cls_u32_offload cls_u32 = {};
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800484
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700485 tc_cls_common_offload_init(&cls_u32.common, tp, h->flags, extack);
Jiri Pirko77460412017-10-19 15:50:34 +0200486 cls_u32.command = TC_CLSU32_DELETE_HNODE;
487 cls_u32.hnode.divisor = h->divisor;
488 cls_u32.hnode.handle = h->handle;
489 cls_u32.hnode.prio = h->prio;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200490
Vlad Buslov40119212019-08-26 16:44:59 +0300491 tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, false, true);
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800492}
493
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400494static int u32_replace_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h,
Quentin Monnet10a47e02018-01-19 17:44:45 -0800495 u32 flags, struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800496{
Jiri Pirko245dc512017-10-19 15:50:35 +0200497 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200498 struct tc_cls_u32_offload cls_u32 = {};
Jiri Pirko245dc512017-10-19 15:50:35 +0200499 bool skip_sw = tc_skip_sw(flags);
500 bool offloaded = false;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700501 int err;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800502
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700503 tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +0200504 cls_u32.command = TC_CLSU32_NEW_HNODE;
505 cls_u32.hnode.divisor = h->divisor;
506 cls_u32.hnode.handle = h->handle;
507 cls_u32.hnode.prio = h->prio;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800508
Vlad Buslov40119212019-08-26 16:44:59 +0300509 err = tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, skip_sw, true);
Jiri Pirko245dc512017-10-19 15:50:35 +0200510 if (err < 0) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800511 u32_clear_hw_hnode(tp, h, NULL);
Jakub Kicinskid47a0f32016-06-06 16:16:48 +0100512 return err;
Jiri Pirko245dc512017-10-19 15:50:35 +0200513 } else if (err > 0) {
514 offloaded = true;
515 }
516
517 if (skip_sw && !offloaded)
518 return -EINVAL;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700519
520 return 0;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800521}
522
Jakub Kicinski458e7042018-01-24 12:54:23 -0800523static void u32_remove_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n,
524 struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800525{
Jiri Pirko245dc512017-10-19 15:50:35 +0200526 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200527 struct tc_cls_u32_offload cls_u32 = {};
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800528
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700529 tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack);
Jiri Pirko77460412017-10-19 15:50:34 +0200530 cls_u32.command = TC_CLSU32_DELETE_KNODE;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100531 cls_u32.knode.handle = n->handle;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800532
Vlad Buslov40119212019-08-26 16:44:59 +0300533 tc_setup_cb_destroy(block, tp, TC_SETUP_CLSU32, &cls_u32, false,
534 &n->flags, &n->in_hw_count, true);
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800535}
536
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400537static int u32_replace_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n,
Quentin Monnet10a47e02018-01-19 17:44:45 -0800538 u32 flags, struct netlink_ext_ack *extack)
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800539{
Paolo Abeni058a6c02018-02-02 16:02:22 +0100540 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
Jiri Pirko245dc512017-10-19 15:50:35 +0200541 struct tcf_block *block = tp->chain->block;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200542 struct tc_cls_u32_offload cls_u32 = {};
Jiri Pirko245dc512017-10-19 15:50:35 +0200543 bool skip_sw = tc_skip_sw(flags);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700544 int err;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800545
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -0700546 tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +0200547 cls_u32.command = TC_CLSU32_REPLACE_KNODE;
548 cls_u32.knode.handle = n->handle;
549 cls_u32.knode.fshift = n->fshift;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100550#ifdef CONFIG_CLS_U32_MARK
Jiri Pirkode4784c2017-08-07 10:15:32 +0200551 cls_u32.knode.val = n->val;
552 cls_u32.knode.mask = n->mask;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100553#else
Jiri Pirkode4784c2017-08-07 10:15:32 +0200554 cls_u32.knode.val = 0;
555 cls_u32.knode.mask = 0;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100556#endif
Jiri Pirkode4784c2017-08-07 10:15:32 +0200557 cls_u32.knode.sel = &n->sel;
Jakub Kicinski068ceb32018-11-19 15:21:46 -0800558 cls_u32.knode.res = &n->res;
Jiri Pirkode4784c2017-08-07 10:15:32 +0200559 cls_u32.knode.exts = &n->exts;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100560 if (n->ht_down)
Paolo Abeni058a6c02018-02-02 16:02:22 +0100561 cls_u32.knode.link_handle = ht->handle;
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100562
Vlad Buslov40119212019-08-26 16:44:59 +0300563 err = tc_setup_cb_add(block, tp, TC_SETUP_CLSU32, &cls_u32, skip_sw,
564 &n->flags, &n->in_hw_count, true);
565 if (err) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800566 u32_remove_hw_knode(tp, n, NULL);
Jakub Kicinski201c44b2016-06-08 20:11:04 +0100567 return err;
Jiri Pirko245dc512017-10-19 15:50:35 +0200568 }
569
Colin Ian King0f04d052017-11-03 08:09:45 +0000570 if (skip_sw && !(n->flags & TCA_CLS_FLAGS_IN_HW))
Jiri Pirko245dc512017-10-19 15:50:35 +0200571 return -EINVAL;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700572
573 return 0;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800574}
575
Jakub Kicinski458e7042018-01-24 12:54:23 -0800576static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
577 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Al Virob245d322018-10-08 06:22:43 -0400579 struct tc_u_common *tp_c = tp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000581 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000583 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce877202014-09-12 20:09:16 -0700584 while ((n = rtnl_dereference(ht->ht[h])) != NULL) {
585 RCU_INIT_POINTER(ht->ht[h],
586 rtnl_dereference(n->next));
Al Virob245d322018-10-08 06:22:43 -0400587 tp_c->knodes--;
WANG Conga0efb802014-09-30 16:07:24 -0700588 tcf_unbind_filter(tp, &n->res);
Jakub Kicinski458e7042018-01-24 12:54:23 -0800589 u32_remove_hw_knode(tp, n, extack);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500590 idr_remove(&ht->handle_idr, n->handle);
Cong Wang35c55fc2017-11-06 13:47:30 -0800591 if (tcf_exts_get_net(&n->exts))
Cong Wangaaa908f2018-05-23 15:26:53 -0700592 tcf_queue_work(&n->rwork, u32_delete_key_freepf_work);
Cong Wang35c55fc2017-11-06 13:47:30 -0800593 else
Al Virodc07c572018-10-08 06:22:36 -0400594 u32_destroy_key(n, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 }
597}
598
Jakub Kicinski458e7042018-01-24 12:54:23 -0800599static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
600 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700603 struct tc_u_hnode __rcu **hn;
604 struct tc_u_hnode *phn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Jakub Kicinski458e7042018-01-24 12:54:23 -0800606 u32_clear_hnode(tp, ht, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
John Fastabend1ce877202014-09-12 20:09:16 -0700608 hn = &tp_c->hlist;
609 for (phn = rtnl_dereference(*hn);
610 phn;
611 hn = &phn->next, phn = rtnl_dereference(*hn)) {
612 if (phn == ht) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800613 u32_clear_hw_hnode(tp, ht, extack);
Cong Wange7614372017-09-25 10:13:51 -0700614 idr_destroy(&ht->handle_idr);
Matthew Wilcox9c160942017-11-28 09:48:43 -0500615 idr_remove(&tp_c->handle_idr, ht->handle);
John Fastabend1ce877202014-09-12 20:09:16 -0700616 RCU_INIT_POINTER(*hn, ht->next);
617 kfree_rcu(ht, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
619 }
620 }
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return -ENOENT;
623}
624
Vlad Buslov12db03b2019-02-11 10:55:45 +0200625static void u32_destroy(struct tcf_proto *tp, bool rtnl_held,
626 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce877202014-09-12 20:09:16 -0700629 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700631 WARN_ON(root_ht == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300633 if (root_ht && refcount_dec_and_test(&root_ht->refcnt))
Jakub Kicinski458e7042018-01-24 12:54:23 -0800634 u32_destroy_hnode(tp, root_ht, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300636 if (refcount_dec_and_test(&tp_c->refcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 struct tc_u_hnode *ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
WANG Cong3cd904e2017-08-24 16:51:30 -0700639 hlist_del(&tp_c->hnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
John Fastabend1ce877202014-09-12 20:09:16 -0700641 while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) {
Paolo Abenid7cdee52018-02-05 22:23:01 +0100642 u32_clear_hnode(tp, ht, extack);
John Fastabend1ce877202014-09-12 20:09:16 -0700643 RCU_INIT_POINTER(tp_c->hlist, ht->next);
Paolo Abenid7cdee52018-02-05 22:23:01 +0100644
645 /* u32_destroy_key() will later free ht for us, if it's
646 * still referenced by some knode
647 */
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300648 if (refcount_dec_and_test(&ht->refcnt))
Paolo Abenid7cdee52018-02-05 22:23:01 +0100649 kfree_rcu(ht, rcu);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Cong Wange7614372017-09-25 10:13:51 -0700652 idr_destroy(&tp_c->handle_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 kfree(tp_c);
654 }
655
656 tp->data = NULL;
657}
658
Alexander Aring571acf22018-01-18 11:20:53 -0500659static int u32_delete(struct tcf_proto *tp, void *arg, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +0200660 bool rtnl_held, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
WANG Cong8113c092017-08-04 21:31:43 -0700662 struct tc_u_hnode *ht = arg;
WANG Cong763dbf62017-04-19 14:21:21 -0700663 struct tc_u_common *tp_c = tp->data;
664 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800666 if (TC_U32_KEY(ht->handle)) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800667 u32_remove_hw_knode(tp, (struct tc_u_knode *)ht, extack);
WANG Cong763dbf62017-04-19 14:21:21 -0700668 ret = u32_delete_key(tp, (struct tc_u_knode *)ht);
669 goto out;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Al Virob44ef842018-10-08 06:22:33 -0400672 if (ht->is_root) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500673 NL_SET_ERR_MSG_MOD(extack, "Not allowed to delete root node");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300677 if (refcount_dec_if_one(&ht->refcnt)) {
Jakub Kicinski458e7042018-01-24 12:54:23 -0800678 u32_destroy_hnode(tp, ht, extack);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700679 } else {
Alexander Aring4b981db2018-01-18 11:20:55 -0500680 NL_SET_ERR_MSG_MOD(extack, "Can not delete in-use filter");
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700681 return -EBUSY;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
WANG Cong763dbf62017-04-19 14:21:21 -0700684out:
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300685 *last = refcount_read(&tp_c->refcnt) == 1 && tp_c->knodes == 0;
WANG Cong763dbf62017-04-19 14:21:21 -0700686 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Cong Wange7614372017-09-25 10:13:51 -0700689static u32 gen_new_kid(struct tc_u_hnode *ht, u32 htid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500691 u32 index = htid | 0x800;
Cong Wange7614372017-09-25 10:13:51 -0700692 u32 max = htid | 0xFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500694 if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max, GFP_KERNEL)) {
695 index = htid + 1;
696 if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max,
697 GFP_KERNEL))
698 index = max;
Cong Wange7614372017-09-25 10:13:51 -0700699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500701 return index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800704static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = {
705 [TCA_U32_CLASSID] = { .type = NLA_U32 },
706 [TCA_U32_HASH] = { .type = NLA_U32 },
707 [TCA_U32_LINK] = { .type = NLA_U32 },
708 [TCA_U32_DIVISOR] = { .type = NLA_U32 },
709 [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) },
710 [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ },
711 [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) },
John Fastabend9e8ce792016-02-26 07:54:39 -0800712 [TCA_U32_FLAGS] = { .type = NLA_U32 },
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800713};
714
Victor Nogueira9cb36fa2023-07-13 15:05:11 -0300715static void u32_unbind_filter(struct tcf_proto *tp, struct tc_u_knode *n,
716 struct nlattr **tb)
717{
718 if (tb[TCA_U32_CLASSID])
719 tcf_unbind_filter(tp, &n->res);
720}
721
722static void u32_bind_filter(struct tcf_proto *tp, struct tc_u_knode *n,
723 unsigned long base, struct nlattr **tb)
724{
725 if (tb[TCA_U32_CLASSID]) {
726 n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]);
727 tcf_bind_filter(tp, &n->res, base);
728 }
729}
730
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000731static int u32_set_parms(struct net *net, struct tcf_proto *tp,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800732 struct tc_u_knode *n, struct nlattr **tb,
Baowen Zhengc86e0202021-12-17 19:16:28 +0100733 struct nlattr *est, u32 flags, u32 fl_flags,
Alexander Aring50a56192018-01-18 11:20:52 -0500734 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Lee Jones04c55382023-06-08 08:29:03 +0100736 int err, ifindex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Baowen Zhengc86e0202021-12-17 19:16:28 +0100738 err = tcf_exts_validate_ex(net, tp, tb, est, &n->exts, flags,
739 fl_flags, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (err < 0)
741 return err;
742
Lee Jones04c55382023-06-08 08:29:03 +0100743 if (tb[TCA_U32_INDEV]) {
744 ifindex = tcf_change_indev(net, tb[TCA_U32_INDEV], extack);
745 if (ifindex < 0)
746 return -EINVAL;
747 }
748
Patrick McHardyadd93b62008-01-22 22:11:33 -0800749 if (tb[TCA_U32_LINK]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800750 u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000751 struct tc_u_hnode *ht_down = NULL, *ht_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Alexander Aring4b981db2018-01-18 11:20:55 -0500753 if (TC_U32_KEY(handle)) {
754 NL_SET_ERR_MSG_MOD(extack, "u32 Link handle must be a hash table");
Jiri Pirko705c7092017-08-04 14:29:14 +0200755 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 if (handle) {
Al Viro8a8065f2018-10-08 06:22:42 -0400759 ht_down = u32_lookup_ht(tp->data, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alexander Aring4b981db2018-01-18 11:20:55 -0500761 if (!ht_down) {
762 NL_SET_ERR_MSG_MOD(extack, "Link hash table not found");
Jiri Pirko705c7092017-08-04 14:29:14 +0200763 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500764 }
Al Viro27594ec2018-10-08 06:22:34 -0400765 if (ht_down->is_root) {
766 NL_SET_ERR_MSG_MOD(extack, "Not linking to root node");
767 return -EINVAL;
768 }
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300769 refcount_inc(&ht_down->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
John Fastabend1ce877202014-09-12 20:09:16 -0700772 ht_old = rtnl_dereference(n->ht_down);
773 rcu_assign_pointer(n->ht_down, ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000775 if (ht_old)
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300776 refcount_dec(&ht_old->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Lee Jones04c55382023-06-08 08:29:03 +0100779 if (ifindex >= 0)
780 n->ifindex = ifindex;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400785static void u32_replace_knode(struct tcf_proto *tp, struct tc_u_common *tp_c,
John Fastabendde5df632014-09-19 21:50:34 -0700786 struct tc_u_knode *n)
787{
788 struct tc_u_knode __rcu **ins;
789 struct tc_u_knode *pins;
790 struct tc_u_hnode *ht;
791
792 if (TC_U32_HTID(n->handle) == TC_U32_ROOT)
793 ht = rtnl_dereference(tp->root);
794 else
795 ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle));
796
797 ins = &ht->ht[TC_U32_HASH(n->handle)];
798
799 /* The node must always exist for it to be replaced if this is not the
800 * case then something went very wrong elsewhere.
801 */
802 for (pins = rtnl_dereference(*ins); ;
803 ins = &pins->next, pins = rtnl_dereference(*ins))
804 if (pins->handle == n->handle)
805 break;
806
Matthew Wilcox234a4622017-11-28 09:56:36 -0500807 idr_replace(&ht->handle_idr, n, n->handle);
John Fastabendde5df632014-09-19 21:50:34 -0700808 RCU_INIT_POINTER(n->next, pins->next);
809 rcu_assign_pointer(*ins, n);
810}
811
Cong Wang14215102019-02-20 21:37:42 -0800812static struct tc_u_knode *u32_init_knode(struct net *net, struct tcf_proto *tp,
John Fastabendde5df632014-09-19 21:50:34 -0700813 struct tc_u_knode *n)
814{
Paolo Abeni058a6c02018-02-02 16:02:22 +0100815 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
John Fastabendde5df632014-09-19 21:50:34 -0700816 struct tc_u32_sel *s = &n->sel;
Paolo Abeni058a6c02018-02-02 16:02:22 +0100817 struct tc_u_knode *new;
John Fastabendde5df632014-09-19 21:50:34 -0700818
Gustavo A. R. Silvac5eb1792020-06-18 09:53:42 -0500819 new = kzalloc(struct_size(new, sel.keys, s->nkeys), GFP_KERNEL);
John Fastabendde5df632014-09-19 21:50:34 -0700820 if (!new)
821 return NULL;
822
823 RCU_INIT_POINTER(new->next, n->next);
824 new->handle = n->handle;
825 RCU_INIT_POINTER(new->ht_up, n->ht_up);
826
John Fastabendde5df632014-09-19 21:50:34 -0700827 new->ifindex = n->ifindex;
John Fastabendde5df632014-09-19 21:50:34 -0700828 new->fshift = n->fshift;
John Fastabend9e8ce792016-02-26 07:54:39 -0800829 new->flags = n->flags;
Paolo Abeni058a6c02018-02-02 16:02:22 +0100830 RCU_INIT_POINTER(new->ht_down, ht);
John Fastabendde5df632014-09-19 21:50:34 -0700831
John Fastabendde5df632014-09-19 21:50:34 -0700832#ifdef CONFIG_CLS_U32_PERF
833 /* Statistics may be incremented by readers during update
834 * so we must keep them in tact. When the node is later destroyed
835 * a special destroy call must be made to not free the pf memory.
836 */
837 new->pf = n->pf;
838#endif
839
840#ifdef CONFIG_CLS_U32_MARK
841 new->val = n->val;
842 new->mask = n->mask;
843 /* Similarly success statistics must be moved as pointers */
844 new->pcpu_success = n->pcpu_success;
845#endif
Gustavo A. R. Silvae512fcf2019-05-01 11:23:15 -0500846 memcpy(&new->sel, s, struct_size(s, keys, s->nkeys));
John Fastabendde5df632014-09-19 21:50:34 -0700847
Cong Wang14215102019-02-20 21:37:42 -0800848 if (tcf_exts_init(&new->exts, net, TCA_U32_ACT, TCA_U32_POLICE)) {
WANG Congb9a24bb2016-08-19 12:36:54 -0700849 kfree(new);
850 return NULL;
851 }
John Fastabendde5df632014-09-19 21:50:34 -0700852
Eric Dumazetec5b0f62022-04-13 10:35:42 -0700853 /* bump reference count as long as we hold pointer to structure */
854 if (ht)
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300855 refcount_inc(&ht->refcnt);
Eric Dumazetec5b0f62022-04-13 10:35:42 -0700856
John Fastabendde5df632014-09-19 21:50:34 -0700857 return new;
858}
859
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000860static int u32_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600861 struct tcf_proto *tp, unsigned long base, u32 handle,
Cong Wang695176b2021-07-29 16:12:14 -0700862 struct nlattr **tca, void **arg, u32 flags,
Alexander Aring7306db32018-01-18 11:20:51 -0500863 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct tc_u_common *tp_c = tp->data;
866 struct tc_u_hnode *ht;
867 struct tc_u_knode *n;
868 struct tc_u32_sel *s;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800869 struct nlattr *opt = tca[TCA_OPTIONS];
870 struct nlattr *tb[TCA_U32_MAX + 1];
Cong Wang695176b2021-07-29 16:12:14 -0700871 u32 htid, userflags = 0;
Kees Cook98c8f122018-08-25 22:58:01 -0700872 size_t sel_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 int err;
874
Alexander Aring4b981db2018-01-18 11:20:55 -0500875 if (!opt) {
876 if (handle) {
877 NL_SET_ERR_MSG_MOD(extack, "Filter handle requires options");
878 return -EINVAL;
879 } else {
880 return 0;
881 }
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Johannes Berg8cb08172019-04-26 14:07:28 +0200884 err = nla_parse_nested_deprecated(tb, TCA_U32_MAX, opt, u32_policy,
885 extack);
Patrick McHardycee63722008-01-23 20:33:32 -0800886 if (err < 0)
887 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700889 if (tb[TCA_U32_FLAGS]) {
Cong Wang695176b2021-07-29 16:12:14 -0700890 userflags = nla_get_u32(tb[TCA_U32_FLAGS]);
891 if (!tc_flags_valid(userflags)) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500892 NL_SET_ERR_MSG_MOD(extack, "Invalid filter flags");
Jakub Kicinski1a0f7d22016-06-06 16:16:47 +0100893 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500894 }
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700895 }
John Fastabend9e8ce792016-02-26 07:54:39 -0800896
WANG Cong8113c092017-08-04 21:31:43 -0700897 n = *arg;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000898 if (n) {
John Fastabendde5df632014-09-19 21:50:34 -0700899 struct tc_u_knode *new;
900
Alexander Aring4b981db2018-01-18 11:20:55 -0500901 if (TC_U32_KEY(n->handle) == 0) {
902 NL_SET_ERR_MSG_MOD(extack, "Key node id cannot be zero");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Cong Wang695176b2021-07-29 16:12:14 -0700906 if ((n->flags ^ userflags) &
Ivan Veceraeb53f7a2018-02-08 16:10:39 +0100907 ~(TCA_CLS_FLAGS_IN_HW | TCA_CLS_FLAGS_NOT_IN_HW)) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500908 NL_SET_ERR_MSG_MOD(extack, "Key node flags do not match passed flags");
John Fastabend9e8ce792016-02-26 07:54:39 -0800909 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500910 }
John Fastabend9e8ce792016-02-26 07:54:39 -0800911
Cong Wang14215102019-02-20 21:37:42 -0800912 new = u32_init_knode(net, tp, n);
John Fastabendde5df632014-09-19 21:50:34 -0700913 if (!new)
914 return -ENOMEM;
915
Victor Nogueira9cb36fa2023-07-13 15:05:11 -0300916 err = u32_set_parms(net, tp, new, tb, tca[TCA_RATE],
917 flags, new->flags, extack);
John Fastabendde5df632014-09-19 21:50:34 -0700918
919 if (err) {
Eric Dumazet3db09e72022-04-13 10:35:41 -0700920 __u32_destroy_key(new);
John Fastabendde5df632014-09-19 21:50:34 -0700921 return err;
922 }
923
Victor Nogueira9cb36fa2023-07-13 15:05:11 -0300924 u32_bind_filter(tp, new, base, tb);
925
Quentin Monnet10a47e02018-01-19 17:44:45 -0800926 err = u32_replace_hw_knode(tp, new, flags, extack);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700927 if (err) {
Victor Nogueira9cb36fa2023-07-13 15:05:11 -0300928 u32_unbind_filter(tp, new, tb);
929
Victor Nogueirae8d3d782023-07-13 15:05:12 -0300930 if (tb[TCA_U32_LINK]) {
931 struct tc_u_hnode *ht_old;
932
933 ht_old = rtnl_dereference(n->ht_down);
934 if (ht_old)
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300935 refcount_inc(&ht_old->refcnt);
Victor Nogueirae8d3d782023-07-13 15:05:12 -0300936 }
Eric Dumazet3db09e72022-04-13 10:35:41 -0700937 __u32_destroy_key(new);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700938 return err;
939 }
940
Or Gerlitz24d3dc62017-02-16 10:31:15 +0200941 if (!tc_in_hw(new->flags))
942 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
943
John Fastabendde5df632014-09-19 21:50:34 -0700944 u32_replace_knode(tp, tp_c, new);
WANG Conga0efb802014-09-30 16:07:24 -0700945 tcf_unbind_filter(tp, &n->res);
Cong Wang35c55fc2017-11-06 13:47:30 -0800946 tcf_exts_get_net(&n->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700947 tcf_queue_work(&n->rwork, u32_delete_key_work);
John Fastabendde5df632014-09-19 21:50:34 -0700948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Patrick McHardyadd93b62008-01-22 22:11:33 -0800951 if (tb[TCA_U32_DIVISOR]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000952 unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Al Viro2f0c9822018-10-08 06:22:35 -0400954 if (!is_power_of_2(divisor)) {
955 NL_SET_ERR_MSG_MOD(extack, "Divisor is not a power of 2");
956 return -EINVAL;
957 }
958 if (divisor-- > 0x100) {
Alexander Aring4b981db2018-01-18 11:20:55 -0500959 NL_SET_ERR_MSG_MOD(extack, "Exceeded maximum 256 hash buckets");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500961 }
962 if (TC_U32_KEY(handle)) {
963 NL_SET_ERR_MSG_MOD(extack, "Divisor can only be used on a hash table");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -0500965 }
Gustavo A. R. Silvad61491a2020-09-28 10:30:52 -0500966 ht = kzalloc(struct_size(ht, ht, divisor + 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (ht == NULL)
968 return -ENOBUFS;
Cong Wange7614372017-09-25 10:13:51 -0700969 if (handle == 0) {
970 handle = gen_new_htid(tp->data, ht);
971 if (handle == 0) {
972 kfree(ht);
973 return -ENOMEM;
974 }
975 } else {
Matthew Wilcoxf730cb92017-11-28 13:45:02 -0500976 err = idr_alloc_u32(&tp_c->handle_idr, ht, &handle,
977 handle, GFP_KERNEL);
Cong Wange7614372017-09-25 10:13:51 -0700978 if (err) {
979 kfree(ht);
980 return err;
981 }
982 }
Pedro Tammela6b78deb2023-11-14 11:18:55 -0300983 refcount_set(&ht->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 ht->divisor = divisor;
985 ht->handle = handle;
986 ht->prio = tp->prio;
Cong Wange7614372017-09-25 10:13:51 -0700987 idr_init(&ht->handle_idr);
Cong Wang695176b2021-07-29 16:12:14 -0700988 ht->flags = userflags;
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100989
Cong Wang695176b2021-07-29 16:12:14 -0700990 err = u32_replace_hw_hnode(tp, ht, userflags, extack);
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100991 if (err) {
Matthew Wilcox9c160942017-11-28 09:48:43 -0500992 idr_remove(&tp_c->handle_idr, handle);
Jakub Kicinski6eef3802016-06-08 20:11:03 +0100993 kfree(ht);
994 return err;
995 }
996
John Fastabend1ce877202014-09-12 20:09:16 -0700997 RCU_INIT_POINTER(ht->next, tp_c->hlist);
998 rcu_assign_pointer(tp_c->hlist, ht);
WANG Cong8113c092017-08-04 21:31:43 -0700999 *arg = ht;
John Fastabenda1b7c5f2016-02-16 21:17:09 -08001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return 0;
1002 }
1003
Patrick McHardyadd93b62008-01-22 22:11:33 -08001004 if (tb[TCA_U32_HASH]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -08001005 htid = nla_get_u32(tb[TCA_U32_HASH]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (TC_U32_HTID(htid) == TC_U32_ROOT) {
John Fastabend1ce877202014-09-12 20:09:16 -07001007 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 htid = ht->handle;
1009 } else {
1010 ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid));
Alexander Aring4b981db2018-01-18 11:20:55 -05001011 if (!ht) {
1012 NL_SET_ERR_MSG_MOD(extack, "Specified hash table not found");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -05001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 } else {
John Fastabend1ce877202014-09-12 20:09:16 -07001017 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 htid = ht->handle;
1019 }
1020
Alexander Aring4b981db2018-01-18 11:20:55 -05001021 if (ht->divisor < TC_U32_HASH(htid)) {
1022 NL_SET_ERR_MSG_MOD(extack, "Specified hash table buckets exceed configured value");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -05001024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Jamal Hadi Salime68409d2023-07-26 09:51:51 -04001026 /* At this point, we need to derive the new handle that will be used to
1027 * uniquely map the identity of this table match entry. The
1028 * identity of the entry that we need to construct is 32 bits made of:
1029 * htid(12b):bucketid(8b):node/entryid(12b)
1030 *
1031 * At this point _we have the table(ht)_ in which we will insert this
1032 * entry. We carry the table's id in variable "htid".
1033 * Note that earlier code picked the ht selection either by a) the user
1034 * providing the htid specified via TCA_U32_HASH attribute or b) when
1035 * no such attribute is passed then the root ht, is default to at ID
1036 * 0x[800][00][000]. Rule: the root table has a single bucket with ID 0.
1037 * If OTOH the user passed us the htid, they may also pass a bucketid of
1038 * choice. 0 is fine. For example a user htid is 0x[600][01][000] it is
1039 * indicating hash bucketid of 1. Rule: the entry/node ID _cannot_ be
1040 * passed via the htid, so even if it was non-zero it will be ignored.
1041 *
1042 * We may also have a handle, if the user passed one. The handle also
1043 * carries the same addressing of htid(12b):bucketid(8b):node/entryid(12b).
1044 * Rule: the bucketid on the handle is ignored even if one was passed;
1045 * rather the value on "htid" is always assumed to be the bucketid.
1046 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (handle) {
Jamal Hadi Salime68409d2023-07-26 09:51:51 -04001048 /* Rule: The htid from handle and tableid from htid must match */
Alexander Aring4b981db2018-01-18 11:20:55 -05001049 if (TC_U32_HTID(handle) && TC_U32_HTID(handle ^ htid)) {
1050 NL_SET_ERR_MSG_MOD(extack, "Handle specified hash table address mismatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return -EINVAL;
Alexander Aring4b981db2018-01-18 11:20:55 -05001052 }
Jamal Hadi Salime68409d2023-07-26 09:51:51 -04001053 /* Ok, so far we have a valid htid(12b):bucketid(8b) but we
1054 * need to finalize the table entry identification with the last
1055 * part - the node/entryid(12b)). Rule: Nodeid _cannot be 0_ for
1056 * entries. Rule: nodeid of 0 is reserved only for tables(see
1057 * earlier code which processes TC_U32_DIVISOR attribute).
1058 * Rule: The nodeid can only be derived from the handle (and not
1059 * htid).
1060 * Rule: if the handle specified zero for the node id example
1061 * 0x60000000, then pick a new nodeid from the pool of IDs
1062 * this hash table has been allocating from.
1063 * If OTOH it is specified (i.e for example the user passed a
1064 * handle such as 0x60000123), then we use it generate our final
1065 * handle which is used to uniquely identify the match entry.
1066 */
1067 if (!TC_U32_NODE(handle)) {
1068 handle = gen_new_kid(ht, htid);
1069 } else {
1070 handle = htid | TC_U32_NODE(handle);
1071 err = idr_alloc_u32(&ht->handle_idr, NULL, &handle,
1072 handle, GFP_KERNEL);
1073 if (err)
1074 return err;
1075 }
1076 } else {
1077 /* The user did not give us a handle; lets just generate one
1078 * from the table's pool of nodeids.
1079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 handle = gen_new_kid(ht, htid);
Jamal Hadi Salime68409d2023-07-26 09:51:51 -04001081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Cong Wange7614372017-09-25 10:13:51 -07001083 if (tb[TCA_U32_SEL] == NULL) {
Alexander Aring4b981db2018-01-18 11:20:55 -05001084 NL_SET_ERR_MSG_MOD(extack, "Selector not specified");
Cong Wange7614372017-09-25 10:13:51 -07001085 err = -EINVAL;
1086 goto erridr;
1087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Patrick McHardyadd93b62008-01-22 22:11:33 -08001089 s = nla_data(tb[TCA_U32_SEL]);
Kees Cook98c8f122018-08-25 22:58:01 -07001090 sel_size = struct_size(s, keys, s->nkeys);
1091 if (nla_len(tb[TCA_U32_SEL]) < sel_size) {
1092 err = -EINVAL;
1093 goto erridr;
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001096 n = kzalloc(struct_size(n, sel.keys, s->nkeys), GFP_KERNEL);
Cong Wange7614372017-09-25 10:13:51 -07001097 if (n == NULL) {
1098 err = -ENOBUFS;
1099 goto erridr;
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#ifdef CONFIG_CLS_U32_PERF
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001103 n->pf = __alloc_percpu(struct_size(n->pf, kcnts, s->nkeys),
1104 __alignof__(struct tc_u32_pcnt));
John Fastabend459d5f62014-09-12 20:08:47 -07001105 if (!n->pf) {
Cong Wange7614372017-09-25 10:13:51 -07001106 err = -ENOBUFS;
1107 goto errfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#endif
1110
Kees Cook7cba1832022-09-27 08:37:01 -07001111 unsafe_memcpy(&n->sel, s, sel_size,
1112 /* A composite flex-array structure destination,
1113 * which was correctly sized with struct_size(),
1114 * bounds-checked against nla_len(), and allocated
1115 * above. */);
John Fastabenda96366bf2014-09-15 23:30:49 -07001116 RCU_INIT_POINTER(n->ht_up, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 n->handle = handle;
Radu Rendecb2268012007-11-10 21:54:50 -08001118 n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0;
Cong Wang695176b2021-07-29 16:12:14 -07001119 n->flags = userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Cong Wang14215102019-02-20 21:37:42 -08001121 err = tcf_exts_init(&n->exts, net, TCA_U32_ACT, TCA_U32_POLICE);
WANG Congb9a24bb2016-08-19 12:36:54 -07001122 if (err < 0)
1123 goto errout;
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -07001126 n->pcpu_success = alloc_percpu(u32);
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001127 if (!n->pcpu_success) {
1128 err = -ENOMEM;
1129 goto errout;
1130 }
John Fastabend459d5f62014-09-12 20:08:47 -07001131
Patrick McHardyadd93b62008-01-22 22:11:33 -08001132 if (tb[TCA_U32_MARK]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 struct tc_u32_mark *mark;
1134
Patrick McHardyadd93b62008-01-22 22:11:33 -08001135 mark = nla_data(tb[TCA_U32_MARK]);
John Fastabend459d5f62014-09-12 20:08:47 -07001136 n->val = mark->val;
1137 n->mask = mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139#endif
1140
Victor Nogueira9cb36fa2023-07-13 15:05:11 -03001141 err = u32_set_parms(net, tp, n, tb, tca[TCA_RATE],
Baowen Zhengc86e0202021-12-17 19:16:28 +01001142 flags, n->flags, extack);
Victor Nogueira9cb36fa2023-07-13 15:05:11 -03001143
1144 u32_bind_filter(tp, n, base, tb);
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (err == 0) {
John Fastabend1ce877202014-09-12 20:09:16 -07001147 struct tc_u_knode __rcu **ins;
1148 struct tc_u_knode *pins;
1149
Quentin Monnet10a47e02018-01-19 17:44:45 -08001150 err = u32_replace_hw_knode(tp, n, flags, extack);
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -07001151 if (err)
Victor Nogueira9cb36fa2023-07-13 15:05:11 -03001152 goto errunbind;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -07001153
Or Gerlitz24d3dc62017-02-16 10:31:15 +02001154 if (!tc_in_hw(n->flags))
1155 n->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
1156
John Fastabend1ce877202014-09-12 20:09:16 -07001157 ins = &ht->ht[TC_U32_HASH(handle)];
1158 for (pins = rtnl_dereference(*ins); pins;
1159 ins = &pins->next, pins = rtnl_dereference(*ins))
1160 if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 break;
1162
John Fastabend1ce877202014-09-12 20:09:16 -07001163 RCU_INIT_POINTER(n->next, pins);
1164 rcu_assign_pointer(*ins, n);
Al Virob245d322018-10-08 06:22:43 -04001165 tp_c->knodes++;
WANG Cong8113c092017-08-04 21:31:43 -07001166 *arg = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return 0;
1168 }
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001169
Victor Nogueira9cb36fa2023-07-13 15:05:11 -03001170errunbind:
1171 u32_unbind_filter(tp, n, tb);
1172
John Fastabenda1ddcfe2014-09-19 21:50:04 -07001173#ifdef CONFIG_CLS_U32_MARK
1174 free_percpu(n->pcpu_success);
1175#endif
1176
WANG Congb9a24bb2016-08-19 12:36:54 -07001177errout:
1178 tcf_exts_destroy(&n->exts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179#ifdef CONFIG_CLS_U32_PERF
Cong Wange7614372017-09-25 10:13:51 -07001180errfree:
John Fastabend1ce877202014-09-12 20:09:16 -07001181 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182#endif
1183 kfree(n);
Cong Wange7614372017-09-25 10:13:51 -07001184erridr:
Matthew Wilcox9c160942017-11-28 09:48:43 -05001185 idr_remove(&ht->handle_idr, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return err;
1187}
1188
Vlad Buslov12db03b2019-02-11 10:55:45 +02001189static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg,
1190 bool rtnl_held)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 struct tc_u_common *tp_c = tp->data;
1193 struct tc_u_hnode *ht;
1194 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001195 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 if (arg->stop)
1198 return;
1199
John Fastabend1ce877202014-09-12 20:09:16 -07001200 for (ht = rtnl_dereference(tp_c->hlist);
1201 ht;
1202 ht = rtnl_dereference(ht->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (ht->prio != tp->prio)
1204 continue;
Zhengchao Shao5508ff72022-09-16 10:02:44 +08001205
1206 if (!tc_cls_stats_dump(tp, arg, ht))
1207 return;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce877202014-09-12 20:09:16 -07001210 for (n = rtnl_dereference(ht->ht[h]);
1211 n;
1212 n = rtnl_dereference(n->next)) {
Zhengchao Shao5508ff72022-09-16 10:02:44 +08001213 if (!tc_cls_stats_dump(tp, arg, n))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216 }
1217 }
1218}
1219
John Hurley530d9952018-06-25 14:30:08 -07001220static int u32_reoffload_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht,
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001221 bool add, flow_setup_cb_t *cb, void *cb_priv,
John Hurley530d9952018-06-25 14:30:08 -07001222 struct netlink_ext_ack *extack)
1223{
1224 struct tc_cls_u32_offload cls_u32 = {};
1225 int err;
1226
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -07001227 tc_cls_common_offload_init(&cls_u32.common, tp, ht->flags, extack);
John Hurley530d9952018-06-25 14:30:08 -07001228 cls_u32.command = add ? TC_CLSU32_NEW_HNODE : TC_CLSU32_DELETE_HNODE;
1229 cls_u32.hnode.divisor = ht->divisor;
1230 cls_u32.hnode.handle = ht->handle;
1231 cls_u32.hnode.prio = ht->prio;
1232
1233 err = cb(TC_SETUP_CLSU32, &cls_u32, cb_priv);
1234 if (err && add && tc_skip_sw(ht->flags))
1235 return err;
1236
1237 return 0;
1238}
1239
1240static int u32_reoffload_knode(struct tcf_proto *tp, struct tc_u_knode *n,
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001241 bool add, flow_setup_cb_t *cb, void *cb_priv,
John Hurley530d9952018-06-25 14:30:08 -07001242 struct netlink_ext_ack *extack)
1243{
1244 struct tc_u_hnode *ht = rtnl_dereference(n->ht_down);
1245 struct tcf_block *block = tp->chain->block;
1246 struct tc_cls_u32_offload cls_u32 = {};
John Hurley530d9952018-06-25 14:30:08 -07001247
Pieter Jansen van Vuurend6787142019-05-06 17:24:21 -07001248 tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack);
John Hurley530d9952018-06-25 14:30:08 -07001249 cls_u32.command = add ?
1250 TC_CLSU32_REPLACE_KNODE : TC_CLSU32_DELETE_KNODE;
1251 cls_u32.knode.handle = n->handle;
1252
1253 if (add) {
1254 cls_u32.knode.fshift = n->fshift;
1255#ifdef CONFIG_CLS_U32_MARK
1256 cls_u32.knode.val = n->val;
1257 cls_u32.knode.mask = n->mask;
1258#else
1259 cls_u32.knode.val = 0;
1260 cls_u32.knode.mask = 0;
1261#endif
1262 cls_u32.knode.sel = &n->sel;
Jakub Kicinski068ceb32018-11-19 15:21:46 -08001263 cls_u32.knode.res = &n->res;
John Hurley530d9952018-06-25 14:30:08 -07001264 cls_u32.knode.exts = &n->exts;
1265 if (n->ht_down)
1266 cls_u32.knode.link_handle = ht->handle;
1267 }
1268
Zheng Yongjun57b06372020-12-08 20:08:22 +08001269 return tc_setup_cb_reoffload(block, tp, add, cb, TC_SETUP_CLSU32,
1270 &cls_u32, cb_priv, &n->flags,
1271 &n->in_hw_count);
John Hurley530d9952018-06-25 14:30:08 -07001272}
1273
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +02001274static int u32_reoffload(struct tcf_proto *tp, bool add, flow_setup_cb_t *cb,
John Hurley530d9952018-06-25 14:30:08 -07001275 void *cb_priv, struct netlink_ext_ack *extack)
1276{
1277 struct tc_u_common *tp_c = tp->data;
1278 struct tc_u_hnode *ht;
1279 struct tc_u_knode *n;
1280 unsigned int h;
1281 int err;
1282
1283 for (ht = rtnl_dereference(tp_c->hlist);
1284 ht;
1285 ht = rtnl_dereference(ht->next)) {
1286 if (ht->prio != tp->prio)
1287 continue;
1288
1289 /* When adding filters to a new dev, try to offload the
1290 * hashtable first. When removing, do the filters before the
1291 * hashtable.
1292 */
1293 if (add && !tc_skip_hw(ht->flags)) {
1294 err = u32_reoffload_hnode(tp, ht, add, cb, cb_priv,
1295 extack);
1296 if (err)
1297 return err;
1298 }
1299
1300 for (h = 0; h <= ht->divisor; h++) {
1301 for (n = rtnl_dereference(ht->ht[h]);
1302 n;
1303 n = rtnl_dereference(n->next)) {
1304 if (tc_skip_hw(n->flags))
1305 continue;
1306
1307 err = u32_reoffload_knode(tp, n, add, cb,
1308 cb_priv, extack);
1309 if (err)
1310 return err;
1311 }
1312 }
1313
1314 if (!add && !tc_skip_hw(ht->flags))
1315 u32_reoffload_hnode(tp, ht, add, cb, cb_priv, extack);
1316 }
1317
1318 return 0;
1319}
1320
Cong Wang2e24cd72020-01-23 16:26:18 -08001321static void u32_bind_class(void *fh, u32 classid, unsigned long cl, void *q,
1322 unsigned long base)
Cong Wang07d79fc2017-08-30 14:30:36 -07001323{
1324 struct tc_u_knode *n = fh;
1325
Zhengchao Shaocc9039a2022-09-27 20:48:55 +08001326 tc_cls_bind_class(classid, cl, q, &n->res, base);
Cong Wang07d79fc2017-08-30 14:30:36 -07001327}
1328
WANG Cong8113c092017-08-04 21:31:43 -07001329static int u32_dump(struct net *net, struct tcf_proto *tp, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +02001330 struct sk_buff *skb, struct tcmsg *t, bool rtnl_held)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
WANG Cong8113c092017-08-04 21:31:43 -07001332 struct tc_u_knode *n = fh;
John Fastabend1ce877202014-09-12 20:09:16 -07001333 struct tc_u_hnode *ht_up, *ht_down;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001334 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 if (n == NULL)
1337 return skb->len;
1338
1339 t->tcm_handle = n->handle;
1340
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001341 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001342 if (nest == NULL)
1343 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (TC_U32_KEY(n->handle) == 0) {
WANG Cong8113c092017-08-04 21:31:43 -07001346 struct tc_u_hnode *ht = fh;
Eric Dumazetcc7ec452011-01-19 19:26:56 +00001347 u32 divisor = ht->divisor + 1;
1348
David S. Miller1b34ec42012-03-29 05:11:39 -04001349 if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor))
1350 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 } else {
John Fastabend459d5f62014-09-12 20:08:47 -07001352#ifdef CONFIG_CLS_U32_PERF
1353 struct tc_u32_pcnt *gpf;
John Fastabend459d5f62014-09-12 20:08:47 -07001354 int cpu;
John Fastabend80aab732014-09-15 23:30:26 -07001355#endif
John Fastabend459d5f62014-09-12 20:08:47 -07001356
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001357 if (nla_put(skb, TCA_U32_SEL, struct_size(&n->sel, keys, n->sel.nkeys),
David S. Miller1b34ec42012-03-29 05:11:39 -04001358 &n->sel))
1359 goto nla_put_failure;
John Fastabend1ce877202014-09-12 20:09:16 -07001360
1361 ht_up = rtnl_dereference(n->ht_up);
1362 if (ht_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 u32 htid = n->handle & 0xFFFFF000;
David S. Miller1b34ec42012-03-29 05:11:39 -04001364 if (nla_put_u32(skb, TCA_U32_HASH, htid))
1365 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
David S. Miller1b34ec42012-03-29 05:11:39 -04001367 if (n->res.classid &&
1368 nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid))
1369 goto nla_put_failure;
John Fastabend1ce877202014-09-12 20:09:16 -07001370
1371 ht_down = rtnl_dereference(n->ht_down);
1372 if (ht_down &&
1373 nla_put_u32(skb, TCA_U32_LINK, ht_down->handle))
David S. Miller1b34ec42012-03-29 05:11:39 -04001374 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
John Fastabend9e8ce792016-02-26 07:54:39 -08001376 if (n->flags && nla_put_u32(skb, TCA_U32_FLAGS, n->flags))
1377 goto nla_put_failure;
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -07001380 if ((n->val || n->mask)) {
1381 struct tc_u32_mark mark = {.val = n->val,
1382 .mask = n->mask,
1383 .success = 0};
John Fastabend80aab732014-09-15 23:30:26 -07001384 int cpum;
John Fastabend459d5f62014-09-12 20:08:47 -07001385
John Fastabend80aab732014-09-15 23:30:26 -07001386 for_each_possible_cpu(cpum) {
1387 __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum);
John Fastabend459d5f62014-09-12 20:08:47 -07001388
1389 mark.success += cnt;
1390 }
1391
1392 if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark))
1393 goto nla_put_failure;
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395#endif
1396
WANG Cong5da57f42013-12-15 20:15:07 -08001397 if (tcf_exts_dump(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001398 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
WANG Cong2519a602014-01-09 16:14:02 -08001400 if (n->ifindex) {
1401 struct net_device *dev;
1402 dev = __dev_get_by_index(net, n->ifindex);
1403 if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name))
1404 goto nla_put_failure;
1405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406#ifdef CONFIG_CLS_U32_PERF
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001407 gpf = kzalloc(struct_size(gpf, kcnts, n->sel.nkeys), GFP_KERNEL);
John Fastabend459d5f62014-09-12 20:08:47 -07001408 if (!gpf)
1409 goto nla_put_failure;
1410
1411 for_each_possible_cpu(cpu) {
1412 int i;
1413 struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu);
1414
1415 gpf->rcnt += pf->rcnt;
1416 gpf->rhit += pf->rhit;
1417 for (i = 0; i < n->sel.nkeys; i++)
1418 gpf->kcnts[i] += pf->kcnts[i];
1419 }
1420
Gustavo A. R. Silva77aec5e2020-07-30 11:03:14 -05001421 if (nla_put_64bit(skb, TCA_U32_PCNT, struct_size(gpf, kcnts, n->sel.nkeys),
Nicolas Dichtel9854518e2016-04-26 10:06:18 +02001422 gpf, TCA_U32_PAD)) {
John Fastabend459d5f62014-09-12 20:08:47 -07001423 kfree(gpf);
David S. Miller1b34ec42012-03-29 05:11:39 -04001424 goto nla_put_failure;
John Fastabend459d5f62014-09-12 20:08:47 -07001425 }
1426 kfree(gpf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427#endif
1428 }
1429
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001430 nla_nest_end(skb, nest);
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (TC_U32_KEY(n->handle))
WANG Cong5da57f42013-12-15 20:15:07 -08001433 if (tcf_exts_dump_stats(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001434 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return skb->len;
1436
Patrick McHardyadd93b62008-01-22 22:11:33 -08001437nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001438 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return -1;
1440}
1441
Patrick McHardy2eb9d752008-01-22 22:10:42 -08001442static struct tcf_proto_ops cls_u32_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .kind = "u32",
1444 .classify = u32_classify,
1445 .init = u32_init,
1446 .destroy = u32_destroy,
1447 .get = u32_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .change = u32_change,
1449 .delete = u32_delete,
1450 .walk = u32_walk,
John Hurley530d9952018-06-25 14:30:08 -07001451 .reoffload = u32_reoffload,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 .dump = u32_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -07001453 .bind_class = u32_bind_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 .owner = THIS_MODULE,
1455};
Michal Koutný241a94a2024-02-01 14:09:41 +01001456MODULE_ALIAS_NET_CLS("u32");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458static int __init init_u32(void)
1459{
WANG Cong3cd904e2017-08-24 16:51:30 -07001460 int i, ret;
1461
stephen hemminger6ff9c362010-05-12 06:37:05 +00001462 pr_info("u32 classifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463#ifdef CONFIG_CLS_U32_PERF
stephen hemminger6ff9c362010-05-12 06:37:05 +00001464 pr_info(" Performance counters on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465#endif
stephen hemminger6ff9c362010-05-12 06:37:05 +00001466 pr_info(" input device check on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467#ifdef CONFIG_NET_CLS_ACT
stephen hemminger6ff9c362010-05-12 06:37:05 +00001468 pr_info(" Actions configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469#endif
WANG Cong3cd904e2017-08-24 16:51:30 -07001470 tc_u_common_hash = kvmalloc_array(U32_HASH_SIZE,
1471 sizeof(struct hlist_head),
1472 GFP_KERNEL);
1473 if (!tc_u_common_hash)
1474 return -ENOMEM;
1475
1476 for (i = 0; i < U32_HASH_SIZE; i++)
1477 INIT_HLIST_HEAD(&tc_u_common_hash[i]);
1478
1479 ret = register_tcf_proto_ops(&cls_u32_ops);
1480 if (ret)
1481 kvfree(tc_u_common_hash);
1482 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001485static void __exit exit_u32(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 unregister_tcf_proto_ops(&cls_u32_ops);
WANG Cong3cd904e2017-08-24 16:51:30 -07001488 kvfree(tc_u_common_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491module_init(init_u32)
1492module_exit(exit_u32)
Victor Nogueiraa9c92772023-10-27 08:50:44 -07001493MODULE_DESCRIPTION("Universal 32bit based TC Classifier");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494MODULE_LICENSE("GPL");