]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/xt_quota.c
netfilter: auto-load ip_queue module when socket opened
[net-next-2.6.git] / net / netfilter / xt_quota.c
CommitLineData
62b77434
PM
1/*
2 * netfilter module to enforce network quotas
3 *
4 * Sam Johnston <samj@samj.net>
5 */
6#include <linux/skbuff.h>
7#include <linux/spinlock.h>
8
9#include <linux/netfilter/x_tables.h>
10#include <linux/netfilter/xt_quota.h>
11
12MODULE_LICENSE("GPL");
13MODULE_AUTHOR("Sam Johnston <samj@samj.net>");
2ae15b64 14MODULE_DESCRIPTION("Xtables: countdown quota match");
b22b9004
PM
15MODULE_ALIAS("ipt_quota");
16MODULE_ALIAS("ip6t_quota");
62b77434
PM
17
18static DEFINE_SPINLOCK(quota_lock);
19
1d93a9cb 20static bool
f7108a20 21quota_mt(const struct sk_buff *skb, const struct xt_match_param *par)
62b77434 22{
a47362a2 23 struct xt_quota_info *q =
f7108a20 24 ((const struct xt_quota_info *)par->matchinfo)->master;
1d93a9cb 25 bool ret = q->flags & XT_QUOTA_INVERT;
62b77434
PM
26
27 spin_lock_bh(&quota_lock);
28 if (q->quota >= skb->len) {
29 q->quota -= skb->len;
1d93a9cb 30 ret = !ret;
62b77434 31 } else {
601e68e1
YH
32 /* we do not allow even small packets from now on */
33 q->quota = 0;
62b77434
PM
34 }
35 spin_unlock_bh(&quota_lock);
36
37 return ret;
38}
39
9b4fce7a 40static bool quota_mt_check(const struct xt_mtchk_param *par)
62b77434 41{
9b4fce7a 42 struct xt_quota_info *q = par->matchinfo;
62b77434
PM
43
44 if (q->flags & ~XT_QUOTA_MASK)
ccb79bdc 45 return false;
62b77434
PM
46 /* For SMP, we only want to use one set of counters. */
47 q->master = q;
ccb79bdc 48 return true;
62b77434
PM
49}
50
55b69e91
JE
51static struct xt_match quota_mt_reg __read_mostly = {
52 .name = "quota",
53 .revision = 0,
54 .family = NFPROTO_UNSPEC,
55 .match = quota_mt,
56 .checkentry = quota_mt_check,
57 .matchsize = sizeof(struct xt_quota_info),
58 .me = THIS_MODULE,
62b77434
PM
59};
60
d3c5ee6d 61static int __init quota_mt_init(void)
62b77434 62{
55b69e91 63 return xt_register_match(&quota_mt_reg);
62b77434
PM
64}
65
d3c5ee6d 66static void __exit quota_mt_exit(void)
62b77434 67{
55b69e91 68 xt_unregister_match(&quota_mt_reg);
62b77434
PM
69}
70
d3c5ee6d
JE
71module_init(quota_mt_init);
72module_exit(quota_mt_exit);