blob: 4fbb67430ce4821fd66576132afec2d7a301b379 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/cls_u32.c Ugly (or Universal) 32bit key Packet Classifier.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 * The filters are packed to hash tables of key nodes
12 * with a set of 32bit key/mask pairs at every node.
13 * Nodes reference next level hash tables etc.
14 *
15 * This scheme is the best universal classifier I managed to
16 * invent; it is not super-fast, but it is not slow (provided you
17 * program it correctly), and general enough. And its relative
18 * speed grows as the number of rules becomes larger.
19 *
20 * It seems that it represents the best middle point between
21 * speed and manageability both by human and by machine.
22 *
23 * It is especially useful for link sharing combined with QoS;
24 * pure RSVP doesn't need such a general approach and can use
25 * much simpler (and faster) schemes, sort of cls_rsvp.c.
26 *
27 * JHS: We should remove the CONFIG_NET_CLS_IND from here
28 * eventually when the meta match extension is made available
29 *
30 * nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro>
31 */
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/types.h>
36#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/errno.h>
John Fastabend1ce87722014-09-12 20:09:16 -070039#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/skbuff.h>
Cong Wang7801db82014-07-17 17:34:53 -070042#include <linux/bitmap.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070043#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <net/act_api.h>
45#include <net/pkt_cls.h>
46
Eric Dumazetcc7ec452011-01-19 19:26:56 +000047struct tc_u_knode {
John Fastabend1ce87722014-09-12 20:09:16 -070048 struct tc_u_knode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 u32 handle;
John Fastabend1ce87722014-09-12 20:09:16 -070050 struct tc_u_hnode __rcu *ht_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct tcf_exts exts;
52#ifdef CONFIG_NET_CLS_IND
WANG Cong2519a602014-01-09 16:14:02 -080053 int ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif
55 u8 fshift;
56 struct tcf_result res;
John Fastabend1ce87722014-09-12 20:09:16 -070057 struct tc_u_hnode __rcu *ht_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -070059 struct tc_u32_pcnt __percpu *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif
61#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -070062 u32 val;
63 u32 mask;
64 u32 __percpu *pcpu_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
John Fastabend1ce87722014-09-12 20:09:16 -070066 struct tcf_proto *tp;
John Fastabend1ce87722014-09-12 20:09:16 -070067 struct rcu_head rcu;
John Fastabend4e2840e2014-09-17 11:11:46 -070068 /* The 'sel' field MUST be the last field in structure to allow for
69 * tc_u32_keys allocated at end of structure.
70 */
71 struct tc_u32_sel sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
Eric Dumazetcc7ec452011-01-19 19:26:56 +000074struct tc_u_hnode {
John Fastabend1ce87722014-09-12 20:09:16 -070075 struct tc_u_hnode __rcu *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 u32 handle;
77 u32 prio;
78 struct tc_u_common *tp_c;
79 int refcnt;
Eric Dumazetcc7ec452011-01-19 19:26:56 +000080 unsigned int divisor;
John Fastabend1ce87722014-09-12 20:09:16 -070081 struct rcu_head rcu;
WANG Cong5778d392015-03-09 17:03:40 -070082 /* The 'ht' field MUST be the last field in structure to allow for
83 * more entries allocated at end of structure.
84 */
85 struct tc_u_knode __rcu *ht[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Eric Dumazetcc7ec452011-01-19 19:26:56 +000088struct tc_u_common {
John Fastabend1ce87722014-09-12 20:09:16 -070089 struct tc_u_hnode __rcu *hlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct Qdisc *q;
91 int refcnt;
92 u32 hgenerator;
John Fastabend1ce87722014-09-12 20:09:16 -070093 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Eric Dumazetcc7ec452011-01-19 19:26:56 +000096static inline unsigned int u32_hash_fold(__be32 key,
97 const struct tc_u32_sel *sel,
98 u8 fshift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000100 unsigned int h = ntohl(key & sel->hmask) >> fshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 return h;
103}
104
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000105static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct {
108 struct tc_u_knode *knode;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700109 unsigned int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 } stack[TC_U32_MAXDEPTH];
111
John Fastabend1ce87722014-09-12 20:09:16 -0700112 struct tc_u_hnode *ht = rcu_dereference_bh(tp->root);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700113 unsigned int off = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct tc_u_knode *n;
115 int sdepth = 0;
116 int off2 = 0;
117 int sel = 0;
118#ifdef CONFIG_CLS_U32_PERF
119 int j;
120#endif
121 int i, r;
122
123next_ht:
John Fastabend1ce87722014-09-12 20:09:16 -0700124 n = rcu_dereference_bh(ht->ht[sel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126next_knode:
127 if (n) {
128 struct tc_u32_key *key = n->sel.keys;
129
130#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700131 __this_cpu_inc(n->pf->rcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 j = 0;
133#endif
134
135#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700136 if ((skb->mark & n->mask) != n->val) {
John Fastabend1ce87722014-09-12 20:09:16 -0700137 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 goto next_knode;
139 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700140 __this_cpu_inc(*n->pcpu_success);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142#endif
143
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000144 for (i = n->sel.nkeys; i > 0; i--, key++) {
stephen hemminger66d50d22010-08-02 13:44:13 +0000145 int toff = off + key->off + (off2 & key->offmask);
stephen hemminger86fce3b2011-02-20 16:14:23 +0000146 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dan Carpenter4e18b3e2010-10-04 02:28:36 +0000148 if (skb_headroom(skb) + toff > INT_MAX)
stephen hemminger66d50d22010-08-02 13:44:13 +0000149 goto out;
150
stephen hemminger86fce3b2011-02-20 16:14:23 +0000151 data = skb_header_pointer(skb, toff, 4, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700152 if (!data)
153 goto out;
154 if ((*data ^ key->val) & key->mask) {
John Fastabend1ce87722014-09-12 20:09:16 -0700155 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 goto next_knode;
157 }
158#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700159 __this_cpu_inc(n->pf->kcnts[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 j++;
161#endif
162 }
John Fastabend1ce87722014-09-12 20:09:16 -0700163
164 ht = rcu_dereference_bh(n->ht_down);
165 if (!ht) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166check_terminal:
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000167 if (n->sel.flags & TC_U32_TERMINAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 *res = n->res;
170#ifdef CONFIG_NET_CLS_IND
WANG Cong2519a602014-01-09 16:14:02 -0800171 if (!tcf_match_indev(skb, n->ifindex)) {
John Fastabend1ce87722014-09-12 20:09:16 -0700172 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto next_knode;
174 }
175#endif
176#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700177 __this_cpu_inc(n->pf->rhit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif
179 r = tcf_exts_exec(skb, &n->exts, res);
180 if (r < 0) {
John Fastabend1ce87722014-09-12 20:09:16 -0700181 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto next_knode;
183 }
184
185 return r;
186 }
John Fastabend1ce87722014-09-12 20:09:16 -0700187 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto next_knode;
189 }
190
191 /* PUSH */
192 if (sdepth >= TC_U32_MAXDEPTH)
193 goto deadloop;
194 stack[sdepth].knode = n;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700195 stack[sdepth].off = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 sdepth++;
197
John Fastabend1ce87722014-09-12 20:09:16 -0700198 ht = rcu_dereference_bh(n->ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 sel = 0;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700200 if (ht->divisor) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000201 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700203 data = skb_header_pointer(skb, off + n->sel.hoff, 4,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000204 &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700205 if (!data)
206 goto out;
207 sel = ht->divisor & u32_hash_fold(*data, &n->sel,
208 n->fshift);
209 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000210 if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto next_ht;
212
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000213 if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 off2 = n->sel.off + 3;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700215 if (n->sel.flags & TC_U32_VAROFFSET) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000216 __be16 *data, hdata;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700217
218 data = skb_header_pointer(skb,
219 off + n->sel.offoff,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000220 2, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700221 if (!data)
222 goto out;
223 off2 += ntohs(n->sel.offmask & *data) >>
224 n->sel.offshift;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 off2 &= ~3;
227 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000228 if (n->sel.flags & TC_U32_EAT) {
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700229 off += off2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 off2 = 0;
231 }
232
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700233 if (off < skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto next_ht;
235 }
236
237 /* POP */
238 if (sdepth--) {
239 n = stack[sdepth].knode;
John Fastabend1ce87722014-09-12 20:09:16 -0700240 ht = rcu_dereference_bh(n->ht_up);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700241 off = stack[sdepth].off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto check_terminal;
243 }
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700244out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return -1;
246
247deadloop:
Joe Perchese87cc472012-05-13 21:56:26 +0000248 net_warn_ratelimited("cls_u32: dead loop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return -1;
250}
251
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000252static struct tc_u_hnode *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253u32_lookup_ht(struct tc_u_common *tp_c, u32 handle)
254{
255 struct tc_u_hnode *ht;
256
John Fastabend1ce87722014-09-12 20:09:16 -0700257 for (ht = rtnl_dereference(tp_c->hlist);
258 ht;
259 ht = rtnl_dereference(ht->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (ht->handle == handle)
261 break;
262
263 return ht;
264}
265
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000266static struct tc_u_knode *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267u32_lookup_key(struct tc_u_hnode *ht, u32 handle)
268{
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 Fastabend1ce87722014-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
286static unsigned long u32_get(struct tcf_proto *tp, u32 handle)
287{
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 Fastabend1ce87722014-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)
297 return 0;
298
299 if (TC_U32_KEY(handle) == 0)
300 return (unsigned long)ht;
301
302 return (unsigned long)u32_lookup_key(ht, handle);
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static u32 gen_new_htid(struct tc_u_common *tp_c)
306{
307 int i = 0x800;
308
John Fastabend1ce87722014-09-12 20:09:16 -0700309 /* hgenerator only used inside rtnl lock it is safe to increment
310 * without read _copy_ update semantics
311 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 do {
313 if (++tp_c->hgenerator == 0x7FF)
314 tp_c->hgenerator = 1;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000315 } while (--i > 0 && u32_lookup_ht(tp_c, (tp_c->hgenerator|0x800)<<20));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return i > 0 ? (tp_c->hgenerator|0x800)<<20 : 0;
318}
319
320static int u32_init(struct tcf_proto *tp)
321{
322 struct tc_u_hnode *root_ht;
323 struct tc_u_common *tp_c;
324
David S. Miller72b25a92008-07-18 20:54:17 -0700325 tp_c = tp->q->u32_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700327 root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (root_ht == NULL)
329 return -ENOBUFS;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 root_ht->divisor = 0;
332 root_ht->refcnt++;
333 root_ht->handle = tp_c ? gen_new_htid(tp_c) : 0x80000000;
334 root_ht->prio = tp->prio;
335
336 if (tp_c == NULL) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700337 tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (tp_c == NULL) {
339 kfree(root_ht);
340 return -ENOBUFS;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 tp_c->q = tp->q;
David S. Miller72b25a92008-07-18 20:54:17 -0700343 tp->q->u32_node = tp_c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 tp_c->refcnt++;
John Fastabend1ce87722014-09-12 20:09:16 -0700347 RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
348 rcu_assign_pointer(tp_c->hlist, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 root_ht->tp_c = tp_c;
350
John Fastabend1ce87722014-09-12 20:09:16 -0700351 rcu_assign_pointer(tp->root, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 tp->data = tp_c;
353 return 0;
354}
355
John Fastabendde5df632014-09-19 21:50:34 -0700356static int u32_destroy_key(struct tcf_proto *tp,
357 struct tc_u_knode *n,
358 bool free_pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
WANG Cong18d02642014-09-25 10:26:37 -0700360 tcf_exts_destroy(&n->exts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (n->ht_down)
362 n->ht_down->refcnt--;
363#ifdef CONFIG_CLS_U32_PERF
John Fastabendde5df632014-09-19 21:50:34 -0700364 if (free_pf)
365 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#endif
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700367#ifdef CONFIG_CLS_U32_MARK
John Fastabendde5df632014-09-19 21:50:34 -0700368 if (free_pf)
369 free_percpu(n->pcpu_success);
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700370#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 kfree(n);
372 return 0;
373}
374
John Fastabendde5df632014-09-19 21:50:34 -0700375/* u32_delete_key_rcu should be called when free'ing a copied
376 * version of a tc_u_knode obtained from u32_init_knode(). When
377 * copies are obtained from u32_init_knode() the statistics are
378 * shared between the old and new copies to allow readers to
379 * continue to update the statistics during the copy. To support
380 * this the u32_delete_key_rcu variant does not free the percpu
381 * statistics.
382 */
John Fastabend1ce87722014-09-12 20:09:16 -0700383static void u32_delete_key_rcu(struct rcu_head *rcu)
384{
385 struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu);
386
John Fastabendde5df632014-09-19 21:50:34 -0700387 u32_destroy_key(key->tp, key, false);
388}
389
390/* u32_delete_key_freepf_rcu is the rcu callback variant
391 * that free's the entire structure including the statistics
392 * percpu variables. Only use this if the key is not a copy
393 * returned by u32_init_knode(). See u32_delete_key_rcu()
394 * for the variant that should be used with keys return from
395 * u32_init_knode()
396 */
397static void u32_delete_key_freepf_rcu(struct rcu_head *rcu)
398{
399 struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu);
400
401 u32_destroy_key(key->tp, key, true);
John Fastabend1ce87722014-09-12 20:09:16 -0700402}
403
Yang Yingliang82d567c2013-12-10 20:55:31 +0800404static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
John Fastabend1ce87722014-09-12 20:09:16 -0700406 struct tc_u_knode __rcu **kp;
407 struct tc_u_knode *pkp;
John Fastabenda96366bf2014-09-15 23:30:49 -0700408 struct tc_u_hnode *ht = rtnl_dereference(key->ht_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (ht) {
John Fastabend1ce87722014-09-12 20:09:16 -0700411 kp = &ht->ht[TC_U32_HASH(key->handle)];
412 for (pkp = rtnl_dereference(*kp); pkp;
413 kp = &pkp->next, pkp = rtnl_dereference(*kp)) {
414 if (pkp == key) {
415 RCU_INIT_POINTER(*kp, key->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
WANG Conga0efb802014-09-30 16:07:24 -0700417 tcf_unbind_filter(tp, &key->res);
John Fastabendde5df632014-09-19 21:50:34 -0700418 call_rcu(&key->rcu, u32_delete_key_freepf_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return 0;
420 }
421 }
422 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700423 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
WANG Conga0efb802014-09-30 16:07:24 -0700427static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000430 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000432 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce87722014-09-12 20:09:16 -0700433 while ((n = rtnl_dereference(ht->ht[h])) != NULL) {
434 RCU_INIT_POINTER(ht->ht[h],
435 rtnl_dereference(n->next));
WANG Conga0efb802014-09-30 16:07:24 -0700436 tcf_unbind_filter(tp, &n->res);
John Fastabendde5df632014-09-19 21:50:34 -0700437 call_rcu(&n->rcu, u32_delete_key_freepf_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 }
440}
441
442static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht)
443{
444 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce87722014-09-12 20:09:16 -0700445 struct tc_u_hnode __rcu **hn;
446 struct tc_u_hnode *phn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700448 WARN_ON(ht->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
WANG Conga0efb802014-09-30 16:07:24 -0700450 u32_clear_hnode(tp, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
John Fastabend1ce87722014-09-12 20:09:16 -0700452 hn = &tp_c->hlist;
453 for (phn = rtnl_dereference(*hn);
454 phn;
455 hn = &phn->next, phn = rtnl_dereference(*hn)) {
456 if (phn == ht) {
457 RCU_INIT_POINTER(*hn, ht->next);
458 kfree_rcu(ht, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
460 }
461 }
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ENOENT;
464}
465
Cong Wang1e052be2015-03-06 11:47:59 -0800466static bool ht_empty(struct tc_u_hnode *ht)
467{
468 unsigned int h;
469
470 for (h = 0; h <= ht->divisor; h++)
471 if (rcu_access_pointer(ht->ht[h]))
472 return false;
473
474 return true;
475}
476
477static bool u32_destroy(struct tcf_proto *tp, bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce87722014-09-12 20:09:16 -0700480 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700482 WARN_ON(root_ht == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Cong Wang1e052be2015-03-06 11:47:59 -0800484 if (!force) {
485 if (root_ht) {
486 if (root_ht->refcnt > 1)
487 return false;
488 if (root_ht->refcnt == 1) {
489 if (!ht_empty(root_ht))
490 return false;
491 }
492 }
WANG Conga6c1aea2015-08-25 16:38:12 -0700493
494 if (tp_c->refcnt > 1)
495 return false;
496
497 if (tp_c->refcnt == 1) {
498 struct tc_u_hnode *ht;
499
500 for (ht = rtnl_dereference(tp_c->hlist);
501 ht;
502 ht = rtnl_dereference(ht->next))
503 if (!ht_empty(ht))
504 return false;
505 }
Cong Wang1e052be2015-03-06 11:47:59 -0800506 }
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (root_ht && --root_ht->refcnt == 0)
509 u32_destroy_hnode(tp, root_ht);
510
511 if (--tp_c->refcnt == 0) {
512 struct tc_u_hnode *ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
David S. Miller72b25a92008-07-18 20:54:17 -0700514 tp->q->u32_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
John Fastabend1ce87722014-09-12 20:09:16 -0700516 for (ht = rtnl_dereference(tp_c->hlist);
517 ht;
518 ht = rtnl_dereference(ht->next)) {
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700519 ht->refcnt--;
WANG Conga0efb802014-09-30 16:07:24 -0700520 u32_clear_hnode(tp, ht);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
John Fastabend1ce87722014-09-12 20:09:16 -0700523 while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) {
524 RCU_INIT_POINTER(tp_c->hlist, ht->next);
525 kfree_rcu(ht, rcu);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 kfree(tp_c);
529 }
530
531 tp->data = NULL;
Cong Wang1e052be2015-03-06 11:47:59 -0800532 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535static int u32_delete(struct tcf_proto *tp, unsigned long arg)
536{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000537 struct tc_u_hnode *ht = (struct tc_u_hnode *)arg;
John Fastabend1ce87722014-09-12 20:09:16 -0700538 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (ht == NULL)
541 return 0;
542
543 if (TC_U32_KEY(ht->handle))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000544 return u32_delete_key(tp, (struct tc_u_knode *)ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
John Fastabend1ce87722014-09-12 20:09:16 -0700546 if (root_ht == ht)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EINVAL;
548
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700549 if (ht->refcnt == 1) {
550 ht->refcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 u32_destroy_hnode(tp, ht);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700552 } else {
553 return -EBUSY;
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 return 0;
557}
558
Cong Wang7801db82014-07-17 17:34:53 -0700559#define NR_U32_NODE (1<<12)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static u32 gen_new_kid(struct tc_u_hnode *ht, u32 handle)
561{
562 struct tc_u_knode *n;
Cong Wang7801db82014-07-17 17:34:53 -0700563 unsigned long i;
564 unsigned long *bitmap = kzalloc(BITS_TO_LONGS(NR_U32_NODE) * sizeof(unsigned long),
565 GFP_KERNEL);
566 if (!bitmap)
567 return handle | 0xFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
John Fastabend1ce87722014-09-12 20:09:16 -0700569 for (n = rtnl_dereference(ht->ht[TC_U32_HASH(handle)]);
570 n;
571 n = rtnl_dereference(n->next))
Cong Wang7801db82014-07-17 17:34:53 -0700572 set_bit(TC_U32_NODE(n->handle), bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Cong Wang7801db82014-07-17 17:34:53 -0700574 i = find_next_zero_bit(bitmap, NR_U32_NODE, 0x800);
575 if (i >= NR_U32_NODE)
576 i = find_next_zero_bit(bitmap, NR_U32_NODE, 1);
577
578 kfree(bitmap);
579 return handle | (i >= NR_U32_NODE ? 0xFFF : i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800582static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = {
583 [TCA_U32_CLASSID] = { .type = NLA_U32 },
584 [TCA_U32_HASH] = { .type = NLA_U32 },
585 [TCA_U32_LINK] = { .type = NLA_U32 },
586 [TCA_U32_DIVISOR] = { .type = NLA_U32 },
587 [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) },
588 [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ },
589 [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) },
590};
591
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000592static int u32_set_parms(struct net *net, struct tcf_proto *tp,
593 unsigned long base, struct tc_u_hnode *ht,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800594 struct tc_u_knode *n, struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700595 struct nlattr *est, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 int err;
598 struct tcf_exts e;
599
WANG Cong5da57f42013-12-15 20:15:07 -0800600 tcf_exts_init(&e, TCA_U32_ACT, TCA_U32_POLICE);
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700601 err = tcf_exts_validate(net, tp, tb, est, &e, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (err < 0)
603 return err;
604
605 err = -EINVAL;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800606 if (tb[TCA_U32_LINK]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800607 u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000608 struct tc_u_hnode *ht_down = NULL, *ht_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 if (TC_U32_KEY(handle))
611 goto errout;
612
613 if (handle) {
614 ht_down = u32_lookup_ht(ht->tp_c, handle);
615
616 if (ht_down == NULL)
617 goto errout;
618 ht_down->refcnt++;
619 }
620
John Fastabend1ce87722014-09-12 20:09:16 -0700621 ht_old = rtnl_dereference(n->ht_down);
622 rcu_assign_pointer(n->ht_down, ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000624 if (ht_old)
625 ht_old->refcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Patrick McHardyadd93b62008-01-22 22:11:33 -0800627 if (tb[TCA_U32_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800628 n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 tcf_bind_filter(tp, &n->res, base);
630 }
631
632#ifdef CONFIG_NET_CLS_IND
Patrick McHardyadd93b62008-01-22 22:11:33 -0800633 if (tb[TCA_U32_INDEV]) {
WANG Cong2519a602014-01-09 16:14:02 -0800634 int ret;
635 ret = tcf_change_indev(net, tb[TCA_U32_INDEV]);
636 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto errout;
WANG Cong2519a602014-01-09 16:14:02 -0800638 n->ifindex = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640#endif
641 tcf_exts_change(tp, &n->exts, &e);
642
643 return 0;
644errout:
WANG Cong18d02642014-09-25 10:26:37 -0700645 tcf_exts_destroy(&e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return err;
647}
648
John Fastabendde5df632014-09-19 21:50:34 -0700649static void u32_replace_knode(struct tcf_proto *tp,
650 struct tc_u_common *tp_c,
651 struct tc_u_knode *n)
652{
653 struct tc_u_knode __rcu **ins;
654 struct tc_u_knode *pins;
655 struct tc_u_hnode *ht;
656
657 if (TC_U32_HTID(n->handle) == TC_U32_ROOT)
658 ht = rtnl_dereference(tp->root);
659 else
660 ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle));
661
662 ins = &ht->ht[TC_U32_HASH(n->handle)];
663
664 /* The node must always exist for it to be replaced if this is not the
665 * case then something went very wrong elsewhere.
666 */
667 for (pins = rtnl_dereference(*ins); ;
668 ins = &pins->next, pins = rtnl_dereference(*ins))
669 if (pins->handle == n->handle)
670 break;
671
672 RCU_INIT_POINTER(n->next, pins->next);
673 rcu_assign_pointer(*ins, n);
674}
675
676static struct tc_u_knode *u32_init_knode(struct tcf_proto *tp,
677 struct tc_u_knode *n)
678{
679 struct tc_u_knode *new;
680 struct tc_u32_sel *s = &n->sel;
681
682 new = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key),
683 GFP_KERNEL);
684
685 if (!new)
686 return NULL;
687
688 RCU_INIT_POINTER(new->next, n->next);
689 new->handle = n->handle;
690 RCU_INIT_POINTER(new->ht_up, n->ht_up);
691
692#ifdef CONFIG_NET_CLS_IND
693 new->ifindex = n->ifindex;
694#endif
695 new->fshift = n->fshift;
696 new->res = n->res;
697 RCU_INIT_POINTER(new->ht_down, n->ht_down);
698
699 /* bump reference count as long as we hold pointer to structure */
700 if (new->ht_down)
701 new->ht_down->refcnt++;
702
703#ifdef CONFIG_CLS_U32_PERF
704 /* Statistics may be incremented by readers during update
705 * so we must keep them in tact. When the node is later destroyed
706 * a special destroy call must be made to not free the pf memory.
707 */
708 new->pf = n->pf;
709#endif
710
711#ifdef CONFIG_CLS_U32_MARK
712 new->val = n->val;
713 new->mask = n->mask;
714 /* Similarly success statistics must be moved as pointers */
715 new->pcpu_success = n->pcpu_success;
716#endif
717 new->tp = tp;
718 memcpy(&new->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key));
719
720 tcf_exts_init(&new->exts, TCA_U32_ACT, TCA_U32_POLICE);
721
722 return new;
723}
724
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000725static int u32_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600726 struct tcf_proto *tp, unsigned long base, u32 handle,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800727 struct nlattr **tca,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700728 unsigned long *arg, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct tc_u_common *tp_c = tp->data;
731 struct tc_u_hnode *ht;
732 struct tc_u_knode *n;
733 struct tc_u32_sel *s;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800734 struct nlattr *opt = tca[TCA_OPTIONS];
735 struct nlattr *tb[TCA_U32_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 u32 htid;
737 int err;
John Fastabend459d5f62014-09-12 20:08:47 -0700738#ifdef CONFIG_CLS_U32_PERF
739 size_t size;
740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (opt == NULL)
743 return handle ? -EINVAL : 0;
744
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800745 err = nla_parse_nested(tb, TCA_U32_MAX, opt, u32_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800746 if (err < 0)
747 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000749 n = (struct tc_u_knode *)*arg;
750 if (n) {
John Fastabendde5df632014-09-19 21:50:34 -0700751 struct tc_u_knode *new;
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (TC_U32_KEY(n->handle) == 0)
754 return -EINVAL;
755
John Fastabendde5df632014-09-19 21:50:34 -0700756 new = u32_init_knode(tp, n);
757 if (!new)
758 return -ENOMEM;
759
760 err = u32_set_parms(net, tp, base,
761 rtnl_dereference(n->ht_up), new, tb,
762 tca[TCA_RATE], ovr);
763
764 if (err) {
765 u32_destroy_key(tp, new, false);
766 return err;
767 }
768
769 u32_replace_knode(tp, tp_c, new);
WANG Conga0efb802014-09-30 16:07:24 -0700770 tcf_unbind_filter(tp, &n->res);
John Fastabendde5df632014-09-19 21:50:34 -0700771 call_rcu(&n->rcu, u32_delete_key_rcu);
772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Patrick McHardyadd93b62008-01-22 22:11:33 -0800775 if (tb[TCA_U32_DIVISOR]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000776 unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (--divisor > 0x100)
779 return -EINVAL;
780 if (TC_U32_KEY(handle))
781 return -EINVAL;
782 if (handle == 0) {
783 handle = gen_new_htid(tp->data);
784 if (handle == 0)
785 return -ENOMEM;
786 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000787 ht = kzalloc(sizeof(*ht) + divisor*sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (ht == NULL)
789 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 ht->tp_c = tp_c;
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700791 ht->refcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 ht->divisor = divisor;
793 ht->handle = handle;
794 ht->prio = tp->prio;
John Fastabend1ce87722014-09-12 20:09:16 -0700795 RCU_INIT_POINTER(ht->next, tp_c->hlist);
796 rcu_assign_pointer(tp_c->hlist, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 *arg = (unsigned long)ht;
798 return 0;
799 }
800
Patrick McHardyadd93b62008-01-22 22:11:33 -0800801 if (tb[TCA_U32_HASH]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800802 htid = nla_get_u32(tb[TCA_U32_HASH]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (TC_U32_HTID(htid) == TC_U32_ROOT) {
John Fastabend1ce87722014-09-12 20:09:16 -0700804 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 htid = ht->handle;
806 } else {
807 ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid));
808 if (ht == NULL)
809 return -EINVAL;
810 }
811 } else {
John Fastabend1ce87722014-09-12 20:09:16 -0700812 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 htid = ht->handle;
814 }
815
816 if (ht->divisor < TC_U32_HASH(htid))
817 return -EINVAL;
818
819 if (handle) {
820 if (TC_U32_HTID(handle) && TC_U32_HTID(handle^htid))
821 return -EINVAL;
822 handle = htid | TC_U32_NODE(handle);
823 } else
824 handle = gen_new_kid(ht, htid);
825
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800826 if (tb[TCA_U32_SEL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return -EINVAL;
828
Patrick McHardyadd93b62008-01-22 22:11:33 -0800829 s = nla_data(tb[TCA_U32_SEL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700831 n = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (n == NULL)
833 return -ENOBUFS;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700836 size = sizeof(struct tc_u32_pcnt) + s->nkeys * sizeof(u64);
837 n->pf = __alloc_percpu(size, __alignof__(struct tc_u32_pcnt));
838 if (!n->pf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 kfree(n);
840 return -ENOBUFS;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842#endif
843
844 memcpy(&n->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key));
John Fastabenda96366bf2014-09-15 23:30:49 -0700845 RCU_INIT_POINTER(n->ht_up, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 n->handle = handle;
Radu Rendecb2268012007-11-10 21:54:50 -0800847 n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0;
WANG Cong5da57f42013-12-15 20:15:07 -0800848 tcf_exts_init(&n->exts, TCA_U32_ACT, TCA_U32_POLICE);
John Fastabend1ce87722014-09-12 20:09:16 -0700849 n->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700852 n->pcpu_success = alloc_percpu(u32);
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700853 if (!n->pcpu_success) {
854 err = -ENOMEM;
855 goto errout;
856 }
John Fastabend459d5f62014-09-12 20:08:47 -0700857
Patrick McHardyadd93b62008-01-22 22:11:33 -0800858 if (tb[TCA_U32_MARK]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 struct tc_u32_mark *mark;
860
Patrick McHardyadd93b62008-01-22 22:11:33 -0800861 mark = nla_data(tb[TCA_U32_MARK]);
John Fastabend459d5f62014-09-12 20:08:47 -0700862 n->val = mark->val;
863 n->mask = mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865#endif
866
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700867 err = u32_set_parms(net, tp, base, ht, n, tb, tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (err == 0) {
John Fastabend1ce87722014-09-12 20:09:16 -0700869 struct tc_u_knode __rcu **ins;
870 struct tc_u_knode *pins;
871
872 ins = &ht->ht[TC_U32_HASH(handle)];
873 for (pins = rtnl_dereference(*ins); pins;
874 ins = &pins->next, pins = rtnl_dereference(*ins))
875 if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 break;
877
John Fastabend1ce87722014-09-12 20:09:16 -0700878 RCU_INIT_POINTER(n->next, pins);
879 rcu_assign_pointer(*ins, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 *arg = (unsigned long)n;
882 return 0;
883 }
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700884
885#ifdef CONFIG_CLS_U32_MARK
886 free_percpu(n->pcpu_success);
Eric Dumazeta2aeb022014-09-22 13:42:53 -0700887errout:
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700888#endif
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#ifdef CONFIG_CLS_U32_PERF
John Fastabend1ce87722014-09-12 20:09:16 -0700891 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
893 kfree(n);
894 return err;
895}
896
897static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg)
898{
899 struct tc_u_common *tp_c = tp->data;
900 struct tc_u_hnode *ht;
901 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000902 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 if (arg->stop)
905 return;
906
John Fastabend1ce87722014-09-12 20:09:16 -0700907 for (ht = rtnl_dereference(tp_c->hlist);
908 ht;
909 ht = rtnl_dereference(ht->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (ht->prio != tp->prio)
911 continue;
912 if (arg->count >= arg->skip) {
913 if (arg->fn(tp, (unsigned long)ht, arg) < 0) {
914 arg->stop = 1;
915 return;
916 }
917 }
918 arg->count++;
919 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce87722014-09-12 20:09:16 -0700920 for (n = rtnl_dereference(ht->ht[h]);
921 n;
922 n = rtnl_dereference(n->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (arg->count < arg->skip) {
924 arg->count++;
925 continue;
926 }
927 if (arg->fn(tp, (unsigned long)n, arg) < 0) {
928 arg->stop = 1;
929 return;
930 }
931 arg->count++;
932 }
933 }
934 }
935}
936
WANG Cong832d1d52014-01-09 16:14:01 -0800937static int u32_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct sk_buff *skb, struct tcmsg *t)
939{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000940 struct tc_u_knode *n = (struct tc_u_knode *)fh;
John Fastabend1ce87722014-09-12 20:09:16 -0700941 struct tc_u_hnode *ht_up, *ht_down;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800942 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 if (n == NULL)
945 return skb->len;
946
947 t->tcm_handle = n->handle;
948
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800949 nest = nla_nest_start(skb, TCA_OPTIONS);
950 if (nest == NULL)
951 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 if (TC_U32_KEY(n->handle) == 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000954 struct tc_u_hnode *ht = (struct tc_u_hnode *)fh;
955 u32 divisor = ht->divisor + 1;
956
David S. Miller1b34ec42012-03-29 05:11:39 -0400957 if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor))
958 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700960#ifdef CONFIG_CLS_U32_PERF
961 struct tc_u32_pcnt *gpf;
John Fastabend459d5f62014-09-12 20:08:47 -0700962 int cpu;
John Fastabend80aab732014-09-15 23:30:26 -0700963#endif
John Fastabend459d5f62014-09-12 20:08:47 -0700964
David S. Miller1b34ec42012-03-29 05:11:39 -0400965 if (nla_put(skb, TCA_U32_SEL,
966 sizeof(n->sel) + n->sel.nkeys*sizeof(struct tc_u32_key),
967 &n->sel))
968 goto nla_put_failure;
John Fastabend1ce87722014-09-12 20:09:16 -0700969
970 ht_up = rtnl_dereference(n->ht_up);
971 if (ht_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 u32 htid = n->handle & 0xFFFFF000;
David S. Miller1b34ec42012-03-29 05:11:39 -0400973 if (nla_put_u32(skb, TCA_U32_HASH, htid))
974 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400976 if (n->res.classid &&
977 nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid))
978 goto nla_put_failure;
John Fastabend1ce87722014-09-12 20:09:16 -0700979
980 ht_down = rtnl_dereference(n->ht_down);
981 if (ht_down &&
982 nla_put_u32(skb, TCA_U32_LINK, ht_down->handle))
David S. Miller1b34ec42012-03-29 05:11:39 -0400983 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700986 if ((n->val || n->mask)) {
987 struct tc_u32_mark mark = {.val = n->val,
988 .mask = n->mask,
989 .success = 0};
John Fastabend80aab732014-09-15 23:30:26 -0700990 int cpum;
John Fastabend459d5f62014-09-12 20:08:47 -0700991
John Fastabend80aab732014-09-15 23:30:26 -0700992 for_each_possible_cpu(cpum) {
993 __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum);
John Fastabend459d5f62014-09-12 20:08:47 -0700994
995 mark.success += cnt;
996 }
997
998 if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark))
999 goto nla_put_failure;
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001#endif
1002
WANG Cong5da57f42013-12-15 20:15:07 -08001003 if (tcf_exts_dump(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001004 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006#ifdef CONFIG_NET_CLS_IND
WANG Cong2519a602014-01-09 16:14:02 -08001007 if (n->ifindex) {
1008 struct net_device *dev;
1009 dev = __dev_get_by_index(net, n->ifindex);
1010 if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name))
1011 goto nla_put_failure;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013#endif
1014#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -07001015 gpf = kzalloc(sizeof(struct tc_u32_pcnt) +
1016 n->sel.nkeys * sizeof(u64),
1017 GFP_KERNEL);
1018 if (!gpf)
1019 goto nla_put_failure;
1020
1021 for_each_possible_cpu(cpu) {
1022 int i;
1023 struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu);
1024
1025 gpf->rcnt += pf->rcnt;
1026 gpf->rhit += pf->rhit;
1027 for (i = 0; i < n->sel.nkeys; i++)
1028 gpf->kcnts[i] += pf->kcnts[i];
1029 }
1030
David S. Miller1b34ec42012-03-29 05:11:39 -04001031 if (nla_put(skb, TCA_U32_PCNT,
1032 sizeof(struct tc_u32_pcnt) + n->sel.nkeys*sizeof(u64),
John Fastabend459d5f62014-09-12 20:08:47 -07001033 gpf)) {
1034 kfree(gpf);
David S. Miller1b34ec42012-03-29 05:11:39 -04001035 goto nla_put_failure;
John Fastabend459d5f62014-09-12 20:08:47 -07001036 }
1037 kfree(gpf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038#endif
1039 }
1040
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001041 nla_nest_end(skb, nest);
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (TC_U32_KEY(n->handle))
WANG Cong5da57f42013-12-15 20:15:07 -08001044 if (tcf_exts_dump_stats(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -08001045 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return skb->len;
1047
Patrick McHardyadd93b62008-01-22 22:11:33 -08001048nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001049 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return -1;
1051}
1052
Patrick McHardy2eb9d752008-01-22 22:10:42 -08001053static struct tcf_proto_ops cls_u32_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 .kind = "u32",
1055 .classify = u32_classify,
1056 .init = u32_init,
1057 .destroy = u32_destroy,
1058 .get = u32_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 .change = u32_change,
1060 .delete = u32_delete,
1061 .walk = u32_walk,
1062 .dump = u32_dump,
1063 .owner = THIS_MODULE,
1064};
1065
1066static int __init init_u32(void)
1067{
stephen hemminger6ff9c362010-05-12 06:37:05 +00001068 pr_info("u32 classifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef CONFIG_CLS_U32_PERF
stephen hemminger6ff9c362010-05-12 06:37:05 +00001070 pr_info(" Performance counters on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072#ifdef CONFIG_NET_CLS_IND
stephen hemminger6ff9c362010-05-12 06:37:05 +00001073 pr_info(" input device check on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074#endif
1075#ifdef CONFIG_NET_CLS_ACT
stephen hemminger6ff9c362010-05-12 06:37:05 +00001076 pr_info(" Actions configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077#endif
1078 return register_tcf_proto_ops(&cls_u32_ops);
1079}
1080
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001081static void __exit exit_u32(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 unregister_tcf_proto_ops(&cls_u32_ops);
1084}
1085
1086module_init(init_u32)
1087module_exit(exit_u32)
1088MODULE_LICENSE("GPL");