blob: 3e64c6502dc8540c8b71959ed1aca1dbd9c8ace7 [file] [log] [blame]
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001/*
2 * /proc/sys support
3 */
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04004#include <linux/init.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08005#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -07006#include <linux/poll.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08007#include <linux/proc_fs.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -08008#include <linux/printk.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08009#include <linux/security.h>
Al Viro40401532012-02-13 03:58:52 +000010#include <linux/sched.h>
Nick Piggin34286d62011-01-07 17:49:57 +110011#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000012#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080013#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080014#include "internal.h"
15
Al Virod72f71e2009-02-20 05:58:47 +000016static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080017static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080018static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040019static const struct file_operations proc_sys_dir_file_operations;
20static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080021
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050022/* Support for permanently empty directories */
23
24struct ctl_table sysctl_mount_point[] = {
25 { }
26};
27
28static bool is_empty_dir(struct ctl_table_header *head)
29{
30 return head->ctl_table[0].child == sysctl_mount_point;
31}
32
33static void set_empty_dir(struct ctl_dir *dir)
34{
35 dir->header.ctl_table[0].child = sysctl_mount_point;
36}
37
38static void clear_empty_dir(struct ctl_dir *dir)
39
40{
41 dir->header.ctl_table[0].child = NULL;
42}
43
Lucas De Marchif1ecf062011-11-02 13:39:22 -070044void proc_sys_poll_notify(struct ctl_table_poll *poll)
45{
46 if (!poll)
47 return;
48
49 atomic_inc(&poll->event);
50 wake_up_interruptible(&poll->wait);
51}
52
Eric W. Biedermana1945582012-01-21 17:51:48 -080053static struct ctl_table root_table[] = {
54 {
55 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080056 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080057 },
58 { }
59};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080060static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080061 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080062 {{.count = 1,
63 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080064 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080065 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080066 .root = &sysctl_table_root,
67 .set = &sysctl_table_root.default_set,
68 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080069};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080070
71static DEFINE_SPINLOCK(sysctl_lock);
72
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080073static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080074static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050075 struct ctl_table **pentry);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080076static int insert_links(struct ctl_table_header *head);
77static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080078
Eric W. Biederman69801282012-01-21 20:09:45 -080079static void sysctl_print_dir(struct ctl_dir *dir)
80{
81 if (dir->header.parent)
82 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080083 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080084}
85
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080086static int namecmp(const char *name1, int len1, const char *name2, int len2)
87{
88 int minlen;
89 int cmp;
90
91 minlen = len1;
92 if (minlen > len2)
93 minlen = len2;
94
95 cmp = memcmp(name1, name2, minlen);
96 if (cmp == 0)
97 cmp = len1 - len2;
98 return cmp;
99}
100
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800101/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800102static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800103 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800104{
105 struct ctl_table_header *head;
106 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800107 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800108
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800109 while (node)
110 {
111 struct ctl_node *ctl_node;
112 const char *procname;
113 int cmp;
114
115 ctl_node = rb_entry(node, struct ctl_node, node);
116 head = ctl_node->header;
117 entry = &head->ctl_table[ctl_node - head->node];
118 procname = entry->procname;
119
120 cmp = namecmp(name, namelen, procname, strlen(procname));
121 if (cmp < 0)
122 node = node->rb_left;
123 else if (cmp > 0)
124 node = node->rb_right;
125 else {
126 *phead = head;
127 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800128 }
129 }
130 return NULL;
131}
132
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800133static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
134{
135 struct rb_node *node = &head->node[entry - head->ctl_table].node;
136 struct rb_node **p = &head->parent->root.rb_node;
137 struct rb_node *parent = NULL;
138 const char *name = entry->procname;
139 int namelen = strlen(name);
140
141 while (*p) {
142 struct ctl_table_header *parent_head;
143 struct ctl_table *parent_entry;
144 struct ctl_node *parent_node;
145 const char *parent_name;
146 int cmp;
147
148 parent = *p;
149 parent_node = rb_entry(parent, struct ctl_node, node);
150 parent_head = parent_node->header;
151 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
152 parent_name = parent_entry->procname;
153
154 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
155 if (cmp < 0)
156 p = &(*p)->rb_left;
157 else if (cmp > 0)
158 p = &(*p)->rb_right;
159 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800160 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800161 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800162 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700168 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800169 return 0;
170}
171
172static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
173{
174 struct rb_node *node = &head->node[entry - head->ctl_table].node;
175
176 rb_erase(node, &head->parent->root);
177}
178
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800179static void init_header(struct ctl_table_header *head,
180 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800181 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800182{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800183 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800184 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800185 head->used = 0;
186 head->count = 1;
187 head->nreg = 1;
188 head->unregistering = NULL;
189 head->root = root;
190 head->set = set;
191 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800192 head->node = node;
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300193 INIT_LIST_HEAD(&head->inodes);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800194 if (node) {
195 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700196 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800197 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800198 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800199}
200
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800201static void erase_header(struct ctl_table_header *head)
202{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800203 struct ctl_table *entry;
204 for (entry = head->ctl_table; entry->procname; entry++)
205 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800206}
207
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800208static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800209{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800210 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800211 int err;
212
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500213 /* Is this a permanently empty directory? */
214 if (is_empty_dir(&dir->header))
215 return -EROFS;
216
217 /* Am I creating a permanently empty directory? */
218 if (header->ctl_table == sysctl_mount_point) {
219 if (!RB_EMPTY_ROOT(&dir->root))
220 return -EINVAL;
221 set_empty_dir(dir);
222 }
223
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800224 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800225 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800226 err = insert_links(header);
227 if (err)
228 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800229 for (entry = header->ctl_table; entry->procname; entry++) {
230 err = insert_entry(header, entry);
231 if (err)
232 goto fail;
233 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800234 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800235fail:
236 erase_header(header);
237 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800238fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500239 if (header->ctl_table == sysctl_mount_point)
240 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800241 header->parent = NULL;
242 drop_sysctl_table(&dir->header);
243 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800244}
245
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800246/* called under sysctl_lock */
247static int use_table(struct ctl_table_header *p)
248{
249 if (unlikely(p->unregistering))
250 return 0;
251 p->used++;
252 return 1;
253}
254
255/* called under sysctl_lock */
256static void unuse_table(struct ctl_table_header *p)
257{
258 if (!--p->used)
259 if (unlikely(p->unregistering))
260 complete(p->unregistering);
261}
262
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300263/* called under sysctl_lock */
264static void proc_sys_prune_dcache(struct ctl_table_header *head)
265{
266 struct inode *inode, *prev = NULL;
267 struct proc_inode *ei;
268
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300269 rcu_read_lock();
270 list_for_each_entry_rcu(ei, &head->inodes, sysctl_inodes) {
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300271 inode = igrab(&ei->vfs_inode);
272 if (inode) {
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300273 rcu_read_unlock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300274 iput(prev);
275 prev = inode;
276 d_prune_aliases(inode);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300277 rcu_read_lock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300278 }
279 }
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300280 rcu_read_unlock();
281 iput(prev);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300282}
283
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800284/* 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);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800297 } else {
298 /* anything non-NULL; we'll never dereference it */
299 p->unregistering = ERR_PTR(-EINVAL);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300300 spin_unlock(&sysctl_lock);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800301 }
302 /*
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300303 * Prune dentries for unregistered sysctls: namespaced sysctls
304 * can have duplicate names and contaminate dcache very badly.
305 */
306 proc_sys_prune_dcache(p);
307 /*
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800308 * do not remove from the list until nobody holds it; walking the
309 * list in do_sysctl() relies on that.
310 */
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300311 spin_lock(&sysctl_lock);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800312 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800313}
314
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800315static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
316{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700317 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800318 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 *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500335lookup_header_set(struct ctl_table_root *root)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800336{
337 struct ctl_table_set *set = &root->default_set;
338 if (root->lookup)
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500339 set = root->lookup(root);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800340 return set;
341}
342
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800343static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800344 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800345 const char *name, int namelen)
346{
347 struct ctl_table_header *head;
348 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800349
350 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800351 entry = find_entry(&head, dir, name, namelen);
352 if (entry && use_table(head))
353 *phead = head;
354 else
355 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800356 spin_unlock(&sysctl_lock);
357 return entry;
358}
359
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800360static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800361{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800362 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800363
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800364 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;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800368 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800369 return NULL;
370}
371
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800372static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800373 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800374{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800375 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800376 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800377 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800378
379 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800380 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800381 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800382 if (ctl_node) {
383 head = ctl_node->header;
384 entry = &head->ctl_table[ctl_node - head->node];
385 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800386 *phead = head;
387 *pentry = entry;
388}
389
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800390static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800391{
392 struct ctl_table_header *head = *phead;
393 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800394 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800395
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800396 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];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800405 }
406 *phead = head;
407 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800408}
409
410void register_sysctl_root(struct ctl_table_root *root)
411{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800412}
413
414/*
415 * sysctl_perm does NOT grant the superuser all rights automatically, because
416 * some sysctl variables are readonly even to root.
417 */
418
419static int test_perm(int mode, int op)
420{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800421 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800422 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800423 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800424 mode >>= 3;
425 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
426 return 0;
427 return -EACCES;
428}
429
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000430static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800431{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000432 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800433 int mode;
434
435 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000436 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800437 else
438 mode = table->mode;
439
440 return test_perm(mode, op);
441}
442
Al Viro9043476f2008-07-15 08:54:06 -0400443static struct inode *proc_sys_make_inode(struct super_block *sb,
444 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800445{
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700446 struct ctl_table_root *root = head->root;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800447 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400448 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800449
Al Viro9043476f2008-07-15 08:54:06 -0400450 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800451 if (!inode)
452 goto out;
453
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400454 inode->i_ino = get_next_ino();
455
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800456 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400457
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300458 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300459 if (unlikely(head->unregistering)) {
460 spin_unlock(&sysctl_lock);
461 iput(inode);
462 inode = NULL;
463 goto out;
464 }
465 ei->sysctl = head;
466 ei->sysctl_entry = table;
467 list_add_rcu(&ei->sysctl_inodes, &head->inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300468 head->count++;
469 spin_unlock(&sysctl_lock);
470
Deepa Dinamani078cd822016-09-14 07:48:04 -0700471 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400472 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800473 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400474 inode->i_mode |= S_IFREG;
475 inode->i_op = &proc_sys_inode_operations;
476 inode->i_fop = &proc_sys_file_operations;
477 } else {
478 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400479 inode->i_op = &proc_sys_dir_operations;
480 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500481 if (is_empty_dir(head))
482 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400483 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700484
485 if (root->set_ownership)
486 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
487
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800488out:
489 return inode;
490}
491
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300492void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
493{
494 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300495 list_del_rcu(&PROC_I(inode)->sysctl_inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300496 if (!--head->count)
497 kfree_rcu(head, rcu);
498 spin_unlock(&sysctl_lock);
499}
500
Adrian Bunk81324362008-10-03 00:33:54 +0400501static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800502{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800503 struct ctl_table_header *head = PROC_I(inode)->sysctl;
504 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800505 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800506 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800507}
508
509static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400510 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800511{
Al Viro9043476f2008-07-15 08:54:06 -0400512 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400513 struct ctl_table_header *h = NULL;
Al Virodc12e902016-07-20 22:41:44 -0400514 const struct qstr *name = &dentry->d_name;
Al Viro9043476f2008-07-15 08:54:06 -0400515 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800516 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400517 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800518 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800519 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800520
Al Viro9043476f2008-07-15 08:54:06 -0400521 if (IS_ERR(head))
522 return ERR_CAST(head);
523
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800524 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400525
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800526 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400527 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800528 goto out;
529
Eric W. Biederman4e757322012-01-30 21:24:59 -0800530 if (S_ISLNK(p->mode)) {
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500531 ret = sysctl_follow_link(&h, &p);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800532 err = ERR_PTR(ret);
533 if (ret)
534 goto out;
535 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800536
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800537 err = ERR_PTR(-ENOMEM);
Al Viro9043476f2008-07-15 08:54:06 -0400538 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800539 if (!inode)
540 goto out;
541
542 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100543 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800544 d_add(dentry, inode);
545
546out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700547 if (h)
548 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800549 sysctl_head_finish(head);
550 return err;
551}
552
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700553static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
554 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800555{
Al Viro496ad9a2013-01-23 17:07:38 -0500556 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400557 struct ctl_table_header *head = grab_header(inode);
558 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100559 ssize_t error;
560 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800561
Al Viro9043476f2008-07-15 08:54:06 -0400562 if (IS_ERR(head))
563 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800564
565 /*
566 * At this point we know that the sysctl was not unregistered
567 * and won't be until we finish.
568 */
569 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000570 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800571 goto out;
572
Al Viro9043476f2008-07-15 08:54:06 -0400573 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
574 error = -EINVAL;
575 if (!table->proc_handler)
576 goto out;
577
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800578 /* careful: calling conventions are nasty here */
579 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700580 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800581 if (!error)
582 error = res;
583out:
584 sysctl_head_finish(head);
585
586 return error;
587}
588
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700589static ssize_t proc_sys_read(struct file *filp, char __user *buf,
590 size_t count, loff_t *ppos)
591{
592 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
593}
594
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800595static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
596 size_t count, loff_t *ppos)
597{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700598 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800599}
600
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700601static int proc_sys_open(struct inode *inode, struct file *filp)
602{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700603 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700604 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
605
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700606 /* sysctl was unregistered */
607 if (IS_ERR(head))
608 return PTR_ERR(head);
609
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700610 if (table->poll)
611 filp->private_data = proc_sys_poll_event(table->poll);
612
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700613 sysctl_head_finish(head);
614
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700615 return 0;
616}
617
618static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
619{
Al Viro496ad9a2013-01-23 17:07:38 -0500620 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700621 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700622 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700623 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700624 unsigned long event;
625
626 /* sysctl was unregistered */
627 if (IS_ERR(head))
628 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700629
630 if (!table->proc_handler)
631 goto out;
632
633 if (!table->poll)
634 goto out;
635
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700636 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700637 poll_wait(filp, &table->poll->wait, wait);
638
639 if (event != atomic_read(&table->poll->event)) {
640 filp->private_data = proc_sys_poll_event(table->poll);
641 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
642 }
643
644out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700645 sysctl_head_finish(head);
646
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700647 return ret;
648}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800649
Al Virof0c3b502013-05-16 12:07:31 -0400650static bool proc_sys_fill_cache(struct file *file,
651 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400652 struct ctl_table_header *head,
653 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800654{
Al Virof0c3b502013-05-16 12:07:31 -0400655 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800656 struct inode *inode;
657 struct qstr qname;
658 ino_t ino = 0;
659 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800660
661 qname.name = table->procname;
662 qname.len = strlen(table->procname);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700663 qname.hash = full_name_hash(dir, qname.name, qname.len);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800664
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800665 child = d_lookup(dir, &qname);
666 if (!child) {
Al Viro76aab3a2016-04-20 16:36:09 -0400667 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
668 child = d_alloc_parallel(dir, &qname, &wq);
669 if (IS_ERR(child))
670 return false;
671 if (d_in_lookup(child)) {
Al Viro9043476f2008-07-15 08:54:06 -0400672 inode = proc_sys_make_inode(dir->d_sb, head, table);
673 if (!inode) {
Al Viro76aab3a2016-04-20 16:36:09 -0400674 d_lookup_done(child);
Al Viro9043476f2008-07-15 08:54:06 -0400675 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400676 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800677 }
Al Viro76aab3a2016-04-20 16:36:09 -0400678 d_set_d_op(child, &proc_sys_dentry_operations);
679 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800680 }
681 }
David Howells2b0143b2015-03-17 22:25:59 +0000682 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400683 ino = inode->i_ino;
684 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800685 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400686 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400687}
688
Al Virof0c3b502013-05-16 12:07:31 -0400689static bool proc_sys_link_fill_cache(struct file *file,
690 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800691 struct ctl_table_header *head,
692 struct ctl_table *table)
693{
Al Virof0c3b502013-05-16 12:07:31 -0400694 bool ret = true;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800695 head = sysctl_head_grab(head);
696
Eric W. Biederman4e757322012-01-30 21:24:59 -0800697 if (S_ISLNK(table->mode)) {
698 /* It is not an error if we can not follow the link ignore it */
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500699 int err = sysctl_follow_link(&head, &table);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800700 if (err)
701 goto out;
702 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800703
Al Virof0c3b502013-05-16 12:07:31 -0400704 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800705out:
706 sysctl_head_finish(head);
707 return ret;
708}
709
Joe Perchese5eea092014-08-08 14:22:16 -0700710static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400711 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400712 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400713{
Al Virof0c3b502013-05-16 12:07:31 -0400714 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400715
Al Virof0c3b502013-05-16 12:07:31 -0400716 if ((*pos)++ < ctx->pos)
717 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400718
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800719 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400720 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800721 else
Al Virof0c3b502013-05-16 12:07:31 -0400722 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400723
Al Virof0c3b502013-05-16 12:07:31 -0400724 if (res)
725 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400726
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800727 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800728}
729
Al Virof0c3b502013-05-16 12:07:31 -0400730static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800731{
Al Virof0c3b502013-05-16 12:07:31 -0400732 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400733 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800734 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800735 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800736 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800737
Al Viro9043476f2008-07-15 08:54:06 -0400738 if (IS_ERR(head))
739 return PTR_ERR(head);
740
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800741 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800742
Al Virof0c3b502013-05-16 12:07:31 -0400743 if (!dir_emit_dots(file, ctx))
Zhou Chengming93362fa2017-01-06 09:32:32 +0800744 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400745
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800746 pos = 2;
747
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800748 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400749 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400750 sysctl_head_finish(h);
751 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800752 }
753 }
Zhou Chengming93362fa2017-01-06 09:32:32 +0800754out:
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800755 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400756 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800757}
758
Al Viro10556cb22011-06-20 19:28:19 -0400759static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800760{
761 /*
762 * sysctl entries that are not writeable,
763 * are _NOT_ writeable, capabilities or not.
764 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200765 struct ctl_table_header *head;
766 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800767 int error;
768
Miklos Szeredif696a362008-07-31 13:41:58 +0200769 /* Executable files are not allowed under /proc/sys/ */
770 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
771 return -EACCES;
772
773 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400774 if (IS_ERR(head))
775 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800776
Miklos Szeredif696a362008-07-31 13:41:58 +0200777 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400778 if (!table) /* global root - r-xr-xr-x */
779 error = mask & MAY_WRITE ? -EACCES : 0;
780 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000781 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800782
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800783 sysctl_head_finish(head);
784 return error;
785}
786
787static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
788{
David Howells2b0143b2015-03-17 22:25:59 +0000789 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800790 int error;
791
792 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
793 return -EPERM;
794
Jan Kara31051c82016-05-26 16:55:18 +0200795 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200796 if (error)
797 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800798
Christoph Hellwig10257742010-06-04 11:30:02 +0200799 setattr_copy(inode, attr);
800 mark_inode_dirty(inode);
801 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800802}
803
Al Viro9043476f2008-07-15 08:54:06 -0400804static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
805{
David Howells2b0143b2015-03-17 22:25:59 +0000806 struct inode *inode = d_inode(dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400807 struct ctl_table_header *head = grab_header(inode);
808 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
809
810 if (IS_ERR(head))
811 return PTR_ERR(head);
812
813 generic_fillattr(inode, stat);
814 if (table)
815 stat->mode = (stat->mode & S_IFMT) | table->mode;
816
817 sysctl_head_finish(head);
818 return 0;
819}
820
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800821static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700822 .open = proc_sys_open,
823 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800824 .read = proc_sys_read,
825 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200826 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400827};
828
829static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700830 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400831 .iterate_shared = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200832 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800833};
834
Jan Engelhardt03a44822008-02-08 04:21:19 -0800835static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400836 .permission = proc_sys_permission,
837 .setattr = proc_sys_setattr,
838 .getattr = proc_sys_getattr,
839};
840
841static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800842 .lookup = proc_sys_lookup,
843 .permission = proc_sys_permission,
844 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400845 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800846};
847
Al Viro0b728e12012-06-10 16:03:43 -0400848static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800849{
Al Viro0b728e12012-06-10 16:03:43 -0400850 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100851 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000852 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400853}
854
Nick Pigginfe15ce42011-01-07 17:49:23 +1100855static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400856{
David Howells2b0143b2015-03-17 22:25:59 +0000857 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400858}
859
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800860static int sysctl_is_seen(struct ctl_table_header *p)
861{
862 struct ctl_table_set *set = p->set;
863 int res;
864 spin_lock(&sysctl_lock);
865 if (p->unregistering)
866 res = 0;
867 else if (!set->is_seen)
868 res = 1;
869 else
870 res = set->is_seen(set);
871 spin_unlock(&sysctl_lock);
872 return res;
873}
874
Al Viro6fa67e72016-07-31 16:37:25 -0400875static int proc_sys_compare(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100876 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400877{
Al Virodfef6dcd32011-03-08 01:25:28 -0500878 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700879 struct inode *inode;
880
Nick Piggin31e6b012011-01-07 17:49:52 +1100881 /* Although proc doesn't have negative dentries, rcu-walk means
882 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500883 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000884 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100885 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500886 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100887 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400888 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100889 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400890 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500891 head = rcu_dereference(PROC_I(inode)->sysctl);
892 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800893}
894
Al Virod72f71e2009-02-20 05:58:47 +0000895static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800896 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400897 .d_delete = proc_sys_delete,
898 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800899};
900
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800901static struct ctl_dir *find_subdir(struct ctl_dir *dir,
902 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800903{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800904 struct ctl_table_header *head;
905 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800906
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800907 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800908 if (!entry)
909 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800910 if (!S_ISDIR(entry->mode))
911 return ERR_PTR(-ENOTDIR);
912 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800913}
914
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800915static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800916 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800917{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800918 struct ctl_table *table;
919 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800920 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800921 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800922
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800923 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
924 sizeof(struct ctl_table)*2 + namelen + 1,
925 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800926 if (!new)
927 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800928
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800929 node = (struct ctl_node *)(new + 1);
930 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800931 new_name = (char *)(table + 2);
932 memcpy(new_name, name, namelen);
933 new_name[namelen] = '\0';
934 table[0].procname = new_name;
935 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800936 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800937
938 return new;
939}
940
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800941/**
942 * get_subdir - find or create a subdir with the specified name.
943 * @dir: Directory to create the subdirectory in
944 * @name: The name of the subdirectory to find or create
945 * @namelen: The length of name
946 *
947 * Takes a directory with an elevated reference count so we know that
948 * if we drop the lock the directory will not go away. Upon success
949 * the reference is moved from @dir to the returned subdirectory.
950 * Upon error an error code is returned and the reference on @dir is
951 * simply dropped.
952 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800953static struct ctl_dir *get_subdir(struct ctl_dir *dir,
954 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800955{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800956 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800957 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800958 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800959
960 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800961 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800962 if (!IS_ERR(subdir))
963 goto found;
964 if (PTR_ERR(subdir) != -ENOENT)
965 goto failed;
966
967 spin_unlock(&sysctl_lock);
968 new = new_dir(set, name, namelen);
969 spin_lock(&sysctl_lock);
970 subdir = ERR_PTR(-ENOMEM);
971 if (!new)
972 goto failed;
973
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800974 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800975 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800976 if (!IS_ERR(subdir))
977 goto found;
978 if (PTR_ERR(subdir) != -ENOENT)
979 goto failed;
980
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800981 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800982 err = insert_header(dir, &new->header);
983 subdir = ERR_PTR(err);
984 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800985 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800986 subdir = new;
987found:
988 subdir->header.nreg++;
989failed:
Viresh Kumara1c83682015-08-12 15:59:44 +0530990 if (IS_ERR(subdir)) {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800991 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -0800992 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800993 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800994 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800995 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800996 drop_sysctl_table(&dir->header);
997 if (new)
998 drop_sysctl_table(&new->header);
999 spin_unlock(&sysctl_lock);
1000 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001001}
1002
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001003static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1004{
1005 struct ctl_dir *parent;
1006 const char *procname;
1007 if (!dir->header.parent)
1008 return &set->dir;
1009 parent = xlate_dir(set, dir->header.parent);
1010 if (IS_ERR(parent))
1011 return parent;
1012 procname = dir->header.ctl_table[0].procname;
1013 return find_subdir(parent, procname, strlen(procname));
1014}
1015
1016static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001017 struct ctl_table **pentry)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001018{
1019 struct ctl_table_header *head;
1020 struct ctl_table_root *root;
1021 struct ctl_table_set *set;
1022 struct ctl_table *entry;
1023 struct ctl_dir *dir;
1024 int ret;
1025
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001026 ret = 0;
1027 spin_lock(&sysctl_lock);
1028 root = (*pentry)->data;
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001029 set = lookup_header_set(root);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001030 dir = xlate_dir(set, (*phead)->parent);
1031 if (IS_ERR(dir))
1032 ret = PTR_ERR(dir);
1033 else {
1034 const char *procname = (*pentry)->procname;
1035 head = NULL;
1036 entry = find_entry(&head, dir, procname, strlen(procname));
1037 ret = -ENOENT;
1038 if (entry && use_table(head)) {
1039 unuse_table(*phead);
1040 *phead = head;
1041 *pentry = entry;
1042 ret = 0;
1043 }
1044 }
1045
1046 spin_unlock(&sysctl_lock);
1047 return ret;
1048}
1049
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001050static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1051{
1052 struct va_format vaf;
1053 va_list args;
1054
1055 va_start(args, fmt);
1056 vaf.fmt = fmt;
1057 vaf.va = &args;
1058
Andrew Morton87ebdc02013-02-27 17:03:16 -08001059 pr_err("sysctl table check failed: %s/%s %pV\n",
1060 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001061
1062 va_end(args);
1063 return -EINVAL;
1064}
1065
1066static int sysctl_check_table(const char *path, struct ctl_table *table)
1067{
1068 int err = 0;
1069 for (; table->procname; table++) {
1070 if (table->child)
1071 err = sysctl_err(path, table, "Not a file");
1072
1073 if ((table->proc_handler == proc_dostring) ||
1074 (table->proc_handler == proc_dointvec) ||
1075 (table->proc_handler == proc_dointvec_minmax) ||
1076 (table->proc_handler == proc_dointvec_jiffies) ||
1077 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1078 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1079 (table->proc_handler == proc_doulongvec_minmax) ||
1080 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1081 if (!table->data)
1082 err = sysctl_err(path, table, "No data");
1083 if (!table->maxlen)
1084 err = sysctl_err(path, table, "No maxlen");
1085 }
1086 if (!table->proc_handler)
1087 err = sysctl_err(path, table, "No proc_handler");
1088
1089 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1090 err = sysctl_err(path, table, "bogus .mode 0%o",
1091 table->mode);
1092 }
1093 return err;
1094}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001095
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001096static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1097 struct ctl_table_root *link_root)
1098{
1099 struct ctl_table *link_table, *entry, *link;
1100 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001101 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001102 char *link_name;
1103 int nr_entries, name_bytes;
1104
1105 name_bytes = 0;
1106 nr_entries = 0;
1107 for (entry = table; entry->procname; entry++) {
1108 nr_entries++;
1109 name_bytes += strlen(entry->procname) + 1;
1110 }
1111
1112 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001113 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001114 sizeof(struct ctl_table)*(nr_entries + 1) +
1115 name_bytes,
1116 GFP_KERNEL);
1117
1118 if (!links)
1119 return NULL;
1120
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001121 node = (struct ctl_node *)(links + 1);
1122 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001123 link_name = (char *)&link_table[nr_entries + 1];
1124
1125 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1126 int len = strlen(entry->procname) + 1;
1127 memcpy(link_name, entry->procname, len);
1128 link->procname = link_name;
1129 link->mode = S_IFLNK|S_IRWXUGO;
1130 link->data = link_root;
1131 link_name += len;
1132 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001133 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001134 links->nreg = nr_entries;
1135
1136 return links;
1137}
1138
1139static bool get_links(struct ctl_dir *dir,
1140 struct ctl_table *table, struct ctl_table_root *link_root)
1141{
1142 struct ctl_table_header *head;
1143 struct ctl_table *entry, *link;
1144
1145 /* Are there links available for every entry in table? */
1146 for (entry = table; entry->procname; entry++) {
1147 const char *procname = entry->procname;
1148 link = find_entry(&head, dir, procname, strlen(procname));
1149 if (!link)
1150 return false;
1151 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1152 continue;
1153 if (S_ISLNK(link->mode) && (link->data == link_root))
1154 continue;
1155 return false;
1156 }
1157
1158 /* The checks passed. Increase the registration count on the links */
1159 for (entry = table; entry->procname; entry++) {
1160 const char *procname = entry->procname;
1161 link = find_entry(&head, dir, procname, strlen(procname));
1162 head->nreg++;
1163 }
1164 return true;
1165}
1166
1167static int insert_links(struct ctl_table_header *head)
1168{
1169 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1170 struct ctl_dir *core_parent = NULL;
1171 struct ctl_table_header *links;
1172 int err;
1173
1174 if (head->set == root_set)
1175 return 0;
1176
1177 core_parent = xlate_dir(root_set, head->parent);
1178 if (IS_ERR(core_parent))
1179 return 0;
1180
1181 if (get_links(core_parent, head->ctl_table, head->root))
1182 return 0;
1183
1184 core_parent->header.nreg++;
1185 spin_unlock(&sysctl_lock);
1186
1187 links = new_links(core_parent, head->ctl_table, head->root);
1188
1189 spin_lock(&sysctl_lock);
1190 err = -ENOMEM;
1191 if (!links)
1192 goto out;
1193
1194 err = 0;
1195 if (get_links(core_parent, head->ctl_table, head->root)) {
1196 kfree(links);
1197 goto out;
1198 }
1199
1200 err = insert_header(core_parent, links);
1201 if (err)
1202 kfree(links);
1203out:
1204 drop_sysctl_table(&core_parent->header);
1205 return err;
1206}
1207
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001208/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001209 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001210 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001211 * @path: The path to the directory the sysctl table is in.
1212 * @table: the top-level table structure
1213 *
1214 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1215 * array. A completely 0 filled entry terminates the table.
1216 *
1217 * The members of the &struct ctl_table structure are used as follows:
1218 *
1219 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1220 * enter a sysctl file
1221 *
1222 * data - a pointer to data for use by proc_handler
1223 *
1224 * maxlen - the maximum size in bytes of the data
1225 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001226 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001227 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001228 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001229 *
1230 * proc_handler - the text handler routine (described below)
1231 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001232 * extra1, extra2 - extra pointers usable by the proc handler routines
1233 *
1234 * Leaf nodes in the sysctl tree will be represented by a single file
1235 * under /proc; non-leaf nodes will be represented by directories.
1236 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001237 * There must be a proc_handler routine for any terminal nodes.
1238 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001239 *
1240 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1241 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1242 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1243 *
1244 * It is the handler's job to read the input buffer from user memory
1245 * and process it. The handler should return 0 on success.
1246 *
1247 * This routine returns %NULL on a failure to register, and a pointer
1248 * to the table header on success.
1249 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001250struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001251 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001252 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001253{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001254 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001255 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001256 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001257 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001258 struct ctl_table *entry;
1259 struct ctl_node *node;
1260 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001261
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001262 for (entry = table; entry->procname; entry++)
1263 nr_entries++;
1264
1265 header = kzalloc(sizeof(struct ctl_table_header) +
1266 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001267 if (!header)
1268 return NULL;
1269
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001270 node = (struct ctl_node *)(header + 1);
1271 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001272 if (sysctl_check_table(path, table))
1273 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001274
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001275 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001276 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001277 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001278 dir->header.nreg++;
1279 spin_unlock(&sysctl_lock);
1280
1281 /* Find the directory for the ctl_table */
1282 for (name = path; name; name = nextname) {
1283 int namelen;
1284 nextname = strchr(name, '/');
1285 if (nextname) {
1286 namelen = nextname - name;
1287 nextname++;
1288 } else {
1289 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001290 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001291 if (namelen == 0)
1292 continue;
1293
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001294 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001295 if (IS_ERR(dir))
1296 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001297 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001298
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001299 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001300 if (insert_header(dir, header))
1301 goto fail_put_dir_locked;
1302
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001303 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001304 spin_unlock(&sysctl_lock);
1305
1306 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001307
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001308fail_put_dir_locked:
1309 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001310 spin_unlock(&sysctl_lock);
1311fail:
1312 kfree(header);
1313 dump_stack();
1314 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001315}
1316
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001317/**
1318 * register_sysctl - register a sysctl table
1319 * @path: The path to the directory the sysctl table is in.
1320 * @table: the table structure
1321 *
1322 * Register a sysctl table. @table should be a filled in ctl_table
1323 * array. A completely 0 filled entry terminates the table.
1324 *
1325 * See __register_sysctl_table for more details.
1326 */
1327struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1328{
1329 return __register_sysctl_table(&sysctl_table_root.default_set,
1330 path, table);
1331}
1332EXPORT_SYMBOL(register_sysctl);
1333
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001334static char *append_path(const char *path, char *pos, const char *name)
1335{
1336 int namelen;
1337 namelen = strlen(name);
1338 if (((pos - path) + namelen + 2) >= PATH_MAX)
1339 return NULL;
1340 memcpy(pos, name, namelen);
1341 pos[namelen] = '/';
1342 pos[namelen + 1] = '\0';
1343 pos += namelen + 1;
1344 return pos;
1345}
1346
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001347static int count_subheaders(struct ctl_table *table)
1348{
1349 int has_files = 0;
1350 int nr_subheaders = 0;
1351 struct ctl_table *entry;
1352
1353 /* special case: no directory and empty directory */
1354 if (!table || !table->procname)
1355 return 1;
1356
1357 for (entry = table; entry->procname; entry++) {
1358 if (entry->child)
1359 nr_subheaders += count_subheaders(entry->child);
1360 else
1361 has_files = 1;
1362 }
1363 return nr_subheaders + has_files;
1364}
1365
1366static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001367 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001368 struct ctl_table *table)
1369{
1370 struct ctl_table *ctl_table_arg = NULL;
1371 struct ctl_table *entry, *files;
1372 int nr_files = 0;
1373 int nr_dirs = 0;
1374 int err = -ENOMEM;
1375
1376 for (entry = table; entry->procname; entry++) {
1377 if (entry->child)
1378 nr_dirs++;
1379 else
1380 nr_files++;
1381 }
1382
1383 files = table;
1384 /* If there are mixed files and directories we need a new table */
1385 if (nr_dirs && nr_files) {
1386 struct ctl_table *new;
1387 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1388 GFP_KERNEL);
1389 if (!files)
1390 goto out;
1391
1392 ctl_table_arg = files;
1393 for (new = files, entry = table; entry->procname; entry++) {
1394 if (entry->child)
1395 continue;
1396 *new = *entry;
1397 new++;
1398 }
1399 }
1400
1401 /* Register everything except a directory full of subdirectories */
1402 if (nr_files || !nr_dirs) {
1403 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001404 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001405 if (!header) {
1406 kfree(ctl_table_arg);
1407 goto out;
1408 }
1409
1410 /* Remember if we need to free the file table */
1411 header->ctl_table_arg = ctl_table_arg;
1412 **subheader = header;
1413 (*subheader)++;
1414 }
1415
1416 /* Recurse into the subdirectories. */
1417 for (entry = table; entry->procname; entry++) {
1418 char *child_pos;
1419
1420 if (!entry->child)
1421 continue;
1422
1423 err = -ENAMETOOLONG;
1424 child_pos = append_path(path, pos, entry->procname);
1425 if (!child_pos)
1426 goto out;
1427
1428 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001429 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001430 pos[0] = '\0';
1431 if (err)
1432 goto out;
1433 }
1434 err = 0;
1435out:
1436 /* On failure our caller will unregister all registered subheaders */
1437 return err;
1438}
1439
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001440/**
1441 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001442 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001443 * @path: The path to the directory the sysctl table is in.
1444 * @table: the top-level table structure
1445 *
1446 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1447 * array. A completely 0 filled entry terminates the table.
1448 *
1449 * See __register_sysctl_table for more details.
1450 */
1451struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001452 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001453 const struct ctl_path *path, struct ctl_table *table)
1454{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001455 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001456 int nr_subheaders = count_subheaders(table);
1457 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001458 const struct ctl_path *component;
1459 char *new_path, *pos;
1460
1461 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1462 if (!new_path)
1463 return NULL;
1464
1465 pos[0] = '\0';
1466 for (component = path; component->procname; component++) {
1467 pos = append_path(new_path, pos, component->procname);
1468 if (!pos)
1469 goto out;
1470 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001471 while (table->procname && table->child && !table[1].procname) {
1472 pos = append_path(new_path, pos, table->procname);
1473 if (!pos)
1474 goto out;
1475 table = table->child;
1476 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001477 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001478 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001479 if (header)
1480 header->ctl_table_arg = ctl_table_arg;
1481 } else {
1482 header = kzalloc(sizeof(*header) +
1483 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1484 if (!header)
1485 goto out;
1486
1487 subheaders = (struct ctl_table_header **) (header + 1);
1488 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001489 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001490
1491 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001492 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001493 goto err_register_leaves;
1494 }
1495
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001496out:
1497 kfree(new_path);
1498 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001499
1500err_register_leaves:
1501 while (subheader > subheaders) {
1502 struct ctl_table_header *subh = *(--subheader);
1503 struct ctl_table *table = subh->ctl_table_arg;
1504 unregister_sysctl_table(subh);
1505 kfree(table);
1506 }
1507 kfree(header);
1508 header = NULL;
1509 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001510}
1511
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001512/**
1513 * register_sysctl_table_path - register a sysctl table hierarchy
1514 * @path: The path to the directory the sysctl table is in.
1515 * @table: the top-level table structure
1516 *
1517 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1518 * array. A completely 0 filled entry terminates the table.
1519 *
1520 * See __register_sysctl_paths for more details.
1521 */
1522struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1523 struct ctl_table *table)
1524{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001525 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001526 path, table);
1527}
1528EXPORT_SYMBOL(register_sysctl_paths);
1529
1530/**
1531 * register_sysctl_table - register a sysctl table hierarchy
1532 * @table: the top-level table structure
1533 *
1534 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1535 * array. A completely 0 filled entry terminates the table.
1536 *
1537 * See register_sysctl_paths for more details.
1538 */
1539struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1540{
1541 static const struct ctl_path null_path[] = { {} };
1542
1543 return register_sysctl_paths(null_path, table);
1544}
1545EXPORT_SYMBOL(register_sysctl_table);
1546
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001547static void put_links(struct ctl_table_header *header)
1548{
1549 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1550 struct ctl_table_root *root = header->root;
1551 struct ctl_dir *parent = header->parent;
1552 struct ctl_dir *core_parent;
1553 struct ctl_table *entry;
1554
1555 if (header->set == root_set)
1556 return;
1557
1558 core_parent = xlate_dir(root_set, parent);
1559 if (IS_ERR(core_parent))
1560 return;
1561
1562 for (entry = header->ctl_table; entry->procname; entry++) {
1563 struct ctl_table_header *link_head;
1564 struct ctl_table *link;
1565 const char *name = entry->procname;
1566
1567 link = find_entry(&link_head, core_parent, name, strlen(name));
1568 if (link &&
1569 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1570 (S_ISLNK(link->mode) && (link->data == root)))) {
1571 drop_sysctl_table(link_head);
1572 }
1573 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001574 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001575 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001576 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001577 }
1578 }
1579}
1580
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001581static void drop_sysctl_table(struct ctl_table_header *header)
1582{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001583 struct ctl_dir *parent = header->parent;
1584
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001585 if (--header->nreg)
1586 return;
1587
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001588 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001589 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001590 if (!--header->count)
1591 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001592
1593 if (parent)
1594 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001595}
1596
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001597/**
1598 * unregister_sysctl_table - unregister a sysctl table hierarchy
1599 * @header: the header returned from register_sysctl_table
1600 *
1601 * Unregisters the sysctl table and all children. proc entries may not
1602 * actually be removed until they are no longer used by anyone.
1603 */
1604void unregister_sysctl_table(struct ctl_table_header * header)
1605{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001606 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001607 might_sleep();
1608
1609 if (header == NULL)
1610 return;
1611
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001612 nr_subheaders = count_subheaders(header->ctl_table_arg);
1613 if (unlikely(nr_subheaders > 1)) {
1614 struct ctl_table_header **subheaders;
1615 int i;
1616
1617 subheaders = (struct ctl_table_header **)(header + 1);
1618 for (i = nr_subheaders -1; i >= 0; i--) {
1619 struct ctl_table_header *subh = subheaders[i];
1620 struct ctl_table *table = subh->ctl_table_arg;
1621 unregister_sysctl_table(subh);
1622 kfree(table);
1623 }
1624 kfree(header);
1625 return;
1626 }
1627
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001628 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001629 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001630 spin_unlock(&sysctl_lock);
1631}
1632EXPORT_SYMBOL(unregister_sysctl_table);
1633
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001634void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001635 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001636 int (*is_seen)(struct ctl_table_set *))
1637{
Dan Carpenter13474402012-01-30 16:40:29 +03001638 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001639 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001640 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001641}
1642
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001643void retire_sysctl_set(struct ctl_table_set *set)
1644{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001645 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001646}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001647
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001648int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001649{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001650 struct proc_dir_entry *proc_sys_root;
1651
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001652 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001653 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1654 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001655 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001656
1657 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001658}