blob: fdda62e6115e1c4584cc88d360c27de7a26e1793 [file] [log] [blame]
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001/*
2 * /proc/sys support
3 */
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04004#include <linux/init.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08005#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -07006#include <linux/poll.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08007#include <linux/proc_fs.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -08008#include <linux/printk.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08009#include <linux/security.h>
Al Viro40401532012-02-13 03:58:52 +000010#include <linux/sched.h>
Nick Piggin34286d62011-01-07 17:49:57 +110011#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000012#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080013#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080014#include "internal.h"
15
Al Virod72f71e2009-02-20 05:58:47 +000016static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080017static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080018static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040019static const struct file_operations proc_sys_dir_file_operations;
20static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080021
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050022/* Support for permanently empty directories */
23
24struct ctl_table sysctl_mount_point[] = {
25 { }
26};
27
28static bool is_empty_dir(struct ctl_table_header *head)
29{
30 return head->ctl_table[0].child == sysctl_mount_point;
31}
32
33static void set_empty_dir(struct ctl_dir *dir)
34{
35 dir->header.ctl_table[0].child = sysctl_mount_point;
36}
37
38static void clear_empty_dir(struct ctl_dir *dir)
39
40{
41 dir->header.ctl_table[0].child = NULL;
42}
43
Lucas De Marchif1ecf062011-11-02 13:39:22 -070044void proc_sys_poll_notify(struct ctl_table_poll *poll)
45{
46 if (!poll)
47 return;
48
49 atomic_inc(&poll->event);
50 wake_up_interruptible(&poll->wait);
51}
52
Eric W. Biedermana1945582012-01-21 17:51:48 -080053static struct ctl_table root_table[] = {
54 {
55 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080056 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080057 },
58 { }
59};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080060static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080061 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080062 {{.count = 1,
63 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080064 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080065 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080066 .root = &sysctl_table_root,
67 .set = &sysctl_table_root.default_set,
68 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080069};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080070
71static DEFINE_SPINLOCK(sysctl_lock);
72
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080073static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080074static int sysctl_follow_link(struct ctl_table_header **phead,
75 struct ctl_table **pentry, struct nsproxy *namespaces);
76static int insert_links(struct ctl_table_header *head);
77static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080078
Eric W. Biederman69801282012-01-21 20:09:45 -080079static void sysctl_print_dir(struct ctl_dir *dir)
80{
81 if (dir->header.parent)
82 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080083 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080084}
85
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080086static int namecmp(const char *name1, int len1, const char *name2, int len2)
87{
88 int minlen;
89 int cmp;
90
91 minlen = len1;
92 if (minlen > len2)
93 minlen = len2;
94
95 cmp = memcmp(name1, name2, minlen);
96 if (cmp == 0)
97 cmp = len1 - len2;
98 return cmp;
99}
100
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800101/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800102static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800103 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800104{
105 struct ctl_table_header *head;
106 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800107 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800108
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800109 while (node)
110 {
111 struct ctl_node *ctl_node;
112 const char *procname;
113 int cmp;
114
115 ctl_node = rb_entry(node, struct ctl_node, node);
116 head = ctl_node->header;
117 entry = &head->ctl_table[ctl_node - head->node];
118 procname = entry->procname;
119
120 cmp = namecmp(name, namelen, procname, strlen(procname));
121 if (cmp < 0)
122 node = node->rb_left;
123 else if (cmp > 0)
124 node = node->rb_right;
125 else {
126 *phead = head;
127 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800128 }
129 }
130 return NULL;
131}
132
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800133static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
134{
135 struct rb_node *node = &head->node[entry - head->ctl_table].node;
136 struct rb_node **p = &head->parent->root.rb_node;
137 struct rb_node *parent = NULL;
138 const char *name = entry->procname;
139 int namelen = strlen(name);
140
141 while (*p) {
142 struct ctl_table_header *parent_head;
143 struct ctl_table *parent_entry;
144 struct ctl_node *parent_node;
145 const char *parent_name;
146 int cmp;
147
148 parent = *p;
149 parent_node = rb_entry(parent, struct ctl_node, node);
150 parent_head = parent_node->header;
151 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
152 parent_name = parent_entry->procname;
153
154 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
155 if (cmp < 0)
156 p = &(*p)->rb_left;
157 else if (cmp > 0)
158 p = &(*p)->rb_right;
159 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800160 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800161 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800162 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700168 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800169 return 0;
170}
171
172static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
173{
174 struct rb_node *node = &head->node[entry - head->ctl_table].node;
175
176 rb_erase(node, &head->parent->root);
177}
178
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800179static void init_header(struct ctl_table_header *head,
180 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800181 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800182{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800183 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800184 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800185 head->used = 0;
186 head->count = 1;
187 head->nreg = 1;
188 head->unregistering = NULL;
189 head->root = root;
190 head->set = set;
191 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800192 head->node = node;
193 if (node) {
194 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700195 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800196 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800197 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800198}
199
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800200static void erase_header(struct ctl_table_header *head)
201{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800202 struct ctl_table *entry;
203 for (entry = head->ctl_table; entry->procname; entry++)
204 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800205}
206
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800207static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800208{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800209 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800210 int err;
211
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500212 /* Is this a permanently empty directory? */
213 if (is_empty_dir(&dir->header))
214 return -EROFS;
215
216 /* Am I creating a permanently empty directory? */
217 if (header->ctl_table == sysctl_mount_point) {
218 if (!RB_EMPTY_ROOT(&dir->root))
219 return -EINVAL;
220 set_empty_dir(dir);
221 }
222
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800223 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800224 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800225 err = insert_links(header);
226 if (err)
227 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800228 for (entry = header->ctl_table; entry->procname; entry++) {
229 err = insert_entry(header, entry);
230 if (err)
231 goto fail;
232 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800233 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800234fail:
235 erase_header(header);
236 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800237fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500238 if (header->ctl_table == sysctl_mount_point)
239 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800240 header->parent = NULL;
241 drop_sysctl_table(&dir->header);
242 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800243}
244
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800245/* called under sysctl_lock */
246static int use_table(struct ctl_table_header *p)
247{
248 if (unlikely(p->unregistering))
249 return 0;
250 p->used++;
251 return 1;
252}
253
254/* called under sysctl_lock */
255static void unuse_table(struct ctl_table_header *p)
256{
257 if (!--p->used)
258 if (unlikely(p->unregistering))
259 complete(p->unregistering);
260}
261
262/* called under sysctl_lock, will reacquire if has to wait */
263static void start_unregistering(struct ctl_table_header *p)
264{
265 /*
266 * if p->used is 0, nobody will ever touch that entry again;
267 * we'll eliminate all paths to it before dropping sysctl_lock
268 */
269 if (unlikely(p->used)) {
270 struct completion wait;
271 init_completion(&wait);
272 p->unregistering = &wait;
273 spin_unlock(&sysctl_lock);
274 wait_for_completion(&wait);
275 spin_lock(&sysctl_lock);
276 } else {
277 /* anything non-NULL; we'll never dereference it */
278 p->unregistering = ERR_PTR(-EINVAL);
279 }
280 /*
281 * do not remove from the list until nobody holds it; walking the
282 * list in do_sysctl() relies on that.
283 */
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800284 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800285}
286
287static void sysctl_head_get(struct ctl_table_header *head)
288{
289 spin_lock(&sysctl_lock);
290 head->count++;
291 spin_unlock(&sysctl_lock);
292}
293
294void sysctl_head_put(struct ctl_table_header *head)
295{
296 spin_lock(&sysctl_lock);
297 if (!--head->count)
298 kfree_rcu(head, rcu);
299 spin_unlock(&sysctl_lock);
300}
301
302static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
303{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700304 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800305 spin_lock(&sysctl_lock);
306 if (!use_table(head))
307 head = ERR_PTR(-ENOENT);
308 spin_unlock(&sysctl_lock);
309 return head;
310}
311
312static void sysctl_head_finish(struct ctl_table_header *head)
313{
314 if (!head)
315 return;
316 spin_lock(&sysctl_lock);
317 unuse_table(head);
318 spin_unlock(&sysctl_lock);
319}
320
321static struct ctl_table_set *
322lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
323{
324 struct ctl_table_set *set = &root->default_set;
325 if (root->lookup)
326 set = root->lookup(root, namespaces);
327 return set;
328}
329
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800330static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800331 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800332 const char *name, int namelen)
333{
334 struct ctl_table_header *head;
335 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800336
337 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800338 entry = find_entry(&head, dir, name, namelen);
339 if (entry && use_table(head))
340 *phead = head;
341 else
342 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800343 spin_unlock(&sysctl_lock);
344 return entry;
345}
346
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800347static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800348{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800349 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800350
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800351 for (;node; node = rb_next(node)) {
352 ctl_node = rb_entry(node, struct ctl_node, node);
353 if (use_table(ctl_node->header))
354 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800355 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800356 return NULL;
357}
358
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800359static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800360 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800361{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800362 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800363 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800364 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800365
366 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800367 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800368 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800369 if (ctl_node) {
370 head = ctl_node->header;
371 entry = &head->ctl_table[ctl_node - head->node];
372 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800373 *phead = head;
374 *pentry = entry;
375}
376
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800377static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800378{
379 struct ctl_table_header *head = *phead;
380 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800381 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800382
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800383 spin_lock(&sysctl_lock);
384 unuse_table(head);
385
386 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
387 spin_unlock(&sysctl_lock);
388 head = NULL;
389 if (ctl_node) {
390 head = ctl_node->header;
391 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800392 }
393 *phead = head;
394 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800395}
396
397void register_sysctl_root(struct ctl_table_root *root)
398{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800399}
400
401/*
402 * sysctl_perm does NOT grant the superuser all rights automatically, because
403 * some sysctl variables are readonly even to root.
404 */
405
406static int test_perm(int mode, int op)
407{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800408 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800409 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800410 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800411 mode >>= 3;
412 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
413 return 0;
414 return -EACCES;
415}
416
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000417static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800418{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000419 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800420 int mode;
421
422 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000423 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800424 else
425 mode = table->mode;
426
427 return test_perm(mode, op);
428}
429
Al Viro9043476f2008-07-15 08:54:06 -0400430static struct inode *proc_sys_make_inode(struct super_block *sb,
431 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800432{
433 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400434 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800435
Al Viro9043476f2008-07-15 08:54:06 -0400436 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800437 if (!inode)
438 goto out;
439
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400440 inode->i_ino = get_next_ino();
441
Al Viro9043476f2008-07-15 08:54:06 -0400442 sysctl_head_get(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800443 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400444 ei->sysctl = head;
445 ei->sysctl_entry = table;
446
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800447 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Al Viro9043476f2008-07-15 08:54:06 -0400448 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800449 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400450 inode->i_mode |= S_IFREG;
451 inode->i_op = &proc_sys_inode_operations;
452 inode->i_fop = &proc_sys_file_operations;
453 } else {
454 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400455 inode->i_op = &proc_sys_dir_operations;
456 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500457 if (is_empty_dir(head))
458 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400459 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800460out:
461 return inode;
462}
463
Adrian Bunk81324362008-10-03 00:33:54 +0400464static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800465{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800466 struct ctl_table_header *head = PROC_I(inode)->sysctl;
467 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800468 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800469 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800470}
471
472static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400473 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800474{
Al Viro9043476f2008-07-15 08:54:06 -0400475 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400476 struct ctl_table_header *h = NULL;
477 struct qstr *name = &dentry->d_name;
478 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800479 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400480 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800481 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800482 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800483
Al Viro9043476f2008-07-15 08:54:06 -0400484 if (IS_ERR(head))
485 return ERR_CAST(head);
486
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800487 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400488
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800489 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400490 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800491 goto out;
492
Eric W. Biederman4e757322012-01-30 21:24:59 -0800493 if (S_ISLNK(p->mode)) {
494 ret = sysctl_follow_link(&h, &p, current->nsproxy);
495 err = ERR_PTR(ret);
496 if (ret)
497 goto out;
498 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800499
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800500 err = ERR_PTR(-ENOMEM);
Al Viro9043476f2008-07-15 08:54:06 -0400501 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800502 if (!inode)
503 goto out;
504
505 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100506 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800507 d_add(dentry, inode);
508
509out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700510 if (h)
511 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800512 sysctl_head_finish(head);
513 return err;
514}
515
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700516static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
517 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800518{
Al Viro496ad9a2013-01-23 17:07:38 -0500519 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400520 struct ctl_table_header *head = grab_header(inode);
521 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100522 ssize_t error;
523 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800524
Al Viro9043476f2008-07-15 08:54:06 -0400525 if (IS_ERR(head))
526 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800527
528 /*
529 * At this point we know that the sysctl was not unregistered
530 * and won't be until we finish.
531 */
532 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000533 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800534 goto out;
535
Al Viro9043476f2008-07-15 08:54:06 -0400536 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
537 error = -EINVAL;
538 if (!table->proc_handler)
539 goto out;
540
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800541 /* careful: calling conventions are nasty here */
542 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700543 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800544 if (!error)
545 error = res;
546out:
547 sysctl_head_finish(head);
548
549 return error;
550}
551
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700552static ssize_t proc_sys_read(struct file *filp, char __user *buf,
553 size_t count, loff_t *ppos)
554{
555 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
556}
557
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800558static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
559 size_t count, loff_t *ppos)
560{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700561 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800562}
563
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700564static int proc_sys_open(struct inode *inode, struct file *filp)
565{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700566 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700567 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
568
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700569 /* sysctl was unregistered */
570 if (IS_ERR(head))
571 return PTR_ERR(head);
572
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700573 if (table->poll)
574 filp->private_data = proc_sys_poll_event(table->poll);
575
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700576 sysctl_head_finish(head);
577
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700578 return 0;
579}
580
581static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
582{
Al Viro496ad9a2013-01-23 17:07:38 -0500583 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700584 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700585 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700586 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700587 unsigned long event;
588
589 /* sysctl was unregistered */
590 if (IS_ERR(head))
591 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700592
593 if (!table->proc_handler)
594 goto out;
595
596 if (!table->poll)
597 goto out;
598
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700599 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700600 poll_wait(filp, &table->poll->wait, wait);
601
602 if (event != atomic_read(&table->poll->event)) {
603 filp->private_data = proc_sys_poll_event(table->poll);
604 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
605 }
606
607out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700608 sysctl_head_finish(head);
609
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700610 return ret;
611}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800612
Al Virof0c3b502013-05-16 12:07:31 -0400613static bool proc_sys_fill_cache(struct file *file,
614 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400615 struct ctl_table_header *head,
616 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800617{
Al Virof0c3b502013-05-16 12:07:31 -0400618 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800619 struct inode *inode;
620 struct qstr qname;
621 ino_t ino = 0;
622 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800623
624 qname.name = table->procname;
625 qname.len = strlen(table->procname);
626 qname.hash = full_name_hash(qname.name, qname.len);
627
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800628 child = d_lookup(dir, &qname);
629 if (!child) {
Al Viro9043476f2008-07-15 08:54:06 -0400630 child = d_alloc(dir, &qname);
631 if (child) {
632 inode = proc_sys_make_inode(dir->d_sb, head, table);
633 if (!inode) {
634 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400635 return false;
Al Viro9043476f2008-07-15 08:54:06 -0400636 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100637 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro9043476f2008-07-15 08:54:06 -0400638 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800639 }
Al Viro9043476f2008-07-15 08:54:06 -0400640 } else {
Al Virof0c3b502013-05-16 12:07:31 -0400641 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800642 }
643 }
David Howells2b0143b2015-03-17 22:25:59 +0000644 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400645 ino = inode->i_ino;
646 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800647 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400648 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400649}
650
Al Virof0c3b502013-05-16 12:07:31 -0400651static bool proc_sys_link_fill_cache(struct file *file,
652 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800653 struct ctl_table_header *head,
654 struct ctl_table *table)
655{
Al Virof0c3b502013-05-16 12:07:31 -0400656 bool ret = true;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800657 head = sysctl_head_grab(head);
658
Eric W. Biederman4e757322012-01-30 21:24:59 -0800659 if (S_ISLNK(table->mode)) {
660 /* It is not an error if we can not follow the link ignore it */
Al Virof0c3b502013-05-16 12:07:31 -0400661 int err = sysctl_follow_link(&head, &table, current->nsproxy);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800662 if (err)
663 goto out;
664 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800665
Al Virof0c3b502013-05-16 12:07:31 -0400666 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800667out:
668 sysctl_head_finish(head);
669 return ret;
670}
671
Joe Perchese5eea092014-08-08 14:22:16 -0700672static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400673 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400674 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400675{
Al Virof0c3b502013-05-16 12:07:31 -0400676 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400677
Al Virof0c3b502013-05-16 12:07:31 -0400678 if ((*pos)++ < ctx->pos)
679 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400680
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800681 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400682 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800683 else
Al Virof0c3b502013-05-16 12:07:31 -0400684 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400685
Al Virof0c3b502013-05-16 12:07:31 -0400686 if (res)
687 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400688
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800689 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800690}
691
Al Virof0c3b502013-05-16 12:07:31 -0400692static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800693{
Al Virof0c3b502013-05-16 12:07:31 -0400694 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400695 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800696 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800697 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800698 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800699
Al Viro9043476f2008-07-15 08:54:06 -0400700 if (IS_ERR(head))
701 return PTR_ERR(head);
702
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800703 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800704
Al Virof0c3b502013-05-16 12:07:31 -0400705 if (!dir_emit_dots(file, ctx))
706 return 0;
707
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800708 pos = 2;
709
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800710 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400711 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400712 sysctl_head_finish(h);
713 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800714 }
715 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800716 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400717 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800718}
719
Al Viro10556cb2011-06-20 19:28:19 -0400720static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800721{
722 /*
723 * sysctl entries that are not writeable,
724 * are _NOT_ writeable, capabilities or not.
725 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200726 struct ctl_table_header *head;
727 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800728 int error;
729
Miklos Szeredif696a362008-07-31 13:41:58 +0200730 /* Executable files are not allowed under /proc/sys/ */
731 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
732 return -EACCES;
733
734 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400735 if (IS_ERR(head))
736 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800737
Miklos Szeredif696a362008-07-31 13:41:58 +0200738 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400739 if (!table) /* global root - r-xr-xr-x */
740 error = mask & MAY_WRITE ? -EACCES : 0;
741 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000742 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800743
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800744 sysctl_head_finish(head);
745 return error;
746}
747
748static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
749{
David Howells2b0143b2015-03-17 22:25:59 +0000750 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800751 int error;
752
753 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
754 return -EPERM;
755
756 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200757 if (error)
758 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800759
Christoph Hellwig10257742010-06-04 11:30:02 +0200760 setattr_copy(inode, attr);
761 mark_inode_dirty(inode);
762 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800763}
764
Al Viro9043476f2008-07-15 08:54:06 -0400765static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
766{
David Howells2b0143b2015-03-17 22:25:59 +0000767 struct inode *inode = d_inode(dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400768 struct ctl_table_header *head = grab_header(inode);
769 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
770
771 if (IS_ERR(head))
772 return PTR_ERR(head);
773
774 generic_fillattr(inode, stat);
775 if (table)
776 stat->mode = (stat->mode & S_IFMT) | table->mode;
777
778 sysctl_head_finish(head);
779 return 0;
780}
781
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800782static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700783 .open = proc_sys_open,
784 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800785 .read = proc_sys_read,
786 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200787 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400788};
789
790static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700791 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -0400792 .iterate = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200793 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800794};
795
Jan Engelhardt03a44822008-02-08 04:21:19 -0800796static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400797 .permission = proc_sys_permission,
798 .setattr = proc_sys_setattr,
799 .getattr = proc_sys_getattr,
800};
801
802static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800803 .lookup = proc_sys_lookup,
804 .permission = proc_sys_permission,
805 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400806 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800807};
808
Al Viro0b728e12012-06-10 16:03:43 -0400809static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800810{
Al Viro0b728e12012-06-10 16:03:43 -0400811 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100812 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000813 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400814}
815
Nick Pigginfe15ce42011-01-07 17:49:23 +1100816static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400817{
David Howells2b0143b2015-03-17 22:25:59 +0000818 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400819}
820
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800821static int sysctl_is_seen(struct ctl_table_header *p)
822{
823 struct ctl_table_set *set = p->set;
824 int res;
825 spin_lock(&sysctl_lock);
826 if (p->unregistering)
827 res = 0;
828 else if (!set->is_seen)
829 res = 1;
830 else
831 res = set->is_seen(set);
832 spin_unlock(&sysctl_lock);
833 return res;
834}
835
Linus Torvaldsda53be12013-05-21 15:22:44 -0700836static int proc_sys_compare(const struct dentry *parent, const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100837 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400838{
Al Virodfef6dcd32011-03-08 01:25:28 -0500839 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700840 struct inode *inode;
841
Nick Piggin31e6b012011-01-07 17:49:52 +1100842 /* Although proc doesn't have negative dentries, rcu-walk means
843 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500844 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000845 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100846 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500847 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100848 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400849 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100850 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400851 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500852 head = rcu_dereference(PROC_I(inode)->sysctl);
853 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800854}
855
Al Virod72f71e2009-02-20 05:58:47 +0000856static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800857 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400858 .d_delete = proc_sys_delete,
859 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800860};
861
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800862static struct ctl_dir *find_subdir(struct ctl_dir *dir,
863 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800864{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800865 struct ctl_table_header *head;
866 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800867
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800868 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800869 if (!entry)
870 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800871 if (!S_ISDIR(entry->mode))
872 return ERR_PTR(-ENOTDIR);
873 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800874}
875
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800876static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800877 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800878{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800879 struct ctl_table *table;
880 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800881 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800882 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800883
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800884 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
885 sizeof(struct ctl_table)*2 + namelen + 1,
886 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800887 if (!new)
888 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800889
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800890 node = (struct ctl_node *)(new + 1);
891 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800892 new_name = (char *)(table + 2);
893 memcpy(new_name, name, namelen);
894 new_name[namelen] = '\0';
895 table[0].procname = new_name;
896 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800897 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800898
899 return new;
900}
901
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800902/**
903 * get_subdir - find or create a subdir with the specified name.
904 * @dir: Directory to create the subdirectory in
905 * @name: The name of the subdirectory to find or create
906 * @namelen: The length of name
907 *
908 * Takes a directory with an elevated reference count so we know that
909 * if we drop the lock the directory will not go away. Upon success
910 * the reference is moved from @dir to the returned subdirectory.
911 * Upon error an error code is returned and the reference on @dir is
912 * simply dropped.
913 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800914static struct ctl_dir *get_subdir(struct ctl_dir *dir,
915 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800916{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800917 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800918 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800919 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800920
921 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800922 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800923 if (!IS_ERR(subdir))
924 goto found;
925 if (PTR_ERR(subdir) != -ENOENT)
926 goto failed;
927
928 spin_unlock(&sysctl_lock);
929 new = new_dir(set, name, namelen);
930 spin_lock(&sysctl_lock);
931 subdir = ERR_PTR(-ENOMEM);
932 if (!new)
933 goto failed;
934
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800935 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800936 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800937 if (!IS_ERR(subdir))
938 goto found;
939 if (PTR_ERR(subdir) != -ENOENT)
940 goto failed;
941
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800942 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800943 err = insert_header(dir, &new->header);
944 subdir = ERR_PTR(err);
945 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800946 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800947 subdir = new;
948found:
949 subdir->header.nreg++;
950failed:
951 if (unlikely(IS_ERR(subdir))) {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800952 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -0800953 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800954 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800955 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800956 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800957 drop_sysctl_table(&dir->header);
958 if (new)
959 drop_sysctl_table(&new->header);
960 spin_unlock(&sysctl_lock);
961 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800962}
963
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800964static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
965{
966 struct ctl_dir *parent;
967 const char *procname;
968 if (!dir->header.parent)
969 return &set->dir;
970 parent = xlate_dir(set, dir->header.parent);
971 if (IS_ERR(parent))
972 return parent;
973 procname = dir->header.ctl_table[0].procname;
974 return find_subdir(parent, procname, strlen(procname));
975}
976
977static int sysctl_follow_link(struct ctl_table_header **phead,
978 struct ctl_table **pentry, struct nsproxy *namespaces)
979{
980 struct ctl_table_header *head;
981 struct ctl_table_root *root;
982 struct ctl_table_set *set;
983 struct ctl_table *entry;
984 struct ctl_dir *dir;
985 int ret;
986
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800987 ret = 0;
988 spin_lock(&sysctl_lock);
989 root = (*pentry)->data;
990 set = lookup_header_set(root, namespaces);
991 dir = xlate_dir(set, (*phead)->parent);
992 if (IS_ERR(dir))
993 ret = PTR_ERR(dir);
994 else {
995 const char *procname = (*pentry)->procname;
996 head = NULL;
997 entry = find_entry(&head, dir, procname, strlen(procname));
998 ret = -ENOENT;
999 if (entry && use_table(head)) {
1000 unuse_table(*phead);
1001 *phead = head;
1002 *pentry = entry;
1003 ret = 0;
1004 }
1005 }
1006
1007 spin_unlock(&sysctl_lock);
1008 return ret;
1009}
1010
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001011static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1012{
1013 struct va_format vaf;
1014 va_list args;
1015
1016 va_start(args, fmt);
1017 vaf.fmt = fmt;
1018 vaf.va = &args;
1019
Andrew Morton87ebdc02013-02-27 17:03:16 -08001020 pr_err("sysctl table check failed: %s/%s %pV\n",
1021 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001022
1023 va_end(args);
1024 return -EINVAL;
1025}
1026
1027static int sysctl_check_table(const char *path, struct ctl_table *table)
1028{
1029 int err = 0;
1030 for (; table->procname; table++) {
1031 if (table->child)
1032 err = sysctl_err(path, table, "Not a file");
1033
1034 if ((table->proc_handler == proc_dostring) ||
1035 (table->proc_handler == proc_dointvec) ||
1036 (table->proc_handler == proc_dointvec_minmax) ||
1037 (table->proc_handler == proc_dointvec_jiffies) ||
1038 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1039 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1040 (table->proc_handler == proc_doulongvec_minmax) ||
1041 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1042 if (!table->data)
1043 err = sysctl_err(path, table, "No data");
1044 if (!table->maxlen)
1045 err = sysctl_err(path, table, "No maxlen");
1046 }
1047 if (!table->proc_handler)
1048 err = sysctl_err(path, table, "No proc_handler");
1049
1050 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1051 err = sysctl_err(path, table, "bogus .mode 0%o",
1052 table->mode);
1053 }
1054 return err;
1055}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001056
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001057static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1058 struct ctl_table_root *link_root)
1059{
1060 struct ctl_table *link_table, *entry, *link;
1061 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001062 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001063 char *link_name;
1064 int nr_entries, name_bytes;
1065
1066 name_bytes = 0;
1067 nr_entries = 0;
1068 for (entry = table; entry->procname; entry++) {
1069 nr_entries++;
1070 name_bytes += strlen(entry->procname) + 1;
1071 }
1072
1073 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001074 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001075 sizeof(struct ctl_table)*(nr_entries + 1) +
1076 name_bytes,
1077 GFP_KERNEL);
1078
1079 if (!links)
1080 return NULL;
1081
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001082 node = (struct ctl_node *)(links + 1);
1083 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001084 link_name = (char *)&link_table[nr_entries + 1];
1085
1086 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1087 int len = strlen(entry->procname) + 1;
1088 memcpy(link_name, entry->procname, len);
1089 link->procname = link_name;
1090 link->mode = S_IFLNK|S_IRWXUGO;
1091 link->data = link_root;
1092 link_name += len;
1093 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001094 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001095 links->nreg = nr_entries;
1096
1097 return links;
1098}
1099
1100static bool get_links(struct ctl_dir *dir,
1101 struct ctl_table *table, struct ctl_table_root *link_root)
1102{
1103 struct ctl_table_header *head;
1104 struct ctl_table *entry, *link;
1105
1106 /* Are there links available for every entry in table? */
1107 for (entry = table; entry->procname; entry++) {
1108 const char *procname = entry->procname;
1109 link = find_entry(&head, dir, procname, strlen(procname));
1110 if (!link)
1111 return false;
1112 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1113 continue;
1114 if (S_ISLNK(link->mode) && (link->data == link_root))
1115 continue;
1116 return false;
1117 }
1118
1119 /* The checks passed. Increase the registration count on the links */
1120 for (entry = table; entry->procname; entry++) {
1121 const char *procname = entry->procname;
1122 link = find_entry(&head, dir, procname, strlen(procname));
1123 head->nreg++;
1124 }
1125 return true;
1126}
1127
1128static int insert_links(struct ctl_table_header *head)
1129{
1130 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1131 struct ctl_dir *core_parent = NULL;
1132 struct ctl_table_header *links;
1133 int err;
1134
1135 if (head->set == root_set)
1136 return 0;
1137
1138 core_parent = xlate_dir(root_set, head->parent);
1139 if (IS_ERR(core_parent))
1140 return 0;
1141
1142 if (get_links(core_parent, head->ctl_table, head->root))
1143 return 0;
1144
1145 core_parent->header.nreg++;
1146 spin_unlock(&sysctl_lock);
1147
1148 links = new_links(core_parent, head->ctl_table, head->root);
1149
1150 spin_lock(&sysctl_lock);
1151 err = -ENOMEM;
1152 if (!links)
1153 goto out;
1154
1155 err = 0;
1156 if (get_links(core_parent, head->ctl_table, head->root)) {
1157 kfree(links);
1158 goto out;
1159 }
1160
1161 err = insert_header(core_parent, links);
1162 if (err)
1163 kfree(links);
1164out:
1165 drop_sysctl_table(&core_parent->header);
1166 return err;
1167}
1168
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001169/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001170 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001171 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001172 * @path: The path to the directory the sysctl table is in.
1173 * @table: the top-level table structure
1174 *
1175 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1176 * array. A completely 0 filled entry terminates the table.
1177 *
1178 * The members of the &struct ctl_table structure are used as follows:
1179 *
1180 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1181 * enter a sysctl file
1182 *
1183 * data - a pointer to data for use by proc_handler
1184 *
1185 * maxlen - the maximum size in bytes of the data
1186 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001187 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001188 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001189 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001190 *
1191 * proc_handler - the text handler routine (described below)
1192 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001193 * extra1, extra2 - extra pointers usable by the proc handler routines
1194 *
1195 * Leaf nodes in the sysctl tree will be represented by a single file
1196 * under /proc; non-leaf nodes will be represented by directories.
1197 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001198 * There must be a proc_handler routine for any terminal nodes.
1199 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001200 *
1201 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1202 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1203 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1204 *
1205 * It is the handler's job to read the input buffer from user memory
1206 * and process it. The handler should return 0 on success.
1207 *
1208 * This routine returns %NULL on a failure to register, and a pointer
1209 * to the table header on success.
1210 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001211struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001212 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001213 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001214{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001215 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001216 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001217 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001218 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001219 struct ctl_table *entry;
1220 struct ctl_node *node;
1221 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001222
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001223 for (entry = table; entry->procname; entry++)
1224 nr_entries++;
1225
1226 header = kzalloc(sizeof(struct ctl_table_header) +
1227 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001228 if (!header)
1229 return NULL;
1230
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001231 node = (struct ctl_node *)(header + 1);
1232 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001233 if (sysctl_check_table(path, table))
1234 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001235
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001236 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001237 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001238 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001239 dir->header.nreg++;
1240 spin_unlock(&sysctl_lock);
1241
1242 /* Find the directory for the ctl_table */
1243 for (name = path; name; name = nextname) {
1244 int namelen;
1245 nextname = strchr(name, '/');
1246 if (nextname) {
1247 namelen = nextname - name;
1248 nextname++;
1249 } else {
1250 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001251 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001252 if (namelen == 0)
1253 continue;
1254
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001255 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001256 if (IS_ERR(dir))
1257 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001258 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001259
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001260 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001261 if (insert_header(dir, header))
1262 goto fail_put_dir_locked;
1263
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001264 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001265 spin_unlock(&sysctl_lock);
1266
1267 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001268
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001269fail_put_dir_locked:
1270 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001271 spin_unlock(&sysctl_lock);
1272fail:
1273 kfree(header);
1274 dump_stack();
1275 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001276}
1277
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001278/**
1279 * register_sysctl - register a sysctl table
1280 * @path: The path to the directory the sysctl table is in.
1281 * @table: the table structure
1282 *
1283 * Register a sysctl table. @table should be a filled in ctl_table
1284 * array. A completely 0 filled entry terminates the table.
1285 *
1286 * See __register_sysctl_table for more details.
1287 */
1288struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1289{
1290 return __register_sysctl_table(&sysctl_table_root.default_set,
1291 path, table);
1292}
1293EXPORT_SYMBOL(register_sysctl);
1294
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001295static char *append_path(const char *path, char *pos, const char *name)
1296{
1297 int namelen;
1298 namelen = strlen(name);
1299 if (((pos - path) + namelen + 2) >= PATH_MAX)
1300 return NULL;
1301 memcpy(pos, name, namelen);
1302 pos[namelen] = '/';
1303 pos[namelen + 1] = '\0';
1304 pos += namelen + 1;
1305 return pos;
1306}
1307
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001308static int count_subheaders(struct ctl_table *table)
1309{
1310 int has_files = 0;
1311 int nr_subheaders = 0;
1312 struct ctl_table *entry;
1313
1314 /* special case: no directory and empty directory */
1315 if (!table || !table->procname)
1316 return 1;
1317
1318 for (entry = table; entry->procname; entry++) {
1319 if (entry->child)
1320 nr_subheaders += count_subheaders(entry->child);
1321 else
1322 has_files = 1;
1323 }
1324 return nr_subheaders + has_files;
1325}
1326
1327static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001328 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001329 struct ctl_table *table)
1330{
1331 struct ctl_table *ctl_table_arg = NULL;
1332 struct ctl_table *entry, *files;
1333 int nr_files = 0;
1334 int nr_dirs = 0;
1335 int err = -ENOMEM;
1336
1337 for (entry = table; entry->procname; entry++) {
1338 if (entry->child)
1339 nr_dirs++;
1340 else
1341 nr_files++;
1342 }
1343
1344 files = table;
1345 /* If there are mixed files and directories we need a new table */
1346 if (nr_dirs && nr_files) {
1347 struct ctl_table *new;
1348 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1349 GFP_KERNEL);
1350 if (!files)
1351 goto out;
1352
1353 ctl_table_arg = files;
1354 for (new = files, entry = table; entry->procname; entry++) {
1355 if (entry->child)
1356 continue;
1357 *new = *entry;
1358 new++;
1359 }
1360 }
1361
1362 /* Register everything except a directory full of subdirectories */
1363 if (nr_files || !nr_dirs) {
1364 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001365 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001366 if (!header) {
1367 kfree(ctl_table_arg);
1368 goto out;
1369 }
1370
1371 /* Remember if we need to free the file table */
1372 header->ctl_table_arg = ctl_table_arg;
1373 **subheader = header;
1374 (*subheader)++;
1375 }
1376
1377 /* Recurse into the subdirectories. */
1378 for (entry = table; entry->procname; entry++) {
1379 char *child_pos;
1380
1381 if (!entry->child)
1382 continue;
1383
1384 err = -ENAMETOOLONG;
1385 child_pos = append_path(path, pos, entry->procname);
1386 if (!child_pos)
1387 goto out;
1388
1389 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001390 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001391 pos[0] = '\0';
1392 if (err)
1393 goto out;
1394 }
1395 err = 0;
1396out:
1397 /* On failure our caller will unregister all registered subheaders */
1398 return err;
1399}
1400
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001401/**
1402 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001403 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001404 * @path: The path to the directory the sysctl table is in.
1405 * @table: the top-level table structure
1406 *
1407 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1408 * array. A completely 0 filled entry terminates the table.
1409 *
1410 * See __register_sysctl_table for more details.
1411 */
1412struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001413 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001414 const struct ctl_path *path, struct ctl_table *table)
1415{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001416 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001417 int nr_subheaders = count_subheaders(table);
1418 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001419 const struct ctl_path *component;
1420 char *new_path, *pos;
1421
1422 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1423 if (!new_path)
1424 return NULL;
1425
1426 pos[0] = '\0';
1427 for (component = path; component->procname; component++) {
1428 pos = append_path(new_path, pos, component->procname);
1429 if (!pos)
1430 goto out;
1431 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001432 while (table->procname && table->child && !table[1].procname) {
1433 pos = append_path(new_path, pos, table->procname);
1434 if (!pos)
1435 goto out;
1436 table = table->child;
1437 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001438 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001439 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001440 if (header)
1441 header->ctl_table_arg = ctl_table_arg;
1442 } else {
1443 header = kzalloc(sizeof(*header) +
1444 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1445 if (!header)
1446 goto out;
1447
1448 subheaders = (struct ctl_table_header **) (header + 1);
1449 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001450 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001451
1452 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001453 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001454 goto err_register_leaves;
1455 }
1456
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001457out:
1458 kfree(new_path);
1459 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001460
1461err_register_leaves:
1462 while (subheader > subheaders) {
1463 struct ctl_table_header *subh = *(--subheader);
1464 struct ctl_table *table = subh->ctl_table_arg;
1465 unregister_sysctl_table(subh);
1466 kfree(table);
1467 }
1468 kfree(header);
1469 header = NULL;
1470 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001471}
1472
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001473/**
1474 * register_sysctl_table_path - register a sysctl table hierarchy
1475 * @path: The path to the directory the sysctl table is in.
1476 * @table: the top-level table structure
1477 *
1478 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1479 * array. A completely 0 filled entry terminates the table.
1480 *
1481 * See __register_sysctl_paths for more details.
1482 */
1483struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1484 struct ctl_table *table)
1485{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001486 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001487 path, table);
1488}
1489EXPORT_SYMBOL(register_sysctl_paths);
1490
1491/**
1492 * register_sysctl_table - register a sysctl table hierarchy
1493 * @table: the top-level table structure
1494 *
1495 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1496 * array. A completely 0 filled entry terminates the table.
1497 *
1498 * See register_sysctl_paths for more details.
1499 */
1500struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1501{
1502 static const struct ctl_path null_path[] = { {} };
1503
1504 return register_sysctl_paths(null_path, table);
1505}
1506EXPORT_SYMBOL(register_sysctl_table);
1507
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001508static void put_links(struct ctl_table_header *header)
1509{
1510 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1511 struct ctl_table_root *root = header->root;
1512 struct ctl_dir *parent = header->parent;
1513 struct ctl_dir *core_parent;
1514 struct ctl_table *entry;
1515
1516 if (header->set == root_set)
1517 return;
1518
1519 core_parent = xlate_dir(root_set, parent);
1520 if (IS_ERR(core_parent))
1521 return;
1522
1523 for (entry = header->ctl_table; entry->procname; entry++) {
1524 struct ctl_table_header *link_head;
1525 struct ctl_table *link;
1526 const char *name = entry->procname;
1527
1528 link = find_entry(&link_head, core_parent, name, strlen(name));
1529 if (link &&
1530 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1531 (S_ISLNK(link->mode) && (link->data == root)))) {
1532 drop_sysctl_table(link_head);
1533 }
1534 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001535 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001536 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001537 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001538 }
1539 }
1540}
1541
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001542static void drop_sysctl_table(struct ctl_table_header *header)
1543{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001544 struct ctl_dir *parent = header->parent;
1545
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001546 if (--header->nreg)
1547 return;
1548
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001549 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001550 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001551 if (!--header->count)
1552 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001553
1554 if (parent)
1555 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001556}
1557
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001558/**
1559 * unregister_sysctl_table - unregister a sysctl table hierarchy
1560 * @header: the header returned from register_sysctl_table
1561 *
1562 * Unregisters the sysctl table and all children. proc entries may not
1563 * actually be removed until they are no longer used by anyone.
1564 */
1565void unregister_sysctl_table(struct ctl_table_header * header)
1566{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001567 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001568 might_sleep();
1569
1570 if (header == NULL)
1571 return;
1572
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001573 nr_subheaders = count_subheaders(header->ctl_table_arg);
1574 if (unlikely(nr_subheaders > 1)) {
1575 struct ctl_table_header **subheaders;
1576 int i;
1577
1578 subheaders = (struct ctl_table_header **)(header + 1);
1579 for (i = nr_subheaders -1; i >= 0; i--) {
1580 struct ctl_table_header *subh = subheaders[i];
1581 struct ctl_table *table = subh->ctl_table_arg;
1582 unregister_sysctl_table(subh);
1583 kfree(table);
1584 }
1585 kfree(header);
1586 return;
1587 }
1588
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001589 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001590 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001591 spin_unlock(&sysctl_lock);
1592}
1593EXPORT_SYMBOL(unregister_sysctl_table);
1594
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001595void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001596 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001597 int (*is_seen)(struct ctl_table_set *))
1598{
Dan Carpenter13474402012-01-30 16:40:29 +03001599 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001600 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001601 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001602}
1603
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001604void retire_sysctl_set(struct ctl_table_set *set)
1605{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001606 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001607}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001608
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001609int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001610{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001611 struct proc_dir_entry *proc_sys_root;
1612
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001613 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001614 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1615 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001616 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001617
1618 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001619}