]> err.no Git - linux-2.6/blobdiff - net/netfilter/xt_connlimit.c
[NETFILTER]: xt_TCPMSS: don't allow netfilter --setmss to increase mss
[linux-2.6] / net / netfilter / xt_connlimit.c
index 06cff1d13690909860a89275fc30dd4a861dbc54..26d12b00a9c12b330f90a6b5597cf8dfeaa8a29b 100644 (file)
@@ -4,7 +4,8 @@
  *   (c) 2000 Gerd Knorr <kraxel@bytesex.org>
  *   Nov 2002: Martin Bene <martin.bene@icomedias.com>:
  *             only ignore TIME_WAIT or gone connections
- *   Copyright © Jan Engelhardt <jengelh@gmx.de>, 2007
+ *   (C) CC Computer Consultants GmbH, 2007
+ *   Contact: <jengelh@computergmbh.de>
  *
  * based on ...
  *
@@ -53,7 +54,7 @@ static inline unsigned int connlimit_iphash(__be32 addr)
 
 static inline unsigned int
 connlimit_iphash6(const union nf_conntrack_address *addr,
-                 const union nf_conntrack_address *mask)
+                  const union nf_conntrack_address *mask)
 {
        union nf_conntrack_address res;
        unsigned int i;
@@ -177,12 +178,11 @@ static int count_them(struct xt_connlimit_data *data,
        return matches;
 }
 
-static bool connlimit_match(const struct sk_buff *skb,
-                           const struct net_device *in,
-                           const struct net_device *out,
-                           const struct xt_match *match,
-                           const void *matchinfo, int offset,
-                           unsigned int protoff, bool *hotdrop)
+static bool
+connlimit_mt(const struct sk_buff *skb, const struct net_device *in,
+             const struct net_device *out, const struct xt_match *match,
+             const void *matchinfo, int offset, unsigned int protoff,
+             bool *hotdrop)
 {
        const struct xt_connlimit_info *info = matchinfo;
        union nf_conntrack_address addr, mask;
@@ -226,9 +226,10 @@ static bool connlimit_match(const struct sk_buff *skb,
        return false;
 }
 
-static bool connlimit_check(const char *tablename, const void *ip,
-                           const struct xt_match *match, void *matchinfo,
-                           unsigned int hook_mask)
+static bool
+connlimit_mt_check(const char *tablename, const void *ip,
+                   const struct xt_match *match, void *matchinfo,
+                   unsigned int hook_mask)
 {
        struct xt_connlimit_info *info = matchinfo;
        unsigned int i;
@@ -253,7 +254,8 @@ static bool connlimit_check(const char *tablename, const void *ip,
        return true;
 }
 
-static void connlimit_destroy(const struct xt_match *match, void *matchinfo)
+static void
+connlimit_mt_destroy(const struct xt_match *match, void *matchinfo)
 {
        struct xt_connlimit_info *info = matchinfo;
        struct xt_connlimit_conn *conn;
@@ -273,40 +275,41 @@ static void connlimit_destroy(const struct xt_match *match, void *matchinfo)
        kfree(info->data);
 }
 
-static struct xt_match connlimit_reg[] __read_mostly = {
+static struct xt_match connlimit_mt_reg[] __read_mostly = {
        {
                .name       = "connlimit",
                .family     = AF_INET,
-               .checkentry = connlimit_check,
-               .match      = connlimit_match,
+               .checkentry = connlimit_mt_check,
+               .match      = connlimit_mt,
                .matchsize  = sizeof(struct xt_connlimit_info),
-               .destroy    = connlimit_destroy,
+               .destroy    = connlimit_mt_destroy,
                .me         = THIS_MODULE,
        },
        {
                .name       = "connlimit",
                .family     = AF_INET6,
-               .checkentry = connlimit_check,
-               .match      = connlimit_match,
+               .checkentry = connlimit_mt_check,
+               .match      = connlimit_mt,
                .matchsize  = sizeof(struct xt_connlimit_info),
-               .destroy    = connlimit_destroy,
+               .destroy    = connlimit_mt_destroy,
                .me         = THIS_MODULE,
        },
 };
 
-static int __init xt_connlimit_init(void)
+static int __init connlimit_mt_init(void)
 {
-       return xt_register_matches(connlimit_reg, ARRAY_SIZE(connlimit_reg));
+       return xt_register_matches(connlimit_mt_reg,
+              ARRAY_SIZE(connlimit_mt_reg));
 }
 
-static void __exit xt_connlimit_exit(void)
+static void __exit connlimit_mt_exit(void)
 {
-       xt_unregister_matches(connlimit_reg, ARRAY_SIZE(connlimit_reg));
+       xt_unregister_matches(connlimit_mt_reg, ARRAY_SIZE(connlimit_mt_reg));
 }
 
-module_init(xt_connlimit_init);
-module_exit(xt_connlimit_exit);
-MODULE_AUTHOR("Jan Engelhardt <jengelh@gmx.de>");
+module_init(connlimit_mt_init);
+module_exit(connlimit_mt_exit);
+MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
 MODULE_DESCRIPTION("netfilter xt_connlimit match module");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("ipt_connlimit");