1 // SPDX-License-Identifier: GPL-2.0-only
3 * IP tables module for matching the value of the TTL
4 * (C) 2000,2001 by Harald Welte <laforge@netfilter.org>
6 * Hop Limit matching module
7 * (C) 2001-2002 Maciej Soltysiak <solt@dns.toxicfilms.tv>
11 #include <linux/ipv6.h>
12 #include <linux/module.h>
13 #include <linux/skbuff.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter_ipv4/ipt_ttl.h>
17 #include <linux/netfilter_ipv6/ip6t_hl.h>
19 MODULE_AUTHOR("Maciej Soltysiak <solt@dns.toxicfilms.tv>");
20 MODULE_DESCRIPTION("Xtables: Hoplimit/TTL field match");
21 MODULE_LICENSE("GPL");
22 MODULE_ALIAS("ipt_ttl");
23 MODULE_ALIAS("ip6t_hl");
25 static bool ttl_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
27 const struct ipt_ttl_info
*info
= par
->matchinfo
;
28 const u8 ttl
= ip_hdr(skb
)->ttl
;
32 return ttl
== info
->ttl
;
34 return ttl
!= info
->ttl
;
36 return ttl
< info
->ttl
;
38 return ttl
> info
->ttl
;
44 static bool hl_mt6(const struct sk_buff
*skb
, struct xt_action_param
*par
)
46 const struct ip6t_hl_info
*info
= par
->matchinfo
;
47 const struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
51 return ip6h
->hop_limit
== info
->hop_limit
;
53 return ip6h
->hop_limit
!= info
->hop_limit
;
55 return ip6h
->hop_limit
< info
->hop_limit
;
57 return ip6h
->hop_limit
> info
->hop_limit
;
63 static struct xt_match hl_mt_reg
[] __read_mostly
= {
67 .family
= NFPROTO_IPV4
,
69 .matchsize
= sizeof(struct ipt_ttl_info
),
75 .family
= NFPROTO_IPV6
,
77 .matchsize
= sizeof(struct ip6t_hl_info
),
82 static int __init
hl_mt_init(void)
84 return xt_register_matches(hl_mt_reg
, ARRAY_SIZE(hl_mt_reg
));
87 static void __exit
hl_mt_exit(void)
89 xt_unregister_matches(hl_mt_reg
, ARRAY_SIZE(hl_mt_reg
));
92 module_init(hl_mt_init
);
93 module_exit(hl_mt_exit
);