blob: b06fd078e6c7a290a2af60806da6a288436847e6 [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
Daniel Lezcano760f2d02008-01-10 02:53:43 -080019static 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 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080027 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070028};
29
Gerrit Renker81e43212009-07-28 09:48:07 +000030static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .procname = "mld_max_msf",
33 .data = &sysctl_mld_max_msf,
34 .maxlen = sizeof(int),
35 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080036 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080038 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000041static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080043 struct ctl_table *ipv6_table;
44 struct ctl_table *ipv6_route_table;
45 struct ctl_table *ipv6_icmp_table;
46 int err;
47
48 err = -ENOMEM;
49 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
50 GFP_KERNEL);
51 if (!ipv6_table)
52 goto out;
Eric W. Biederman6dceb032012-04-19 13:37:09 +000053 ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080054
Eric W. Biederman464dc802012-11-16 03:02:59 +000055 /* Don't export sysctls to unprivileged users */
56 if (net->user_ns != &init_user_ns)
57 ipv6_table[0].procname = NULL;
58
Daniel Lezcano760f2d02008-01-10 02:53:43 -080059 ipv6_route_table = ipv6_route_sysctl_init(net);
60 if (!ipv6_route_table)
61 goto out_ipv6_table;
62
63 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
64 if (!ipv6_icmp_table)
65 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080066
Eric W. Biederman6dceb032012-04-19 13:37:09 +000067 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
68 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080069 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080070
Eric W. Biederman6dceb032012-04-19 13:37:09 +000071 net->ipv6.sysctl.route_hdr =
72 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
73 if (!net->ipv6.sysctl.route_hdr)
74 goto out_unregister_ipv6_table;
75
76 net->ipv6.sysctl.icmp_hdr =
77 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
78 if (!net->ipv6.sysctl.icmp_hdr)
79 goto out_unregister_route_table;
80
Daniel Lezcano760f2d02008-01-10 02:53:43 -080081 err = 0;
82out:
83 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +000084out_unregister_route_table:
85 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
86out_unregister_ipv6_table:
87 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -080088out_ipv6_icmp_table:
89 kfree(ipv6_icmp_table);
90out_ipv6_route_table:
91 kfree(ipv6_route_table);
92out_ipv6_table:
93 kfree(ipv6_table);
94 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000097static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -080098{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080099 struct ctl_table *ipv6_table;
100 struct ctl_table *ipv6_route_table;
101 struct ctl_table *ipv6_icmp_table;
102
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000103 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
104 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
105 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800106
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000107 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
108 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
109 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800110
111 kfree(ipv6_table);
112 kfree(ipv6_route_table);
113 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800114}
115
116static struct pernet_operations ipv6_sysctl_net_ops = {
117 .init = ipv6_sysctl_net_init,
118 .exit = ipv6_sysctl_net_exit,
119};
120
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700121static struct ctl_table_header *ip6_header;
122
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800123int ipv6_sysctl_register(void)
124{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800125 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700126
Eric W. Biederman43444752012-04-19 13:22:55 +0000127 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700128 if (ip6_header == NULL)
129 goto out;
130
131 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
132 if (err)
133 goto err_pernet;
134out:
135 return err;
136
137err_pernet:
138 unregister_net_sysctl_table(ip6_header);
139 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142void ipv6_sysctl_unregister(void)
143{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700144 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800145 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}