ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / net / ipv6 / netfilter / ip6t_length.c
1 /* Length Match - IPv6 Port */
2
3 /* (C) 1999-2001 James Morris <jmorros@intercode.com.au>
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  */
9
10
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/netfilter_ipv6/ip6t_length.h>
14 #include <linux/netfilter_ipv6/ip6_tables.h>
15
16 MODULE_LICENSE("GPL");
17 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
18 MODULE_DESCRIPTION("IPv6 packet length match");
19
20 static int
21 match(const struct sk_buff *skb,
22       const struct net_device *in,
23       const struct net_device *out,
24       const void *matchinfo,
25       int offset,
26       const void *hdr,
27       u_int16_t datalen,
28       int *hotdrop)
29 {
30         const struct ip6t_length_info *info = matchinfo;
31         u_int16_t pktlen = ntohs(skb->nh.ipv6h->payload_len) + sizeof(struct ipv6hdr);
32         
33         return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
34 }
35
36 static int
37 checkentry(const char *tablename,
38            const struct ip6t_ip6 *ip,
39            void *matchinfo,
40            unsigned int matchsize,
41            unsigned int hook_mask)
42 {
43         if (matchsize != IP6T_ALIGN(sizeof(struct ip6t_length_info)))
44                 return 0;
45
46         return 1;
47 }
48
49 static struct ip6t_match length_match = {
50         .name           = "length",
51         .match          = &match,
52         .checkentry     = &checkentry,
53         .me             = THIS_MODULE,
54 };
55
56 static int __init init(void)
57 {
58         return ip6t_register_match(&length_match);
59 }
60
61 static void __exit fini(void)
62 {
63         ip6t_unregister_match(&length_match);
64 }
65
66 module_init(init);
67 module_exit(fini);