blob: 668c397052e008aeb8651009a5487a1d2e06bed4 [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>
Chintan Pandya4d3267c2013-07-02 16:00:49 -070013#include <linux/kmemleak.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 Viro90434762008-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
Lucas De Marchif1ecf062011-11-02 13:39:22 -070022void proc_sys_poll_notify(struct ctl_table_poll *poll)
23{
24 if (!poll)
25 return;
26
27 atomic_inc(&poll->event);
28 wake_up_interruptible(&poll->wait);
29}
30
Eric W. Biedermana1945582012-01-21 17:51:48 -080031static struct ctl_table root_table[] = {
32 {
33 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080034 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080035 },
36 { }
37};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080038static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080039 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080040 {{.count = 1,
41 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080042 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080043 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080044 .root = &sysctl_table_root,
45 .set = &sysctl_table_root.default_set,
46 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080047};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080048
49static DEFINE_SPINLOCK(sysctl_lock);
50
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080051static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080052static int sysctl_follow_link(struct ctl_table_header **phead,
53 struct ctl_table **pentry, struct nsproxy *namespaces);
54static int insert_links(struct ctl_table_header *head);
55static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080056
Eric W. Biederman69801282012-01-21 20:09:45 -080057static void sysctl_print_dir(struct ctl_dir *dir)
58{
59 if (dir->header.parent)
60 sysctl_print_dir(dir->header.parent);
61 printk(KERN_CONT "%s/", dir->header.ctl_table[0].procname);
62}
63
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080064static int namecmp(const char *name1, int len1, const char *name2, int len2)
65{
66 int minlen;
67 int cmp;
68
69 minlen = len1;
70 if (minlen > len2)
71 minlen = len2;
72
73 cmp = memcmp(name1, name2, minlen);
74 if (cmp == 0)
75 cmp = len1 - len2;
76 return cmp;
77}
78
Eric W. Biederman60f126d2012-01-30 21:23:52 -080079/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080080static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -080081 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080082{
83 struct ctl_table_header *head;
84 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080085 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080086
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080087 while (node)
88 {
89 struct ctl_node *ctl_node;
90 const char *procname;
91 int cmp;
92
93 ctl_node = rb_entry(node, struct ctl_node, node);
94 head = ctl_node->header;
95 entry = &head->ctl_table[ctl_node - head->node];
96 procname = entry->procname;
97
98 cmp = namecmp(name, namelen, procname, strlen(procname));
99 if (cmp < 0)
100 node = node->rb_left;
101 else if (cmp > 0)
102 node = node->rb_right;
103 else {
104 *phead = head;
105 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800106 }
107 }
108 return NULL;
109}
110
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800111static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
112{
113 struct rb_node *node = &head->node[entry - head->ctl_table].node;
114 struct rb_node **p = &head->parent->root.rb_node;
115 struct rb_node *parent = NULL;
116 const char *name = entry->procname;
117 int namelen = strlen(name);
118
119 while (*p) {
120 struct ctl_table_header *parent_head;
121 struct ctl_table *parent_entry;
122 struct ctl_node *parent_node;
123 const char *parent_name;
124 int cmp;
125
126 parent = *p;
127 parent_node = rb_entry(parent, struct ctl_node, node);
128 parent_head = parent_node->header;
129 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
130 parent_name = parent_entry->procname;
131
132 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
133 if (cmp < 0)
134 p = &(*p)->rb_left;
135 else if (cmp > 0)
136 p = &(*p)->rb_right;
137 else {
138 printk(KERN_ERR "sysctl duplicate entry: ");
139 sysctl_print_dir(head->parent);
140 printk(KERN_CONT "/%s\n", entry->procname);
141 return -EEXIST;
142 }
143 }
144
145 rb_link_node(node, parent, p);
146 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;
172 for (entry = table; entry->procname; entry++, node++) {
173 rb_init_node(&node->node);
174 node->header = head;
175 }
176 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800177}
178
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800179static void erase_header(struct ctl_table_header *head)
180{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800181 struct ctl_table *entry;
182 for (entry = head->ctl_table; entry->procname; entry++)
183 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800184}
185
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800186static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800187{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800188 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800189 int err;
190
191 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800192 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800193 err = insert_links(header);
194 if (err)
195 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800196 for (entry = header->ctl_table; entry->procname; entry++) {
197 err = insert_entry(header, entry);
198 if (err)
199 goto fail;
200 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800201 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800202fail:
203 erase_header(header);
204 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800205fail_links:
206 header->parent = NULL;
207 drop_sysctl_table(&dir->header);
208 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800209}
210
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800211/* called under sysctl_lock */
212static int use_table(struct ctl_table_header *p)
213{
214 if (unlikely(p->unregistering))
215 return 0;
216 p->used++;
217 return 1;
218}
219
220/* called under sysctl_lock */
221static void unuse_table(struct ctl_table_header *p)
222{
223 if (!--p->used)
224 if (unlikely(p->unregistering))
225 complete(p->unregistering);
226}
227
228/* called under sysctl_lock, will reacquire if has to wait */
229static void start_unregistering(struct ctl_table_header *p)
230{
231 /*
232 * if p->used is 0, nobody will ever touch that entry again;
233 * we'll eliminate all paths to it before dropping sysctl_lock
234 */
235 if (unlikely(p->used)) {
236 struct completion wait;
237 init_completion(&wait);
238 p->unregistering = &wait;
239 spin_unlock(&sysctl_lock);
240 wait_for_completion(&wait);
241 spin_lock(&sysctl_lock);
242 } else {
243 /* anything non-NULL; we'll never dereference it */
244 p->unregistering = ERR_PTR(-EINVAL);
245 }
246 /*
247 * do not remove from the list until nobody holds it; walking the
248 * list in do_sysctl() relies on that.
249 */
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800250 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800251}
252
253static void sysctl_head_get(struct ctl_table_header *head)
254{
255 spin_lock(&sysctl_lock);
256 head->count++;
257 spin_unlock(&sysctl_lock);
258}
259
260void sysctl_head_put(struct ctl_table_header *head)
261{
262 spin_lock(&sysctl_lock);
263 if (!--head->count)
264 kfree_rcu(head, rcu);
265 spin_unlock(&sysctl_lock);
266}
267
268static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
269{
270 if (!head)
271 BUG();
272 spin_lock(&sysctl_lock);
273 if (!use_table(head))
274 head = ERR_PTR(-ENOENT);
275 spin_unlock(&sysctl_lock);
276 return head;
277}
278
279static void sysctl_head_finish(struct ctl_table_header *head)
280{
281 if (!head)
282 return;
283 spin_lock(&sysctl_lock);
284 unuse_table(head);
285 spin_unlock(&sysctl_lock);
286}
287
288static struct ctl_table_set *
289lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
290{
291 struct ctl_table_set *set = &root->default_set;
292 if (root->lookup)
293 set = root->lookup(root, namespaces);
294 return set;
295}
296
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800297static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800298 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800299 const char *name, int namelen)
300{
301 struct ctl_table_header *head;
302 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800303
304 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800305 entry = find_entry(&head, dir, name, namelen);
306 if (entry && use_table(head))
307 *phead = head;
308 else
309 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800310 spin_unlock(&sysctl_lock);
311 return entry;
312}
313
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800314static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800315{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800316 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800317
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800318 for (;node; node = rb_next(node)) {
319 ctl_node = rb_entry(node, struct ctl_node, node);
320 if (use_table(ctl_node->header))
321 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800322 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800323 return NULL;
324}
325
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800326static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800327 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800328{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800329 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800330 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800331 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800332
333 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800334 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800335 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800336 if (ctl_node) {
337 head = ctl_node->header;
338 entry = &head->ctl_table[ctl_node - head->node];
339 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800340 *phead = head;
341 *pentry = entry;
342}
343
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800344static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800345{
346 struct ctl_table_header *head = *phead;
347 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800348 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800349
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800350 spin_lock(&sysctl_lock);
351 unuse_table(head);
352
353 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
354 spin_unlock(&sysctl_lock);
355 head = NULL;
356 if (ctl_node) {
357 head = ctl_node->header;
358 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800359 }
360 *phead = head;
361 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800362}
363
364void register_sysctl_root(struct ctl_table_root *root)
365{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800366}
367
368/*
369 * sysctl_perm does NOT grant the superuser all rights automatically, because
370 * some sysctl variables are readonly even to root.
371 */
372
373static int test_perm(int mode, int op)
374{
375 if (!current_euid())
376 mode >>= 6;
377 else if (in_egroup_p(0))
378 mode >>= 3;
379 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
380 return 0;
381 return -EACCES;
382}
383
384static int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
385{
386 int mode;
387
388 if (root->permissions)
389 mode = root->permissions(root, current->nsproxy, table);
390 else
391 mode = table->mode;
392
393 return test_perm(mode, op);
394}
395
Al Viro90434762008-07-15 08:54:06 -0400396static struct inode *proc_sys_make_inode(struct super_block *sb,
397 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800398{
399 struct inode *inode;
Al Viro90434762008-07-15 08:54:06 -0400400 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800401
Al Viro90434762008-07-15 08:54:06 -0400402 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800403 if (!inode)
404 goto out;
405
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400406 inode->i_ino = get_next_ino();
407
Al Viro90434762008-07-15 08:54:06 -0400408 sysctl_head_get(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800409 ei = PROC_I(inode);
Al Viro90434762008-07-15 08:54:06 -0400410 ei->sysctl = head;
411 ei->sysctl_entry = table;
412
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800413 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Al Viro90434762008-07-15 08:54:06 -0400414 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800415 if (!S_ISDIR(table->mode)) {
Al Viro90434762008-07-15 08:54:06 -0400416 inode->i_mode |= S_IFREG;
417 inode->i_op = &proc_sys_inode_operations;
418 inode->i_fop = &proc_sys_file_operations;
419 } else {
420 inode->i_mode |= S_IFDIR;
Al Viro90434762008-07-15 08:54:06 -0400421 inode->i_op = &proc_sys_dir_operations;
422 inode->i_fop = &proc_sys_dir_file_operations;
423 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800424out:
425 return inode;
426}
427
Adrian Bunk81324362008-10-03 00:33:54 +0400428static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800429{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800430 struct ctl_table_header *head = PROC_I(inode)->sysctl;
431 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800432 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800433 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800434}
435
436static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
437 struct nameidata *nd)
438{
Al Viro90434762008-07-15 08:54:06 -0400439 struct ctl_table_header *head = grab_header(dir);
Al Viro90434762008-07-15 08:54:06 -0400440 struct ctl_table_header *h = NULL;
441 struct qstr *name = &dentry->d_name;
442 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800443 struct inode *inode;
Al Viro90434762008-07-15 08:54:06 -0400444 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800445 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800446 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800447
Al Viro90434762008-07-15 08:54:06 -0400448 if (IS_ERR(head))
449 return ERR_CAST(head);
450
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800451 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro90434762008-07-15 08:54:06 -0400452
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800453 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro90434762008-07-15 08:54:06 -0400454 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800455 goto out;
456
Eric W. Biederman4e757322012-01-30 21:24:59 -0800457 if (S_ISLNK(p->mode)) {
458 ret = sysctl_follow_link(&h, &p, current->nsproxy);
459 err = ERR_PTR(ret);
460 if (ret)
461 goto out;
462 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800463
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800464 err = ERR_PTR(-ENOMEM);
Al Viro90434762008-07-15 08:54:06 -0400465 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
466 if (h)
467 sysctl_head_finish(h);
468
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800469 if (!inode)
470 goto out;
471
472 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100473 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800474 d_add(dentry, inode);
475
476out:
477 sysctl_head_finish(head);
478 return err;
479}
480
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700481static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
482 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800483{
Al Viro90434762008-07-15 08:54:06 -0400484 struct inode *inode = filp->f_path.dentry->d_inode;
485 struct ctl_table_header *head = grab_header(inode);
486 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100487 ssize_t error;
488 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800489
Al Viro90434762008-07-15 08:54:06 -0400490 if (IS_ERR(head))
491 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800492
493 /*
494 * At this point we know that the sysctl was not unregistered
495 * and won't be until we finish.
496 */
497 error = -EPERM;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -0700498 if (sysctl_perm(head->root, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800499 goto out;
500
Al Viro90434762008-07-15 08:54:06 -0400501 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
502 error = -EINVAL;
503 if (!table->proc_handler)
504 goto out;
505
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800506 /* careful: calling conventions are nasty here */
507 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700508 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800509 if (!error)
510 error = res;
511out:
512 sysctl_head_finish(head);
513
514 return error;
515}
516
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700517static ssize_t proc_sys_read(struct file *filp, char __user *buf,
518 size_t count, loff_t *ppos)
519{
520 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
521}
522
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800523static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
524 size_t count, loff_t *ppos)
525{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700526 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800527}
528
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700529static int proc_sys_open(struct inode *inode, struct file *filp)
530{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700531 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700532 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
533
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700534 /* sysctl was unregistered */
535 if (IS_ERR(head))
536 return PTR_ERR(head);
537
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700538 if (table->poll)
539 filp->private_data = proc_sys_poll_event(table->poll);
540
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700541 sysctl_head_finish(head);
542
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700543 return 0;
544}
545
546static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
547{
548 struct inode *inode = filp->f_path.dentry->d_inode;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700549 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700550 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700551 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700552 unsigned long event;
553
554 /* sysctl was unregistered */
555 if (IS_ERR(head))
556 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700557
558 if (!table->proc_handler)
559 goto out;
560
561 if (!table->poll)
562 goto out;
563
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700564 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700565 poll_wait(filp, &table->poll->wait, wait);
566
567 if (event != atomic_read(&table->poll->event)) {
568 filp->private_data = proc_sys_poll_event(table->poll);
569 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
570 }
571
572out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700573 sysctl_head_finish(head);
574
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700575 return ret;
576}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800577
578static int proc_sys_fill_cache(struct file *filp, void *dirent,
Al Viro90434762008-07-15 08:54:06 -0400579 filldir_t filldir,
580 struct ctl_table_header *head,
581 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800582{
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800583 struct dentry *child, *dir = filp->f_path.dentry;
584 struct inode *inode;
585 struct qstr qname;
586 ino_t ino = 0;
587 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800588
589 qname.name = table->procname;
590 qname.len = strlen(table->procname);
591 qname.hash = full_name_hash(qname.name, qname.len);
592
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800593 child = d_lookup(dir, &qname);
594 if (!child) {
Al Viro90434762008-07-15 08:54:06 -0400595 child = d_alloc(dir, &qname);
596 if (child) {
597 inode = proc_sys_make_inode(dir->d_sb, head, table);
598 if (!inode) {
599 dput(child);
600 return -ENOMEM;
601 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100602 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro90434762008-07-15 08:54:06 -0400603 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800604 }
Al Viro90434762008-07-15 08:54:06 -0400605 } else {
606 return -ENOMEM;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800607 }
608 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800609 inode = child->d_inode;
Al Viro90434762008-07-15 08:54:06 -0400610 ino = inode->i_ino;
611 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800612 dput(child);
Al Viro90434762008-07-15 08:54:06 -0400613 return !!filldir(dirent, qname.name, qname.len, filp->f_pos, ino, type);
614}
615
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800616static int proc_sys_link_fill_cache(struct file *filp, void *dirent,
617 filldir_t filldir,
618 struct ctl_table_header *head,
619 struct ctl_table *table)
620{
621 int err, ret = 0;
622 head = sysctl_head_grab(head);
623
Eric W. Biederman4e757322012-01-30 21:24:59 -0800624 if (S_ISLNK(table->mode)) {
625 /* It is not an error if we can not follow the link ignore it */
626 err = sysctl_follow_link(&head, &table, current->nsproxy);
627 if (err)
628 goto out;
629 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800630
631 ret = proc_sys_fill_cache(filp, dirent, filldir, head, table);
632out:
633 sysctl_head_finish(head);
634 return ret;
635}
636
Al Viro90434762008-07-15 08:54:06 -0400637static int scan(struct ctl_table_header *head, ctl_table *table,
638 unsigned long *pos, struct file *file,
639 void *dirent, filldir_t filldir)
640{
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800641 int res;
Al Viro90434762008-07-15 08:54:06 -0400642
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800643 if ((*pos)++ < file->f_pos)
644 return 0;
Al Viro90434762008-07-15 08:54:06 -0400645
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800646 if (unlikely(S_ISLNK(table->mode)))
647 res = proc_sys_link_fill_cache(file, dirent, filldir, head, table);
648 else
Al Viro90434762008-07-15 08:54:06 -0400649 res = proc_sys_fill_cache(file, dirent, filldir, head, table);
Al Viro90434762008-07-15 08:54:06 -0400650
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800651 if (res == 0)
652 file->f_pos = *pos;
Al Viro90434762008-07-15 08:54:06 -0400653
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800654 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800655}
656
657static int proc_sys_readdir(struct file *filp, void *dirent, filldir_t filldir)
658{
Al Viro90434762008-07-15 08:54:06 -0400659 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800660 struct inode *inode = dentry->d_inode;
Al Viro90434762008-07-15 08:54:06 -0400661 struct ctl_table_header *head = grab_header(inode);
Al Viro90434762008-07-15 08:54:06 -0400662 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800663 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800664 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800665 unsigned long pos;
Al Viro90434762008-07-15 08:54:06 -0400666 int ret = -EINVAL;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800667
Al Viro90434762008-07-15 08:54:06 -0400668 if (IS_ERR(head))
669 return PTR_ERR(head);
670
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800671 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800672
673 ret = 0;
674 /* Avoid a switch here: arm builds fail with missing __cmpdi2 */
675 if (filp->f_pos == 0) {
676 if (filldir(dirent, ".", 1, filp->f_pos,
677 inode->i_ino, DT_DIR) < 0)
678 goto out;
679 filp->f_pos++;
680 }
681 if (filp->f_pos == 1) {
682 if (filldir(dirent, "..", 2, filp->f_pos,
683 parent_ino(dentry), DT_DIR) < 0)
684 goto out;
685 filp->f_pos++;
686 }
687 pos = 2;
688
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800689 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800690 ret = scan(h, entry, &pos, filp, dirent, filldir);
Al Viro90434762008-07-15 08:54:06 -0400691 if (ret) {
692 sysctl_head_finish(h);
693 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800694 }
695 }
696 ret = 1;
697out:
698 sysctl_head_finish(head);
699 return ret;
700}
701
Al Viro10556cb2011-06-20 19:28:19 -0400702static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800703{
704 /*
705 * sysctl entries that are not writeable,
706 * are _NOT_ writeable, capabilities or not.
707 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200708 struct ctl_table_header *head;
709 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800710 int error;
711
Miklos Szeredif696a362008-07-31 13:41:58 +0200712 /* Executable files are not allowed under /proc/sys/ */
713 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
714 return -EACCES;
715
716 head = grab_header(inode);
Al Viro90434762008-07-15 08:54:06 -0400717 if (IS_ERR(head))
718 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800719
Miklos Szeredif696a362008-07-31 13:41:58 +0200720 table = PROC_I(inode)->sysctl_entry;
Al Viro90434762008-07-15 08:54:06 -0400721 if (!table) /* global root - r-xr-xr-x */
722 error = mask & MAY_WRITE ? -EACCES : 0;
723 else /* Use the permissions on the sysctl table entry */
Al Viro1fc0f782011-06-20 18:59:02 -0400724 error = sysctl_perm(head->root, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800725
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800726 sysctl_head_finish(head);
727 return error;
728}
729
730static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
731{
732 struct inode *inode = dentry->d_inode;
733 int error;
734
735 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
736 return -EPERM;
737
738 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200739 if (error)
740 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800741
Christoph Hellwig10257742010-06-04 11:30:02 +0200742 if ((attr->ia_valid & ATTR_SIZE) &&
743 attr->ia_size != i_size_read(inode)) {
744 error = vmtruncate(inode, attr->ia_size);
745 if (error)
746 return error;
747 }
748
749 setattr_copy(inode, attr);
750 mark_inode_dirty(inode);
751 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800752}
753
Al Viro90434762008-07-15 08:54:06 -0400754static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
755{
756 struct inode *inode = dentry->d_inode;
757 struct ctl_table_header *head = grab_header(inode);
758 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
759
760 if (IS_ERR(head))
761 return PTR_ERR(head);
762
763 generic_fillattr(inode, stat);
764 if (table)
765 stat->mode = (stat->mode & S_IFMT) | table->mode;
766
767 sysctl_head_finish(head);
768 return 0;
769}
770
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800771static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700772 .open = proc_sys_open,
773 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800774 .read = proc_sys_read,
775 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200776 .llseek = default_llseek,
Al Viro90434762008-07-15 08:54:06 -0400777};
778
779static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700780 .read = generic_read_dir,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800781 .readdir = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200782 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800783};
784
Jan Engelhardt03a44822008-02-08 04:21:19 -0800785static const struct inode_operations proc_sys_inode_operations = {
Al Viro90434762008-07-15 08:54:06 -0400786 .permission = proc_sys_permission,
787 .setattr = proc_sys_setattr,
788 .getattr = proc_sys_getattr,
789};
790
791static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800792 .lookup = proc_sys_lookup,
793 .permission = proc_sys_permission,
794 .setattr = proc_sys_setattr,
Al Viro90434762008-07-15 08:54:06 -0400795 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800796};
797
798static int proc_sys_revalidate(struct dentry *dentry, struct nameidata *nd)
799{
Nick Piggin34286d62011-01-07 17:49:57 +1100800 if (nd->flags & LOOKUP_RCU)
801 return -ECHILD;
Al Viro90434762008-07-15 08:54:06 -0400802 return !PROC_I(dentry->d_inode)->sysctl->unregistering;
803}
804
Nick Pigginfe15ce42011-01-07 17:49:23 +1100805static int proc_sys_delete(const struct dentry *dentry)
Al Viro90434762008-07-15 08:54:06 -0400806{
807 return !!PROC_I(dentry->d_inode)->sysctl->unregistering;
808}
809
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800810static int sysctl_is_seen(struct ctl_table_header *p)
811{
812 struct ctl_table_set *set = p->set;
813 int res;
814 spin_lock(&sysctl_lock);
815 if (p->unregistering)
816 res = 0;
817 else if (!set->is_seen)
818 res = 1;
819 else
820 res = set->is_seen(set);
821 spin_unlock(&sysctl_lock);
822 return res;
823}
824
Nick Piggin621e1552011-01-07 17:49:27 +1100825static int proc_sys_compare(const struct dentry *parent,
826 const struct inode *pinode,
827 const struct dentry *dentry, const struct inode *inode,
828 unsigned int len, const char *str, const struct qstr *name)
Al Viro90434762008-07-15 08:54:06 -0400829{
Al Virodfef6dc2011-03-08 01:25:28 -0500830 struct ctl_table_header *head;
Nick Piggin31e6b012011-01-07 17:49:52 +1100831 /* Although proc doesn't have negative dentries, rcu-walk means
832 * that inode here can be NULL */
Al Virodfef6dc2011-03-08 01:25:28 -0500833 /* AV: can it, indeed? */
Nick Piggin31e6b012011-01-07 17:49:52 +1100834 if (!inode)
Al Virodfef6dc2011-03-08 01:25:28 -0500835 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100836 if (name->len != len)
Al Viro90434762008-07-15 08:54:06 -0400837 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100838 if (memcmp(name->name, str, len))
Al Viro90434762008-07-15 08:54:06 -0400839 return 1;
Al Virodfef6dc2011-03-08 01:25:28 -0500840 head = rcu_dereference(PROC_I(inode)->sysctl);
841 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800842}
843
Al Virod72f71e2009-02-20 05:58:47 +0000844static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800845 .d_revalidate = proc_sys_revalidate,
Al Viro90434762008-07-15 08:54:06 -0400846 .d_delete = proc_sys_delete,
847 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800848};
849
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800850static struct ctl_dir *find_subdir(struct ctl_dir *dir,
851 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800852{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800853 struct ctl_table_header *head;
854 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800855
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800856 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800857 if (!entry)
858 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800859 if (!S_ISDIR(entry->mode))
860 return ERR_PTR(-ENOTDIR);
861 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800862}
863
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800864static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800865 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800866{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800867 struct ctl_table *table;
868 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800869 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800870 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800871
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800872 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
873 sizeof(struct ctl_table)*2 + namelen + 1,
874 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800875 if (!new)
876 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800877
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800878 node = (struct ctl_node *)(new + 1);
879 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800880 new_name = (char *)(table + 2);
881 memcpy(new_name, name, namelen);
882 new_name[namelen] = '\0';
883 table[0].procname = new_name;
884 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800885 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800886
887 return new;
888}
889
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800890/**
891 * get_subdir - find or create a subdir with the specified name.
892 * @dir: Directory to create the subdirectory in
893 * @name: The name of the subdirectory to find or create
894 * @namelen: The length of name
895 *
896 * Takes a directory with an elevated reference count so we know that
897 * if we drop the lock the directory will not go away. Upon success
898 * the reference is moved from @dir to the returned subdirectory.
899 * Upon error an error code is returned and the reference on @dir is
900 * simply dropped.
901 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800902static struct ctl_dir *get_subdir(struct ctl_dir *dir,
903 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800904{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800905 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800906 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800907 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800908
909 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800910 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800911 if (!IS_ERR(subdir))
912 goto found;
913 if (PTR_ERR(subdir) != -ENOENT)
914 goto failed;
915
916 spin_unlock(&sysctl_lock);
917 new = new_dir(set, name, namelen);
918 spin_lock(&sysctl_lock);
919 subdir = ERR_PTR(-ENOMEM);
920 if (!new)
921 goto failed;
922
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800923 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800924 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800925 if (!IS_ERR(subdir))
926 goto found;
927 if (PTR_ERR(subdir) != -ENOENT)
928 goto failed;
929
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800930 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800931 err = insert_header(dir, &new->header);
932 subdir = ERR_PTR(err);
933 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800934 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800935 subdir = new;
936found:
937 subdir->header.nreg++;
938failed:
939 if (unlikely(IS_ERR(subdir))) {
Eric W. Biederman69801282012-01-21 20:09:45 -0800940 printk(KERN_ERR "sysctl could not get directory: ");
941 sysctl_print_dir(dir);
942 printk(KERN_CONT "/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800943 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800944 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800945 drop_sysctl_table(&dir->header);
946 if (new)
947 drop_sysctl_table(&new->header);
948 spin_unlock(&sysctl_lock);
949 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800950}
951
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800952static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
953{
954 struct ctl_dir *parent;
955 const char *procname;
956 if (!dir->header.parent)
957 return &set->dir;
958 parent = xlate_dir(set, dir->header.parent);
959 if (IS_ERR(parent))
960 return parent;
961 procname = dir->header.ctl_table[0].procname;
962 return find_subdir(parent, procname, strlen(procname));
963}
964
965static int sysctl_follow_link(struct ctl_table_header **phead,
966 struct ctl_table **pentry, struct nsproxy *namespaces)
967{
968 struct ctl_table_header *head;
969 struct ctl_table_root *root;
970 struct ctl_table_set *set;
971 struct ctl_table *entry;
972 struct ctl_dir *dir;
973 int ret;
974
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800975 ret = 0;
976 spin_lock(&sysctl_lock);
977 root = (*pentry)->data;
978 set = lookup_header_set(root, namespaces);
979 dir = xlate_dir(set, (*phead)->parent);
980 if (IS_ERR(dir))
981 ret = PTR_ERR(dir);
982 else {
983 const char *procname = (*pentry)->procname;
984 head = NULL;
985 entry = find_entry(&head, dir, procname, strlen(procname));
986 ret = -ENOENT;
987 if (entry && use_table(head)) {
988 unuse_table(*phead);
989 *phead = head;
990 *pentry = entry;
991 ret = 0;
992 }
993 }
994
995 spin_unlock(&sysctl_lock);
996 return ret;
997}
998
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800999static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1000{
1001 struct va_format vaf;
1002 va_list args;
1003
1004 va_start(args, fmt);
1005 vaf.fmt = fmt;
1006 vaf.va = &args;
1007
1008 printk(KERN_ERR "sysctl table check failed: %s/%s %pV\n",
1009 path, table->procname, &vaf);
1010
1011 va_end(args);
1012 return -EINVAL;
1013}
1014
1015static int sysctl_check_table(const char *path, struct ctl_table *table)
1016{
1017 int err = 0;
1018 for (; table->procname; table++) {
1019 if (table->child)
1020 err = sysctl_err(path, table, "Not a file");
1021
1022 if ((table->proc_handler == proc_dostring) ||
1023 (table->proc_handler == proc_dointvec) ||
1024 (table->proc_handler == proc_dointvec_minmax) ||
1025 (table->proc_handler == proc_dointvec_jiffies) ||
1026 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1027 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1028 (table->proc_handler == proc_doulongvec_minmax) ||
1029 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1030 if (!table->data)
1031 err = sysctl_err(path, table, "No data");
1032 if (!table->maxlen)
1033 err = sysctl_err(path, table, "No maxlen");
1034 }
1035 if (!table->proc_handler)
1036 err = sysctl_err(path, table, "No proc_handler");
1037
1038 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1039 err = sysctl_err(path, table, "bogus .mode 0%o",
1040 table->mode);
1041 }
1042 return err;
1043}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001044
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001045static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1046 struct ctl_table_root *link_root)
1047{
1048 struct ctl_table *link_table, *entry, *link;
1049 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001050 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001051 char *link_name;
1052 int nr_entries, name_bytes;
1053
1054 name_bytes = 0;
1055 nr_entries = 0;
1056 for (entry = table; entry->procname; entry++) {
1057 nr_entries++;
1058 name_bytes += strlen(entry->procname) + 1;
1059 }
1060
1061 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001062 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001063 sizeof(struct ctl_table)*(nr_entries + 1) +
1064 name_bytes,
1065 GFP_KERNEL);
1066
1067 if (!links)
1068 return NULL;
1069
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001070 node = (struct ctl_node *)(links + 1);
1071 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001072 link_name = (char *)&link_table[nr_entries + 1];
1073
1074 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1075 int len = strlen(entry->procname) + 1;
1076 memcpy(link_name, entry->procname, len);
1077 link->procname = link_name;
1078 link->mode = S_IFLNK|S_IRWXUGO;
1079 link->data = link_root;
1080 link_name += len;
1081 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001082 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001083 links->nreg = nr_entries;
1084
1085 return links;
1086}
1087
1088static bool get_links(struct ctl_dir *dir,
1089 struct ctl_table *table, struct ctl_table_root *link_root)
1090{
1091 struct ctl_table_header *head;
1092 struct ctl_table *entry, *link;
1093
1094 /* Are there links available for every entry in table? */
1095 for (entry = table; entry->procname; entry++) {
1096 const char *procname = entry->procname;
1097 link = find_entry(&head, dir, procname, strlen(procname));
1098 if (!link)
1099 return false;
1100 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1101 continue;
1102 if (S_ISLNK(link->mode) && (link->data == link_root))
1103 continue;
1104 return false;
1105 }
1106
1107 /* The checks passed. Increase the registration count on the links */
1108 for (entry = table; entry->procname; entry++) {
1109 const char *procname = entry->procname;
1110 link = find_entry(&head, dir, procname, strlen(procname));
1111 head->nreg++;
1112 }
1113 return true;
1114}
1115
1116static int insert_links(struct ctl_table_header *head)
1117{
1118 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1119 struct ctl_dir *core_parent = NULL;
1120 struct ctl_table_header *links;
1121 int err;
1122
1123 if (head->set == root_set)
1124 return 0;
1125
1126 core_parent = xlate_dir(root_set, head->parent);
1127 if (IS_ERR(core_parent))
1128 return 0;
1129
1130 if (get_links(core_parent, head->ctl_table, head->root))
1131 return 0;
1132
1133 core_parent->header.nreg++;
1134 spin_unlock(&sysctl_lock);
1135
1136 links = new_links(core_parent, head->ctl_table, head->root);
1137
1138 spin_lock(&sysctl_lock);
1139 err = -ENOMEM;
1140 if (!links)
1141 goto out;
1142
1143 err = 0;
1144 if (get_links(core_parent, head->ctl_table, head->root)) {
1145 kfree(links);
1146 goto out;
1147 }
1148
1149 err = insert_header(core_parent, links);
1150 if (err)
1151 kfree(links);
1152out:
1153 drop_sysctl_table(&core_parent->header);
1154 return err;
1155}
1156
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001157/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001158 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001159 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001160 * @path: The path to the directory the sysctl table is in.
1161 * @table: the top-level table structure
1162 *
1163 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1164 * array. A completely 0 filled entry terminates the table.
1165 *
1166 * The members of the &struct ctl_table structure are used as follows:
1167 *
1168 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1169 * enter a sysctl file
1170 *
1171 * data - a pointer to data for use by proc_handler
1172 *
1173 * maxlen - the maximum size in bytes of the data
1174 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001175 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001176 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001177 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001178 *
1179 * proc_handler - the text handler routine (described below)
1180 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001181 * extra1, extra2 - extra pointers usable by the proc handler routines
1182 *
1183 * Leaf nodes in the sysctl tree will be represented by a single file
1184 * under /proc; non-leaf nodes will be represented by directories.
1185 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001186 * There must be a proc_handler routine for any terminal nodes.
1187 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001188 *
1189 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1190 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1191 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1192 *
1193 * It is the handler's job to read the input buffer from user memory
1194 * and process it. The handler should return 0 on success.
1195 *
1196 * This routine returns %NULL on a failure to register, and a pointer
1197 * to the table header on success.
1198 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001199struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001200 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001201 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001202{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001203 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001204 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001205 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001206 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001207 struct ctl_table *entry;
1208 struct ctl_node *node;
1209 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001210
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001211 for (entry = table; entry->procname; entry++)
1212 nr_entries++;
1213
1214 header = kzalloc(sizeof(struct ctl_table_header) +
1215 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001216 if (!header)
1217 return NULL;
1218
Chintan Pandya4d3267c2013-07-02 16:00:49 -07001219 kmemleak_not_leak(header);
1220
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001221 node = (struct ctl_node *)(header + 1);
1222 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001223 if (sysctl_check_table(path, table))
1224 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001225
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001226 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001227 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001228 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001229 dir->header.nreg++;
1230 spin_unlock(&sysctl_lock);
1231
1232 /* Find the directory for the ctl_table */
1233 for (name = path; name; name = nextname) {
1234 int namelen;
1235 nextname = strchr(name, '/');
1236 if (nextname) {
1237 namelen = nextname - name;
1238 nextname++;
1239 } else {
1240 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001241 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001242 if (namelen == 0)
1243 continue;
1244
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001245 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001246 if (IS_ERR(dir))
1247 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001248 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001249
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001250 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001251 if (insert_header(dir, header))
1252 goto fail_put_dir_locked;
1253
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001254 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001255 spin_unlock(&sysctl_lock);
1256
1257 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001258
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001259fail_put_dir_locked:
1260 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001261 spin_unlock(&sysctl_lock);
1262fail:
1263 kfree(header);
1264 dump_stack();
1265 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001266}
1267
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001268/**
1269 * register_sysctl - register a sysctl table
1270 * @path: The path to the directory the sysctl table is in.
1271 * @table: the table structure
1272 *
1273 * Register a sysctl table. @table should be a filled in ctl_table
1274 * array. A completely 0 filled entry terminates the table.
1275 *
1276 * See __register_sysctl_table for more details.
1277 */
1278struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1279{
1280 return __register_sysctl_table(&sysctl_table_root.default_set,
1281 path, table);
1282}
1283EXPORT_SYMBOL(register_sysctl);
1284
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001285static char *append_path(const char *path, char *pos, const char *name)
1286{
1287 int namelen;
1288 namelen = strlen(name);
1289 if (((pos - path) + namelen + 2) >= PATH_MAX)
1290 return NULL;
1291 memcpy(pos, name, namelen);
1292 pos[namelen] = '/';
1293 pos[namelen + 1] = '\0';
1294 pos += namelen + 1;
1295 return pos;
1296}
1297
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001298static int count_subheaders(struct ctl_table *table)
1299{
1300 int has_files = 0;
1301 int nr_subheaders = 0;
1302 struct ctl_table *entry;
1303
1304 /* special case: no directory and empty directory */
1305 if (!table || !table->procname)
1306 return 1;
1307
1308 for (entry = table; entry->procname; entry++) {
1309 if (entry->child)
1310 nr_subheaders += count_subheaders(entry->child);
1311 else
1312 has_files = 1;
1313 }
1314 return nr_subheaders + has_files;
1315}
1316
1317static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001318 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001319 struct ctl_table *table)
1320{
1321 struct ctl_table *ctl_table_arg = NULL;
1322 struct ctl_table *entry, *files;
1323 int nr_files = 0;
1324 int nr_dirs = 0;
1325 int err = -ENOMEM;
1326
1327 for (entry = table; entry->procname; entry++) {
1328 if (entry->child)
1329 nr_dirs++;
1330 else
1331 nr_files++;
1332 }
1333
1334 files = table;
1335 /* If there are mixed files and directories we need a new table */
1336 if (nr_dirs && nr_files) {
1337 struct ctl_table *new;
1338 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1339 GFP_KERNEL);
1340 if (!files)
1341 goto out;
1342
1343 ctl_table_arg = files;
1344 for (new = files, entry = table; entry->procname; entry++) {
1345 if (entry->child)
1346 continue;
1347 *new = *entry;
1348 new++;
1349 }
1350 }
1351
1352 /* Register everything except a directory full of subdirectories */
1353 if (nr_files || !nr_dirs) {
1354 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001355 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001356 if (!header) {
1357 kfree(ctl_table_arg);
1358 goto out;
1359 }
1360
1361 /* Remember if we need to free the file table */
1362 header->ctl_table_arg = ctl_table_arg;
1363 **subheader = header;
1364 (*subheader)++;
1365 }
1366
1367 /* Recurse into the subdirectories. */
1368 for (entry = table; entry->procname; entry++) {
1369 char *child_pos;
1370
1371 if (!entry->child)
1372 continue;
1373
1374 err = -ENAMETOOLONG;
1375 child_pos = append_path(path, pos, entry->procname);
1376 if (!child_pos)
1377 goto out;
1378
1379 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001380 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001381 pos[0] = '\0';
1382 if (err)
1383 goto out;
1384 }
1385 err = 0;
1386out:
1387 /* On failure our caller will unregister all registered subheaders */
1388 return err;
1389}
1390
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001391/**
1392 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001393 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001394 * @path: The path to the directory the sysctl table is in.
1395 * @table: the top-level table structure
1396 *
1397 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1398 * array. A completely 0 filled entry terminates the table.
1399 *
1400 * See __register_sysctl_table for more details.
1401 */
1402struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001403 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001404 const struct ctl_path *path, struct ctl_table *table)
1405{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001406 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001407 int nr_subheaders = count_subheaders(table);
1408 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001409 const struct ctl_path *component;
1410 char *new_path, *pos;
1411
1412 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1413 if (!new_path)
1414 return NULL;
1415
1416 pos[0] = '\0';
1417 for (component = path; component->procname; component++) {
1418 pos = append_path(new_path, pos, component->procname);
1419 if (!pos)
1420 goto out;
1421 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001422 while (table->procname && table->child && !table[1].procname) {
1423 pos = append_path(new_path, pos, table->procname);
1424 if (!pos)
1425 goto out;
1426 table = table->child;
1427 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001428 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001429 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001430 if (header)
1431 header->ctl_table_arg = ctl_table_arg;
1432 } else {
1433 header = kzalloc(sizeof(*header) +
1434 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1435 if (!header)
1436 goto out;
1437
1438 subheaders = (struct ctl_table_header **) (header + 1);
1439 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001440 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001441
1442 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001443 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001444 goto err_register_leaves;
1445 }
1446
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001447out:
1448 kfree(new_path);
1449 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001450
1451err_register_leaves:
1452 while (subheader > subheaders) {
1453 struct ctl_table_header *subh = *(--subheader);
1454 struct ctl_table *table = subh->ctl_table_arg;
1455 unregister_sysctl_table(subh);
1456 kfree(table);
1457 }
1458 kfree(header);
1459 header = NULL;
1460 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001461}
1462
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001463/**
1464 * register_sysctl_table_path - register a sysctl table hierarchy
1465 * @path: The path to the directory the sysctl table is in.
1466 * @table: the top-level table structure
1467 *
1468 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1469 * array. A completely 0 filled entry terminates the table.
1470 *
1471 * See __register_sysctl_paths for more details.
1472 */
1473struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1474 struct ctl_table *table)
1475{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001476 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001477 path, table);
1478}
1479EXPORT_SYMBOL(register_sysctl_paths);
1480
1481/**
1482 * register_sysctl_table - register a sysctl table hierarchy
1483 * @table: the top-level table structure
1484 *
1485 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1486 * array. A completely 0 filled entry terminates the table.
1487 *
1488 * See register_sysctl_paths for more details.
1489 */
1490struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1491{
1492 static const struct ctl_path null_path[] = { {} };
1493
1494 return register_sysctl_paths(null_path, table);
1495}
1496EXPORT_SYMBOL(register_sysctl_table);
1497
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001498static void put_links(struct ctl_table_header *header)
1499{
1500 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1501 struct ctl_table_root *root = header->root;
1502 struct ctl_dir *parent = header->parent;
1503 struct ctl_dir *core_parent;
1504 struct ctl_table *entry;
1505
1506 if (header->set == root_set)
1507 return;
1508
1509 core_parent = xlate_dir(root_set, parent);
1510 if (IS_ERR(core_parent))
1511 return;
1512
1513 for (entry = header->ctl_table; entry->procname; entry++) {
1514 struct ctl_table_header *link_head;
1515 struct ctl_table *link;
1516 const char *name = entry->procname;
1517
1518 link = find_entry(&link_head, core_parent, name, strlen(name));
1519 if (link &&
1520 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1521 (S_ISLNK(link->mode) && (link->data == root)))) {
1522 drop_sysctl_table(link_head);
1523 }
1524 else {
1525 printk(KERN_ERR "sysctl link missing during unregister: ");
1526 sysctl_print_dir(parent);
1527 printk(KERN_CONT "/%s\n", name);
1528 }
1529 }
1530}
1531
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001532static void drop_sysctl_table(struct ctl_table_header *header)
1533{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001534 struct ctl_dir *parent = header->parent;
1535
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001536 if (--header->nreg)
1537 return;
1538
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001539 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001540 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001541 if (!--header->count)
1542 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001543
1544 if (parent)
1545 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001546}
1547
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001548/**
1549 * unregister_sysctl_table - unregister a sysctl table hierarchy
1550 * @header: the header returned from register_sysctl_table
1551 *
1552 * Unregisters the sysctl table and all children. proc entries may not
1553 * actually be removed until they are no longer used by anyone.
1554 */
1555void unregister_sysctl_table(struct ctl_table_header * header)
1556{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001557 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001558 might_sleep();
1559
1560 if (header == NULL)
1561 return;
1562
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001563 nr_subheaders = count_subheaders(header->ctl_table_arg);
1564 if (unlikely(nr_subheaders > 1)) {
1565 struct ctl_table_header **subheaders;
1566 int i;
1567
1568 subheaders = (struct ctl_table_header **)(header + 1);
1569 for (i = nr_subheaders -1; i >= 0; i--) {
1570 struct ctl_table_header *subh = subheaders[i];
1571 struct ctl_table *table = subh->ctl_table_arg;
1572 unregister_sysctl_table(subh);
1573 kfree(table);
1574 }
1575 kfree(header);
1576 return;
1577 }
1578
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001579 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001580 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001581 spin_unlock(&sysctl_lock);
1582}
1583EXPORT_SYMBOL(unregister_sysctl_table);
1584
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001585void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001586 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001587 int (*is_seen)(struct ctl_table_set *))
1588{
Dan Carpenter13474402012-01-30 16:40:29 +03001589 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001590 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001591 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001592}
1593
Eric W. Biederman97324cd2012-01-09 22:19:13 -08001594void retire_sysctl_set(struct ctl_table_set *set)
1595{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001596 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd2012-01-09 22:19:13 -08001597}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001598
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001599int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001600{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001601 struct proc_dir_entry *proc_sys_root;
1602
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001603 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro90434762008-07-15 08:54:06 -04001604 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1605 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001606 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001607
1608 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001609}