blob: 6c1166ccdaea5759bd1548cc252416eee9818028 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Eric W. Biederman77b14db2007-02-14 00:34:12 -08002/*
3 * /proc/sys support
4 */
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04005#include <linux/init.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08006#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -07007#include <linux/poll.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08008#include <linux/proc_fs.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -08009#include <linux/printk.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080010#include <linux/security.h>
Al Viro40401532012-02-13 03:58:52 +000011#include <linux/sched.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010012#include <linux/cred.h>
Nick Piggin34286d62011-01-07 17:49:57 +110013#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000014#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080015#include <linux/module.h>
Andrey Ignatov7b146ce2019-02-27 12:59:24 -080016#include <linux/bpf-cgroup.h>
Vlastimil Babka3db978d2020-06-07 21:40:24 -070017#include <linux/mount.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080018#include "internal.h"
19
Al Virod72f71e2009-02-20 05:58:47 +000020static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080021static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080022static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040023static const struct file_operations proc_sys_dir_file_operations;
24static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080025
Matteo Croceeec48442019-07-18 15:58:50 -070026/* shared constants to be used in various sysctls */
27const int sysctl_vals[] = { 0, 1, INT_MAX };
28EXPORT_SYMBOL(sysctl_vals);
29
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050030/* Support for permanently empty directories */
31
32struct ctl_table sysctl_mount_point[] = {
33 { }
34};
35
36static bool is_empty_dir(struct ctl_table_header *head)
37{
38 return head->ctl_table[0].child == sysctl_mount_point;
39}
40
41static void set_empty_dir(struct ctl_dir *dir)
42{
43 dir->header.ctl_table[0].child = sysctl_mount_point;
44}
45
46static void clear_empty_dir(struct ctl_dir *dir)
47
48{
49 dir->header.ctl_table[0].child = NULL;
50}
51
Lucas De Marchif1ecf062011-11-02 13:39:22 -070052void proc_sys_poll_notify(struct ctl_table_poll *poll)
53{
54 if (!poll)
55 return;
56
57 atomic_inc(&poll->event);
58 wake_up_interruptible(&poll->wait);
59}
60
Eric W. Biedermana1945582012-01-21 17:51:48 -080061static struct ctl_table root_table[] = {
62 {
63 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080064 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080065 },
66 { }
67};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080068static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080069 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080070 {{.count = 1,
71 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080072 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080073 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080074 .root = &sysctl_table_root,
75 .set = &sysctl_table_root.default_set,
76 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080077};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080078
79static DEFINE_SPINLOCK(sysctl_lock);
80
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080081static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080082static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050083 struct ctl_table **pentry);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080084static int insert_links(struct ctl_table_header *head);
85static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080086
Eric W. Biederman69801282012-01-21 20:09:45 -080087static void sysctl_print_dir(struct ctl_dir *dir)
88{
89 if (dir->header.parent)
90 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080091 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080092}
93
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080094static int namecmp(const char *name1, int len1, const char *name2, int len2)
95{
96 int minlen;
97 int cmp;
98
99 minlen = len1;
100 if (minlen > len2)
101 minlen = len2;
102
103 cmp = memcmp(name1, name2, minlen);
104 if (cmp == 0)
105 cmp = len1 - len2;
106 return cmp;
107}
108
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800109/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800110static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800111 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800112{
113 struct ctl_table_header *head;
114 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800115 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800116
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800117 while (node)
118 {
119 struct ctl_node *ctl_node;
120 const char *procname;
121 int cmp;
122
123 ctl_node = rb_entry(node, struct ctl_node, node);
124 head = ctl_node->header;
125 entry = &head->ctl_table[ctl_node - head->node];
126 procname = entry->procname;
127
128 cmp = namecmp(name, namelen, procname, strlen(procname));
129 if (cmp < 0)
130 node = node->rb_left;
131 else if (cmp > 0)
132 node = node->rb_right;
133 else {
134 *phead = head;
135 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800136 }
137 }
138 return NULL;
139}
140
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800141static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
142{
143 struct rb_node *node = &head->node[entry - head->ctl_table].node;
144 struct rb_node **p = &head->parent->root.rb_node;
145 struct rb_node *parent = NULL;
146 const char *name = entry->procname;
147 int namelen = strlen(name);
148
149 while (*p) {
150 struct ctl_table_header *parent_head;
151 struct ctl_table *parent_entry;
152 struct ctl_node *parent_node;
153 const char *parent_name;
154 int cmp;
155
156 parent = *p;
157 parent_node = rb_entry(parent, struct ctl_node, node);
158 parent_head = parent_node->header;
159 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
160 parent_name = parent_entry->procname;
161
162 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
163 if (cmp < 0)
164 p = &(*p)->rb_left;
165 else if (cmp > 0)
166 p = &(*p)->rb_right;
167 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800168 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800169 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800170 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800171 return -EEXIST;
172 }
173 }
174
175 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700176 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800177 return 0;
178}
179
180static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
181{
182 struct rb_node *node = &head->node[entry - head->ctl_table].node;
183
184 rb_erase(node, &head->parent->root);
185}
186
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800187static void init_header(struct ctl_table_header *head,
188 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800189 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800190{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800191 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800192 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800193 head->used = 0;
194 head->count = 1;
195 head->nreg = 1;
196 head->unregistering = NULL;
197 head->root = root;
198 head->set = set;
199 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800200 head->node = node;
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500201 INIT_HLIST_HEAD(&head->inodes);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800202 if (node) {
203 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700204 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800205 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800206 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800207}
208
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800209static void erase_header(struct ctl_table_header *head)
210{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800211 struct ctl_table *entry;
212 for (entry = head->ctl_table; entry->procname; entry++)
213 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800214}
215
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800216static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800217{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800218 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800219 int err;
220
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500221 /* Is this a permanently empty directory? */
222 if (is_empty_dir(&dir->header))
223 return -EROFS;
224
225 /* Am I creating a permanently empty directory? */
226 if (header->ctl_table == sysctl_mount_point) {
227 if (!RB_EMPTY_ROOT(&dir->root))
228 return -EINVAL;
229 set_empty_dir(dir);
230 }
231
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800232 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800233 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800234 err = insert_links(header);
235 if (err)
236 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800237 for (entry = header->ctl_table; entry->procname; entry++) {
238 err = insert_entry(header, entry);
239 if (err)
240 goto fail;
241 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800242 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800243fail:
244 erase_header(header);
245 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800246fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500247 if (header->ctl_table == sysctl_mount_point)
248 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800249 header->parent = NULL;
250 drop_sysctl_table(&dir->header);
251 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800252}
253
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800254/* called under sysctl_lock */
255static int use_table(struct ctl_table_header *p)
256{
257 if (unlikely(p->unregistering))
258 return 0;
259 p->used++;
260 return 1;
261}
262
263/* called under sysctl_lock */
264static void unuse_table(struct ctl_table_header *p)
265{
266 if (!--p->used)
267 if (unlikely(p->unregistering))
268 complete(p->unregistering);
269}
270
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600271static void proc_sys_invalidate_dcache(struct ctl_table_header *head)
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300272{
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600273 proc_invalidate_siblings_dcache(&head->inodes, &sysctl_lock);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300274}
275
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800276/* called under sysctl_lock, will reacquire if has to wait */
277static void start_unregistering(struct ctl_table_header *p)
278{
279 /*
280 * if p->used is 0, nobody will ever touch that entry again;
281 * we'll eliminate all paths to it before dropping sysctl_lock
282 */
283 if (unlikely(p->used)) {
284 struct completion wait;
285 init_completion(&wait);
286 p->unregistering = &wait;
287 spin_unlock(&sysctl_lock);
288 wait_for_completion(&wait);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800289 } else {
290 /* anything non-NULL; we'll never dereference it */
291 p->unregistering = ERR_PTR(-EINVAL);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300292 spin_unlock(&sysctl_lock);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800293 }
294 /*
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600295 * Invalidate dentries for unregistered sysctls: namespaced sysctls
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300296 * can have duplicate names and contaminate dcache very badly.
297 */
Eric W. Biedermanf90f3ca2020-02-21 08:43:23 -0600298 proc_sys_invalidate_dcache(p);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300299 /*
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800300 * do not remove from the list until nobody holds it; walking the
301 * list in do_sysctl() relies on that.
302 */
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300303 spin_lock(&sysctl_lock);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800304 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800305}
306
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800307static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
308{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700309 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800310 spin_lock(&sysctl_lock);
311 if (!use_table(head))
312 head = ERR_PTR(-ENOENT);
313 spin_unlock(&sysctl_lock);
314 return head;
315}
316
317static void sysctl_head_finish(struct ctl_table_header *head)
318{
319 if (!head)
320 return;
321 spin_lock(&sysctl_lock);
322 unuse_table(head);
323 spin_unlock(&sysctl_lock);
324}
325
326static struct ctl_table_set *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500327lookup_header_set(struct ctl_table_root *root)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800328{
329 struct ctl_table_set *set = &root->default_set;
330 if (root->lookup)
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500331 set = root->lookup(root);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800332 return set;
333}
334
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800335static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800336 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800337 const char *name, int namelen)
338{
339 struct ctl_table_header *head;
340 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800341
342 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800343 entry = find_entry(&head, dir, name, namelen);
344 if (entry && use_table(head))
345 *phead = head;
346 else
347 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800348 spin_unlock(&sysctl_lock);
349 return entry;
350}
351
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800352static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800353{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800354 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800355
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800356 for (;node; node = rb_next(node)) {
357 ctl_node = rb_entry(node, struct ctl_node, node);
358 if (use_table(ctl_node->header))
359 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800360 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800361 return NULL;
362}
363
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800364static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800365 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800366{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800367 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800368 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800369 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800370
371 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800372 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800373 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800374 if (ctl_node) {
375 head = ctl_node->header;
376 entry = &head->ctl_table[ctl_node - head->node];
377 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800378 *phead = head;
379 *pentry = entry;
380}
381
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800382static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800383{
384 struct ctl_table_header *head = *phead;
385 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800386 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800387
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800388 spin_lock(&sysctl_lock);
389 unuse_table(head);
390
391 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
392 spin_unlock(&sysctl_lock);
393 head = NULL;
394 if (ctl_node) {
395 head = ctl_node->header;
396 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800397 }
398 *phead = head;
399 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800400}
401
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800402/*
403 * sysctl_perm does NOT grant the superuser all rights automatically, because
404 * some sysctl variables are readonly even to root.
405 */
406
407static int test_perm(int mode, int op)
408{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800409 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800410 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800411 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800412 mode >>= 3;
413 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
414 return 0;
415 return -EACCES;
416}
417
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000418static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800419{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000420 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800421 int mode;
422
423 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000424 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800425 else
426 mode = table->mode;
427
428 return test_perm(mode, op);
429}
430
Al Viro9043476f2008-07-15 08:54:06 -0400431static struct inode *proc_sys_make_inode(struct super_block *sb,
432 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800433{
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700434 struct ctl_table_root *root = head->root;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800435 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400436 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800437
Al Viro9043476f2008-07-15 08:54:06 -0400438 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800439 if (!inode)
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800440 return ERR_PTR(-ENOMEM);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800441
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400442 inode->i_ino = get_next_ino();
443
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800444 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400445
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300446 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300447 if (unlikely(head->unregistering)) {
448 spin_unlock(&sysctl_lock);
449 iput(inode);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800450 return ERR_PTR(-ENOENT);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300451 }
452 ei->sysctl = head;
453 ei->sysctl_entry = table;
Eric W. Biederman0afa5ca2020-02-19 17:17:34 -0600454 hlist_add_head_rcu(&ei->sibling_inodes, &head->inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300455 head->count++;
456 spin_unlock(&sysctl_lock);
457
Deepa Dinamani078cd822016-09-14 07:48:04 -0700458 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400459 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800460 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400461 inode->i_mode |= S_IFREG;
462 inode->i_op = &proc_sys_inode_operations;
463 inode->i_fop = &proc_sys_file_operations;
464 } else {
465 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400466 inode->i_op = &proc_sys_dir_operations;
467 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500468 if (is_empty_dir(head))
469 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400470 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700471
472 if (root->set_ownership)
473 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
Radoslaw Burny5ec27ec2019-07-16 16:26:51 -0700474 else {
475 inode->i_uid = GLOBAL_ROOT_UID;
476 inode->i_gid = GLOBAL_ROOT_GID;
477 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700478
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800479 return inode;
480}
481
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300482void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
483{
484 spin_lock(&sysctl_lock);
Eric W. Biederman0afa5ca2020-02-19 17:17:34 -0600485 hlist_del_init_rcu(&PROC_I(inode)->sibling_inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300486 if (!--head->count)
487 kfree_rcu(head, rcu);
488 spin_unlock(&sysctl_lock);
489}
490
Adrian Bunk81324362008-10-03 00:33:54 +0400491static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800492{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800493 struct ctl_table_header *head = PROC_I(inode)->sysctl;
494 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800495 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800496 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800497}
498
499static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400500 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800501{
Al Viro9043476f2008-07-15 08:54:06 -0400502 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400503 struct ctl_table_header *h = NULL;
Al Virodc12e902016-07-20 22:41:44 -0400504 const struct qstr *name = &dentry->d_name;
Al Viro9043476f2008-07-15 08:54:06 -0400505 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800506 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400507 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800508 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800509 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800510
Al Viro9043476f2008-07-15 08:54:06 -0400511 if (IS_ERR(head))
512 return ERR_CAST(head);
513
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800514 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400515
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800516 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400517 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800518 goto out;
519
Eric W. Biederman4e757322012-01-30 21:24:59 -0800520 if (S_ISLNK(p->mode)) {
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500521 ret = sysctl_follow_link(&h, &p);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800522 err = ERR_PTR(ret);
523 if (ret)
524 goto out;
525 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800526
Al Viro9043476f2008-07-15 08:54:06 -0400527 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800528 if (IS_ERR(inode)) {
529 err = ERR_CAST(inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800530 goto out;
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800531 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800532
Nick Pigginfb045ad2011-01-07 17:49:55 +1100533 d_set_d_op(dentry, &proc_sys_dentry_operations);
Al Viro888e2b02018-05-03 09:45:06 -0400534 err = d_splice_alias(inode, dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800535
536out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700537 if (h)
538 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800539 sysctl_head_finish(head);
540 return err;
541}
542
Christoph Hellwig32927392020-04-24 08:43:38 +0200543static ssize_t proc_sys_call_handler(struct file *filp, void __user *ubuf,
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700544 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800545{
Al Viro496ad9a2013-01-23 17:07:38 -0500546 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400547 struct ctl_table_header *head = grab_header(inode);
548 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Christoph Hellwig32927392020-04-24 08:43:38 +0200549 void *kbuf;
David Howells2a2da532007-10-25 15:27:40 +0100550 ssize_t error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800551
Al Viro9043476f2008-07-15 08:54:06 -0400552 if (IS_ERR(head))
553 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800554
555 /*
556 * At this point we know that the sysctl was not unregistered
557 * and won't be until we finish.
558 */
559 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000560 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800561 goto out;
562
Al Viro9043476f2008-07-15 08:54:06 -0400563 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
564 error = -EINVAL;
565 if (!table->proc_handler)
566 goto out;
567
Christoph Hellwigef9d9652020-06-09 19:08:19 +0200568 /* don't even try if the size is too large */
Matthew Wilcox (Oracle)d4d80e62020-07-03 14:10:14 -0400569 error = -ENOMEM;
570 if (count >= KMALLOC_MAX_SIZE)
571 goto out;
Christoph Hellwigef9d9652020-06-09 19:08:19 +0200572
Christoph Hellwig32927392020-04-24 08:43:38 +0200573 if (write) {
574 kbuf = memdup_user_nul(ubuf, count);
575 if (IS_ERR(kbuf)) {
576 error = PTR_ERR(kbuf);
577 goto out;
578 }
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800579 } else {
Christoph Hellwig32927392020-04-24 08:43:38 +0200580 kbuf = kzalloc(count, GFP_KERNEL);
581 if (!kbuf)
582 goto out;
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800583 }
584
Christoph Hellwig32927392020-04-24 08:43:38 +0200585 error = BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write, &kbuf, &count,
586 ppos);
587 if (error)
588 goto out_free_buf;
589
590 /* careful: calling conventions are nasty here */
591 error = table->proc_handler(table, write, kbuf, &count, ppos);
592 if (error)
593 goto out_free_buf;
594
595 if (!write) {
596 error = -EFAULT;
597 if (copy_to_user(ubuf, kbuf, count))
598 goto out_free_buf;
599 }
600
601 error = count;
602out_free_buf:
603 kfree(kbuf);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800604out:
605 sysctl_head_finish(head);
606
607 return error;
608}
609
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700610static ssize_t proc_sys_read(struct file *filp, char __user *buf,
611 size_t count, loff_t *ppos)
612{
613 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
614}
615
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800616static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
617 size_t count, loff_t *ppos)
618{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700619 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800620}
621
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700622static int proc_sys_open(struct inode *inode, struct file *filp)
623{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700624 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700625 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
626
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700627 /* sysctl was unregistered */
628 if (IS_ERR(head))
629 return PTR_ERR(head);
630
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700631 if (table->poll)
632 filp->private_data = proc_sys_poll_event(table->poll);
633
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700634 sysctl_head_finish(head);
635
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700636 return 0;
637}
638
Al Viro076ccb72017-07-03 01:02:18 -0400639static __poll_t proc_sys_poll(struct file *filp, poll_table *wait)
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700640{
Al Viro496ad9a2013-01-23 17:07:38 -0500641 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700642 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700643 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Al Viro076ccb72017-07-03 01:02:18 -0400644 __poll_t ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700645 unsigned long event;
646
647 /* sysctl was unregistered */
648 if (IS_ERR(head))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800649 return EPOLLERR | EPOLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700650
651 if (!table->proc_handler)
652 goto out;
653
654 if (!table->poll)
655 goto out;
656
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700657 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700658 poll_wait(filp, &table->poll->wait, wait);
659
660 if (event != atomic_read(&table->poll->event)) {
661 filp->private_data = proc_sys_poll_event(table->poll);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800662 ret = EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700663 }
664
665out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700666 sysctl_head_finish(head);
667
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700668 return ret;
669}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800670
Al Virof0c3b502013-05-16 12:07:31 -0400671static bool proc_sys_fill_cache(struct file *file,
672 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400673 struct ctl_table_header *head,
674 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800675{
Al Virof0c3b502013-05-16 12:07:31 -0400676 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800677 struct inode *inode;
678 struct qstr qname;
679 ino_t ino = 0;
680 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800681
682 qname.name = table->procname;
683 qname.len = strlen(table->procname);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700684 qname.hash = full_name_hash(dir, qname.name, qname.len);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800685
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800686 child = d_lookup(dir, &qname);
687 if (!child) {
Al Viro76aab3a2016-04-20 16:36:09 -0400688 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
689 child = d_alloc_parallel(dir, &qname, &wq);
690 if (IS_ERR(child))
691 return false;
692 if (d_in_lookup(child)) {
Al Viro888e2b02018-05-03 09:45:06 -0400693 struct dentry *res;
Al Viro9043476f2008-07-15 08:54:06 -0400694 inode = proc_sys_make_inode(dir->d_sb, head, table);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800695 if (IS_ERR(inode)) {
Al Viro76aab3a2016-04-20 16:36:09 -0400696 d_lookup_done(child);
Al Viro9043476f2008-07-15 08:54:06 -0400697 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400698 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800699 }
Al Viro76aab3a2016-04-20 16:36:09 -0400700 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro888e2b02018-05-03 09:45:06 -0400701 res = d_splice_alias(inode, child);
702 d_lookup_done(child);
703 if (unlikely(res)) {
704 if (IS_ERR(res)) {
705 dput(child);
706 return false;
707 }
708 dput(child);
709 child = res;
710 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800711 }
712 }
David Howells2b0143b2015-03-17 22:25:59 +0000713 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400714 ino = inode->i_ino;
715 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800716 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400717 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400718}
719
Al Virof0c3b502013-05-16 12:07:31 -0400720static bool proc_sys_link_fill_cache(struct file *file,
721 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800722 struct ctl_table_header *head,
723 struct ctl_table *table)
724{
Al Virof0c3b502013-05-16 12:07:31 -0400725 bool ret = true;
Danilo Krummricha0b0d1c2018-04-10 16:31:38 -0700726
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800727 head = sysctl_head_grab(head);
Danilo Krummricha0b0d1c2018-04-10 16:31:38 -0700728 if (IS_ERR(head))
729 return false;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800730
Danilo Krummrich835b94e2018-04-10 16:31:41 -0700731 /* It is not an error if we can not follow the link ignore it */
732 if (sysctl_follow_link(&head, &table))
733 goto out;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800734
Al Virof0c3b502013-05-16 12:07:31 -0400735 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800736out:
737 sysctl_head_finish(head);
738 return ret;
739}
740
Joe Perchese5eea092014-08-08 14:22:16 -0700741static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400742 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400743 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400744{
Al Virof0c3b502013-05-16 12:07:31 -0400745 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400746
Al Virof0c3b502013-05-16 12:07:31 -0400747 if ((*pos)++ < ctx->pos)
748 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400749
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800750 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400751 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800752 else
Al Virof0c3b502013-05-16 12:07:31 -0400753 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400754
Al Virof0c3b502013-05-16 12:07:31 -0400755 if (res)
756 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400757
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800758 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800759}
760
Al Virof0c3b502013-05-16 12:07:31 -0400761static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800762{
Al Virof0c3b502013-05-16 12:07:31 -0400763 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400764 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800765 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800766 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800767 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800768
Al Viro9043476f2008-07-15 08:54:06 -0400769 if (IS_ERR(head))
770 return PTR_ERR(head);
771
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800772 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800773
Al Virof0c3b502013-05-16 12:07:31 -0400774 if (!dir_emit_dots(file, ctx))
Zhou Chengming93362fa2017-01-06 09:32:32 +0800775 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400776
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800777 pos = 2;
778
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800779 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400780 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400781 sysctl_head_finish(h);
782 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800783 }
784 }
Zhou Chengming93362fa2017-01-06 09:32:32 +0800785out:
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800786 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400787 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800788}
789
Al Viro10556cb22011-06-20 19:28:19 -0400790static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800791{
792 /*
793 * sysctl entries that are not writeable,
794 * are _NOT_ writeable, capabilities or not.
795 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200796 struct ctl_table_header *head;
797 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800798 int error;
799
Miklos Szeredif696a362008-07-31 13:41:58 +0200800 /* Executable files are not allowed under /proc/sys/ */
801 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
802 return -EACCES;
803
804 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400805 if (IS_ERR(head))
806 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800807
Miklos Szeredif696a362008-07-31 13:41:58 +0200808 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400809 if (!table) /* global root - r-xr-xr-x */
810 error = mask & MAY_WRITE ? -EACCES : 0;
811 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000812 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800813
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800814 sysctl_head_finish(head);
815 return error;
816}
817
818static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
819{
David Howells2b0143b2015-03-17 22:25:59 +0000820 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800821 int error;
822
823 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
824 return -EPERM;
825
Jan Kara31051c82016-05-26 16:55:18 +0200826 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200827 if (error)
828 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800829
Christoph Hellwig10257742010-06-04 11:30:02 +0200830 setattr_copy(inode, attr);
831 mark_inode_dirty(inode);
832 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800833}
834
David Howellsa528d352017-01-31 16:46:22 +0000835static int proc_sys_getattr(const struct path *path, struct kstat *stat,
836 u32 request_mask, unsigned int query_flags)
Al Viro9043476f2008-07-15 08:54:06 -0400837{
David Howellsa528d352017-01-31 16:46:22 +0000838 struct inode *inode = d_inode(path->dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400839 struct ctl_table_header *head = grab_header(inode);
840 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
841
842 if (IS_ERR(head))
843 return PTR_ERR(head);
844
845 generic_fillattr(inode, stat);
846 if (table)
847 stat->mode = (stat->mode & S_IFMT) | table->mode;
848
849 sysctl_head_finish(head);
850 return 0;
851}
852
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800853static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700854 .open = proc_sys_open,
855 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800856 .read = proc_sys_read,
857 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200858 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400859};
860
861static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700862 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400863 .iterate_shared = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200864 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800865};
866
Jan Engelhardt03a44822008-02-08 04:21:19 -0800867static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400868 .permission = proc_sys_permission,
869 .setattr = proc_sys_setattr,
870 .getattr = proc_sys_getattr,
871};
872
873static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800874 .lookup = proc_sys_lookup,
875 .permission = proc_sys_permission,
876 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400877 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800878};
879
Al Viro0b728e12012-06-10 16:03:43 -0400880static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800881{
Al Viro0b728e12012-06-10 16:03:43 -0400882 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100883 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000884 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400885}
886
Nick Pigginfe15ce42011-01-07 17:49:23 +1100887static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400888{
David Howells2b0143b2015-03-17 22:25:59 +0000889 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400890}
891
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800892static int sysctl_is_seen(struct ctl_table_header *p)
893{
894 struct ctl_table_set *set = p->set;
895 int res;
896 spin_lock(&sysctl_lock);
897 if (p->unregistering)
898 res = 0;
899 else if (!set->is_seen)
900 res = 1;
901 else
902 res = set->is_seen(set);
903 spin_unlock(&sysctl_lock);
904 return res;
905}
906
Al Viro6fa67e72016-07-31 16:37:25 -0400907static int proc_sys_compare(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100908 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400909{
Al Virodfef6dcd32011-03-08 01:25:28 -0500910 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700911 struct inode *inode;
912
Nick Piggin31e6b012011-01-07 17:49:52 +1100913 /* Although proc doesn't have negative dentries, rcu-walk means
914 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500915 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000916 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100917 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500918 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100919 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400920 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100921 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400922 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500923 head = rcu_dereference(PROC_I(inode)->sysctl);
924 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800925}
926
Al Virod72f71e2009-02-20 05:58:47 +0000927static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800928 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400929 .d_delete = proc_sys_delete,
930 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800931};
932
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800933static struct ctl_dir *find_subdir(struct ctl_dir *dir,
934 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800935{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800936 struct ctl_table_header *head;
937 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800938
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800939 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800940 if (!entry)
941 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800942 if (!S_ISDIR(entry->mode))
943 return ERR_PTR(-ENOTDIR);
944 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800945}
946
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800947static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800948 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800949{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800950 struct ctl_table *table;
951 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800952 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800953 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800954
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800955 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
956 sizeof(struct ctl_table)*2 + namelen + 1,
957 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800958 if (!new)
959 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800960
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800961 node = (struct ctl_node *)(new + 1);
962 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800963 new_name = (char *)(table + 2);
964 memcpy(new_name, name, namelen);
965 new_name[namelen] = '\0';
966 table[0].procname = new_name;
967 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800968 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800969
970 return new;
971}
972
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800973/**
974 * get_subdir - find or create a subdir with the specified name.
975 * @dir: Directory to create the subdirectory in
976 * @name: The name of the subdirectory to find or create
977 * @namelen: The length of name
978 *
979 * Takes a directory with an elevated reference count so we know that
980 * if we drop the lock the directory will not go away. Upon success
981 * the reference is moved from @dir to the returned subdirectory.
982 * Upon error an error code is returned and the reference on @dir is
983 * simply dropped.
984 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800985static struct ctl_dir *get_subdir(struct ctl_dir *dir,
986 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800987{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800988 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800989 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800990 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800991
992 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800993 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800994 if (!IS_ERR(subdir))
995 goto found;
996 if (PTR_ERR(subdir) != -ENOENT)
997 goto failed;
998
999 spin_unlock(&sysctl_lock);
1000 new = new_dir(set, name, namelen);
1001 spin_lock(&sysctl_lock);
1002 subdir = ERR_PTR(-ENOMEM);
1003 if (!new)
1004 goto failed;
1005
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001006 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001007 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001008 if (!IS_ERR(subdir))
1009 goto found;
1010 if (PTR_ERR(subdir) != -ENOENT)
1011 goto failed;
1012
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001013 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -08001014 err = insert_header(dir, &new->header);
1015 subdir = ERR_PTR(err);
1016 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001017 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001018 subdir = new;
1019found:
1020 subdir->header.nreg++;
1021failed:
Viresh Kumara1c83682015-08-12 15:59:44 +05301022 if (IS_ERR(subdir)) {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001023 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -08001024 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001025 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001026 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001027 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001028 drop_sysctl_table(&dir->header);
1029 if (new)
1030 drop_sysctl_table(&new->header);
1031 spin_unlock(&sysctl_lock);
1032 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001033}
1034
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001035static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1036{
1037 struct ctl_dir *parent;
1038 const char *procname;
1039 if (!dir->header.parent)
1040 return &set->dir;
1041 parent = xlate_dir(set, dir->header.parent);
1042 if (IS_ERR(parent))
1043 return parent;
1044 procname = dir->header.ctl_table[0].procname;
1045 return find_subdir(parent, procname, strlen(procname));
1046}
1047
1048static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001049 struct ctl_table **pentry)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001050{
1051 struct ctl_table_header *head;
1052 struct ctl_table_root *root;
1053 struct ctl_table_set *set;
1054 struct ctl_table *entry;
1055 struct ctl_dir *dir;
1056 int ret;
1057
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001058 ret = 0;
1059 spin_lock(&sysctl_lock);
1060 root = (*pentry)->data;
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001061 set = lookup_header_set(root);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001062 dir = xlate_dir(set, (*phead)->parent);
1063 if (IS_ERR(dir))
1064 ret = PTR_ERR(dir);
1065 else {
1066 const char *procname = (*pentry)->procname;
1067 head = NULL;
1068 entry = find_entry(&head, dir, procname, strlen(procname));
1069 ret = -ENOENT;
1070 if (entry && use_table(head)) {
1071 unuse_table(*phead);
1072 *phead = head;
1073 *pentry = entry;
1074 ret = 0;
1075 }
1076 }
1077
1078 spin_unlock(&sysctl_lock);
1079 return ret;
1080}
1081
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001082static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1083{
1084 struct va_format vaf;
1085 va_list args;
1086
1087 va_start(args, fmt);
1088 vaf.fmt = fmt;
1089 vaf.va = &args;
1090
Andrew Morton87ebdc02013-02-27 17:03:16 -08001091 pr_err("sysctl table check failed: %s/%s %pV\n",
1092 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001093
1094 va_end(args);
1095 return -EINVAL;
1096}
1097
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001098static int sysctl_check_table_array(const char *path, struct ctl_table *table)
1099{
1100 int err = 0;
1101
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07001102 if ((table->proc_handler == proc_douintvec) ||
1103 (table->proc_handler == proc_douintvec_minmax)) {
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001104 if (table->maxlen != sizeof(unsigned int))
Waiman Long64a11f32018-04-10 16:35:35 -07001105 err |= sysctl_err(path, table, "array not allowed");
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001106 }
1107
1108 return err;
1109}
1110
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001111static int sysctl_check_table(const char *path, struct ctl_table *table)
1112{
1113 int err = 0;
1114 for (; table->procname; table++) {
1115 if (table->child)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001116 err |= sysctl_err(path, table, "Not a file");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001117
1118 if ((table->proc_handler == proc_dostring) ||
1119 (table->proc_handler == proc_dointvec) ||
Liping Zhang1680a382017-04-07 23:51:05 +08001120 (table->proc_handler == proc_douintvec) ||
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07001121 (table->proc_handler == proc_douintvec_minmax) ||
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001122 (table->proc_handler == proc_dointvec_minmax) ||
1123 (table->proc_handler == proc_dointvec_jiffies) ||
1124 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1125 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1126 (table->proc_handler == proc_doulongvec_minmax) ||
1127 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1128 if (!table->data)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001129 err |= sysctl_err(path, table, "No data");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001130 if (!table->maxlen)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001131 err |= sysctl_err(path, table, "No maxlen");
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001132 else
1133 err |= sysctl_check_table_array(path, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001134 }
1135 if (!table->proc_handler)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001136 err |= sysctl_err(path, table, "No proc_handler");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001137
1138 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001139 err |= sysctl_err(path, table, "bogus .mode 0%o",
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001140 table->mode);
1141 }
1142 return err;
1143}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001144
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001145static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1146 struct ctl_table_root *link_root)
1147{
1148 struct ctl_table *link_table, *entry, *link;
1149 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001150 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001151 char *link_name;
1152 int nr_entries, name_bytes;
1153
1154 name_bytes = 0;
1155 nr_entries = 0;
1156 for (entry = table; entry->procname; entry++) {
1157 nr_entries++;
1158 name_bytes += strlen(entry->procname) + 1;
1159 }
1160
1161 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001162 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001163 sizeof(struct ctl_table)*(nr_entries + 1) +
1164 name_bytes,
1165 GFP_KERNEL);
1166
1167 if (!links)
1168 return NULL;
1169
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001170 node = (struct ctl_node *)(links + 1);
1171 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001172 link_name = (char *)&link_table[nr_entries + 1];
1173
1174 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1175 int len = strlen(entry->procname) + 1;
1176 memcpy(link_name, entry->procname, len);
1177 link->procname = link_name;
1178 link->mode = S_IFLNK|S_IRWXUGO;
1179 link->data = link_root;
1180 link_name += len;
1181 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001182 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001183 links->nreg = nr_entries;
1184
1185 return links;
1186}
1187
1188static bool get_links(struct ctl_dir *dir,
1189 struct ctl_table *table, struct ctl_table_root *link_root)
1190{
1191 struct ctl_table_header *head;
1192 struct ctl_table *entry, *link;
1193
1194 /* Are there links available for every entry in table? */
1195 for (entry = table; entry->procname; entry++) {
1196 const char *procname = entry->procname;
1197 link = find_entry(&head, dir, procname, strlen(procname));
1198 if (!link)
1199 return false;
1200 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1201 continue;
1202 if (S_ISLNK(link->mode) && (link->data == link_root))
1203 continue;
1204 return false;
1205 }
1206
1207 /* The checks passed. Increase the registration count on the links */
1208 for (entry = table; entry->procname; entry++) {
1209 const char *procname = entry->procname;
1210 link = find_entry(&head, dir, procname, strlen(procname));
1211 head->nreg++;
1212 }
1213 return true;
1214}
1215
1216static int insert_links(struct ctl_table_header *head)
1217{
1218 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1219 struct ctl_dir *core_parent = NULL;
1220 struct ctl_table_header *links;
1221 int err;
1222
1223 if (head->set == root_set)
1224 return 0;
1225
1226 core_parent = xlate_dir(root_set, head->parent);
1227 if (IS_ERR(core_parent))
1228 return 0;
1229
1230 if (get_links(core_parent, head->ctl_table, head->root))
1231 return 0;
1232
1233 core_parent->header.nreg++;
1234 spin_unlock(&sysctl_lock);
1235
1236 links = new_links(core_parent, head->ctl_table, head->root);
1237
1238 spin_lock(&sysctl_lock);
1239 err = -ENOMEM;
1240 if (!links)
1241 goto out;
1242
1243 err = 0;
1244 if (get_links(core_parent, head->ctl_table, head->root)) {
1245 kfree(links);
1246 goto out;
1247 }
1248
1249 err = insert_header(core_parent, links);
1250 if (err)
1251 kfree(links);
1252out:
1253 drop_sysctl_table(&core_parent->header);
1254 return err;
1255}
1256
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001257/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001258 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001259 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001260 * @path: The path to the directory the sysctl table is in.
1261 * @table: the top-level table structure
1262 *
1263 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1264 * array. A completely 0 filled entry terminates the table.
1265 *
1266 * The members of the &struct ctl_table structure are used as follows:
1267 *
1268 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1269 * enter a sysctl file
1270 *
1271 * data - a pointer to data for use by proc_handler
1272 *
1273 * maxlen - the maximum size in bytes of the data
1274 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001275 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001276 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001277 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001278 *
1279 * proc_handler - the text handler routine (described below)
1280 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001281 * extra1, extra2 - extra pointers usable by the proc handler routines
1282 *
1283 * Leaf nodes in the sysctl tree will be represented by a single file
1284 * under /proc; non-leaf nodes will be represented by directories.
1285 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001286 * There must be a proc_handler routine for any terminal nodes.
1287 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001288 *
1289 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1290 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1291 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1292 *
1293 * It is the handler's job to read the input buffer from user memory
1294 * and process it. The handler should return 0 on success.
1295 *
1296 * This routine returns %NULL on a failure to register, and a pointer
1297 * to the table header on success.
1298 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001299struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001300 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001301 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001302{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001303 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001304 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001305 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001306 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001307 struct ctl_table *entry;
1308 struct ctl_node *node;
1309 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001310
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001311 for (entry = table; entry->procname; entry++)
1312 nr_entries++;
1313
1314 header = kzalloc(sizeof(struct ctl_table_header) +
1315 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001316 if (!header)
1317 return NULL;
1318
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001319 node = (struct ctl_node *)(header + 1);
1320 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001321 if (sysctl_check_table(path, table))
1322 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001323
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001324 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001325 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001326 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001327 dir->header.nreg++;
1328 spin_unlock(&sysctl_lock);
1329
1330 /* Find the directory for the ctl_table */
1331 for (name = path; name; name = nextname) {
1332 int namelen;
1333 nextname = strchr(name, '/');
1334 if (nextname) {
1335 namelen = nextname - name;
1336 nextname++;
1337 } else {
1338 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001339 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001340 if (namelen == 0)
1341 continue;
1342
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001343 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001344 if (IS_ERR(dir))
1345 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001346 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001347
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001348 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001349 if (insert_header(dir, header))
1350 goto fail_put_dir_locked;
1351
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001352 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001353 spin_unlock(&sysctl_lock);
1354
1355 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001356
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001357fail_put_dir_locked:
1358 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001359 spin_unlock(&sysctl_lock);
1360fail:
1361 kfree(header);
1362 dump_stack();
1363 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001364}
1365
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001366/**
1367 * register_sysctl - register a sysctl table
1368 * @path: The path to the directory the sysctl table is in.
1369 * @table: the table structure
1370 *
1371 * Register a sysctl table. @table should be a filled in ctl_table
1372 * array. A completely 0 filled entry terminates the table.
1373 *
1374 * See __register_sysctl_table for more details.
1375 */
1376struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1377{
1378 return __register_sysctl_table(&sysctl_table_root.default_set,
1379 path, table);
1380}
1381EXPORT_SYMBOL(register_sysctl);
1382
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001383static char *append_path(const char *path, char *pos, const char *name)
1384{
1385 int namelen;
1386 namelen = strlen(name);
1387 if (((pos - path) + namelen + 2) >= PATH_MAX)
1388 return NULL;
1389 memcpy(pos, name, namelen);
1390 pos[namelen] = '/';
1391 pos[namelen + 1] = '\0';
1392 pos += namelen + 1;
1393 return pos;
1394}
1395
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001396static int count_subheaders(struct ctl_table *table)
1397{
1398 int has_files = 0;
1399 int nr_subheaders = 0;
1400 struct ctl_table *entry;
1401
1402 /* special case: no directory and empty directory */
1403 if (!table || !table->procname)
1404 return 1;
1405
1406 for (entry = table; entry->procname; entry++) {
1407 if (entry->child)
1408 nr_subheaders += count_subheaders(entry->child);
1409 else
1410 has_files = 1;
1411 }
1412 return nr_subheaders + has_files;
1413}
1414
1415static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001416 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001417 struct ctl_table *table)
1418{
1419 struct ctl_table *ctl_table_arg = NULL;
1420 struct ctl_table *entry, *files;
1421 int nr_files = 0;
1422 int nr_dirs = 0;
1423 int err = -ENOMEM;
1424
1425 for (entry = table; entry->procname; entry++) {
1426 if (entry->child)
1427 nr_dirs++;
1428 else
1429 nr_files++;
1430 }
1431
1432 files = table;
1433 /* If there are mixed files and directories we need a new table */
1434 if (nr_dirs && nr_files) {
1435 struct ctl_table *new;
Kees Cook6396bb22018-06-12 14:03:40 -07001436 files = kcalloc(nr_files + 1, sizeof(struct ctl_table),
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001437 GFP_KERNEL);
1438 if (!files)
1439 goto out;
1440
1441 ctl_table_arg = files;
1442 for (new = files, entry = table; entry->procname; entry++) {
1443 if (entry->child)
1444 continue;
1445 *new = *entry;
1446 new++;
1447 }
1448 }
1449
1450 /* Register everything except a directory full of subdirectories */
1451 if (nr_files || !nr_dirs) {
1452 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001453 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001454 if (!header) {
1455 kfree(ctl_table_arg);
1456 goto out;
1457 }
1458
1459 /* Remember if we need to free the file table */
1460 header->ctl_table_arg = ctl_table_arg;
1461 **subheader = header;
1462 (*subheader)++;
1463 }
1464
1465 /* Recurse into the subdirectories. */
1466 for (entry = table; entry->procname; entry++) {
1467 char *child_pos;
1468
1469 if (!entry->child)
1470 continue;
1471
1472 err = -ENAMETOOLONG;
1473 child_pos = append_path(path, pos, entry->procname);
1474 if (!child_pos)
1475 goto out;
1476
1477 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001478 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001479 pos[0] = '\0';
1480 if (err)
1481 goto out;
1482 }
1483 err = 0;
1484out:
1485 /* On failure our caller will unregister all registered subheaders */
1486 return err;
1487}
1488
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001489/**
1490 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001491 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001492 * @path: The path to the directory the sysctl table is in.
1493 * @table: the top-level table structure
1494 *
1495 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1496 * array. A completely 0 filled entry terminates the table.
1497 *
1498 * See __register_sysctl_table for more details.
1499 */
1500struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001501 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001502 const struct ctl_path *path, struct ctl_table *table)
1503{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001504 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001505 int nr_subheaders = count_subheaders(table);
1506 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001507 const struct ctl_path *component;
1508 char *new_path, *pos;
1509
1510 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1511 if (!new_path)
1512 return NULL;
1513
1514 pos[0] = '\0';
1515 for (component = path; component->procname; component++) {
1516 pos = append_path(new_path, pos, component->procname);
1517 if (!pos)
1518 goto out;
1519 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001520 while (table->procname && table->child && !table[1].procname) {
1521 pos = append_path(new_path, pos, table->procname);
1522 if (!pos)
1523 goto out;
1524 table = table->child;
1525 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001526 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001527 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001528 if (header)
1529 header->ctl_table_arg = ctl_table_arg;
1530 } else {
1531 header = kzalloc(sizeof(*header) +
1532 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1533 if (!header)
1534 goto out;
1535
1536 subheaders = (struct ctl_table_header **) (header + 1);
1537 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001538 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001539
1540 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001541 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001542 goto err_register_leaves;
1543 }
1544
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001545out:
1546 kfree(new_path);
1547 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001548
1549err_register_leaves:
1550 while (subheader > subheaders) {
1551 struct ctl_table_header *subh = *(--subheader);
1552 struct ctl_table *table = subh->ctl_table_arg;
1553 unregister_sysctl_table(subh);
1554 kfree(table);
1555 }
1556 kfree(header);
1557 header = NULL;
1558 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001559}
1560
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001561/**
1562 * register_sysctl_table_path - register a sysctl table hierarchy
1563 * @path: The path to the directory the sysctl table is in.
1564 * @table: the top-level table structure
1565 *
1566 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1567 * array. A completely 0 filled entry terminates the table.
1568 *
1569 * See __register_sysctl_paths for more details.
1570 */
1571struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1572 struct ctl_table *table)
1573{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001574 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001575 path, table);
1576}
1577EXPORT_SYMBOL(register_sysctl_paths);
1578
1579/**
1580 * register_sysctl_table - register a sysctl table hierarchy
1581 * @table: the top-level table structure
1582 *
1583 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1584 * array. A completely 0 filled entry terminates the table.
1585 *
1586 * See register_sysctl_paths for more details.
1587 */
1588struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1589{
1590 static const struct ctl_path null_path[] = { {} };
1591
1592 return register_sysctl_paths(null_path, table);
1593}
1594EXPORT_SYMBOL(register_sysctl_table);
1595
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001596static void put_links(struct ctl_table_header *header)
1597{
1598 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1599 struct ctl_table_root *root = header->root;
1600 struct ctl_dir *parent = header->parent;
1601 struct ctl_dir *core_parent;
1602 struct ctl_table *entry;
1603
1604 if (header->set == root_set)
1605 return;
1606
1607 core_parent = xlate_dir(root_set, parent);
1608 if (IS_ERR(core_parent))
1609 return;
1610
1611 for (entry = header->ctl_table; entry->procname; entry++) {
1612 struct ctl_table_header *link_head;
1613 struct ctl_table *link;
1614 const char *name = entry->procname;
1615
1616 link = find_entry(&link_head, core_parent, name, strlen(name));
1617 if (link &&
1618 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1619 (S_ISLNK(link->mode) && (link->data == root)))) {
1620 drop_sysctl_table(link_head);
1621 }
1622 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001623 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001624 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001625 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001626 }
1627 }
1628}
1629
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001630static void drop_sysctl_table(struct ctl_table_header *header)
1631{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001632 struct ctl_dir *parent = header->parent;
1633
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001634 if (--header->nreg)
1635 return;
1636
YueHaibing89189552019-04-25 22:24:05 -07001637 if (parent) {
YueHaibing23da9582019-03-28 20:44:40 -07001638 put_links(header);
YueHaibing89189552019-04-25 22:24:05 -07001639 start_unregistering(header);
1640 }
1641
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001642 if (!--header->count)
1643 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001644
1645 if (parent)
1646 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001647}
1648
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001649/**
1650 * unregister_sysctl_table - unregister a sysctl table hierarchy
1651 * @header: the header returned from register_sysctl_table
1652 *
1653 * Unregisters the sysctl table and all children. proc entries may not
1654 * actually be removed until they are no longer used by anyone.
1655 */
1656void unregister_sysctl_table(struct ctl_table_header * header)
1657{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001658 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001659 might_sleep();
1660
1661 if (header == NULL)
1662 return;
1663
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001664 nr_subheaders = count_subheaders(header->ctl_table_arg);
1665 if (unlikely(nr_subheaders > 1)) {
1666 struct ctl_table_header **subheaders;
1667 int i;
1668
1669 subheaders = (struct ctl_table_header **)(header + 1);
1670 for (i = nr_subheaders -1; i >= 0; i--) {
1671 struct ctl_table_header *subh = subheaders[i];
1672 struct ctl_table *table = subh->ctl_table_arg;
1673 unregister_sysctl_table(subh);
1674 kfree(table);
1675 }
1676 kfree(header);
1677 return;
1678 }
1679
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001680 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001681 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001682 spin_unlock(&sysctl_lock);
1683}
1684EXPORT_SYMBOL(unregister_sysctl_table);
1685
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001686void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001687 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001688 int (*is_seen)(struct ctl_table_set *))
1689{
Dan Carpenter13474402012-01-30 16:40:29 +03001690 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001691 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001692 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001693}
1694
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001695void retire_sysctl_set(struct ctl_table_set *set)
1696{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001697 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001698}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001699
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001700int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001701{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001702 struct proc_dir_entry *proc_sys_root;
1703
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001704 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001705 proc_sys_root->proc_iops = &proc_sys_dir_operations;
Alexey Dobriyand56c0d42020-02-03 17:37:14 -08001706 proc_sys_root->proc_dir_ops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001707 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001708
1709 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001710}
Vlastimil Babka3db978d2020-06-07 21:40:24 -07001711
Vlastimil Babka0a477e12020-06-07 21:40:27 -07001712struct sysctl_alias {
1713 const char *kernel_param;
1714 const char *sysctl_param;
1715};
1716
1717/*
1718 * Historically some settings had both sysctl and a command line parameter.
1719 * With the generic sysctl. parameter support, we can handle them at a single
1720 * place and only keep the historical name for compatibility. This is not meant
1721 * to add brand new aliases. When adding existing aliases, consider whether
1722 * the possibly different moment of changing the value (e.g. from early_param
1723 * to the moment do_sysctl_args() is called) is an issue for the specific
1724 * parameter.
1725 */
1726static const struct sysctl_alias sysctl_aliases[] = {
Guilherme G. Piccolif1179552020-06-07 21:40:42 -07001727 {"hardlockup_all_cpu_backtrace", "kernel.hardlockup_all_cpu_backtrace" },
1728 {"hung_task_panic", "kernel.hung_task_panic" },
1729 {"numa_zonelist_order", "vm.numa_zonelist_order" },
1730 {"softlockup_all_cpu_backtrace", "kernel.softlockup_all_cpu_backtrace" },
1731 {"softlockup_panic", "kernel.softlockup_panic" },
Vlastimil Babka0a477e12020-06-07 21:40:27 -07001732 { }
1733};
1734
1735static const char *sysctl_find_alias(char *param)
1736{
1737 const struct sysctl_alias *alias;
1738
1739 for (alias = &sysctl_aliases[0]; alias->kernel_param != NULL; alias++) {
1740 if (strcmp(alias->kernel_param, param) == 0)
1741 return alias->sysctl_param;
1742 }
1743
1744 return NULL;
1745}
1746
Vlastimil Babka3db978d2020-06-07 21:40:24 -07001747/* Set sysctl value passed on kernel command line. */
1748static int process_sysctl_arg(char *param, char *val,
1749 const char *unused, void *arg)
1750{
1751 char *path;
1752 struct vfsmount **proc_mnt = arg;
1753 struct file_system_type *proc_fs_type;
1754 struct file *file;
1755 int len;
1756 int err;
1757 loff_t pos = 0;
1758 ssize_t wret;
1759
Vlastimil Babka0a477e12020-06-07 21:40:27 -07001760 if (strncmp(param, "sysctl", sizeof("sysctl") - 1) == 0) {
1761 param += sizeof("sysctl") - 1;
Vlastimil Babka3db978d2020-06-07 21:40:24 -07001762
Vlastimil Babka0a477e12020-06-07 21:40:27 -07001763 if (param[0] != '/' && param[0] != '.')
1764 return 0;
Vlastimil Babka3db978d2020-06-07 21:40:24 -07001765
Vlastimil Babka0a477e12020-06-07 21:40:27 -07001766 param++;
1767 } else {
1768 param = (char *) sysctl_find_alias(param);
1769 if (!param)
1770 return 0;
1771 }
Vlastimil Babka3db978d2020-06-07 21:40:24 -07001772
1773 /*
1774 * To set sysctl options, we use a temporary mount of proc, look up the
1775 * respective sys/ file and write to it. To avoid mounting it when no
1776 * options were given, we mount it only when the first sysctl option is
1777 * found. Why not a persistent mount? There are problems with a
1778 * persistent mount of proc in that it forces userspace not to use any
1779 * proc mount options.
1780 */
1781 if (!*proc_mnt) {
1782 proc_fs_type = get_fs_type("proc");
1783 if (!proc_fs_type) {
1784 pr_err("Failed to find procfs to set sysctl from command line\n");
1785 return 0;
1786 }
1787 *proc_mnt = kern_mount(proc_fs_type);
1788 put_filesystem(proc_fs_type);
1789 if (IS_ERR(*proc_mnt)) {
1790 pr_err("Failed to mount procfs to set sysctl from command line\n");
1791 return 0;
1792 }
1793 }
1794
1795 path = kasprintf(GFP_KERNEL, "sys/%s", param);
1796 if (!path)
1797 panic("%s: Failed to allocate path for %s\n", __func__, param);
1798 strreplace(path, '.', '/');
1799
1800 file = file_open_root((*proc_mnt)->mnt_root, *proc_mnt, path, O_WRONLY, 0);
1801 if (IS_ERR(file)) {
1802 err = PTR_ERR(file);
1803 if (err == -ENOENT)
1804 pr_err("Failed to set sysctl parameter '%s=%s': parameter not found\n",
1805 param, val);
1806 else if (err == -EACCES)
1807 pr_err("Failed to set sysctl parameter '%s=%s': permission denied (read-only?)\n",
1808 param, val);
1809 else
1810 pr_err("Error %pe opening proc file to set sysctl parameter '%s=%s'\n",
1811 file, param, val);
1812 goto out;
1813 }
1814 len = strlen(val);
1815 wret = kernel_write(file, val, len, &pos);
1816 if (wret < 0) {
1817 err = wret;
1818 if (err == -EINVAL)
1819 pr_err("Failed to set sysctl parameter '%s=%s': invalid value\n",
1820 param, val);
1821 else
1822 pr_err("Error %pe writing to proc file to set sysctl parameter '%s=%s'\n",
1823 ERR_PTR(err), param, val);
1824 } else if (wret != len) {
1825 pr_err("Wrote only %zd bytes of %d writing to proc file %s to set sysctl parameter '%s=%s\n",
1826 wret, len, path, param, val);
1827 }
1828
1829 err = filp_close(file, NULL);
1830 if (err)
1831 pr_err("Error %pe closing proc file to set sysctl parameter '%s=%s\n",
1832 ERR_PTR(err), param, val);
1833out:
1834 kfree(path);
1835 return 0;
1836}
1837
1838void do_sysctl_args(void)
1839{
1840 char *command_line;
1841 struct vfsmount *proc_mnt = NULL;
1842
1843 command_line = kstrdup(saved_command_line, GFP_KERNEL);
1844 if (!command_line)
1845 panic("%s: Failed to allocate copy of command line\n", __func__);
1846
1847 parse_args("Setting sysctl args", command_line,
1848 NULL, 0, -1, -1, &proc_mnt, process_sysctl_arg);
1849
1850 if (proc_mnt)
1851 kern_unmount(proc_mnt);
1852
1853 kfree(command_line);
1854}