blob: 701580ddfcc3c20a4476fe88a9e736b54ca7b858 [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
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000381static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800382{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000383 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800384 int mode;
385
386 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000387 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800388 else
389 mode = table->mode;
390
391 return test_perm(mode, op);
392}
393
Al Viro9043476f2008-07-15 08:54:06 -0400394static struct inode *proc_sys_make_inode(struct super_block *sb,
395 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800396{
397 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400398 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800399
Al Viro9043476f2008-07-15 08:54:06 -0400400 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800401 if (!inode)
402 goto out;
403
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400404 inode->i_ino = get_next_ino();
405
Al Viro9043476f2008-07-15 08:54:06 -0400406 sysctl_head_get(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800407 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400408 ei->sysctl = head;
409 ei->sysctl_entry = table;
410
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800411 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Al Viro9043476f2008-07-15 08:54:06 -0400412 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800413 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400414 inode->i_mode |= S_IFREG;
415 inode->i_op = &proc_sys_inode_operations;
416 inode->i_fop = &proc_sys_file_operations;
417 } else {
418 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400419 inode->i_op = &proc_sys_dir_operations;
420 inode->i_fop = &proc_sys_dir_file_operations;
421 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800422out:
423 return inode;
424}
425
Adrian Bunk81324362008-10-03 00:33:54 +0400426static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800427{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800428 struct ctl_table_header *head = PROC_I(inode)->sysctl;
429 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800430 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800431 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800432}
433
434static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400435 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800436{
Al Viro9043476f2008-07-15 08:54:06 -0400437 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400438 struct ctl_table_header *h = NULL;
439 struct qstr *name = &dentry->d_name;
440 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800441 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400442 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800443 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800444 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800445
Al Viro9043476f2008-07-15 08:54:06 -0400446 if (IS_ERR(head))
447 return ERR_CAST(head);
448
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800449 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400450
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800451 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400452 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800453 goto out;
454
Eric W. Biederman4e757322012-01-30 21:24:59 -0800455 if (S_ISLNK(p->mode)) {
456 ret = sysctl_follow_link(&h, &p, current->nsproxy);
457 err = ERR_PTR(ret);
458 if (ret)
459 goto out;
460 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800461
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800462 err = ERR_PTR(-ENOMEM);
Al Viro9043476f2008-07-15 08:54:06 -0400463 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800464 if (!inode)
465 goto out;
466
467 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100468 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800469 d_add(dentry, inode);
470
471out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700472 if (h)
473 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800474 sysctl_head_finish(head);
475 return err;
476}
477
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700478static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
479 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800480{
Al Viro9043476f2008-07-15 08:54:06 -0400481 struct inode *inode = filp->f_path.dentry->d_inode;
482 struct ctl_table_header *head = grab_header(inode);
483 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100484 ssize_t error;
485 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800486
Al Viro9043476f2008-07-15 08:54:06 -0400487 if (IS_ERR(head))
488 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800489
490 /*
491 * At this point we know that the sysctl was not unregistered
492 * and won't be until we finish.
493 */
494 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000495 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800496 goto out;
497
Al Viro9043476f2008-07-15 08:54:06 -0400498 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
499 error = -EINVAL;
500 if (!table->proc_handler)
501 goto out;
502
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800503 /* careful: calling conventions are nasty here */
504 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700505 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800506 if (!error)
507 error = res;
508out:
509 sysctl_head_finish(head);
510
511 return error;
512}
513
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700514static ssize_t proc_sys_read(struct file *filp, char __user *buf,
515 size_t count, loff_t *ppos)
516{
517 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
518}
519
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800520static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
521 size_t count, loff_t *ppos)
522{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700523 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800524}
525
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700526static int proc_sys_open(struct inode *inode, struct file *filp)
527{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700528 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700529 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
530
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700531 /* sysctl was unregistered */
532 if (IS_ERR(head))
533 return PTR_ERR(head);
534
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700535 if (table->poll)
536 filp->private_data = proc_sys_poll_event(table->poll);
537
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700538 sysctl_head_finish(head);
539
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700540 return 0;
541}
542
543static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
544{
545 struct inode *inode = filp->f_path.dentry->d_inode;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700546 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700547 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700548 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700549 unsigned long event;
550
551 /* sysctl was unregistered */
552 if (IS_ERR(head))
553 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700554
555 if (!table->proc_handler)
556 goto out;
557
558 if (!table->poll)
559 goto out;
560
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700561 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700562 poll_wait(filp, &table->poll->wait, wait);
563
564 if (event != atomic_read(&table->poll->event)) {
565 filp->private_data = proc_sys_poll_event(table->poll);
566 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
567 }
568
569out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700570 sysctl_head_finish(head);
571
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700572 return ret;
573}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800574
575static int proc_sys_fill_cache(struct file *filp, void *dirent,
Al Viro9043476f2008-07-15 08:54:06 -0400576 filldir_t filldir,
577 struct ctl_table_header *head,
578 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800579{
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800580 struct dentry *child, *dir = filp->f_path.dentry;
581 struct inode *inode;
582 struct qstr qname;
583 ino_t ino = 0;
584 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800585
586 qname.name = table->procname;
587 qname.len = strlen(table->procname);
588 qname.hash = full_name_hash(qname.name, qname.len);
589
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800590 child = d_lookup(dir, &qname);
591 if (!child) {
Al Viro9043476f2008-07-15 08:54:06 -0400592 child = d_alloc(dir, &qname);
593 if (child) {
594 inode = proc_sys_make_inode(dir->d_sb, head, table);
595 if (!inode) {
596 dput(child);
597 return -ENOMEM;
598 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100599 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro9043476f2008-07-15 08:54:06 -0400600 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800601 }
Al Viro9043476f2008-07-15 08:54:06 -0400602 } else {
603 return -ENOMEM;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800604 }
605 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800606 inode = child->d_inode;
Al Viro9043476f2008-07-15 08:54:06 -0400607 ino = inode->i_ino;
608 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800609 dput(child);
Al Viro9043476f2008-07-15 08:54:06 -0400610 return !!filldir(dirent, qname.name, qname.len, filp->f_pos, ino, type);
611}
612
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800613static int proc_sys_link_fill_cache(struct file *filp, void *dirent,
614 filldir_t filldir,
615 struct ctl_table_header *head,
616 struct ctl_table *table)
617{
618 int err, ret = 0;
619 head = sysctl_head_grab(head);
620
Eric W. Biederman4e757322012-01-30 21:24:59 -0800621 if (S_ISLNK(table->mode)) {
622 /* It is not an error if we can not follow the link ignore it */
623 err = sysctl_follow_link(&head, &table, current->nsproxy);
624 if (err)
625 goto out;
626 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800627
628 ret = proc_sys_fill_cache(filp, dirent, filldir, head, table);
629out:
630 sysctl_head_finish(head);
631 return ret;
632}
633
Al Viro9043476f2008-07-15 08:54:06 -0400634static int scan(struct ctl_table_header *head, ctl_table *table,
635 unsigned long *pos, struct file *file,
636 void *dirent, filldir_t filldir)
637{
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800638 int res;
Al Viro9043476f2008-07-15 08:54:06 -0400639
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800640 if ((*pos)++ < file->f_pos)
641 return 0;
Al Viro9043476f2008-07-15 08:54:06 -0400642
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800643 if (unlikely(S_ISLNK(table->mode)))
644 res = proc_sys_link_fill_cache(file, dirent, filldir, head, table);
645 else
Al Viro9043476f2008-07-15 08:54:06 -0400646 res = proc_sys_fill_cache(file, dirent, filldir, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400647
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800648 if (res == 0)
649 file->f_pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400650
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800651 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800652}
653
654static int proc_sys_readdir(struct file *filp, void *dirent, filldir_t filldir)
655{
Al Viro9043476f2008-07-15 08:54:06 -0400656 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800657 struct inode *inode = dentry->d_inode;
Al Viro9043476f2008-07-15 08:54:06 -0400658 struct ctl_table_header *head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400659 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800660 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800661 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800662 unsigned long pos;
Al Viro9043476f2008-07-15 08:54:06 -0400663 int ret = -EINVAL;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800664
Al Viro9043476f2008-07-15 08:54:06 -0400665 if (IS_ERR(head))
666 return PTR_ERR(head);
667
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800668 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800669
670 ret = 0;
671 /* Avoid a switch here: arm builds fail with missing __cmpdi2 */
672 if (filp->f_pos == 0) {
673 if (filldir(dirent, ".", 1, filp->f_pos,
674 inode->i_ino, DT_DIR) < 0)
675 goto out;
676 filp->f_pos++;
677 }
678 if (filp->f_pos == 1) {
679 if (filldir(dirent, "..", 2, filp->f_pos,
680 parent_ino(dentry), DT_DIR) < 0)
681 goto out;
682 filp->f_pos++;
683 }
684 pos = 2;
685
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800686 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800687 ret = scan(h, entry, &pos, filp, dirent, filldir);
Al Viro9043476f2008-07-15 08:54:06 -0400688 if (ret) {
689 sysctl_head_finish(h);
690 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800691 }
692 }
693 ret = 1;
694out:
695 sysctl_head_finish(head);
696 return ret;
697}
698
Al Viro10556cb2011-06-20 19:28:19 -0400699static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800700{
701 /*
702 * sysctl entries that are not writeable,
703 * are _NOT_ writeable, capabilities or not.
704 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200705 struct ctl_table_header *head;
706 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800707 int error;
708
Miklos Szeredif696a362008-07-31 13:41:58 +0200709 /* Executable files are not allowed under /proc/sys/ */
710 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
711 return -EACCES;
712
713 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400714 if (IS_ERR(head))
715 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800716
Miklos Szeredif696a362008-07-31 13:41:58 +0200717 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400718 if (!table) /* global root - r-xr-xr-x */
719 error = mask & MAY_WRITE ? -EACCES : 0;
720 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000721 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800722
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800723 sysctl_head_finish(head);
724 return error;
725}
726
727static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
728{
729 struct inode *inode = dentry->d_inode;
730 int error;
731
732 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
733 return -EPERM;
734
735 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200736 if (error)
737 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800738
Christoph Hellwig10257742010-06-04 11:30:02 +0200739 if ((attr->ia_valid & ATTR_SIZE) &&
740 attr->ia_size != i_size_read(inode)) {
741 error = vmtruncate(inode, attr->ia_size);
742 if (error)
743 return error;
744 }
745
746 setattr_copy(inode, attr);
747 mark_inode_dirty(inode);
748 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800749}
750
Al Viro9043476f2008-07-15 08:54:06 -0400751static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
752{
753 struct inode *inode = dentry->d_inode;
754 struct ctl_table_header *head = grab_header(inode);
755 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
756
757 if (IS_ERR(head))
758 return PTR_ERR(head);
759
760 generic_fillattr(inode, stat);
761 if (table)
762 stat->mode = (stat->mode & S_IFMT) | table->mode;
763
764 sysctl_head_finish(head);
765 return 0;
766}
767
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800768static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700769 .open = proc_sys_open,
770 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800771 .read = proc_sys_read,
772 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200773 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400774};
775
776static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700777 .read = generic_read_dir,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800778 .readdir = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200779 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800780};
781
Jan Engelhardt03a44822008-02-08 04:21:19 -0800782static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400783 .permission = proc_sys_permission,
784 .setattr = proc_sys_setattr,
785 .getattr = proc_sys_getattr,
786};
787
788static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800789 .lookup = proc_sys_lookup,
790 .permission = proc_sys_permission,
791 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400792 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800793};
794
Al Viro0b728e12012-06-10 16:03:43 -0400795static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800796{
Al Viro0b728e12012-06-10 16:03:43 -0400797 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100798 return -ECHILD;
Al Viro9043476f2008-07-15 08:54:06 -0400799 return !PROC_I(dentry->d_inode)->sysctl->unregistering;
800}
801
Nick Pigginfe15ce42011-01-07 17:49:23 +1100802static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400803{
804 return !!PROC_I(dentry->d_inode)->sysctl->unregistering;
805}
806
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800807static int sysctl_is_seen(struct ctl_table_header *p)
808{
809 struct ctl_table_set *set = p->set;
810 int res;
811 spin_lock(&sysctl_lock);
812 if (p->unregistering)
813 res = 0;
814 else if (!set->is_seen)
815 res = 1;
816 else
817 res = set->is_seen(set);
818 spin_unlock(&sysctl_lock);
819 return res;
820}
821
Nick Piggin621e1552011-01-07 17:49:27 +1100822static int proc_sys_compare(const struct dentry *parent,
823 const struct inode *pinode,
824 const struct dentry *dentry, const struct inode *inode,
825 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400826{
Al Virodfef6dcd32011-03-08 01:25:28 -0500827 struct ctl_table_header *head;
Nick Piggin31e6b012011-01-07 17:49:52 +1100828 /* Although proc doesn't have negative dentries, rcu-walk means
829 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500830 /* AV: can it, indeed? */
Nick Piggin31e6b012011-01-07 17:49:52 +1100831 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500832 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100833 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400834 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100835 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400836 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500837 head = rcu_dereference(PROC_I(inode)->sysctl);
838 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800839}
840
Al Virod72f71e2009-02-20 05:58:47 +0000841static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800842 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400843 .d_delete = proc_sys_delete,
844 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800845};
846
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800847static struct ctl_dir *find_subdir(struct ctl_dir *dir,
848 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800849{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800850 struct ctl_table_header *head;
851 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800852
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800853 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800854 if (!entry)
855 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800856 if (!S_ISDIR(entry->mode))
857 return ERR_PTR(-ENOTDIR);
858 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800859}
860
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800861static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800862 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800863{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800864 struct ctl_table *table;
865 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800866 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800867 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800868
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800869 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
870 sizeof(struct ctl_table)*2 + namelen + 1,
871 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800872 if (!new)
873 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800874
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800875 node = (struct ctl_node *)(new + 1);
876 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800877 new_name = (char *)(table + 2);
878 memcpy(new_name, name, namelen);
879 new_name[namelen] = '\0';
880 table[0].procname = new_name;
881 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800882 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800883
884 return new;
885}
886
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800887/**
888 * get_subdir - find or create a subdir with the specified name.
889 * @dir: Directory to create the subdirectory in
890 * @name: The name of the subdirectory to find or create
891 * @namelen: The length of name
892 *
893 * Takes a directory with an elevated reference count so we know that
894 * if we drop the lock the directory will not go away. Upon success
895 * the reference is moved from @dir to the returned subdirectory.
896 * Upon error an error code is returned and the reference on @dir is
897 * simply dropped.
898 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800899static struct ctl_dir *get_subdir(struct ctl_dir *dir,
900 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800901{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800902 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800903 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800904 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800905
906 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800907 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800908 if (!IS_ERR(subdir))
909 goto found;
910 if (PTR_ERR(subdir) != -ENOENT)
911 goto failed;
912
913 spin_unlock(&sysctl_lock);
914 new = new_dir(set, name, namelen);
915 spin_lock(&sysctl_lock);
916 subdir = ERR_PTR(-ENOMEM);
917 if (!new)
918 goto failed;
919
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800920 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800921 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800922 if (!IS_ERR(subdir))
923 goto found;
924 if (PTR_ERR(subdir) != -ENOENT)
925 goto failed;
926
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800927 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800928 err = insert_header(dir, &new->header);
929 subdir = ERR_PTR(err);
930 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800931 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800932 subdir = new;
933found:
934 subdir->header.nreg++;
935failed:
936 if (unlikely(IS_ERR(subdir))) {
Eric W. Biederman69801282012-01-21 20:09:45 -0800937 printk(KERN_ERR "sysctl could not get directory: ");
938 sysctl_print_dir(dir);
939 printk(KERN_CONT "/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800940 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800941 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800942 drop_sysctl_table(&dir->header);
943 if (new)
944 drop_sysctl_table(&new->header);
945 spin_unlock(&sysctl_lock);
946 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800947}
948
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800949static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
950{
951 struct ctl_dir *parent;
952 const char *procname;
953 if (!dir->header.parent)
954 return &set->dir;
955 parent = xlate_dir(set, dir->header.parent);
956 if (IS_ERR(parent))
957 return parent;
958 procname = dir->header.ctl_table[0].procname;
959 return find_subdir(parent, procname, strlen(procname));
960}
961
962static int sysctl_follow_link(struct ctl_table_header **phead,
963 struct ctl_table **pentry, struct nsproxy *namespaces)
964{
965 struct ctl_table_header *head;
966 struct ctl_table_root *root;
967 struct ctl_table_set *set;
968 struct ctl_table *entry;
969 struct ctl_dir *dir;
970 int ret;
971
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800972 ret = 0;
973 spin_lock(&sysctl_lock);
974 root = (*pentry)->data;
975 set = lookup_header_set(root, namespaces);
976 dir = xlate_dir(set, (*phead)->parent);
977 if (IS_ERR(dir))
978 ret = PTR_ERR(dir);
979 else {
980 const char *procname = (*pentry)->procname;
981 head = NULL;
982 entry = find_entry(&head, dir, procname, strlen(procname));
983 ret = -ENOENT;
984 if (entry && use_table(head)) {
985 unuse_table(*phead);
986 *phead = head;
987 *pentry = entry;
988 ret = 0;
989 }
990 }
991
992 spin_unlock(&sysctl_lock);
993 return ret;
994}
995
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800996static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
997{
998 struct va_format vaf;
999 va_list args;
1000
1001 va_start(args, fmt);
1002 vaf.fmt = fmt;
1003 vaf.va = &args;
1004
1005 printk(KERN_ERR "sysctl table check failed: %s/%s %pV\n",
1006 path, table->procname, &vaf);
1007
1008 va_end(args);
1009 return -EINVAL;
1010}
1011
1012static int sysctl_check_table(const char *path, struct ctl_table *table)
1013{
1014 int err = 0;
1015 for (; table->procname; table++) {
1016 if (table->child)
1017 err = sysctl_err(path, table, "Not a file");
1018
1019 if ((table->proc_handler == proc_dostring) ||
1020 (table->proc_handler == proc_dointvec) ||
1021 (table->proc_handler == proc_dointvec_minmax) ||
1022 (table->proc_handler == proc_dointvec_jiffies) ||
1023 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1024 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1025 (table->proc_handler == proc_doulongvec_minmax) ||
1026 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1027 if (!table->data)
1028 err = sysctl_err(path, table, "No data");
1029 if (!table->maxlen)
1030 err = sysctl_err(path, table, "No maxlen");
1031 }
1032 if (!table->proc_handler)
1033 err = sysctl_err(path, table, "No proc_handler");
1034
1035 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1036 err = sysctl_err(path, table, "bogus .mode 0%o",
1037 table->mode);
1038 }
1039 return err;
1040}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001041
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001042static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1043 struct ctl_table_root *link_root)
1044{
1045 struct ctl_table *link_table, *entry, *link;
1046 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001047 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001048 char *link_name;
1049 int nr_entries, name_bytes;
1050
1051 name_bytes = 0;
1052 nr_entries = 0;
1053 for (entry = table; entry->procname; entry++) {
1054 nr_entries++;
1055 name_bytes += strlen(entry->procname) + 1;
1056 }
1057
1058 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001059 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001060 sizeof(struct ctl_table)*(nr_entries + 1) +
1061 name_bytes,
1062 GFP_KERNEL);
1063
1064 if (!links)
1065 return NULL;
1066
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001067 node = (struct ctl_node *)(links + 1);
1068 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001069 link_name = (char *)&link_table[nr_entries + 1];
1070
1071 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1072 int len = strlen(entry->procname) + 1;
1073 memcpy(link_name, entry->procname, len);
1074 link->procname = link_name;
1075 link->mode = S_IFLNK|S_IRWXUGO;
1076 link->data = link_root;
1077 link_name += len;
1078 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001079 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001080 links->nreg = nr_entries;
1081
1082 return links;
1083}
1084
1085static bool get_links(struct ctl_dir *dir,
1086 struct ctl_table *table, struct ctl_table_root *link_root)
1087{
1088 struct ctl_table_header *head;
1089 struct ctl_table *entry, *link;
1090
1091 /* Are there links available for every entry in table? */
1092 for (entry = table; entry->procname; entry++) {
1093 const char *procname = entry->procname;
1094 link = find_entry(&head, dir, procname, strlen(procname));
1095 if (!link)
1096 return false;
1097 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1098 continue;
1099 if (S_ISLNK(link->mode) && (link->data == link_root))
1100 continue;
1101 return false;
1102 }
1103
1104 /* The checks passed. Increase the registration count on the links */
1105 for (entry = table; entry->procname; entry++) {
1106 const char *procname = entry->procname;
1107 link = find_entry(&head, dir, procname, strlen(procname));
1108 head->nreg++;
1109 }
1110 return true;
1111}
1112
1113static int insert_links(struct ctl_table_header *head)
1114{
1115 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1116 struct ctl_dir *core_parent = NULL;
1117 struct ctl_table_header *links;
1118 int err;
1119
1120 if (head->set == root_set)
1121 return 0;
1122
1123 core_parent = xlate_dir(root_set, head->parent);
1124 if (IS_ERR(core_parent))
1125 return 0;
1126
1127 if (get_links(core_parent, head->ctl_table, head->root))
1128 return 0;
1129
1130 core_parent->header.nreg++;
1131 spin_unlock(&sysctl_lock);
1132
1133 links = new_links(core_parent, head->ctl_table, head->root);
1134
1135 spin_lock(&sysctl_lock);
1136 err = -ENOMEM;
1137 if (!links)
1138 goto out;
1139
1140 err = 0;
1141 if (get_links(core_parent, head->ctl_table, head->root)) {
1142 kfree(links);
1143 goto out;
1144 }
1145
1146 err = insert_header(core_parent, links);
1147 if (err)
1148 kfree(links);
1149out:
1150 drop_sysctl_table(&core_parent->header);
1151 return err;
1152}
1153
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001154/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001155 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001156 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001157 * @path: The path to the directory the sysctl table is in.
1158 * @table: the top-level table structure
1159 *
1160 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1161 * array. A completely 0 filled entry terminates the table.
1162 *
1163 * The members of the &struct ctl_table structure are used as follows:
1164 *
1165 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1166 * enter a sysctl file
1167 *
1168 * data - a pointer to data for use by proc_handler
1169 *
1170 * maxlen - the maximum size in bytes of the data
1171 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001172 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001173 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001174 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001175 *
1176 * proc_handler - the text handler routine (described below)
1177 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001178 * extra1, extra2 - extra pointers usable by the proc handler routines
1179 *
1180 * Leaf nodes in the sysctl tree will be represented by a single file
1181 * under /proc; non-leaf nodes will be represented by directories.
1182 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001183 * There must be a proc_handler routine for any terminal nodes.
1184 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001185 *
1186 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1187 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1188 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1189 *
1190 * It is the handler's job to read the input buffer from user memory
1191 * and process it. The handler should return 0 on success.
1192 *
1193 * This routine returns %NULL on a failure to register, and a pointer
1194 * to the table header on success.
1195 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001196struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001197 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001198 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001199{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001200 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001201 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001202 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001203 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001204 struct ctl_table *entry;
1205 struct ctl_node *node;
1206 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001207
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001208 for (entry = table; entry->procname; entry++)
1209 nr_entries++;
1210
1211 header = kzalloc(sizeof(struct ctl_table_header) +
1212 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001213 if (!header)
1214 return NULL;
1215
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001216 node = (struct ctl_node *)(header + 1);
1217 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001218 if (sysctl_check_table(path, table))
1219 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001220
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001221 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001222 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001223 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001224 dir->header.nreg++;
1225 spin_unlock(&sysctl_lock);
1226
1227 /* Find the directory for the ctl_table */
1228 for (name = path; name; name = nextname) {
1229 int namelen;
1230 nextname = strchr(name, '/');
1231 if (nextname) {
1232 namelen = nextname - name;
1233 nextname++;
1234 } else {
1235 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001236 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001237 if (namelen == 0)
1238 continue;
1239
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001240 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001241 if (IS_ERR(dir))
1242 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001243 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001244
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001245 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001246 if (insert_header(dir, header))
1247 goto fail_put_dir_locked;
1248
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001249 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001250 spin_unlock(&sysctl_lock);
1251
1252 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001253
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001254fail_put_dir_locked:
1255 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001256 spin_unlock(&sysctl_lock);
1257fail:
1258 kfree(header);
1259 dump_stack();
1260 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001261}
1262
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001263/**
1264 * register_sysctl - register a sysctl table
1265 * @path: The path to the directory the sysctl table is in.
1266 * @table: the table structure
1267 *
1268 * Register a sysctl table. @table should be a filled in ctl_table
1269 * array. A completely 0 filled entry terminates the table.
1270 *
1271 * See __register_sysctl_table for more details.
1272 */
1273struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1274{
1275 return __register_sysctl_table(&sysctl_table_root.default_set,
1276 path, table);
1277}
1278EXPORT_SYMBOL(register_sysctl);
1279
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001280static char *append_path(const char *path, char *pos, const char *name)
1281{
1282 int namelen;
1283 namelen = strlen(name);
1284 if (((pos - path) + namelen + 2) >= PATH_MAX)
1285 return NULL;
1286 memcpy(pos, name, namelen);
1287 pos[namelen] = '/';
1288 pos[namelen + 1] = '\0';
1289 pos += namelen + 1;
1290 return pos;
1291}
1292
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001293static int count_subheaders(struct ctl_table *table)
1294{
1295 int has_files = 0;
1296 int nr_subheaders = 0;
1297 struct ctl_table *entry;
1298
1299 /* special case: no directory and empty directory */
1300 if (!table || !table->procname)
1301 return 1;
1302
1303 for (entry = table; entry->procname; entry++) {
1304 if (entry->child)
1305 nr_subheaders += count_subheaders(entry->child);
1306 else
1307 has_files = 1;
1308 }
1309 return nr_subheaders + has_files;
1310}
1311
1312static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001313 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001314 struct ctl_table *table)
1315{
1316 struct ctl_table *ctl_table_arg = NULL;
1317 struct ctl_table *entry, *files;
1318 int nr_files = 0;
1319 int nr_dirs = 0;
1320 int err = -ENOMEM;
1321
1322 for (entry = table; entry->procname; entry++) {
1323 if (entry->child)
1324 nr_dirs++;
1325 else
1326 nr_files++;
1327 }
1328
1329 files = table;
1330 /* If there are mixed files and directories we need a new table */
1331 if (nr_dirs && nr_files) {
1332 struct ctl_table *new;
1333 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1334 GFP_KERNEL);
1335 if (!files)
1336 goto out;
1337
1338 ctl_table_arg = files;
1339 for (new = files, entry = table; entry->procname; entry++) {
1340 if (entry->child)
1341 continue;
1342 *new = *entry;
1343 new++;
1344 }
1345 }
1346
1347 /* Register everything except a directory full of subdirectories */
1348 if (nr_files || !nr_dirs) {
1349 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001350 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001351 if (!header) {
1352 kfree(ctl_table_arg);
1353 goto out;
1354 }
1355
1356 /* Remember if we need to free the file table */
1357 header->ctl_table_arg = ctl_table_arg;
1358 **subheader = header;
1359 (*subheader)++;
1360 }
1361
1362 /* Recurse into the subdirectories. */
1363 for (entry = table; entry->procname; entry++) {
1364 char *child_pos;
1365
1366 if (!entry->child)
1367 continue;
1368
1369 err = -ENAMETOOLONG;
1370 child_pos = append_path(path, pos, entry->procname);
1371 if (!child_pos)
1372 goto out;
1373
1374 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001375 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001376 pos[0] = '\0';
1377 if (err)
1378 goto out;
1379 }
1380 err = 0;
1381out:
1382 /* On failure our caller will unregister all registered subheaders */
1383 return err;
1384}
1385
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001386/**
1387 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001388 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001389 * @path: The path to the directory the sysctl table is in.
1390 * @table: the top-level table structure
1391 *
1392 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1393 * array. A completely 0 filled entry terminates the table.
1394 *
1395 * See __register_sysctl_table for more details.
1396 */
1397struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001398 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001399 const struct ctl_path *path, struct ctl_table *table)
1400{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001401 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001402 int nr_subheaders = count_subheaders(table);
1403 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001404 const struct ctl_path *component;
1405 char *new_path, *pos;
1406
1407 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1408 if (!new_path)
1409 return NULL;
1410
1411 pos[0] = '\0';
1412 for (component = path; component->procname; component++) {
1413 pos = append_path(new_path, pos, component->procname);
1414 if (!pos)
1415 goto out;
1416 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001417 while (table->procname && table->child && !table[1].procname) {
1418 pos = append_path(new_path, pos, table->procname);
1419 if (!pos)
1420 goto out;
1421 table = table->child;
1422 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001423 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001424 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001425 if (header)
1426 header->ctl_table_arg = ctl_table_arg;
1427 } else {
1428 header = kzalloc(sizeof(*header) +
1429 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1430 if (!header)
1431 goto out;
1432
1433 subheaders = (struct ctl_table_header **) (header + 1);
1434 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001435 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001436
1437 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001438 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001439 goto err_register_leaves;
1440 }
1441
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001442out:
1443 kfree(new_path);
1444 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001445
1446err_register_leaves:
1447 while (subheader > subheaders) {
1448 struct ctl_table_header *subh = *(--subheader);
1449 struct ctl_table *table = subh->ctl_table_arg;
1450 unregister_sysctl_table(subh);
1451 kfree(table);
1452 }
1453 kfree(header);
1454 header = NULL;
1455 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001456}
1457
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001458/**
1459 * register_sysctl_table_path - register a sysctl table hierarchy
1460 * @path: The path to the directory the sysctl table is in.
1461 * @table: the top-level table structure
1462 *
1463 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1464 * array. A completely 0 filled entry terminates the table.
1465 *
1466 * See __register_sysctl_paths for more details.
1467 */
1468struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1469 struct ctl_table *table)
1470{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001471 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001472 path, table);
1473}
1474EXPORT_SYMBOL(register_sysctl_paths);
1475
1476/**
1477 * register_sysctl_table - register a sysctl table hierarchy
1478 * @table: the top-level table structure
1479 *
1480 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1481 * array. A completely 0 filled entry terminates the table.
1482 *
1483 * See register_sysctl_paths for more details.
1484 */
1485struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1486{
1487 static const struct ctl_path null_path[] = { {} };
1488
1489 return register_sysctl_paths(null_path, table);
1490}
1491EXPORT_SYMBOL(register_sysctl_table);
1492
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001493static void put_links(struct ctl_table_header *header)
1494{
1495 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1496 struct ctl_table_root *root = header->root;
1497 struct ctl_dir *parent = header->parent;
1498 struct ctl_dir *core_parent;
1499 struct ctl_table *entry;
1500
1501 if (header->set == root_set)
1502 return;
1503
1504 core_parent = xlate_dir(root_set, parent);
1505 if (IS_ERR(core_parent))
1506 return;
1507
1508 for (entry = header->ctl_table; entry->procname; entry++) {
1509 struct ctl_table_header *link_head;
1510 struct ctl_table *link;
1511 const char *name = entry->procname;
1512
1513 link = find_entry(&link_head, core_parent, name, strlen(name));
1514 if (link &&
1515 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1516 (S_ISLNK(link->mode) && (link->data == root)))) {
1517 drop_sysctl_table(link_head);
1518 }
1519 else {
1520 printk(KERN_ERR "sysctl link missing during unregister: ");
1521 sysctl_print_dir(parent);
1522 printk(KERN_CONT "/%s\n", name);
1523 }
1524 }
1525}
1526
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001527static void drop_sysctl_table(struct ctl_table_header *header)
1528{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001529 struct ctl_dir *parent = header->parent;
1530
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001531 if (--header->nreg)
1532 return;
1533
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001534 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001535 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001536 if (!--header->count)
1537 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001538
1539 if (parent)
1540 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001541}
1542
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001543/**
1544 * unregister_sysctl_table - unregister a sysctl table hierarchy
1545 * @header: the header returned from register_sysctl_table
1546 *
1547 * Unregisters the sysctl table and all children. proc entries may not
1548 * actually be removed until they are no longer used by anyone.
1549 */
1550void unregister_sysctl_table(struct ctl_table_header * header)
1551{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001552 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001553 might_sleep();
1554
1555 if (header == NULL)
1556 return;
1557
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001558 nr_subheaders = count_subheaders(header->ctl_table_arg);
1559 if (unlikely(nr_subheaders > 1)) {
1560 struct ctl_table_header **subheaders;
1561 int i;
1562
1563 subheaders = (struct ctl_table_header **)(header + 1);
1564 for (i = nr_subheaders -1; i >= 0; i--) {
1565 struct ctl_table_header *subh = subheaders[i];
1566 struct ctl_table *table = subh->ctl_table_arg;
1567 unregister_sysctl_table(subh);
1568 kfree(table);
1569 }
1570 kfree(header);
1571 return;
1572 }
1573
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001574 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001575 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001576 spin_unlock(&sysctl_lock);
1577}
1578EXPORT_SYMBOL(unregister_sysctl_table);
1579
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001580void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001581 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001582 int (*is_seen)(struct ctl_table_set *))
1583{
Dan Carpenter13474402012-01-30 16:40:29 +03001584 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001585 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001586 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001587}
1588
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001589void retire_sysctl_set(struct ctl_table_set *set)
1590{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001591 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001592}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001593
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001594int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001595{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001596 struct proc_dir_entry *proc_sys_root;
1597
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001598 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001599 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1600 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001601 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001602
1603 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001604}