blob: 8d90e50a8ce401d42d7e7bf143cf65d9cc916584 [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 tc_u_knode __rcu *ht[1];
82 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Eric Dumazetcc7ec452011-01-19 19:26:56 +000085struct tc_u_common {
John Fastabend1ce87722014-09-12 20:09:16 -070086 struct tc_u_hnode __rcu *hlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct Qdisc *q;
88 int refcnt;
89 u32 hgenerator;
John Fastabend1ce87722014-09-12 20:09:16 -070090 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
Eric Dumazetcc7ec452011-01-19 19:26:56 +000093static inline unsigned int u32_hash_fold(__be32 key,
94 const struct tc_u32_sel *sel,
95 u8 fshift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000097 unsigned int h = ntohl(key & sel->hmask) >> fshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 return h;
100}
101
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000102static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 struct {
105 struct tc_u_knode *knode;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700106 unsigned int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 } stack[TC_U32_MAXDEPTH];
108
John Fastabend1ce87722014-09-12 20:09:16 -0700109 struct tc_u_hnode *ht = rcu_dereference_bh(tp->root);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700110 unsigned int off = skb_network_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct tc_u_knode *n;
112 int sdepth = 0;
113 int off2 = 0;
114 int sel = 0;
115#ifdef CONFIG_CLS_U32_PERF
116 int j;
117#endif
118 int i, r;
119
120next_ht:
John Fastabend1ce87722014-09-12 20:09:16 -0700121 n = rcu_dereference_bh(ht->ht[sel]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123next_knode:
124 if (n) {
125 struct tc_u32_key *key = n->sel.keys;
126
127#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700128 __this_cpu_inc(n->pf->rcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 j = 0;
130#endif
131
132#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700133 if ((skb->mark & n->mask) != n->val) {
John Fastabend1ce87722014-09-12 20:09:16 -0700134 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto next_knode;
136 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700137 __this_cpu_inc(*n->pcpu_success);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139#endif
140
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000141 for (i = n->sel.nkeys; i > 0; i--, key++) {
stephen hemminger66d50d22010-08-02 13:44:13 +0000142 int toff = off + key->off + (off2 & key->offmask);
stephen hemminger86fce3b2011-02-20 16:14:23 +0000143 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Dan Carpenter4e18b3e2010-10-04 02:28:36 +0000145 if (skb_headroom(skb) + toff > INT_MAX)
stephen hemminger66d50d22010-08-02 13:44:13 +0000146 goto out;
147
stephen hemminger86fce3b2011-02-20 16:14:23 +0000148 data = skb_header_pointer(skb, toff, 4, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700149 if (!data)
150 goto out;
151 if ((*data ^ key->val) & key->mask) {
John Fastabend1ce87722014-09-12 20:09:16 -0700152 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 goto next_knode;
154 }
155#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700156 __this_cpu_inc(n->pf->kcnts[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 j++;
158#endif
159 }
John Fastabend1ce87722014-09-12 20:09:16 -0700160
161 ht = rcu_dereference_bh(n->ht_down);
162 if (!ht) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163check_terminal:
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000164 if (n->sel.flags & TC_U32_TERMINAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 *res = n->res;
167#ifdef CONFIG_NET_CLS_IND
WANG Cong2519a602014-01-09 16:14:02 -0800168 if (!tcf_match_indev(skb, n->ifindex)) {
John Fastabend1ce87722014-09-12 20:09:16 -0700169 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 goto next_knode;
171 }
172#endif
173#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700174 __this_cpu_inc(n->pf->rhit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#endif
176 r = tcf_exts_exec(skb, &n->exts, res);
177 if (r < 0) {
John Fastabend1ce87722014-09-12 20:09:16 -0700178 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 goto next_knode;
180 }
181
182 return r;
183 }
John Fastabend1ce87722014-09-12 20:09:16 -0700184 n = rcu_dereference_bh(n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 goto next_knode;
186 }
187
188 /* PUSH */
189 if (sdepth >= TC_U32_MAXDEPTH)
190 goto deadloop;
191 stack[sdepth].knode = n;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700192 stack[sdepth].off = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 sdepth++;
194
John Fastabend1ce87722014-09-12 20:09:16 -0700195 ht = rcu_dereference_bh(n->ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 sel = 0;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700197 if (ht->divisor) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000198 __be32 *data, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700200 data = skb_header_pointer(skb, off + n->sel.hoff, 4,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000201 &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700202 if (!data)
203 goto out;
204 sel = ht->divisor & u32_hash_fold(*data, &n->sel,
205 n->fshift);
206 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000207 if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 goto next_ht;
209
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000210 if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 off2 = n->sel.off + 3;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700212 if (n->sel.flags & TC_U32_VAROFFSET) {
stephen hemminger86fce3b2011-02-20 16:14:23 +0000213 __be16 *data, hdata;
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700214
215 data = skb_header_pointer(skb,
216 off + n->sel.offoff,
stephen hemminger86fce3b2011-02-20 16:14:23 +0000217 2, &hdata);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700218 if (!data)
219 goto out;
220 off2 += ntohs(n->sel.offmask & *data) >>
221 n->sel.offshift;
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 off2 &= ~3;
224 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000225 if (n->sel.flags & TC_U32_EAT) {
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700226 off += off2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 off2 = 0;
228 }
229
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700230 if (off < skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto next_ht;
232 }
233
234 /* POP */
235 if (sdepth--) {
236 n = stack[sdepth].knode;
John Fastabend1ce87722014-09-12 20:09:16 -0700237 ht = rcu_dereference_bh(n->ht_up);
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700238 off = stack[sdepth].off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto check_terminal;
240 }
Changli Gaofbc2e7d2010-06-02 07:32:42 -0700241out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return -1;
243
244deadloop:
Joe Perchese87cc472012-05-13 21:56:26 +0000245 net_warn_ratelimited("cls_u32: dead loop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return -1;
247}
248
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000249static struct tc_u_hnode *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250u32_lookup_ht(struct tc_u_common *tp_c, u32 handle)
251{
252 struct tc_u_hnode *ht;
253
John Fastabend1ce87722014-09-12 20:09:16 -0700254 for (ht = rtnl_dereference(tp_c->hlist);
255 ht;
256 ht = rtnl_dereference(ht->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (ht->handle == handle)
258 break;
259
260 return ht;
261}
262
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000263static struct tc_u_knode *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264u32_lookup_key(struct tc_u_hnode *ht, u32 handle)
265{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000266 unsigned int sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct tc_u_knode *n = NULL;
268
269 sel = TC_U32_HASH(handle);
270 if (sel > ht->divisor)
271 goto out;
272
John Fastabend1ce87722014-09-12 20:09:16 -0700273 for (n = rtnl_dereference(ht->ht[sel]);
274 n;
275 n = rtnl_dereference(n->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (n->handle == handle)
277 break;
278out:
279 return n;
280}
281
282
283static unsigned long u32_get(struct tcf_proto *tp, u32 handle)
284{
285 struct tc_u_hnode *ht;
286 struct tc_u_common *tp_c = tp->data;
287
288 if (TC_U32_HTID(handle) == TC_U32_ROOT)
John Fastabend1ce87722014-09-12 20:09:16 -0700289 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 else
291 ht = u32_lookup_ht(tp_c, TC_U32_HTID(handle));
292
293 if (!ht)
294 return 0;
295
296 if (TC_U32_KEY(handle) == 0)
297 return (unsigned long)ht;
298
299 return (unsigned long)u32_lookup_key(ht, handle);
300}
301
302static void u32_put(struct tcf_proto *tp, unsigned long f)
303{
304}
305
306static u32 gen_new_htid(struct tc_u_common *tp_c)
307{
308 int i = 0x800;
309
John Fastabend1ce87722014-09-12 20:09:16 -0700310 /* hgenerator only used inside rtnl lock it is safe to increment
311 * without read _copy_ update semantics
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 do {
314 if (++tp_c->hgenerator == 0x7FF)
315 tp_c->hgenerator = 1;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000316 } while (--i > 0 && u32_lookup_ht(tp_c, (tp_c->hgenerator|0x800)<<20));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 return i > 0 ? (tp_c->hgenerator|0x800)<<20 : 0;
319}
320
321static int u32_init(struct tcf_proto *tp)
322{
323 struct tc_u_hnode *root_ht;
324 struct tc_u_common *tp_c;
325
David S. Miller72b25a92008-07-18 20:54:17 -0700326 tp_c = tp->q->u32_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700328 root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (root_ht == NULL)
330 return -ENOBUFS;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 root_ht->divisor = 0;
333 root_ht->refcnt++;
334 root_ht->handle = tp_c ? gen_new_htid(tp_c) : 0x80000000;
335 root_ht->prio = tp->prio;
336
337 if (tp_c == NULL) {
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700338 tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (tp_c == NULL) {
340 kfree(root_ht);
341 return -ENOBUFS;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 tp_c->q = tp->q;
David S. Miller72b25a92008-07-18 20:54:17 -0700344 tp->q->u32_node = tp_c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 tp_c->refcnt++;
John Fastabend1ce87722014-09-12 20:09:16 -0700348 RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
349 rcu_assign_pointer(tp_c->hlist, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 root_ht->tp_c = tp_c;
351
John Fastabend1ce87722014-09-12 20:09:16 -0700352 rcu_assign_pointer(tp->root, root_ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 tp->data = tp_c;
354 return 0;
355}
356
357static int u32_destroy_key(struct tcf_proto *tp, struct tc_u_knode *n)
358{
359 tcf_unbind_filter(tp, &n->res);
360 tcf_exts_destroy(tp, &n->exts);
361 if (n->ht_down)
362 n->ht_down->refcnt--;
363#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700364 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#endif
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700366#ifdef CONFIG_CLS_U32_MARK
367 free_percpu(n->pcpu_success);
368#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 kfree(n);
370 return 0;
371}
372
John Fastabend1ce87722014-09-12 20:09:16 -0700373static void u32_delete_key_rcu(struct rcu_head *rcu)
374{
375 struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu);
376
377 u32_destroy_key(key->tp, key);
378}
379
Yang Yingliang82d567c2013-12-10 20:55:31 +0800380static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
John Fastabend1ce87722014-09-12 20:09:16 -0700382 struct tc_u_knode __rcu **kp;
383 struct tc_u_knode *pkp;
John Fastabenda96366bf2014-09-15 23:30:49 -0700384 struct tc_u_hnode *ht = rtnl_dereference(key->ht_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 if (ht) {
John Fastabend1ce87722014-09-12 20:09:16 -0700387 kp = &ht->ht[TC_U32_HASH(key->handle)];
388 for (pkp = rtnl_dereference(*kp); pkp;
389 kp = &pkp->next, pkp = rtnl_dereference(*kp)) {
390 if (pkp == key) {
391 RCU_INIT_POINTER(*kp, key->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
John Fastabend1ce87722014-09-12 20:09:16 -0700393 call_rcu(&key->rcu, u32_delete_key_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return 0;
395 }
396 }
397 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700398 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
400}
401
John Fastabend1ce87722014-09-12 20:09:16 -0700402static void u32_clear_hnode(struct tc_u_hnode *ht)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000405 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000407 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce87722014-09-12 20:09:16 -0700408 while ((n = rtnl_dereference(ht->ht[h])) != NULL) {
409 RCU_INIT_POINTER(ht->ht[h],
410 rtnl_dereference(n->next));
411 call_rcu(&n->rcu, u32_delete_key_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 }
414}
415
416static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht)
417{
418 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce87722014-09-12 20:09:16 -0700419 struct tc_u_hnode __rcu **hn;
420 struct tc_u_hnode *phn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700422 WARN_ON(ht->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
John Fastabend1ce87722014-09-12 20:09:16 -0700424 u32_clear_hnode(ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
John Fastabend1ce87722014-09-12 20:09:16 -0700426 hn = &tp_c->hlist;
427 for (phn = rtnl_dereference(*hn);
428 phn;
429 hn = &phn->next, phn = rtnl_dereference(*hn)) {
430 if (phn == ht) {
431 RCU_INIT_POINTER(*hn, ht->next);
432 kfree_rcu(ht, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434 }
435 }
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -ENOENT;
438}
439
440static void u32_destroy(struct tcf_proto *tp)
441{
442 struct tc_u_common *tp_c = tp->data;
John Fastabend1ce87722014-09-12 20:09:16 -0700443 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700445 WARN_ON(root_ht == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (root_ht && --root_ht->refcnt == 0)
448 u32_destroy_hnode(tp, root_ht);
449
450 if (--tp_c->refcnt == 0) {
451 struct tc_u_hnode *ht;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
David S. Miller72b25a92008-07-18 20:54:17 -0700453 tp->q->u32_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
John Fastabend1ce87722014-09-12 20:09:16 -0700455 for (ht = rtnl_dereference(tp_c->hlist);
456 ht;
457 ht = rtnl_dereference(ht->next)) {
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700458 ht->refcnt--;
John Fastabend1ce87722014-09-12 20:09:16 -0700459 u32_clear_hnode(ht);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
John Fastabend1ce87722014-09-12 20:09:16 -0700462 while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) {
463 RCU_INIT_POINTER(tp_c->hlist, ht->next);
464 kfree_rcu(ht, rcu);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 kfree(tp_c);
468 }
469
470 tp->data = NULL;
471}
472
473static int u32_delete(struct tcf_proto *tp, unsigned long arg)
474{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000475 struct tc_u_hnode *ht = (struct tc_u_hnode *)arg;
John Fastabend1ce87722014-09-12 20:09:16 -0700476 struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (ht == NULL)
479 return 0;
480
481 if (TC_U32_KEY(ht->handle))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000482 return u32_delete_key(tp, (struct tc_u_knode *)ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
John Fastabend1ce87722014-09-12 20:09:16 -0700484 if (root_ht == ht)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return -EINVAL;
486
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700487 if (ht->refcnt == 1) {
488 ht->refcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 u32_destroy_hnode(tp, ht);
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700490 } else {
491 return -EBUSY;
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 return 0;
495}
496
Cong Wang7801db82014-07-17 17:34:53 -0700497#define NR_U32_NODE (1<<12)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static u32 gen_new_kid(struct tc_u_hnode *ht, u32 handle)
499{
500 struct tc_u_knode *n;
Cong Wang7801db82014-07-17 17:34:53 -0700501 unsigned long i;
502 unsigned long *bitmap = kzalloc(BITS_TO_LONGS(NR_U32_NODE) * sizeof(unsigned long),
503 GFP_KERNEL);
504 if (!bitmap)
505 return handle | 0xFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
John Fastabend1ce87722014-09-12 20:09:16 -0700507 for (n = rtnl_dereference(ht->ht[TC_U32_HASH(handle)]);
508 n;
509 n = rtnl_dereference(n->next))
Cong Wang7801db82014-07-17 17:34:53 -0700510 set_bit(TC_U32_NODE(n->handle), bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Cong Wang7801db82014-07-17 17:34:53 -0700512 i = find_next_zero_bit(bitmap, NR_U32_NODE, 0x800);
513 if (i >= NR_U32_NODE)
514 i = find_next_zero_bit(bitmap, NR_U32_NODE, 1);
515
516 kfree(bitmap);
517 return handle | (i >= NR_U32_NODE ? 0xFFF : i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800520static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = {
521 [TCA_U32_CLASSID] = { .type = NLA_U32 },
522 [TCA_U32_HASH] = { .type = NLA_U32 },
523 [TCA_U32_LINK] = { .type = NLA_U32 },
524 [TCA_U32_DIVISOR] = { .type = NLA_U32 },
525 [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) },
526 [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ },
527 [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) },
528};
529
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000530static int u32_set_parms(struct net *net, struct tcf_proto *tp,
531 unsigned long base, struct tc_u_hnode *ht,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800532 struct tc_u_knode *n, struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700533 struct nlattr *est, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 int err;
536 struct tcf_exts e;
537
WANG Cong5da57f42013-12-15 20:15:07 -0800538 tcf_exts_init(&e, TCA_U32_ACT, TCA_U32_POLICE);
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700539 err = tcf_exts_validate(net, tp, tb, est, &e, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (err < 0)
541 return err;
542
543 err = -EINVAL;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800544 if (tb[TCA_U32_LINK]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800545 u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000546 struct tc_u_hnode *ht_down = NULL, *ht_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 if (TC_U32_KEY(handle))
549 goto errout;
550
551 if (handle) {
552 ht_down = u32_lookup_ht(ht->tp_c, handle);
553
554 if (ht_down == NULL)
555 goto errout;
556 ht_down->refcnt++;
557 }
558
John Fastabend1ce87722014-09-12 20:09:16 -0700559 ht_old = rtnl_dereference(n->ht_down);
560 rcu_assign_pointer(n->ht_down, ht_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000562 if (ht_old)
563 ht_old->refcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Patrick McHardyadd93b62008-01-22 22:11:33 -0800565 if (tb[TCA_U32_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800566 n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 tcf_bind_filter(tp, &n->res, base);
568 }
569
570#ifdef CONFIG_NET_CLS_IND
Patrick McHardyadd93b62008-01-22 22:11:33 -0800571 if (tb[TCA_U32_INDEV]) {
WANG Cong2519a602014-01-09 16:14:02 -0800572 int ret;
573 ret = tcf_change_indev(net, tb[TCA_U32_INDEV]);
574 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto errout;
WANG Cong2519a602014-01-09 16:14:02 -0800576 n->ifindex = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578#endif
579 tcf_exts_change(tp, &n->exts, &e);
580
581 return 0;
582errout:
583 tcf_exts_destroy(tp, &e);
584 return err;
585}
586
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000587static int u32_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600588 struct tcf_proto *tp, unsigned long base, u32 handle,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800589 struct nlattr **tca,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700590 unsigned long *arg, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 struct tc_u_common *tp_c = tp->data;
593 struct tc_u_hnode *ht;
594 struct tc_u_knode *n;
595 struct tc_u32_sel *s;
Patrick McHardyadd93b62008-01-22 22:11:33 -0800596 struct nlattr *opt = tca[TCA_OPTIONS];
597 struct nlattr *tb[TCA_U32_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 u32 htid;
599 int err;
John Fastabend459d5f62014-09-12 20:08:47 -0700600#ifdef CONFIG_CLS_U32_PERF
601 size_t size;
602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 if (opt == NULL)
605 return handle ? -EINVAL : 0;
606
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800607 err = nla_parse_nested(tb, TCA_U32_MAX, opt, u32_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800608 if (err < 0)
609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000611 n = (struct tc_u_knode *)*arg;
612 if (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (TC_U32_KEY(n->handle) == 0)
614 return -EINVAL;
615
John Fastabenda96366bf2014-09-15 23:30:49 -0700616 return u32_set_parms(net, tp, base,
617 rtnl_dereference(n->ht_up), n, tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700618 tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
Patrick McHardyadd93b62008-01-22 22:11:33 -0800621 if (tb[TCA_U32_DIVISOR]) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000622 unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 if (--divisor > 0x100)
625 return -EINVAL;
626 if (TC_U32_KEY(handle))
627 return -EINVAL;
628 if (handle == 0) {
629 handle = gen_new_htid(tp->data);
630 if (handle == 0)
631 return -ENOMEM;
632 }
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000633 ht = kzalloc(sizeof(*ht) + divisor*sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (ht == NULL)
635 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ht->tp_c = tp_c;
Jarek Poplawskie56cfad2008-04-12 18:37:13 -0700637 ht->refcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 ht->divisor = divisor;
639 ht->handle = handle;
640 ht->prio = tp->prio;
John Fastabend1ce87722014-09-12 20:09:16 -0700641 RCU_INIT_POINTER(ht->next, tp_c->hlist);
642 rcu_assign_pointer(tp_c->hlist, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 *arg = (unsigned long)ht;
644 return 0;
645 }
646
Patrick McHardyadd93b62008-01-22 22:11:33 -0800647 if (tb[TCA_U32_HASH]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800648 htid = nla_get_u32(tb[TCA_U32_HASH]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (TC_U32_HTID(htid) == TC_U32_ROOT) {
John Fastabend1ce87722014-09-12 20:09:16 -0700650 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 htid = ht->handle;
652 } else {
653 ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid));
654 if (ht == NULL)
655 return -EINVAL;
656 }
657 } else {
John Fastabend1ce87722014-09-12 20:09:16 -0700658 ht = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 htid = ht->handle;
660 }
661
662 if (ht->divisor < TC_U32_HASH(htid))
663 return -EINVAL;
664
665 if (handle) {
666 if (TC_U32_HTID(handle) && TC_U32_HTID(handle^htid))
667 return -EINVAL;
668 handle = htid | TC_U32_NODE(handle);
669 } else
670 handle = gen_new_kid(ht, htid);
671
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800672 if (tb[TCA_U32_SEL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return -EINVAL;
674
Patrick McHardyadd93b62008-01-22 22:11:33 -0800675 s = nla_data(tb[TCA_U32_SEL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700677 n = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (n == NULL)
679 return -ENOBUFS;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700682 size = sizeof(struct tc_u32_pcnt) + s->nkeys * sizeof(u64);
683 n->pf = __alloc_percpu(size, __alignof__(struct tc_u32_pcnt));
684 if (!n->pf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 kfree(n);
686 return -ENOBUFS;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif
689
690 memcpy(&n->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key));
John Fastabenda96366bf2014-09-15 23:30:49 -0700691 RCU_INIT_POINTER(n->ht_up, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 n->handle = handle;
Radu Rendecb2268012007-11-10 21:54:50 -0800693 n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0;
WANG Cong5da57f42013-12-15 20:15:07 -0800694 tcf_exts_init(&n->exts, TCA_U32_ACT, TCA_U32_POLICE);
John Fastabend1ce87722014-09-12 20:09:16 -0700695 n->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700698 n->pcpu_success = alloc_percpu(u32);
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700699 if (!n->pcpu_success) {
700 err = -ENOMEM;
701 goto errout;
702 }
John Fastabend459d5f62014-09-12 20:08:47 -0700703
Patrick McHardyadd93b62008-01-22 22:11:33 -0800704 if (tb[TCA_U32_MARK]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct tc_u32_mark *mark;
706
Patrick McHardyadd93b62008-01-22 22:11:33 -0800707 mark = nla_data(tb[TCA_U32_MARK]);
John Fastabend459d5f62014-09-12 20:08:47 -0700708 n->val = mark->val;
709 n->mask = mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711#endif
712
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700713 err = u32_set_parms(net, tp, base, ht, n, tb, tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (err == 0) {
John Fastabend1ce87722014-09-12 20:09:16 -0700715 struct tc_u_knode __rcu **ins;
716 struct tc_u_knode *pins;
717
718 ins = &ht->ht[TC_U32_HASH(handle)];
719 for (pins = rtnl_dereference(*ins); pins;
720 ins = &pins->next, pins = rtnl_dereference(*ins))
721 if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 break;
723
John Fastabend1ce87722014-09-12 20:09:16 -0700724 RCU_INIT_POINTER(n->next, pins);
725 rcu_assign_pointer(*ins, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 *arg = (unsigned long)n;
728 return 0;
729 }
John Fastabenda1ddcfe2014-09-19 21:50:04 -0700730
731#ifdef CONFIG_CLS_U32_MARK
732 free_percpu(n->pcpu_success);
733#endif
734
735errout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#ifdef CONFIG_CLS_U32_PERF
John Fastabend1ce87722014-09-12 20:09:16 -0700737 free_percpu(n->pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#endif
739 kfree(n);
740 return err;
741}
742
743static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg)
744{
745 struct tc_u_common *tp_c = tp->data;
746 struct tc_u_hnode *ht;
747 struct tc_u_knode *n;
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000748 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 if (arg->stop)
751 return;
752
John Fastabend1ce87722014-09-12 20:09:16 -0700753 for (ht = rtnl_dereference(tp_c->hlist);
754 ht;
755 ht = rtnl_dereference(ht->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (ht->prio != tp->prio)
757 continue;
758 if (arg->count >= arg->skip) {
759 if (arg->fn(tp, (unsigned long)ht, arg) < 0) {
760 arg->stop = 1;
761 return;
762 }
763 }
764 arg->count++;
765 for (h = 0; h <= ht->divisor; h++) {
John Fastabend1ce87722014-09-12 20:09:16 -0700766 for (n = rtnl_dereference(ht->ht[h]);
767 n;
768 n = rtnl_dereference(n->next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (arg->count < arg->skip) {
770 arg->count++;
771 continue;
772 }
773 if (arg->fn(tp, (unsigned long)n, arg) < 0) {
774 arg->stop = 1;
775 return;
776 }
777 arg->count++;
778 }
779 }
780 }
781}
782
WANG Cong832d1d52014-01-09 16:14:01 -0800783static int u32_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct sk_buff *skb, struct tcmsg *t)
785{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000786 struct tc_u_knode *n = (struct tc_u_knode *)fh;
John Fastabend1ce87722014-09-12 20:09:16 -0700787 struct tc_u_hnode *ht_up, *ht_down;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800788 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (n == NULL)
791 return skb->len;
792
793 t->tcm_handle = n->handle;
794
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800795 nest = nla_nest_start(skb, TCA_OPTIONS);
796 if (nest == NULL)
797 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (TC_U32_KEY(n->handle) == 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000800 struct tc_u_hnode *ht = (struct tc_u_hnode *)fh;
801 u32 divisor = ht->divisor + 1;
802
David S. Miller1b34ec42012-03-29 05:11:39 -0400803 if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor))
804 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else {
John Fastabend459d5f62014-09-12 20:08:47 -0700806#ifdef CONFIG_CLS_U32_PERF
807 struct tc_u32_pcnt *gpf;
John Fastabend459d5f62014-09-12 20:08:47 -0700808 int cpu;
John Fastabend80aab732014-09-15 23:30:26 -0700809#endif
John Fastabend459d5f62014-09-12 20:08:47 -0700810
David S. Miller1b34ec42012-03-29 05:11:39 -0400811 if (nla_put(skb, TCA_U32_SEL,
812 sizeof(n->sel) + n->sel.nkeys*sizeof(struct tc_u32_key),
813 &n->sel))
814 goto nla_put_failure;
John Fastabend1ce87722014-09-12 20:09:16 -0700815
816 ht_up = rtnl_dereference(n->ht_up);
817 if (ht_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 u32 htid = n->handle & 0xFFFFF000;
David S. Miller1b34ec42012-03-29 05:11:39 -0400819 if (nla_put_u32(skb, TCA_U32_HASH, htid))
820 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
David S. Miller1b34ec42012-03-29 05:11:39 -0400822 if (n->res.classid &&
823 nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid))
824 goto nla_put_failure;
John Fastabend1ce87722014-09-12 20:09:16 -0700825
826 ht_down = rtnl_dereference(n->ht_down);
827 if (ht_down &&
828 nla_put_u32(skb, TCA_U32_LINK, ht_down->handle))
David S. Miller1b34ec42012-03-29 05:11:39 -0400829 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831#ifdef CONFIG_CLS_U32_MARK
John Fastabend459d5f62014-09-12 20:08:47 -0700832 if ((n->val || n->mask)) {
833 struct tc_u32_mark mark = {.val = n->val,
834 .mask = n->mask,
835 .success = 0};
John Fastabend80aab732014-09-15 23:30:26 -0700836 int cpum;
John Fastabend459d5f62014-09-12 20:08:47 -0700837
John Fastabend80aab732014-09-15 23:30:26 -0700838 for_each_possible_cpu(cpum) {
839 __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum);
John Fastabend459d5f62014-09-12 20:08:47 -0700840
841 mark.success += cnt;
842 }
843
844 if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark))
845 goto nla_put_failure;
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847#endif
848
WANG Cong5da57f42013-12-15 20:15:07 -0800849 if (tcf_exts_dump(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800850 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852#ifdef CONFIG_NET_CLS_IND
WANG Cong2519a602014-01-09 16:14:02 -0800853 if (n->ifindex) {
854 struct net_device *dev;
855 dev = __dev_get_by_index(net, n->ifindex);
856 if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name))
857 goto nla_put_failure;
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859#endif
860#ifdef CONFIG_CLS_U32_PERF
John Fastabend459d5f62014-09-12 20:08:47 -0700861 gpf = kzalloc(sizeof(struct tc_u32_pcnt) +
862 n->sel.nkeys * sizeof(u64),
863 GFP_KERNEL);
864 if (!gpf)
865 goto nla_put_failure;
866
867 for_each_possible_cpu(cpu) {
868 int i;
869 struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu);
870
871 gpf->rcnt += pf->rcnt;
872 gpf->rhit += pf->rhit;
873 for (i = 0; i < n->sel.nkeys; i++)
874 gpf->kcnts[i] += pf->kcnts[i];
875 }
876
David S. Miller1b34ec42012-03-29 05:11:39 -0400877 if (nla_put(skb, TCA_U32_PCNT,
878 sizeof(struct tc_u32_pcnt) + n->sel.nkeys*sizeof(u64),
John Fastabend459d5f62014-09-12 20:08:47 -0700879 gpf)) {
880 kfree(gpf);
David S. Miller1b34ec42012-03-29 05:11:39 -0400881 goto nla_put_failure;
John Fastabend459d5f62014-09-12 20:08:47 -0700882 }
883 kfree(gpf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#endif
885 }
886
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800887 nla_nest_end(skb, nest);
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (TC_U32_KEY(n->handle))
WANG Cong5da57f42013-12-15 20:15:07 -0800890 if (tcf_exts_dump_stats(skb, &n->exts) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800891 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return skb->len;
893
Patrick McHardyadd93b62008-01-22 22:11:33 -0800894nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800895 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -1;
897}
898
Patrick McHardy2eb9d752008-01-22 22:10:42 -0800899static struct tcf_proto_ops cls_u32_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 .kind = "u32",
901 .classify = u32_classify,
902 .init = u32_init,
903 .destroy = u32_destroy,
904 .get = u32_get,
905 .put = u32_put,
906 .change = u32_change,
907 .delete = u32_delete,
908 .walk = u32_walk,
909 .dump = u32_dump,
910 .owner = THIS_MODULE,
911};
912
913static int __init init_u32(void)
914{
stephen hemminger6ff9c362010-05-12 06:37:05 +0000915 pr_info("u32 classifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#ifdef CONFIG_CLS_U32_PERF
stephen hemminger6ff9c362010-05-12 06:37:05 +0000917 pr_info(" Performance counters on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919#ifdef CONFIG_NET_CLS_IND
stephen hemminger6ff9c362010-05-12 06:37:05 +0000920 pr_info(" input device check on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921#endif
922#ifdef CONFIG_NET_CLS_ACT
stephen hemminger6ff9c362010-05-12 06:37:05 +0000923 pr_info(" Actions configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924#endif
925 return register_tcf_proto_ops(&cls_u32_ops);
926}
927
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900928static void __exit exit_u32(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 unregister_tcf_proto_ops(&cls_u32_ops);
931}
932
933module_init(init_u32)
934module_exit(exit_u32)
935MODULE_LICENSE("GPL");