2 * TTL modification target for IP tables
5 * Hop Limit modification target for ip6tables
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <linux/ipv6.h>
17 #include <net/checksum.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter_ipv4/ipt_TTL.h>
21 #include <linux/netfilter_ipv6/ip6t_HL.h>
25 MODULE_DESCRIPTION("Xtables: Hoplimit/TTL Limit field modification target");
26 MODULE_LICENSE("GPL");
29 ttl_tg(struct sk_buff *skb, const struct xt_action_param *par)
32 const struct ipt_TTL_info *info = par->targinfo;
35 if (!skb_make_writable(skb, skb->len))
45 new_ttl = iph->ttl + info->ttl;
50 new_ttl = iph->ttl - info->ttl;
59 if (new_ttl != iph->ttl) {
60 csum_replace2(&iph->check, htons(iph->ttl << 8),
69 hl_tg6(struct sk_buff *skb, const struct xt_action_param *par)
72 const struct ip6t_HL_info *info = par->targinfo;
75 if (!skb_make_writable(skb, skb->len))
82 new_hl = info->hop_limit;
85 new_hl = ip6h->hop_limit + info->hop_limit;
90 new_hl = ip6h->hop_limit - info->hop_limit;
95 new_hl = ip6h->hop_limit;
99 ip6h->hop_limit = new_hl;
104 static int ttl_tg_check(const struct xt_tgchk_param *par)
106 const struct ipt_TTL_info *info = par->targinfo;
108 if (info->mode > IPT_TTL_MAXMODE) {
109 pr_info("TTL: invalid or unknown mode %u\n", info->mode);
112 if (info->mode != IPT_TTL_SET && info->ttl == 0)
117 static int hl_tg6_check(const struct xt_tgchk_param *par)
119 const struct ip6t_HL_info *info = par->targinfo;
121 if (info->mode > IP6T_HL_MAXMODE) {
122 pr_info("invalid or unknown mode %u\n", info->mode);
125 if (info->mode != IP6T_HL_SET && info->hop_limit == 0) {
126 pr_info("increment/decrement does not "
127 "make sense with value 0\n");
133 static struct xt_target hl_tg_reg[] __read_mostly = {
137 .family = NFPROTO_IPV4,
139 .targetsize = sizeof(struct ipt_TTL_info),
141 .checkentry = ttl_tg_check,
147 .family = NFPROTO_IPV6,
149 .targetsize = sizeof(struct ip6t_HL_info),
151 .checkentry = hl_tg6_check,
156 static int __init hl_tg_init(void)
158 return xt_register_targets(hl_tg_reg, ARRAY_SIZE(hl_tg_reg));
161 static void __exit hl_tg_exit(void)
163 xt_unregister_targets(hl_tg_reg, ARRAY_SIZE(hl_tg_reg));
166 module_init(hl_tg_init);
167 module_exit(hl_tg_exit);
168 MODULE_ALIAS("ipt_TTL");
169 MODULE_ALIAS("ip6t_HL");