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