blob: 2d61e5e8c86306645d8777bc2f72cb4ee2c8c4e8 [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>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080017#include "internal.h"
18
Al Virod72f71e2009-02-20 05:58:47 +000019static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080020static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080021static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040022static const struct file_operations proc_sys_dir_file_operations;
23static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080024
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050025/* Support for permanently empty directories */
26
27struct ctl_table sysctl_mount_point[] = {
28 { }
29};
30
31static bool is_empty_dir(struct ctl_table_header *head)
32{
33 return head->ctl_table[0].child == sysctl_mount_point;
34}
35
36static void set_empty_dir(struct ctl_dir *dir)
37{
38 dir->header.ctl_table[0].child = sysctl_mount_point;
39}
40
41static void clear_empty_dir(struct ctl_dir *dir)
42
43{
44 dir->header.ctl_table[0].child = NULL;
45}
46
Lucas De Marchif1ecf062011-11-02 13:39:22 -070047void proc_sys_poll_notify(struct ctl_table_poll *poll)
48{
49 if (!poll)
50 return;
51
52 atomic_inc(&poll->event);
53 wake_up_interruptible(&poll->wait);
54}
55
Eric W. Biedermana1945582012-01-21 17:51:48 -080056static struct ctl_table root_table[] = {
57 {
58 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080059 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080060 },
61 { }
62};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080063static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080064 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080065 {{.count = 1,
66 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080067 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080068 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080069 .root = &sysctl_table_root,
70 .set = &sysctl_table_root.default_set,
71 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080072};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080073
74static DEFINE_SPINLOCK(sysctl_lock);
75
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080076static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080077static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050078 struct ctl_table **pentry);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080079static int insert_links(struct ctl_table_header *head);
80static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080081
Eric W. Biederman69801282012-01-21 20:09:45 -080082static void sysctl_print_dir(struct ctl_dir *dir)
83{
84 if (dir->header.parent)
85 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080086 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080087}
88
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080089static int namecmp(const char *name1, int len1, const char *name2, int len2)
90{
91 int minlen;
92 int cmp;
93
94 minlen = len1;
95 if (minlen > len2)
96 minlen = len2;
97
98 cmp = memcmp(name1, name2, minlen);
99 if (cmp == 0)
100 cmp = len1 - len2;
101 return cmp;
102}
103
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800104/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800105static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800106 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800107{
108 struct ctl_table_header *head;
109 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800110 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800111
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800112 while (node)
113 {
114 struct ctl_node *ctl_node;
115 const char *procname;
116 int cmp;
117
118 ctl_node = rb_entry(node, struct ctl_node, node);
119 head = ctl_node->header;
120 entry = &head->ctl_table[ctl_node - head->node];
121 procname = entry->procname;
122
123 cmp = namecmp(name, namelen, procname, strlen(procname));
124 if (cmp < 0)
125 node = node->rb_left;
126 else if (cmp > 0)
127 node = node->rb_right;
128 else {
129 *phead = head;
130 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800131 }
132 }
133 return NULL;
134}
135
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800136static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
137{
138 struct rb_node *node = &head->node[entry - head->ctl_table].node;
139 struct rb_node **p = &head->parent->root.rb_node;
140 struct rb_node *parent = NULL;
141 const char *name = entry->procname;
142 int namelen = strlen(name);
143
144 while (*p) {
145 struct ctl_table_header *parent_head;
146 struct ctl_table *parent_entry;
147 struct ctl_node *parent_node;
148 const char *parent_name;
149 int cmp;
150
151 parent = *p;
152 parent_node = rb_entry(parent, struct ctl_node, node);
153 parent_head = parent_node->header;
154 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
155 parent_name = parent_entry->procname;
156
157 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
158 if (cmp < 0)
159 p = &(*p)->rb_left;
160 else if (cmp > 0)
161 p = &(*p)->rb_right;
162 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800163 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800164 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800165 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800166 return -EEXIST;
167 }
168 }
169
170 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700171 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800172 return 0;
173}
174
175static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
176{
177 struct rb_node *node = &head->node[entry - head->ctl_table].node;
178
179 rb_erase(node, &head->parent->root);
180}
181
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800182static void init_header(struct ctl_table_header *head,
183 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800184 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800185{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800186 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800187 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800188 head->used = 0;
189 head->count = 1;
190 head->nreg = 1;
191 head->unregistering = NULL;
192 head->root = root;
193 head->set = set;
194 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800195 head->node = node;
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500196 INIT_HLIST_HEAD(&head->inodes);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800197 if (node) {
198 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700199 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800200 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800201 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800202}
203
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800204static void erase_header(struct ctl_table_header *head)
205{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800206 struct ctl_table *entry;
207 for (entry = head->ctl_table; entry->procname; entry++)
208 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800209}
210
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800211static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800212{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800213 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800214 int err;
215
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500216 /* Is this a permanently empty directory? */
217 if (is_empty_dir(&dir->header))
218 return -EROFS;
219
220 /* Am I creating a permanently empty directory? */
221 if (header->ctl_table == sysctl_mount_point) {
222 if (!RB_EMPTY_ROOT(&dir->root))
223 return -EINVAL;
224 set_empty_dir(dir);
225 }
226
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800227 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800228 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800229 err = insert_links(header);
230 if (err)
231 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800232 for (entry = header->ctl_table; entry->procname; entry++) {
233 err = insert_entry(header, entry);
234 if (err)
235 goto fail;
236 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800237 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800238fail:
239 erase_header(header);
240 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800241fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500242 if (header->ctl_table == sysctl_mount_point)
243 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800244 header->parent = NULL;
245 drop_sysctl_table(&dir->header);
246 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800247}
248
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800249/* called under sysctl_lock */
250static int use_table(struct ctl_table_header *p)
251{
252 if (unlikely(p->unregistering))
253 return 0;
254 p->used++;
255 return 1;
256}
257
258/* called under sysctl_lock */
259static void unuse_table(struct ctl_table_header *p)
260{
261 if (!--p->used)
262 if (unlikely(p->unregistering))
263 complete(p->unregistering);
264}
265
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300266static void proc_sys_prune_dcache(struct ctl_table_header *head)
267{
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500268 struct inode *inode;
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300269 struct proc_inode *ei;
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500270 struct hlist_node *node;
271 struct super_block *sb;
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300272
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300273 rcu_read_lock();
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500274 for (;;) {
275 node = hlist_first_rcu(&head->inodes);
276 if (!node)
277 break;
278 ei = hlist_entry(node, struct proc_inode, sysctl_inodes);
279 spin_lock(&sysctl_lock);
280 hlist_del_init_rcu(&ei->sysctl_inodes);
281 spin_unlock(&sysctl_lock);
282
283 inode = &ei->vfs_inode;
284 sb = inode->i_sb;
285 if (!atomic_inc_not_zero(&sb->s_active))
286 continue;
287 inode = igrab(inode);
288 rcu_read_unlock();
289 if (unlikely(!inode)) {
290 deactivate_super(sb);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300291 rcu_read_lock();
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500292 continue;
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300293 }
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500294
295 d_prune_aliases(inode);
296 iput(inode);
297 deactivate_super(sb);
298
299 rcu_read_lock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300300 }
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300301 rcu_read_unlock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300302}
303
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800304/* called under sysctl_lock, will reacquire if has to wait */
305static void start_unregistering(struct ctl_table_header *p)
306{
307 /*
308 * if p->used is 0, nobody will ever touch that entry again;
309 * we'll eliminate all paths to it before dropping sysctl_lock
310 */
311 if (unlikely(p->used)) {
312 struct completion wait;
313 init_completion(&wait);
314 p->unregistering = &wait;
315 spin_unlock(&sysctl_lock);
316 wait_for_completion(&wait);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800317 } else {
318 /* anything non-NULL; we'll never dereference it */
319 p->unregistering = ERR_PTR(-EINVAL);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300320 spin_unlock(&sysctl_lock);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800321 }
322 /*
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300323 * Prune dentries for unregistered sysctls: namespaced sysctls
324 * can have duplicate names and contaminate dcache very badly.
325 */
326 proc_sys_prune_dcache(p);
327 /*
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800328 * do not remove from the list until nobody holds it; walking the
329 * list in do_sysctl() relies on that.
330 */
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300331 spin_lock(&sysctl_lock);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800332 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800333}
334
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800335static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
336{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700337 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800338 spin_lock(&sysctl_lock);
339 if (!use_table(head))
340 head = ERR_PTR(-ENOENT);
341 spin_unlock(&sysctl_lock);
342 return head;
343}
344
345static void sysctl_head_finish(struct ctl_table_header *head)
346{
347 if (!head)
348 return;
349 spin_lock(&sysctl_lock);
350 unuse_table(head);
351 spin_unlock(&sysctl_lock);
352}
353
354static struct ctl_table_set *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500355lookup_header_set(struct ctl_table_root *root)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800356{
357 struct ctl_table_set *set = &root->default_set;
358 if (root->lookup)
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500359 set = root->lookup(root);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800360 return set;
361}
362
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800363static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800364 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800365 const char *name, int namelen)
366{
367 struct ctl_table_header *head;
368 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800369
370 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800371 entry = find_entry(&head, dir, name, namelen);
372 if (entry && use_table(head))
373 *phead = head;
374 else
375 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800376 spin_unlock(&sysctl_lock);
377 return entry;
378}
379
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800380static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800381{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800382 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800383
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800384 for (;node; node = rb_next(node)) {
385 ctl_node = rb_entry(node, struct ctl_node, node);
386 if (use_table(ctl_node->header))
387 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800388 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800389 return NULL;
390}
391
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800392static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800393 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800394{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800395 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800396 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800397 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800398
399 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800400 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800401 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800402 if (ctl_node) {
403 head = ctl_node->header;
404 entry = &head->ctl_table[ctl_node - head->node];
405 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800406 *phead = head;
407 *pentry = entry;
408}
409
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800410static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800411{
412 struct ctl_table_header *head = *phead;
413 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800414 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800415
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800416 spin_lock(&sysctl_lock);
417 unuse_table(head);
418
419 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
420 spin_unlock(&sysctl_lock);
421 head = NULL;
422 if (ctl_node) {
423 head = ctl_node->header;
424 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800425 }
426 *phead = head;
427 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800428}
429
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800430/*
431 * sysctl_perm does NOT grant the superuser all rights automatically, because
432 * some sysctl variables are readonly even to root.
433 */
434
435static int test_perm(int mode, int op)
436{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800437 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800438 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800439 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800440 mode >>= 3;
441 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
442 return 0;
443 return -EACCES;
444}
445
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000446static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800447{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000448 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800449 int mode;
450
451 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000452 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800453 else
454 mode = table->mode;
455
456 return test_perm(mode, op);
457}
458
Al Viro9043476f2008-07-15 08:54:06 -0400459static struct inode *proc_sys_make_inode(struct super_block *sb,
460 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800461{
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700462 struct ctl_table_root *root = head->root;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800463 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400464 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800465
Al Viro9043476f2008-07-15 08:54:06 -0400466 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800467 if (!inode)
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800468 return ERR_PTR(-ENOMEM);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800469
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400470 inode->i_ino = get_next_ino();
471
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800472 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400473
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300474 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300475 if (unlikely(head->unregistering)) {
476 spin_unlock(&sysctl_lock);
477 iput(inode);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800478 return ERR_PTR(-ENOENT);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300479 }
480 ei->sysctl = head;
481 ei->sysctl_entry = table;
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500482 hlist_add_head_rcu(&ei->sysctl_inodes, &head->inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300483 head->count++;
484 spin_unlock(&sysctl_lock);
485
Deepa Dinamani078cd822016-09-14 07:48:04 -0700486 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400487 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800488 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400489 inode->i_mode |= S_IFREG;
490 inode->i_op = &proc_sys_inode_operations;
491 inode->i_fop = &proc_sys_file_operations;
492 } else {
493 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400494 inode->i_op = &proc_sys_dir_operations;
495 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500496 if (is_empty_dir(head))
497 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400498 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700499
500 if (root->set_ownership)
501 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
502
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800503 return inode;
504}
505
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300506void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
507{
508 spin_lock(&sysctl_lock);
Eric W. Biederman2fd1d2c2017-07-06 08:41:06 -0500509 hlist_del_init_rcu(&PROC_I(inode)->sysctl_inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300510 if (!--head->count)
511 kfree_rcu(head, rcu);
512 spin_unlock(&sysctl_lock);
513}
514
Adrian Bunk81324362008-10-03 00:33:54 +0400515static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800516{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800517 struct ctl_table_header *head = PROC_I(inode)->sysctl;
518 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800519 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800520 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800521}
522
523static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400524 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800525{
Al Viro9043476f2008-07-15 08:54:06 -0400526 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400527 struct ctl_table_header *h = NULL;
Al Virodc12e902016-07-20 22:41:44 -0400528 const struct qstr *name = &dentry->d_name;
Al Viro9043476f2008-07-15 08:54:06 -0400529 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800530 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400531 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800532 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800533 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800534
Al Viro9043476f2008-07-15 08:54:06 -0400535 if (IS_ERR(head))
536 return ERR_CAST(head);
537
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800538 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400539
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800540 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400541 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800542 goto out;
543
Eric W. Biederman4e757322012-01-30 21:24:59 -0800544 if (S_ISLNK(p->mode)) {
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500545 ret = sysctl_follow_link(&h, &p);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800546 err = ERR_PTR(ret);
547 if (ret)
548 goto out;
549 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800550
Al Viro9043476f2008-07-15 08:54:06 -0400551 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800552 if (IS_ERR(inode)) {
553 err = ERR_CAST(inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800554 goto out;
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800555 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800556
Nick Pigginfb045ad2011-01-07 17:49:55 +1100557 d_set_d_op(dentry, &proc_sys_dentry_operations);
Al Viro888e2b02018-05-03 09:45:06 -0400558 err = d_splice_alias(inode, dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800559
560out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700561 if (h)
562 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800563 sysctl_head_finish(head);
564 return err;
565}
566
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700567static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
568 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800569{
Al Viro496ad9a2013-01-23 17:07:38 -0500570 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400571 struct ctl_table_header *head = grab_header(inode);
572 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800573 void *new_buf = NULL;
David Howells2a2da532007-10-25 15:27:40 +0100574 ssize_t error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800575
Al Viro9043476f2008-07-15 08:54:06 -0400576 if (IS_ERR(head))
577 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800578
579 /*
580 * At this point we know that the sysctl was not unregistered
581 * and won't be until we finish.
582 */
583 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000584 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800585 goto out;
586
Al Viro9043476f2008-07-15 08:54:06 -0400587 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
588 error = -EINVAL;
589 if (!table->proc_handler)
590 goto out;
591
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800592 error = BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write, buf, &count,
Andrey Ignatove1550bf2019-03-07 18:50:52 -0800593 ppos, &new_buf);
Andrey Ignatov7b146ce2019-02-27 12:59:24 -0800594 if (error)
595 goto out;
596
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800597 /* careful: calling conventions are nasty here */
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800598 if (new_buf) {
599 mm_segment_t old_fs;
600
601 old_fs = get_fs();
602 set_fs(KERNEL_DS);
603 error = table->proc_handler(table, write, (void __user *)new_buf,
604 &count, ppos);
605 set_fs(old_fs);
606 kfree(new_buf);
607 } else {
608 error = table->proc_handler(table, write, buf, &count, ppos);
609 }
610
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800611 if (!error)
Andrey Ignatov4e63acd2019-03-07 18:38:43 -0800612 error = count;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800613out:
614 sysctl_head_finish(head);
615
616 return error;
617}
618
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700619static ssize_t proc_sys_read(struct file *filp, char __user *buf,
620 size_t count, loff_t *ppos)
621{
622 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
623}
624
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800625static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
626 size_t count, loff_t *ppos)
627{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700628 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800629}
630
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700631static int proc_sys_open(struct inode *inode, struct file *filp)
632{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700633 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700634 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
635
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700636 /* sysctl was unregistered */
637 if (IS_ERR(head))
638 return PTR_ERR(head);
639
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700640 if (table->poll)
641 filp->private_data = proc_sys_poll_event(table->poll);
642
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700643 sysctl_head_finish(head);
644
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700645 return 0;
646}
647
Al Viro076ccb72017-07-03 01:02:18 -0400648static __poll_t proc_sys_poll(struct file *filp, poll_table *wait)
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700649{
Al Viro496ad9a2013-01-23 17:07:38 -0500650 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700651 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700652 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Al Viro076ccb72017-07-03 01:02:18 -0400653 __poll_t ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700654 unsigned long event;
655
656 /* sysctl was unregistered */
657 if (IS_ERR(head))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800658 return EPOLLERR | EPOLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700659
660 if (!table->proc_handler)
661 goto out;
662
663 if (!table->poll)
664 goto out;
665
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700666 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700667 poll_wait(filp, &table->poll->wait, wait);
668
669 if (event != atomic_read(&table->poll->event)) {
670 filp->private_data = proc_sys_poll_event(table->poll);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800671 ret = EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700672 }
673
674out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700675 sysctl_head_finish(head);
676
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700677 return ret;
678}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800679
Al Virof0c3b502013-05-16 12:07:31 -0400680static bool proc_sys_fill_cache(struct file *file,
681 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400682 struct ctl_table_header *head,
683 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800684{
Al Virof0c3b502013-05-16 12:07:31 -0400685 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800686 struct inode *inode;
687 struct qstr qname;
688 ino_t ino = 0;
689 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800690
691 qname.name = table->procname;
692 qname.len = strlen(table->procname);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700693 qname.hash = full_name_hash(dir, qname.name, qname.len);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800694
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800695 child = d_lookup(dir, &qname);
696 if (!child) {
Al Viro76aab3a2016-04-20 16:36:09 -0400697 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
698 child = d_alloc_parallel(dir, &qname, &wq);
699 if (IS_ERR(child))
700 return false;
701 if (d_in_lookup(child)) {
Al Viro888e2b02018-05-03 09:45:06 -0400702 struct dentry *res;
Al Viro9043476f2008-07-15 08:54:06 -0400703 inode = proc_sys_make_inode(dir->d_sb, head, table);
Ivan Delalandeea5751c2018-12-13 15:20:52 -0800704 if (IS_ERR(inode)) {
Al Viro76aab3a2016-04-20 16:36:09 -0400705 d_lookup_done(child);
Al Viro9043476f2008-07-15 08:54:06 -0400706 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400707 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800708 }
Al Viro76aab3a2016-04-20 16:36:09 -0400709 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro888e2b02018-05-03 09:45:06 -0400710 res = d_splice_alias(inode, child);
711 d_lookup_done(child);
712 if (unlikely(res)) {
713 if (IS_ERR(res)) {
714 dput(child);
715 return false;
716 }
717 dput(child);
718 child = res;
719 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800720 }
721 }
David Howells2b0143b2015-03-17 22:25:59 +0000722 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400723 ino = inode->i_ino;
724 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800725 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400726 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400727}
728
Al Virof0c3b502013-05-16 12:07:31 -0400729static bool proc_sys_link_fill_cache(struct file *file,
730 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800731 struct ctl_table_header *head,
732 struct ctl_table *table)
733{
Al Virof0c3b502013-05-16 12:07:31 -0400734 bool ret = true;
Danilo Krummricha0b0d1c2018-04-10 16:31:38 -0700735
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800736 head = sysctl_head_grab(head);
Danilo Krummricha0b0d1c2018-04-10 16:31:38 -0700737 if (IS_ERR(head))
738 return false;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800739
Danilo Krummrich835b94e2018-04-10 16:31:41 -0700740 /* It is not an error if we can not follow the link ignore it */
741 if (sysctl_follow_link(&head, &table))
742 goto out;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800743
Al Virof0c3b502013-05-16 12:07:31 -0400744 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800745out:
746 sysctl_head_finish(head);
747 return ret;
748}
749
Joe Perchese5eea092014-08-08 14:22:16 -0700750static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400751 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400752 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400753{
Al Virof0c3b502013-05-16 12:07:31 -0400754 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400755
Al Virof0c3b502013-05-16 12:07:31 -0400756 if ((*pos)++ < ctx->pos)
757 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400758
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800759 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400760 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800761 else
Al Virof0c3b502013-05-16 12:07:31 -0400762 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400763
Al Virof0c3b502013-05-16 12:07:31 -0400764 if (res)
765 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400766
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800767 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800768}
769
Al Virof0c3b502013-05-16 12:07:31 -0400770static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800771{
Al Virof0c3b502013-05-16 12:07:31 -0400772 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400773 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800774 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800775 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800776 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800777
Al Viro9043476f2008-07-15 08:54:06 -0400778 if (IS_ERR(head))
779 return PTR_ERR(head);
780
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800781 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800782
Al Virof0c3b502013-05-16 12:07:31 -0400783 if (!dir_emit_dots(file, ctx))
Zhou Chengming93362fa2017-01-06 09:32:32 +0800784 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400785
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800786 pos = 2;
787
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800788 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400789 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400790 sysctl_head_finish(h);
791 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800792 }
793 }
Zhou Chengming93362fa2017-01-06 09:32:32 +0800794out:
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800795 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400796 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800797}
798
Al Viro10556cb22011-06-20 19:28:19 -0400799static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800800{
801 /*
802 * sysctl entries that are not writeable,
803 * are _NOT_ writeable, capabilities or not.
804 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200805 struct ctl_table_header *head;
806 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800807 int error;
808
Miklos Szeredif696a362008-07-31 13:41:58 +0200809 /* Executable files are not allowed under /proc/sys/ */
810 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
811 return -EACCES;
812
813 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400814 if (IS_ERR(head))
815 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800816
Miklos Szeredif696a362008-07-31 13:41:58 +0200817 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400818 if (!table) /* global root - r-xr-xr-x */
819 error = mask & MAY_WRITE ? -EACCES : 0;
820 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000821 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800822
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800823 sysctl_head_finish(head);
824 return error;
825}
826
827static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
828{
David Howells2b0143b2015-03-17 22:25:59 +0000829 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800830 int error;
831
832 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
833 return -EPERM;
834
Jan Kara31051c82016-05-26 16:55:18 +0200835 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200836 if (error)
837 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800838
Christoph Hellwig10257742010-06-04 11:30:02 +0200839 setattr_copy(inode, attr);
840 mark_inode_dirty(inode);
841 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800842}
843
David Howellsa528d352017-01-31 16:46:22 +0000844static int proc_sys_getattr(const struct path *path, struct kstat *stat,
845 u32 request_mask, unsigned int query_flags)
Al Viro9043476f2008-07-15 08:54:06 -0400846{
David Howellsa528d352017-01-31 16:46:22 +0000847 struct inode *inode = d_inode(path->dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400848 struct ctl_table_header *head = grab_header(inode);
849 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
850
851 if (IS_ERR(head))
852 return PTR_ERR(head);
853
854 generic_fillattr(inode, stat);
855 if (table)
856 stat->mode = (stat->mode & S_IFMT) | table->mode;
857
858 sysctl_head_finish(head);
859 return 0;
860}
861
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800862static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700863 .open = proc_sys_open,
864 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800865 .read = proc_sys_read,
866 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200867 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400868};
869
870static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700871 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400872 .iterate_shared = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200873 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800874};
875
Jan Engelhardt03a44822008-02-08 04:21:19 -0800876static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400877 .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 = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800883 .lookup = proc_sys_lookup,
884 .permission = proc_sys_permission,
885 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400886 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800887};
888
Al Viro0b728e12012-06-10 16:03:43 -0400889static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800890{
Al Viro0b728e12012-06-10 16:03:43 -0400891 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100892 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000893 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400894}
895
Nick Pigginfe15ce42011-01-07 17:49:23 +1100896static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400897{
David Howells2b0143b2015-03-17 22:25:59 +0000898 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400899}
900
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800901static 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
Al Viro6fa67e72016-07-31 16:37:25 -0400916static int proc_sys_compare(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100917 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400918{
Al Virodfef6dcd32011-03-08 01:25:28 -0500919 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700920 struct inode *inode;
921
Nick Piggin31e6b012011-01-07 17:49:52 +1100922 /* Although proc doesn't have negative dentries, rcu-walk means
923 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500924 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000925 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100926 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500927 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100928 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400929 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100930 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400931 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500932 head = rcu_dereference(PROC_I(inode)->sysctl);
933 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800934}
935
Al Virod72f71e2009-02-20 05:58:47 +0000936static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800937 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400938 .d_delete = proc_sys_delete,
939 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800940};
941
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800942static struct ctl_dir *find_subdir(struct ctl_dir *dir,
943 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800944{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800945 struct ctl_table_header *head;
946 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800947
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800948 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800949 if (!entry)
950 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800951 if (!S_ISDIR(entry->mode))
952 return ERR_PTR(-ENOTDIR);
953 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800954}
955
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800956static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800957 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800958{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800959 struct ctl_table *table;
960 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800961 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800962 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800963
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800964 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
965 sizeof(struct ctl_table)*2 + namelen + 1,
966 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800967 if (!new)
968 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800969
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800970 node = (struct ctl_node *)(new + 1);
971 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800972 new_name = (char *)(table + 2);
973 memcpy(new_name, name, namelen);
974 new_name[namelen] = '\0';
975 table[0].procname = new_name;
976 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800977 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800978
979 return new;
980}
981
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800982/**
983 * get_subdir - find or create a subdir with the specified name.
984 * @dir: Directory to create the subdirectory in
985 * @name: The name of the subdirectory to find or create
986 * @namelen: The length of name
987 *
988 * Takes a directory with an elevated reference count so we know that
989 * if we drop the lock the directory will not go away. Upon success
990 * the reference is moved from @dir to the returned subdirectory.
991 * Upon error an error code is returned and the reference on @dir is
992 * simply dropped.
993 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800994static struct ctl_dir *get_subdir(struct ctl_dir *dir,
995 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800996{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800997 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800998 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800999 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001000
1001 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001002 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001003 if (!IS_ERR(subdir))
1004 goto found;
1005 if (PTR_ERR(subdir) != -ENOENT)
1006 goto failed;
1007
1008 spin_unlock(&sysctl_lock);
1009 new = new_dir(set, name, namelen);
1010 spin_lock(&sysctl_lock);
1011 subdir = ERR_PTR(-ENOMEM);
1012 if (!new)
1013 goto failed;
1014
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001015 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001016 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001017 if (!IS_ERR(subdir))
1018 goto found;
1019 if (PTR_ERR(subdir) != -ENOENT)
1020 goto failed;
1021
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001022 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -08001023 err = insert_header(dir, &new->header);
1024 subdir = ERR_PTR(err);
1025 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001026 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001027 subdir = new;
1028found:
1029 subdir->header.nreg++;
1030failed:
Viresh Kumara1c83682015-08-12 15:59:44 +05301031 if (IS_ERR(subdir)) {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001032 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -08001033 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001034 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001035 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001036 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001037 drop_sysctl_table(&dir->header);
1038 if (new)
1039 drop_sysctl_table(&new->header);
1040 spin_unlock(&sysctl_lock);
1041 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001042}
1043
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001044static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1045{
1046 struct ctl_dir *parent;
1047 const char *procname;
1048 if (!dir->header.parent)
1049 return &set->dir;
1050 parent = xlate_dir(set, dir->header.parent);
1051 if (IS_ERR(parent))
1052 return parent;
1053 procname = dir->header.ctl_table[0].procname;
1054 return find_subdir(parent, procname, strlen(procname));
1055}
1056
1057static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001058 struct ctl_table **pentry)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001059{
1060 struct ctl_table_header *head;
1061 struct ctl_table_root *root;
1062 struct ctl_table_set *set;
1063 struct ctl_table *entry;
1064 struct ctl_dir *dir;
1065 int ret;
1066
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001067 ret = 0;
1068 spin_lock(&sysctl_lock);
1069 root = (*pentry)->data;
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001070 set = lookup_header_set(root);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001071 dir = xlate_dir(set, (*phead)->parent);
1072 if (IS_ERR(dir))
1073 ret = PTR_ERR(dir);
1074 else {
1075 const char *procname = (*pentry)->procname;
1076 head = NULL;
1077 entry = find_entry(&head, dir, procname, strlen(procname));
1078 ret = -ENOENT;
1079 if (entry && use_table(head)) {
1080 unuse_table(*phead);
1081 *phead = head;
1082 *pentry = entry;
1083 ret = 0;
1084 }
1085 }
1086
1087 spin_unlock(&sysctl_lock);
1088 return ret;
1089}
1090
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001091static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1092{
1093 struct va_format vaf;
1094 va_list args;
1095
1096 va_start(args, fmt);
1097 vaf.fmt = fmt;
1098 vaf.va = &args;
1099
Andrew Morton87ebdc02013-02-27 17:03:16 -08001100 pr_err("sysctl table check failed: %s/%s %pV\n",
1101 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001102
1103 va_end(args);
1104 return -EINVAL;
1105}
1106
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001107static int sysctl_check_table_array(const char *path, struct ctl_table *table)
1108{
1109 int err = 0;
1110
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07001111 if ((table->proc_handler == proc_douintvec) ||
1112 (table->proc_handler == proc_douintvec_minmax)) {
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001113 if (table->maxlen != sizeof(unsigned int))
Waiman Long64a11f32018-04-10 16:35:35 -07001114 err |= sysctl_err(path, table, "array not allowed");
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001115 }
1116
1117 return err;
1118}
1119
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001120static int sysctl_check_table(const char *path, struct ctl_table *table)
1121{
1122 int err = 0;
1123 for (; table->procname; table++) {
1124 if (table->child)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001125 err |= sysctl_err(path, table, "Not a file");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001126
1127 if ((table->proc_handler == proc_dostring) ||
1128 (table->proc_handler == proc_dointvec) ||
Liping Zhang1680a382017-04-07 23:51:05 +08001129 (table->proc_handler == proc_douintvec) ||
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07001130 (table->proc_handler == proc_douintvec_minmax) ||
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001131 (table->proc_handler == proc_dointvec_minmax) ||
1132 (table->proc_handler == proc_dointvec_jiffies) ||
1133 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1134 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1135 (table->proc_handler == proc_doulongvec_minmax) ||
1136 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1137 if (!table->data)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001138 err |= sysctl_err(path, table, "No data");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001139 if (!table->maxlen)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001140 err |= sysctl_err(path, table, "No maxlen");
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07001141 else
1142 err |= sysctl_check_table_array(path, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001143 }
1144 if (!table->proc_handler)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001145 err |= sysctl_err(path, table, "No proc_handler");
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001146
1147 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
Luis R. Rodriguez89c5b532017-07-12 14:33:27 -07001148 err |= sysctl_err(path, table, "bogus .mode 0%o",
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001149 table->mode);
1150 }
1151 return err;
1152}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001153
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001154static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1155 struct ctl_table_root *link_root)
1156{
1157 struct ctl_table *link_table, *entry, *link;
1158 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001159 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001160 char *link_name;
1161 int nr_entries, name_bytes;
1162
1163 name_bytes = 0;
1164 nr_entries = 0;
1165 for (entry = table; entry->procname; entry++) {
1166 nr_entries++;
1167 name_bytes += strlen(entry->procname) + 1;
1168 }
1169
1170 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001171 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001172 sizeof(struct ctl_table)*(nr_entries + 1) +
1173 name_bytes,
1174 GFP_KERNEL);
1175
1176 if (!links)
1177 return NULL;
1178
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001179 node = (struct ctl_node *)(links + 1);
1180 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001181 link_name = (char *)&link_table[nr_entries + 1];
1182
1183 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1184 int len = strlen(entry->procname) + 1;
1185 memcpy(link_name, entry->procname, len);
1186 link->procname = link_name;
1187 link->mode = S_IFLNK|S_IRWXUGO;
1188 link->data = link_root;
1189 link_name += len;
1190 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001191 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001192 links->nreg = nr_entries;
1193
1194 return links;
1195}
1196
1197static bool get_links(struct ctl_dir *dir,
1198 struct ctl_table *table, struct ctl_table_root *link_root)
1199{
1200 struct ctl_table_header *head;
1201 struct ctl_table *entry, *link;
1202
1203 /* Are there links available for every entry in table? */
1204 for (entry = table; entry->procname; entry++) {
1205 const char *procname = entry->procname;
1206 link = find_entry(&head, dir, procname, strlen(procname));
1207 if (!link)
1208 return false;
1209 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1210 continue;
1211 if (S_ISLNK(link->mode) && (link->data == link_root))
1212 continue;
1213 return false;
1214 }
1215
1216 /* The checks passed. Increase the registration count on the links */
1217 for (entry = table; entry->procname; entry++) {
1218 const char *procname = entry->procname;
1219 link = find_entry(&head, dir, procname, strlen(procname));
1220 head->nreg++;
1221 }
1222 return true;
1223}
1224
1225static int insert_links(struct ctl_table_header *head)
1226{
1227 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1228 struct ctl_dir *core_parent = NULL;
1229 struct ctl_table_header *links;
1230 int err;
1231
1232 if (head->set == root_set)
1233 return 0;
1234
1235 core_parent = xlate_dir(root_set, head->parent);
1236 if (IS_ERR(core_parent))
1237 return 0;
1238
1239 if (get_links(core_parent, head->ctl_table, head->root))
1240 return 0;
1241
1242 core_parent->header.nreg++;
1243 spin_unlock(&sysctl_lock);
1244
1245 links = new_links(core_parent, head->ctl_table, head->root);
1246
1247 spin_lock(&sysctl_lock);
1248 err = -ENOMEM;
1249 if (!links)
1250 goto out;
1251
1252 err = 0;
1253 if (get_links(core_parent, head->ctl_table, head->root)) {
1254 kfree(links);
1255 goto out;
1256 }
1257
1258 err = insert_header(core_parent, links);
1259 if (err)
1260 kfree(links);
1261out:
1262 drop_sysctl_table(&core_parent->header);
1263 return err;
1264}
1265
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001266/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001267 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001268 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001269 * @path: The path to the directory the sysctl table is in.
1270 * @table: the top-level table structure
1271 *
1272 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1273 * array. A completely 0 filled entry terminates the table.
1274 *
1275 * The members of the &struct ctl_table structure are used as follows:
1276 *
1277 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1278 * enter a sysctl file
1279 *
1280 * data - a pointer to data for use by proc_handler
1281 *
1282 * maxlen - the maximum size in bytes of the data
1283 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001284 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001285 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001286 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001287 *
1288 * proc_handler - the text handler routine (described below)
1289 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001290 * extra1, extra2 - extra pointers usable by the proc handler routines
1291 *
1292 * Leaf nodes in the sysctl tree will be represented by a single file
1293 * under /proc; non-leaf nodes will be represented by directories.
1294 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001295 * There must be a proc_handler routine for any terminal nodes.
1296 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001297 *
1298 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1299 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1300 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1301 *
1302 * It is the handler's job to read the input buffer from user memory
1303 * and process it. The handler should return 0 on success.
1304 *
1305 * This routine returns %NULL on a failure to register, and a pointer
1306 * to the table header on success.
1307 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001308struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001309 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001310 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001311{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001312 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001313 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001314 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001315 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001316 struct ctl_table *entry;
1317 struct ctl_node *node;
1318 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001319
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001320 for (entry = table; entry->procname; entry++)
1321 nr_entries++;
1322
1323 header = kzalloc(sizeof(struct ctl_table_header) +
1324 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001325 if (!header)
1326 return NULL;
1327
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001328 node = (struct ctl_node *)(header + 1);
1329 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001330 if (sysctl_check_table(path, table))
1331 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001332
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001333 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001334 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001335 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001336 dir->header.nreg++;
1337 spin_unlock(&sysctl_lock);
1338
1339 /* Find the directory for the ctl_table */
1340 for (name = path; name; name = nextname) {
1341 int namelen;
1342 nextname = strchr(name, '/');
1343 if (nextname) {
1344 namelen = nextname - name;
1345 nextname++;
1346 } else {
1347 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001348 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001349 if (namelen == 0)
1350 continue;
1351
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001352 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001353 if (IS_ERR(dir))
1354 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001355 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001356
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001357 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001358 if (insert_header(dir, header))
1359 goto fail_put_dir_locked;
1360
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001361 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001362 spin_unlock(&sysctl_lock);
1363
1364 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001365
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001366fail_put_dir_locked:
1367 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001368 spin_unlock(&sysctl_lock);
1369fail:
1370 kfree(header);
1371 dump_stack();
1372 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001373}
1374
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001375/**
1376 * register_sysctl - register a sysctl table
1377 * @path: The path to the directory the sysctl table is in.
1378 * @table: the table structure
1379 *
1380 * Register a sysctl table. @table should be a filled in ctl_table
1381 * array. A completely 0 filled entry terminates the table.
1382 *
1383 * See __register_sysctl_table for more details.
1384 */
1385struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1386{
1387 return __register_sysctl_table(&sysctl_table_root.default_set,
1388 path, table);
1389}
1390EXPORT_SYMBOL(register_sysctl);
1391
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001392static char *append_path(const char *path, char *pos, const char *name)
1393{
1394 int namelen;
1395 namelen = strlen(name);
1396 if (((pos - path) + namelen + 2) >= PATH_MAX)
1397 return NULL;
1398 memcpy(pos, name, namelen);
1399 pos[namelen] = '/';
1400 pos[namelen + 1] = '\0';
1401 pos += namelen + 1;
1402 return pos;
1403}
1404
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001405static int count_subheaders(struct ctl_table *table)
1406{
1407 int has_files = 0;
1408 int nr_subheaders = 0;
1409 struct ctl_table *entry;
1410
1411 /* special case: no directory and empty directory */
1412 if (!table || !table->procname)
1413 return 1;
1414
1415 for (entry = table; entry->procname; entry++) {
1416 if (entry->child)
1417 nr_subheaders += count_subheaders(entry->child);
1418 else
1419 has_files = 1;
1420 }
1421 return nr_subheaders + has_files;
1422}
1423
1424static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001425 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001426 struct ctl_table *table)
1427{
1428 struct ctl_table *ctl_table_arg = NULL;
1429 struct ctl_table *entry, *files;
1430 int nr_files = 0;
1431 int nr_dirs = 0;
1432 int err = -ENOMEM;
1433
1434 for (entry = table; entry->procname; entry++) {
1435 if (entry->child)
1436 nr_dirs++;
1437 else
1438 nr_files++;
1439 }
1440
1441 files = table;
1442 /* If there are mixed files and directories we need a new table */
1443 if (nr_dirs && nr_files) {
1444 struct ctl_table *new;
Kees Cook6396bb22018-06-12 14:03:40 -07001445 files = kcalloc(nr_files + 1, sizeof(struct ctl_table),
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001446 GFP_KERNEL);
1447 if (!files)
1448 goto out;
1449
1450 ctl_table_arg = files;
1451 for (new = files, entry = table; entry->procname; entry++) {
1452 if (entry->child)
1453 continue;
1454 *new = *entry;
1455 new++;
1456 }
1457 }
1458
1459 /* Register everything except a directory full of subdirectories */
1460 if (nr_files || !nr_dirs) {
1461 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001462 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001463 if (!header) {
1464 kfree(ctl_table_arg);
1465 goto out;
1466 }
1467
1468 /* Remember if we need to free the file table */
1469 header->ctl_table_arg = ctl_table_arg;
1470 **subheader = header;
1471 (*subheader)++;
1472 }
1473
1474 /* Recurse into the subdirectories. */
1475 for (entry = table; entry->procname; entry++) {
1476 char *child_pos;
1477
1478 if (!entry->child)
1479 continue;
1480
1481 err = -ENAMETOOLONG;
1482 child_pos = append_path(path, pos, entry->procname);
1483 if (!child_pos)
1484 goto out;
1485
1486 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001487 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001488 pos[0] = '\0';
1489 if (err)
1490 goto out;
1491 }
1492 err = 0;
1493out:
1494 /* On failure our caller will unregister all registered subheaders */
1495 return err;
1496}
1497
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001498/**
1499 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001500 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001501 * @path: The path to the directory the sysctl table is in.
1502 * @table: the top-level table structure
1503 *
1504 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1505 * array. A completely 0 filled entry terminates the table.
1506 *
1507 * See __register_sysctl_table for more details.
1508 */
1509struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001510 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001511 const struct ctl_path *path, struct ctl_table *table)
1512{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001513 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001514 int nr_subheaders = count_subheaders(table);
1515 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001516 const struct ctl_path *component;
1517 char *new_path, *pos;
1518
1519 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1520 if (!new_path)
1521 return NULL;
1522
1523 pos[0] = '\0';
1524 for (component = path; component->procname; component++) {
1525 pos = append_path(new_path, pos, component->procname);
1526 if (!pos)
1527 goto out;
1528 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001529 while (table->procname && table->child && !table[1].procname) {
1530 pos = append_path(new_path, pos, table->procname);
1531 if (!pos)
1532 goto out;
1533 table = table->child;
1534 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001535 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001536 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001537 if (header)
1538 header->ctl_table_arg = ctl_table_arg;
1539 } else {
1540 header = kzalloc(sizeof(*header) +
1541 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1542 if (!header)
1543 goto out;
1544
1545 subheaders = (struct ctl_table_header **) (header + 1);
1546 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001547 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001548
1549 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001550 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001551 goto err_register_leaves;
1552 }
1553
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001554out:
1555 kfree(new_path);
1556 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001557
1558err_register_leaves:
1559 while (subheader > subheaders) {
1560 struct ctl_table_header *subh = *(--subheader);
1561 struct ctl_table *table = subh->ctl_table_arg;
1562 unregister_sysctl_table(subh);
1563 kfree(table);
1564 }
1565 kfree(header);
1566 header = NULL;
1567 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001568}
1569
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001570/**
1571 * register_sysctl_table_path - register a sysctl table hierarchy
1572 * @path: The path to the directory the sysctl table is in.
1573 * @table: the top-level table structure
1574 *
1575 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1576 * array. A completely 0 filled entry terminates the table.
1577 *
1578 * See __register_sysctl_paths for more details.
1579 */
1580struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1581 struct ctl_table *table)
1582{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001583 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001584 path, table);
1585}
1586EXPORT_SYMBOL(register_sysctl_paths);
1587
1588/**
1589 * register_sysctl_table - register a sysctl table hierarchy
1590 * @table: the top-level table structure
1591 *
1592 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1593 * array. A completely 0 filled entry terminates the table.
1594 *
1595 * See register_sysctl_paths for more details.
1596 */
1597struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1598{
1599 static const struct ctl_path null_path[] = { {} };
1600
1601 return register_sysctl_paths(null_path, table);
1602}
1603EXPORT_SYMBOL(register_sysctl_table);
1604
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001605static void put_links(struct ctl_table_header *header)
1606{
1607 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1608 struct ctl_table_root *root = header->root;
1609 struct ctl_dir *parent = header->parent;
1610 struct ctl_dir *core_parent;
1611 struct ctl_table *entry;
1612
1613 if (header->set == root_set)
1614 return;
1615
1616 core_parent = xlate_dir(root_set, parent);
1617 if (IS_ERR(core_parent))
1618 return;
1619
1620 for (entry = header->ctl_table; entry->procname; entry++) {
1621 struct ctl_table_header *link_head;
1622 struct ctl_table *link;
1623 const char *name = entry->procname;
1624
1625 link = find_entry(&link_head, core_parent, name, strlen(name));
1626 if (link &&
1627 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1628 (S_ISLNK(link->mode) && (link->data == root)))) {
1629 drop_sysctl_table(link_head);
1630 }
1631 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001632 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001633 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001634 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001635 }
1636 }
1637}
1638
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001639static void drop_sysctl_table(struct ctl_table_header *header)
1640{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001641 struct ctl_dir *parent = header->parent;
1642
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001643 if (--header->nreg)
1644 return;
1645
YueHaibing23da9582019-03-28 20:44:40 -07001646 if (parent)
1647 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001648 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001649 if (!--header->count)
1650 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001651
1652 if (parent)
1653 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001654}
1655
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001656/**
1657 * unregister_sysctl_table - unregister a sysctl table hierarchy
1658 * @header: the header returned from register_sysctl_table
1659 *
1660 * Unregisters the sysctl table and all children. proc entries may not
1661 * actually be removed until they are no longer used by anyone.
1662 */
1663void unregister_sysctl_table(struct ctl_table_header * header)
1664{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001665 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001666 might_sleep();
1667
1668 if (header == NULL)
1669 return;
1670
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001671 nr_subheaders = count_subheaders(header->ctl_table_arg);
1672 if (unlikely(nr_subheaders > 1)) {
1673 struct ctl_table_header **subheaders;
1674 int i;
1675
1676 subheaders = (struct ctl_table_header **)(header + 1);
1677 for (i = nr_subheaders -1; i >= 0; i--) {
1678 struct ctl_table_header *subh = subheaders[i];
1679 struct ctl_table *table = subh->ctl_table_arg;
1680 unregister_sysctl_table(subh);
1681 kfree(table);
1682 }
1683 kfree(header);
1684 return;
1685 }
1686
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001687 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001688 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001689 spin_unlock(&sysctl_lock);
1690}
1691EXPORT_SYMBOL(unregister_sysctl_table);
1692
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001693void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001694 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001695 int (*is_seen)(struct ctl_table_set *))
1696{
Dan Carpenter13474402012-01-30 16:40:29 +03001697 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001698 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001699 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001700}
1701
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001702void retire_sysctl_set(struct ctl_table_set *set)
1703{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001704 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001705}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001706
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001707int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001708{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001709 struct proc_dir_entry *proc_sys_root;
1710
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001711 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001712 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1713 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001714 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001715
1716 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001717}