blob: b6216dede52c7e4c3ecf6c77733884497eac685f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 packet mangling table, a port of the IPv4 mangle table to IPv6
3 *
4 * Copyright (C) 2000-2001 by Harald Welte <laforge@gnumonks.org>
5 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11#include <linux/module.h>
12#include <linux/netfilter_ipv6/ip6_tables.h>
13
14MODULE_LICENSE("GPL");
15MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
16MODULE_DESCRIPTION("ip6tables mangle table");
17
Patrick McHardy6e23ae22007-11-19 18:53:30 -080018#define MANGLE_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | \
19 (1 << NF_INET_LOCAL_IN) | \
20 (1 << NF_INET_FORWARD) | \
21 (1 << NF_INET_LOCAL_OUT) | \
22 (1 << NF_INET_POST_ROUTING))
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020024static const struct xt_table packet_mangler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .name = "mangle",
26 .valid_hooks = MANGLE_VALID_HOOKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020028 .af = NFPROTO_IPV6,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020029 .priority = NF_IP6_PRI_MANGLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
Alexey Dobriyan7dd1b8d2008-10-08 11:35:02 +020032static unsigned int
33ip6t_local_out_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070034 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 const struct net_device *out,
36 int (*okfn)(struct sk_buff *))
37{
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 unsigned int ret;
40 struct in6_addr saddr, daddr;
41 u_int8_t hop_limit;
Thomas Graf82e91ff2006-11-09 15:19:14 -080042 u_int32_t flowlabel, mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#if 0
45 /* root is playing with raw sockets. */
Joe Perches3666ed12009-11-23 23:17:06 +010046 if (skb->len < sizeof(struct iphdr) ||
47 ip_hdrlen(skb) < sizeof(struct iphdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 if (net_ratelimit())
49 printk("ip6t_hook: happy cracking.\n");
50 return NF_ACCEPT;
51 }
52#endif
53
Thomas Graf82e91ff2006-11-09 15:19:14 -080054 /* save source/dest address, mark, hoplimit, flowlabel, priority, */
Herbert Xu3db05fe2007-10-15 00:53:15 -070055 memcpy(&saddr, &ipv6_hdr(skb)->saddr, sizeof(saddr));
56 memcpy(&daddr, &ipv6_hdr(skb)->daddr, sizeof(daddr));
57 mark = skb->mark;
58 hop_limit = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /* flowlabel and prio (includes version, which shouldn't change either */
Herbert Xu3db05fe2007-10-15 00:53:15 -070061 flowlabel = *((u_int32_t *)ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Jan Engelhardt737535c2009-06-13 06:46:36 +020063 ret = ip6t_do_table(skb, hook, NULL, out,
Alexey Dobriyan7dd1b8d2008-10-08 11:35:02 +020064 dev_net(out)->ipv6.ip6table_mangle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Joe Perches3666ed12009-11-23 23:17:06 +010066 if (ret != NF_DROP && ret != NF_STOLEN &&
67 (memcmp(&ipv6_hdr(skb)->saddr, &saddr, sizeof(saddr)) ||
68 memcmp(&ipv6_hdr(skb)->daddr, &daddr, sizeof(daddr)) ||
69 skb->mark != mark ||
70 ipv6_hdr(skb)->hop_limit != hop_limit))
Herbert Xu3db05fe2007-10-15 00:53:15 -070071 return ip6_route_me_harder(skb) == 0 ? ret : NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 return ret;
74}
75
Jan Engelhardt737535c2009-06-13 06:46:36 +020076/* The work comes in here from netfilter.c. */
77static unsigned int
78ip6table_mangle_hook(unsigned int hook, struct sk_buff *skb,
79 const struct net_device *in, const struct net_device *out,
80 int (*okfn)(struct sk_buff *))
81{
82 if (hook == NF_INET_LOCAL_OUT)
83 return ip6t_local_out_hook(hook, skb, out, okfn);
Alexey Dobriyanb2907e52010-02-11 18:41:35 +010084 if (hook == NF_INET_POST_ROUTING)
85 return ip6t_do_table(skb, hook, in, out,
86 dev_net(out)->ipv6.ip6table_mangle);
Jan Engelhardt737535c2009-06-13 06:46:36 +020087 /* INPUT/FORWARD */
88 return ip6t_do_table(skb, hook, in, out,
89 dev_net(in)->ipv6.ip6table_mangle);
90}
91
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020092static struct nf_hook_ops *mangle_ops __read_mostly;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080093static int __net_init ip6table_mangle_net_init(struct net *net)
94{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020095 struct ip6t_replace *repl;
96
97 repl = ip6t_alloc_initial_table(&packet_mangler);
98 if (repl == NULL)
99 return -ENOMEM;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800100 net->ipv6.ip6table_mangle =
Jan Engelhardte3eaa992009-06-17 22:14:54 +0200101 ip6t_register_table(net, &packet_mangler, repl);
102 kfree(repl);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800103 if (IS_ERR(net->ipv6.ip6table_mangle))
104 return PTR_ERR(net->ipv6.ip6table_mangle);
105 return 0;
106}
107
108static void __net_exit ip6table_mangle_net_exit(struct net *net)
109{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100110 ip6t_unregister_table(net, net->ipv6.ip6table_mangle);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800111}
112
113static struct pernet_operations ip6table_mangle_net_ops = {
114 .init = ip6table_mangle_net_init,
115 .exit = ip6table_mangle_net_exit,
116};
117
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800118static int __init ip6table_mangle_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int ret;
121
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800122 ret = register_pernet_subsys(&ip6table_mangle_net_ops);
123 if (ret < 0)
124 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Register hooks */
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200127 mangle_ops = xt_hook_link(&packet_mangler, ip6table_mangle_hook);
128 if (IS_ERR(mangle_ops)) {
129 ret = PTR_ERR(mangle_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 goto cleanup_table;
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return ret;
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 cleanup_table:
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800136 unregister_pernet_subsys(&ip6table_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return ret;
138}
139
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800140static void __exit ip6table_mangle_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200142 xt_hook_unlink(&packet_mangler, mangle_ops);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800143 unregister_pernet_subsys(&ip6table_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800146module_init(ip6table_mangle_init);
147module_exit(ip6table_mangle_fini);