1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C)2006 USAGI/WIDE Project
6 * Masahide NAKAMURA @USAGI <masahide.nakamura.cz@hitachi.com>
8 * Based on net/netfilter/xt_tcpudp.c
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/types.h>
12 #include <linux/module.h>
14 #include <linux/ipv6.h>
18 #include <linux/netfilter/x_tables.h>
19 #include <linux/netfilter_ipv6/ip6t_mh.h>
21 MODULE_DESCRIPTION("Xtables: IPv6 Mobility Header match");
22 MODULE_LICENSE("GPL");
24 /* Returns 1 if the type is matched by the range, 0 otherwise */
26 type_match(u_int8_t min
, u_int8_t max
, u_int8_t type
, bool invert
)
28 return (type
>= min
&& type
<= max
) ^ invert
;
31 static bool mh_mt6(const struct sk_buff
*skb
, struct xt_action_param
*par
)
34 const struct ip6_mh
*mh
;
35 const struct ip6t_mh
*mhinfo
= par
->matchinfo
;
37 /* Must not be a fragment. */
38 if (par
->fragoff
!= 0)
41 mh
= skb_header_pointer(skb
, par
->thoff
, sizeof(_mh
), &_mh
);
43 /* We've been asked to examine this packet, and we
44 can't. Hence, no choice but to drop. */
45 pr_debug("Dropping evil MH tinygram.\n");
50 if (mh
->ip6mh_proto
!= IPPROTO_NONE
) {
51 pr_debug("Dropping invalid MH Payload Proto: %u\n",
57 return type_match(mhinfo
->types
[0], mhinfo
->types
[1], mh
->ip6mh_type
,
58 !!(mhinfo
->invflags
& IP6T_MH_INV_TYPE
));
61 static int mh_mt6_check(const struct xt_mtchk_param
*par
)
63 const struct ip6t_mh
*mhinfo
= par
->matchinfo
;
65 /* Must specify no unknown invflags */
66 return (mhinfo
->invflags
& ~IP6T_MH_INV_MASK
) ? -EINVAL
: 0;
69 static struct xt_match mh_mt6_reg __read_mostly
= {
71 .family
= NFPROTO_IPV6
,
72 .checkentry
= mh_mt6_check
,
74 .matchsize
= sizeof(struct ip6t_mh
),
79 static int __init
mh_mt6_init(void)
81 return xt_register_match(&mh_mt6_reg
);
84 static void __exit
mh_mt6_exit(void)
86 xt_unregister_match(&mh_mt6_reg
);
89 module_init(mh_mt6_init
);
90 module_exit(mh_mt6_exit
);