netfilter: invoke synchronize_rcu after set the _hook_ to NULL
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / netfilter / xt_length.c
CommitLineData
2e4e6a17
HW
1/* Kernel module to match packet length. */
2/* (C) 1999-2001 James Morris <jmorros@intercode.com.au>
3 *
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.
7 */
8
9#include <linux/module.h>
10#include <linux/skbuff.h>
37d8dc82 11#include <linux/ipv6.h>
2e4e6a17
HW
12#include <net/ip.h>
13
14#include <linux/netfilter/xt_length.h>
15#include <linux/netfilter/x_tables.h>
16
17MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
2ae15b64 18MODULE_DESCRIPTION("Xtables: Packet length (Layer3,4,5) match");
2e4e6a17
HW
19MODULE_LICENSE("GPL");
20MODULE_ALIAS("ipt_length");
21MODULE_ALIAS("ip6t_length");
22
1d93a9cb 23static bool
62fc8051 24length_mt(const struct sk_buff *skb, struct xt_action_param *par)
2e4e6a17 25{
f7108a20 26 const struct xt_length_info *info = par->matchinfo;
eddc9ec5 27 u_int16_t pktlen = ntohs(ip_hdr(skb)->tot_len);
601e68e1 28
2e4e6a17
HW
29 return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
30}
31
1d93a9cb 32static bool
62fc8051 33length_mt6(const struct sk_buff *skb, struct xt_action_param *par)
2e4e6a17 34{
f7108a20 35 const struct xt_length_info *info = par->matchinfo;
7c4e36bc
JE
36 const u_int16_t pktlen = ntohs(ipv6_hdr(skb)->payload_len) +
37 sizeof(struct ipv6hdr);
601e68e1 38
2e4e6a17
HW
39 return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
40}
41
d3c5ee6d 42static struct xt_match length_mt_reg[] __read_mostly = {
4470bbc7
PM
43 {
44 .name = "length",
ee999d8b 45 .family = NFPROTO_IPV4,
d3c5ee6d 46 .match = length_mt,
4470bbc7
PM
47 .matchsize = sizeof(struct xt_length_info),
48 .me = THIS_MODULE,
49 },
50 {
51 .name = "length",
ee999d8b 52 .family = NFPROTO_IPV6,
d3c5ee6d 53 .match = length_mt6,
4470bbc7
PM
54 .matchsize = sizeof(struct xt_length_info),
55 .me = THIS_MODULE,
56 },
2e4e6a17
HW
57};
58
d3c5ee6d 59static int __init length_mt_init(void)
2e4e6a17 60{
d3c5ee6d 61 return xt_register_matches(length_mt_reg, ARRAY_SIZE(length_mt_reg));
2e4e6a17
HW
62}
63
d3c5ee6d 64static void __exit length_mt_exit(void)
2e4e6a17 65{
d3c5ee6d 66 xt_unregister_matches(length_mt_reg, ARRAY_SIZE(length_mt_reg));
2e4e6a17
HW
67}
68
d3c5ee6d
JE
69module_init(length_mt_init);
70module_exit(length_mt_exit);