1 /* Kernel module to match packet length. */
2 /* (C) 1999-2001 James Morris <jmorros@intercode.com.au>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/ipv6.h>
14 #include <linux/netfilter/xt_length.h>
15 #include <linux/netfilter/x_tables.h>
17 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
18 MODULE_DESCRIPTION("IP tables packet length matching module");
19 MODULE_LICENSE("GPL");
20 MODULE_ALIAS("ipt_length");
21 MODULE_ALIAS("ip6t_length");
24 match(const struct sk_buff
*skb
,
25 const struct net_device
*in
,
26 const struct net_device
*out
,
27 const void *matchinfo
,
32 const struct xt_length_info
*info
= matchinfo
;
33 u_int16_t pktlen
= ntohs(skb
->nh
.iph
->tot_len
);
35 return (pktlen
>= info
->min
&& pktlen
<= info
->max
) ^ info
->invert
;
39 match6(const struct sk_buff
*skb
,
40 const struct net_device
*in
,
41 const struct net_device
*out
,
42 const void *matchinfo
,
47 const struct xt_length_info
*info
= matchinfo
;
48 u_int16_t pktlen
= ntohs(skb
->nh
.ipv6h
->payload_len
) + sizeof(struct ipv6hdr
);
50 return (pktlen
>= info
->min
&& pktlen
<= info
->max
) ^ info
->invert
;
54 checkentry(const char *tablename
,
57 unsigned int matchsize
,
58 unsigned int hook_mask
)
60 if (matchsize
!= XT_ALIGN(sizeof(struct xt_length_info
)))
66 static struct xt_match length_match
= {
69 .checkentry
= &checkentry
,
72 static struct xt_match length6_match
= {
75 .checkentry
= &checkentry
,
79 static int __init
init(void)
82 ret
= xt_register_match(AF_INET
, &length_match
);
85 ret
= xt_register_match(AF_INET6
, &length6_match
);
87 xt_unregister_match(AF_INET
, &length_match
);
92 static void __exit
fini(void)
94 xt_unregister_match(AF_INET
, &length_match
);
95 xt_unregister_match(AF_INET6
, &length6_match
);