netfilter: xtables: move extension arguments into compound structure (2/6)
[linux-2.6-block.git] / net / ipv6 / netfilter / ip6t_mh.c
CommitLineData
a0ca215a
MN
1/*
2 * Copyright (C)2006 USAGI/WIDE Project
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 * Author:
9 * Masahide NAKAMURA @USAGI <masahide.nakamura.cz@hitachi.com>
10 *
11 * Based on net/netfilter/xt_tcpudp.c
12 *
13 */
14#include <linux/types.h>
15#include <linux/module.h>
16#include <net/ip.h>
17#include <linux/ipv6.h>
18#include <net/ipv6.h>
19#include <net/mip6.h>
20
21#include <linux/netfilter/x_tables.h>
22#include <linux/netfilter_ipv6/ip6t_mh.h>
23
2ae15b64 24MODULE_DESCRIPTION("Xtables: IPv6 Mobility Header match");
a0ca215a
MN
25MODULE_LICENSE("GPL");
26
27#ifdef DEBUG_IP_FIREWALL_USER
28#define duprintf(format, args...) printk(format , ## args)
29#else
30#define duprintf(format, args...)
31#endif
32
33/* Returns 1 if the type is matched by the range, 0 otherwise */
1d93a9cb
JE
34static inline bool
35type_match(u_int8_t min, u_int8_t max, u_int8_t type, bool invert)
a0ca215a 36{
1d93a9cb 37 return (type >= min && type <= max) ^ invert;
a0ca215a
MN
38}
39
f7108a20 40static bool mh_mt6(const struct sk_buff *skb, const struct xt_match_param *par)
a0ca215a 41{
a47362a2
JE
42 struct ip6_mh _mh;
43 const struct ip6_mh *mh;
f7108a20 44 const struct ip6t_mh *mhinfo = par->matchinfo;
a0ca215a
MN
45
46 /* Must not be a fragment. */
f7108a20 47 if (par->fragoff != 0)
1d93a9cb 48 return false;
a0ca215a 49
f7108a20 50 mh = skb_header_pointer(skb, par->thoff, sizeof(_mh), &_mh);
a0ca215a
MN
51 if (mh == NULL) {
52 /* We've been asked to examine this packet, and we
53 can't. Hence, no choice but to drop. */
54 duprintf("Dropping evil MH tinygram.\n");
f7108a20 55 *par->hotdrop = true;
1d93a9cb 56 return false;
a0ca215a
MN
57 }
58
138939e0
MN
59 if (mh->ip6mh_proto != IPPROTO_NONE) {
60 duprintf("Dropping invalid MH Payload Proto: %u\n",
61 mh->ip6mh_proto);
f7108a20 62 *par->hotdrop = true;
1d93a9cb 63 return false;
138939e0
MN
64 }
65
a0ca215a
MN
66 return type_match(mhinfo->types[0], mhinfo->types[1], mh->ip6mh_type,
67 !!(mhinfo->invflags & IP6T_MH_INV_TYPE));
68}
69
9b4fce7a 70static bool mh_mt6_check(const struct xt_mtchk_param *par)
a0ca215a 71{
9b4fce7a 72 const struct ip6t_mh *mhinfo = par->matchinfo;
a0ca215a
MN
73
74 /* Must specify no unknown invflags */
75 return !(mhinfo->invflags & ~IP6T_MH_INV_MASK);
76}
77
d3c5ee6d 78static struct xt_match mh_mt6_reg __read_mostly = {
a0ca215a 79 .name = "mh",
ee999d8b 80 .family = NFPROTO_IPV6,
d3c5ee6d
JE
81 .checkentry = mh_mt6_check,
82 .match = mh_mt6,
a0ca215a
MN
83 .matchsize = sizeof(struct ip6t_mh),
84 .proto = IPPROTO_MH,
85 .me = THIS_MODULE,
86};
87
d3c5ee6d 88static int __init mh_mt6_init(void)
a0ca215a 89{
d3c5ee6d 90 return xt_register_match(&mh_mt6_reg);
a0ca215a
MN
91}
92
d3c5ee6d 93static void __exit mh_mt6_exit(void)
a0ca215a 94{
d3c5ee6d 95 xt_unregister_match(&mh_mt6_reg);
a0ca215a
MN
96}
97
d3c5ee6d
JE
98module_init(mh_mt6_init);
99module_exit(mh_mt6_exit);