2 * Xtables module for matching the value of the IPv4/IPv6 and TCP ECN bits
4 * (C) 2002 by Harald Welte <laforge@gnumonks.org>
5 * (C) 2011 Patrick McHardy <kaber@trash.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/tcp.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter/xt_ecn.h>
21 #include <linux/netfilter_ipv4/ip_tables.h>
22 #include <linux/netfilter_ipv6/ip6_tables.h>
24 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
25 MODULE_DESCRIPTION("Xtables: Explicit Congestion Notification (ECN) flag match");
26 MODULE_LICENSE("GPL");
27 MODULE_ALIAS("ipt_ecn");
28 MODULE_ALIAS("ip6t_ecn");
30 static bool match_tcp(const struct sk_buff
*skb
, struct xt_action_param
*par
)
32 const struct xt_ecn_info
*einfo
= par
->matchinfo
;
34 const struct tcphdr
*th
;
36 /* In practice, TCP match does this, so can't fail. But let's
39 th
= skb_header_pointer(skb
, par
->thoff
, sizeof(_tcph
), &_tcph
);
43 if (einfo
->operation
& XT_ECN_OP_MATCH_ECE
) {
44 if (einfo
->invert
& XT_ECN_OP_MATCH_ECE
) {
53 if (einfo
->operation
& XT_ECN_OP_MATCH_CWR
) {
54 if (einfo
->invert
& XT_ECN_OP_MATCH_CWR
) {
66 static inline bool match_ip(const struct sk_buff
*skb
,
67 const struct xt_ecn_info
*einfo
)
69 return ((ip_hdr(skb
)->tos
& XT_ECN_IP_MASK
) == einfo
->ip_ect
) ^
70 !!(einfo
->invert
& XT_ECN_OP_MATCH_IP
);
73 static bool ecn_mt4(const struct sk_buff
*skb
, struct xt_action_param
*par
)
75 const struct xt_ecn_info
*info
= par
->matchinfo
;
77 if (info
->operation
& XT_ECN_OP_MATCH_IP
&& !match_ip(skb
, info
))
80 if (info
->operation
& (XT_ECN_OP_MATCH_ECE
| XT_ECN_OP_MATCH_CWR
) &&
87 static int ecn_mt_check4(const struct xt_mtchk_param
*par
)
89 const struct xt_ecn_info
*info
= par
->matchinfo
;
90 const struct ipt_ip
*ip
= par
->entryinfo
;
92 if (info
->operation
& XT_ECN_OP_MATCH_MASK
)
95 if (info
->invert
& XT_ECN_OP_MATCH_MASK
)
98 if (info
->operation
& (XT_ECN_OP_MATCH_ECE
| XT_ECN_OP_MATCH_CWR
) &&
99 (ip
->proto
!= IPPROTO_TCP
|| ip
->invflags
& IPT_INV_PROTO
)) {
100 pr_info("cannot match TCP bits in rule for non-tcp packets\n");
107 static inline bool match_ipv6(const struct sk_buff
*skb
,
108 const struct xt_ecn_info
*einfo
)
110 return (((ipv6_hdr(skb
)->flow_lbl
[0] >> 4) & XT_ECN_IP_MASK
) ==
112 !!(einfo
->invert
& XT_ECN_OP_MATCH_IP
);
115 static bool ecn_mt6(const struct sk_buff
*skb
, struct xt_action_param
*par
)
117 const struct xt_ecn_info
*info
= par
->matchinfo
;
119 if (info
->operation
& XT_ECN_OP_MATCH_IP
&& !match_ipv6(skb
, info
))
122 if (info
->operation
& (XT_ECN_OP_MATCH_ECE
| XT_ECN_OP_MATCH_CWR
) &&
123 !match_tcp(skb
, par
))
129 static int ecn_mt_check6(const struct xt_mtchk_param
*par
)
131 const struct xt_ecn_info
*info
= par
->matchinfo
;
132 const struct ip6t_ip6
*ip
= par
->entryinfo
;
134 if (info
->operation
& XT_ECN_OP_MATCH_MASK
)
137 if (info
->invert
& XT_ECN_OP_MATCH_MASK
)
140 if (info
->operation
& (XT_ECN_OP_MATCH_ECE
| XT_ECN_OP_MATCH_CWR
) &&
141 (ip
->proto
!= IPPROTO_TCP
|| ip
->invflags
& IP6T_INV_PROTO
)) {
142 pr_info("cannot match TCP bits in rule for non-tcp packets\n");
149 static struct xt_match ecn_mt_reg
[] __read_mostly
= {
152 .family
= NFPROTO_IPV4
,
154 .matchsize
= sizeof(struct xt_ecn_info
),
155 .checkentry
= ecn_mt_check4
,
160 .family
= NFPROTO_IPV6
,
162 .matchsize
= sizeof(struct xt_ecn_info
),
163 .checkentry
= ecn_mt_check6
,
168 static int __init
ecn_mt_init(void)
170 return xt_register_matches(ecn_mt_reg
, ARRAY_SIZE(ecn_mt_reg
));
173 static void __exit
ecn_mt_exit(void)
175 xt_unregister_matches(ecn_mt_reg
, ARRAY_SIZE(ecn_mt_reg
));
178 module_init(ecn_mt_init
);
179 module_exit(ecn_mt_exit
);