1 /* Hop Limit matching module */
3 /* (C) 2001-2002 Maciej Soltysiak <solt@dns.toxicfilms.tv>
4 * Based on HW's ttl module
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/ipv6.h>
12 #include <linux/module.h>
13 #include <linux/skbuff.h>
15 #include <linux/netfilter_ipv6/ip6t_hl.h>
16 #include <linux/netfilter/x_tables.h>
18 MODULE_AUTHOR("Maciej Soltysiak <solt@dns.toxicfilms.tv>");
19 MODULE_DESCRIPTION("Xtables: IPv6 Hop Limit field match");
20 MODULE_LICENSE("GPL");
23 hl_mt6(const struct sk_buff
*skb
, const struct net_device
*in
,
24 const struct net_device
*out
, const struct xt_match
*match
,
25 const void *matchinfo
, int offset
, unsigned int protoff
, bool *hotdrop
)
27 const struct ip6t_hl_info
*info
= matchinfo
;
28 const struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
32 return ip6h
->hop_limit
== info
->hop_limit
;
35 return ip6h
->hop_limit
!= info
->hop_limit
;
38 return ip6h
->hop_limit
< info
->hop_limit
;
41 return ip6h
->hop_limit
> info
->hop_limit
;
44 printk(KERN_WARNING
"ip6t_hl: unknown mode %d\n",
52 static struct xt_match hl_mt6_reg __read_mostly
= {
56 .matchsize
= sizeof(struct ip6t_hl_info
),
60 static int __init
hl_mt6_init(void)
62 return xt_register_match(&hl_mt6_reg
);
65 static void __exit
hl_mt6_exit(void)
67 xt_unregister_match(&hl_mt6_reg
);
70 module_init(hl_mt6_init
);
71 module_exit(hl_mt6_exit
);