GNU Linux-libre 4.9.337-gnu1
[releases.git] / fs / proc / proc_sysctl.c
1 /*
2  * /proc/sys support
3  */
4 #include <linux/init.h>
5 #include <linux/sysctl.h>
6 #include <linux/poll.h>
7 #include <linux/proc_fs.h>
8 #include <linux/printk.h>
9 #include <linux/security.h>
10 #include <linux/sched.h>
11 #include <linux/namei.h>
12 #include <linux/mm.h>
13 #include <linux/module.h>
14 #include "internal.h"
15
16 static const struct dentry_operations proc_sys_dentry_operations;
17 static const struct file_operations proc_sys_file_operations;
18 static const struct inode_operations proc_sys_inode_operations;
19 static const struct file_operations proc_sys_dir_file_operations;
20 static const struct inode_operations proc_sys_dir_operations;
21
22 /* Support for permanently empty directories */
23
24 struct ctl_table sysctl_mount_point[] = {
25         { }
26 };
27
28 static bool is_empty_dir(struct ctl_table_header *head)
29 {
30         return head->ctl_table[0].child == sysctl_mount_point;
31 }
32
33 static void set_empty_dir(struct ctl_dir *dir)
34 {
35         dir->header.ctl_table[0].child = sysctl_mount_point;
36 }
37
38 static void clear_empty_dir(struct ctl_dir *dir)
39
40 {
41         dir->header.ctl_table[0].child = NULL;
42 }
43
44 void proc_sys_poll_notify(struct ctl_table_poll *poll)
45 {
46         if (!poll)
47                 return;
48
49         atomic_inc(&poll->event);
50         wake_up_interruptible(&poll->wait);
51 }
52
53 static struct ctl_table root_table[] = {
54         {
55                 .procname = "",
56                 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
57         },
58         { }
59 };
60 static struct ctl_table_root sysctl_table_root = {
61         .default_set.dir.header = {
62                 {{.count = 1,
63                   .nreg = 1,
64                   .ctl_table = root_table }},
65                 .ctl_table_arg = root_table,
66                 .root = &sysctl_table_root,
67                 .set = &sysctl_table_root.default_set,
68         },
69 };
70
71 static DEFINE_SPINLOCK(sysctl_lock);
72
73 static void drop_sysctl_table(struct ctl_table_header *header);
74 static int sysctl_follow_link(struct ctl_table_header **phead,
75         struct ctl_table **pentry);
76 static int insert_links(struct ctl_table_header *head);
77 static void put_links(struct ctl_table_header *header);
78
79 static void sysctl_print_dir(struct ctl_dir *dir)
80 {
81         if (dir->header.parent)
82                 sysctl_print_dir(dir->header.parent);
83         pr_cont("%s/", dir->header.ctl_table[0].procname);
84 }
85
86 static int namecmp(const char *name1, int len1, const char *name2, int len2)
87 {
88         int minlen;
89         int cmp;
90
91         minlen = len1;
92         if (minlen > len2)
93                 minlen = len2;
94
95         cmp = memcmp(name1, name2, minlen);
96         if (cmp == 0)
97                 cmp = len1 - len2;
98         return cmp;
99 }
100
101 /* Called under sysctl_lock */
102 static struct ctl_table *find_entry(struct ctl_table_header **phead,
103         struct ctl_dir *dir, const char *name, int namelen)
104 {
105         struct ctl_table_header *head;
106         struct ctl_table *entry;
107         struct rb_node *node = dir->root.rb_node;
108
109         while (node)
110         {
111                 struct ctl_node *ctl_node;
112                 const char *procname;
113                 int cmp;
114
115                 ctl_node = rb_entry(node, struct ctl_node, node);
116                 head = ctl_node->header;
117                 entry = &head->ctl_table[ctl_node - head->node];
118                 procname = entry->procname;
119
120                 cmp = namecmp(name, namelen, procname, strlen(procname));
121                 if (cmp < 0)
122                         node = node->rb_left;
123                 else if (cmp > 0)
124                         node = node->rb_right;
125                 else {
126                         *phead = head;
127                         return entry;
128                 }
129         }
130         return NULL;
131 }
132
133 static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
134 {
135         struct rb_node *node = &head->node[entry - head->ctl_table].node;
136         struct rb_node **p = &head->parent->root.rb_node;
137         struct rb_node *parent = NULL;
138         const char *name = entry->procname;
139         int namelen = strlen(name);
140
141         while (*p) {
142                 struct ctl_table_header *parent_head;
143                 struct ctl_table *parent_entry;
144                 struct ctl_node *parent_node;
145                 const char *parent_name;
146                 int cmp;
147
148                 parent = *p;
149                 parent_node = rb_entry(parent, struct ctl_node, node);
150                 parent_head = parent_node->header;
151                 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
152                 parent_name = parent_entry->procname;
153
154                 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
155                 if (cmp < 0)
156                         p = &(*p)->rb_left;
157                 else if (cmp > 0)
158                         p = &(*p)->rb_right;
159                 else {
160                         pr_err("sysctl duplicate entry: ");
161                         sysctl_print_dir(head->parent);
162                         pr_cont("/%s\n", entry->procname);
163                         return -EEXIST;
164                 }
165         }
166
167         rb_link_node(node, parent, p);
168         rb_insert_color(node, &head->parent->root);
169         return 0;
170 }
171
172 static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
173 {
174         struct rb_node *node = &head->node[entry - head->ctl_table].node;
175
176         rb_erase(node, &head->parent->root);
177 }
178
179 static void init_header(struct ctl_table_header *head,
180         struct ctl_table_root *root, struct ctl_table_set *set,
181         struct ctl_node *node, struct ctl_table *table)
182 {
183         head->ctl_table = table;
184         head->ctl_table_arg = table;
185         head->used = 0;
186         head->count = 1;
187         head->nreg = 1;
188         head->unregistering = NULL;
189         head->root = root;
190         head->set = set;
191         head->parent = NULL;
192         head->node = node;
193         INIT_HLIST_HEAD(&head->inodes);
194         if (node) {
195                 struct ctl_table *entry;
196                 for (entry = table; entry->procname; entry++, node++)
197                         node->header = head;
198         }
199 }
200
201 static void erase_header(struct ctl_table_header *head)
202 {
203         struct ctl_table *entry;
204         for (entry = head->ctl_table; entry->procname; entry++)
205                 erase_entry(head, entry);
206 }
207
208 static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
209 {
210         struct ctl_table *entry;
211         int err;
212
213         /* Is this a permanently empty directory? */
214         if (is_empty_dir(&dir->header))
215                 return -EROFS;
216
217         /* Am I creating a permanently empty directory? */
218         if (header->ctl_table == sysctl_mount_point) {
219                 if (!RB_EMPTY_ROOT(&dir->root))
220                         return -EINVAL;
221                 set_empty_dir(dir);
222         }
223
224         dir->header.nreg++;
225         header->parent = dir;
226         err = insert_links(header);
227         if (err)
228                 goto fail_links;
229         for (entry = header->ctl_table; entry->procname; entry++) {
230                 err = insert_entry(header, entry);
231                 if (err)
232                         goto fail;
233         }
234         return 0;
235 fail:
236         erase_header(header);
237         put_links(header);
238 fail_links:
239         if (header->ctl_table == sysctl_mount_point)
240                 clear_empty_dir(dir);
241         header->parent = NULL;
242         drop_sysctl_table(&dir->header);
243         return err;
244 }
245
246 /* called under sysctl_lock */
247 static int use_table(struct ctl_table_header *p)
248 {
249         if (unlikely(p->unregistering))
250                 return 0;
251         p->used++;
252         return 1;
253 }
254
255 /* called under sysctl_lock */
256 static void unuse_table(struct ctl_table_header *p)
257 {
258         if (!--p->used)
259                 if (unlikely(p->unregistering))
260                         complete(p->unregistering);
261 }
262
263 static void proc_sys_prune_dcache(struct ctl_table_header *head)
264 {
265         struct inode *inode;
266         struct proc_inode *ei;
267         struct hlist_node *node;
268         struct super_block *sb;
269
270         rcu_read_lock();
271         for (;;) {
272                 node = hlist_first_rcu(&head->inodes);
273                 if (!node)
274                         break;
275                 ei = hlist_entry(node, struct proc_inode, sysctl_inodes);
276                 spin_lock(&sysctl_lock);
277                 hlist_del_init_rcu(&ei->sysctl_inodes);
278                 spin_unlock(&sysctl_lock);
279
280                 inode = &ei->vfs_inode;
281                 sb = inode->i_sb;
282                 if (!atomic_inc_not_zero(&sb->s_active))
283                         continue;
284                 inode = igrab(inode);
285                 rcu_read_unlock();
286                 if (unlikely(!inode)) {
287                         deactivate_super(sb);
288                         rcu_read_lock();
289                         continue;
290                 }
291
292                 d_prune_aliases(inode);
293                 iput(inode);
294                 deactivate_super(sb);
295
296                 rcu_read_lock();
297         }
298         rcu_read_unlock();
299 }
300
301 /* called under sysctl_lock, will reacquire if has to wait */
302 static void start_unregistering(struct ctl_table_header *p)
303 {
304         /*
305          * if p->used is 0, nobody will ever touch that entry again;
306          * we'll eliminate all paths to it before dropping sysctl_lock
307          */
308         if (unlikely(p->used)) {
309                 struct completion wait;
310                 init_completion(&wait);
311                 p->unregistering = &wait;
312                 spin_unlock(&sysctl_lock);
313                 wait_for_completion(&wait);
314         } else {
315                 /* anything non-NULL; we'll never dereference it */
316                 p->unregistering = ERR_PTR(-EINVAL);
317                 spin_unlock(&sysctl_lock);
318         }
319         /*
320          * Prune dentries for unregistered sysctls: namespaced sysctls
321          * can have duplicate names and contaminate dcache very badly.
322          */
323         proc_sys_prune_dcache(p);
324         /*
325          * do not remove from the list until nobody holds it; walking the
326          * list in do_sysctl() relies on that.
327          */
328         spin_lock(&sysctl_lock);
329         erase_header(p);
330 }
331
332 static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
333 {
334         BUG_ON(!head);
335         spin_lock(&sysctl_lock);
336         if (!use_table(head))
337                 head = ERR_PTR(-ENOENT);
338         spin_unlock(&sysctl_lock);
339         return head;
340 }
341
342 static void sysctl_head_finish(struct ctl_table_header *head)
343 {
344         if (!head)
345                 return;
346         spin_lock(&sysctl_lock);
347         unuse_table(head);
348         spin_unlock(&sysctl_lock);
349 }
350
351 static struct ctl_table_set *
352 lookup_header_set(struct ctl_table_root *root)
353 {
354         struct ctl_table_set *set = &root->default_set;
355         if (root->lookup)
356                 set = root->lookup(root);
357         return set;
358 }
359
360 static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
361                                       struct ctl_dir *dir,
362                                       const char *name, int namelen)
363 {
364         struct ctl_table_header *head;
365         struct ctl_table *entry;
366
367         spin_lock(&sysctl_lock);
368         entry = find_entry(&head, dir, name, namelen);
369         if (entry && use_table(head))
370                 *phead = head;
371         else
372                 entry = NULL;
373         spin_unlock(&sysctl_lock);
374         return entry;
375 }
376
377 static struct ctl_node *first_usable_entry(struct rb_node *node)
378 {
379         struct ctl_node *ctl_node;
380
381         for (;node; node = rb_next(node)) {
382                 ctl_node = rb_entry(node, struct ctl_node, node);
383                 if (use_table(ctl_node->header))
384                         return ctl_node;
385         }
386         return NULL;
387 }
388
389 static void first_entry(struct ctl_dir *dir,
390         struct ctl_table_header **phead, struct ctl_table **pentry)
391 {
392         struct ctl_table_header *head = NULL;
393         struct ctl_table *entry = NULL;
394         struct ctl_node *ctl_node;
395
396         spin_lock(&sysctl_lock);
397         ctl_node = first_usable_entry(rb_first(&dir->root));
398         spin_unlock(&sysctl_lock);
399         if (ctl_node) {
400                 head = ctl_node->header;
401                 entry = &head->ctl_table[ctl_node - head->node];
402         }
403         *phead = head;
404         *pentry = entry;
405 }
406
407 static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
408 {
409         struct ctl_table_header *head = *phead;
410         struct ctl_table *entry = *pentry;
411         struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
412
413         spin_lock(&sysctl_lock);
414         unuse_table(head);
415
416         ctl_node = first_usable_entry(rb_next(&ctl_node->node));
417         spin_unlock(&sysctl_lock);
418         head = NULL;
419         if (ctl_node) {
420                 head = ctl_node->header;
421                 entry = &head->ctl_table[ctl_node - head->node];
422         }
423         *phead = head;
424         *pentry = entry;
425 }
426
427 void register_sysctl_root(struct ctl_table_root *root)
428 {
429 }
430
431 /*
432  * sysctl_perm does NOT grant the superuser all rights automatically, because
433  * some sysctl variables are readonly even to root.
434  */
435
436 static int test_perm(int mode, int op)
437 {
438         if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
439                 mode >>= 6;
440         else if (in_egroup_p(GLOBAL_ROOT_GID))
441                 mode >>= 3;
442         if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
443                 return 0;
444         return -EACCES;
445 }
446
447 static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
448 {
449         struct ctl_table_root *root = head->root;
450         int mode;
451
452         if (root->permissions)
453                 mode = root->permissions(head, table);
454         else
455                 mode = table->mode;
456
457         return test_perm(mode, op);
458 }
459
460 static struct inode *proc_sys_make_inode(struct super_block *sb,
461                 struct ctl_table_header *head, struct ctl_table *table)
462 {
463         struct ctl_table_root *root = head->root;
464         struct inode *inode;
465         struct proc_inode *ei;
466
467         inode = new_inode(sb);
468         if (!inode)
469                 return ERR_PTR(-ENOMEM);
470
471         inode->i_ino = get_next_ino();
472
473         ei = PROC_I(inode);
474
475         spin_lock(&sysctl_lock);
476         if (unlikely(head->unregistering)) {
477                 spin_unlock(&sysctl_lock);
478                 iput(inode);
479                 return ERR_PTR(-ENOENT);
480         }
481         ei->sysctl = head;
482         ei->sysctl_entry = table;
483         hlist_add_head_rcu(&ei->sysctl_inodes, &head->inodes);
484         head->count++;
485         spin_unlock(&sysctl_lock);
486
487         inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
488         inode->i_mode = table->mode;
489         if (!S_ISDIR(table->mode)) {
490                 inode->i_mode |= S_IFREG;
491                 inode->i_op = &proc_sys_inode_operations;
492                 inode->i_fop = &proc_sys_file_operations;
493         } else {
494                 inode->i_mode |= S_IFDIR;
495                 inode->i_op = &proc_sys_dir_operations;
496                 inode->i_fop = &proc_sys_dir_file_operations;
497                 if (is_empty_dir(head))
498                         make_empty_dir_inode(inode);
499         }
500
501         if (root->set_ownership)
502                 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
503         else {
504                 inode->i_uid = GLOBAL_ROOT_UID;
505                 inode->i_gid = GLOBAL_ROOT_GID;
506         }
507
508         return inode;
509 }
510
511 void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
512 {
513         spin_lock(&sysctl_lock);
514         hlist_del_init_rcu(&PROC_I(inode)->sysctl_inodes);
515         if (!--head->count)
516                 kfree_rcu(head, rcu);
517         spin_unlock(&sysctl_lock);
518 }
519
520 static struct ctl_table_header *grab_header(struct inode *inode)
521 {
522         struct ctl_table_header *head = PROC_I(inode)->sysctl;
523         if (!head)
524                 head = &sysctl_table_root.default_set.dir.header;
525         return sysctl_head_grab(head);
526 }
527
528 static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
529                                         unsigned int flags)
530 {
531         struct ctl_table_header *head = grab_header(dir);
532         struct ctl_table_header *h = NULL;
533         const struct qstr *name = &dentry->d_name;
534         struct ctl_table *p;
535         struct inode *inode;
536         struct dentry *err = ERR_PTR(-ENOENT);
537         struct ctl_dir *ctl_dir;
538         int ret;
539
540         if (IS_ERR(head))
541                 return ERR_CAST(head);
542
543         ctl_dir = container_of(head, struct ctl_dir, header);
544
545         p = lookup_entry(&h, ctl_dir, name->name, name->len);
546         if (!p)
547                 goto out;
548
549         if (S_ISLNK(p->mode)) {
550                 ret = sysctl_follow_link(&h, &p);
551                 err = ERR_PTR(ret);
552                 if (ret)
553                         goto out;
554         }
555
556         inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
557         if (IS_ERR(inode)) {
558                 err = ERR_CAST(inode);
559                 goto out;
560         }
561
562         err = NULL;
563         d_set_d_op(dentry, &proc_sys_dentry_operations);
564         d_add(dentry, inode);
565
566 out:
567         if (h)
568                 sysctl_head_finish(h);
569         sysctl_head_finish(head);
570         return err;
571 }
572
573 static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
574                 size_t count, loff_t *ppos, int write)
575 {
576         struct inode *inode = file_inode(filp);
577         struct ctl_table_header *head = grab_header(inode);
578         struct ctl_table *table = PROC_I(inode)->sysctl_entry;
579         ssize_t error;
580         size_t res;
581
582         if (IS_ERR(head))
583                 return PTR_ERR(head);
584
585         /*
586          * At this point we know that the sysctl was not unregistered
587          * and won't be until we finish.
588          */
589         error = -EPERM;
590         if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
591                 goto out;
592
593         /* if that can happen at all, it should be -EINVAL, not -EISDIR */
594         error = -EINVAL;
595         if (!table->proc_handler)
596                 goto out;
597
598         /* careful: calling conventions are nasty here */
599         res = count;
600         error = table->proc_handler(table, write, buf, &res, ppos);
601         if (!error)
602                 error = res;
603 out:
604         sysctl_head_finish(head);
605
606         return error;
607 }
608
609 static ssize_t proc_sys_read(struct file *filp, char __user *buf,
610                                 size_t count, loff_t *ppos)
611 {
612         return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
613 }
614
615 static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
616                                 size_t count, loff_t *ppos)
617 {
618         return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
619 }
620
621 static int proc_sys_open(struct inode *inode, struct file *filp)
622 {
623         struct ctl_table_header *head = grab_header(inode);
624         struct ctl_table *table = PROC_I(inode)->sysctl_entry;
625
626         /* sysctl was unregistered */
627         if (IS_ERR(head))
628                 return PTR_ERR(head);
629
630         if (table->poll)
631                 filp->private_data = proc_sys_poll_event(table->poll);
632
633         sysctl_head_finish(head);
634
635         return 0;
636 }
637
638 static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
639 {
640         struct inode *inode = file_inode(filp);
641         struct ctl_table_header *head = grab_header(inode);
642         struct ctl_table *table = PROC_I(inode)->sysctl_entry;
643         unsigned int ret = DEFAULT_POLLMASK;
644         unsigned long event;
645
646         /* sysctl was unregistered */
647         if (IS_ERR(head))
648                 return POLLERR | POLLHUP;
649
650         if (!table->proc_handler)
651                 goto out;
652
653         if (!table->poll)
654                 goto out;
655
656         event = (unsigned long)filp->private_data;
657         poll_wait(filp, &table->poll->wait, wait);
658
659         if (event != atomic_read(&table->poll->event)) {
660                 filp->private_data = proc_sys_poll_event(table->poll);
661                 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
662         }
663
664 out:
665         sysctl_head_finish(head);
666
667         return ret;
668 }
669
670 static bool proc_sys_fill_cache(struct file *file,
671                                 struct dir_context *ctx,
672                                 struct ctl_table_header *head,
673                                 struct ctl_table *table)
674 {
675         struct dentry *child, *dir = file->f_path.dentry;
676         struct inode *inode;
677         struct qstr qname;
678         ino_t ino = 0;
679         unsigned type = DT_UNKNOWN;
680
681         qname.name = table->procname;
682         qname.len  = strlen(table->procname);
683         qname.hash = full_name_hash(dir, qname.name, qname.len);
684
685         child = d_lookup(dir, &qname);
686         if (!child) {
687                 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
688                 child = d_alloc_parallel(dir, &qname, &wq);
689                 if (IS_ERR(child))
690                         return false;
691                 if (d_in_lookup(child)) {
692                         inode = proc_sys_make_inode(dir->d_sb, head, table);
693                         if (IS_ERR(inode)) {
694                                 d_lookup_done(child);
695                                 dput(child);
696                                 return false;
697                         }
698                         d_set_d_op(child, &proc_sys_dentry_operations);
699                         d_add(child, inode);
700                 }
701         }
702         inode = d_inode(child);
703         ino  = inode->i_ino;
704         type = inode->i_mode >> 12;
705         dput(child);
706         return dir_emit(ctx, qname.name, qname.len, ino, type);
707 }
708
709 static bool proc_sys_link_fill_cache(struct file *file,
710                                     struct dir_context *ctx,
711                                     struct ctl_table_header *head,
712                                     struct ctl_table *table)
713 {
714         bool ret = true;
715
716         head = sysctl_head_grab(head);
717         if (IS_ERR(head))
718                 return false;
719
720         if (S_ISLNK(table->mode)) {
721                 /* It is not an error if we can not follow the link ignore it */
722                 int err = sysctl_follow_link(&head, &table);
723                 if (err)
724                         goto out;
725         }
726
727         ret = proc_sys_fill_cache(file, ctx, head, table);
728 out:
729         sysctl_head_finish(head);
730         return ret;
731 }
732
733 static int scan(struct ctl_table_header *head, struct ctl_table *table,
734                 unsigned long *pos, struct file *file,
735                 struct dir_context *ctx)
736 {
737         bool res;
738
739         if ((*pos)++ < ctx->pos)
740                 return true;
741
742         if (unlikely(S_ISLNK(table->mode)))
743                 res = proc_sys_link_fill_cache(file, ctx, head, table);
744         else
745                 res = proc_sys_fill_cache(file, ctx, head, table);
746
747         if (res)
748                 ctx->pos = *pos;
749
750         return res;
751 }
752
753 static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
754 {
755         struct ctl_table_header *head = grab_header(file_inode(file));
756         struct ctl_table_header *h = NULL;
757         struct ctl_table *entry;
758         struct ctl_dir *ctl_dir;
759         unsigned long pos;
760
761         if (IS_ERR(head))
762                 return PTR_ERR(head);
763
764         ctl_dir = container_of(head, struct ctl_dir, header);
765
766         if (!dir_emit_dots(file, ctx))
767                 goto out;
768
769         pos = 2;
770
771         for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
772                 if (!scan(h, entry, &pos, file, ctx)) {
773                         sysctl_head_finish(h);
774                         break;
775                 }
776         }
777 out:
778         sysctl_head_finish(head);
779         return 0;
780 }
781
782 static int proc_sys_permission(struct inode *inode, int mask)
783 {
784         /*
785          * sysctl entries that are not writeable,
786          * are _NOT_ writeable, capabilities or not.
787          */
788         struct ctl_table_header *head;
789         struct ctl_table *table;
790         int error;
791
792         /* Executable files are not allowed under /proc/sys/ */
793         if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
794                 return -EACCES;
795
796         head = grab_header(inode);
797         if (IS_ERR(head))
798                 return PTR_ERR(head);
799
800         table = PROC_I(inode)->sysctl_entry;
801         if (!table) /* global root - r-xr-xr-x */
802                 error = mask & MAY_WRITE ? -EACCES : 0;
803         else /* Use the permissions on the sysctl table entry */
804                 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
805
806         sysctl_head_finish(head);
807         return error;
808 }
809
810 static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
811 {
812         struct inode *inode = d_inode(dentry);
813         int error;
814
815         if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
816                 return -EPERM;
817
818         error = setattr_prepare(dentry, attr);
819         if (error)
820                 return error;
821
822         setattr_copy(inode, attr);
823         mark_inode_dirty(inode);
824         return 0;
825 }
826
827 static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
828 {
829         struct inode *inode = d_inode(dentry);
830         struct ctl_table_header *head = grab_header(inode);
831         struct ctl_table *table = PROC_I(inode)->sysctl_entry;
832
833         if (IS_ERR(head))
834                 return PTR_ERR(head);
835
836         generic_fillattr(inode, stat);
837         if (table)
838                 stat->mode = (stat->mode & S_IFMT) | table->mode;
839
840         sysctl_head_finish(head);
841         return 0;
842 }
843
844 static const struct file_operations proc_sys_file_operations = {
845         .open           = proc_sys_open,
846         .poll           = proc_sys_poll,
847         .read           = proc_sys_read,
848         .write          = proc_sys_write,
849         .llseek         = default_llseek,
850 };
851
852 static const struct file_operations proc_sys_dir_file_operations = {
853         .read           = generic_read_dir,
854         .iterate_shared = proc_sys_readdir,
855         .llseek         = generic_file_llseek,
856 };
857
858 static const struct inode_operations proc_sys_inode_operations = {
859         .permission     = proc_sys_permission,
860         .setattr        = proc_sys_setattr,
861         .getattr        = proc_sys_getattr,
862 };
863
864 static const struct inode_operations proc_sys_dir_operations = {
865         .lookup         = proc_sys_lookup,
866         .permission     = proc_sys_permission,
867         .setattr        = proc_sys_setattr,
868         .getattr        = proc_sys_getattr,
869 };
870
871 static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
872 {
873         if (flags & LOOKUP_RCU)
874                 return -ECHILD;
875         return !PROC_I(d_inode(dentry))->sysctl->unregistering;
876 }
877
878 static int proc_sys_delete(const struct dentry *dentry)
879 {
880         return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
881 }
882
883 static int sysctl_is_seen(struct ctl_table_header *p)
884 {
885         struct ctl_table_set *set = p->set;
886         int res;
887         spin_lock(&sysctl_lock);
888         if (p->unregistering)
889                 res = 0;
890         else if (!set->is_seen)
891                 res = 1;
892         else
893                 res = set->is_seen(set);
894         spin_unlock(&sysctl_lock);
895         return res;
896 }
897
898 static int proc_sys_compare(const struct dentry *dentry,
899                 unsigned int len, const char *str, const struct qstr *name)
900 {
901         struct ctl_table_header *head;
902         struct inode *inode;
903
904         /* Although proc doesn't have negative dentries, rcu-walk means
905          * that inode here can be NULL */
906         /* AV: can it, indeed? */
907         inode = d_inode_rcu(dentry);
908         if (!inode)
909                 return 1;
910         if (name->len != len)
911                 return 1;
912         if (memcmp(name->name, str, len))
913                 return 1;
914         head = rcu_dereference(PROC_I(inode)->sysctl);
915         return !head || !sysctl_is_seen(head);
916 }
917
918 static const struct dentry_operations proc_sys_dentry_operations = {
919         .d_revalidate   = proc_sys_revalidate,
920         .d_delete       = proc_sys_delete,
921         .d_compare      = proc_sys_compare,
922 };
923
924 static struct ctl_dir *find_subdir(struct ctl_dir *dir,
925                                    const char *name, int namelen)
926 {
927         struct ctl_table_header *head;
928         struct ctl_table *entry;
929
930         entry = find_entry(&head, dir, name, namelen);
931         if (!entry)
932                 return ERR_PTR(-ENOENT);
933         if (!S_ISDIR(entry->mode))
934                 return ERR_PTR(-ENOTDIR);
935         return container_of(head, struct ctl_dir, header);
936 }
937
938 static struct ctl_dir *new_dir(struct ctl_table_set *set,
939                                const char *name, int namelen)
940 {
941         struct ctl_table *table;
942         struct ctl_dir *new;
943         struct ctl_node *node;
944         char *new_name;
945
946         new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
947                       sizeof(struct ctl_table)*2 +  namelen + 1,
948                       GFP_KERNEL);
949         if (!new)
950                 return NULL;
951
952         node = (struct ctl_node *)(new + 1);
953         table = (struct ctl_table *)(node + 1);
954         new_name = (char *)(table + 2);
955         memcpy(new_name, name, namelen);
956         new_name[namelen] = '\0';
957         table[0].procname = new_name;
958         table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
959         init_header(&new->header, set->dir.header.root, set, node, table);
960
961         return new;
962 }
963
964 /**
965  * get_subdir - find or create a subdir with the specified name.
966  * @dir:  Directory to create the subdirectory in
967  * @name: The name of the subdirectory to find or create
968  * @namelen: The length of name
969  *
970  * Takes a directory with an elevated reference count so we know that
971  * if we drop the lock the directory will not go away.  Upon success
972  * the reference is moved from @dir to the returned subdirectory.
973  * Upon error an error code is returned and the reference on @dir is
974  * simply dropped.
975  */
976 static struct ctl_dir *get_subdir(struct ctl_dir *dir,
977                                   const char *name, int namelen)
978 {
979         struct ctl_table_set *set = dir->header.set;
980         struct ctl_dir *subdir, *new = NULL;
981         int err;
982
983         spin_lock(&sysctl_lock);
984         subdir = find_subdir(dir, name, namelen);
985         if (!IS_ERR(subdir))
986                 goto found;
987         if (PTR_ERR(subdir) != -ENOENT)
988                 goto failed;
989
990         spin_unlock(&sysctl_lock);
991         new = new_dir(set, name, namelen);
992         spin_lock(&sysctl_lock);
993         subdir = ERR_PTR(-ENOMEM);
994         if (!new)
995                 goto failed;
996
997         /* Was the subdir added while we dropped the lock? */
998         subdir = find_subdir(dir, name, namelen);
999         if (!IS_ERR(subdir))
1000                 goto found;
1001         if (PTR_ERR(subdir) != -ENOENT)
1002                 goto failed;
1003
1004         /* Nope.  Use the our freshly made directory entry. */
1005         err = insert_header(dir, &new->header);
1006         subdir = ERR_PTR(err);
1007         if (err)
1008                 goto failed;
1009         subdir = new;
1010 found:
1011         subdir->header.nreg++;
1012 failed:
1013         if (IS_ERR(subdir)) {
1014                 pr_err("sysctl could not get directory: ");
1015                 sysctl_print_dir(dir);
1016                 pr_cont("/%*.*s %ld\n",
1017                         namelen, namelen, name, PTR_ERR(subdir));
1018         }
1019         drop_sysctl_table(&dir->header);
1020         if (new)
1021                 drop_sysctl_table(&new->header);
1022         spin_unlock(&sysctl_lock);
1023         return subdir;
1024 }
1025
1026 static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1027 {
1028         struct ctl_dir *parent;
1029         const char *procname;
1030         if (!dir->header.parent)
1031                 return &set->dir;
1032         parent = xlate_dir(set, dir->header.parent);
1033         if (IS_ERR(parent))
1034                 return parent;
1035         procname = dir->header.ctl_table[0].procname;
1036         return find_subdir(parent, procname, strlen(procname));
1037 }
1038
1039 static int sysctl_follow_link(struct ctl_table_header **phead,
1040         struct ctl_table **pentry)
1041 {
1042         struct ctl_table_header *head;
1043         struct ctl_table_root *root;
1044         struct ctl_table_set *set;
1045         struct ctl_table *entry;
1046         struct ctl_dir *dir;
1047         int ret;
1048
1049         ret = 0;
1050         spin_lock(&sysctl_lock);
1051         root = (*pentry)->data;
1052         set = lookup_header_set(root);
1053         dir = xlate_dir(set, (*phead)->parent);
1054         if (IS_ERR(dir))
1055                 ret = PTR_ERR(dir);
1056         else {
1057                 const char *procname = (*pentry)->procname;
1058                 head = NULL;
1059                 entry = find_entry(&head, dir, procname, strlen(procname));
1060                 ret = -ENOENT;
1061                 if (entry && use_table(head)) {
1062                         unuse_table(*phead);
1063                         *phead = head;
1064                         *pentry = entry;
1065                         ret = 0;
1066                 }
1067         }
1068
1069         spin_unlock(&sysctl_lock);
1070         return ret;
1071 }
1072
1073 static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1074 {
1075         struct va_format vaf;
1076         va_list args;
1077
1078         va_start(args, fmt);
1079         vaf.fmt = fmt;
1080         vaf.va = &args;
1081
1082         pr_err("sysctl table check failed: %s/%s %pV\n",
1083                path, table->procname, &vaf);
1084
1085         va_end(args);
1086         return -EINVAL;
1087 }
1088
1089 static int sysctl_check_table(const char *path, struct ctl_table *table)
1090 {
1091         int err = 0;
1092         for (; table->procname; table++) {
1093                 if (table->child)
1094                         err = sysctl_err(path, table, "Not a file");
1095
1096                 if ((table->proc_handler == proc_dostring) ||
1097                     (table->proc_handler == proc_dointvec) ||
1098                     (table->proc_handler == proc_dointvec_minmax) ||
1099                     (table->proc_handler == proc_dointvec_jiffies) ||
1100                     (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1101                     (table->proc_handler == proc_dointvec_ms_jiffies) ||
1102                     (table->proc_handler == proc_doulongvec_minmax) ||
1103                     (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1104                         if (!table->data)
1105                                 err = sysctl_err(path, table, "No data");
1106                         if (!table->maxlen)
1107                                 err = sysctl_err(path, table, "No maxlen");
1108                 }
1109                 if (!table->proc_handler)
1110                         err = sysctl_err(path, table, "No proc_handler");
1111
1112                 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1113                         err = sysctl_err(path, table, "bogus .mode 0%o",
1114                                 table->mode);
1115         }
1116         return err;
1117 }
1118
1119 static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1120         struct ctl_table_root *link_root)
1121 {
1122         struct ctl_table *link_table, *entry, *link;
1123         struct ctl_table_header *links;
1124         struct ctl_node *node;
1125         char *link_name;
1126         int nr_entries, name_bytes;
1127
1128         name_bytes = 0;
1129         nr_entries = 0;
1130         for (entry = table; entry->procname; entry++) {
1131                 nr_entries++;
1132                 name_bytes += strlen(entry->procname) + 1;
1133         }
1134
1135         links = kzalloc(sizeof(struct ctl_table_header) +
1136                         sizeof(struct ctl_node)*nr_entries +
1137                         sizeof(struct ctl_table)*(nr_entries + 1) +
1138                         name_bytes,
1139                         GFP_KERNEL);
1140
1141         if (!links)
1142                 return NULL;
1143
1144         node = (struct ctl_node *)(links + 1);
1145         link_table = (struct ctl_table *)(node + nr_entries);
1146         link_name = (char *)&link_table[nr_entries + 1];
1147
1148         for (link = link_table, entry = table; entry->procname; link++, entry++) {
1149                 int len = strlen(entry->procname) + 1;
1150                 memcpy(link_name, entry->procname, len);
1151                 link->procname = link_name;
1152                 link->mode = S_IFLNK|S_IRWXUGO;
1153                 link->data = link_root;
1154                 link_name += len;
1155         }
1156         init_header(links, dir->header.root, dir->header.set, node, link_table);
1157         links->nreg = nr_entries;
1158
1159         return links;
1160 }
1161
1162 static bool get_links(struct ctl_dir *dir,
1163         struct ctl_table *table, struct ctl_table_root *link_root)
1164 {
1165         struct ctl_table_header *head;
1166         struct ctl_table *entry, *link;
1167
1168         /* Are there links available for every entry in table? */
1169         for (entry = table; entry->procname; entry++) {
1170                 const char *procname = entry->procname;
1171                 link = find_entry(&head, dir, procname, strlen(procname));
1172                 if (!link)
1173                         return false;
1174                 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1175                         continue;
1176                 if (S_ISLNK(link->mode) && (link->data == link_root))
1177                         continue;
1178                 return false;
1179         }
1180
1181         /* The checks passed.  Increase the registration count on the links */
1182         for (entry = table; entry->procname; entry++) {
1183                 const char *procname = entry->procname;
1184                 link = find_entry(&head, dir, procname, strlen(procname));
1185                 head->nreg++;
1186         }
1187         return true;
1188 }
1189
1190 static int insert_links(struct ctl_table_header *head)
1191 {
1192         struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1193         struct ctl_dir *core_parent = NULL;
1194         struct ctl_table_header *links;
1195         int err;
1196
1197         if (head->set == root_set)
1198                 return 0;
1199
1200         core_parent = xlate_dir(root_set, head->parent);
1201         if (IS_ERR(core_parent))
1202                 return 0;
1203
1204         if (get_links(core_parent, head->ctl_table, head->root))
1205                 return 0;
1206
1207         core_parent->header.nreg++;
1208         spin_unlock(&sysctl_lock);
1209
1210         links = new_links(core_parent, head->ctl_table, head->root);
1211
1212         spin_lock(&sysctl_lock);
1213         err = -ENOMEM;
1214         if (!links)
1215                 goto out;
1216
1217         err = 0;
1218         if (get_links(core_parent, head->ctl_table, head->root)) {
1219                 kfree(links);
1220                 goto out;
1221         }
1222
1223         err = insert_header(core_parent, links);
1224         if (err)
1225                 kfree(links);
1226 out:
1227         drop_sysctl_table(&core_parent->header);
1228         return err;
1229 }
1230
1231 /**
1232  * __register_sysctl_table - register a leaf sysctl table
1233  * @set: Sysctl tree to register on
1234  * @path: The path to the directory the sysctl table is in.
1235  * @table: the top-level table structure
1236  *
1237  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1238  * array. A completely 0 filled entry terminates the table.
1239  *
1240  * The members of the &struct ctl_table structure are used as follows:
1241  *
1242  * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1243  *            enter a sysctl file
1244  *
1245  * data - a pointer to data for use by proc_handler
1246  *
1247  * maxlen - the maximum size in bytes of the data
1248  *
1249  * mode - the file permissions for the /proc/sys file
1250  *
1251  * child - must be %NULL.
1252  *
1253  * proc_handler - the text handler routine (described below)
1254  *
1255  * extra1, extra2 - extra pointers usable by the proc handler routines
1256  *
1257  * Leaf nodes in the sysctl tree will be represented by a single file
1258  * under /proc; non-leaf nodes will be represented by directories.
1259  *
1260  * There must be a proc_handler routine for any terminal nodes.
1261  * Several default handlers are available to cover common cases -
1262  *
1263  * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1264  * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1265  * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1266  *
1267  * It is the handler's job to read the input buffer from user memory
1268  * and process it. The handler should return 0 on success.
1269  *
1270  * This routine returns %NULL on a failure to register, and a pointer
1271  * to the table header on success.
1272  */
1273 struct ctl_table_header *__register_sysctl_table(
1274         struct ctl_table_set *set,
1275         const char *path, struct ctl_table *table)
1276 {
1277         struct ctl_table_root *root = set->dir.header.root;
1278         struct ctl_table_header *header;
1279         const char *name, *nextname;
1280         struct ctl_dir *dir;
1281         struct ctl_table *entry;
1282         struct ctl_node *node;
1283         int nr_entries = 0;
1284
1285         for (entry = table; entry->procname; entry++)
1286                 nr_entries++;
1287
1288         header = kzalloc(sizeof(struct ctl_table_header) +
1289                          sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
1290         if (!header)
1291                 return NULL;
1292
1293         node = (struct ctl_node *)(header + 1);
1294         init_header(header, root, set, node, table);
1295         if (sysctl_check_table(path, table))
1296                 goto fail;
1297
1298         spin_lock(&sysctl_lock);
1299         dir = &set->dir;
1300         /* Reference moved down the diretory tree get_subdir */
1301         dir->header.nreg++;
1302         spin_unlock(&sysctl_lock);
1303
1304         /* Find the directory for the ctl_table */
1305         for (name = path; name; name = nextname) {
1306                 int namelen;
1307                 nextname = strchr(name, '/');
1308                 if (nextname) {
1309                         namelen = nextname - name;
1310                         nextname++;
1311                 } else {
1312                         namelen = strlen(name);
1313                 }
1314                 if (namelen == 0)
1315                         continue;
1316
1317                 dir = get_subdir(dir, name, namelen);
1318                 if (IS_ERR(dir))
1319                         goto fail;
1320         }
1321
1322         spin_lock(&sysctl_lock);
1323         if (insert_header(dir, header))
1324                 goto fail_put_dir_locked;
1325
1326         drop_sysctl_table(&dir->header);
1327         spin_unlock(&sysctl_lock);
1328
1329         return header;
1330
1331 fail_put_dir_locked:
1332         drop_sysctl_table(&dir->header);
1333         spin_unlock(&sysctl_lock);
1334 fail:
1335         kfree(header);
1336         dump_stack();
1337         return NULL;
1338 }
1339
1340 /**
1341  * register_sysctl - register a sysctl table
1342  * @path: The path to the directory the sysctl table is in.
1343  * @table: the table structure
1344  *
1345  * Register a sysctl table. @table should be a filled in ctl_table
1346  * array. A completely 0 filled entry terminates the table.
1347  *
1348  * See __register_sysctl_table for more details.
1349  */
1350 struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1351 {
1352         return __register_sysctl_table(&sysctl_table_root.default_set,
1353                                         path, table);
1354 }
1355 EXPORT_SYMBOL(register_sysctl);
1356
1357 static char *append_path(const char *path, char *pos, const char *name)
1358 {
1359         int namelen;
1360         namelen = strlen(name);
1361         if (((pos - path) + namelen + 2) >= PATH_MAX)
1362                 return NULL;
1363         memcpy(pos, name, namelen);
1364         pos[namelen] = '/';
1365         pos[namelen + 1] = '\0';
1366         pos += namelen + 1;
1367         return pos;
1368 }
1369
1370 static int count_subheaders(struct ctl_table *table)
1371 {
1372         int has_files = 0;
1373         int nr_subheaders = 0;
1374         struct ctl_table *entry;
1375
1376         /* special case: no directory and empty directory */
1377         if (!table || !table->procname)
1378                 return 1;
1379
1380         for (entry = table; entry->procname; entry++) {
1381                 if (entry->child)
1382                         nr_subheaders += count_subheaders(entry->child);
1383                 else
1384                         has_files = 1;
1385         }
1386         return nr_subheaders + has_files;
1387 }
1388
1389 static int register_leaf_sysctl_tables(const char *path, char *pos,
1390         struct ctl_table_header ***subheader, struct ctl_table_set *set,
1391         struct ctl_table *table)
1392 {
1393         struct ctl_table *ctl_table_arg = NULL;
1394         struct ctl_table *entry, *files;
1395         int nr_files = 0;
1396         int nr_dirs = 0;
1397         int err = -ENOMEM;
1398
1399         for (entry = table; entry->procname; entry++) {
1400                 if (entry->child)
1401                         nr_dirs++;
1402                 else
1403                         nr_files++;
1404         }
1405
1406         files = table;
1407         /* If there are mixed files and directories we need a new table */
1408         if (nr_dirs && nr_files) {
1409                 struct ctl_table *new;
1410                 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1411                                 GFP_KERNEL);
1412                 if (!files)
1413                         goto out;
1414
1415                 ctl_table_arg = files;
1416                 for (new = files, entry = table; entry->procname; entry++) {
1417                         if (entry->child)
1418                                 continue;
1419                         *new = *entry;
1420                         new++;
1421                 }
1422         }
1423
1424         /* Register everything except a directory full of subdirectories */
1425         if (nr_files || !nr_dirs) {
1426                 struct ctl_table_header *header;
1427                 header = __register_sysctl_table(set, path, files);
1428                 if (!header) {
1429                         kfree(ctl_table_arg);
1430                         goto out;
1431                 }
1432
1433                 /* Remember if we need to free the file table */
1434                 header->ctl_table_arg = ctl_table_arg;
1435                 **subheader = header;
1436                 (*subheader)++;
1437         }
1438
1439         /* Recurse into the subdirectories. */
1440         for (entry = table; entry->procname; entry++) {
1441                 char *child_pos;
1442
1443                 if (!entry->child)
1444                         continue;
1445
1446                 err = -ENAMETOOLONG;
1447                 child_pos = append_path(path, pos, entry->procname);
1448                 if (!child_pos)
1449                         goto out;
1450
1451                 err = register_leaf_sysctl_tables(path, child_pos, subheader,
1452                                                   set, entry->child);
1453                 pos[0] = '\0';
1454                 if (err)
1455                         goto out;
1456         }
1457         err = 0;
1458 out:
1459         /* On failure our caller will unregister all registered subheaders */
1460         return err;
1461 }
1462
1463 /**
1464  * __register_sysctl_paths - register a sysctl table hierarchy
1465  * @set: Sysctl tree to register on
1466  * @path: The path to the directory the sysctl table is in.
1467  * @table: the top-level table structure
1468  *
1469  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1470  * array. A completely 0 filled entry terminates the table.
1471  *
1472  * See __register_sysctl_table for more details.
1473  */
1474 struct ctl_table_header *__register_sysctl_paths(
1475         struct ctl_table_set *set,
1476         const struct ctl_path *path, struct ctl_table *table)
1477 {
1478         struct ctl_table *ctl_table_arg = table;
1479         int nr_subheaders = count_subheaders(table);
1480         struct ctl_table_header *header = NULL, **subheaders, **subheader;
1481         const struct ctl_path *component;
1482         char *new_path, *pos;
1483
1484         pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1485         if (!new_path)
1486                 return NULL;
1487
1488         pos[0] = '\0';
1489         for (component = path; component->procname; component++) {
1490                 pos = append_path(new_path, pos, component->procname);
1491                 if (!pos)
1492                         goto out;
1493         }
1494         while (table->procname && table->child && !table[1].procname) {
1495                 pos = append_path(new_path, pos, table->procname);
1496                 if (!pos)
1497                         goto out;
1498                 table = table->child;
1499         }
1500         if (nr_subheaders == 1) {
1501                 header = __register_sysctl_table(set, new_path, table);
1502                 if (header)
1503                         header->ctl_table_arg = ctl_table_arg;
1504         } else {
1505                 header = kzalloc(sizeof(*header) +
1506                                  sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1507                 if (!header)
1508                         goto out;
1509
1510                 subheaders = (struct ctl_table_header **) (header + 1);
1511                 subheader = subheaders;
1512                 header->ctl_table_arg = ctl_table_arg;
1513
1514                 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
1515                                                 set, table))
1516                         goto err_register_leaves;
1517         }
1518
1519 out:
1520         kfree(new_path);
1521         return header;
1522
1523 err_register_leaves:
1524         while (subheader > subheaders) {
1525                 struct ctl_table_header *subh = *(--subheader);
1526                 struct ctl_table *table = subh->ctl_table_arg;
1527                 unregister_sysctl_table(subh);
1528                 kfree(table);
1529         }
1530         kfree(header);
1531         header = NULL;
1532         goto out;
1533 }
1534
1535 /**
1536  * register_sysctl_table_path - register a sysctl table hierarchy
1537  * @path: The path to the directory the sysctl table is in.
1538  * @table: the top-level table structure
1539  *
1540  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1541  * array. A completely 0 filled entry terminates the table.
1542  *
1543  * See __register_sysctl_paths for more details.
1544  */
1545 struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1546                                                 struct ctl_table *table)
1547 {
1548         return __register_sysctl_paths(&sysctl_table_root.default_set,
1549                                         path, table);
1550 }
1551 EXPORT_SYMBOL(register_sysctl_paths);
1552
1553 /**
1554  * register_sysctl_table - register a sysctl table hierarchy
1555  * @table: the top-level table structure
1556  *
1557  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1558  * array. A completely 0 filled entry terminates the table.
1559  *
1560  * See register_sysctl_paths for more details.
1561  */
1562 struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1563 {
1564         static const struct ctl_path null_path[] = { {} };
1565
1566         return register_sysctl_paths(null_path, table);
1567 }
1568 EXPORT_SYMBOL(register_sysctl_table);
1569
1570 static void put_links(struct ctl_table_header *header)
1571 {
1572         struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1573         struct ctl_table_root *root = header->root;
1574         struct ctl_dir *parent = header->parent;
1575         struct ctl_dir *core_parent;
1576         struct ctl_table *entry;
1577
1578         if (header->set == root_set)
1579                 return;
1580
1581         core_parent = xlate_dir(root_set, parent);
1582         if (IS_ERR(core_parent))
1583                 return;
1584
1585         for (entry = header->ctl_table; entry->procname; entry++) {
1586                 struct ctl_table_header *link_head;
1587                 struct ctl_table *link;
1588                 const char *name = entry->procname;
1589
1590                 link = find_entry(&link_head, core_parent, name, strlen(name));
1591                 if (link &&
1592                     ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1593                      (S_ISLNK(link->mode) && (link->data == root)))) {
1594                         drop_sysctl_table(link_head);
1595                 }
1596                 else {
1597                         pr_err("sysctl link missing during unregister: ");
1598                         sysctl_print_dir(parent);
1599                         pr_cont("/%s\n", name);
1600                 }
1601         }
1602 }
1603
1604 static void drop_sysctl_table(struct ctl_table_header *header)
1605 {
1606         struct ctl_dir *parent = header->parent;
1607
1608         if (--header->nreg)
1609                 return;
1610
1611         if (parent) {
1612                 put_links(header);
1613                 start_unregistering(header);
1614         }
1615
1616         if (!--header->count)
1617                 kfree_rcu(header, rcu);
1618
1619         if (parent)
1620                 drop_sysctl_table(&parent->header);
1621 }
1622
1623 /**
1624  * unregister_sysctl_table - unregister a sysctl table hierarchy
1625  * @header: the header returned from register_sysctl_table
1626  *
1627  * Unregisters the sysctl table and all children. proc entries may not
1628  * actually be removed until they are no longer used by anyone.
1629  */
1630 void unregister_sysctl_table(struct ctl_table_header * header)
1631 {
1632         int nr_subheaders;
1633         might_sleep();
1634
1635         if (header == NULL)
1636                 return;
1637
1638         nr_subheaders = count_subheaders(header->ctl_table_arg);
1639         if (unlikely(nr_subheaders > 1)) {
1640                 struct ctl_table_header **subheaders;
1641                 int i;
1642
1643                 subheaders = (struct ctl_table_header **)(header + 1);
1644                 for (i = nr_subheaders -1; i >= 0; i--) {
1645                         struct ctl_table_header *subh = subheaders[i];
1646                         struct ctl_table *table = subh->ctl_table_arg;
1647                         unregister_sysctl_table(subh);
1648                         kfree(table);
1649                 }
1650                 kfree(header);
1651                 return;
1652         }
1653
1654         spin_lock(&sysctl_lock);
1655         drop_sysctl_table(header);
1656         spin_unlock(&sysctl_lock);
1657 }
1658 EXPORT_SYMBOL(unregister_sysctl_table);
1659
1660 void setup_sysctl_set(struct ctl_table_set *set,
1661         struct ctl_table_root *root,
1662         int (*is_seen)(struct ctl_table_set *))
1663 {
1664         memset(set, 0, sizeof(*set));
1665         set->is_seen = is_seen;
1666         init_header(&set->dir.header, root, set, NULL, root_table);
1667 }
1668
1669 void retire_sysctl_set(struct ctl_table_set *set)
1670 {
1671         WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
1672 }
1673
1674 int __init proc_sys_init(void)
1675 {
1676         struct proc_dir_entry *proc_sys_root;
1677
1678         proc_sys_root = proc_mkdir("sys", NULL);
1679         proc_sys_root->proc_iops = &proc_sys_dir_operations;
1680         proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
1681         proc_sys_root->nlink = 0;
1682
1683         return sysctl_init();
1684 }