blob: b51b2688102cf025ae98c314eb605dd7cd3000f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem.
3 *
4 * Changes:
5 * YOSHIFUJI Hideaki @USAGI: added icmp sysctl table.
6 */
7
8#include <linux/mm.h>
9#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/in6.h>
11#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <net/ndisc.h>
15#include <net/ipv6.h>
16#include <net/addrconf.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070017#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Joe Perchesfe2c6332013-06-11 23:04:25 -070019static struct ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080022 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 .maxlen = sizeof(int),
24 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080025 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 },
FX Le Bail509aba32014-01-07 14:57:27 +010027 {
28 .procname = "anycast_src_echo_reply",
FX Le Bailec35b612014-01-13 15:59:01 +010029 .data = &init_net.ipv6.sysctl.anycast_src_echo_reply,
FX Le Bail509aba32014-01-07 14:57:27 +010030 .maxlen = sizeof(int),
31 .mode = 0644,
32 .proc_handler = proc_dointvec
33 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080034 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070035};
36
Joe Perchesfe2c6332013-06-11 23:04:25 -070037static struct ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .procname = "mld_max_msf",
40 .data = &sysctl_mld_max_msf,
41 .maxlen = sizeof(int),
42 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080043 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080045 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000048static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080050 struct ctl_table *ipv6_table;
51 struct ctl_table *ipv6_route_table;
52 struct ctl_table *ipv6_icmp_table;
53 int err;
54
55 err = -ENOMEM;
56 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
57 GFP_KERNEL);
58 if (!ipv6_table)
59 goto out;
Eric W. Biederman6dceb032012-04-19 13:37:09 +000060 ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;
FX Le Bailec35b612014-01-13 15:59:01 +010061 ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080062
63 ipv6_route_table = ipv6_route_sysctl_init(net);
64 if (!ipv6_route_table)
65 goto out_ipv6_table;
66
67 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
68 if (!ipv6_icmp_table)
69 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080070
Eric W. Biederman6dceb032012-04-19 13:37:09 +000071 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
72 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080073 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080074
Eric W. Biederman6dceb032012-04-19 13:37:09 +000075 net->ipv6.sysctl.route_hdr =
76 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
77 if (!net->ipv6.sysctl.route_hdr)
78 goto out_unregister_ipv6_table;
79
80 net->ipv6.sysctl.icmp_hdr =
81 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
82 if (!net->ipv6.sysctl.icmp_hdr)
83 goto out_unregister_route_table;
84
Daniel Lezcano760f2d02008-01-10 02:53:43 -080085 err = 0;
86out:
87 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +000088out_unregister_route_table:
89 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
90out_unregister_ipv6_table:
91 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -080092out_ipv6_icmp_table:
93 kfree(ipv6_icmp_table);
94out_ipv6_route_table:
95 kfree(ipv6_route_table);
96out_ipv6_table:
97 kfree(ipv6_table);
98 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000101static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800102{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800103 struct ctl_table *ipv6_table;
104 struct ctl_table *ipv6_route_table;
105 struct ctl_table *ipv6_icmp_table;
106
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000107 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
108 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
109 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800110
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000111 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
112 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
113 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800114
115 kfree(ipv6_table);
116 kfree(ipv6_route_table);
117 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800118}
119
120static struct pernet_operations ipv6_sysctl_net_ops = {
121 .init = ipv6_sysctl_net_init,
122 .exit = ipv6_sysctl_net_exit,
123};
124
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700125static struct ctl_table_header *ip6_header;
126
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800127int ipv6_sysctl_register(void)
128{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800129 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700130
Eric W. Biederman43444752012-04-19 13:22:55 +0000131 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700132 if (ip6_header == NULL)
133 goto out;
134
135 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
136 if (err)
137 goto err_pernet;
138out:
139 return err;
140
141err_pernet:
142 unregister_net_sysctl_table(ip6_header);
143 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146void ipv6_sysctl_unregister(void)
147{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700148 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800149 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}