blob: 5e32dfa2668bf8dec0e56f2d22683fcf6bc72d05 [file] [log] [blame]
Harald Welte9d810fd2005-08-13 13:56:26 -07001/* Kernel module to match connection tracking byte counter.
2 * GPL (C) 2002 Martin Devera (devik@cdi.cz).
3 *
4 * 2004-07-20 Harald Welte <laforge@netfilter.org>
5 * - reimplemented to use per-connection accounting counters
6 * - add functionality to match number of packets
7 * - add functionality to match average packet size
8 * - add support to match directions seperately
Harald Welte2e4e6a12006-01-12 13:30:04 -08009 * 2005-10-16 Harald Welte <laforge@netfilter.org>
10 * - Port to x_tables
Harald Welte9d810fd2005-08-13 13:56:26 -070011 *
12 */
13#include <linux/module.h>
14#include <linux/skbuff.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080015#include <net/netfilter/nf_conntrack_compat.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/netfilter/x_tables.h>
17#include <linux/netfilter/xt_connbytes.h>
Harald Welte9d810fd2005-08-13 13:56:26 -070018
19#include <asm/div64.h>
20#include <asm/bitops.h>
21
22MODULE_LICENSE("GPL");
23MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
24MODULE_DESCRIPTION("iptables match for matching number of pkts/bytes per connection");
Harald Welte2e4e6a12006-01-12 13:30:04 -080025MODULE_ALIAS("ipt_connbytes");
Harald Welte9d810fd2005-08-13 13:56:26 -070026
27/* 64bit divisor, dividend and result. dynamic precision */
Patrick McHardy8ffde672005-08-13 13:57:58 -070028static u_int64_t div64_64(u_int64_t dividend, u_int64_t divisor)
Harald Welte9d810fd2005-08-13 13:56:26 -070029{
Patrick McHardy8ffde672005-08-13 13:57:58 -070030 u_int32_t d = divisor;
Harald Welte9d810fd2005-08-13 13:56:26 -070031
Patrick McHardy8ffde672005-08-13 13:57:58 -070032 if (divisor > 0xffffffffULL) {
33 unsigned int shift = fls(divisor >> 32);
34
35 d = divisor >> shift;
36 dividend >>= shift;
Harald Welte9d810fd2005-08-13 13:56:26 -070037 }
38
Patrick McHardy8ffde672005-08-13 13:57:58 -070039 do_div(dividend, d);
40 return dividend;
Harald Welte9d810fd2005-08-13 13:56:26 -070041}
42
43static int
44match(const struct sk_buff *skb,
45 const struct net_device *in,
46 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080047 const struct xt_match *match,
Harald Welte9d810fd2005-08-13 13:56:26 -070048 const void *matchinfo,
49 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080050 unsigned int protoff,
Harald Welte9d810fd2005-08-13 13:56:26 -070051 int *hotdrop)
52{
Harald Welte2e4e6a12006-01-12 13:30:04 -080053 const struct xt_connbytes_info *sinfo = matchinfo;
Harald Welte9d810fd2005-08-13 13:56:26 -070054 u_int64_t what = 0; /* initialize to make gcc happy */
Patrick McHardyfb74a8412007-01-30 14:24:29 -080055 u_int64_t bytes = 0;
56 u_int64_t pkts = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080057 const struct ip_conntrack_counter *counters;
Harald Welte9d810fd2005-08-13 13:56:26 -070058
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080059 if (!(counters = nf_ct_get_counters(skb)))
Harald Welte9d810fd2005-08-13 13:56:26 -070060 return 0; /* no match */
61
62 switch (sinfo->what) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080063 case XT_CONNBYTES_PKTS:
Harald Welte9d810fd2005-08-13 13:56:26 -070064 switch (sinfo->direction) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080065 case XT_CONNBYTES_DIR_ORIGINAL:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080066 what = counters[IP_CT_DIR_ORIGINAL].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -070067 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080068 case XT_CONNBYTES_DIR_REPLY:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080069 what = counters[IP_CT_DIR_REPLY].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -070070 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080071 case XT_CONNBYTES_DIR_BOTH:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080072 what = counters[IP_CT_DIR_ORIGINAL].packets;
73 what += counters[IP_CT_DIR_REPLY].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -070074 break;
75 }
76 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080077 case XT_CONNBYTES_BYTES:
Harald Welte9d810fd2005-08-13 13:56:26 -070078 switch (sinfo->direction) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080079 case XT_CONNBYTES_DIR_ORIGINAL:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080080 what = counters[IP_CT_DIR_ORIGINAL].bytes;
Harald Welte9d810fd2005-08-13 13:56:26 -070081 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080082 case XT_CONNBYTES_DIR_REPLY:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083 what = counters[IP_CT_DIR_REPLY].bytes;
Harald Welte9d810fd2005-08-13 13:56:26 -070084 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080085 case XT_CONNBYTES_DIR_BOTH:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086 what = counters[IP_CT_DIR_ORIGINAL].bytes;
87 what += counters[IP_CT_DIR_REPLY].bytes;
Harald Welte9d810fd2005-08-13 13:56:26 -070088 break;
89 }
90 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080091 case XT_CONNBYTES_AVGPKT:
Harald Welte9d810fd2005-08-13 13:56:26 -070092 switch (sinfo->direction) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080093 case XT_CONNBYTES_DIR_ORIGINAL:
Patrick McHardyfb74a8412007-01-30 14:24:29 -080094 bytes = counters[IP_CT_DIR_ORIGINAL].bytes;
95 pkts = counters[IP_CT_DIR_ORIGINAL].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -070096 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 case XT_CONNBYTES_DIR_REPLY:
Patrick McHardyfb74a8412007-01-30 14:24:29 -080098 bytes = counters[IP_CT_DIR_REPLY].bytes;
99 pkts = counters[IP_CT_DIR_REPLY].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -0700100 break;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800101 case XT_CONNBYTES_DIR_BOTH:
Patrick McHardyfb74a8412007-01-30 14:24:29 -0800102 bytes = counters[IP_CT_DIR_ORIGINAL].bytes +
103 counters[IP_CT_DIR_REPLY].bytes;
104 pkts = counters[IP_CT_DIR_ORIGINAL].packets +
105 counters[IP_CT_DIR_REPLY].packets;
Harald Welte9d810fd2005-08-13 13:56:26 -0700106 break;
107 }
Patrick McHardyfb74a8412007-01-30 14:24:29 -0800108 if (pkts != 0)
109 what = div64_64(bytes, pkts);
Harald Welte9d810fd2005-08-13 13:56:26 -0700110 break;
111 }
112
113 if (sinfo->count.to)
114 return (what <= sinfo->count.to && what >= sinfo->count.from);
115 else
116 return (what >= sinfo->count.from);
117}
118
119static int check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800120 const void *ip,
Patrick McHardyc4986732006-03-20 18:02:56 -0800121 const struct xt_match *match,
Harald Welte9d810fd2005-08-13 13:56:26 -0700122 void *matchinfo,
Harald Welte9d810fd2005-08-13 13:56:26 -0700123 unsigned int hook_mask)
124{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800125 const struct xt_connbytes_info *sinfo = matchinfo;
Harald Welte9d810fd2005-08-13 13:56:26 -0700126
Harald Welte2e4e6a12006-01-12 13:30:04 -0800127 if (sinfo->what != XT_CONNBYTES_PKTS &&
128 sinfo->what != XT_CONNBYTES_BYTES &&
129 sinfo->what != XT_CONNBYTES_AVGPKT)
Harald Welte9d810fd2005-08-13 13:56:26 -0700130 return 0;
131
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132 if (sinfo->direction != XT_CONNBYTES_DIR_ORIGINAL &&
133 sinfo->direction != XT_CONNBYTES_DIR_REPLY &&
134 sinfo->direction != XT_CONNBYTES_DIR_BOTH)
Harald Welte9d810fd2005-08-13 13:56:26 -0700135 return 0;
136
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800137 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
138 printk(KERN_WARNING "can't load conntrack support for "
139 "proto=%d\n", match->family);
140 return 0;
141 }
142
Harald Welte9d810fd2005-08-13 13:56:26 -0700143 return 1;
144}
145
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800146static void
147destroy(const struct xt_match *match, void *matchinfo)
148{
149 nf_ct_l3proto_module_put(match->family);
150}
151
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700152static struct xt_match xt_connbytes_match[] = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700153 {
154 .name = "connbytes",
155 .family = AF_INET,
156 .checkentry = check,
157 .match = match,
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800158 .destroy = destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700159 .matchsize = sizeof(struct xt_connbytes_info),
160 .me = THIS_MODULE
161 },
162 {
163 .name = "connbytes",
164 .family = AF_INET6,
165 .checkentry = check,
166 .match = match,
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800167 .destroy = destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700168 .matchsize = sizeof(struct xt_connbytes_info),
169 .me = THIS_MODULE
170 },
Harald Welte9d810fd2005-08-13 13:56:26 -0700171};
172
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800173static int __init xt_connbytes_init(void)
Harald Welte9d810fd2005-08-13 13:56:26 -0700174{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700175 return xt_register_matches(xt_connbytes_match,
176 ARRAY_SIZE(xt_connbytes_match));
Harald Welte9d810fd2005-08-13 13:56:26 -0700177}
178
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800179static void __exit xt_connbytes_fini(void)
Harald Welte9d810fd2005-08-13 13:56:26 -0700180{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700181 xt_unregister_matches(xt_connbytes_match,
182 ARRAY_SIZE(xt_connbytes_match));
Harald Welte9d810fd2005-08-13 13:56:26 -0700183}
184
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800185module_init(xt_connbytes_init);
186module_exit(xt_connbytes_fini);