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