Merge tag 'vfio-v6.5-rc1' of https://github.com/awilliam/linux-vfio
[linux-2.6-block.git] / fs / proc / proc_sysctl.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
77b14db5
EB
2/*
3 * /proc/sys support
4 */
1e0edd3f 5#include <linux/init.h>
77b14db5 6#include <linux/sysctl.h>
f1ecf068 7#include <linux/poll.h>
77b14db5 8#include <linux/proc_fs.h>
87ebdc00 9#include <linux/printk.h>
77b14db5 10#include <linux/security.h>
40401530 11#include <linux/sched.h>
5b825c3a 12#include <linux/cred.h>
34286d66 13#include <linux/namei.h>
40401530 14#include <linux/mm.h>
4bd6a735 15#include <linux/uio.h>
1f87f0b5 16#include <linux/module.h>
7b146ceb 17#include <linux/bpf-cgroup.h>
3db978d4 18#include <linux/mount.h>
3ddd9a80 19#include <linux/kmemleak.h>
77b14db5
EB
20#include "internal.h"
21
cb55f27a
MT
22#define list_for_each_table_entry(entry, table) \
23 for ((entry) = (table); (entry)->procname; (entry)++)
24
d72f71eb 25static const struct dentry_operations proc_sys_dentry_operations;
77b14db5 26static const struct file_operations proc_sys_file_operations;
03a44825 27static const struct inode_operations proc_sys_inode_operations;
9043476f
AV
28static const struct file_operations proc_sys_dir_file_operations;
29static const struct inode_operations proc_sys_dir_operations;
77b14db5 30
f9bd6733 31/* Support for permanently empty directories */
f9bd6733 32struct ctl_table sysctl_mount_point[] = {
2f2665c1 33 {.type = SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY }
f9bd6733
EB
34};
35
ee9efac4
LC
36/**
37 * register_sysctl_mount_point() - registers a sysctl mount point
38 * @path: path for the mount point
39 *
40 * Used to create a permanently empty directory to serve as mount point.
41 * There are some subtle but important permission checks this allows in the
42 * case of unprivileged mounts.
43 */
44struct ctl_table_header *register_sysctl_mount_point(const char *path)
45{
46 return register_sysctl(path, sysctl_mount_point);
47}
48EXPORT_SYMBOL(register_sysctl_mount_point);
49
2f2665c1
JG
50#define sysctl_is_perm_empty_ctl_table(tptr) \
51 (tptr[0].type == SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY)
52#define sysctl_is_perm_empty_ctl_header(hptr) \
53 (sysctl_is_perm_empty_ctl_table(hptr->ctl_table))
54#define sysctl_set_perm_empty_ctl_header(hptr) \
55 (hptr->ctl_table[0].type = SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY)
56#define sysctl_clear_perm_empty_ctl_header(hptr) \
57 (hptr->ctl_table[0].type = SYSCTL_TABLE_TYPE_DEFAULT)
f9bd6733 58
f1ecf068
LDM
59void proc_sys_poll_notify(struct ctl_table_poll *poll)
60{
61 if (!poll)
62 return;
63
64 atomic_inc(&poll->event);
65 wake_up_interruptible(&poll->wait);
66}
67
a194558e
EB
68static struct ctl_table root_table[] = {
69 {
70 .procname = "",
7ec66d06 71 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
a194558e
EB
72 },
73 { }
74};
0e47c99d 75static struct ctl_table_root sysctl_table_root = {
0e47c99d 76 .default_set.dir.header = {
7ec66d06
EB
77 {{.count = 1,
78 .nreg = 1,
ac13ac6f 79 .ctl_table = root_table }},
0e47c99d 80 .ctl_table_arg = root_table,
7ec66d06
EB
81 .root = &sysctl_table_root,
82 .set = &sysctl_table_root.default_set,
83 },
1f87f0b5 84};
1f87f0b5
EB
85
86static DEFINE_SPINLOCK(sysctl_lock);
87
7ec66d06 88static void drop_sysctl_table(struct ctl_table_header *header);
0e47c99d 89static int sysctl_follow_link(struct ctl_table_header **phead,
13bcc6a2 90 struct ctl_table **pentry);
0e47c99d
EB
91static int insert_links(struct ctl_table_header *head);
92static void put_links(struct ctl_table_header *header);
7ec66d06 93
6980128f
EB
94static void sysctl_print_dir(struct ctl_dir *dir)
95{
96 if (dir->header.parent)
97 sysctl_print_dir(dir->header.parent);
87ebdc00 98 pr_cont("%s/", dir->header.ctl_table[0].procname);
6980128f
EB
99}
100
076c3eed
EB
101static int namecmp(const char *name1, int len1, const char *name2, int len2)
102{
076c3eed
EB
103 int cmp;
104
d8fc9b66 105 cmp = memcmp(name1, name2, min(len1, len2));
076c3eed
EB
106 if (cmp == 0)
107 cmp = len1 - len2;
108 return cmp;
109}
110
60f126d9 111/* Called under sysctl_lock */
076c3eed 112static struct ctl_table *find_entry(struct ctl_table_header **phead,
0e47c99d 113 struct ctl_dir *dir, const char *name, int namelen)
076c3eed
EB
114{
115 struct ctl_table_header *head;
116 struct ctl_table *entry;
ac13ac6f 117 struct rb_node *node = dir->root.rb_node;
076c3eed 118
ac13ac6f
EB
119 while (node)
120 {
121 struct ctl_node *ctl_node;
122 const char *procname;
123 int cmp;
124
125 ctl_node = rb_entry(node, struct ctl_node, node);
126 head = ctl_node->header;
127 entry = &head->ctl_table[ctl_node - head->node];
128 procname = entry->procname;
129
130 cmp = namecmp(name, namelen, procname, strlen(procname));
131 if (cmp < 0)
132 node = node->rb_left;
133 else if (cmp > 0)
134 node = node->rb_right;
135 else {
136 *phead = head;
137 return entry;
076c3eed
EB
138 }
139 }
140 return NULL;
141}
142
ac13ac6f
EB
143static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
144{
145 struct rb_node *node = &head->node[entry - head->ctl_table].node;
146 struct rb_node **p = &head->parent->root.rb_node;
147 struct rb_node *parent = NULL;
148 const char *name = entry->procname;
149 int namelen = strlen(name);
150
151 while (*p) {
152 struct ctl_table_header *parent_head;
153 struct ctl_table *parent_entry;
154 struct ctl_node *parent_node;
155 const char *parent_name;
156 int cmp;
157
158 parent = *p;
159 parent_node = rb_entry(parent, struct ctl_node, node);
160 parent_head = parent_node->header;
161 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
162 parent_name = parent_entry->procname;
163
164 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
165 if (cmp < 0)
166 p = &(*p)->rb_left;
167 else if (cmp > 0)
168 p = &(*p)->rb_right;
169 else {
87ebdc00 170 pr_err("sysctl duplicate entry: ");
ac13ac6f 171 sysctl_print_dir(head->parent);
153ee1c4 172 pr_cont("%s\n", entry->procname);
ac13ac6f
EB
173 return -EEXIST;
174 }
175 }
176
177 rb_link_node(node, parent, p);
ea5272f5 178 rb_insert_color(node, &head->parent->root);
ac13ac6f
EB
179 return 0;
180}
181
182static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
183{
184 struct rb_node *node = &head->node[entry - head->ctl_table].node;
185
186 rb_erase(node, &head->parent->root);
187}
188
e0d04529
EB
189static void init_header(struct ctl_table_header *head,
190 struct ctl_table_root *root, struct ctl_table_set *set,
ac13ac6f 191 struct ctl_node *node, struct ctl_table *table)
e0d04529 192{
7ec66d06 193 head->ctl_table = table;
e0d04529 194 head->ctl_table_arg = table;
e0d04529
EB
195 head->used = 0;
196 head->count = 1;
197 head->nreg = 1;
198 head->unregistering = NULL;
199 head->root = root;
200 head->set = set;
201 head->parent = NULL;
ac13ac6f 202 head->node = node;
2fd1d2c4 203 INIT_HLIST_HEAD(&head->inodes);
ac13ac6f
EB
204 if (node) {
205 struct ctl_table *entry;
cb55f27a
MT
206
207 list_for_each_table_entry(entry, table) {
ac13ac6f 208 node->header = head;
cb55f27a
MT
209 node++;
210 }
ac13ac6f 211 }
e0d04529
EB
212}
213
8425d6aa
EB
214static void erase_header(struct ctl_table_header *head)
215{
ac13ac6f 216 struct ctl_table *entry;
cb55f27a
MT
217
218 list_for_each_table_entry(entry, head->ctl_table)
ac13ac6f 219 erase_entry(head, entry);
8425d6aa
EB
220}
221
0e47c99d 222static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
8425d6aa 223{
ac13ac6f 224 struct ctl_table *entry;
2f2665c1 225 struct ctl_table_header *dir_h = &dir->header;
0e47c99d
EB
226 int err;
227
2f2665c1 228
f9bd6733 229 /* Is this a permanently empty directory? */
2f2665c1 230 if (sysctl_is_perm_empty_ctl_header(dir_h))
f9bd6733
EB
231 return -EROFS;
232
233 /* Am I creating a permanently empty directory? */
2f2665c1 234 if (sysctl_is_perm_empty_ctl_table(header->ctl_table)) {
f9bd6733
EB
235 if (!RB_EMPTY_ROOT(&dir->root))
236 return -EINVAL;
2f2665c1 237 sysctl_set_perm_empty_ctl_header(dir_h);
f9bd6733
EB
238 }
239
2f2665c1 240 dir_h->nreg++;
7ec66d06 241 header->parent = dir;
0e47c99d
EB
242 err = insert_links(header);
243 if (err)
244 goto fail_links;
cb55f27a 245 list_for_each_table_entry(entry, header->ctl_table) {
ac13ac6f
EB
246 err = insert_entry(header, entry);
247 if (err)
248 goto fail;
249 }
0e47c99d 250 return 0;
ac13ac6f
EB
251fail:
252 erase_header(header);
253 put_links(header);
0e47c99d 254fail_links:
f9bd6733 255 if (header->ctl_table == sysctl_mount_point)
2f2665c1 256 sysctl_clear_perm_empty_ctl_header(dir_h);
0e47c99d 257 header->parent = NULL;
2f2665c1 258 drop_sysctl_table(dir_h);
0e47c99d 259 return err;
8425d6aa
EB
260}
261
1f87f0b5
EB
262/* called under sysctl_lock */
263static int use_table(struct ctl_table_header *p)
264{
265 if (unlikely(p->unregistering))
266 return 0;
267 p->used++;
268 return 1;
269}
270
271/* called under sysctl_lock */
272static void unuse_table(struct ctl_table_header *p)
273{
274 if (!--p->used)
275 if (unlikely(p->unregistering))
276 complete(p->unregistering);
277}
278
f90f3caf 279static void proc_sys_invalidate_dcache(struct ctl_table_header *head)
d6cffbbe 280{
f90f3caf 281 proc_invalidate_siblings_dcache(&head->inodes, &sysctl_lock);
d6cffbbe
KK
282}
283
1f87f0b5
EB
284/* called under sysctl_lock, will reacquire if has to wait */
285static void start_unregistering(struct ctl_table_header *p)
286{
287 /*
288 * if p->used is 0, nobody will ever touch that entry again;
289 * we'll eliminate all paths to it before dropping sysctl_lock
290 */
291 if (unlikely(p->used)) {
292 struct completion wait;
293 init_completion(&wait);
294 p->unregistering = &wait;
295 spin_unlock(&sysctl_lock);
296 wait_for_completion(&wait);
1f87f0b5
EB
297 } else {
298 /* anything non-NULL; we'll never dereference it */
299 p->unregistering = ERR_PTR(-EINVAL);
ace0c791 300 spin_unlock(&sysctl_lock);
1f87f0b5 301 }
d6cffbbe 302 /*
f90f3caf 303 * Invalidate dentries for unregistered sysctls: namespaced sysctls
d6cffbbe
KK
304 * can have duplicate names and contaminate dcache very badly.
305 */
f90f3caf 306 proc_sys_invalidate_dcache(p);
1f87f0b5
EB
307 /*
308 * do not remove from the list until nobody holds it; walking the
309 * list in do_sysctl() relies on that.
310 */
ace0c791 311 spin_lock(&sysctl_lock);
8425d6aa 312 erase_header(p);
1f87f0b5
EB
313}
314
1f87f0b5
EB
315static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
316{
ab4a1f24 317 BUG_ON(!head);
1f87f0b5
EB
318 spin_lock(&sysctl_lock);
319 if (!use_table(head))
320 head = ERR_PTR(-ENOENT);
321 spin_unlock(&sysctl_lock);
322 return head;
323}
324
325static void sysctl_head_finish(struct ctl_table_header *head)
326{
327 if (!head)
328 return;
329 spin_lock(&sysctl_lock);
330 unuse_table(head);
331 spin_unlock(&sysctl_lock);
332}
333
334static struct ctl_table_set *
13bcc6a2 335lookup_header_set(struct ctl_table_root *root)
1f87f0b5
EB
336{
337 struct ctl_table_set *set = &root->default_set;
338 if (root->lookup)
13bcc6a2 339 set = root->lookup(root);
1f87f0b5
EB
340 return set;
341}
342
076c3eed 343static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
7ec66d06 344 struct ctl_dir *dir,
076c3eed
EB
345 const char *name, int namelen)
346{
347 struct ctl_table_header *head;
348 struct ctl_table *entry;
076c3eed
EB
349
350 spin_lock(&sysctl_lock);
0e47c99d
EB
351 entry = find_entry(&head, dir, name, namelen);
352 if (entry && use_table(head))
353 *phead = head;
354 else
355 entry = NULL;
076c3eed
EB
356 spin_unlock(&sysctl_lock);
357 return entry;
358}
359
ac13ac6f 360static struct ctl_node *first_usable_entry(struct rb_node *node)
1f87f0b5 361{
ac13ac6f 362 struct ctl_node *ctl_node;
1f87f0b5 363
ac13ac6f
EB
364 for (;node; node = rb_next(node)) {
365 ctl_node = rb_entry(node, struct ctl_node, node);
366 if (use_table(ctl_node->header))
367 return ctl_node;
1f87f0b5 368 }
1f87f0b5
EB
369 return NULL;
370}
371
7ec66d06 372static void first_entry(struct ctl_dir *dir,
6a75ce16
EB
373 struct ctl_table_header **phead, struct ctl_table **pentry)
374{
ac13ac6f 375 struct ctl_table_header *head = NULL;
7ec66d06 376 struct ctl_table *entry = NULL;
ac13ac6f 377 struct ctl_node *ctl_node;
6a75ce16
EB
378
379 spin_lock(&sysctl_lock);
ac13ac6f 380 ctl_node = first_usable_entry(rb_first(&dir->root));
6a75ce16 381 spin_unlock(&sysctl_lock);
ac13ac6f
EB
382 if (ctl_node) {
383 head = ctl_node->header;
384 entry = &head->ctl_table[ctl_node - head->node];
385 }
6a75ce16
EB
386 *phead = head;
387 *pentry = entry;
388}
389
7ec66d06 390static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
1f87f0b5 391{
6a75ce16
EB
392 struct ctl_table_header *head = *phead;
393 struct ctl_table *entry = *pentry;
ac13ac6f 394 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
6a75ce16 395
ac13ac6f
EB
396 spin_lock(&sysctl_lock);
397 unuse_table(head);
398
399 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
400 spin_unlock(&sysctl_lock);
401 head = NULL;
402 if (ctl_node) {
403 head = ctl_node->header;
404 entry = &head->ctl_table[ctl_node - head->node];
6a75ce16
EB
405 }
406 *phead = head;
407 *pentry = entry;
1f87f0b5
EB
408}
409
1f87f0b5
EB
410/*
411 * sysctl_perm does NOT grant the superuser all rights automatically, because
412 * some sysctl variables are readonly even to root.
413 */
414
415static int test_perm(int mode, int op)
416{
091bd3ea 417 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
1f87f0b5 418 mode >>= 6;
091bd3ea 419 else if (in_egroup_p(GLOBAL_ROOT_GID))
1f87f0b5
EB
420 mode >>= 3;
421 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
422 return 0;
423 return -EACCES;
424}
425
73f7ef43 426static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
1f87f0b5 427{
73f7ef43 428 struct ctl_table_root *root = head->root;
1f87f0b5
EB
429 int mode;
430
431 if (root->permissions)
73f7ef43 432 mode = root->permissions(head, table);
1f87f0b5
EB
433 else
434 mode = table->mode;
435
436 return test_perm(mode, op);
437}
438
9043476f
AV
439static struct inode *proc_sys_make_inode(struct super_block *sb,
440 struct ctl_table_header *head, struct ctl_table *table)
77b14db5 441{
e79c6a4f 442 struct ctl_table_root *root = head->root;
77b14db5 443 struct inode *inode;
9043476f 444 struct proc_inode *ei;
77b14db5 445
9043476f 446 inode = new_inode(sb);
77b14db5 447 if (!inode)
ea5751cc 448 return ERR_PTR(-ENOMEM);
77b14db5 449
85fe4025
CH
450 inode->i_ino = get_next_ino();
451
77b14db5 452 ei = PROC_I(inode);
9043476f 453
d6cffbbe 454 spin_lock(&sysctl_lock);
ace0c791
EB
455 if (unlikely(head->unregistering)) {
456 spin_unlock(&sysctl_lock);
457 iput(inode);
ea5751cc 458 return ERR_PTR(-ENOENT);
ace0c791
EB
459 }
460 ei->sysctl = head;
461 ei->sysctl_entry = table;
0afa5ca8 462 hlist_add_head_rcu(&ei->sibling_inodes, &head->inodes);
d6cffbbe
KK
463 head->count++;
464 spin_unlock(&sysctl_lock);
465
078cd827 466 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
9043476f 467 inode->i_mode = table->mode;
7ec66d06 468 if (!S_ISDIR(table->mode)) {
9043476f
AV
469 inode->i_mode |= S_IFREG;
470 inode->i_op = &proc_sys_inode_operations;
471 inode->i_fop = &proc_sys_file_operations;
472 } else {
473 inode->i_mode |= S_IFDIR;
9043476f
AV
474 inode->i_op = &proc_sys_dir_operations;
475 inode->i_fop = &proc_sys_dir_file_operations;
2f2665c1 476 if (sysctl_is_perm_empty_ctl_header(head))
f9bd6733 477 make_empty_dir_inode(inode);
9043476f 478 }
e79c6a4f
DT
479
480 if (root->set_ownership)
481 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
5ec27ec7
RB
482 else {
483 inode->i_uid = GLOBAL_ROOT_UID;
484 inode->i_gid = GLOBAL_ROOT_GID;
485 }
e79c6a4f 486
77b14db5
EB
487 return inode;
488}
489
d6cffbbe
KK
490void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
491{
492 spin_lock(&sysctl_lock);
0afa5ca8 493 hlist_del_init_rcu(&PROC_I(inode)->sibling_inodes);
d6cffbbe
KK
494 if (!--head->count)
495 kfree_rcu(head, rcu);
496 spin_unlock(&sysctl_lock);
497}
498
81324364 499static struct ctl_table_header *grab_header(struct inode *inode)
77b14db5 500{
3cc3e046
EB
501 struct ctl_table_header *head = PROC_I(inode)->sysctl;
502 if (!head)
0e47c99d 503 head = &sysctl_table_root.default_set.dir.header;
3cc3e046 504 return sysctl_head_grab(head);
9043476f 505}
77b14db5 506
9043476f 507static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 508 unsigned int flags)
9043476f
AV
509{
510 struct ctl_table_header *head = grab_header(dir);
9043476f 511 struct ctl_table_header *h = NULL;
dc12e909 512 const struct qstr *name = &dentry->d_name;
9043476f
AV
513 struct ctl_table *p;
514 struct inode *inode;
515 struct dentry *err = ERR_PTR(-ENOENT);
7ec66d06 516 struct ctl_dir *ctl_dir;
0e47c99d 517 int ret;
77b14db5 518
9043476f
AV
519 if (IS_ERR(head))
520 return ERR_CAST(head);
77b14db5 521
7ec66d06 522 ctl_dir = container_of(head, struct ctl_dir, header);
77b14db5 523
7ec66d06 524 p = lookup_entry(&h, ctl_dir, name->name, name->len);
9043476f 525 if (!p)
77b14db5
EB
526 goto out;
527
4e757320 528 if (S_ISLNK(p->mode)) {
13bcc6a2 529 ret = sysctl_follow_link(&h, &p);
4e757320
EB
530 err = ERR_PTR(ret);
531 if (ret)
532 goto out;
533 }
0e47c99d 534
9043476f 535 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
ea5751cc
ID
536 if (IS_ERR(inode)) {
537 err = ERR_CAST(inode);
77b14db5 538 goto out;
ea5751cc 539 }
77b14db5 540
fb045adb 541 d_set_d_op(dentry, &proc_sys_dentry_operations);
888e2b03 542 err = d_splice_alias(inode, dentry);
77b14db5
EB
543
544out:
6bf61045
FR
545 if (h)
546 sysctl_head_finish(h);
77b14db5
EB
547 sysctl_head_finish(head);
548 return err;
549}
550
4bd6a735
MWO
551static ssize_t proc_sys_call_handler(struct kiocb *iocb, struct iov_iter *iter,
552 int write)
77b14db5 553{
4bd6a735 554 struct inode *inode = file_inode(iocb->ki_filp);
9043476f
AV
555 struct ctl_table_header *head = grab_header(inode);
556 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
4bd6a735
MWO
557 size_t count = iov_iter_count(iter);
558 char *kbuf;
2a2da53b 559 ssize_t error;
77b14db5 560
9043476f
AV
561 if (IS_ERR(head))
562 return PTR_ERR(head);
77b14db5
EB
563
564 /*
565 * At this point we know that the sysctl was not unregistered
566 * and won't be until we finish.
567 */
568 error = -EPERM;
73f7ef43 569 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
77b14db5
EB
570 goto out;
571
9043476f
AV
572 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
573 error = -EINVAL;
574 if (!table->proc_handler)
575 goto out;
576
ef9d965b 577 /* don't even try if the size is too large */
d4d80e69
MWO
578 error = -ENOMEM;
579 if (count >= KMALLOC_MAX_SIZE)
580 goto out;
45089437 581 kbuf = kvzalloc(count + 1, GFP_KERNEL);
4bd6a735
MWO
582 if (!kbuf)
583 goto out;
ef9d965b 584
32927393 585 if (write) {
4bd6a735
MWO
586 error = -EFAULT;
587 if (!copy_from_iter_full(kbuf, count, iter))
588 goto out_free_buf;
589 kbuf[count] = '\0';
32927393
CH
590 }
591
592 error = BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write, &kbuf, &count,
4bd6a735 593 &iocb->ki_pos);
7b146ceb 594 if (error)
32927393 595 goto out_free_buf;
7b146ceb 596
77b14db5 597 /* careful: calling conventions are nasty here */
4bd6a735 598 error = table->proc_handler(table, write, kbuf, &count, &iocb->ki_pos);
32927393
CH
599 if (error)
600 goto out_free_buf;
601
602 if (!write) {
603 error = -EFAULT;
4bd6a735 604 if (copy_to_iter(kbuf, count, iter) < count)
32927393 605 goto out_free_buf;
4e63acdf
AI
606 }
607
32927393
CH
608 error = count;
609out_free_buf:
45089437 610 kvfree(kbuf);
77b14db5
EB
611out:
612 sysctl_head_finish(head);
613
614 return error;
615}
616
4bd6a735 617static ssize_t proc_sys_read(struct kiocb *iocb, struct iov_iter *iter)
77b14db5 618{
4bd6a735 619 return proc_sys_call_handler(iocb, iter, 0);
7708bfb1 620}
77b14db5 621
4bd6a735 622static ssize_t proc_sys_write(struct kiocb *iocb, struct iov_iter *iter)
7708bfb1 623{
4bd6a735 624 return proc_sys_call_handler(iocb, iter, 1);
77b14db5
EB
625}
626
f1ecf068
LDM
627static int proc_sys_open(struct inode *inode, struct file *filp)
628{
4e474a00 629 struct ctl_table_header *head = grab_header(inode);
f1ecf068
LDM
630 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
631
4e474a00
LDM
632 /* sysctl was unregistered */
633 if (IS_ERR(head))
634 return PTR_ERR(head);
635
f1ecf068
LDM
636 if (table->poll)
637 filp->private_data = proc_sys_poll_event(table->poll);
638
4e474a00
LDM
639 sysctl_head_finish(head);
640
f1ecf068
LDM
641 return 0;
642}
643
076ccb76 644static __poll_t proc_sys_poll(struct file *filp, poll_table *wait)
f1ecf068 645{
496ad9aa 646 struct inode *inode = file_inode(filp);
4e474a00 647 struct ctl_table_header *head = grab_header(inode);
f1ecf068 648 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
076ccb76 649 __poll_t ret = DEFAULT_POLLMASK;
4e474a00
LDM
650 unsigned long event;
651
652 /* sysctl was unregistered */
653 if (IS_ERR(head))
a9a08845 654 return EPOLLERR | EPOLLHUP;
f1ecf068
LDM
655
656 if (!table->proc_handler)
657 goto out;
658
659 if (!table->poll)
660 goto out;
661
4e474a00 662 event = (unsigned long)filp->private_data;
f1ecf068
LDM
663 poll_wait(filp, &table->poll->wait, wait);
664
665 if (event != atomic_read(&table->poll->event)) {
666 filp->private_data = proc_sys_poll_event(table->poll);
a9a08845 667 ret = EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI;
f1ecf068
LDM
668 }
669
670out:
4e474a00
LDM
671 sysctl_head_finish(head);
672
f1ecf068
LDM
673 return ret;
674}
77b14db5 675
f0c3b509
AV
676static bool proc_sys_fill_cache(struct file *file,
677 struct dir_context *ctx,
9043476f
AV
678 struct ctl_table_header *head,
679 struct ctl_table *table)
77b14db5 680{
f0c3b509 681 struct dentry *child, *dir = file->f_path.dentry;
77b14db5
EB
682 struct inode *inode;
683 struct qstr qname;
684 ino_t ino = 0;
685 unsigned type = DT_UNKNOWN;
77b14db5
EB
686
687 qname.name = table->procname;
688 qname.len = strlen(table->procname);
8387ff25 689 qname.hash = full_name_hash(dir, qname.name, qname.len);
77b14db5 690
77b14db5
EB
691 child = d_lookup(dir, &qname);
692 if (!child) {
76aab3ab
AV
693 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
694 child = d_alloc_parallel(dir, &qname, &wq);
695 if (IS_ERR(child))
696 return false;
697 if (d_in_lookup(child)) {
888e2b03 698 struct dentry *res;
9043476f 699 inode = proc_sys_make_inode(dir->d_sb, head, table);
ea5751cc 700 if (IS_ERR(inode)) {
76aab3ab 701 d_lookup_done(child);
9043476f 702 dput(child);
f0c3b509 703 return false;
77b14db5 704 }
76aab3ab 705 d_set_d_op(child, &proc_sys_dentry_operations);
888e2b03
AV
706 res = d_splice_alias(inode, child);
707 d_lookup_done(child);
708 if (unlikely(res)) {
709 if (IS_ERR(res)) {
710 dput(child);
711 return false;
712 }
713 dput(child);
714 child = res;
715 }
77b14db5
EB
716 }
717 }
2b0143b5 718 inode = d_inode(child);
9043476f
AV
719 ino = inode->i_ino;
720 type = inode->i_mode >> 12;
77b14db5 721 dput(child);
f0c3b509 722 return dir_emit(ctx, qname.name, qname.len, ino, type);
9043476f
AV
723}
724
f0c3b509
AV
725static bool proc_sys_link_fill_cache(struct file *file,
726 struct dir_context *ctx,
0e47c99d
EB
727 struct ctl_table_header *head,
728 struct ctl_table *table)
729{
f0c3b509 730 bool ret = true;
a0b0d1c3 731
0e47c99d 732 head = sysctl_head_grab(head);
a0b0d1c3
DK
733 if (IS_ERR(head))
734 return false;
0e47c99d 735
835b94e0
DK
736 /* It is not an error if we can not follow the link ignore it */
737 if (sysctl_follow_link(&head, &table))
738 goto out;
0e47c99d 739
f0c3b509 740 ret = proc_sys_fill_cache(file, ctx, head, table);
0e47c99d
EB
741out:
742 sysctl_head_finish(head);
743 return ret;
744}
745
e5eea098 746static int scan(struct ctl_table_header *head, struct ctl_table *table,
9043476f 747 unsigned long *pos, struct file *file,
f0c3b509 748 struct dir_context *ctx)
9043476f 749{
f0c3b509 750 bool res;
9043476f 751
f0c3b509
AV
752 if ((*pos)++ < ctx->pos)
753 return true;
9043476f 754
0e47c99d 755 if (unlikely(S_ISLNK(table->mode)))
f0c3b509 756 res = proc_sys_link_fill_cache(file, ctx, head, table);
0e47c99d 757 else
f0c3b509 758 res = proc_sys_fill_cache(file, ctx, head, table);
9043476f 759
f0c3b509
AV
760 if (res)
761 ctx->pos = *pos;
9043476f 762
6a75ce16 763 return res;
77b14db5
EB
764}
765
f0c3b509 766static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
77b14db5 767{
f0c3b509 768 struct ctl_table_header *head = grab_header(file_inode(file));
9043476f 769 struct ctl_table_header *h = NULL;
6a75ce16 770 struct ctl_table *entry;
7ec66d06 771 struct ctl_dir *ctl_dir;
77b14db5 772 unsigned long pos;
9043476f
AV
773
774 if (IS_ERR(head))
775 return PTR_ERR(head);
77b14db5 776
7ec66d06 777 ctl_dir = container_of(head, struct ctl_dir, header);
77b14db5 778
f0c3b509 779 if (!dir_emit_dots(file, ctx))
93362fa4 780 goto out;
f0c3b509 781
77b14db5
EB
782 pos = 2;
783
7ec66d06 784 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
f0c3b509 785 if (!scan(h, entry, &pos, file, ctx)) {
9043476f
AV
786 sysctl_head_finish(h);
787 break;
77b14db5
EB
788 }
789 }
93362fa4 790out:
77b14db5 791 sysctl_head_finish(head);
f0c3b509 792 return 0;
77b14db5
EB
793}
794
4609e1f1 795static int proc_sys_permission(struct mnt_idmap *idmap,
549c7297 796 struct inode *inode, int mask)
77b14db5
EB
797{
798 /*
799 * sysctl entries that are not writeable,
800 * are _NOT_ writeable, capabilities or not.
801 */
f696a365
MS
802 struct ctl_table_header *head;
803 struct ctl_table *table;
77b14db5
EB
804 int error;
805
f696a365
MS
806 /* Executable files are not allowed under /proc/sys/ */
807 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
808 return -EACCES;
809
810 head = grab_header(inode);
9043476f
AV
811 if (IS_ERR(head))
812 return PTR_ERR(head);
77b14db5 813
f696a365 814 table = PROC_I(inode)->sysctl_entry;
9043476f
AV
815 if (!table) /* global root - r-xr-xr-x */
816 error = mask & MAY_WRITE ? -EACCES : 0;
817 else /* Use the permissions on the sysctl table entry */
73f7ef43 818 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
77b14db5 819
77b14db5
EB
820 sysctl_head_finish(head);
821 return error;
822}
823
c1632a0f 824static int proc_sys_setattr(struct mnt_idmap *idmap,
549c7297 825 struct dentry *dentry, struct iattr *attr)
77b14db5 826{
2b0143b5 827 struct inode *inode = d_inode(dentry);
77b14db5
EB
828 int error;
829
830 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
831 return -EPERM;
832
c1632a0f 833 error = setattr_prepare(&nop_mnt_idmap, dentry, attr);
1025774c
CH
834 if (error)
835 return error;
836
c1632a0f 837 setattr_copy(&nop_mnt_idmap, inode, attr);
1025774c 838 return 0;
77b14db5
EB
839}
840
b74d24f7 841static int proc_sys_getattr(struct mnt_idmap *idmap,
549c7297 842 const struct path *path, struct kstat *stat,
a528d35e 843 u32 request_mask, unsigned int query_flags)
9043476f 844{
a528d35e 845 struct inode *inode = d_inode(path->dentry);
9043476f
AV
846 struct ctl_table_header *head = grab_header(inode);
847 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
848
849 if (IS_ERR(head))
850 return PTR_ERR(head);
851
b74d24f7 852 generic_fillattr(&nop_mnt_idmap, inode, stat);
9043476f
AV
853 if (table)
854 stat->mode = (stat->mode & S_IFMT) | table->mode;
855
856 sysctl_head_finish(head);
857 return 0;
858}
859
77b14db5 860static const struct file_operations proc_sys_file_operations = {
f1ecf068
LDM
861 .open = proc_sys_open,
862 .poll = proc_sys_poll,
4bd6a735
MWO
863 .read_iter = proc_sys_read,
864 .write_iter = proc_sys_write,
b0072734 865 .splice_read = copy_splice_read,
4bd6a735 866 .splice_write = iter_file_splice_write,
6038f373 867 .llseek = default_llseek,
9043476f
AV
868};
869
870static const struct file_operations proc_sys_dir_file_operations = {
887df078 871 .read = generic_read_dir,
f50752ea 872 .iterate_shared = proc_sys_readdir,
3222a3e5 873 .llseek = generic_file_llseek,
77b14db5
EB
874};
875
03a44825 876static const struct inode_operations proc_sys_inode_operations = {
9043476f
AV
877 .permission = proc_sys_permission,
878 .setattr = proc_sys_setattr,
879 .getattr = proc_sys_getattr,
880};
881
882static const struct inode_operations proc_sys_dir_operations = {
77b14db5
EB
883 .lookup = proc_sys_lookup,
884 .permission = proc_sys_permission,
885 .setattr = proc_sys_setattr,
9043476f 886 .getattr = proc_sys_getattr,
77b14db5
EB
887};
888
0b728e19 889static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
77b14db5 890{
0b728e19 891 if (flags & LOOKUP_RCU)
34286d66 892 return -ECHILD;
2b0143b5 893 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
9043476f
AV
894}
895
fe15ce44 896static int proc_sys_delete(const struct dentry *dentry)
9043476f 897{
2b0143b5 898 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
9043476f
AV
899}
900
1f87f0b5
EB
901static int sysctl_is_seen(struct ctl_table_header *p)
902{
903 struct ctl_table_set *set = p->set;
904 int res;
905 spin_lock(&sysctl_lock);
906 if (p->unregistering)
907 res = 0;
908 else if (!set->is_seen)
909 res = 1;
910 else
911 res = set->is_seen(set);
912 spin_unlock(&sysctl_lock);
913 return res;
914}
915
6fa67e70 916static int proc_sys_compare(const struct dentry *dentry,
621e155a 917 unsigned int len, const char *str, const struct qstr *name)
9043476f 918{
dfef6dcd 919 struct ctl_table_header *head;
da53be12
LT
920 struct inode *inode;
921
31e6b01f
NP
922 /* Although proc doesn't have negative dentries, rcu-walk means
923 * that inode here can be NULL */
dfef6dcd 924 /* AV: can it, indeed? */
2b0143b5 925 inode = d_inode_rcu(dentry);
31e6b01f 926 if (!inode)
dfef6dcd 927 return 1;
621e155a 928 if (name->len != len)
9043476f 929 return 1;
621e155a 930 if (memcmp(name->name, str, len))
9043476f 931 return 1;
dfef6dcd
AV
932 head = rcu_dereference(PROC_I(inode)->sysctl);
933 return !head || !sysctl_is_seen(head);
77b14db5
EB
934}
935
d72f71eb 936static const struct dentry_operations proc_sys_dentry_operations = {
77b14db5 937 .d_revalidate = proc_sys_revalidate,
9043476f
AV
938 .d_delete = proc_sys_delete,
939 .d_compare = proc_sys_compare,
77b14db5
EB
940};
941
0e47c99d
EB
942static struct ctl_dir *find_subdir(struct ctl_dir *dir,
943 const char *name, int namelen)
1f87f0b5 944{
7ec66d06
EB
945 struct ctl_table_header *head;
946 struct ctl_table *entry;
1f87f0b5 947
0e47c99d 948 entry = find_entry(&head, dir, name, namelen);
7ec66d06
EB
949 if (!entry)
950 return ERR_PTR(-ENOENT);
51f72f4a
EB
951 if (!S_ISDIR(entry->mode))
952 return ERR_PTR(-ENOTDIR);
953 return container_of(head, struct ctl_dir, header);
7ec66d06
EB
954}
955
956static struct ctl_dir *new_dir(struct ctl_table_set *set,
0e47c99d 957 const char *name, int namelen)
7ec66d06
EB
958{
959 struct ctl_table *table;
960 struct ctl_dir *new;
ac13ac6f 961 struct ctl_node *node;
7ec66d06 962 char *new_name;
1f87f0b5 963
ac13ac6f
EB
964 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
965 sizeof(struct ctl_table)*2 + namelen + 1,
966 GFP_KERNEL);
7ec66d06 967 if (!new)
1f87f0b5
EB
968 return NULL;
969
ac13ac6f
EB
970 node = (struct ctl_node *)(new + 1);
971 table = (struct ctl_table *)(node + 1);
7ec66d06
EB
972 new_name = (char *)(table + 2);
973 memcpy(new_name, name, namelen);
7ec66d06
EB
974 table[0].procname = new_name;
975 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
ac13ac6f 976 init_header(&new->header, set->dir.header.root, set, node, table);
7ec66d06
EB
977
978 return new;
1f87f0b5
EB
979}
980
60f126d9
EB
981/**
982 * get_subdir - find or create a subdir with the specified name.
983 * @dir: Directory to create the subdirectory in
984 * @name: The name of the subdirectory to find or create
985 * @namelen: The length of name
986 *
987 * Takes a directory with an elevated reference count so we know that
988 * if we drop the lock the directory will not go away. Upon success
989 * the reference is moved from @dir to the returned subdirectory.
990 * Upon error an error code is returned and the reference on @dir is
991 * simply dropped.
992 */
0e47c99d
EB
993static struct ctl_dir *get_subdir(struct ctl_dir *dir,
994 const char *name, int namelen)
1f87f0b5 995{
0e47c99d 996 struct ctl_table_set *set = dir->header.set;
7ec66d06 997 struct ctl_dir *subdir, *new = NULL;
0eb97f38 998 int err;
1f87f0b5 999
7ec66d06 1000 spin_lock(&sysctl_lock);
0e47c99d 1001 subdir = find_subdir(dir, name, namelen);
7ec66d06
EB
1002 if (!IS_ERR(subdir))
1003 goto found;
1004 if (PTR_ERR(subdir) != -ENOENT)
1005 goto failed;
1006
1007 spin_unlock(&sysctl_lock);
1008 new = new_dir(set, name, namelen);
1009 spin_lock(&sysctl_lock);
1010 subdir = ERR_PTR(-ENOMEM);
1011 if (!new)
1012 goto failed;
1013
60f126d9 1014 /* Was the subdir added while we dropped the lock? */
0e47c99d 1015 subdir = find_subdir(dir, name, namelen);
7ec66d06
EB
1016 if (!IS_ERR(subdir))
1017 goto found;
1018 if (PTR_ERR(subdir) != -ENOENT)
1019 goto failed;
1020
60f126d9 1021 /* Nope. Use the our freshly made directory entry. */
0eb97f38
EB
1022 err = insert_header(dir, &new->header);
1023 subdir = ERR_PTR(err);
1024 if (err)
0e47c99d 1025 goto failed;
7ec66d06
EB
1026 subdir = new;
1027found:
1028 subdir->header.nreg++;
1029failed:
a1c83681 1030 if (IS_ERR(subdir)) {
87ebdc00 1031 pr_err("sysctl could not get directory: ");
6980128f 1032 sysctl_print_dir(dir);
153ee1c4
GU
1033 pr_cont("%*.*s %ld\n", namelen, namelen, name,
1034 PTR_ERR(subdir));
1f87f0b5 1035 }
7ec66d06
EB
1036 drop_sysctl_table(&dir->header);
1037 if (new)
1038 drop_sysctl_table(&new->header);
1039 spin_unlock(&sysctl_lock);
1040 return subdir;
1f87f0b5
EB
1041}
1042
0e47c99d
EB
1043static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1044{
1045 struct ctl_dir *parent;
1046 const char *procname;
1047 if (!dir->header.parent)
1048 return &set->dir;
1049 parent = xlate_dir(set, dir->header.parent);
1050 if (IS_ERR(parent))
1051 return parent;
1052 procname = dir->header.ctl_table[0].procname;
1053 return find_subdir(parent, procname, strlen(procname));
1054}
1055
1056static int sysctl_follow_link(struct ctl_table_header **phead,
13bcc6a2 1057 struct ctl_table **pentry)
0e47c99d
EB
1058{
1059 struct ctl_table_header *head;
1060 struct ctl_table_root *root;
1061 struct ctl_table_set *set;
1062 struct ctl_table *entry;
1063 struct ctl_dir *dir;
1064 int ret;
1065
0e47c99d
EB
1066 spin_lock(&sysctl_lock);
1067 root = (*pentry)->data;
13bcc6a2 1068 set = lookup_header_set(root);
0e47c99d
EB
1069 dir = xlate_dir(set, (*phead)->parent);
1070 if (IS_ERR(dir))
1071 ret = PTR_ERR(dir);
1072 else {
1073 const char *procname = (*pentry)->procname;
1074 head = NULL;
1075 entry = find_entry(&head, dir, procname, strlen(procname));
1076 ret = -ENOENT;
1077 if (entry && use_table(head)) {
1078 unuse_table(*phead);
1079 *phead = head;
1080 *pentry = entry;
1081 ret = 0;
1082 }
1083 }
1084
1085 spin_unlock(&sysctl_lock);
1086 return ret;
1087}
1088
7c60c48f 1089static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1f87f0b5 1090{
7c60c48f
EB
1091 struct va_format vaf;
1092 va_list args;
1f87f0b5 1093
7c60c48f
EB
1094 va_start(args, fmt);
1095 vaf.fmt = fmt;
1096 vaf.va = &args;
1097
87ebdc00
AM
1098 pr_err("sysctl table check failed: %s/%s %pV\n",
1099 path, table->procname, &vaf);
1f87f0b5 1100
7c60c48f
EB
1101 va_end(args);
1102 return -EINVAL;
1f87f0b5
EB
1103}
1104
4f2fec00
LR
1105static int sysctl_check_table_array(const char *path, struct ctl_table *table)
1106{
1107 int err = 0;
1108
61d9b56a
LR
1109 if ((table->proc_handler == proc_douintvec) ||
1110 (table->proc_handler == proc_douintvec_minmax)) {
4f2fec00 1111 if (table->maxlen != sizeof(unsigned int))
64a11f3d 1112 err |= sysctl_err(path, table, "array not allowed");
4f2fec00
LR
1113 }
1114
cb944413
ED
1115 if (table->proc_handler == proc_dou8vec_minmax) {
1116 if (table->maxlen != sizeof(u8))
1117 err |= sysctl_err(path, table, "array not allowed");
1118 }
1119
f1aa2eb5
OM
1120 if (table->proc_handler == proc_dobool) {
1121 if (table->maxlen != sizeof(bool))
1122 err |= sysctl_err(path, table, "array not allowed");
1123 }
1124
4f2fec00
LR
1125 return err;
1126}
1127
7c60c48f 1128static int sysctl_check_table(const char *path, struct ctl_table *table)
1f87f0b5 1129{
cb55f27a 1130 struct ctl_table *entry;
7c60c48f 1131 int err = 0;
cb55f27a 1132 list_for_each_table_entry(entry, table) {
cb55f27a 1133 if ((entry->proc_handler == proc_dostring) ||
f1aa2eb5 1134 (entry->proc_handler == proc_dobool) ||
cb55f27a
MT
1135 (entry->proc_handler == proc_dointvec) ||
1136 (entry->proc_handler == proc_douintvec) ||
1137 (entry->proc_handler == proc_douintvec_minmax) ||
1138 (entry->proc_handler == proc_dointvec_minmax) ||
1139 (entry->proc_handler == proc_dou8vec_minmax) ||
1140 (entry->proc_handler == proc_dointvec_jiffies) ||
1141 (entry->proc_handler == proc_dointvec_userhz_jiffies) ||
1142 (entry->proc_handler == proc_dointvec_ms_jiffies) ||
1143 (entry->proc_handler == proc_doulongvec_minmax) ||
1144 (entry->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1145 if (!entry->data)
1146 err |= sysctl_err(path, entry, "No data");
1147 if (!entry->maxlen)
1148 err |= sysctl_err(path, entry, "No maxlen");
4f2fec00 1149 else
cb55f27a 1150 err |= sysctl_check_table_array(path, entry);
7c60c48f 1151 }
cb55f27a
MT
1152 if (!entry->proc_handler)
1153 err |= sysctl_err(path, entry, "No proc_handler");
7c60c48f 1154
cb55f27a
MT
1155 if ((entry->mode & (S_IRUGO|S_IWUGO)) != entry->mode)
1156 err |= sysctl_err(path, entry, "bogus .mode 0%o",
1157 entry->mode);
1f87f0b5 1158 }
7c60c48f 1159 return err;
1f87f0b5 1160}
1f87f0b5 1161
0e47c99d
EB
1162static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1163 struct ctl_table_root *link_root)
1164{
1165 struct ctl_table *link_table, *entry, *link;
1166 struct ctl_table_header *links;
ac13ac6f 1167 struct ctl_node *node;
0e47c99d
EB
1168 char *link_name;
1169 int nr_entries, name_bytes;
1170
1171 name_bytes = 0;
1172 nr_entries = 0;
cb55f27a 1173 list_for_each_table_entry(entry, table) {
0e47c99d
EB
1174 nr_entries++;
1175 name_bytes += strlen(entry->procname) + 1;
1176 }
1177
1178 links = kzalloc(sizeof(struct ctl_table_header) +
ac13ac6f 1179 sizeof(struct ctl_node)*nr_entries +
0e47c99d
EB
1180 sizeof(struct ctl_table)*(nr_entries + 1) +
1181 name_bytes,
1182 GFP_KERNEL);
1183
1184 if (!links)
1185 return NULL;
1186
ac13ac6f
EB
1187 node = (struct ctl_node *)(links + 1);
1188 link_table = (struct ctl_table *)(node + nr_entries);
0e47c99d 1189 link_name = (char *)&link_table[nr_entries + 1];
cb55f27a 1190 link = link_table;
0e47c99d 1191
cb55f27a 1192 list_for_each_table_entry(entry, table) {
0e47c99d
EB
1193 int len = strlen(entry->procname) + 1;
1194 memcpy(link_name, entry->procname, len);
1195 link->procname = link_name;
1196 link->mode = S_IFLNK|S_IRWXUGO;
1197 link->data = link_root;
1198 link_name += len;
cb55f27a 1199 link++;
0e47c99d 1200 }
ac13ac6f 1201 init_header(links, dir->header.root, dir->header.set, node, link_table);
0e47c99d
EB
1202 links->nreg = nr_entries;
1203
1204 return links;
1205}
1206
1207static bool get_links(struct ctl_dir *dir,
1208 struct ctl_table *table, struct ctl_table_root *link_root)
1209{
1210 struct ctl_table_header *head;
1211 struct ctl_table *entry, *link;
1212
1213 /* Are there links available for every entry in table? */
cb55f27a 1214 list_for_each_table_entry(entry, table) {
0e47c99d
EB
1215 const char *procname = entry->procname;
1216 link = find_entry(&head, dir, procname, strlen(procname));
1217 if (!link)
1218 return false;
1219 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1220 continue;
1221 if (S_ISLNK(link->mode) && (link->data == link_root))
1222 continue;
1223 return false;
1224 }
1225
1226 /* The checks passed. Increase the registration count on the links */
cb55f27a 1227 list_for_each_table_entry(entry, table) {
0e47c99d
EB
1228 const char *procname = entry->procname;
1229 link = find_entry(&head, dir, procname, strlen(procname));
1230 head->nreg++;
1231 }
1232 return true;
1233}
1234
1235static int insert_links(struct ctl_table_header *head)
1236{
1237 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
9a521359 1238 struct ctl_dir *core_parent;
0e47c99d
EB
1239 struct ctl_table_header *links;
1240 int err;
1241
1242 if (head->set == root_set)
1243 return 0;
1244
1245 core_parent = xlate_dir(root_set, head->parent);
1246 if (IS_ERR(core_parent))
1247 return 0;
1248
1249 if (get_links(core_parent, head->ctl_table, head->root))
1250 return 0;
1251
1252 core_parent->header.nreg++;
1253 spin_unlock(&sysctl_lock);
1254
1255 links = new_links(core_parent, head->ctl_table, head->root);
1256
1257 spin_lock(&sysctl_lock);
1258 err = -ENOMEM;
1259 if (!links)
1260 goto out;
1261
1262 err = 0;
1263 if (get_links(core_parent, head->ctl_table, head->root)) {
1264 kfree(links);
1265 goto out;
1266 }
1267
1268 err = insert_header(core_parent, links);
1269 if (err)
1270 kfree(links);
1271out:
1272 drop_sysctl_table(&core_parent->header);
1273 return err;
1274}
1275
b2f56e55
LC
1276/* Find the directory for the ctl_table. If one is not found create it. */
1277static struct ctl_dir *sysctl_mkdir_p(struct ctl_dir *dir, const char *path)
1278{
1279 const char *name, *nextname;
1280
1281 for (name = path; name; name = nextname) {
1282 int namelen;
1283 nextname = strchr(name, '/');
1284 if (nextname) {
1285 namelen = nextname - name;
1286 nextname++;
1287 } else {
1288 namelen = strlen(name);
1289 }
1290 if (namelen == 0)
1291 continue;
1292
1293 /*
1294 * namelen ensures if name is "foo/bar/yay" only foo is
1295 * registered first. We traverse as if using mkdir -p and
1296 * return a ctl_dir for the last directory entry.
1297 */
1298 dir = get_subdir(dir, name, namelen);
1299 if (IS_ERR(dir))
1300 break;
1301 }
1302 return dir;
1303}
1304
1f87f0b5 1305/**
f728019b 1306 * __register_sysctl_table - register a leaf sysctl table
60a47a2e 1307 * @set: Sysctl tree to register on
1f87f0b5 1308 * @path: The path to the directory the sysctl table is in.
1dc8689e
LC
1309 * @table: the top-level table structure without any child. This table
1310 * should not be free'd after registration. So it should not be
1311 * used on stack. It can either be a global or dynamically allocated
1312 * by the caller and free'd later after sysctl unregistration.
1f87f0b5
EB
1313 *
1314 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1315 * array. A completely 0 filled entry terminates the table.
1316 *
1317 * The members of the &struct ctl_table structure are used as follows:
1318 *
1319 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1320 * enter a sysctl file
1321 *
1322 * data - a pointer to data for use by proc_handler
1323 *
1324 * maxlen - the maximum size in bytes of the data
1325 *
f728019b 1326 * mode - the file permissions for the /proc/sys file
1f87f0b5 1327 *
f728019b 1328 * child - must be %NULL.
1f87f0b5
EB
1329 *
1330 * proc_handler - the text handler routine (described below)
1331 *
1f87f0b5 1332 * extra1, extra2 - extra pointers usable by the proc handler routines
67ff3228
LC
1333 * XXX: we should eventually modify these to use long min / max [0]
1334 * [0] https://lkml.kernel.org/87zgpte9o4.fsf@email.froward.int.ebiederm.org
1f87f0b5
EB
1335 *
1336 * Leaf nodes in the sysctl tree will be represented by a single file
67ff3228
LC
1337 * under /proc; non-leaf nodes (where child is not NULL) are not allowed,
1338 * sysctl_check_table() verifies this.
1f87f0b5 1339 *
f728019b
EB
1340 * There must be a proc_handler routine for any terminal nodes.
1341 * Several default handlers are available to cover common cases -
1f87f0b5
EB
1342 *
1343 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1344 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1345 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1346 *
1347 * It is the handler's job to read the input buffer from user memory
1348 * and process it. The handler should return 0 on success.
1349 *
1350 * This routine returns %NULL on a failure to register, and a pointer
1351 * to the table header on success.
1352 */
6e9d5164 1353struct ctl_table_header *__register_sysctl_table(
60a47a2e 1354 struct ctl_table_set *set,
6e9d5164 1355 const char *path, struct ctl_table *table)
1f87f0b5 1356{
60a47a2e 1357 struct ctl_table_root *root = set->dir.header.root;
1f87f0b5 1358 struct ctl_table_header *header;
7ec66d06 1359 struct ctl_dir *dir;
ac13ac6f
EB
1360 struct ctl_table *entry;
1361 struct ctl_node *node;
1362 int nr_entries = 0;
1363
cb55f27a 1364 list_for_each_table_entry(entry, table)
ac13ac6f 1365 nr_entries++;
1f87f0b5 1366
ac13ac6f 1367 header = kzalloc(sizeof(struct ctl_table_header) +
425b9c7f 1368 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL_ACCOUNT);
1f87f0b5
EB
1369 if (!header)
1370 return NULL;
1371
ac13ac6f
EB
1372 node = (struct ctl_node *)(header + 1);
1373 init_header(header, root, set, node, table);
7ec66d06
EB
1374 if (sysctl_check_table(path, table))
1375 goto fail;
1376
1377 spin_lock(&sysctl_lock);
0e47c99d 1378 dir = &set->dir;
67ff3228 1379 /* Reference moved down the directory tree get_subdir */
7ec66d06
EB
1380 dir->header.nreg++;
1381 spin_unlock(&sysctl_lock);
1f87f0b5 1382
b2f56e55
LC
1383 dir = sysctl_mkdir_p(dir, path);
1384 if (IS_ERR(dir))
1385 goto fail;
1f87f0b5 1386 spin_lock(&sysctl_lock);
0e47c99d 1387 if (insert_header(dir, header))
7ec66d06 1388 goto fail_put_dir_locked;
0e47c99d 1389
7ec66d06 1390 drop_sysctl_table(&dir->header);
1f87f0b5
EB
1391 spin_unlock(&sysctl_lock);
1392
1393 return header;
0e47c99d 1394
7ec66d06
EB
1395fail_put_dir_locked:
1396 drop_sysctl_table(&dir->header);
7c60c48f
EB
1397 spin_unlock(&sysctl_lock);
1398fail:
1399 kfree(header);
7c60c48f 1400 return NULL;
1f87f0b5
EB
1401}
1402
fea478d4
EB
1403/**
1404 * register_sysctl - register a sysctl table
1dc8689e
LC
1405 * @path: The path to the directory the sysctl table is in. If the path
1406 * doesn't exist we will create it for you.
1407 * @table: the table structure. The calller must ensure the life of the @table
1408 * will be kept during the lifetime use of the syctl. It must not be freed
1409 * until unregister_sysctl_table() is called with the given returned table
1410 * with this registration. If your code is non modular then you don't need
1411 * to call unregister_sysctl_table() and can instead use something like
1412 * register_sysctl_init() which does not care for the result of the syctl
1413 * registration.
fea478d4
EB
1414 *
1415 * Register a sysctl table. @table should be a filled in ctl_table
1416 * array. A completely 0 filled entry terminates the table.
1417 *
1418 * See __register_sysctl_table for more details.
1419 */
1420struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1421{
1422 return __register_sysctl_table(&sysctl_table_root.default_set,
1423 path, table);
1424}
1425EXPORT_SYMBOL(register_sysctl);
1426
3ddd9a80
XN
1427/**
1428 * __register_sysctl_init() - register sysctl table to path
1dc8689e
LC
1429 * @path: path name for sysctl base. If that path doesn't exist we will create
1430 * it for you.
1431 * @table: This is the sysctl table that needs to be registered to the path.
1432 * The caller must ensure the life of the @table will be kept during the
1433 * lifetime use of the sysctl.
3ddd9a80
XN
1434 * @table_name: The name of sysctl table, only used for log printing when
1435 * registration fails
1436 *
1437 * The sysctl interface is used by userspace to query or modify at runtime
1438 * a predefined value set on a variable. These variables however have default
1439 * values pre-set. Code which depends on these variables will always work even
1440 * if register_sysctl() fails. If register_sysctl() fails you'd just loose the
1441 * ability to query or modify the sysctls dynamically at run time. Chances of
1442 * register_sysctl() failing on init are extremely low, and so for both reasons
1443 * this function does not return any error as it is used by initialization code.
1444 *
228b09de 1445 * Context: if your base directory does not exist it will be created for you.
3ddd9a80
XN
1446 */
1447void __init __register_sysctl_init(const char *path, struct ctl_table *table,
1448 const char *table_name)
1449{
1450 struct ctl_table_header *hdr = register_sysctl(path, table);
1451
1452 if (unlikely(!hdr)) {
1453 pr_err("failed when register_sysctl %s to %s\n", table_name, path);
1454 return;
1455 }
1456 kmemleak_not_leak(hdr);
1457}
1458
0e47c99d
EB
1459static void put_links(struct ctl_table_header *header)
1460{
1461 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1462 struct ctl_table_root *root = header->root;
1463 struct ctl_dir *parent = header->parent;
1464 struct ctl_dir *core_parent;
1465 struct ctl_table *entry;
1466
1467 if (header->set == root_set)
1468 return;
1469
1470 core_parent = xlate_dir(root_set, parent);
1471 if (IS_ERR(core_parent))
1472 return;
1473
cb55f27a 1474 list_for_each_table_entry(entry, header->ctl_table) {
0e47c99d
EB
1475 struct ctl_table_header *link_head;
1476 struct ctl_table *link;
1477 const char *name = entry->procname;
1478
1479 link = find_entry(&link_head, core_parent, name, strlen(name));
1480 if (link &&
1481 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1482 (S_ISLNK(link->mode) && (link->data == root)))) {
1483 drop_sysctl_table(link_head);
1484 }
1485 else {
87ebdc00 1486 pr_err("sysctl link missing during unregister: ");
0e47c99d 1487 sysctl_print_dir(parent);
153ee1c4 1488 pr_cont("%s\n", name);
0e47c99d
EB
1489 }
1490 }
1491}
1492
938aaa4f
EB
1493static void drop_sysctl_table(struct ctl_table_header *header)
1494{
7ec66d06
EB
1495 struct ctl_dir *parent = header->parent;
1496
938aaa4f
EB
1497 if (--header->nreg)
1498 return;
1499
89189557 1500 if (parent) {
23da9588 1501 put_links(header);
89189557
Y
1502 start_unregistering(header);
1503 }
1504
938aaa4f
EB
1505 if (!--header->count)
1506 kfree_rcu(header, rcu);
7ec66d06
EB
1507
1508 if (parent)
1509 drop_sysctl_table(&parent->header);
938aaa4f
EB
1510}
1511
1f87f0b5
EB
1512/**
1513 * unregister_sysctl_table - unregister a sysctl table hierarchy
19c4e618 1514 * @header: the header returned from register_sysctl or __register_sysctl_table
1f87f0b5
EB
1515 *
1516 * Unregisters the sysctl table and all children. proc entries may not
1517 * actually be removed until they are no longer used by anyone.
1518 */
1519void unregister_sysctl_table(struct ctl_table_header * header)
1520{
1521 might_sleep();
1522
1523 if (header == NULL)
1524 return;
1525
1526 spin_lock(&sysctl_lock);
938aaa4f 1527 drop_sysctl_table(header);
1f87f0b5
EB
1528 spin_unlock(&sysctl_lock);
1529}
1530EXPORT_SYMBOL(unregister_sysctl_table);
1531
0e47c99d 1532void setup_sysctl_set(struct ctl_table_set *set,
9eb47c26 1533 struct ctl_table_root *root,
1f87f0b5
EB
1534 int (*is_seen)(struct ctl_table_set *))
1535{
1347440d 1536 memset(set, 0, sizeof(*set));
0e47c99d 1537 set->is_seen = is_seen;
ac13ac6f 1538 init_header(&set->dir.header, root, set, NULL, root_table);
1f87f0b5
EB
1539}
1540
97324cd8
EB
1541void retire_sysctl_set(struct ctl_table_set *set)
1542{
ac13ac6f 1543 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
97324cd8 1544}
1f87f0b5 1545
1e0edd3f 1546int __init proc_sys_init(void)
77b14db5 1547{
e1675231
AD
1548 struct proc_dir_entry *proc_sys_root;
1549
77b14db5 1550 proc_sys_root = proc_mkdir("sys", NULL);
9043476f 1551 proc_sys_root->proc_iops = &proc_sys_dir_operations;
d56c0d45 1552 proc_sys_root->proc_dir_ops = &proc_sys_dir_file_operations;
77b14db5 1553 proc_sys_root->nlink = 0;
de4e83bd 1554
d8c0418a 1555 return sysctl_init_bases();
77b14db5 1556}
3db978d4 1557
0a477e1a
VB
1558struct sysctl_alias {
1559 const char *kernel_param;
1560 const char *sysctl_param;
1561};
1562
1563/*
1564 * Historically some settings had both sysctl and a command line parameter.
1565 * With the generic sysctl. parameter support, we can handle them at a single
1566 * place and only keep the historical name for compatibility. This is not meant
1567 * to add brand new aliases. When adding existing aliases, consider whether
1568 * the possibly different moment of changing the value (e.g. from early_param
1569 * to the moment do_sysctl_args() is called) is an issue for the specific
1570 * parameter.
1571 */
1572static const struct sysctl_alias sysctl_aliases[] = {
f117955a
GP
1573 {"hardlockup_all_cpu_backtrace", "kernel.hardlockup_all_cpu_backtrace" },
1574 {"hung_task_panic", "kernel.hung_task_panic" },
1575 {"numa_zonelist_order", "vm.numa_zonelist_order" },
1576 {"softlockup_all_cpu_backtrace", "kernel.softlockup_all_cpu_backtrace" },
1577 {"softlockup_panic", "kernel.softlockup_panic" },
0a477e1a
VB
1578 { }
1579};
1580
1581static const char *sysctl_find_alias(char *param)
1582{
1583 const struct sysctl_alias *alias;
1584
1585 for (alias = &sysctl_aliases[0]; alias->kernel_param != NULL; alias++) {
1586 if (strcmp(alias->kernel_param, param) == 0)
1587 return alias->sysctl_param;
1588 }
1589
1590 return NULL;
1591}
1592
3db978d4
VB
1593/* Set sysctl value passed on kernel command line. */
1594static int process_sysctl_arg(char *param, char *val,
1595 const char *unused, void *arg)
1596{
1597 char *path;
1598 struct vfsmount **proc_mnt = arg;
1599 struct file_system_type *proc_fs_type;
1600 struct file *file;
1601 int len;
1602 int err;
1603 loff_t pos = 0;
1604 ssize_t wret;
1605
0a477e1a
VB
1606 if (strncmp(param, "sysctl", sizeof("sysctl") - 1) == 0) {
1607 param += sizeof("sysctl") - 1;
3db978d4 1608
0a477e1a
VB
1609 if (param[0] != '/' && param[0] != '.')
1610 return 0;
3db978d4 1611
0a477e1a
VB
1612 param++;
1613 } else {
1614 param = (char *) sysctl_find_alias(param);
1615 if (!param)
1616 return 0;
1617 }
3db978d4 1618
697edcb0
XN
1619 if (!val)
1620 return -EINVAL;
1621 len = strlen(val);
1622 if (len == 0)
1623 return -EINVAL;
1624
3db978d4
VB
1625 /*
1626 * To set sysctl options, we use a temporary mount of proc, look up the
1627 * respective sys/ file and write to it. To avoid mounting it when no
1628 * options were given, we mount it only when the first sysctl option is
1629 * found. Why not a persistent mount? There are problems with a
1630 * persistent mount of proc in that it forces userspace not to use any
1631 * proc mount options.
1632 */
1633 if (!*proc_mnt) {
1634 proc_fs_type = get_fs_type("proc");
1635 if (!proc_fs_type) {
1636 pr_err("Failed to find procfs to set sysctl from command line\n");
1637 return 0;
1638 }
1639 *proc_mnt = kern_mount(proc_fs_type);
1640 put_filesystem(proc_fs_type);
1641 if (IS_ERR(*proc_mnt)) {
1642 pr_err("Failed to mount procfs to set sysctl from command line\n");
1643 return 0;
1644 }
1645 }
1646
1647 path = kasprintf(GFP_KERNEL, "sys/%s", param);
1648 if (!path)
1649 panic("%s: Failed to allocate path for %s\n", __func__, param);
1650 strreplace(path, '.', '/');
1651
ffb37ca3 1652 file = file_open_root_mnt(*proc_mnt, path, O_WRONLY, 0);
3db978d4
VB
1653 if (IS_ERR(file)) {
1654 err = PTR_ERR(file);
1655 if (err == -ENOENT)
1656 pr_err("Failed to set sysctl parameter '%s=%s': parameter not found\n",
1657 param, val);
1658 else if (err == -EACCES)
1659 pr_err("Failed to set sysctl parameter '%s=%s': permission denied (read-only?)\n",
1660 param, val);
1661 else
1662 pr_err("Error %pe opening proc file to set sysctl parameter '%s=%s'\n",
1663 file, param, val);
1664 goto out;
1665 }
3db978d4
VB
1666 wret = kernel_write(file, val, len, &pos);
1667 if (wret < 0) {
1668 err = wret;
1669 if (err == -EINVAL)
1670 pr_err("Failed to set sysctl parameter '%s=%s': invalid value\n",
1671 param, val);
1672 else
1673 pr_err("Error %pe writing to proc file to set sysctl parameter '%s=%s'\n",
1674 ERR_PTR(err), param, val);
1675 } else if (wret != len) {
1676 pr_err("Wrote only %zd bytes of %d writing to proc file %s to set sysctl parameter '%s=%s\n",
1677 wret, len, path, param, val);
1678 }
1679
1680 err = filp_close(file, NULL);
1681 if (err)
1682 pr_err("Error %pe closing proc file to set sysctl parameter '%s=%s\n",
1683 ERR_PTR(err), param, val);
1684out:
1685 kfree(path);
1686 return 0;
1687}
1688
1689void do_sysctl_args(void)
1690{
1691 char *command_line;
1692 struct vfsmount *proc_mnt = NULL;
1693
1694 command_line = kstrdup(saved_command_line, GFP_KERNEL);
1695 if (!command_line)
1696 panic("%s: Failed to allocate copy of command line\n", __func__);
1697
1698 parse_args("Setting sysctl args", command_line,
1699 NULL, 0, -1, -1, &proc_mnt, process_sysctl_arg);
1700
1701 if (proc_mnt)
1702 kern_unmount(proc_mnt);
1703
1704 kfree(command_line);
1705}