blob: 4b45ed631eb8b6a1733d9d600c7c3843fbbce0c2 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* -*- linux-c -*-
3 * sysctl_net.c: sysctl interface to net subsystem.
4 *
5 * Begun April 1, 1996, Mike Shaver.
6 * Added /proc/sys/net directories for each protocol family. [MS]
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Revision 1.2 1996/05/08 20:24:40 shaver
9 * Added bits for NET_BRIDGE and the NET_IPV4_ARP stuff and
10 * NET_IPV4_IP_FORWARD.
11 *
12 *
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mm.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040016#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sysctl.h>
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110018#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Russell King496a22b2005-10-03 14:16:34 -070020#include <net/sock.h>
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#ifdef CONFIG_INET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030023#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#endif
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#ifdef CONFIG_NET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030027#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29
Al Viro73455092008-07-14 21:22:20 -040030static struct ctl_table_set *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050031net_ctl_header_lookup(struct ctl_table_root *root)
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110032{
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050033 return &current->nsproxy->net_ns->sysctls;
Al Viro73455092008-07-14 21:22:20 -040034}
35
36static int is_seen(struct ctl_table_set *set)
37{
38 return &current->nsproxy->net_ns->sysctls == set;
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110039}
40
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070041/* Return standard mode bits for table entry. */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +000042static int net_ctl_permissions(struct ctl_table_header *head,
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070043 struct ctl_table *table)
44{
Eric W. Biedermancff10972012-11-16 03:03:01 +000045 struct net *net = container_of(head->set, struct net, sysctls);
Eric W. Biedermancff10972012-11-16 03:03:01 +000046
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070047 /* Allow network administrator to have same access as root. */
Tyler Hicksd6169b02016-09-30 15:24:31 -070048 if (ns_capable_noaudit(net->user_ns, CAP_NET_ADMIN)) {
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070049 int mode = (table->mode >> 6) & 7;
50 return (mode << 6) | (mode << 3) | mode;
51 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -070052
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070053 return table->mode;
54}
55
Dmitry Torokhove79c6a42016-08-10 14:36:02 -070056static void net_ctl_set_ownership(struct ctl_table_header *head,
57 struct ctl_table *table,
58 kuid_t *uid, kgid_t *gid)
59{
60 struct net *net = container_of(head->set, struct net, sysctls);
61 kuid_t ns_root_uid;
62 kgid_t ns_root_gid;
63
64 ns_root_uid = make_kuid(net->user_ns, 0);
65 if (uid_valid(ns_root_uid))
66 *uid = ns_root_uid;
67
68 ns_root_gid = make_kgid(net->user_ns, 0);
69 if (gid_valid(ns_root_gid))
70 *gid = ns_root_gid;
71}
72
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110073static struct ctl_table_root net_sysctl_root = {
74 .lookup = net_ctl_header_lookup,
Stephen Hemminger4ecb9002008-07-25 01:48:32 -070075 .permissions = net_ctl_permissions,
Dmitry Torokhove79c6a42016-08-10 14:36:02 -070076 .set_ownership = net_ctl_set_ownership,
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110077};
78
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000079static int __net_init sysctl_net_init(struct net *net)
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110080{
Eric W. Biederman9eb47c22012-01-22 21:26:00 -080081 setup_sysctl_set(&net->sysctls, &net_sysctl_root, is_seen);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110082 return 0;
83}
84
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000085static void __net_exit sysctl_net_exit(struct net *net)
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110086{
Eric W. Biederman97324cd82012-01-09 22:19:13 -080087 retire_sysctl_set(&net->sysctls);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110088}
89
90static struct pernet_operations sysctl_pernet_ops = {
91 .init = sysctl_net_init,
92 .exit = sysctl_net_exit,
93};
94
Eric W. Biedermanbc8a3692012-04-19 13:19:46 +000095static struct ctl_table_header *net_header;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +000096__init int net_sysctl_init(void)
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110097{
Eric W. Biedermanbc8a3692012-04-19 13:19:46 +000098 static struct ctl_table empty[1];
99 int ret = -ENOMEM;
100 /* Avoid limitations in the sysctl implementation by
101 * registering "/proc/sys/net" as an empty directory not in a
102 * network namespace.
103 */
104 net_header = register_sysctl("net", empty);
105 if (!net_header)
106 goto out;
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100107 ret = register_pernet_subsys(&sysctl_pernet_ops);
108 if (ret)
Li RongQingce9d9b82015-10-23 20:59:49 +0800109 goto out1;
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100110out:
111 return ret;
Li RongQingce9d9b82015-10-23 20:59:49 +0800112out1:
113 unregister_sysctl_table(net_header);
114 net_header = NULL;
115 goto out;
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100116}
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100117
Jonathon Reinhart31c4d2f2021-04-12 00:24:52 -0400118/* Verify that sysctls for non-init netns are safe by either:
119 * 1) being read-only, or
120 * 2) having a data pointer which points outside of the global kernel/module
121 * data segment, and rather into the heap where a per-net object was
122 * allocated.
123 */
124static void ensure_safe_net_sysctl(struct net *net, const char *path,
125 struct ctl_table *table)
126{
127 struct ctl_table *ent;
128
129 pr_debug("Registering net sysctl (net %p): %s\n", net, path);
130 for (ent = table; ent->procname; ent++) {
131 unsigned long addr;
132 const char *where;
133
134 pr_debug(" procname=%s mode=%o proc_handler=%ps data=%p\n",
135 ent->procname, ent->mode, ent->proc_handler, ent->data);
136
137 /* If it's not writable inside the netns, then it can't hurt. */
138 if ((ent->mode & 0222) == 0) {
139 pr_debug(" Not writable by anyone\n");
140 continue;
141 }
142
143 /* Where does data point? */
144 addr = (unsigned long)ent->data;
145 if (is_module_address(addr))
146 where = "module";
Kefeng Wanga20deb32021-11-08 18:33:51 -0800147 else if (is_kernel_core_data(addr))
Jonathon Reinhart31c4d2f2021-04-12 00:24:52 -0400148 where = "kernel";
149 else
150 continue;
151
152 /* If it is writable and points to kernel/module global
153 * data, then it's probably a netns leak.
154 */
155 WARN(1, "sysctl %s/%s: data points to %s global data: %ps\n",
156 path, ent->procname, where, ent->data);
157
158 /* Make it "safe" by dropping writable perms */
159 ent->mode &= ~0222;
160 }
161}
162
Eric W. Biedermanab41a2c2012-04-19 13:18:47 +0000163struct ctl_table_header *register_net_sysctl(struct net *net,
164 const char *path, struct ctl_table *table)
165{
Jonathon Reinhart31c4d2f2021-04-12 00:24:52 -0400166 if (!net_eq(net, &init_net))
167 ensure_safe_net_sysctl(net, path, table);
168
Eric W. Biedermanab41a2c2012-04-19 13:18:47 +0000169 return __register_sysctl_table(&net->sysctls, path, table);
170}
171EXPORT_SYMBOL_GPL(register_net_sysctl);
172
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100173void unregister_net_sysctl_table(struct ctl_table_header *header)
174{
Harvey Harrisonab598592008-05-01 02:47:38 -0700175 unregister_sysctl_table(header);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100176}
177EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);