blob: f17b049ea53090d750133422f90b3ad673fd6c41 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * net/sched/em_cmp.c Simple packet data comparison ematch
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Thomas Graf <tgraf@suug.ch>
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/skbuff.h>
12#include <linux/tc_ematch/tc_em_cmp.h>
Harvey Harrisond48abfe2008-09-22 19:20:51 -070013#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <net/pkt_cls.h>
15
16static inline int cmp_needs_transformation(struct tcf_em_cmp *cmp)
17{
18 return unlikely(cmp->flags & TCF_EM_CMP_TRANS);
19}
20
21static int em_cmp_match(struct sk_buff *skb, struct tcf_ematch *em,
22 struct tcf_pkt_info *info)
23{
24 struct tcf_em_cmp *cmp = (struct tcf_em_cmp *) em->data;
25 unsigned char *ptr = tcf_get_base_ptr(skb, cmp->layer) + cmp->off;
26 u32 val = 0;
27
28 if (!tcf_valid_offset(skb, ptr, cmp->align))
29 return 0;
30
31 switch (cmp->align) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +000032 case TCF_EM_ALIGN_U8:
33 val = *ptr;
34 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric Dumazetcc7ec452011-01-19 19:26:56 +000036 case TCF_EM_ALIGN_U16:
37 val = get_unaligned_be16(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Eric Dumazetcc7ec452011-01-19 19:26:56 +000039 if (cmp_needs_transformation(cmp))
40 val = be16_to_cpu(val);
41 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Eric Dumazetcc7ec452011-01-19 19:26:56 +000043 case TCF_EM_ALIGN_U32:
Menglong Donge5a4b172020-11-09 02:02:17 -050044 /* Worth checking boundaries? The branching seems
Eric Dumazetcc7ec452011-01-19 19:26:56 +000045 * to get worse. Visit again.
46 */
47 val = get_unaligned_be32(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric Dumazetcc7ec452011-01-19 19:26:56 +000049 if (cmp_needs_transformation(cmp))
50 val = be32_to_cpu(val);
51 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Eric Dumazetcc7ec452011-01-19 19:26:56 +000053 default:
54 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
56
57 if (cmp->mask)
58 val &= cmp->mask;
59
60 switch (cmp->opnd) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +000061 case TCF_EM_OPND_EQ:
62 return val == cmp->val;
63 case TCF_EM_OPND_LT:
64 return val < cmp->val;
65 case TCF_EM_OPND_GT:
66 return val > cmp->val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
68
69 return 0;
70}
71
72static struct tcf_ematch_ops em_cmp_ops = {
73 .kind = TCF_EM_CMP,
74 .datalen = sizeof(struct tcf_em_cmp),
75 .match = em_cmp_match,
76 .owner = THIS_MODULE,
77 .link = LIST_HEAD_INIT(em_cmp_ops.link)
78};
79
80static int __init init_em_cmp(void)
81{
82 return tcf_em_register(&em_cmp_ops);
83}
84
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090085static void __exit exit_em_cmp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 tcf_em_unregister(&em_cmp_ops);
88}
89
90MODULE_LICENSE("GPL");
91
92module_init(init_em_cmp);
93module_exit(exit_em_cmp);
94
Patrick McHardydb3d99c2007-07-11 19:46:26 -070095MODULE_ALIAS_TCF_EMATCH(TCF_EM_CMP);