xref: /openbmc/linux/net/sched/cls_u32.c (revision a03a8dbe20eff6d57aae3147577bf84b52aba4e6)
1 /*
2  * net/sched/cls_u32.c	Ugly (or Universal) 32bit key Packet Classifier.
3  *
4  *		This program is free software; you can redistribute it and/or
5  *		modify it under the terms of the GNU General Public License
6  *		as published by the Free Software Foundation; either version
7  *		2 of the License, or (at your option) any later version.
8  *
9  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10  *
11  *	The filters are packed to hash tables of key nodes
12  *	with a set of 32bit key/mask pairs at every node.
13  *	Nodes reference next level hash tables etc.
14  *
15  *	This scheme is the best universal classifier I managed to
16  *	invent; it is not super-fast, but it is not slow (provided you
17  *	program it correctly), and general enough.  And its relative
18  *	speed grows as the number of rules becomes larger.
19  *
20  *	It seems that it represents the best middle point between
21  *	speed and manageability both by human and by machine.
22  *
23  *	It is especially useful for link sharing combined with QoS;
24  *	pure RSVP doesn't need such a general approach and can use
25  *	much simpler (and faster) schemes, sort of cls_rsvp.c.
26  *
27  *	JHS: We should remove the CONFIG_NET_CLS_IND from here
28  *	eventually when the meta match extension is made available
29  *
30  *	nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro>
31  */
32 
33 #include <linux/module.h>
34 #include <linux/slab.h>
35 #include <linux/types.h>
36 #include <linux/kernel.h>
37 #include <linux/string.h>
38 #include <linux/errno.h>
39 #include <linux/percpu.h>
40 #include <linux/rtnetlink.h>
41 #include <linux/skbuff.h>
42 #include <linux/bitmap.h>
43 #include <net/netlink.h>
44 #include <net/act_api.h>
45 #include <net/pkt_cls.h>
46 
47 struct tc_u_knode {
48 	struct tc_u_knode __rcu	*next;
49 	u32			handle;
50 	struct tc_u_hnode __rcu	*ht_up;
51 	struct tcf_exts		exts;
52 #ifdef CONFIG_NET_CLS_IND
53 	int			ifindex;
54 #endif
55 	u8			fshift;
56 	struct tcf_result	res;
57 	struct tc_u_hnode __rcu	*ht_down;
58 #ifdef CONFIG_CLS_U32_PERF
59 	struct tc_u32_pcnt __percpu *pf;
60 #endif
61 #ifdef CONFIG_CLS_U32_MARK
62 	u32			val;
63 	u32			mask;
64 	u32 __percpu		*pcpu_success;
65 #endif
66 	struct tcf_proto	*tp;
67 	struct rcu_head		rcu;
68 	/* 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;
72 };
73 
74 struct tc_u_hnode {
75 	struct tc_u_hnode __rcu	*next;
76 	u32			handle;
77 	u32			prio;
78 	struct tc_u_common	*tp_c;
79 	int			refcnt;
80 	unsigned int		divisor;
81 	struct tc_u_knode __rcu	*ht[1];
82 	struct rcu_head		rcu;
83 };
84 
85 struct tc_u_common {
86 	struct tc_u_hnode __rcu	*hlist;
87 	struct Qdisc		*q;
88 	int			refcnt;
89 	u32			hgenerator;
90 	struct rcu_head		rcu;
91 };
92 
93 static inline unsigned int u32_hash_fold(__be32 key,
94 					 const struct tc_u32_sel *sel,
95 					 u8 fshift)
96 {
97 	unsigned int h = ntohl(key & sel->hmask) >> fshift;
98 
99 	return h;
100 }
101 
102 static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, struct tcf_result *res)
103 {
104 	struct {
105 		struct tc_u_knode *knode;
106 		unsigned int	  off;
107 	} stack[TC_U32_MAXDEPTH];
108 
109 	struct tc_u_hnode *ht = rcu_dereference_bh(tp->root);
110 	unsigned int off = skb_network_offset(skb);
111 	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 
120 next_ht:
121 	n = rcu_dereference_bh(ht->ht[sel]);
122 
123 next_knode:
124 	if (n) {
125 		struct tc_u32_key *key = n->sel.keys;
126 
127 #ifdef CONFIG_CLS_U32_PERF
128 		__this_cpu_inc(n->pf->rcnt);
129 		j = 0;
130 #endif
131 
132 #ifdef CONFIG_CLS_U32_MARK
133 		if ((skb->mark & n->mask) != n->val) {
134 			n = rcu_dereference_bh(n->next);
135 			goto next_knode;
136 		} else {
137 			__this_cpu_inc(*n->pcpu_success);
138 		}
139 #endif
140 
141 		for (i = n->sel.nkeys; i > 0; i--, key++) {
142 			int toff = off + key->off + (off2 & key->offmask);
143 			__be32 *data, hdata;
144 
145 			if (skb_headroom(skb) + toff > INT_MAX)
146 				goto out;
147 
148 			data = skb_header_pointer(skb, toff, 4, &hdata);
149 			if (!data)
150 				goto out;
151 			if ((*data ^ key->val) & key->mask) {
152 				n = rcu_dereference_bh(n->next);
153 				goto next_knode;
154 			}
155 #ifdef CONFIG_CLS_U32_PERF
156 			__this_cpu_inc(n->pf->kcnts[j]);
157 			j++;
158 #endif
159 		}
160 
161 		ht = rcu_dereference_bh(n->ht_down);
162 		if (!ht) {
163 check_terminal:
164 			if (n->sel.flags & TC_U32_TERMINAL) {
165 
166 				*res = n->res;
167 #ifdef CONFIG_NET_CLS_IND
168 				if (!tcf_match_indev(skb, n->ifindex)) {
169 					n = rcu_dereference_bh(n->next);
170 					goto next_knode;
171 				}
172 #endif
173 #ifdef CONFIG_CLS_U32_PERF
174 				__this_cpu_inc(n->pf->rhit);
175 #endif
176 				r = tcf_exts_exec(skb, &n->exts, res);
177 				if (r < 0) {
178 					n = rcu_dereference_bh(n->next);
179 					goto next_knode;
180 				}
181 
182 				return r;
183 			}
184 			n = rcu_dereference_bh(n->next);
185 			goto next_knode;
186 		}
187 
188 		/* PUSH */
189 		if (sdepth >= TC_U32_MAXDEPTH)
190 			goto deadloop;
191 		stack[sdepth].knode = n;
192 		stack[sdepth].off = off;
193 		sdepth++;
194 
195 		ht = rcu_dereference_bh(n->ht_down);
196 		sel = 0;
197 		if (ht->divisor) {
198 			__be32 *data, hdata;
199 
200 			data = skb_header_pointer(skb, off + n->sel.hoff, 4,
201 						  &hdata);
202 			if (!data)
203 				goto out;
204 			sel = ht->divisor & u32_hash_fold(*data, &n->sel,
205 							  n->fshift);
206 		}
207 		if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT)))
208 			goto next_ht;
209 
210 		if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) {
211 			off2 = n->sel.off + 3;
212 			if (n->sel.flags & TC_U32_VAROFFSET) {
213 				__be16 *data, hdata;
214 
215 				data = skb_header_pointer(skb,
216 							  off + n->sel.offoff,
217 							  2, &hdata);
218 				if (!data)
219 					goto out;
220 				off2 += ntohs(n->sel.offmask & *data) >>
221 					n->sel.offshift;
222 			}
223 			off2 &= ~3;
224 		}
225 		if (n->sel.flags & TC_U32_EAT) {
226 			off += off2;
227 			off2 = 0;
228 		}
229 
230 		if (off < skb->len)
231 			goto next_ht;
232 	}
233 
234 	/* POP */
235 	if (sdepth--) {
236 		n = stack[sdepth].knode;
237 		ht = rcu_dereference_bh(n->ht_up);
238 		off = stack[sdepth].off;
239 		goto check_terminal;
240 	}
241 out:
242 	return -1;
243 
244 deadloop:
245 	net_warn_ratelimited("cls_u32: dead loop\n");
246 	return -1;
247 }
248 
249 static struct tc_u_hnode *
250 u32_lookup_ht(struct tc_u_common *tp_c, u32 handle)
251 {
252 	struct tc_u_hnode *ht;
253 
254 	for (ht = rtnl_dereference(tp_c->hlist);
255 	     ht;
256 	     ht = rtnl_dereference(ht->next))
257 		if (ht->handle == handle)
258 			break;
259 
260 	return ht;
261 }
262 
263 static struct tc_u_knode *
264 u32_lookup_key(struct tc_u_hnode *ht, u32 handle)
265 {
266 	unsigned int sel;
267 	struct tc_u_knode *n = NULL;
268 
269 	sel = TC_U32_HASH(handle);
270 	if (sel > ht->divisor)
271 		goto out;
272 
273 	for (n = rtnl_dereference(ht->ht[sel]);
274 	     n;
275 	     n = rtnl_dereference(n->next))
276 		if (n->handle == handle)
277 			break;
278 out:
279 	return n;
280 }
281 
282 
283 static 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)
289 		ht = rtnl_dereference(tp->root);
290 	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 
302 static u32 gen_new_htid(struct tc_u_common *tp_c)
303 {
304 	int i = 0x800;
305 
306 	/* hgenerator only used inside rtnl lock it is safe to increment
307 	 * without read _copy_ update semantics
308 	 */
309 	do {
310 		if (++tp_c->hgenerator == 0x7FF)
311 			tp_c->hgenerator = 1;
312 	} while (--i > 0 && u32_lookup_ht(tp_c, (tp_c->hgenerator|0x800)<<20));
313 
314 	return i > 0 ? (tp_c->hgenerator|0x800)<<20 : 0;
315 }
316 
317 static int u32_init(struct tcf_proto *tp)
318 {
319 	struct tc_u_hnode *root_ht;
320 	struct tc_u_common *tp_c;
321 
322 	tp_c = tp->q->u32_node;
323 
324 	root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL);
325 	if (root_ht == NULL)
326 		return -ENOBUFS;
327 
328 	root_ht->divisor = 0;
329 	root_ht->refcnt++;
330 	root_ht->handle = tp_c ? gen_new_htid(tp_c) : 0x80000000;
331 	root_ht->prio = tp->prio;
332 
333 	if (tp_c == NULL) {
334 		tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL);
335 		if (tp_c == NULL) {
336 			kfree(root_ht);
337 			return -ENOBUFS;
338 		}
339 		tp_c->q = tp->q;
340 		tp->q->u32_node = tp_c;
341 	}
342 
343 	tp_c->refcnt++;
344 	RCU_INIT_POINTER(root_ht->next, tp_c->hlist);
345 	rcu_assign_pointer(tp_c->hlist, root_ht);
346 	root_ht->tp_c = tp_c;
347 
348 	rcu_assign_pointer(tp->root, root_ht);
349 	tp->data = tp_c;
350 	return 0;
351 }
352 
353 static int u32_destroy_key(struct tcf_proto *tp,
354 			   struct tc_u_knode *n,
355 			   bool free_pf)
356 {
357 	tcf_exts_destroy(&n->exts);
358 	if (n->ht_down)
359 		n->ht_down->refcnt--;
360 #ifdef CONFIG_CLS_U32_PERF
361 	if (free_pf)
362 		free_percpu(n->pf);
363 #endif
364 #ifdef CONFIG_CLS_U32_MARK
365 	if (free_pf)
366 		free_percpu(n->pcpu_success);
367 #endif
368 	kfree(n);
369 	return 0;
370 }
371 
372 /* u32_delete_key_rcu should be called when free'ing a copied
373  * version of a tc_u_knode obtained from u32_init_knode(). When
374  * copies are obtained from u32_init_knode() the statistics are
375  * shared between the old and new copies to allow readers to
376  * continue to update the statistics during the copy. To support
377  * this the u32_delete_key_rcu variant does not free the percpu
378  * statistics.
379  */
380 static void u32_delete_key_rcu(struct rcu_head *rcu)
381 {
382 	struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu);
383 
384 	u32_destroy_key(key->tp, key, false);
385 }
386 
387 /* u32_delete_key_freepf_rcu is the rcu callback variant
388  * that free's the entire structure including the statistics
389  * percpu variables. Only use this if the key is not a copy
390  * returned by u32_init_knode(). See u32_delete_key_rcu()
391  * for the variant that should be used with keys return from
392  * u32_init_knode()
393  */
394 static void u32_delete_key_freepf_rcu(struct rcu_head *rcu)
395 {
396 	struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu);
397 
398 	u32_destroy_key(key->tp, key, true);
399 }
400 
401 static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
402 {
403 	struct tc_u_knode __rcu **kp;
404 	struct tc_u_knode *pkp;
405 	struct tc_u_hnode *ht = rtnl_dereference(key->ht_up);
406 
407 	if (ht) {
408 		kp = &ht->ht[TC_U32_HASH(key->handle)];
409 		for (pkp = rtnl_dereference(*kp); pkp;
410 		     kp = &pkp->next, pkp = rtnl_dereference(*kp)) {
411 			if (pkp == key) {
412 				RCU_INIT_POINTER(*kp, key->next);
413 
414 				tcf_unbind_filter(tp, &key->res);
415 				call_rcu(&key->rcu, u32_delete_key_freepf_rcu);
416 				return 0;
417 			}
418 		}
419 	}
420 	WARN_ON(1);
421 	return 0;
422 }
423 
424 static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht)
425 {
426 	struct tc_u_knode *n;
427 	unsigned int h;
428 
429 	for (h = 0; h <= ht->divisor; h++) {
430 		while ((n = rtnl_dereference(ht->ht[h])) != NULL) {
431 			RCU_INIT_POINTER(ht->ht[h],
432 					 rtnl_dereference(n->next));
433 			tcf_unbind_filter(tp, &n->res);
434 			call_rcu(&n->rcu, u32_delete_key_freepf_rcu);
435 		}
436 	}
437 }
438 
439 static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht)
440 {
441 	struct tc_u_common *tp_c = tp->data;
442 	struct tc_u_hnode __rcu **hn;
443 	struct tc_u_hnode *phn;
444 
445 	WARN_ON(ht->refcnt);
446 
447 	u32_clear_hnode(tp, ht);
448 
449 	hn = &tp_c->hlist;
450 	for (phn = rtnl_dereference(*hn);
451 	     phn;
452 	     hn = &phn->next, phn = rtnl_dereference(*hn)) {
453 		if (phn == ht) {
454 			RCU_INIT_POINTER(*hn, ht->next);
455 			kfree_rcu(ht, rcu);
456 			return 0;
457 		}
458 	}
459 
460 	return -ENOENT;
461 }
462 
463 static bool ht_empty(struct tc_u_hnode *ht)
464 {
465 	unsigned int h;
466 
467 	for (h = 0; h <= ht->divisor; h++)
468 		if (rcu_access_pointer(ht->ht[h]))
469 			return false;
470 
471 	return true;
472 }
473 
474 static bool u32_destroy(struct tcf_proto *tp, bool force)
475 {
476 	struct tc_u_common *tp_c = tp->data;
477 	struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
478 
479 	WARN_ON(root_ht == NULL);
480 
481 	if (!force) {
482 		if (root_ht) {
483 			if (root_ht->refcnt > 1)
484 				return false;
485 			if (root_ht->refcnt == 1) {
486 				if (!ht_empty(root_ht))
487 					return false;
488 			}
489 		}
490 	}
491 
492 	if (root_ht && --root_ht->refcnt == 0)
493 		u32_destroy_hnode(tp, root_ht);
494 
495 	if (--tp_c->refcnt == 0) {
496 		struct tc_u_hnode *ht;
497 
498 		tp->q->u32_node = NULL;
499 
500 		for (ht = rtnl_dereference(tp_c->hlist);
501 		     ht;
502 		     ht = rtnl_dereference(ht->next)) {
503 			ht->refcnt--;
504 			u32_clear_hnode(tp, ht);
505 		}
506 
507 		while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) {
508 			RCU_INIT_POINTER(tp_c->hlist, ht->next);
509 			kfree_rcu(ht, rcu);
510 		}
511 
512 		kfree(tp_c);
513 	}
514 
515 	tp->data = NULL;
516 	return true;
517 }
518 
519 static int u32_delete(struct tcf_proto *tp, unsigned long arg)
520 {
521 	struct tc_u_hnode *ht = (struct tc_u_hnode *)arg;
522 	struct tc_u_hnode *root_ht = rtnl_dereference(tp->root);
523 
524 	if (ht == NULL)
525 		return 0;
526 
527 	if (TC_U32_KEY(ht->handle))
528 		return u32_delete_key(tp, (struct tc_u_knode *)ht);
529 
530 	if (root_ht == ht)
531 		return -EINVAL;
532 
533 	if (ht->refcnt == 1) {
534 		ht->refcnt--;
535 		u32_destroy_hnode(tp, ht);
536 	} else {
537 		return -EBUSY;
538 	}
539 
540 	return 0;
541 }
542 
543 #define NR_U32_NODE (1<<12)
544 static u32 gen_new_kid(struct tc_u_hnode *ht, u32 handle)
545 {
546 	struct tc_u_knode *n;
547 	unsigned long i;
548 	unsigned long *bitmap = kzalloc(BITS_TO_LONGS(NR_U32_NODE) * sizeof(unsigned long),
549 					GFP_KERNEL);
550 	if (!bitmap)
551 		return handle | 0xFFF;
552 
553 	for (n = rtnl_dereference(ht->ht[TC_U32_HASH(handle)]);
554 	     n;
555 	     n = rtnl_dereference(n->next))
556 		set_bit(TC_U32_NODE(n->handle), bitmap);
557 
558 	i = find_next_zero_bit(bitmap, NR_U32_NODE, 0x800);
559 	if (i >= NR_U32_NODE)
560 		i = find_next_zero_bit(bitmap, NR_U32_NODE, 1);
561 
562 	kfree(bitmap);
563 	return handle | (i >= NR_U32_NODE ? 0xFFF : i);
564 }
565 
566 static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = {
567 	[TCA_U32_CLASSID]	= { .type = NLA_U32 },
568 	[TCA_U32_HASH]		= { .type = NLA_U32 },
569 	[TCA_U32_LINK]		= { .type = NLA_U32 },
570 	[TCA_U32_DIVISOR]	= { .type = NLA_U32 },
571 	[TCA_U32_SEL]		= { .len = sizeof(struct tc_u32_sel) },
572 	[TCA_U32_INDEV]		= { .type = NLA_STRING, .len = IFNAMSIZ },
573 	[TCA_U32_MARK]		= { .len = sizeof(struct tc_u32_mark) },
574 };
575 
576 static int u32_set_parms(struct net *net, struct tcf_proto *tp,
577 			 unsigned long base, struct tc_u_hnode *ht,
578 			 struct tc_u_knode *n, struct nlattr **tb,
579 			 struct nlattr *est, bool ovr)
580 {
581 	int err;
582 	struct tcf_exts e;
583 
584 	tcf_exts_init(&e, TCA_U32_ACT, TCA_U32_POLICE);
585 	err = tcf_exts_validate(net, tp, tb, est, &e, ovr);
586 	if (err < 0)
587 		return err;
588 
589 	err = -EINVAL;
590 	if (tb[TCA_U32_LINK]) {
591 		u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
592 		struct tc_u_hnode *ht_down = NULL, *ht_old;
593 
594 		if (TC_U32_KEY(handle))
595 			goto errout;
596 
597 		if (handle) {
598 			ht_down = u32_lookup_ht(ht->tp_c, handle);
599 
600 			if (ht_down == NULL)
601 				goto errout;
602 			ht_down->refcnt++;
603 		}
604 
605 		ht_old = rtnl_dereference(n->ht_down);
606 		rcu_assign_pointer(n->ht_down, ht_down);
607 
608 		if (ht_old)
609 			ht_old->refcnt--;
610 	}
611 	if (tb[TCA_U32_CLASSID]) {
612 		n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]);
613 		tcf_bind_filter(tp, &n->res, base);
614 	}
615 
616 #ifdef CONFIG_NET_CLS_IND
617 	if (tb[TCA_U32_INDEV]) {
618 		int ret;
619 		ret = tcf_change_indev(net, tb[TCA_U32_INDEV]);
620 		if (ret < 0)
621 			goto errout;
622 		n->ifindex = ret;
623 	}
624 #endif
625 	tcf_exts_change(tp, &n->exts, &e);
626 
627 	return 0;
628 errout:
629 	tcf_exts_destroy(&e);
630 	return err;
631 }
632 
633 static void u32_replace_knode(struct tcf_proto *tp,
634 			      struct tc_u_common *tp_c,
635 			      struct tc_u_knode *n)
636 {
637 	struct tc_u_knode __rcu **ins;
638 	struct tc_u_knode *pins;
639 	struct tc_u_hnode *ht;
640 
641 	if (TC_U32_HTID(n->handle) == TC_U32_ROOT)
642 		ht = rtnl_dereference(tp->root);
643 	else
644 		ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle));
645 
646 	ins = &ht->ht[TC_U32_HASH(n->handle)];
647 
648 	/* The node must always exist for it to be replaced if this is not the
649 	 * case then something went very wrong elsewhere.
650 	 */
651 	for (pins = rtnl_dereference(*ins); ;
652 	     ins = &pins->next, pins = rtnl_dereference(*ins))
653 		if (pins->handle == n->handle)
654 			break;
655 
656 	RCU_INIT_POINTER(n->next, pins->next);
657 	rcu_assign_pointer(*ins, n);
658 }
659 
660 static struct tc_u_knode *u32_init_knode(struct tcf_proto *tp,
661 					 struct tc_u_knode *n)
662 {
663 	struct tc_u_knode *new;
664 	struct tc_u32_sel *s = &n->sel;
665 
666 	new = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key),
667 		      GFP_KERNEL);
668 
669 	if (!new)
670 		return NULL;
671 
672 	RCU_INIT_POINTER(new->next, n->next);
673 	new->handle = n->handle;
674 	RCU_INIT_POINTER(new->ht_up, n->ht_up);
675 
676 #ifdef CONFIG_NET_CLS_IND
677 	new->ifindex = n->ifindex;
678 #endif
679 	new->fshift = n->fshift;
680 	new->res = n->res;
681 	RCU_INIT_POINTER(new->ht_down, n->ht_down);
682 
683 	/* bump reference count as long as we hold pointer to structure */
684 	if (new->ht_down)
685 		new->ht_down->refcnt++;
686 
687 #ifdef CONFIG_CLS_U32_PERF
688 	/* Statistics may be incremented by readers during update
689 	 * so we must keep them in tact. When the node is later destroyed
690 	 * a special destroy call must be made to not free the pf memory.
691 	 */
692 	new->pf = n->pf;
693 #endif
694 
695 #ifdef CONFIG_CLS_U32_MARK
696 	new->val = n->val;
697 	new->mask = n->mask;
698 	/* Similarly success statistics must be moved as pointers */
699 	new->pcpu_success = n->pcpu_success;
700 #endif
701 	new->tp = tp;
702 	memcpy(&new->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key));
703 
704 	tcf_exts_init(&new->exts, TCA_U32_ACT, TCA_U32_POLICE);
705 
706 	return new;
707 }
708 
709 static int u32_change(struct net *net, struct sk_buff *in_skb,
710 		      struct tcf_proto *tp, unsigned long base, u32 handle,
711 		      struct nlattr **tca,
712 		      unsigned long *arg, bool ovr)
713 {
714 	struct tc_u_common *tp_c = tp->data;
715 	struct tc_u_hnode *ht;
716 	struct tc_u_knode *n;
717 	struct tc_u32_sel *s;
718 	struct nlattr *opt = tca[TCA_OPTIONS];
719 	struct nlattr *tb[TCA_U32_MAX + 1];
720 	u32 htid;
721 	int err;
722 #ifdef CONFIG_CLS_U32_PERF
723 	size_t size;
724 #endif
725 
726 	if (opt == NULL)
727 		return handle ? -EINVAL : 0;
728 
729 	err = nla_parse_nested(tb, TCA_U32_MAX, opt, u32_policy);
730 	if (err < 0)
731 		return err;
732 
733 	n = (struct tc_u_knode *)*arg;
734 	if (n) {
735 		struct tc_u_knode *new;
736 
737 		if (TC_U32_KEY(n->handle) == 0)
738 			return -EINVAL;
739 
740 		new = u32_init_knode(tp, n);
741 		if (!new)
742 			return -ENOMEM;
743 
744 		err = u32_set_parms(net, tp, base,
745 				    rtnl_dereference(n->ht_up), new, tb,
746 				    tca[TCA_RATE], ovr);
747 
748 		if (err) {
749 			u32_destroy_key(tp, new, false);
750 			return err;
751 		}
752 
753 		u32_replace_knode(tp, tp_c, new);
754 		tcf_unbind_filter(tp, &n->res);
755 		call_rcu(&n->rcu, u32_delete_key_rcu);
756 		return 0;
757 	}
758 
759 	if (tb[TCA_U32_DIVISOR]) {
760 		unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]);
761 
762 		if (--divisor > 0x100)
763 			return -EINVAL;
764 		if (TC_U32_KEY(handle))
765 			return -EINVAL;
766 		if (handle == 0) {
767 			handle = gen_new_htid(tp->data);
768 			if (handle == 0)
769 				return -ENOMEM;
770 		}
771 		ht = kzalloc(sizeof(*ht) + divisor*sizeof(void *), GFP_KERNEL);
772 		if (ht == NULL)
773 			return -ENOBUFS;
774 		ht->tp_c = tp_c;
775 		ht->refcnt = 1;
776 		ht->divisor = divisor;
777 		ht->handle = handle;
778 		ht->prio = tp->prio;
779 		RCU_INIT_POINTER(ht->next, tp_c->hlist);
780 		rcu_assign_pointer(tp_c->hlist, ht);
781 		*arg = (unsigned long)ht;
782 		return 0;
783 	}
784 
785 	if (tb[TCA_U32_HASH]) {
786 		htid = nla_get_u32(tb[TCA_U32_HASH]);
787 		if (TC_U32_HTID(htid) == TC_U32_ROOT) {
788 			ht = rtnl_dereference(tp->root);
789 			htid = ht->handle;
790 		} else {
791 			ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid));
792 			if (ht == NULL)
793 				return -EINVAL;
794 		}
795 	} else {
796 		ht = rtnl_dereference(tp->root);
797 		htid = ht->handle;
798 	}
799 
800 	if (ht->divisor < TC_U32_HASH(htid))
801 		return -EINVAL;
802 
803 	if (handle) {
804 		if (TC_U32_HTID(handle) && TC_U32_HTID(handle^htid))
805 			return -EINVAL;
806 		handle = htid | TC_U32_NODE(handle);
807 	} else
808 		handle = gen_new_kid(ht, htid);
809 
810 	if (tb[TCA_U32_SEL] == NULL)
811 		return -EINVAL;
812 
813 	s = nla_data(tb[TCA_U32_SEL]);
814 
815 	n = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), GFP_KERNEL);
816 	if (n == NULL)
817 		return -ENOBUFS;
818 
819 #ifdef CONFIG_CLS_U32_PERF
820 	size = sizeof(struct tc_u32_pcnt) + s->nkeys * sizeof(u64);
821 	n->pf = __alloc_percpu(size, __alignof__(struct tc_u32_pcnt));
822 	if (!n->pf) {
823 		kfree(n);
824 		return -ENOBUFS;
825 	}
826 #endif
827 
828 	memcpy(&n->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key));
829 	RCU_INIT_POINTER(n->ht_up, ht);
830 	n->handle = handle;
831 	n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0;
832 	tcf_exts_init(&n->exts, TCA_U32_ACT, TCA_U32_POLICE);
833 	n->tp = tp;
834 
835 #ifdef CONFIG_CLS_U32_MARK
836 	n->pcpu_success = alloc_percpu(u32);
837 	if (!n->pcpu_success) {
838 		err = -ENOMEM;
839 		goto errout;
840 	}
841 
842 	if (tb[TCA_U32_MARK]) {
843 		struct tc_u32_mark *mark;
844 
845 		mark = nla_data(tb[TCA_U32_MARK]);
846 		n->val = mark->val;
847 		n->mask = mark->mask;
848 	}
849 #endif
850 
851 	err = u32_set_parms(net, tp, base, ht, n, tb, tca[TCA_RATE], ovr);
852 	if (err == 0) {
853 		struct tc_u_knode __rcu **ins;
854 		struct tc_u_knode *pins;
855 
856 		ins = &ht->ht[TC_U32_HASH(handle)];
857 		for (pins = rtnl_dereference(*ins); pins;
858 		     ins = &pins->next, pins = rtnl_dereference(*ins))
859 			if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle))
860 				break;
861 
862 		RCU_INIT_POINTER(n->next, pins);
863 		rcu_assign_pointer(*ins, n);
864 
865 		*arg = (unsigned long)n;
866 		return 0;
867 	}
868 
869 #ifdef CONFIG_CLS_U32_MARK
870 	free_percpu(n->pcpu_success);
871 errout:
872 #endif
873 
874 #ifdef CONFIG_CLS_U32_PERF
875 	free_percpu(n->pf);
876 #endif
877 	kfree(n);
878 	return err;
879 }
880 
881 static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg)
882 {
883 	struct tc_u_common *tp_c = tp->data;
884 	struct tc_u_hnode *ht;
885 	struct tc_u_knode *n;
886 	unsigned int h;
887 
888 	if (arg->stop)
889 		return;
890 
891 	for (ht = rtnl_dereference(tp_c->hlist);
892 	     ht;
893 	     ht = rtnl_dereference(ht->next)) {
894 		if (ht->prio != tp->prio)
895 			continue;
896 		if (arg->count >= arg->skip) {
897 			if (arg->fn(tp, (unsigned long)ht, arg) < 0) {
898 				arg->stop = 1;
899 				return;
900 			}
901 		}
902 		arg->count++;
903 		for (h = 0; h <= ht->divisor; h++) {
904 			for (n = rtnl_dereference(ht->ht[h]);
905 			     n;
906 			     n = rtnl_dereference(n->next)) {
907 				if (arg->count < arg->skip) {
908 					arg->count++;
909 					continue;
910 				}
911 				if (arg->fn(tp, (unsigned long)n, arg) < 0) {
912 					arg->stop = 1;
913 					return;
914 				}
915 				arg->count++;
916 			}
917 		}
918 	}
919 }
920 
921 static int u32_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
922 		     struct sk_buff *skb, struct tcmsg *t)
923 {
924 	struct tc_u_knode *n = (struct tc_u_knode *)fh;
925 	struct tc_u_hnode *ht_up, *ht_down;
926 	struct nlattr *nest;
927 
928 	if (n == NULL)
929 		return skb->len;
930 
931 	t->tcm_handle = n->handle;
932 
933 	nest = nla_nest_start(skb, TCA_OPTIONS);
934 	if (nest == NULL)
935 		goto nla_put_failure;
936 
937 	if (TC_U32_KEY(n->handle) == 0) {
938 		struct tc_u_hnode *ht = (struct tc_u_hnode *)fh;
939 		u32 divisor = ht->divisor + 1;
940 
941 		if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor))
942 			goto nla_put_failure;
943 	} else {
944 #ifdef CONFIG_CLS_U32_PERF
945 		struct tc_u32_pcnt *gpf;
946 		int cpu;
947 #endif
948 
949 		if (nla_put(skb, TCA_U32_SEL,
950 			    sizeof(n->sel) + n->sel.nkeys*sizeof(struct tc_u32_key),
951 			    &n->sel))
952 			goto nla_put_failure;
953 
954 		ht_up = rtnl_dereference(n->ht_up);
955 		if (ht_up) {
956 			u32 htid = n->handle & 0xFFFFF000;
957 			if (nla_put_u32(skb, TCA_U32_HASH, htid))
958 				goto nla_put_failure;
959 		}
960 		if (n->res.classid &&
961 		    nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid))
962 			goto nla_put_failure;
963 
964 		ht_down = rtnl_dereference(n->ht_down);
965 		if (ht_down &&
966 		    nla_put_u32(skb, TCA_U32_LINK, ht_down->handle))
967 			goto nla_put_failure;
968 
969 #ifdef CONFIG_CLS_U32_MARK
970 		if ((n->val || n->mask)) {
971 			struct tc_u32_mark mark = {.val = n->val,
972 						   .mask = n->mask,
973 						   .success = 0};
974 			int cpum;
975 
976 			for_each_possible_cpu(cpum) {
977 				__u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum);
978 
979 				mark.success += cnt;
980 			}
981 
982 			if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark))
983 				goto nla_put_failure;
984 		}
985 #endif
986 
987 		if (tcf_exts_dump(skb, &n->exts) < 0)
988 			goto nla_put_failure;
989 
990 #ifdef CONFIG_NET_CLS_IND
991 		if (n->ifindex) {
992 			struct net_device *dev;
993 			dev = __dev_get_by_index(net, n->ifindex);
994 			if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name))
995 				goto nla_put_failure;
996 		}
997 #endif
998 #ifdef CONFIG_CLS_U32_PERF
999 		gpf = kzalloc(sizeof(struct tc_u32_pcnt) +
1000 			      n->sel.nkeys * sizeof(u64),
1001 			      GFP_KERNEL);
1002 		if (!gpf)
1003 			goto nla_put_failure;
1004 
1005 		for_each_possible_cpu(cpu) {
1006 			int i;
1007 			struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu);
1008 
1009 			gpf->rcnt += pf->rcnt;
1010 			gpf->rhit += pf->rhit;
1011 			for (i = 0; i < n->sel.nkeys; i++)
1012 				gpf->kcnts[i] += pf->kcnts[i];
1013 		}
1014 
1015 		if (nla_put(skb, TCA_U32_PCNT,
1016 			    sizeof(struct tc_u32_pcnt) + n->sel.nkeys*sizeof(u64),
1017 			    gpf)) {
1018 			kfree(gpf);
1019 			goto nla_put_failure;
1020 		}
1021 		kfree(gpf);
1022 #endif
1023 	}
1024 
1025 	nla_nest_end(skb, nest);
1026 
1027 	if (TC_U32_KEY(n->handle))
1028 		if (tcf_exts_dump_stats(skb, &n->exts) < 0)
1029 			goto nla_put_failure;
1030 	return skb->len;
1031 
1032 nla_put_failure:
1033 	nla_nest_cancel(skb, nest);
1034 	return -1;
1035 }
1036 
1037 static struct tcf_proto_ops cls_u32_ops __read_mostly = {
1038 	.kind		=	"u32",
1039 	.classify	=	u32_classify,
1040 	.init		=	u32_init,
1041 	.destroy	=	u32_destroy,
1042 	.get		=	u32_get,
1043 	.change		=	u32_change,
1044 	.delete		=	u32_delete,
1045 	.walk		=	u32_walk,
1046 	.dump		=	u32_dump,
1047 	.owner		=	THIS_MODULE,
1048 };
1049 
1050 static int __init init_u32(void)
1051 {
1052 	pr_info("u32 classifier\n");
1053 #ifdef CONFIG_CLS_U32_PERF
1054 	pr_info("    Performance counters on\n");
1055 #endif
1056 #ifdef CONFIG_NET_CLS_IND
1057 	pr_info("    input device check on\n");
1058 #endif
1059 #ifdef CONFIG_NET_CLS_ACT
1060 	pr_info("    Actions configured\n");
1061 #endif
1062 	return register_tcf_proto_ops(&cls_u32_ops);
1063 }
1064 
1065 static void __exit exit_u32(void)
1066 {
1067 	unregister_tcf_proto_ops(&cls_u32_ops);
1068 }
1069 
1070 module_init(init_u32)
1071 module_exit(exit_u32)
1072 MODULE_LICENSE("GPL");
1073