blob: e0d3e7e59cbdec3fdcfb7f5d82e928643c401524 [file] [log] [blame]
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001/*
2 * /proc/sys support
3 */
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04004#include <linux/init.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08005#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -07006#include <linux/poll.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08007#include <linux/proc_fs.h>
8#include <linux/security.h>
Nick Piggin34286d62011-01-07 17:49:57 +11009#include <linux/namei.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080010#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080011#include "internal.h"
12
Al Virod72f71e2009-02-20 05:58:47 +000013static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080014static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080015static const struct inode_operations proc_sys_inode_operations;
Al Viro90434762008-07-15 08:54:06 -040016static const struct file_operations proc_sys_dir_file_operations;
17static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080018
Lucas De Marchif1ecf062011-11-02 13:39:22 -070019void proc_sys_poll_notify(struct ctl_table_poll *poll)
20{
21 if (!poll)
22 return;
23
24 atomic_inc(&poll->event);
25 wake_up_interruptible(&poll->wait);
26}
27
Eric W. Biedermana1945582012-01-21 17:51:48 -080028static struct ctl_table root_table[] = {
29 {
30 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080031 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080032 },
33 { }
34};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080035static struct ctl_table_root sysctl_table_root = {
36 .default_set.list = LIST_HEAD_INIT(sysctl_table_root.default_set.dir.header.ctl_entry),
37 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080038 {{.count = 1,
39 .nreg = 1,
40 .ctl_table = root_table,
41 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),}},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080042 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080043 .root = &sysctl_table_root,
44 .set = &sysctl_table_root.default_set,
45 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080046};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080047
48static DEFINE_SPINLOCK(sysctl_lock);
49
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080050static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080051static int sysctl_follow_link(struct ctl_table_header **phead,
52 struct ctl_table **pentry, struct nsproxy *namespaces);
53static int insert_links(struct ctl_table_header *head);
54static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080055
Eric W. Biederman69801282012-01-21 20:09:45 -080056static void sysctl_print_dir(struct ctl_dir *dir)
57{
58 if (dir->header.parent)
59 sysctl_print_dir(dir->header.parent);
60 printk(KERN_CONT "%s/", dir->header.ctl_table[0].procname);
61}
62
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080063static int namecmp(const char *name1, int len1, const char *name2, int len2)
64{
65 int minlen;
66 int cmp;
67
68 minlen = len1;
69 if (minlen > len2)
70 minlen = len2;
71
72 cmp = memcmp(name1, name2, minlen);
73 if (cmp == 0)
74 cmp = len1 - len2;
75 return cmp;
76}
77
78static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -080079 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080080{
Eric W. Biederman0e47c992012-01-07 23:24:30 -080081 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080082 struct ctl_table_header *head;
83 struct ctl_table *entry;
84
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080085 list_for_each_entry(head, &set->list, ctl_entry) {
86 if (head->unregistering)
87 continue;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080088 if (head->parent != dir)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080089 continue;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080090 for (entry = head->ctl_table; entry->procname; entry++) {
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080091 const char *procname = entry->procname;
92 if (namecmp(procname, strlen(procname), name, namelen) == 0) {
93 *phead = head;
94 return entry;
95 }
96 }
97 }
98 return NULL;
99}
100
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800101static void init_header(struct ctl_table_header *head,
102 struct ctl_table_root *root, struct ctl_table_set *set,
103 struct ctl_table *table)
104{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800105 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800106 head->ctl_table_arg = table;
107 INIT_LIST_HEAD(&head->ctl_entry);
108 head->used = 0;
109 head->count = 1;
110 head->nreg = 1;
111 head->unregistering = NULL;
112 head->root = root;
113 head->set = set;
114 head->parent = NULL;
115}
116
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800117static void erase_header(struct ctl_table_header *head)
118{
119 list_del_init(&head->ctl_entry);
120}
121
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800122static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800123{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800124 int err;
125
126 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800127 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800128 err = insert_links(header);
129 if (err)
130 goto fail_links;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800131 list_add_tail(&header->ctl_entry, &header->set->list);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800132 return 0;
133fail_links:
134 header->parent = NULL;
135 drop_sysctl_table(&dir->header);
136 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800137}
138
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800139/* called under sysctl_lock */
140static int use_table(struct ctl_table_header *p)
141{
142 if (unlikely(p->unregistering))
143 return 0;
144 p->used++;
145 return 1;
146}
147
148/* called under sysctl_lock */
149static void unuse_table(struct ctl_table_header *p)
150{
151 if (!--p->used)
152 if (unlikely(p->unregistering))
153 complete(p->unregistering);
154}
155
156/* called under sysctl_lock, will reacquire if has to wait */
157static void start_unregistering(struct ctl_table_header *p)
158{
159 /*
160 * if p->used is 0, nobody will ever touch that entry again;
161 * we'll eliminate all paths to it before dropping sysctl_lock
162 */
163 if (unlikely(p->used)) {
164 struct completion wait;
165 init_completion(&wait);
166 p->unregistering = &wait;
167 spin_unlock(&sysctl_lock);
168 wait_for_completion(&wait);
169 spin_lock(&sysctl_lock);
170 } else {
171 /* anything non-NULL; we'll never dereference it */
172 p->unregistering = ERR_PTR(-EINVAL);
173 }
174 /*
175 * do not remove from the list until nobody holds it; walking the
176 * list in do_sysctl() relies on that.
177 */
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800178 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800179}
180
181static void sysctl_head_get(struct ctl_table_header *head)
182{
183 spin_lock(&sysctl_lock);
184 head->count++;
185 spin_unlock(&sysctl_lock);
186}
187
188void sysctl_head_put(struct ctl_table_header *head)
189{
190 spin_lock(&sysctl_lock);
191 if (!--head->count)
192 kfree_rcu(head, rcu);
193 spin_unlock(&sysctl_lock);
194}
195
196static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
197{
198 if (!head)
199 BUG();
200 spin_lock(&sysctl_lock);
201 if (!use_table(head))
202 head = ERR_PTR(-ENOENT);
203 spin_unlock(&sysctl_lock);
204 return head;
205}
206
207static void sysctl_head_finish(struct ctl_table_header *head)
208{
209 if (!head)
210 return;
211 spin_lock(&sysctl_lock);
212 unuse_table(head);
213 spin_unlock(&sysctl_lock);
214}
215
216static struct ctl_table_set *
217lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
218{
219 struct ctl_table_set *set = &root->default_set;
220 if (root->lookup)
221 set = root->lookup(root, namespaces);
222 return set;
223}
224
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800225static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800226 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800227 const char *name, int namelen)
228{
229 struct ctl_table_header *head;
230 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800231
232 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800233 entry = find_entry(&head, dir, name, namelen);
234 if (entry && use_table(head))
235 *phead = head;
236 else
237 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800238 spin_unlock(&sysctl_lock);
239 return entry;
240}
241
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800242static struct ctl_table_header *next_usable_entry(struct ctl_dir *dir,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800243 struct list_head *tmp)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800244{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800245 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800246 struct ctl_table_header *head;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800247
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800248 for (tmp = tmp->next; tmp != &set->list; tmp = tmp->next) {
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800249 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
250
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800251 if (head->parent != dir ||
252 !head->ctl_table->procname ||
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800253 !use_table(head))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800254 continue;
255
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800256 return head;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800257 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800258 return NULL;
259}
260
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800261static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800262 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800263{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800264 struct ctl_table_header *head;
265 struct ctl_table *entry = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800266
267 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800268 head = next_usable_entry(dir, &dir->header.set->list);
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800269 spin_unlock(&sysctl_lock);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800270 if (head)
271 entry = head->ctl_table;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800272 *phead = head;
273 *pentry = entry;
274}
275
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800276static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800277{
278 struct ctl_table_header *head = *phead;
279 struct ctl_table *entry = *pentry;
280
281 entry++;
282 if (!entry->procname) {
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800283 spin_lock(&sysctl_lock);
284 unuse_table(head);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800285 head = next_usable_entry(head->parent, &head->ctl_entry);
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800286 spin_unlock(&sysctl_lock);
287 if (head)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800288 entry = head->ctl_table;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800289 }
290 *phead = head;
291 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800292}
293
294void register_sysctl_root(struct ctl_table_root *root)
295{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800296}
297
298/*
299 * sysctl_perm does NOT grant the superuser all rights automatically, because
300 * some sysctl variables are readonly even to root.
301 */
302
303static int test_perm(int mode, int op)
304{
305 if (!current_euid())
306 mode >>= 6;
307 else if (in_egroup_p(0))
308 mode >>= 3;
309 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
310 return 0;
311 return -EACCES;
312}
313
314static int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
315{
316 int mode;
317
318 if (root->permissions)
319 mode = root->permissions(root, current->nsproxy, table);
320 else
321 mode = table->mode;
322
323 return test_perm(mode, op);
324}
325
Al Viro90434762008-07-15 08:54:06 -0400326static struct inode *proc_sys_make_inode(struct super_block *sb,
327 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800328{
329 struct inode *inode;
Al Viro90434762008-07-15 08:54:06 -0400330 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800331
Al Viro90434762008-07-15 08:54:06 -0400332 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800333 if (!inode)
334 goto out;
335
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400336 inode->i_ino = get_next_ino();
337
Al Viro90434762008-07-15 08:54:06 -0400338 sysctl_head_get(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800339 ei = PROC_I(inode);
Al Viro90434762008-07-15 08:54:06 -0400340 ei->sysctl = head;
341 ei->sysctl_entry = table;
342
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800343 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Al Viro90434762008-07-15 08:54:06 -0400344 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800345 if (!S_ISDIR(table->mode)) {
Al Viro90434762008-07-15 08:54:06 -0400346 inode->i_mode |= S_IFREG;
347 inode->i_op = &proc_sys_inode_operations;
348 inode->i_fop = &proc_sys_file_operations;
349 } else {
350 inode->i_mode |= S_IFDIR;
Al Viro90434762008-07-15 08:54:06 -0400351 inode->i_op = &proc_sys_dir_operations;
352 inode->i_fop = &proc_sys_dir_file_operations;
353 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800354out:
355 return inode;
356}
357
Adrian Bunk81324362008-10-03 00:33:54 +0400358static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800359{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800360 struct ctl_table_header *head = PROC_I(inode)->sysctl;
361 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800362 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800363 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800364}
365
366static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
367 struct nameidata *nd)
368{
Al Viro90434762008-07-15 08:54:06 -0400369 struct ctl_table_header *head = grab_header(dir);
Al Viro90434762008-07-15 08:54:06 -0400370 struct ctl_table_header *h = NULL;
371 struct qstr *name = &dentry->d_name;
372 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800373 struct inode *inode;
Al Viro90434762008-07-15 08:54:06 -0400374 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800375 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800376 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800377
Al Viro90434762008-07-15 08:54:06 -0400378 if (IS_ERR(head))
379 return ERR_CAST(head);
380
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800381 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro90434762008-07-15 08:54:06 -0400382
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800383 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro90434762008-07-15 08:54:06 -0400384 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800385 goto out;
386
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800387 ret = sysctl_follow_link(&h, &p, current->nsproxy);
388 err = ERR_PTR(ret);
389 if (ret)
390 goto out;
391
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800392 err = ERR_PTR(-ENOMEM);
Al Viro90434762008-07-15 08:54:06 -0400393 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
394 if (h)
395 sysctl_head_finish(h);
396
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800397 if (!inode)
398 goto out;
399
400 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100401 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800402 d_add(dentry, inode);
403
404out:
405 sysctl_head_finish(head);
406 return err;
407}
408
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700409static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
410 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800411{
Al Viro90434762008-07-15 08:54:06 -0400412 struct inode *inode = filp->f_path.dentry->d_inode;
413 struct ctl_table_header *head = grab_header(inode);
414 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100415 ssize_t error;
416 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800417
Al Viro90434762008-07-15 08:54:06 -0400418 if (IS_ERR(head))
419 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800420
421 /*
422 * At this point we know that the sysctl was not unregistered
423 * and won't be until we finish.
424 */
425 error = -EPERM;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -0700426 if (sysctl_perm(head->root, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800427 goto out;
428
Al Viro90434762008-07-15 08:54:06 -0400429 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
430 error = -EINVAL;
431 if (!table->proc_handler)
432 goto out;
433
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800434 /* careful: calling conventions are nasty here */
435 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700436 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800437 if (!error)
438 error = res;
439out:
440 sysctl_head_finish(head);
441
442 return error;
443}
444
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700445static ssize_t proc_sys_read(struct file *filp, char __user *buf,
446 size_t count, loff_t *ppos)
447{
448 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
449}
450
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800451static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
452 size_t count, loff_t *ppos)
453{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700454 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800455}
456
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700457static int proc_sys_open(struct inode *inode, struct file *filp)
458{
459 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
460
461 if (table->poll)
462 filp->private_data = proc_sys_poll_event(table->poll);
463
464 return 0;
465}
466
467static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
468{
469 struct inode *inode = filp->f_path.dentry->d_inode;
470 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
471 unsigned long event = (unsigned long)filp->private_data;
472 unsigned int ret = DEFAULT_POLLMASK;
473
474 if (!table->proc_handler)
475 goto out;
476
477 if (!table->poll)
478 goto out;
479
480 poll_wait(filp, &table->poll->wait, wait);
481
482 if (event != atomic_read(&table->poll->event)) {
483 filp->private_data = proc_sys_poll_event(table->poll);
484 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
485 }
486
487out:
488 return ret;
489}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800490
491static int proc_sys_fill_cache(struct file *filp, void *dirent,
Al Viro90434762008-07-15 08:54:06 -0400492 filldir_t filldir,
493 struct ctl_table_header *head,
494 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800495{
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800496 struct dentry *child, *dir = filp->f_path.dentry;
497 struct inode *inode;
498 struct qstr qname;
499 ino_t ino = 0;
500 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800501
502 qname.name = table->procname;
503 qname.len = strlen(table->procname);
504 qname.hash = full_name_hash(qname.name, qname.len);
505
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800506 child = d_lookup(dir, &qname);
507 if (!child) {
Al Viro90434762008-07-15 08:54:06 -0400508 child = d_alloc(dir, &qname);
509 if (child) {
510 inode = proc_sys_make_inode(dir->d_sb, head, table);
511 if (!inode) {
512 dput(child);
513 return -ENOMEM;
514 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100515 d_set_d_op(child, &proc_sys_dentry_operations);
Al Viro90434762008-07-15 08:54:06 -0400516 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800517 }
Al Viro90434762008-07-15 08:54:06 -0400518 } else {
519 return -ENOMEM;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800520 }
521 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800522 inode = child->d_inode;
Al Viro90434762008-07-15 08:54:06 -0400523 ino = inode->i_ino;
524 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800525 dput(child);
Al Viro90434762008-07-15 08:54:06 -0400526 return !!filldir(dirent, qname.name, qname.len, filp->f_pos, ino, type);
527}
528
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800529static int proc_sys_link_fill_cache(struct file *filp, void *dirent,
530 filldir_t filldir,
531 struct ctl_table_header *head,
532 struct ctl_table *table)
533{
534 int err, ret = 0;
535 head = sysctl_head_grab(head);
536
537 /* It is not an error if we can not follow the link ignore it */
538 err = sysctl_follow_link(&head, &table, current->nsproxy);
539 if (err)
540 goto out;
541
542 ret = proc_sys_fill_cache(filp, dirent, filldir, head, table);
543out:
544 sysctl_head_finish(head);
545 return ret;
546}
547
Al Viro90434762008-07-15 08:54:06 -0400548static int scan(struct ctl_table_header *head, ctl_table *table,
549 unsigned long *pos, struct file *file,
550 void *dirent, filldir_t filldir)
551{
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800552 int res;
Al Viro90434762008-07-15 08:54:06 -0400553
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800554 if ((*pos)++ < file->f_pos)
555 return 0;
Al Viro90434762008-07-15 08:54:06 -0400556
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800557 if (unlikely(S_ISLNK(table->mode)))
558 res = proc_sys_link_fill_cache(file, dirent, filldir, head, table);
559 else
560 res = proc_sys_fill_cache(file, dirent, filldir, head, table);
Al Viro90434762008-07-15 08:54:06 -0400561
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800562 if (res == 0)
563 file->f_pos = *pos;
Al Viro90434762008-07-15 08:54:06 -0400564
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800565 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800566}
567
568static int proc_sys_readdir(struct file *filp, void *dirent, filldir_t filldir)
569{
Al Viro90434762008-07-15 08:54:06 -0400570 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800571 struct inode *inode = dentry->d_inode;
Al Viro90434762008-07-15 08:54:06 -0400572 struct ctl_table_header *head = grab_header(inode);
Al Viro90434762008-07-15 08:54:06 -0400573 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800574 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800575 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800576 unsigned long pos;
Al Viro90434762008-07-15 08:54:06 -0400577 int ret = -EINVAL;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800578
Al Viro90434762008-07-15 08:54:06 -0400579 if (IS_ERR(head))
580 return PTR_ERR(head);
581
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800582 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800583
584 ret = 0;
585 /* Avoid a switch here: arm builds fail with missing __cmpdi2 */
586 if (filp->f_pos == 0) {
587 if (filldir(dirent, ".", 1, filp->f_pos,
588 inode->i_ino, DT_DIR) < 0)
589 goto out;
590 filp->f_pos++;
591 }
592 if (filp->f_pos == 1) {
593 if (filldir(dirent, "..", 2, filp->f_pos,
594 parent_ino(dentry), DT_DIR) < 0)
595 goto out;
596 filp->f_pos++;
597 }
598 pos = 2;
599
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800600 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800601 ret = scan(h, entry, &pos, filp, dirent, filldir);
Al Viro90434762008-07-15 08:54:06 -0400602 if (ret) {
603 sysctl_head_finish(h);
604 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800605 }
606 }
607 ret = 1;
608out:
609 sysctl_head_finish(head);
610 return ret;
611}
612
Al Viro10556cb2011-06-20 19:28:19 -0400613static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800614{
615 /*
616 * sysctl entries that are not writeable,
617 * are _NOT_ writeable, capabilities or not.
618 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200619 struct ctl_table_header *head;
620 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800621 int error;
622
Miklos Szeredif696a362008-07-31 13:41:58 +0200623 /* Executable files are not allowed under /proc/sys/ */
624 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
625 return -EACCES;
626
627 head = grab_header(inode);
Al Viro90434762008-07-15 08:54:06 -0400628 if (IS_ERR(head))
629 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800630
Miklos Szeredif696a362008-07-31 13:41:58 +0200631 table = PROC_I(inode)->sysctl_entry;
Al Viro90434762008-07-15 08:54:06 -0400632 if (!table) /* global root - r-xr-xr-x */
633 error = mask & MAY_WRITE ? -EACCES : 0;
634 else /* Use the permissions on the sysctl table entry */
Al Viro1fc0f782011-06-20 18:59:02 -0400635 error = sysctl_perm(head->root, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800636
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800637 sysctl_head_finish(head);
638 return error;
639}
640
641static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
642{
643 struct inode *inode = dentry->d_inode;
644 int error;
645
646 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
647 return -EPERM;
648
649 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200650 if (error)
651 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800652
Christoph Hellwig10257742010-06-04 11:30:02 +0200653 if ((attr->ia_valid & ATTR_SIZE) &&
654 attr->ia_size != i_size_read(inode)) {
655 error = vmtruncate(inode, attr->ia_size);
656 if (error)
657 return error;
658 }
659
660 setattr_copy(inode, attr);
661 mark_inode_dirty(inode);
662 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800663}
664
Al Viro90434762008-07-15 08:54:06 -0400665static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
666{
667 struct inode *inode = dentry->d_inode;
668 struct ctl_table_header *head = grab_header(inode);
669 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
670
671 if (IS_ERR(head))
672 return PTR_ERR(head);
673
674 generic_fillattr(inode, stat);
675 if (table)
676 stat->mode = (stat->mode & S_IFMT) | table->mode;
677
678 sysctl_head_finish(head);
679 return 0;
680}
681
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800682static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700683 .open = proc_sys_open,
684 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800685 .read = proc_sys_read,
686 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200687 .llseek = default_llseek,
Al Viro90434762008-07-15 08:54:06 -0400688};
689
690static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700691 .read = generic_read_dir,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800692 .readdir = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200693 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800694};
695
Jan Engelhardt03a44822008-02-08 04:21:19 -0800696static const struct inode_operations proc_sys_inode_operations = {
Al Viro90434762008-07-15 08:54:06 -0400697 .permission = proc_sys_permission,
698 .setattr = proc_sys_setattr,
699 .getattr = proc_sys_getattr,
700};
701
702static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800703 .lookup = proc_sys_lookup,
704 .permission = proc_sys_permission,
705 .setattr = proc_sys_setattr,
Al Viro90434762008-07-15 08:54:06 -0400706 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800707};
708
709static int proc_sys_revalidate(struct dentry *dentry, struct nameidata *nd)
710{
Nick Piggin34286d62011-01-07 17:49:57 +1100711 if (nd->flags & LOOKUP_RCU)
712 return -ECHILD;
Al Viro90434762008-07-15 08:54:06 -0400713 return !PROC_I(dentry->d_inode)->sysctl->unregistering;
714}
715
Nick Pigginfe15ce42011-01-07 17:49:23 +1100716static int proc_sys_delete(const struct dentry *dentry)
Al Viro90434762008-07-15 08:54:06 -0400717{
718 return !!PROC_I(dentry->d_inode)->sysctl->unregistering;
719}
720
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800721static int sysctl_is_seen(struct ctl_table_header *p)
722{
723 struct ctl_table_set *set = p->set;
724 int res;
725 spin_lock(&sysctl_lock);
726 if (p->unregistering)
727 res = 0;
728 else if (!set->is_seen)
729 res = 1;
730 else
731 res = set->is_seen(set);
732 spin_unlock(&sysctl_lock);
733 return res;
734}
735
Nick Piggin621e1552011-01-07 17:49:27 +1100736static int proc_sys_compare(const struct dentry *parent,
737 const struct inode *pinode,
738 const struct dentry *dentry, const struct inode *inode,
739 unsigned int len, const char *str, const struct qstr *name)
Al Viro90434762008-07-15 08:54:06 -0400740{
Al Virodfef6dc2011-03-08 01:25:28 -0500741 struct ctl_table_header *head;
Nick Piggin31e6b012011-01-07 17:49:52 +1100742 /* Although proc doesn't have negative dentries, rcu-walk means
743 * that inode here can be NULL */
Al Virodfef6dc2011-03-08 01:25:28 -0500744 /* AV: can it, indeed? */
Nick Piggin31e6b012011-01-07 17:49:52 +1100745 if (!inode)
Al Virodfef6dc2011-03-08 01:25:28 -0500746 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100747 if (name->len != len)
Al Viro90434762008-07-15 08:54:06 -0400748 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100749 if (memcmp(name->name, str, len))
Al Viro90434762008-07-15 08:54:06 -0400750 return 1;
Al Virodfef6dc2011-03-08 01:25:28 -0500751 head = rcu_dereference(PROC_I(inode)->sysctl);
752 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800753}
754
Al Virod72f71e2009-02-20 05:58:47 +0000755static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800756 .d_revalidate = proc_sys_revalidate,
Al Viro90434762008-07-15 08:54:06 -0400757 .d_delete = proc_sys_delete,
758 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800759};
760
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800761static struct ctl_dir *find_subdir(struct ctl_dir *dir,
762 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800763{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800764 struct ctl_table_header *head;
765 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800766
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800767 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800768 if (!entry)
769 return ERR_PTR(-ENOENT);
770 if (S_ISDIR(entry->mode))
771 return container_of(head, struct ctl_dir, header);
772 return ERR_PTR(-ENOTDIR);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800773}
774
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800775static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800776 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800777{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800778 struct ctl_table *table;
779 struct ctl_dir *new;
780 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800781
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800782 new = kzalloc(sizeof(*new) + sizeof(struct ctl_table)*2 +
783 namelen + 1, GFP_KERNEL);
784 if (!new)
785 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800786
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800787 table = (struct ctl_table *)(new + 1);
788 new_name = (char *)(table + 2);
789 memcpy(new_name, name, namelen);
790 new_name[namelen] = '\0';
791 table[0].procname = new_name;
792 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800793 init_header(&new->header, set->dir.header.root, set, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800794
795 return new;
796}
797
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800798static struct ctl_dir *get_subdir(struct ctl_dir *dir,
799 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800800{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800801 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800802 struct ctl_dir *subdir, *new = NULL;
803
804 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800805 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800806 if (!IS_ERR(subdir))
807 goto found;
808 if (PTR_ERR(subdir) != -ENOENT)
809 goto failed;
810
811 spin_unlock(&sysctl_lock);
812 new = new_dir(set, name, namelen);
813 spin_lock(&sysctl_lock);
814 subdir = ERR_PTR(-ENOMEM);
815 if (!new)
816 goto failed;
817
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800818 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800819 if (!IS_ERR(subdir))
820 goto found;
821 if (PTR_ERR(subdir) != -ENOENT)
822 goto failed;
823
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800824 if (insert_header(dir, &new->header))
825 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800826 subdir = new;
827found:
828 subdir->header.nreg++;
829failed:
830 if (unlikely(IS_ERR(subdir))) {
Eric W. Biederman69801282012-01-21 20:09:45 -0800831 printk(KERN_ERR "sysctl could not get directory: ");
832 sysctl_print_dir(dir);
833 printk(KERN_CONT "/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800834 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800835 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800836 drop_sysctl_table(&dir->header);
837 if (new)
838 drop_sysctl_table(&new->header);
839 spin_unlock(&sysctl_lock);
840 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800841}
842
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800843static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
844{
845 struct ctl_dir *parent;
846 const char *procname;
847 if (!dir->header.parent)
848 return &set->dir;
849 parent = xlate_dir(set, dir->header.parent);
850 if (IS_ERR(parent))
851 return parent;
852 procname = dir->header.ctl_table[0].procname;
853 return find_subdir(parent, procname, strlen(procname));
854}
855
856static int sysctl_follow_link(struct ctl_table_header **phead,
857 struct ctl_table **pentry, struct nsproxy *namespaces)
858{
859 struct ctl_table_header *head;
860 struct ctl_table_root *root;
861 struct ctl_table_set *set;
862 struct ctl_table *entry;
863 struct ctl_dir *dir;
864 int ret;
865
866 /* Get out quickly if not a link */
867 if (!S_ISLNK((*pentry)->mode))
868 return 0;
869
870 ret = 0;
871 spin_lock(&sysctl_lock);
872 root = (*pentry)->data;
873 set = lookup_header_set(root, namespaces);
874 dir = xlate_dir(set, (*phead)->parent);
875 if (IS_ERR(dir))
876 ret = PTR_ERR(dir);
877 else {
878 const char *procname = (*pentry)->procname;
879 head = NULL;
880 entry = find_entry(&head, dir, procname, strlen(procname));
881 ret = -ENOENT;
882 if (entry && use_table(head)) {
883 unuse_table(*phead);
884 *phead = head;
885 *pentry = entry;
886 ret = 0;
887 }
888 }
889
890 spin_unlock(&sysctl_lock);
891 return ret;
892}
893
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800894static int sysctl_check_table_dups(const char *path, struct ctl_table *old,
895 struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800896{
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800897 struct ctl_table *entry, *test;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800898 int error = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800899
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800900 for (entry = old; entry->procname; entry++) {
901 for (test = table; test->procname; test++) {
902 if (strcmp(entry->procname, test->procname) == 0) {
903 printk(KERN_ERR "sysctl duplicate entry: %s/%s\n",
904 path, test->procname);
905 error = -EEXIST;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800906 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800907 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800908 }
909 return error;
910}
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800911
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800912static int sysctl_check_dups(struct ctl_dir *dir,
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800913 const char *path, struct ctl_table *table)
914{
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800915 struct ctl_table_set *set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800916 struct ctl_table_header *head;
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800917 int error = 0;
918
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800919 set = dir->header.set;
920 list_for_each_entry(head, &set->list, ctl_entry) {
921 if (head->unregistering)
922 continue;
923 if (head->parent != dir)
924 continue;
925 error = sysctl_check_table_dups(path, head->ctl_table, table);
926 }
Eric W. Biederman7c60c482012-01-21 13:34:05 -0800927 return error;
928}
929
930static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
931{
932 struct va_format vaf;
933 va_list args;
934
935 va_start(args, fmt);
936 vaf.fmt = fmt;
937 vaf.va = &args;
938
939 printk(KERN_ERR "sysctl table check failed: %s/%s %pV\n",
940 path, table->procname, &vaf);
941
942 va_end(args);
943 return -EINVAL;
944}
945
946static int sysctl_check_table(const char *path, struct ctl_table *table)
947{
948 int err = 0;
949 for (; table->procname; table++) {
950 if (table->child)
951 err = sysctl_err(path, table, "Not a file");
952
953 if ((table->proc_handler == proc_dostring) ||
954 (table->proc_handler == proc_dointvec) ||
955 (table->proc_handler == proc_dointvec_minmax) ||
956 (table->proc_handler == proc_dointvec_jiffies) ||
957 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
958 (table->proc_handler == proc_dointvec_ms_jiffies) ||
959 (table->proc_handler == proc_doulongvec_minmax) ||
960 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
961 if (!table->data)
962 err = sysctl_err(path, table, "No data");
963 if (!table->maxlen)
964 err = sysctl_err(path, table, "No maxlen");
965 }
966 if (!table->proc_handler)
967 err = sysctl_err(path, table, "No proc_handler");
968
969 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
970 err = sysctl_err(path, table, "bogus .mode 0%o",
971 table->mode);
972 }
973 return err;
974}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800975
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800976static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
977 struct ctl_table_root *link_root)
978{
979 struct ctl_table *link_table, *entry, *link;
980 struct ctl_table_header *links;
981 char *link_name;
982 int nr_entries, name_bytes;
983
984 name_bytes = 0;
985 nr_entries = 0;
986 for (entry = table; entry->procname; entry++) {
987 nr_entries++;
988 name_bytes += strlen(entry->procname) + 1;
989 }
990
991 links = kzalloc(sizeof(struct ctl_table_header) +
992 sizeof(struct ctl_table)*(nr_entries + 1) +
993 name_bytes,
994 GFP_KERNEL);
995
996 if (!links)
997 return NULL;
998
999 link_table = (struct ctl_table *)(links + 1);
1000 link_name = (char *)&link_table[nr_entries + 1];
1001
1002 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1003 int len = strlen(entry->procname) + 1;
1004 memcpy(link_name, entry->procname, len);
1005 link->procname = link_name;
1006 link->mode = S_IFLNK|S_IRWXUGO;
1007 link->data = link_root;
1008 link_name += len;
1009 }
1010 init_header(links, dir->header.root, dir->header.set, link_table);
1011 links->nreg = nr_entries;
1012
1013 return links;
1014}
1015
1016static bool get_links(struct ctl_dir *dir,
1017 struct ctl_table *table, struct ctl_table_root *link_root)
1018{
1019 struct ctl_table_header *head;
1020 struct ctl_table *entry, *link;
1021
1022 /* Are there links available for every entry in table? */
1023 for (entry = table; entry->procname; entry++) {
1024 const char *procname = entry->procname;
1025 link = find_entry(&head, dir, procname, strlen(procname));
1026 if (!link)
1027 return false;
1028 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1029 continue;
1030 if (S_ISLNK(link->mode) && (link->data == link_root))
1031 continue;
1032 return false;
1033 }
1034
1035 /* The checks passed. Increase the registration count on the links */
1036 for (entry = table; entry->procname; entry++) {
1037 const char *procname = entry->procname;
1038 link = find_entry(&head, dir, procname, strlen(procname));
1039 head->nreg++;
1040 }
1041 return true;
1042}
1043
1044static int insert_links(struct ctl_table_header *head)
1045{
1046 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1047 struct ctl_dir *core_parent = NULL;
1048 struct ctl_table_header *links;
1049 int err;
1050
1051 if (head->set == root_set)
1052 return 0;
1053
1054 core_parent = xlate_dir(root_set, head->parent);
1055 if (IS_ERR(core_parent))
1056 return 0;
1057
1058 if (get_links(core_parent, head->ctl_table, head->root))
1059 return 0;
1060
1061 core_parent->header.nreg++;
1062 spin_unlock(&sysctl_lock);
1063
1064 links = new_links(core_parent, head->ctl_table, head->root);
1065
1066 spin_lock(&sysctl_lock);
1067 err = -ENOMEM;
1068 if (!links)
1069 goto out;
1070
1071 err = 0;
1072 if (get_links(core_parent, head->ctl_table, head->root)) {
1073 kfree(links);
1074 goto out;
1075 }
1076
1077 err = insert_header(core_parent, links);
1078 if (err)
1079 kfree(links);
1080out:
1081 drop_sysctl_table(&core_parent->header);
1082 return err;
1083}
1084
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001085/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001086 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001087 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001088 * @path: The path to the directory the sysctl table is in.
1089 * @table: the top-level table structure
1090 *
1091 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1092 * array. A completely 0 filled entry terminates the table.
1093 *
1094 * The members of the &struct ctl_table structure are used as follows:
1095 *
1096 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1097 * enter a sysctl file
1098 *
1099 * data - a pointer to data for use by proc_handler
1100 *
1101 * maxlen - the maximum size in bytes of the data
1102 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001103 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001104 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001105 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001106 *
1107 * proc_handler - the text handler routine (described below)
1108 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001109 * extra1, extra2 - extra pointers usable by the proc handler routines
1110 *
1111 * Leaf nodes in the sysctl tree will be represented by a single file
1112 * under /proc; non-leaf nodes will be represented by directories.
1113 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001114 * There must be a proc_handler routine for any terminal nodes.
1115 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001116 *
1117 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1118 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1119 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1120 *
1121 * It is the handler's job to read the input buffer from user memory
1122 * and process it. The handler should return 0 on success.
1123 *
1124 * This routine returns %NULL on a failure to register, and a pointer
1125 * to the table header on success.
1126 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001127struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001128 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001129 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001130{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001131 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001132 struct ctl_table_header *links = NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001133 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001134 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001135 struct ctl_dir *dir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001136
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001137 header = kzalloc(sizeof(struct ctl_table_header), GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001138 if (!header)
1139 return NULL;
1140
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001141 init_header(header, root, set, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001142 if (sysctl_check_table(path, table))
1143 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001144
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001145 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001146 dir = &set->dir;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001147 dir->header.nreg++;
1148 spin_unlock(&sysctl_lock);
1149
1150 /* Find the directory for the ctl_table */
1151 for (name = path; name; name = nextname) {
1152 int namelen;
1153 nextname = strchr(name, '/');
1154 if (nextname) {
1155 namelen = nextname - name;
1156 nextname++;
1157 } else {
1158 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001159 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001160 if (namelen == 0)
1161 continue;
1162
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001163 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001164 if (IS_ERR(dir))
1165 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001166 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001167
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001168 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001169 if (sysctl_check_dups(dir, path, table))
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001170 goto fail_put_dir_locked;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001171
1172 if (insert_header(dir, header))
1173 goto fail_put_dir_locked;
1174
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001175 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001176 spin_unlock(&sysctl_lock);
1177
1178 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001179
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001180fail_put_dir_locked:
1181 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001182 spin_unlock(&sysctl_lock);
1183fail:
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001184 kfree(links);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001185 kfree(header);
1186 dump_stack();
1187 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001188}
1189
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001190static char *append_path(const char *path, char *pos, const char *name)
1191{
1192 int namelen;
1193 namelen = strlen(name);
1194 if (((pos - path) + namelen + 2) >= PATH_MAX)
1195 return NULL;
1196 memcpy(pos, name, namelen);
1197 pos[namelen] = '/';
1198 pos[namelen + 1] = '\0';
1199 pos += namelen + 1;
1200 return pos;
1201}
1202
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001203static int count_subheaders(struct ctl_table *table)
1204{
1205 int has_files = 0;
1206 int nr_subheaders = 0;
1207 struct ctl_table *entry;
1208
1209 /* special case: no directory and empty directory */
1210 if (!table || !table->procname)
1211 return 1;
1212
1213 for (entry = table; entry->procname; entry++) {
1214 if (entry->child)
1215 nr_subheaders += count_subheaders(entry->child);
1216 else
1217 has_files = 1;
1218 }
1219 return nr_subheaders + has_files;
1220}
1221
1222static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001223 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001224 struct ctl_table *table)
1225{
1226 struct ctl_table *ctl_table_arg = NULL;
1227 struct ctl_table *entry, *files;
1228 int nr_files = 0;
1229 int nr_dirs = 0;
1230 int err = -ENOMEM;
1231
1232 for (entry = table; entry->procname; entry++) {
1233 if (entry->child)
1234 nr_dirs++;
1235 else
1236 nr_files++;
1237 }
1238
1239 files = table;
1240 /* If there are mixed files and directories we need a new table */
1241 if (nr_dirs && nr_files) {
1242 struct ctl_table *new;
1243 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1244 GFP_KERNEL);
1245 if (!files)
1246 goto out;
1247
1248 ctl_table_arg = files;
1249 for (new = files, entry = table; entry->procname; entry++) {
1250 if (entry->child)
1251 continue;
1252 *new = *entry;
1253 new++;
1254 }
1255 }
1256
1257 /* Register everything except a directory full of subdirectories */
1258 if (nr_files || !nr_dirs) {
1259 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001260 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001261 if (!header) {
1262 kfree(ctl_table_arg);
1263 goto out;
1264 }
1265
1266 /* Remember if we need to free the file table */
1267 header->ctl_table_arg = ctl_table_arg;
1268 **subheader = header;
1269 (*subheader)++;
1270 }
1271
1272 /* Recurse into the subdirectories. */
1273 for (entry = table; entry->procname; entry++) {
1274 char *child_pos;
1275
1276 if (!entry->child)
1277 continue;
1278
1279 err = -ENAMETOOLONG;
1280 child_pos = append_path(path, pos, entry->procname);
1281 if (!child_pos)
1282 goto out;
1283
1284 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001285 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001286 pos[0] = '\0';
1287 if (err)
1288 goto out;
1289 }
1290 err = 0;
1291out:
1292 /* On failure our caller will unregister all registered subheaders */
1293 return err;
1294}
1295
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001296/**
1297 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001298 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001299 * @path: The path to the directory the sysctl table is in.
1300 * @table: the top-level table structure
1301 *
1302 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1303 * array. A completely 0 filled entry terminates the table.
1304 *
1305 * See __register_sysctl_table for more details.
1306 */
1307struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001308 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001309 const struct ctl_path *path, struct ctl_table *table)
1310{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001311 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001312 int nr_subheaders = count_subheaders(table);
1313 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001314 const struct ctl_path *component;
1315 char *new_path, *pos;
1316
1317 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1318 if (!new_path)
1319 return NULL;
1320
1321 pos[0] = '\0';
1322 for (component = path; component->procname; component++) {
1323 pos = append_path(new_path, pos, component->procname);
1324 if (!pos)
1325 goto out;
1326 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001327 while (table->procname && table->child && !table[1].procname) {
1328 pos = append_path(new_path, pos, table->procname);
1329 if (!pos)
1330 goto out;
1331 table = table->child;
1332 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001333 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001334 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001335 if (header)
1336 header->ctl_table_arg = ctl_table_arg;
1337 } else {
1338 header = kzalloc(sizeof(*header) +
1339 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1340 if (!header)
1341 goto out;
1342
1343 subheaders = (struct ctl_table_header **) (header + 1);
1344 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001345 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001346
1347 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001348 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001349 goto err_register_leaves;
1350 }
1351
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001352out:
1353 kfree(new_path);
1354 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001355
1356err_register_leaves:
1357 while (subheader > subheaders) {
1358 struct ctl_table_header *subh = *(--subheader);
1359 struct ctl_table *table = subh->ctl_table_arg;
1360 unregister_sysctl_table(subh);
1361 kfree(table);
1362 }
1363 kfree(header);
1364 header = NULL;
1365 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001366}
1367
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001368/**
1369 * register_sysctl_table_path - register a sysctl table hierarchy
1370 * @path: The path to the directory the sysctl table is in.
1371 * @table: the top-level table structure
1372 *
1373 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1374 * array. A completely 0 filled entry terminates the table.
1375 *
1376 * See __register_sysctl_paths for more details.
1377 */
1378struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1379 struct ctl_table *table)
1380{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001381 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001382 path, table);
1383}
1384EXPORT_SYMBOL(register_sysctl_paths);
1385
1386/**
1387 * register_sysctl_table - register a sysctl table hierarchy
1388 * @table: the top-level table structure
1389 *
1390 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1391 * array. A completely 0 filled entry terminates the table.
1392 *
1393 * See register_sysctl_paths for more details.
1394 */
1395struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1396{
1397 static const struct ctl_path null_path[] = { {} };
1398
1399 return register_sysctl_paths(null_path, table);
1400}
1401EXPORT_SYMBOL(register_sysctl_table);
1402
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001403static void put_links(struct ctl_table_header *header)
1404{
1405 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1406 struct ctl_table_root *root = header->root;
1407 struct ctl_dir *parent = header->parent;
1408 struct ctl_dir *core_parent;
1409 struct ctl_table *entry;
1410
1411 if (header->set == root_set)
1412 return;
1413
1414 core_parent = xlate_dir(root_set, parent);
1415 if (IS_ERR(core_parent))
1416 return;
1417
1418 for (entry = header->ctl_table; entry->procname; entry++) {
1419 struct ctl_table_header *link_head;
1420 struct ctl_table *link;
1421 const char *name = entry->procname;
1422
1423 link = find_entry(&link_head, core_parent, name, strlen(name));
1424 if (link &&
1425 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1426 (S_ISLNK(link->mode) && (link->data == root)))) {
1427 drop_sysctl_table(link_head);
1428 }
1429 else {
1430 printk(KERN_ERR "sysctl link missing during unregister: ");
1431 sysctl_print_dir(parent);
1432 printk(KERN_CONT "/%s\n", name);
1433 }
1434 }
1435}
1436
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001437static void drop_sysctl_table(struct ctl_table_header *header)
1438{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001439 struct ctl_dir *parent = header->parent;
1440
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001441 if (--header->nreg)
1442 return;
1443
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001444 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001445 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001446 if (!--header->count)
1447 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001448
1449 if (parent)
1450 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001451}
1452
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001453/**
1454 * unregister_sysctl_table - unregister a sysctl table hierarchy
1455 * @header: the header returned from register_sysctl_table
1456 *
1457 * Unregisters the sysctl table and all children. proc entries may not
1458 * actually be removed until they are no longer used by anyone.
1459 */
1460void unregister_sysctl_table(struct ctl_table_header * header)
1461{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001462 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001463 might_sleep();
1464
1465 if (header == NULL)
1466 return;
1467
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001468 nr_subheaders = count_subheaders(header->ctl_table_arg);
1469 if (unlikely(nr_subheaders > 1)) {
1470 struct ctl_table_header **subheaders;
1471 int i;
1472
1473 subheaders = (struct ctl_table_header **)(header + 1);
1474 for (i = nr_subheaders -1; i >= 0; i--) {
1475 struct ctl_table_header *subh = subheaders[i];
1476 struct ctl_table *table = subh->ctl_table_arg;
1477 unregister_sysctl_table(subh);
1478 kfree(table);
1479 }
1480 kfree(header);
1481 return;
1482 }
1483
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001484 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001485 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001486 spin_unlock(&sysctl_lock);
1487}
1488EXPORT_SYMBOL(unregister_sysctl_table);
1489
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001490void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001491 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001492 int (*is_seen)(struct ctl_table_set *))
1493{
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001494 memset(set, sizeof(*set), 0);
1495 INIT_LIST_HEAD(&set->list);
1496 set->is_seen = is_seen;
1497 init_header(&set->dir.header, root, set, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001498}
1499
Eric W. Biederman97324cd2012-01-09 22:19:13 -08001500void retire_sysctl_set(struct ctl_table_set *set)
1501{
1502 WARN_ON(!list_empty(&set->list));
1503}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001504
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001505int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001506{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001507 struct proc_dir_entry *proc_sys_root;
1508
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001509 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro90434762008-07-15 08:54:06 -04001510 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1511 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001512 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001513
1514 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001515}