1 /* TTL modification target for IP tables
2 * (C) 2000,2005 by Harald Welte <laforge@netfilter.org>
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.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
13 #include <net/checksum.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter_ipv4/ipt_TTL.h>
18 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
19 MODULE_DESCRIPTION("Xtables: IPv4 TTL field modification target");
20 MODULE_LICENSE("GPL");
23 ttl_tg(struct sk_buff
*skb
, const struct net_device
*in
,
24 const struct net_device
*out
, unsigned int hooknum
,
25 const struct xt_target
*target
, const void *targinfo
)
28 const struct ipt_TTL_info
*info
= targinfo
;
31 if (!skb_make_writable(skb
, skb
->len
))
41 new_ttl
= iph
->ttl
+ info
->ttl
;
46 new_ttl
= iph
->ttl
- info
->ttl
;
55 if (new_ttl
!= iph
->ttl
) {
56 csum_replace2(&iph
->check
, htons(iph
->ttl
<< 8),
65 ttl_tg_check(const char *tablename
, const void *e
,
66 const struct xt_target
*target
, void *targinfo
,
67 unsigned int hook_mask
)
69 const struct ipt_TTL_info
*info
= targinfo
;
71 if (info
->mode
> IPT_TTL_MAXMODE
) {
72 printk(KERN_WARNING
"ipt_TTL: invalid or unknown Mode %u\n",
76 if (info
->mode
!= IPT_TTL_SET
&& info
->ttl
== 0)
81 static struct xt_target ttl_tg_reg __read_mostly
= {
85 .targetsize
= sizeof(struct ipt_TTL_info
),
87 .checkentry
= ttl_tg_check
,
91 static int __init
ttl_tg_init(void)
93 return xt_register_target(&ttl_tg_reg
);
96 static void __exit
ttl_tg_exit(void)
98 xt_unregister_target(&ttl_tg_reg
);
101 module_init(ttl_tg_init
);
102 module_exit(ttl_tg_exit
);