2 * net/sched/em_cmp.c Simple packet data comparison ematch
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.
9 * Authors: Thomas Graf <tgraf@suug.ch>
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/skbuff.h>
16 #include <linux/tc_ematch/tc_em_cmp.h>
17 #include <asm/unaligned.h>
18 #include <net/pkt_cls.h>
20 static inline int cmp_needs_transformation(struct tcf_em_cmp *cmp)
22 return unlikely(cmp->flags & TCF_EM_CMP_TRANS);
25 static int em_cmp_match(struct sk_buff *skb, struct tcf_ematch *em,
26 struct tcf_pkt_info *info)
28 struct tcf_em_cmp *cmp = (struct tcf_em_cmp *) em->data;
29 unsigned char *ptr = tcf_get_base_ptr(skb, cmp->layer) + cmp->off;
32 if (!tcf_valid_offset(skb, ptr, cmp->align))
40 case TCF_EM_ALIGN_U16:
41 val = get_unaligned_be16(ptr);
43 if (cmp_needs_transformation(cmp))
44 val = be16_to_cpu(val);
47 case TCF_EM_ALIGN_U32:
48 /* Worth checking boundries? The branching seems
49 * to get worse. Visit again. */
50 val = get_unaligned_be32(ptr);
52 if (cmp_needs_transformation(cmp))
53 val = be32_to_cpu(val);
65 return val == cmp->val;
67 return val < cmp->val;
69 return val > cmp->val;
75 static struct tcf_ematch_ops em_cmp_ops = {
77 .datalen = sizeof(struct tcf_em_cmp),
78 .match = em_cmp_match,
80 .link = LIST_HEAD_INIT(em_cmp_ops.link)
83 static int __init init_em_cmp(void)
85 return tcf_em_register(&em_cmp_ops);
88 static void __exit exit_em_cmp(void)
90 tcf_em_unregister(&em_cmp_ops);
93 MODULE_LICENSE("GPL");
95 module_init(init_em_cmp);
96 module_exit(exit_em_cmp);
98 MODULE_ALIAS_TCF_EMATCH(TCF_EM_CMP);