2 * net/sched/cls_tcindex.c Packet classifier for skb->tc_index
4 * Written 1998,1999 by Werner Almesberger, EPFL ICA
7 #include <linux/module.h>
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/skbuff.h>
11 #include <linux/errno.h>
12 #include <net/act_api.h>
13 #include <net/netlink.h>
14 #include <net/pkt_cls.h>
18 * Not quite sure if we need all the xchgs Alexey uses when accessing things.
19 * Can always add them later ... :)
23 * Passing parameters to the root seems to be done more awkwardly than really
24 * necessary. At least, u32 doesn't seem to use such dirty hacks. To be
28 #define PERFECT_HASH_THRESHOLD 64 /* use perfect hash if not bigger */
29 #define DEFAULT_HASH_SIZE 64 /* optimized for diffserv */
33 #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
35 #define DPRINTK(format,args...)
39 #define D2PRINTK(format,args...) printk(KERN_DEBUG format,##args)
41 #define D2PRINTK(format,args...)
45 #define PRIV(tp) ((struct tcindex_data *) (tp)->root)
48 struct tcindex_filter_result
{
50 struct tcf_result res
;
53 struct tcindex_filter
{
55 struct tcindex_filter_result result
;
56 struct tcindex_filter
*next
;
61 struct tcindex_filter_result
*perfect
; /* perfect hash; NULL if none */
62 struct tcindex_filter
**h
; /* imperfect hash; only used if !perfect;
64 u16 mask
; /* AND key with mask */
65 int shift
; /* shift ANDed key to the right */
66 int hash
; /* hash table size; 0 if undefined */
67 int alloc_hash
; /* allocated size */
68 int fall_through
; /* 0: only classify if explicit match */
71 static struct tcf_ext_map tcindex_ext_map
= {
72 .police
= TCA_TCINDEX_POLICE
,
73 .action
= TCA_TCINDEX_ACT
77 tcindex_filter_is_set(struct tcindex_filter_result
*r
)
79 return tcf_exts_is_predicative(&r
->exts
) || r
->res
.classid
;
82 static struct tcindex_filter_result
*
83 tcindex_lookup(struct tcindex_data
*p
, u16 key
)
85 struct tcindex_filter
*f
;
88 return tcindex_filter_is_set(p
->perfect
+ key
) ?
89 p
->perfect
+ key
: NULL
;
91 for (f
= p
->h
[key
% p
->hash
]; f
; f
= f
->next
)
100 static int tcindex_classify(struct sk_buff
*skb
, struct tcf_proto
*tp
,
101 struct tcf_result
*res
)
103 struct tcindex_data
*p
= PRIV(tp
);
104 struct tcindex_filter_result
*f
;
105 int key
= (skb
->tc_index
& p
->mask
) >> p
->shift
;
107 D2PRINTK("tcindex_classify(skb %p,tp %p,res %p),p %p\n",skb
,tp
,res
,p
);
109 f
= tcindex_lookup(p
, key
);
111 if (!p
->fall_through
)
113 res
->classid
= TC_H_MAKE(TC_H_MAJ(tp
->q
->handle
), key
);
115 D2PRINTK("alg 0x%x\n",res
->classid
);
119 D2PRINTK("map 0x%x\n",res
->classid
);
121 return tcf_exts_exec(skb
, &f
->exts
, res
);
125 static unsigned long tcindex_get(struct tcf_proto
*tp
, u32 handle
)
127 struct tcindex_data
*p
= PRIV(tp
);
128 struct tcindex_filter_result
*r
;
130 DPRINTK("tcindex_get(tp %p,handle 0x%08x)\n",tp
,handle
);
131 if (p
->perfect
&& handle
>= p
->alloc_hash
)
133 r
= tcindex_lookup(p
, handle
);
134 return r
&& tcindex_filter_is_set(r
) ? (unsigned long) r
: 0UL;
138 static void tcindex_put(struct tcf_proto
*tp
, unsigned long f
)
140 DPRINTK("tcindex_put(tp %p,f 0x%lx)\n",tp
,f
);
144 static int tcindex_init(struct tcf_proto
*tp
)
146 struct tcindex_data
*p
;
148 DPRINTK("tcindex_init(tp %p)\n",tp
);
149 p
= kzalloc(sizeof(struct tcindex_data
),GFP_KERNEL
);
154 p
->hash
= DEFAULT_HASH_SIZE
;
163 __tcindex_delete(struct tcf_proto
*tp
, unsigned long arg
, int lock
)
165 struct tcindex_data
*p
= PRIV(tp
);
166 struct tcindex_filter_result
*r
= (struct tcindex_filter_result
*) arg
;
167 struct tcindex_filter
*f
= NULL
;
169 DPRINTK("tcindex_delete(tp %p,arg 0x%lx),p %p,f %p\n",tp
,arg
,p
,f
);
175 struct tcindex_filter
**walk
= NULL
;
177 for (i
= 0; i
< p
->hash
; i
++)
178 for (walk
= p
->h
+i
; *walk
; walk
= &(*walk
)->next
)
179 if (&(*walk
)->result
== r
)
191 tcf_unbind_filter(tp
, &r
->res
);
192 tcf_exts_destroy(tp
, &r
->exts
);
197 static int tcindex_delete(struct tcf_proto
*tp
, unsigned long arg
)
199 return __tcindex_delete(tp
, arg
, 1);
203 valid_perfect_hash(struct tcindex_data
*p
)
205 return p
->hash
> (p
->mask
>> p
->shift
);
209 tcindex_set_parms(struct tcf_proto
*tp
, unsigned long base
, u32 handle
,
210 struct tcindex_data
*p
, struct tcindex_filter_result
*r
,
211 struct rtattr
**tb
, struct rtattr
*est
)
214 struct tcindex_filter_result new_filter_result
, *old_r
= r
;
215 struct tcindex_filter_result cr
;
216 struct tcindex_data cp
;
217 struct tcindex_filter
*f
= NULL
; /* make gcc behave */
220 err
= tcf_exts_validate(tp
, tb
, est
, &e
, &tcindex_ext_map
);
224 memcpy(&cp
, p
, sizeof(cp
));
225 memset(&new_filter_result
, 0, sizeof(new_filter_result
));
228 memcpy(&cr
, r
, sizeof(cr
));
230 memset(&cr
, 0, sizeof(cr
));
233 if (tb
[TCA_TCINDEX_HASH
-1]) {
234 if (RTA_PAYLOAD(tb
[TCA_TCINDEX_HASH
-1]) < sizeof(u32
))
236 cp
.hash
= *(u32
*) RTA_DATA(tb
[TCA_TCINDEX_HASH
-1]);
239 if (tb
[TCA_TCINDEX_MASK
-1]) {
240 if (RTA_PAYLOAD(tb
[TCA_TCINDEX_MASK
-1]) < sizeof(u16
))
242 cp
.mask
= *(u16
*) RTA_DATA(tb
[TCA_TCINDEX_MASK
-1]);
245 if (tb
[TCA_TCINDEX_SHIFT
-1]) {
246 if (RTA_PAYLOAD(tb
[TCA_TCINDEX_SHIFT
-1]) < sizeof(int))
248 cp
.shift
= *(int *) RTA_DATA(tb
[TCA_TCINDEX_SHIFT
-1]);
252 /* Hash already allocated, make sure that we still meet the
253 * requirements for the allocated hash.
256 if (!valid_perfect_hash(&cp
) ||
257 cp
.hash
> cp
.alloc_hash
)
259 } else if (cp
.h
&& cp
.hash
!= cp
.alloc_hash
)
263 if (tb
[TCA_TCINDEX_FALL_THROUGH
-1]) {
264 if (RTA_PAYLOAD(tb
[TCA_TCINDEX_FALL_THROUGH
-1]) < sizeof(u32
))
267 *(u32
*) RTA_DATA(tb
[TCA_TCINDEX_FALL_THROUGH
-1]);
271 /* Hash not specified, use perfect hash if the upper limit
272 * of the hashing index is below the threshold.
274 if ((cp
.mask
>> cp
.shift
) < PERFECT_HASH_THRESHOLD
)
275 cp
.hash
= (cp
.mask
>> cp
.shift
)+1;
277 cp
.hash
= DEFAULT_HASH_SIZE
;
280 if (!cp
.perfect
&& !cp
.h
)
281 cp
.alloc_hash
= cp
.hash
;
283 /* Note: this could be as restrictive as if (handle & ~(mask >> shift))
284 * but then, we'd fail handles that may become valid after some future
285 * mask change. While this is extremely unlikely to ever matter,
286 * the check below is safer (and also more backwards-compatible).
288 if (cp
.perfect
|| valid_perfect_hash(&cp
))
289 if (handle
>= cp
.alloc_hash
)
294 if (!cp
.perfect
&& !cp
.h
) {
295 if (valid_perfect_hash(&cp
)) {
296 cp
.perfect
= kcalloc(cp
.hash
, sizeof(*r
), GFP_KERNEL
);
301 cp
.h
= kcalloc(cp
.hash
, sizeof(f
), GFP_KERNEL
);
309 r
= cp
.perfect
+ handle
;
311 r
= tcindex_lookup(&cp
, handle
) ? : &new_filter_result
;
313 if (r
== &new_filter_result
) {
314 f
= kzalloc(sizeof(*f
), GFP_KERNEL
);
319 if (tb
[TCA_TCINDEX_CLASSID
-1]) {
320 cr
.res
.classid
= *(u32
*) RTA_DATA(tb
[TCA_TCINDEX_CLASSID
-1]);
321 tcf_bind_filter(tp
, &cr
.res
, base
);
324 tcf_exts_change(tp
, &cr
.exts
, &e
);
327 if (old_r
&& old_r
!= r
)
328 memset(old_r
, 0, sizeof(*old_r
));
330 memcpy(p
, &cp
, sizeof(cp
));
331 memcpy(r
, &cr
, sizeof(cr
));
333 if (r
== &new_filter_result
) {
334 struct tcindex_filter
**fp
;
337 f
->result
= new_filter_result
;
339 for (fp
= p
->h
+(handle
% p
->hash
); *fp
; fp
= &(*fp
)->next
)
350 else if (balloc
== 2)
353 tcf_exts_destroy(tp
, &e
);
358 tcindex_change(struct tcf_proto
*tp
, unsigned long base
, u32 handle
,
359 struct rtattr
**tca
, unsigned long *arg
)
361 struct rtattr
*opt
= tca
[TCA_OPTIONS
-1];
362 struct rtattr
*tb
[TCA_TCINDEX_MAX
];
363 struct tcindex_data
*p
= PRIV(tp
);
364 struct tcindex_filter_result
*r
= (struct tcindex_filter_result
*) *arg
;
366 DPRINTK("tcindex_change(tp %p,handle 0x%08x,tca %p,arg %p),opt %p,"
367 "p %p,r %p,*arg 0x%lx\n",
368 tp
, handle
, tca
, arg
, opt
, p
, r
, arg
? *arg
: 0L);
373 if (rtattr_parse_nested(tb
, TCA_TCINDEX_MAX
, opt
) < 0)
376 return tcindex_set_parms(tp
, base
, handle
, p
, r
, tb
, tca
[TCA_RATE
-1]);
380 static void tcindex_walk(struct tcf_proto
*tp
, struct tcf_walker
*walker
)
382 struct tcindex_data
*p
= PRIV(tp
);
383 struct tcindex_filter
*f
,*next
;
386 DPRINTK("tcindex_walk(tp %p,walker %p),p %p\n",tp
,walker
,p
);
388 for (i
= 0; i
< p
->hash
; i
++) {
389 if (!p
->perfect
[i
].res
.class)
391 if (walker
->count
>= walker
->skip
) {
393 (unsigned long) (p
->perfect
+i
), walker
)
404 for (i
= 0; i
< p
->hash
; i
++) {
405 for (f
= p
->h
[i
]; f
; f
= next
) {
407 if (walker
->count
>= walker
->skip
) {
408 if (walker
->fn(tp
,(unsigned long) &f
->result
,
420 static int tcindex_destroy_element(struct tcf_proto
*tp
,
421 unsigned long arg
, struct tcf_walker
*walker
)
423 return __tcindex_delete(tp
, arg
, 0);
427 static void tcindex_destroy(struct tcf_proto
*tp
)
429 struct tcindex_data
*p
= PRIV(tp
);
430 struct tcf_walker walker
;
432 DPRINTK("tcindex_destroy(tp %p),p %p\n",tp
,p
);
435 walker
.fn
= &tcindex_destroy_element
;
436 tcindex_walk(tp
,&walker
);
444 static int tcindex_dump(struct tcf_proto
*tp
, unsigned long fh
,
445 struct sk_buff
*skb
, struct tcmsg
*t
)
447 struct tcindex_data
*p
= PRIV(tp
);
448 struct tcindex_filter_result
*r
= (struct tcindex_filter_result
*) fh
;
449 unsigned char *b
= skb_tail_pointer(skb
);
452 DPRINTK("tcindex_dump(tp %p,fh 0x%lx,skb %p,t %p),p %p,r %p,b %p\n",
454 DPRINTK("p->perfect %p p->h %p\n",p
->perfect
,p
->h
);
455 rta
= (struct rtattr
*) b
;
456 RTA_PUT(skb
,TCA_OPTIONS
,0,NULL
);
458 t
->tcm_handle
= ~0; /* whatever ... */
459 RTA_PUT(skb
,TCA_TCINDEX_HASH
,sizeof(p
->hash
),&p
->hash
);
460 RTA_PUT(skb
,TCA_TCINDEX_MASK
,sizeof(p
->mask
),&p
->mask
);
461 RTA_PUT(skb
,TCA_TCINDEX_SHIFT
,sizeof(p
->shift
),&p
->shift
);
462 RTA_PUT(skb
,TCA_TCINDEX_FALL_THROUGH
,sizeof(p
->fall_through
),
464 rta
->rta_len
= skb_tail_pointer(skb
) - b
;
467 t
->tcm_handle
= r
-p
->perfect
;
469 struct tcindex_filter
*f
;
473 for (i
= 0; !t
->tcm_handle
&& i
< p
->hash
; i
++) {
474 for (f
= p
->h
[i
]; !t
->tcm_handle
&& f
;
477 t
->tcm_handle
= f
->key
;
481 DPRINTK("handle = %d\n",t
->tcm_handle
);
483 RTA_PUT(skb
, TCA_TCINDEX_CLASSID
, 4, &r
->res
.classid
);
485 if (tcf_exts_dump(skb
, &r
->exts
, &tcindex_ext_map
) < 0)
487 rta
->rta_len
= skb_tail_pointer(skb
) - b
;
489 if (tcf_exts_dump_stats(skb
, &r
->exts
, &tcindex_ext_map
) < 0)
500 static struct tcf_proto_ops cls_tcindex_ops
= {
503 .classify
= tcindex_classify
,
504 .init
= tcindex_init
,
505 .destroy
= tcindex_destroy
,
508 .change
= tcindex_change
,
509 .delete = tcindex_delete
,
510 .walk
= tcindex_walk
,
511 .dump
= tcindex_dump
,
512 .owner
= THIS_MODULE
,
515 static int __init
init_tcindex(void)
517 return register_tcf_proto_ops(&cls_tcindex_ops
);
520 static void __exit
exit_tcindex(void)
522 unregister_tcf_proto_ops(&cls_tcindex_ops
);
525 module_init(init_tcindex
)
526 module_exit(exit_tcindex
)
527 MODULE_LICENSE("GPL");