netfilter: xtables: change xt_match.checkentry return type
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ipv4 / netfilter / ipt_ecn.c
CommitLineData
1da177e4
LT
1/* IP tables module for matching the value of the IPv4 and TCP ECN bits
2 *
1da177e4
LT
3 * (C) 2002 by Harald Welte <laforge@gnumonks.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
ff67e4e4 9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6709dbbb
JE
10#include <linux/in.h>
11#include <linux/ip.h>
c9bdd4b5 12#include <net/ip.h>
1da177e4
LT
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/tcp.h>
16
6709dbbb 17#include <linux/netfilter/x_tables.h>
1da177e4
LT
18#include <linux/netfilter_ipv4/ip_tables.h>
19#include <linux/netfilter_ipv4/ipt_ecn.h>
20
21MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
2ae15b64 22MODULE_DESCRIPTION("Xtables: Explicit Congestion Notification (ECN) flag match for IPv4");
1da177e4
LT
23MODULE_LICENSE("GPL");
24
1d93a9cb
JE
25static inline bool match_ip(const struct sk_buff *skb,
26 const struct ipt_ecn_info *einfo)
1da177e4 27{
eddc9ec5 28 return (ip_hdr(skb)->tos & IPT_ECN_IP_MASK) == einfo->ip_ect;
1da177e4
LT
29}
30
1d93a9cb
JE
31static inline bool match_tcp(const struct sk_buff *skb,
32 const struct ipt_ecn_info *einfo,
33 bool *hotdrop)
1da177e4 34{
a47362a2
JE
35 struct tcphdr _tcph;
36 const struct tcphdr *th;
1da177e4
LT
37
38 /* In practice, TCP match does this, so can't fail. But let's
39 * be good citizens.
40 */
c9bdd4b5 41 th = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_tcph), &_tcph);
1da177e4 42 if (th == NULL) {
cff533ac 43 *hotdrop = false;
1d93a9cb 44 return false;
1da177e4
LT
45 }
46
47 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
48 if (einfo->invert & IPT_ECN_OP_MATCH_ECE) {
49 if (th->ece == 1)
1d93a9cb 50 return false;
1da177e4
LT
51 } else {
52 if (th->ece == 0)
1d93a9cb 53 return false;
1da177e4
LT
54 }
55 }
56
57 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
58 if (einfo->invert & IPT_ECN_OP_MATCH_CWR) {
59 if (th->cwr == 1)
1d93a9cb 60 return false;
1da177e4
LT
61 } else {
62 if (th->cwr == 0)
1d93a9cb 63 return false;
1da177e4
LT
64 }
65 }
66
1d93a9cb 67 return true;
1da177e4
LT
68}
69
f7108a20 70static bool ecn_mt(const struct sk_buff *skb, const struct xt_match_param *par)
1da177e4 71{
f7108a20 72 const struct ipt_ecn_info *info = par->matchinfo;
1da177e4
LT
73
74 if (info->operation & IPT_ECN_OP_MATCH_IP)
75 if (!match_ip(skb, info))
1d93a9cb 76 return false;
1da177e4
LT
77
78 if (info->operation & (IPT_ECN_OP_MATCH_ECE|IPT_ECN_OP_MATCH_CWR)) {
eddc9ec5 79 if (ip_hdr(skb)->protocol != IPPROTO_TCP)
1d93a9cb 80 return false;
f7108a20 81 if (!match_tcp(skb, info, par->hotdrop))
1d93a9cb 82 return false;
1da177e4
LT
83 }
84
1d93a9cb 85 return true;
1da177e4
LT
86}
87
b0f38452 88static int ecn_mt_check(const struct xt_mtchk_param *par)
1da177e4 89{
9b4fce7a
JE
90 const struct ipt_ecn_info *info = par->matchinfo;
91 const struct ipt_ip *ip = par->entryinfo;
1da177e4 92
1da177e4 93 if (info->operation & IPT_ECN_OP_MATCH_MASK)
ccb79bdc 94 return false;
1da177e4
LT
95
96 if (info->invert & IPT_ECN_OP_MATCH_MASK)
ccb79bdc 97 return false;
1da177e4 98
3666ed1c
JP
99 if (info->operation & (IPT_ECN_OP_MATCH_ECE|IPT_ECN_OP_MATCH_CWR) &&
100 ip->proto != IPPROTO_TCP) {
ff67e4e4 101 pr_info("cannot match TCP bits in rule for non-tcp packets\n");
ccb79bdc 102 return false;
1da177e4
LT
103 }
104
ccb79bdc 105 return true;
1da177e4
LT
106}
107
d3c5ee6d 108static struct xt_match ecn_mt_reg __read_mostly = {
1da177e4 109 .name = "ecn",
ee999d8b 110 .family = NFPROTO_IPV4,
d3c5ee6d 111 .match = ecn_mt,
1d5cd909 112 .matchsize = sizeof(struct ipt_ecn_info),
d3c5ee6d 113 .checkentry = ecn_mt_check,
1da177e4
LT
114 .me = THIS_MODULE,
115};
116
d3c5ee6d 117static int __init ecn_mt_init(void)
1da177e4 118{
d3c5ee6d 119 return xt_register_match(&ecn_mt_reg);
1da177e4
LT
120}
121
d3c5ee6d 122static void __exit ecn_mt_exit(void)
1da177e4 123{
d3c5ee6d 124 xt_unregister_match(&ecn_mt_reg);
1da177e4
LT
125}
126
d3c5ee6d
JE
127module_init(ecn_mt_init);
128module_exit(ecn_mt_exit);