]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sched/cls_flow.c
net_sched: cls_flow: use proto_ports_offset() to support AH message
[net-next-2.6.git] / net / sched / cls_flow.c
CommitLineData
e5dfb815
PM
1/*
2 * net/sched/cls_flow.c Generic flow classifier
3 *
4 * Copyright (c) 2007, 2008 Patrick McHardy <kaber@trash.net>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/list.h>
15#include <linux/jhash.h>
16#include <linux/random.h>
17#include <linux/pkt_cls.h>
18#include <linux/skbuff.h>
19#include <linux/in.h>
20#include <linux/ip.h>
21#include <linux/ipv6.h>
9ec13810 22#include <linux/if_vlan.h>
5a0e3ad6 23#include <linux/slab.h>
e5dfb815
PM
24
25#include <net/pkt_cls.h>
26#include <net/ip.h>
27#include <net/route.h>
28#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
29#include <net/netfilter/nf_conntrack.h>
30#endif
31
32struct flow_head {
33 struct list_head filters;
34};
35
36struct flow_filter {
37 struct list_head list;
38 struct tcf_exts exts;
39 struct tcf_ematch_tree ematches;
72d9794f
PM
40 struct timer_list perturb_timer;
41 u32 perturb_period;
e5dfb815
PM
42 u32 handle;
43
44 u32 nkeys;
45 u32 keymask;
46 u32 mode;
47 u32 mask;
48 u32 xor;
49 u32 rshift;
50 u32 addend;
51 u32 divisor;
52 u32 baseclass;
72d9794f 53 u32 hashrnd;
e5dfb815
PM
54};
55
e5dfb815
PM
56static const struct tcf_ext_map flow_ext_map = {
57 .action = TCA_FLOW_ACT,
58 .police = TCA_FLOW_POLICE,
59};
60
61static inline u32 addr_fold(void *addr)
62{
63 unsigned long a = (unsigned long)addr;
64
65 return (a & 0xFFFFFFFF) ^ (BITS_PER_LONG > 32 ? a >> 32 : 0);
66}
67
4b95c3d4 68static u32 flow_get_src(struct sk_buff *skb)
e5dfb815
PM
69{
70 switch (skb->protocol) {
60678040 71 case htons(ETH_P_IP):
4b95c3d4
CG
72 if (pskb_network_may_pull(skb, sizeof(struct iphdr)))
73 return ntohl(ip_hdr(skb)->saddr);
74 break;
60678040 75 case htons(ETH_P_IPV6):
4b95c3d4
CG
76 if (pskb_network_may_pull(skb, sizeof(struct ipv6hdr)))
77 return ntohl(ipv6_hdr(skb)->saddr.s6_addr32[3]);
78 break;
e5dfb815 79 }
4b95c3d4
CG
80
81 return addr_fold(skb->sk);
e5dfb815
PM
82}
83
4b95c3d4 84static u32 flow_get_dst(struct sk_buff *skb)
e5dfb815
PM
85{
86 switch (skb->protocol) {
60678040 87 case htons(ETH_P_IP):
4b95c3d4
CG
88 if (pskb_network_may_pull(skb, sizeof(struct iphdr)))
89 return ntohl(ip_hdr(skb)->daddr);
90 break;
60678040 91 case htons(ETH_P_IPV6):
4b95c3d4
CG
92 if (pskb_network_may_pull(skb, sizeof(struct ipv6hdr)))
93 return ntohl(ipv6_hdr(skb)->daddr.s6_addr32[3]);
94 break;
e5dfb815 95 }
4b95c3d4
CG
96
97 return addr_fold(skb_dst(skb)) ^ (__force u16)skb->protocol;
e5dfb815
PM
98}
99
4b95c3d4 100static u32 flow_get_proto(struct sk_buff *skb)
e5dfb815
PM
101{
102 switch (skb->protocol) {
60678040 103 case htons(ETH_P_IP):
4b95c3d4
CG
104 return pskb_network_may_pull(skb, sizeof(struct iphdr)) ?
105 ip_hdr(skb)->protocol : 0;
60678040 106 case htons(ETH_P_IPV6):
4b95c3d4
CG
107 return pskb_network_may_pull(skb, sizeof(struct ipv6hdr)) ?
108 ipv6_hdr(skb)->nexthdr : 0;
e5dfb815
PM
109 default:
110 return 0;
111 }
112}
113
4b95c3d4 114static u32 flow_get_proto_src(struct sk_buff *skb)
e5dfb815 115{
e5dfb815 116 switch (skb->protocol) {
60678040 117 case htons(ETH_P_IP): {
4b95c3d4 118 struct iphdr *iph;
78d3307e 119 int poff;
e5dfb815 120
4b95c3d4
CG
121 if (!pskb_network_may_pull(skb, sizeof(*iph)))
122 break;
123 iph = ip_hdr(skb);
78d3307e
CG
124 if (iph->frag_off & htons(IP_MF|IP_OFFSET))
125 break;
126 poff = proto_ports_offset(iph->protocol);
127 if (poff >= 0 &&
128 pskb_network_may_pull(skb, iph->ihl * 4 + 2 + poff)) {
129 iph = ip_hdr(skb);
130 return ntohs(*(__be16 *)((void *)iph + iph->ihl * 4 +
131 poff));
132 }
e5dfb815
PM
133 break;
134 }
60678040 135 case htons(ETH_P_IPV6): {
4b95c3d4 136 struct ipv6hdr *iph;
78d3307e 137 int poff;
e5dfb815 138
78d3307e 139 if (!pskb_network_may_pull(skb, sizeof(*iph)))
4b95c3d4
CG
140 break;
141 iph = ipv6_hdr(skb);
78d3307e
CG
142 poff = proto_ports_offset(iph->nexthdr);
143 if (poff >= 0 &&
144 pskb_network_may_pull(skb, sizeof(*iph) + poff + 2)) {
145 iph = ipv6_hdr(skb);
146 return ntohs(*(__be16 *)((void *)iph + sizeof(*iph) +
147 poff));
148 }
e5dfb815
PM
149 break;
150 }
e5dfb815
PM
151 }
152
4b95c3d4 153 return addr_fold(skb->sk);
e5dfb815
PM
154}
155
4b95c3d4 156static u32 flow_get_proto_dst(struct sk_buff *skb)
e5dfb815 157{
e5dfb815 158 switch (skb->protocol) {
60678040 159 case htons(ETH_P_IP): {
4b95c3d4 160 struct iphdr *iph;
78d3307e 161 int poff;
e5dfb815 162
4b95c3d4
CG
163 if (!pskb_network_may_pull(skb, sizeof(*iph)))
164 break;
165 iph = ip_hdr(skb);
78d3307e
CG
166 if (iph->frag_off & htons(IP_MF|IP_OFFSET))
167 break;
168 poff = proto_ports_offset(iph->protocol);
169 if (poff >= 0 &&
170 pskb_network_may_pull(skb, iph->ihl * 4 + 4 + poff)) {
171 iph = ip_hdr(skb);
172 return ntohs(*(__be16 *)((void *)iph + iph->ihl * 4 +
173 2 + poff));
174 }
e5dfb815
PM
175 break;
176 }
60678040 177 case htons(ETH_P_IPV6): {
4b95c3d4 178 struct ipv6hdr *iph;
78d3307e 179 int poff;
e5dfb815 180
78d3307e 181 if (!pskb_network_may_pull(skb, sizeof(*iph)))
4b95c3d4
CG
182 break;
183 iph = ipv6_hdr(skb);
78d3307e
CG
184 poff = proto_ports_offset(iph->nexthdr);
185 if (poff >= 0 &&
186 pskb_network_may_pull(skb, sizeof(*iph) + poff + 4)) {
187 iph = ipv6_hdr(skb);
188 return ntohs(*(__be16 *)((void *)iph + sizeof(*iph) +
189 poff + 2));
190 }
e5dfb815
PM
191 break;
192 }
e5dfb815
PM
193 }
194
4b95c3d4 195 return addr_fold(skb_dst(skb)) ^ (__force u16)skb->protocol;
e5dfb815
PM
196}
197
198static u32 flow_get_iif(const struct sk_buff *skb)
199{
8964be4a 200 return skb->skb_iif;
e5dfb815
PM
201}
202
203static u32 flow_get_priority(const struct sk_buff *skb)
204{
205 return skb->priority;
206}
207
208static u32 flow_get_mark(const struct sk_buff *skb)
209{
210 return skb->mark;
211}
212
213static u32 flow_get_nfct(const struct sk_buff *skb)
214{
215#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
216 return addr_fold(skb->nfct);
217#else
218 return 0;
219#endif
220}
221
222#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
223#define CTTUPLE(skb, member) \
224({ \
225 enum ip_conntrack_info ctinfo; \
226 struct nf_conn *ct = nf_ct_get(skb, &ctinfo); \
227 if (ct == NULL) \
228 goto fallback; \
229 ct->tuplehash[CTINFO2DIR(ctinfo)].tuple.member; \
230})
231#else
232#define CTTUPLE(skb, member) \
233({ \
234 goto fallback; \
235 0; \
236})
237#endif
238
4b95c3d4 239static u32 flow_get_nfct_src(struct sk_buff *skb)
e5dfb815
PM
240{
241 switch (skb->protocol) {
60678040 242 case htons(ETH_P_IP):
e5dfb815 243 return ntohl(CTTUPLE(skb, src.u3.ip));
60678040 244 case htons(ETH_P_IPV6):
e5dfb815
PM
245 return ntohl(CTTUPLE(skb, src.u3.ip6[3]));
246 }
247fallback:
248 return flow_get_src(skb);
249}
250
4b95c3d4 251static u32 flow_get_nfct_dst(struct sk_buff *skb)
e5dfb815
PM
252{
253 switch (skb->protocol) {
60678040 254 case htons(ETH_P_IP):
e5dfb815 255 return ntohl(CTTUPLE(skb, dst.u3.ip));
60678040 256 case htons(ETH_P_IPV6):
e5dfb815
PM
257 return ntohl(CTTUPLE(skb, dst.u3.ip6[3]));
258 }
259fallback:
260 return flow_get_dst(skb);
261}
262
4b95c3d4 263static u32 flow_get_nfct_proto_src(struct sk_buff *skb)
e5dfb815
PM
264{
265 return ntohs(CTTUPLE(skb, src.u.all));
266fallback:
267 return flow_get_proto_src(skb);
268}
269
4b95c3d4 270static u32 flow_get_nfct_proto_dst(struct sk_buff *skb)
e5dfb815
PM
271{
272 return ntohs(CTTUPLE(skb, dst.u.all));
273fallback:
274 return flow_get_proto_dst(skb);
275}
276
277static u32 flow_get_rtclassid(const struct sk_buff *skb)
278{
279#ifdef CONFIG_NET_CLS_ROUTE
adf30907
ED
280 if (skb_dst(skb))
281 return skb_dst(skb)->tclassid;
e5dfb815
PM
282#endif
283 return 0;
284}
285
286static u32 flow_get_skuid(const struct sk_buff *skb)
287{
288 if (skb->sk && skb->sk->sk_socket && skb->sk->sk_socket->file)
d76b0d9b 289 return skb->sk->sk_socket->file->f_cred->fsuid;
e5dfb815
PM
290 return 0;
291}
292
293static u32 flow_get_skgid(const struct sk_buff *skb)
294{
295 if (skb->sk && skb->sk->sk_socket && skb->sk->sk_socket->file)
d76b0d9b 296 return skb->sk->sk_socket->file->f_cred->fsgid;
e5dfb815
PM
297 return 0;
298}
299
9ec13810
PM
300static u32 flow_get_vlan_tag(const struct sk_buff *skb)
301{
302 u16 uninitialized_var(tag);
303
304 if (vlan_get_tag(skb, &tag) < 0)
305 return 0;
306 return tag & VLAN_VID_MASK;
307}
308
4b95c3d4 309static u32 flow_key_get(struct sk_buff *skb, int key)
e5dfb815
PM
310{
311 switch (key) {
312 case FLOW_KEY_SRC:
313 return flow_get_src(skb);
314 case FLOW_KEY_DST:
315 return flow_get_dst(skb);
316 case FLOW_KEY_PROTO:
317 return flow_get_proto(skb);
318 case FLOW_KEY_PROTO_SRC:
319 return flow_get_proto_src(skb);
320 case FLOW_KEY_PROTO_DST:
321 return flow_get_proto_dst(skb);
322 case FLOW_KEY_IIF:
323 return flow_get_iif(skb);
324 case FLOW_KEY_PRIORITY:
325 return flow_get_priority(skb);
326 case FLOW_KEY_MARK:
327 return flow_get_mark(skb);
328 case FLOW_KEY_NFCT:
329 return flow_get_nfct(skb);
330 case FLOW_KEY_NFCT_SRC:
331 return flow_get_nfct_src(skb);
332 case FLOW_KEY_NFCT_DST:
333 return flow_get_nfct_dst(skb);
334 case FLOW_KEY_NFCT_PROTO_SRC:
335 return flow_get_nfct_proto_src(skb);
336 case FLOW_KEY_NFCT_PROTO_DST:
337 return flow_get_nfct_proto_dst(skb);
338 case FLOW_KEY_RTCLASSID:
339 return flow_get_rtclassid(skb);
340 case FLOW_KEY_SKUID:
341 return flow_get_skuid(skb);
342 case FLOW_KEY_SKGID:
343 return flow_get_skgid(skb);
9ec13810
PM
344 case FLOW_KEY_VLAN_TAG:
345 return flow_get_vlan_tag(skb);
e5dfb815
PM
346 default:
347 WARN_ON(1);
348 return 0;
349 }
350}
351
352static int flow_classify(struct sk_buff *skb, struct tcf_proto *tp,
353 struct tcf_result *res)
354{
355 struct flow_head *head = tp->root;
356 struct flow_filter *f;
357 u32 keymask;
358 u32 classid;
359 unsigned int n, key;
360 int r;
361
362 list_for_each_entry(f, &head->filters, list) {
363 u32 keys[f->nkeys];
364
365 if (!tcf_em_tree_match(skb, &f->ematches, NULL))
366 continue;
367
368 keymask = f->keymask;
369
370 for (n = 0; n < f->nkeys; n++) {
371 key = ffs(keymask) - 1;
372 keymask &= ~(1 << key);
373 keys[n] = flow_key_get(skb, key);
374 }
375
376 if (f->mode == FLOW_MODE_HASH)
72d9794f 377 classid = jhash2(keys, f->nkeys, f->hashrnd);
e5dfb815
PM
378 else {
379 classid = keys[0];
380 classid = (classid & f->mask) ^ f->xor;
381 classid = (classid >> f->rshift) + f->addend;
382 }
383
384 if (f->divisor)
385 classid %= f->divisor;
386
387 res->class = 0;
388 res->classid = TC_H_MAKE(f->baseclass, f->baseclass + classid);
389
390 r = tcf_exts_exec(skb, &f->exts, res);
391 if (r < 0)
392 continue;
393 return r;
394 }
395 return -1;
396}
397
72d9794f
PM
398static void flow_perturbation(unsigned long arg)
399{
400 struct flow_filter *f = (struct flow_filter *)arg;
401
402 get_random_bytes(&f->hashrnd, 4);
403 if (f->perturb_period)
404 mod_timer(&f->perturb_timer, jiffies + f->perturb_period);
405}
406
e5dfb815
PM
407static const struct nla_policy flow_policy[TCA_FLOW_MAX + 1] = {
408 [TCA_FLOW_KEYS] = { .type = NLA_U32 },
409 [TCA_FLOW_MODE] = { .type = NLA_U32 },
410 [TCA_FLOW_BASECLASS] = { .type = NLA_U32 },
411 [TCA_FLOW_RSHIFT] = { .type = NLA_U32 },
412 [TCA_FLOW_ADDEND] = { .type = NLA_U32 },
413 [TCA_FLOW_MASK] = { .type = NLA_U32 },
414 [TCA_FLOW_XOR] = { .type = NLA_U32 },
415 [TCA_FLOW_DIVISOR] = { .type = NLA_U32 },
416 [TCA_FLOW_ACT] = { .type = NLA_NESTED },
417 [TCA_FLOW_POLICE] = { .type = NLA_NESTED },
418 [TCA_FLOW_EMATCHES] = { .type = NLA_NESTED },
72d9794f 419 [TCA_FLOW_PERTURB] = { .type = NLA_U32 },
e5dfb815
PM
420};
421
422static int flow_change(struct tcf_proto *tp, unsigned long base,
423 u32 handle, struct nlattr **tca,
424 unsigned long *arg)
425{
426 struct flow_head *head = tp->root;
427 struct flow_filter *f;
428 struct nlattr *opt = tca[TCA_OPTIONS];
429 struct nlattr *tb[TCA_FLOW_MAX + 1];
430 struct tcf_exts e;
431 struct tcf_ematch_tree t;
432 unsigned int nkeys = 0;
72d9794f 433 unsigned int perturb_period = 0;
e5dfb815
PM
434 u32 baseclass = 0;
435 u32 keymask = 0;
436 u32 mode;
437 int err;
438
439 if (opt == NULL)
440 return -EINVAL;
441
442 err = nla_parse_nested(tb, TCA_FLOW_MAX, opt, flow_policy);
443 if (err < 0)
444 return err;
445
446 if (tb[TCA_FLOW_BASECLASS]) {
447 baseclass = nla_get_u32(tb[TCA_FLOW_BASECLASS]);
448 if (TC_H_MIN(baseclass) == 0)
449 return -EINVAL;
450 }
451
452 if (tb[TCA_FLOW_KEYS]) {
453 keymask = nla_get_u32(tb[TCA_FLOW_KEYS]);
e5dfb815
PM
454
455 nkeys = hweight32(keymask);
456 if (nkeys == 0)
457 return -EINVAL;
4f250491
PM
458
459 if (fls(keymask) - 1 > FLOW_KEY_MAX)
460 return -EOPNOTSUPP;
e5dfb815
PM
461 }
462
463 err = tcf_exts_validate(tp, tb, tca[TCA_RATE], &e, &flow_ext_map);
464 if (err < 0)
465 return err;
466
467 err = tcf_em_tree_validate(tp, tb[TCA_FLOW_EMATCHES], &t);
468 if (err < 0)
469 goto err1;
470
471 f = (struct flow_filter *)*arg;
472 if (f != NULL) {
473 err = -EINVAL;
474 if (f->handle != handle && handle)
475 goto err2;
476
477 mode = f->mode;
478 if (tb[TCA_FLOW_MODE])
479 mode = nla_get_u32(tb[TCA_FLOW_MODE]);
480 if (mode != FLOW_MODE_HASH && nkeys > 1)
481 goto err2;
72d9794f
PM
482
483 if (mode == FLOW_MODE_HASH)
484 perturb_period = f->perturb_period;
485 if (tb[TCA_FLOW_PERTURB]) {
486 if (mode != FLOW_MODE_HASH)
487 goto err2;
488 perturb_period = nla_get_u32(tb[TCA_FLOW_PERTURB]) * HZ;
489 }
e5dfb815
PM
490 } else {
491 err = -EINVAL;
492 if (!handle)
493 goto err2;
494 if (!tb[TCA_FLOW_KEYS])
495 goto err2;
496
497 mode = FLOW_MODE_MAP;
498 if (tb[TCA_FLOW_MODE])
499 mode = nla_get_u32(tb[TCA_FLOW_MODE]);
500 if (mode != FLOW_MODE_HASH && nkeys > 1)
501 goto err2;
502
72d9794f
PM
503 if (tb[TCA_FLOW_PERTURB]) {
504 if (mode != FLOW_MODE_HASH)
505 goto err2;
506 perturb_period = nla_get_u32(tb[TCA_FLOW_PERTURB]) * HZ;
507 }
508
e5dfb815
PM
509 if (TC_H_MAJ(baseclass) == 0)
510 baseclass = TC_H_MAKE(tp->q->handle, baseclass);
511 if (TC_H_MIN(baseclass) == 0)
512 baseclass = TC_H_MAKE(baseclass, 1);
513
514 err = -ENOBUFS;
515 f = kzalloc(sizeof(*f), GFP_KERNEL);
516 if (f == NULL)
517 goto err2;
518
519 f->handle = handle;
520 f->mask = ~0U;
72d9794f
PM
521
522 get_random_bytes(&f->hashrnd, 4);
523 f->perturb_timer.function = flow_perturbation;
524 f->perturb_timer.data = (unsigned long)f;
525 init_timer_deferrable(&f->perturb_timer);
e5dfb815
PM
526 }
527
528 tcf_exts_change(tp, &f->exts, &e);
529 tcf_em_tree_change(tp, &f->ematches, &t);
530
531 tcf_tree_lock(tp);
532
533 if (tb[TCA_FLOW_KEYS]) {
534 f->keymask = keymask;
535 f->nkeys = nkeys;
536 }
537
538 f->mode = mode;
539
540 if (tb[TCA_FLOW_MASK])
541 f->mask = nla_get_u32(tb[TCA_FLOW_MASK]);
542 if (tb[TCA_FLOW_XOR])
543 f->xor = nla_get_u32(tb[TCA_FLOW_XOR]);
544 if (tb[TCA_FLOW_RSHIFT])
545 f->rshift = nla_get_u32(tb[TCA_FLOW_RSHIFT]);
546 if (tb[TCA_FLOW_ADDEND])
547 f->addend = nla_get_u32(tb[TCA_FLOW_ADDEND]);
548
549 if (tb[TCA_FLOW_DIVISOR])
550 f->divisor = nla_get_u32(tb[TCA_FLOW_DIVISOR]);
551 if (baseclass)
552 f->baseclass = baseclass;
553
72d9794f
PM
554 f->perturb_period = perturb_period;
555 del_timer(&f->perturb_timer);
556 if (perturb_period)
557 mod_timer(&f->perturb_timer, jiffies + perturb_period);
558
e5dfb815
PM
559 if (*arg == 0)
560 list_add_tail(&f->list, &head->filters);
561
562 tcf_tree_unlock(tp);
563
564 *arg = (unsigned long)f;
565 return 0;
566
567err2:
568 tcf_em_tree_destroy(tp, &t);
569err1:
570 tcf_exts_destroy(tp, &e);
571 return err;
572}
573
574static void flow_destroy_filter(struct tcf_proto *tp, struct flow_filter *f)
575{
72d9794f 576 del_timer_sync(&f->perturb_timer);
e5dfb815
PM
577 tcf_exts_destroy(tp, &f->exts);
578 tcf_em_tree_destroy(tp, &f->ematches);
579 kfree(f);
580}
581
582static int flow_delete(struct tcf_proto *tp, unsigned long arg)
583{
584 struct flow_filter *f = (struct flow_filter *)arg;
585
586 tcf_tree_lock(tp);
587 list_del(&f->list);
588 tcf_tree_unlock(tp);
589 flow_destroy_filter(tp, f);
590 return 0;
591}
592
593static int flow_init(struct tcf_proto *tp)
594{
595 struct flow_head *head;
596
e5dfb815
PM
597 head = kzalloc(sizeof(*head), GFP_KERNEL);
598 if (head == NULL)
599 return -ENOBUFS;
600 INIT_LIST_HEAD(&head->filters);
601 tp->root = head;
602 return 0;
603}
604
605static void flow_destroy(struct tcf_proto *tp)
606{
607 struct flow_head *head = tp->root;
608 struct flow_filter *f, *next;
609
610 list_for_each_entry_safe(f, next, &head->filters, list) {
611 list_del(&f->list);
612 flow_destroy_filter(tp, f);
613 }
614 kfree(head);
615}
616
617static unsigned long flow_get(struct tcf_proto *tp, u32 handle)
618{
619 struct flow_head *head = tp->root;
620 struct flow_filter *f;
621
622 list_for_each_entry(f, &head->filters, list)
623 if (f->handle == handle)
624 return (unsigned long)f;
625 return 0;
626}
627
628static void flow_put(struct tcf_proto *tp, unsigned long f)
629{
e5dfb815
PM
630}
631
632static int flow_dump(struct tcf_proto *tp, unsigned long fh,
633 struct sk_buff *skb, struct tcmsg *t)
634{
635 struct flow_filter *f = (struct flow_filter *)fh;
636 struct nlattr *nest;
637
638 if (f == NULL)
639 return skb->len;
640
641 t->tcm_handle = f->handle;
642
643 nest = nla_nest_start(skb, TCA_OPTIONS);
644 if (nest == NULL)
645 goto nla_put_failure;
646
647 NLA_PUT_U32(skb, TCA_FLOW_KEYS, f->keymask);
648 NLA_PUT_U32(skb, TCA_FLOW_MODE, f->mode);
649
650 if (f->mask != ~0 || f->xor != 0) {
651 NLA_PUT_U32(skb, TCA_FLOW_MASK, f->mask);
652 NLA_PUT_U32(skb, TCA_FLOW_XOR, f->xor);
653 }
654 if (f->rshift)
655 NLA_PUT_U32(skb, TCA_FLOW_RSHIFT, f->rshift);
656 if (f->addend)
657 NLA_PUT_U32(skb, TCA_FLOW_ADDEND, f->addend);
658
659 if (f->divisor)
660 NLA_PUT_U32(skb, TCA_FLOW_DIVISOR, f->divisor);
661 if (f->baseclass)
662 NLA_PUT_U32(skb, TCA_FLOW_BASECLASS, f->baseclass);
663
72d9794f
PM
664 if (f->perturb_period)
665 NLA_PUT_U32(skb, TCA_FLOW_PERTURB, f->perturb_period / HZ);
666
e5dfb815
PM
667 if (tcf_exts_dump(skb, &f->exts, &flow_ext_map) < 0)
668 goto nla_put_failure;
0aead543 669#ifdef CONFIG_NET_EMATCH
e5dfb815
PM
670 if (f->ematches.hdr.nmatches &&
671 tcf_em_tree_dump(skb, &f->ematches, TCA_FLOW_EMATCHES) < 0)
672 goto nla_put_failure;
0aead543 673#endif
e5dfb815
PM
674 nla_nest_end(skb, nest);
675
676 if (tcf_exts_dump_stats(skb, &f->exts, &flow_ext_map) < 0)
677 goto nla_put_failure;
678
679 return skb->len;
680
681nla_put_failure:
682 nlmsg_trim(skb, nest);
683 return -1;
684}
685
686static void flow_walk(struct tcf_proto *tp, struct tcf_walker *arg)
687{
688 struct flow_head *head = tp->root;
689 struct flow_filter *f;
690
691 list_for_each_entry(f, &head->filters, list) {
692 if (arg->count < arg->skip)
693 goto skip;
694 if (arg->fn(tp, (unsigned long)f, arg) < 0) {
695 arg->stop = 1;
696 break;
697 }
698skip:
699 arg->count++;
700 }
701}
702
703static struct tcf_proto_ops cls_flow_ops __read_mostly = {
704 .kind = "flow",
705 .classify = flow_classify,
706 .init = flow_init,
707 .destroy = flow_destroy,
708 .change = flow_change,
709 .delete = flow_delete,
710 .get = flow_get,
711 .put = flow_put,
712 .dump = flow_dump,
713 .walk = flow_walk,
714 .owner = THIS_MODULE,
715};
716
717static int __init cls_flow_init(void)
718{
719 return register_tcf_proto_ops(&cls_flow_ops);
720}
721
722static void __exit cls_flow_exit(void)
723{
724 unregister_tcf_proto_ops(&cls_flow_ops);
725}
726
727module_init(cls_flow_init);
728module_exit(cls_flow_exit);
729
730MODULE_LICENSE("GPL");
731MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
732MODULE_DESCRIPTION("TC flow classifier");