blob: a781bdf0669464ced3e213faad5ed6ab3a37a06b [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>
8#include <linux/security.h>
Al Viro40401532012-02-13 03:58:52 +00009#include <linux/sched.h>
Nick Piggin34286d62011-01-07 17:49:57 +110010#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000011#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080012#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080013#include "internal.h"
14
Al Virod72f71e2009-02-20 05:58:47 +000015static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080016static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080017static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040018static const struct file_operations proc_sys_dir_file_operations;
19static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080020
Lucas De Marchif1ecf062011-11-02 13:39:22 -070021void proc_sys_poll_notify(struct ctl_table_poll *poll)
22{
23 if (!poll)
24 return;
25
26 atomic_inc(&poll->event);
27 wake_up_interruptible(&poll->wait);
28}
29
Eric W. Biedermana1945582012-01-21 17:51:48 -080030static struct ctl_table root_table[] = {
31 {
32 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080033 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080034 },
35 { }
36};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080037static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080038 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080039 {{.count = 1,
40 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080041 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080042 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080043 .root = &sysctl_table_root,
44 .set = &sysctl_table_root.default_set,
45 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080046};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080047
48static DEFINE_SPINLOCK(sysctl_lock);
49
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080050static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080051static int sysctl_follow_link(struct ctl_table_header **phead,
52 struct ctl_table **pentry, struct nsproxy *namespaces);
53static int insert_links(struct ctl_table_header *head);
54static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080055
Eric W. Biederman69801282012-01-21 20:09:45 -080056static void sysctl_print_dir(struct ctl_dir *dir)
57{
58 if (dir->header.parent)
59 sysctl_print_dir(dir->header.parent);
60 printk(KERN_CONT "%s/", dir->header.ctl_table[0].procname);
61}
62
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080063static int namecmp(const char *name1, int len1, const char *name2, int len2)
64{
65 int minlen;
66 int cmp;
67
68 minlen = len1;
69 if (minlen > len2)
70 minlen = len2;
71
72 cmp = memcmp(name1, name2, minlen);
73 if (cmp == 0)
74 cmp = len1 - len2;
75 return cmp;
76}
77
Eric W. Biederman60f126d2012-01-30 21:23:52 -080078/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080079static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -080080 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080081{
82 struct ctl_table_header *head;
83 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080084 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080085
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080086 while (node)
87 {
88 struct ctl_node *ctl_node;
89 const char *procname;
90 int cmp;
91
92 ctl_node = rb_entry(node, struct ctl_node, node);
93 head = ctl_node->header;
94 entry = &head->ctl_table[ctl_node - head->node];
95 procname = entry->procname;
96
97 cmp = namecmp(name, namelen, procname, strlen(procname));
98 if (cmp < 0)
99 node = node->rb_left;
100 else if (cmp > 0)
101 node = node->rb_right;
102 else {
103 *phead = head;
104 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800105 }
106 }
107 return NULL;
108}
109
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800110static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
111{
112 struct rb_node *node = &head->node[entry - head->ctl_table].node;
113 struct rb_node **p = &head->parent->root.rb_node;
114 struct rb_node *parent = NULL;
115 const char *name = entry->procname;
116 int namelen = strlen(name);
117
118 while (*p) {
119 struct ctl_table_header *parent_head;
120 struct ctl_table *parent_entry;
121 struct ctl_node *parent_node;
122 const char *parent_name;
123 int cmp;
124
125 parent = *p;
126 parent_node = rb_entry(parent, struct ctl_node, node);
127 parent_head = parent_node->header;
128 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
129 parent_name = parent_entry->procname;
130
131 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
132 if (cmp < 0)
133 p = &(*p)->rb_left;
134 else if (cmp > 0)
135 p = &(*p)->rb_right;
136 else {
137 printk(KERN_ERR "sysctl duplicate entry: ");
138 sysctl_print_dir(head->parent);
139 printk(KERN_CONT "/%s\n", entry->procname);
140 return -EEXIST;
141 }
142 }
143
144 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700145 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800146 return 0;
147}
148
149static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
150{
151 struct rb_node *node = &head->node[entry - head->ctl_table].node;
152
153 rb_erase(node, &head->parent->root);
154}
155
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800156static void init_header(struct ctl_table_header *head,
157 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800158 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800159{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800160 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800161 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800162 head->used = 0;
163 head->count = 1;
164 head->nreg = 1;
165 head->unregistering = NULL;
166 head->root = root;
167 head->set = set;
168 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800169 head->node = node;
170 if (node) {
171 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700172 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800173 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800174 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800175}
176
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800177static void erase_header(struct ctl_table_header *head)
178{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800179 struct ctl_table *entry;
180 for (entry = head->ctl_table; entry->procname; entry++)
181 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800182}
183
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800184static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800185{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800186 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800187 int err;
188
189 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800190 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800191 err = insert_links(header);
192 if (err)
193 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800194 for (entry = header->ctl_table; entry->procname; entry++) {
195 err = insert_entry(header, entry);
196 if (err)
197 goto fail;
198 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800199 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800200fail:
201 erase_header(header);
202 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800203fail_links:
204 header->parent = NULL;
205 drop_sysctl_table(&dir->header);
206 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800207}
208
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800209/* called under sysctl_lock */
210static int use_table(struct ctl_table_header *p)
211{
212 if (unlikely(p->unregistering))
213 return 0;
214 p->used++;
215 return 1;
216}
217
218/* called under sysctl_lock */
219static void unuse_table(struct ctl_table_header *p)
220{
221 if (!--p->used)
222 if (unlikely(p->unregistering))
223 complete(p->unregistering);
224}
225
226/* called under sysctl_lock, will reacquire if has to wait */
227static void start_unregistering(struct ctl_table_header *p)
228{
229 /*
230 * if p->used is 0, nobody will ever touch that entry again;
231 * we'll eliminate all paths to it before dropping sysctl_lock
232 */
233 if (unlikely(p->used)) {
234 struct completion wait;
235 init_completion(&wait);
236 p->unregistering = &wait;
237 spin_unlock(&sysctl_lock);
238 wait_for_completion(&wait);
239 spin_lock(&sysctl_lock);
240 } else {
241 /* anything non-NULL; we'll never dereference it */
242 p->unregistering = ERR_PTR(-EINVAL);
243 }
244 /*
245 * do not remove from the list until nobody holds it; walking the
246 * list in do_sysctl() relies on that.
247 */
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800248 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800249}
250
251static void sysctl_head_get(struct ctl_table_header *head)
252{
253 spin_lock(&sysctl_lock);
254 head->count++;
255 spin_unlock(&sysctl_lock);
256}
257
258void sysctl_head_put(struct ctl_table_header *head)
259{
260 spin_lock(&sysctl_lock);
261 if (!--head->count)
262 kfree_rcu(head, rcu);
263 spin_unlock(&sysctl_lock);
264}
265
266static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
267{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700268 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800269 spin_lock(&sysctl_lock);
270 if (!use_table(head))
271 head = ERR_PTR(-ENOENT);
272 spin_unlock(&sysctl_lock);
273 return head;
274}
275
276static void sysctl_head_finish(struct ctl_table_header *head)
277{
278 if (!head)
279 return;
280 spin_lock(&sysctl_lock);
281 unuse_table(head);
282 spin_unlock(&sysctl_lock);
283}
284
285static struct ctl_table_set *
286lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
287{
288 struct ctl_table_set *set = &root->default_set;
289 if (root->lookup)
290 set = root->lookup(root, namespaces);
291 return set;
292}
293
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800294static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800295 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800296 const char *name, int namelen)
297{
298 struct ctl_table_header *head;
299 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800300
301 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800302 entry = find_entry(&head, dir, name, namelen);
303 if (entry && use_table(head))
304 *phead = head;
305 else
306 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800307 spin_unlock(&sysctl_lock);
308 return entry;
309}
310
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800311static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800312{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800313 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800314
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800315 for (;node; node = rb_next(node)) {
316 ctl_node = rb_entry(node, struct ctl_node, node);
317 if (use_table(ctl_node->header))
318 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800319 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800320 return NULL;
321}
322
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800323static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800324 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800325{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800326 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800327 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800328 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800329
330 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800331 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800332 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800333 if (ctl_node) {
334 head = ctl_node->header;
335 entry = &head->ctl_table[ctl_node - head->node];
336 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800337 *phead = head;
338 *pentry = entry;
339}
340
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800341static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800342{
343 struct ctl_table_header *head = *phead;
344 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800345 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800346
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800347 spin_lock(&sysctl_lock);
348 unuse_table(head);
349
350 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
351 spin_unlock(&sysctl_lock);
352 head = NULL;
353 if (ctl_node) {
354 head = ctl_node->header;
355 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800356 }
357 *phead = head;
358 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800359}
360
361void register_sysctl_root(struct ctl_table_root *root)
362{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800363}
364
365/*
366 * sysctl_perm does NOT grant the superuser all rights automatically, because
367 * some sysctl variables are readonly even to root.
368 */
369
370static int test_perm(int mode, int op)
371{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800372 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800373 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800374 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800375 mode >>= 3;
376 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
377 return 0;
378 return -EACCES;
379}
380
381static int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
382{
383 int mode;
384
385 if (root->permissions)
386 mode = root->permissions(root, current->nsproxy, table);
387 else
388 mode = table->mode;
389
390 return test_perm(mode, op);
391}
392
Al Viro9043476f2008-07-15 08:54:06 -0400393static struct inode *proc_sys_make_inode(struct super_block *sb,
394 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800395{
396 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400397 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800398
Al Viro9043476f2008-07-15 08:54:06 -0400399 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800400 if (!inode)
401 goto out;
402
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400403 inode->i_ino = get_next_ino();
404
Al Viro9043476f2008-07-15 08:54:06 -0400405 sysctl_head_get(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800406 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400407 ei->sysctl = head;
408 ei->sysctl_entry = table;
409
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800410 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Al Viro9043476f2008-07-15 08:54:06 -0400411 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800412 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400413 inode->i_mode |= S_IFREG;
414 inode->i_op = &proc_sys_inode_operations;
415 inode->i_fop = &proc_sys_file_operations;
416 } else {
417 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400418 inode->i_op = &proc_sys_dir_operations;
419 inode->i_fop = &proc_sys_dir_file_operations;
420 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800421out:
422 return inode;
423}
424
Adrian Bunk81324362008-10-03 00:33:54 +0400425static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800426{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800427 struct ctl_table_header *head = PROC_I(inode)->sysctl;
428 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800429 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800430 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800431}
432
433static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400434 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800435{
Al Viro9043476f2008-07-15 08:54:06 -0400436 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400437 struct ctl_table_header *h = NULL;
438 struct qstr *name = &dentry->d_name;
439 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800440 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400441 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800442 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800443 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800444
Al Viro9043476f2008-07-15 08:54:06 -0400445 if (IS_ERR(head))
446 return ERR_CAST(head);
447
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800448 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400449
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800450 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400451 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800452 goto out;
453
Eric W. Biederman4e757322012-01-30 21:24:59 -0800454 if (S_ISLNK(p->mode)) {
455 ret = sysctl_follow_link(&h, &p, current->nsproxy);
456 err = ERR_PTR(ret);
457 if (ret)
458 goto out;
459 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800460
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800461 err = ERR_PTR(-ENOMEM);
Al Viro9043476f2008-07-15 08:54:06 -0400462 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800463 if (!inode)
464 goto out;
465
466 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100467 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800468 d_add(dentry, inode);
469
470out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700471 if (h)
472 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800473 sysctl_head_finish(head);
474 return err;
475}
476
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700477static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
478 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800479{
Al Viro9043476f2008-07-15 08:54:06 -0400480 struct inode *inode = filp->f_path.dentry->d_inode;
481 struct ctl_table_header *head = grab_header(inode);
482 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100483 ssize_t error;
484 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800485
Al Viro9043476f2008-07-15 08:54:06 -0400486 if (IS_ERR(head))
487 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800488
489 /*
490 * At this point we know that the sysctl was not unregistered
491 * and won't be until we finish.
492 */
493 error = -EPERM;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -0700494 if (sysctl_perm(head->root, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800495 goto out;
496
Al Viro9043476f2008-07-15 08:54:06 -0400497 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
498 error = -EINVAL;
499 if (!table->proc_handler)
500 goto out;
501
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800502 /* careful: calling conventions are nasty here */
503 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700504 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800505 if (!error)
506 error = res;
507out:
508 sysctl_head_finish(head);
509
510 return error;
511}
512
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700513static ssize_t proc_sys_read(struct file *filp, char __user *buf,
514 size_t count, loff_t *ppos)
515{
516 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
517}
518
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800519static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
520 size_t count, loff_t *ppos)
521{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700522 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800523}
524
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700525static int proc_sys_open(struct inode *inode, struct file *filp)
526{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700527 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700528 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
529
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700530 /* sysctl was unregistered */
531 if (IS_ERR(head))
532 return PTR_ERR(head);
533
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700534 if (table->poll)
535 filp->private_data = proc_sys_poll_event(table->poll);
536
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700537 sysctl_head_finish(head);
538
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700539 return 0;
540}
541
542static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
543{
544 struct inode *inode = filp->f_path.dentry->d_inode;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700545 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700546 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700547 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700548 unsigned long event;
549
550 /* sysctl was unregistered */
551 if (IS_ERR(head))
552 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700553
554 if (!table->proc_handler)
555 goto out;
556
557 if (!table->poll)
558 goto out;
559
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700560 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700561 poll_wait(filp, &table->poll->wait, wait);
562
563 if (event != atomic_read(&table->poll->event)) {
564 filp->private_data = proc_sys_poll_event(table->poll);
565 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
566 }
567
568out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700569 sysctl_head_finish(head);
570
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700571 return ret;
572}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800573
574static int proc_sys_fill_cache(struct file *filp, void *dirent,
Al Viro9043476f2008-07-15 08:54:06 -0400575 filldir_t filldir,
576 struct ctl_table_header *head,
577 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800578{
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800579 struct dentry *child, *dir = filp->f_path.dentry;
580 struct inode *inode;
581 struct qstr qname;
582 ino_t ino = 0;
583 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800584
585 qname.name = table->procname;
586 qname.len = strlen(table->procname);
587 qname.hash = full_name_hash(qname.name, qname.len);
588
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800589 child = d_lookup(dir, &qname);
590 if (!child) {
Al Viro9043476f2008-07-15 08:54:06 -0400591 child = d_alloc(dir, &qname);
592 if (child) {
593 inode = proc_sys_make_inode(dir->d_sb, head, table);
594 if (!inode) {
595 dput(child);
596 return -ENOMEM;
597 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100598 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro9043476f2008-07-15 08:54:06 -0400599 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800600 }
Al Viro9043476f2008-07-15 08:54:06 -0400601 } else {
602 return -ENOMEM;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800603 }
604 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800605 inode = child->d_inode;
Al Viro9043476f2008-07-15 08:54:06 -0400606 ino = inode->i_ino;
607 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800608 dput(child);
Al Viro9043476f2008-07-15 08:54:06 -0400609 return !!filldir(dirent, qname.name, qname.len, filp->f_pos, ino, type);
610}
611
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800612static int proc_sys_link_fill_cache(struct file *filp, void *dirent,
613 filldir_t filldir,
614 struct ctl_table_header *head,
615 struct ctl_table *table)
616{
617 int err, ret = 0;
618 head = sysctl_head_grab(head);
619
Eric W. Biederman4e757322012-01-30 21:24:59 -0800620 if (S_ISLNK(table->mode)) {
621 /* It is not an error if we can not follow the link ignore it */
622 err = sysctl_follow_link(&head, &table, current->nsproxy);
623 if (err)
624 goto out;
625 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800626
627 ret = proc_sys_fill_cache(filp, dirent, filldir, head, table);
628out:
629 sysctl_head_finish(head);
630 return ret;
631}
632
Al Viro9043476f2008-07-15 08:54:06 -0400633static int scan(struct ctl_table_header *head, ctl_table *table,
634 unsigned long *pos, struct file *file,
635 void *dirent, filldir_t filldir)
636{
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800637 int res;
Al Viro9043476f2008-07-15 08:54:06 -0400638
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800639 if ((*pos)++ < file->f_pos)
640 return 0;
Al Viro9043476f2008-07-15 08:54:06 -0400641
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800642 if (unlikely(S_ISLNK(table->mode)))
643 res = proc_sys_link_fill_cache(file, dirent, filldir, head, table);
644 else
Al Viro9043476f2008-07-15 08:54:06 -0400645 res = proc_sys_fill_cache(file, dirent, filldir, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400646
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800647 if (res == 0)
648 file->f_pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400649
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800650 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800651}
652
653static int proc_sys_readdir(struct file *filp, void *dirent, filldir_t filldir)
654{
Al Viro9043476f2008-07-15 08:54:06 -0400655 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800656 struct inode *inode = dentry->d_inode;
Al Viro9043476f2008-07-15 08:54:06 -0400657 struct ctl_table_header *head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400658 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800659 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800660 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800661 unsigned long pos;
Al Viro9043476f2008-07-15 08:54:06 -0400662 int ret = -EINVAL;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800663
Al Viro9043476f2008-07-15 08:54:06 -0400664 if (IS_ERR(head))
665 return PTR_ERR(head);
666
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800667 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800668
669 ret = 0;
670 /* Avoid a switch here: arm builds fail with missing __cmpdi2 */
671 if (filp->f_pos == 0) {
672 if (filldir(dirent, ".", 1, filp->f_pos,
673 inode->i_ino, DT_DIR) < 0)
674 goto out;
675 filp->f_pos++;
676 }
677 if (filp->f_pos == 1) {
678 if (filldir(dirent, "..", 2, filp->f_pos,
679 parent_ino(dentry), DT_DIR) < 0)
680 goto out;
681 filp->f_pos++;
682 }
683 pos = 2;
684
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800685 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800686 ret = scan(h, entry, &pos, filp, dirent, filldir);
Al Viro9043476f2008-07-15 08:54:06 -0400687 if (ret) {
688 sysctl_head_finish(h);
689 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800690 }
691 }
692 ret = 1;
693out:
694 sysctl_head_finish(head);
695 return ret;
696}
697
Al Viro10556cb2011-06-20 19:28:19 -0400698static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800699{
700 /*
701 * sysctl entries that are not writeable,
702 * are _NOT_ writeable, capabilities or not.
703 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200704 struct ctl_table_header *head;
705 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800706 int error;
707
Miklos Szeredif696a362008-07-31 13:41:58 +0200708 /* Executable files are not allowed under /proc/sys/ */
709 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
710 return -EACCES;
711
712 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400713 if (IS_ERR(head))
714 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800715
Miklos Szeredif696a362008-07-31 13:41:58 +0200716 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400717 if (!table) /* global root - r-xr-xr-x */
718 error = mask & MAY_WRITE ? -EACCES : 0;
719 else /* Use the permissions on the sysctl table entry */
Al Viro1fc0f782011-06-20 18:59:02 -0400720 error = sysctl_perm(head->root, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800721
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800722 sysctl_head_finish(head);
723 return error;
724}
725
726static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
727{
728 struct inode *inode = dentry->d_inode;
729 int error;
730
731 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
732 return -EPERM;
733
734 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200735 if (error)
736 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800737
Christoph Hellwig10257742010-06-04 11:30:02 +0200738 if ((attr->ia_valid & ATTR_SIZE) &&
739 attr->ia_size != i_size_read(inode)) {
740 error = vmtruncate(inode, attr->ia_size);
741 if (error)
742 return error;
743 }
744
745 setattr_copy(inode, attr);
746 mark_inode_dirty(inode);
747 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800748}
749
Al Viro9043476f2008-07-15 08:54:06 -0400750static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
751{
752 struct inode *inode = dentry->d_inode;
753 struct ctl_table_header *head = grab_header(inode);
754 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
755
756 if (IS_ERR(head))
757 return PTR_ERR(head);
758
759 generic_fillattr(inode, stat);
760 if (table)
761 stat->mode = (stat->mode & S_IFMT) | table->mode;
762
763 sysctl_head_finish(head);
764 return 0;
765}
766
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800767static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700768 .open = proc_sys_open,
769 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800770 .read = proc_sys_read,
771 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200772 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400773};
774
775static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700776 .read = generic_read_dir,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800777 .readdir = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200778 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800779};
780
Jan Engelhardt03a44822008-02-08 04:21:19 -0800781static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400782 .permission = proc_sys_permission,
783 .setattr = proc_sys_setattr,
784 .getattr = proc_sys_getattr,
785};
786
787static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800788 .lookup = proc_sys_lookup,
789 .permission = proc_sys_permission,
790 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400791 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800792};
793
Al Viro0b728e12012-06-10 16:03:43 -0400794static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800795{
Al Viro0b728e12012-06-10 16:03:43 -0400796 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100797 return -ECHILD;
Al Viro9043476f2008-07-15 08:54:06 -0400798 return !PROC_I(dentry->d_inode)->sysctl->unregistering;
799}
800
Nick Pigginfe15ce42011-01-07 17:49:23 +1100801static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400802{
803 return !!PROC_I(dentry->d_inode)->sysctl->unregistering;
804}
805
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800806static int sysctl_is_seen(struct ctl_table_header *p)
807{
808 struct ctl_table_set *set = p->set;
809 int res;
810 spin_lock(&sysctl_lock);
811 if (p->unregistering)
812 res = 0;
813 else if (!set->is_seen)
814 res = 1;
815 else
816 res = set->is_seen(set);
817 spin_unlock(&sysctl_lock);
818 return res;
819}
820
Nick Piggin621e1552011-01-07 17:49:27 +1100821static int proc_sys_compare(const struct dentry *parent,
822 const struct inode *pinode,
823 const struct dentry *dentry, const struct inode *inode,
824 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400825{
Al Virodfef6dcd32011-03-08 01:25:28 -0500826 struct ctl_table_header *head;
Nick Piggin31e6b012011-01-07 17:49:52 +1100827 /* Although proc doesn't have negative dentries, rcu-walk means
828 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500829 /* AV: can it, indeed? */
Nick Piggin31e6b012011-01-07 17:49:52 +1100830 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500831 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100832 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400833 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100834 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400835 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500836 head = rcu_dereference(PROC_I(inode)->sysctl);
837 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800838}
839
Al Virod72f71e2009-02-20 05:58:47 +0000840static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800841 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400842 .d_delete = proc_sys_delete,
843 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800844};
845
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800846static struct ctl_dir *find_subdir(struct ctl_dir *dir,
847 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800848{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800849 struct ctl_table_header *head;
850 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800851
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800852 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800853 if (!entry)
854 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800855 if (!S_ISDIR(entry->mode))
856 return ERR_PTR(-ENOTDIR);
857 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800858}
859
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800860static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800861 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800862{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800863 struct ctl_table *table;
864 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800865 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800866 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800867
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800868 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
869 sizeof(struct ctl_table)*2 + namelen + 1,
870 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800871 if (!new)
872 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800873
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800874 node = (struct ctl_node *)(new + 1);
875 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800876 new_name = (char *)(table + 2);
877 memcpy(new_name, name, namelen);
878 new_name[namelen] = '\0';
879 table[0].procname = new_name;
880 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800881 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800882
883 return new;
884}
885
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800886/**
887 * get_subdir - find or create a subdir with the specified name.
888 * @dir: Directory to create the subdirectory in
889 * @name: The name of the subdirectory to find or create
890 * @namelen: The length of name
891 *
892 * Takes a directory with an elevated reference count so we know that
893 * if we drop the lock the directory will not go away. Upon success
894 * the reference is moved from @dir to the returned subdirectory.
895 * Upon error an error code is returned and the reference on @dir is
896 * simply dropped.
897 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800898static struct ctl_dir *get_subdir(struct ctl_dir *dir,
899 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800900{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800901 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800902 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800903 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800904
905 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800906 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800907 if (!IS_ERR(subdir))
908 goto found;
909 if (PTR_ERR(subdir) != -ENOENT)
910 goto failed;
911
912 spin_unlock(&sysctl_lock);
913 new = new_dir(set, name, namelen);
914 spin_lock(&sysctl_lock);
915 subdir = ERR_PTR(-ENOMEM);
916 if (!new)
917 goto failed;
918
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800919 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800920 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800921 if (!IS_ERR(subdir))
922 goto found;
923 if (PTR_ERR(subdir) != -ENOENT)
924 goto failed;
925
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800926 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800927 err = insert_header(dir, &new->header);
928 subdir = ERR_PTR(err);
929 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800930 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800931 subdir = new;
932found:
933 subdir->header.nreg++;
934failed:
935 if (unlikely(IS_ERR(subdir))) {
Eric W. Biederman69801282012-01-21 20:09:45 -0800936 printk(KERN_ERR "sysctl could not get directory: ");
937 sysctl_print_dir(dir);
938 printk(KERN_CONT "/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800939 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800940 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800941 drop_sysctl_table(&dir->header);
942 if (new)
943 drop_sysctl_table(&new->header);
944 spin_unlock(&sysctl_lock);
945 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800946}
947
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800948static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
949{
950 struct ctl_dir *parent;
951 const char *procname;
952 if (!dir->header.parent)
953 return &set->dir;
954 parent = xlate_dir(set, dir->header.parent);
955 if (IS_ERR(parent))
956 return parent;
957 procname = dir->header.ctl_table[0].procname;
958 return find_subdir(parent, procname, strlen(procname));
959}
960
961static int sysctl_follow_link(struct ctl_table_header **phead,
962 struct ctl_table **pentry, struct nsproxy *namespaces)
963{
964 struct ctl_table_header *head;
965 struct ctl_table_root *root;
966 struct ctl_table_set *set;
967 struct ctl_table *entry;
968 struct ctl_dir *dir;
969 int ret;
970
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800971 ret = 0;
972 spin_lock(&sysctl_lock);
973 root = (*pentry)->data;
974 set = lookup_header_set(root, namespaces);
975 dir = xlate_dir(set, (*phead)->parent);
976 if (IS_ERR(dir))
977 ret = PTR_ERR(dir);
978 else {
979 const char *procname = (*pentry)->procname;
980 head = NULL;
981 entry = find_entry(&head, dir, procname, strlen(procname));
982 ret = -ENOENT;
983 if (entry && use_table(head)) {
984 unuse_table(*phead);
985 *phead = head;
986 *pentry = entry;
987 ret = 0;
988 }
989 }
990
991 spin_unlock(&sysctl_lock);
992 return ret;
993}
994
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800995static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
996{
997 struct va_format vaf;
998 va_list args;
999
1000 va_start(args, fmt);
1001 vaf.fmt = fmt;
1002 vaf.va = &args;
1003
1004 printk(KERN_ERR "sysctl table check failed: %s/%s %pV\n",
1005 path, table->procname, &vaf);
1006
1007 va_end(args);
1008 return -EINVAL;
1009}
1010
1011static int sysctl_check_table(const char *path, struct ctl_table *table)
1012{
1013 int err = 0;
1014 for (; table->procname; table++) {
1015 if (table->child)
1016 err = sysctl_err(path, table, "Not a file");
1017
1018 if ((table->proc_handler == proc_dostring) ||
1019 (table->proc_handler == proc_dointvec) ||
1020 (table->proc_handler == proc_dointvec_minmax) ||
1021 (table->proc_handler == proc_dointvec_jiffies) ||
1022 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1023 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1024 (table->proc_handler == proc_doulongvec_minmax) ||
1025 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1026 if (!table->data)
1027 err = sysctl_err(path, table, "No data");
1028 if (!table->maxlen)
1029 err = sysctl_err(path, table, "No maxlen");
1030 }
1031 if (!table->proc_handler)
1032 err = sysctl_err(path, table, "No proc_handler");
1033
1034 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1035 err = sysctl_err(path, table, "bogus .mode 0%o",
1036 table->mode);
1037 }
1038 return err;
1039}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001040
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001041static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1042 struct ctl_table_root *link_root)
1043{
1044 struct ctl_table *link_table, *entry, *link;
1045 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001046 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001047 char *link_name;
1048 int nr_entries, name_bytes;
1049
1050 name_bytes = 0;
1051 nr_entries = 0;
1052 for (entry = table; entry->procname; entry++) {
1053 nr_entries++;
1054 name_bytes += strlen(entry->procname) + 1;
1055 }
1056
1057 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001058 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001059 sizeof(struct ctl_table)*(nr_entries + 1) +
1060 name_bytes,
1061 GFP_KERNEL);
1062
1063 if (!links)
1064 return NULL;
1065
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001066 node = (struct ctl_node *)(links + 1);
1067 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001068 link_name = (char *)&link_table[nr_entries + 1];
1069
1070 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1071 int len = strlen(entry->procname) + 1;
1072 memcpy(link_name, entry->procname, len);
1073 link->procname = link_name;
1074 link->mode = S_IFLNK|S_IRWXUGO;
1075 link->data = link_root;
1076 link_name += len;
1077 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001078 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001079 links->nreg = nr_entries;
1080
1081 return links;
1082}
1083
1084static bool get_links(struct ctl_dir *dir,
1085 struct ctl_table *table, struct ctl_table_root *link_root)
1086{
1087 struct ctl_table_header *head;
1088 struct ctl_table *entry, *link;
1089
1090 /* Are there links available for every entry in table? */
1091 for (entry = table; entry->procname; entry++) {
1092 const char *procname = entry->procname;
1093 link = find_entry(&head, dir, procname, strlen(procname));
1094 if (!link)
1095 return false;
1096 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1097 continue;
1098 if (S_ISLNK(link->mode) && (link->data == link_root))
1099 continue;
1100 return false;
1101 }
1102
1103 /* The checks passed. Increase the registration count on the links */
1104 for (entry = table; entry->procname; entry++) {
1105 const char *procname = entry->procname;
1106 link = find_entry(&head, dir, procname, strlen(procname));
1107 head->nreg++;
1108 }
1109 return true;
1110}
1111
1112static int insert_links(struct ctl_table_header *head)
1113{
1114 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1115 struct ctl_dir *core_parent = NULL;
1116 struct ctl_table_header *links;
1117 int err;
1118
1119 if (head->set == root_set)
1120 return 0;
1121
1122 core_parent = xlate_dir(root_set, head->parent);
1123 if (IS_ERR(core_parent))
1124 return 0;
1125
1126 if (get_links(core_parent, head->ctl_table, head->root))
1127 return 0;
1128
1129 core_parent->header.nreg++;
1130 spin_unlock(&sysctl_lock);
1131
1132 links = new_links(core_parent, head->ctl_table, head->root);
1133
1134 spin_lock(&sysctl_lock);
1135 err = -ENOMEM;
1136 if (!links)
1137 goto out;
1138
1139 err = 0;
1140 if (get_links(core_parent, head->ctl_table, head->root)) {
1141 kfree(links);
1142 goto out;
1143 }
1144
1145 err = insert_header(core_parent, links);
1146 if (err)
1147 kfree(links);
1148out:
1149 drop_sysctl_table(&core_parent->header);
1150 return err;
1151}
1152
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001153/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001154 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001155 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001156 * @path: The path to the directory the sysctl table is in.
1157 * @table: the top-level table structure
1158 *
1159 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1160 * array. A completely 0 filled entry terminates the table.
1161 *
1162 * The members of the &struct ctl_table structure are used as follows:
1163 *
1164 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1165 * enter a sysctl file
1166 *
1167 * data - a pointer to data for use by proc_handler
1168 *
1169 * maxlen - the maximum size in bytes of the data
1170 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001171 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001172 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001173 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001174 *
1175 * proc_handler - the text handler routine (described below)
1176 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001177 * extra1, extra2 - extra pointers usable by the proc handler routines
1178 *
1179 * Leaf nodes in the sysctl tree will be represented by a single file
1180 * under /proc; non-leaf nodes will be represented by directories.
1181 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001182 * There must be a proc_handler routine for any terminal nodes.
1183 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001184 *
1185 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1186 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1187 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1188 *
1189 * It is the handler's job to read the input buffer from user memory
1190 * and process it. The handler should return 0 on success.
1191 *
1192 * This routine returns %NULL on a failure to register, and a pointer
1193 * to the table header on success.
1194 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001195struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001196 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001197 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001198{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001199 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001200 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001201 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001202 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001203 struct ctl_table *entry;
1204 struct ctl_node *node;
1205 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001206
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001207 for (entry = table; entry->procname; entry++)
1208 nr_entries++;
1209
1210 header = kzalloc(sizeof(struct ctl_table_header) +
1211 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001212 if (!header)
1213 return NULL;
1214
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001215 node = (struct ctl_node *)(header + 1);
1216 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001217 if (sysctl_check_table(path, table))
1218 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001219
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001220 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001221 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001222 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001223 dir->header.nreg++;
1224 spin_unlock(&sysctl_lock);
1225
1226 /* Find the directory for the ctl_table */
1227 for (name = path; name; name = nextname) {
1228 int namelen;
1229 nextname = strchr(name, '/');
1230 if (nextname) {
1231 namelen = nextname - name;
1232 nextname++;
1233 } else {
1234 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001235 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001236 if (namelen == 0)
1237 continue;
1238
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001239 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001240 if (IS_ERR(dir))
1241 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001242 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001243
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001244 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001245 if (insert_header(dir, header))
1246 goto fail_put_dir_locked;
1247
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001248 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001249 spin_unlock(&sysctl_lock);
1250
1251 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001252
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001253fail_put_dir_locked:
1254 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001255 spin_unlock(&sysctl_lock);
1256fail:
1257 kfree(header);
1258 dump_stack();
1259 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001260}
1261
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001262/**
1263 * register_sysctl - register a sysctl table
1264 * @path: The path to the directory the sysctl table is in.
1265 * @table: the table structure
1266 *
1267 * Register a sysctl table. @table should be a filled in ctl_table
1268 * array. A completely 0 filled entry terminates the table.
1269 *
1270 * See __register_sysctl_table for more details.
1271 */
1272struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1273{
1274 return __register_sysctl_table(&sysctl_table_root.default_set,
1275 path, table);
1276}
1277EXPORT_SYMBOL(register_sysctl);
1278
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001279static char *append_path(const char *path, char *pos, const char *name)
1280{
1281 int namelen;
1282 namelen = strlen(name);
1283 if (((pos - path) + namelen + 2) >= PATH_MAX)
1284 return NULL;
1285 memcpy(pos, name, namelen);
1286 pos[namelen] = '/';
1287 pos[namelen + 1] = '\0';
1288 pos += namelen + 1;
1289 return pos;
1290}
1291
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001292static int count_subheaders(struct ctl_table *table)
1293{
1294 int has_files = 0;
1295 int nr_subheaders = 0;
1296 struct ctl_table *entry;
1297
1298 /* special case: no directory and empty directory */
1299 if (!table || !table->procname)
1300 return 1;
1301
1302 for (entry = table; entry->procname; entry++) {
1303 if (entry->child)
1304 nr_subheaders += count_subheaders(entry->child);
1305 else
1306 has_files = 1;
1307 }
1308 return nr_subheaders + has_files;
1309}
1310
1311static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001312 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001313 struct ctl_table *table)
1314{
1315 struct ctl_table *ctl_table_arg = NULL;
1316 struct ctl_table *entry, *files;
1317 int nr_files = 0;
1318 int nr_dirs = 0;
1319 int err = -ENOMEM;
1320
1321 for (entry = table; entry->procname; entry++) {
1322 if (entry->child)
1323 nr_dirs++;
1324 else
1325 nr_files++;
1326 }
1327
1328 files = table;
1329 /* If there are mixed files and directories we need a new table */
1330 if (nr_dirs && nr_files) {
1331 struct ctl_table *new;
1332 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1333 GFP_KERNEL);
1334 if (!files)
1335 goto out;
1336
1337 ctl_table_arg = files;
1338 for (new = files, entry = table; entry->procname; entry++) {
1339 if (entry->child)
1340 continue;
1341 *new = *entry;
1342 new++;
1343 }
1344 }
1345
1346 /* Register everything except a directory full of subdirectories */
1347 if (nr_files || !nr_dirs) {
1348 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001349 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001350 if (!header) {
1351 kfree(ctl_table_arg);
1352 goto out;
1353 }
1354
1355 /* Remember if we need to free the file table */
1356 header->ctl_table_arg = ctl_table_arg;
1357 **subheader = header;
1358 (*subheader)++;
1359 }
1360
1361 /* Recurse into the subdirectories. */
1362 for (entry = table; entry->procname; entry++) {
1363 char *child_pos;
1364
1365 if (!entry->child)
1366 continue;
1367
1368 err = -ENAMETOOLONG;
1369 child_pos = append_path(path, pos, entry->procname);
1370 if (!child_pos)
1371 goto out;
1372
1373 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001374 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001375 pos[0] = '\0';
1376 if (err)
1377 goto out;
1378 }
1379 err = 0;
1380out:
1381 /* On failure our caller will unregister all registered subheaders */
1382 return err;
1383}
1384
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001385/**
1386 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001387 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001388 * @path: The path to the directory the sysctl table is in.
1389 * @table: the top-level table structure
1390 *
1391 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1392 * array. A completely 0 filled entry terminates the table.
1393 *
1394 * See __register_sysctl_table for more details.
1395 */
1396struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001397 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001398 const struct ctl_path *path, struct ctl_table *table)
1399{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001400 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001401 int nr_subheaders = count_subheaders(table);
1402 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001403 const struct ctl_path *component;
1404 char *new_path, *pos;
1405
1406 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1407 if (!new_path)
1408 return NULL;
1409
1410 pos[0] = '\0';
1411 for (component = path; component->procname; component++) {
1412 pos = append_path(new_path, pos, component->procname);
1413 if (!pos)
1414 goto out;
1415 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001416 while (table->procname && table->child && !table[1].procname) {
1417 pos = append_path(new_path, pos, table->procname);
1418 if (!pos)
1419 goto out;
1420 table = table->child;
1421 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001422 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001423 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001424 if (header)
1425 header->ctl_table_arg = ctl_table_arg;
1426 } else {
1427 header = kzalloc(sizeof(*header) +
1428 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1429 if (!header)
1430 goto out;
1431
1432 subheaders = (struct ctl_table_header **) (header + 1);
1433 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001434 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001435
1436 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001437 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001438 goto err_register_leaves;
1439 }
1440
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001441out:
1442 kfree(new_path);
1443 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001444
1445err_register_leaves:
1446 while (subheader > subheaders) {
1447 struct ctl_table_header *subh = *(--subheader);
1448 struct ctl_table *table = subh->ctl_table_arg;
1449 unregister_sysctl_table(subh);
1450 kfree(table);
1451 }
1452 kfree(header);
1453 header = NULL;
1454 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001455}
1456
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001457/**
1458 * register_sysctl_table_path - register a sysctl table hierarchy
1459 * @path: The path to the directory the sysctl table is in.
1460 * @table: the top-level table structure
1461 *
1462 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1463 * array. A completely 0 filled entry terminates the table.
1464 *
1465 * See __register_sysctl_paths for more details.
1466 */
1467struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1468 struct ctl_table *table)
1469{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001470 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001471 path, table);
1472}
1473EXPORT_SYMBOL(register_sysctl_paths);
1474
1475/**
1476 * register_sysctl_table - register a sysctl table hierarchy
1477 * @table: the top-level table structure
1478 *
1479 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1480 * array. A completely 0 filled entry terminates the table.
1481 *
1482 * See register_sysctl_paths for more details.
1483 */
1484struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1485{
1486 static const struct ctl_path null_path[] = { {} };
1487
1488 return register_sysctl_paths(null_path, table);
1489}
1490EXPORT_SYMBOL(register_sysctl_table);
1491
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001492static void put_links(struct ctl_table_header *header)
1493{
1494 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1495 struct ctl_table_root *root = header->root;
1496 struct ctl_dir *parent = header->parent;
1497 struct ctl_dir *core_parent;
1498 struct ctl_table *entry;
1499
1500 if (header->set == root_set)
1501 return;
1502
1503 core_parent = xlate_dir(root_set, parent);
1504 if (IS_ERR(core_parent))
1505 return;
1506
1507 for (entry = header->ctl_table; entry->procname; entry++) {
1508 struct ctl_table_header *link_head;
1509 struct ctl_table *link;
1510 const char *name = entry->procname;
1511
1512 link = find_entry(&link_head, core_parent, name, strlen(name));
1513 if (link &&
1514 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1515 (S_ISLNK(link->mode) && (link->data == root)))) {
1516 drop_sysctl_table(link_head);
1517 }
1518 else {
1519 printk(KERN_ERR "sysctl link missing during unregister: ");
1520 sysctl_print_dir(parent);
1521 printk(KERN_CONT "/%s\n", name);
1522 }
1523 }
1524}
1525
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001526static void drop_sysctl_table(struct ctl_table_header *header)
1527{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001528 struct ctl_dir *parent = header->parent;
1529
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001530 if (--header->nreg)
1531 return;
1532
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001533 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001534 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001535 if (!--header->count)
1536 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001537
1538 if (parent)
1539 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001540}
1541
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001542/**
1543 * unregister_sysctl_table - unregister a sysctl table hierarchy
1544 * @header: the header returned from register_sysctl_table
1545 *
1546 * Unregisters the sysctl table and all children. proc entries may not
1547 * actually be removed until they are no longer used by anyone.
1548 */
1549void unregister_sysctl_table(struct ctl_table_header * header)
1550{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001551 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001552 might_sleep();
1553
1554 if (header == NULL)
1555 return;
1556
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001557 nr_subheaders = count_subheaders(header->ctl_table_arg);
1558 if (unlikely(nr_subheaders > 1)) {
1559 struct ctl_table_header **subheaders;
1560 int i;
1561
1562 subheaders = (struct ctl_table_header **)(header + 1);
1563 for (i = nr_subheaders -1; i >= 0; i--) {
1564 struct ctl_table_header *subh = subheaders[i];
1565 struct ctl_table *table = subh->ctl_table_arg;
1566 unregister_sysctl_table(subh);
1567 kfree(table);
1568 }
1569 kfree(header);
1570 return;
1571 }
1572
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001573 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001574 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001575 spin_unlock(&sysctl_lock);
1576}
1577EXPORT_SYMBOL(unregister_sysctl_table);
1578
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001579void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001580 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001581 int (*is_seen)(struct ctl_table_set *))
1582{
Dan Carpenter13474402012-01-30 16:40:29 +03001583 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001584 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001585 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001586}
1587
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001588void retire_sysctl_set(struct ctl_table_set *set)
1589{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001590 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001591}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001592
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001593int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001594{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001595 struct proc_dir_entry *proc_sys_root;
1596
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001597 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001598 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1599 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001600 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001601
1602 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001603}