blob: 8f91ec66baa3261299430c47fce487bf5164246c [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>
Ingo Molnar5b825c32017-02-02 17:54:15 +010011#include <linux/cred.h>
Nick Piggin34286d62011-01-07 17:49:57 +110012#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000013#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080014#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080015#include "internal.h"
16
Al Virod72f71e2009-02-20 05:58:47 +000017static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080018static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080019static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040020static const struct file_operations proc_sys_dir_file_operations;
21static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080022
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050023/* Support for permanently empty directories */
24
25struct ctl_table sysctl_mount_point[] = {
26 { }
27};
28
29static bool is_empty_dir(struct ctl_table_header *head)
30{
31 return head->ctl_table[0].child == sysctl_mount_point;
32}
33
34static void set_empty_dir(struct ctl_dir *dir)
35{
36 dir->header.ctl_table[0].child = sysctl_mount_point;
37}
38
39static void clear_empty_dir(struct ctl_dir *dir)
40
41{
42 dir->header.ctl_table[0].child = NULL;
43}
44
Lucas De Marchif1ecf062011-11-02 13:39:22 -070045void proc_sys_poll_notify(struct ctl_table_poll *poll)
46{
47 if (!poll)
48 return;
49
50 atomic_inc(&poll->event);
51 wake_up_interruptible(&poll->wait);
52}
53
Eric W. Biedermana1945582012-01-21 17:51:48 -080054static struct ctl_table root_table[] = {
55 {
56 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080057 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080058 },
59 { }
60};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080061static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080062 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080063 {{.count = 1,
64 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080065 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080066 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080067 .root = &sysctl_table_root,
68 .set = &sysctl_table_root.default_set,
69 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080070};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080071
72static DEFINE_SPINLOCK(sysctl_lock);
73
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080074static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080075static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050076 struct ctl_table **pentry);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080077static int insert_links(struct ctl_table_header *head);
78static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080079
Eric W. Biederman69801282012-01-21 20:09:45 -080080static void sysctl_print_dir(struct ctl_dir *dir)
81{
82 if (dir->header.parent)
83 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080084 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080085}
86
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080087static int namecmp(const char *name1, int len1, const char *name2, int len2)
88{
89 int minlen;
90 int cmp;
91
92 minlen = len1;
93 if (minlen > len2)
94 minlen = len2;
95
96 cmp = memcmp(name1, name2, minlen);
97 if (cmp == 0)
98 cmp = len1 - len2;
99 return cmp;
100}
101
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800102/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800103static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800104 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800105{
106 struct ctl_table_header *head;
107 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800108 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800109
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800110 while (node)
111 {
112 struct ctl_node *ctl_node;
113 const char *procname;
114 int cmp;
115
116 ctl_node = rb_entry(node, struct ctl_node, node);
117 head = ctl_node->header;
118 entry = &head->ctl_table[ctl_node - head->node];
119 procname = entry->procname;
120
121 cmp = namecmp(name, namelen, procname, strlen(procname));
122 if (cmp < 0)
123 node = node->rb_left;
124 else if (cmp > 0)
125 node = node->rb_right;
126 else {
127 *phead = head;
128 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800129 }
130 }
131 return NULL;
132}
133
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800134static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
135{
136 struct rb_node *node = &head->node[entry - head->ctl_table].node;
137 struct rb_node **p = &head->parent->root.rb_node;
138 struct rb_node *parent = NULL;
139 const char *name = entry->procname;
140 int namelen = strlen(name);
141
142 while (*p) {
143 struct ctl_table_header *parent_head;
144 struct ctl_table *parent_entry;
145 struct ctl_node *parent_node;
146 const char *parent_name;
147 int cmp;
148
149 parent = *p;
150 parent_node = rb_entry(parent, struct ctl_node, node);
151 parent_head = parent_node->header;
152 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
153 parent_name = parent_entry->procname;
154
155 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
156 if (cmp < 0)
157 p = &(*p)->rb_left;
158 else if (cmp > 0)
159 p = &(*p)->rb_right;
160 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800161 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800162 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800163 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800164 return -EEXIST;
165 }
166 }
167
168 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700169 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800170 return 0;
171}
172
173static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
174{
175 struct rb_node *node = &head->node[entry - head->ctl_table].node;
176
177 rb_erase(node, &head->parent->root);
178}
179
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800180static void init_header(struct ctl_table_header *head,
181 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800182 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800183{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800184 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800185 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800186 head->used = 0;
187 head->count = 1;
188 head->nreg = 1;
189 head->unregistering = NULL;
190 head->root = root;
191 head->set = set;
192 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800193 head->node = node;
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300194 INIT_LIST_HEAD(&head->inodes);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800195 if (node) {
196 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700197 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800198 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800199 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800200}
201
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800202static void erase_header(struct ctl_table_header *head)
203{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800204 struct ctl_table *entry;
205 for (entry = head->ctl_table; entry->procname; entry++)
206 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800207}
208
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800209static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800210{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800211 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800212 int err;
213
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500214 /* Is this a permanently empty directory? */
215 if (is_empty_dir(&dir->header))
216 return -EROFS;
217
218 /* Am I creating a permanently empty directory? */
219 if (header->ctl_table == sysctl_mount_point) {
220 if (!RB_EMPTY_ROOT(&dir->root))
221 return -EINVAL;
222 set_empty_dir(dir);
223 }
224
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800225 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800226 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800227 err = insert_links(header);
228 if (err)
229 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800230 for (entry = header->ctl_table; entry->procname; entry++) {
231 err = insert_entry(header, entry);
232 if (err)
233 goto fail;
234 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800235 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800236fail:
237 erase_header(header);
238 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800239fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500240 if (header->ctl_table == sysctl_mount_point)
241 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800242 header->parent = NULL;
243 drop_sysctl_table(&dir->header);
244 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800245}
246
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800247/* called under sysctl_lock */
248static int use_table(struct ctl_table_header *p)
249{
250 if (unlikely(p->unregistering))
251 return 0;
252 p->used++;
253 return 1;
254}
255
256/* called under sysctl_lock */
257static void unuse_table(struct ctl_table_header *p)
258{
259 if (!--p->used)
260 if (unlikely(p->unregistering))
261 complete(p->unregistering);
262}
263
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300264/* called under sysctl_lock */
265static void proc_sys_prune_dcache(struct ctl_table_header *head)
266{
267 struct inode *inode, *prev = NULL;
268 struct proc_inode *ei;
269
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300270 rcu_read_lock();
271 list_for_each_entry_rcu(ei, &head->inodes, sysctl_inodes) {
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300272 inode = igrab(&ei->vfs_inode);
273 if (inode) {
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300274 rcu_read_unlock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300275 iput(prev);
276 prev = inode;
277 d_prune_aliases(inode);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300278 rcu_read_lock();
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300279 }
280 }
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300281 rcu_read_unlock();
282 iput(prev);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300283}
284
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800285/* called under sysctl_lock, will reacquire if has to wait */
286static void start_unregistering(struct ctl_table_header *p)
287{
288 /*
289 * if p->used is 0, nobody will ever touch that entry again;
290 * we'll eliminate all paths to it before dropping sysctl_lock
291 */
292 if (unlikely(p->used)) {
293 struct completion wait;
294 init_completion(&wait);
295 p->unregistering = &wait;
296 spin_unlock(&sysctl_lock);
297 wait_for_completion(&wait);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800298 } else {
299 /* anything non-NULL; we'll never dereference it */
300 p->unregistering = ERR_PTR(-EINVAL);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300301 spin_unlock(&sysctl_lock);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800302 }
303 /*
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300304 * Prune dentries for unregistered sysctls: namespaced sysctls
305 * can have duplicate names and contaminate dcache very badly.
306 */
307 proc_sys_prune_dcache(p);
308 /*
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800309 * do not remove from the list until nobody holds it; walking the
310 * list in do_sysctl() relies on that.
311 */
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300312 spin_lock(&sysctl_lock);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800313 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800314}
315
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800316static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
317{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700318 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800319 spin_lock(&sysctl_lock);
320 if (!use_table(head))
321 head = ERR_PTR(-ENOENT);
322 spin_unlock(&sysctl_lock);
323 return head;
324}
325
326static void sysctl_head_finish(struct ctl_table_header *head)
327{
328 if (!head)
329 return;
330 spin_lock(&sysctl_lock);
331 unuse_table(head);
332 spin_unlock(&sysctl_lock);
333}
334
335static struct ctl_table_set *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500336lookup_header_set(struct ctl_table_root *root)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800337{
338 struct ctl_table_set *set = &root->default_set;
339 if (root->lookup)
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500340 set = root->lookup(root);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800341 return set;
342}
343
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800344static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800345 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800346 const char *name, int namelen)
347{
348 struct ctl_table_header *head;
349 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800350
351 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800352 entry = find_entry(&head, dir, name, namelen);
353 if (entry && use_table(head))
354 *phead = head;
355 else
356 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800357 spin_unlock(&sysctl_lock);
358 return entry;
359}
360
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800361static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800362{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800363 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800364
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800365 for (;node; node = rb_next(node)) {
366 ctl_node = rb_entry(node, struct ctl_node, node);
367 if (use_table(ctl_node->header))
368 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800369 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800370 return NULL;
371}
372
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800373static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800374 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800375{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800376 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800377 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800378 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800379
380 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800381 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800382 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800383 if (ctl_node) {
384 head = ctl_node->header;
385 entry = &head->ctl_table[ctl_node - head->node];
386 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800387 *phead = head;
388 *pentry = entry;
389}
390
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800391static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800392{
393 struct ctl_table_header *head = *phead;
394 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800395 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800396
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800397 spin_lock(&sysctl_lock);
398 unuse_table(head);
399
400 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
401 spin_unlock(&sysctl_lock);
402 head = NULL;
403 if (ctl_node) {
404 head = ctl_node->header;
405 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800406 }
407 *phead = head;
408 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800409}
410
411void register_sysctl_root(struct ctl_table_root *root)
412{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800413}
414
415/*
416 * sysctl_perm does NOT grant the superuser all rights automatically, because
417 * some sysctl variables are readonly even to root.
418 */
419
420static int test_perm(int mode, int op)
421{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800422 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800423 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800424 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800425 mode >>= 3;
426 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
427 return 0;
428 return -EACCES;
429}
430
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000431static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800432{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000433 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800434 int mode;
435
436 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000437 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800438 else
439 mode = table->mode;
440
441 return test_perm(mode, op);
442}
443
Al Viro9043476f2008-07-15 08:54:06 -0400444static struct inode *proc_sys_make_inode(struct super_block *sb,
445 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800446{
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700447 struct ctl_table_root *root = head->root;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800448 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400449 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800450
Al Viro9043476f2008-07-15 08:54:06 -0400451 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800452 if (!inode)
453 goto out;
454
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400455 inode->i_ino = get_next_ino();
456
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800457 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400458
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300459 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300460 if (unlikely(head->unregistering)) {
461 spin_unlock(&sysctl_lock);
462 iput(inode);
463 inode = NULL;
464 goto out;
465 }
466 ei->sysctl = head;
467 ei->sysctl_entry = table;
468 list_add_rcu(&ei->sysctl_inodes, &head->inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300469 head->count++;
470 spin_unlock(&sysctl_lock);
471
Deepa Dinamani078cd822016-09-14 07:48:04 -0700472 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400473 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800474 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400475 inode->i_mode |= S_IFREG;
476 inode->i_op = &proc_sys_inode_operations;
477 inode->i_fop = &proc_sys_file_operations;
478 } else {
479 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400480 inode->i_op = &proc_sys_dir_operations;
481 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500482 if (is_empty_dir(head))
483 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400484 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700485
486 if (root->set_ownership)
487 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
488
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800489out:
490 return inode;
491}
492
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300493void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
494{
495 spin_lock(&sysctl_lock);
Eric W. Biedermanace0c792017-02-20 18:17:03 +1300496 list_del_rcu(&PROC_I(inode)->sysctl_inodes);
Konstantin Khlebnikovd6cffbb2017-02-10 10:35:02 +0300497 if (!--head->count)
498 kfree_rcu(head, rcu);
499 spin_unlock(&sysctl_lock);
500}
501
Adrian Bunk81324362008-10-03 00:33:54 +0400502static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800503{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800504 struct ctl_table_header *head = PROC_I(inode)->sysctl;
505 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800506 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800507 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800508}
509
510static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400511 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800512{
Al Viro9043476f2008-07-15 08:54:06 -0400513 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400514 struct ctl_table_header *h = NULL;
Al Virodc12e902016-07-20 22:41:44 -0400515 const struct qstr *name = &dentry->d_name;
Al Viro9043476f2008-07-15 08:54:06 -0400516 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800517 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400518 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800519 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800520 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800521
Al Viro9043476f2008-07-15 08:54:06 -0400522 if (IS_ERR(head))
523 return ERR_CAST(head);
524
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800525 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400526
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800527 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400528 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800529 goto out;
530
Eric W. Biederman4e757322012-01-30 21:24:59 -0800531 if (S_ISLNK(p->mode)) {
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500532 ret = sysctl_follow_link(&h, &p);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800533 err = ERR_PTR(ret);
534 if (ret)
535 goto out;
536 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800537
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800538 err = ERR_PTR(-ENOMEM);
Al Viro9043476f2008-07-15 08:54:06 -0400539 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800540 if (!inode)
541 goto out;
542
543 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100544 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800545 d_add(dentry, inode);
546
547out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700548 if (h)
549 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800550 sysctl_head_finish(head);
551 return err;
552}
553
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700554static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
555 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800556{
Al Viro496ad9a2013-01-23 17:07:38 -0500557 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400558 struct ctl_table_header *head = grab_header(inode);
559 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100560 ssize_t error;
561 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800562
Al Viro9043476f2008-07-15 08:54:06 -0400563 if (IS_ERR(head))
564 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800565
566 /*
567 * At this point we know that the sysctl was not unregistered
568 * and won't be until we finish.
569 */
570 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000571 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800572 goto out;
573
Al Viro9043476f2008-07-15 08:54:06 -0400574 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
575 error = -EINVAL;
576 if (!table->proc_handler)
577 goto out;
578
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800579 /* careful: calling conventions are nasty here */
580 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700581 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800582 if (!error)
583 error = res;
584out:
585 sysctl_head_finish(head);
586
587 return error;
588}
589
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700590static ssize_t proc_sys_read(struct file *filp, char __user *buf,
591 size_t count, loff_t *ppos)
592{
593 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
594}
595
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800596static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
597 size_t count, loff_t *ppos)
598{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700599 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800600}
601
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700602static int proc_sys_open(struct inode *inode, struct file *filp)
603{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700604 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700605 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
606
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700607 /* sysctl was unregistered */
608 if (IS_ERR(head))
609 return PTR_ERR(head);
610
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700611 if (table->poll)
612 filp->private_data = proc_sys_poll_event(table->poll);
613
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700614 sysctl_head_finish(head);
615
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700616 return 0;
617}
618
619static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
620{
Al Viro496ad9a2013-01-23 17:07:38 -0500621 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700622 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700623 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700624 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700625 unsigned long event;
626
627 /* sysctl was unregistered */
628 if (IS_ERR(head))
629 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700630
631 if (!table->proc_handler)
632 goto out;
633
634 if (!table->poll)
635 goto out;
636
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700637 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700638 poll_wait(filp, &table->poll->wait, wait);
639
640 if (event != atomic_read(&table->poll->event)) {
641 filp->private_data = proc_sys_poll_event(table->poll);
642 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
643 }
644
645out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700646 sysctl_head_finish(head);
647
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700648 return ret;
649}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800650
Al Virof0c3b502013-05-16 12:07:31 -0400651static bool proc_sys_fill_cache(struct file *file,
652 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400653 struct ctl_table_header *head,
654 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800655{
Al Virof0c3b502013-05-16 12:07:31 -0400656 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800657 struct inode *inode;
658 struct qstr qname;
659 ino_t ino = 0;
660 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800661
662 qname.name = table->procname;
663 qname.len = strlen(table->procname);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700664 qname.hash = full_name_hash(dir, qname.name, qname.len);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800665
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800666 child = d_lookup(dir, &qname);
667 if (!child) {
Al Viro76aab3a2016-04-20 16:36:09 -0400668 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
669 child = d_alloc_parallel(dir, &qname, &wq);
670 if (IS_ERR(child))
671 return false;
672 if (d_in_lookup(child)) {
Al Viro9043476f2008-07-15 08:54:06 -0400673 inode = proc_sys_make_inode(dir->d_sb, head, table);
674 if (!inode) {
Al Viro76aab3a2016-04-20 16:36:09 -0400675 d_lookup_done(child);
Al Viro9043476f2008-07-15 08:54:06 -0400676 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400677 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800678 }
Al Viro76aab3a2016-04-20 16:36:09 -0400679 d_set_d_op(child, &proc_sys_dentry_operations);
680 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800681 }
682 }
David Howells2b0143b2015-03-17 22:25:59 +0000683 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400684 ino = inode->i_ino;
685 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800686 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400687 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400688}
689
Al Virof0c3b502013-05-16 12:07:31 -0400690static bool proc_sys_link_fill_cache(struct file *file,
691 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800692 struct ctl_table_header *head,
693 struct ctl_table *table)
694{
Al Virof0c3b502013-05-16 12:07:31 -0400695 bool ret = true;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800696 head = sysctl_head_grab(head);
697
Eric W. Biederman4e757322012-01-30 21:24:59 -0800698 if (S_ISLNK(table->mode)) {
699 /* It is not an error if we can not follow the link ignore it */
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500700 int err = sysctl_follow_link(&head, &table);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800701 if (err)
702 goto out;
703 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800704
Al Virof0c3b502013-05-16 12:07:31 -0400705 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800706out:
707 sysctl_head_finish(head);
708 return ret;
709}
710
Joe Perchese5eea092014-08-08 14:22:16 -0700711static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400712 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400713 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400714{
Al Virof0c3b502013-05-16 12:07:31 -0400715 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400716
Al Virof0c3b502013-05-16 12:07:31 -0400717 if ((*pos)++ < ctx->pos)
718 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400719
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800720 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400721 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800722 else
Al Virof0c3b502013-05-16 12:07:31 -0400723 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400724
Al Virof0c3b502013-05-16 12:07:31 -0400725 if (res)
726 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400727
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800728 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800729}
730
Al Virof0c3b502013-05-16 12:07:31 -0400731static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800732{
Al Virof0c3b502013-05-16 12:07:31 -0400733 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400734 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800735 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800736 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800737 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800738
Al Viro9043476f2008-07-15 08:54:06 -0400739 if (IS_ERR(head))
740 return PTR_ERR(head);
741
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800742 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800743
Al Virof0c3b502013-05-16 12:07:31 -0400744 if (!dir_emit_dots(file, ctx))
Zhou Chengming93362fa2017-01-06 09:32:32 +0800745 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400746
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800747 pos = 2;
748
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800749 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400750 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400751 sysctl_head_finish(h);
752 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800753 }
754 }
Zhou Chengming93362fa2017-01-06 09:32:32 +0800755out:
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800756 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400757 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800758}
759
Al Viro10556cb2011-06-20 19:28:19 -0400760static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800761{
762 /*
763 * sysctl entries that are not writeable,
764 * are _NOT_ writeable, capabilities or not.
765 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200766 struct ctl_table_header *head;
767 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800768 int error;
769
Miklos Szeredif696a362008-07-31 13:41:58 +0200770 /* Executable files are not allowed under /proc/sys/ */
771 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
772 return -EACCES;
773
774 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400775 if (IS_ERR(head))
776 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800777
Miklos Szeredif696a362008-07-31 13:41:58 +0200778 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400779 if (!table) /* global root - r-xr-xr-x */
780 error = mask & MAY_WRITE ? -EACCES : 0;
781 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000782 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800783
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800784 sysctl_head_finish(head);
785 return error;
786}
787
788static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
789{
David Howells2b0143b2015-03-17 22:25:59 +0000790 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800791 int error;
792
793 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
794 return -EPERM;
795
Jan Kara31051c82016-05-26 16:55:18 +0200796 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200797 if (error)
798 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800799
Christoph Hellwig10257742010-06-04 11:30:02 +0200800 setattr_copy(inode, attr);
801 mark_inode_dirty(inode);
802 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800803}
804
David Howellsa528d352017-01-31 16:46:22 +0000805static int proc_sys_getattr(const struct path *path, struct kstat *stat,
806 u32 request_mask, unsigned int query_flags)
Al Viro9043476f2008-07-15 08:54:06 -0400807{
David Howellsa528d352017-01-31 16:46:22 +0000808 struct inode *inode = d_inode(path->dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400809 struct ctl_table_header *head = grab_header(inode);
810 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
811
812 if (IS_ERR(head))
813 return PTR_ERR(head);
814
815 generic_fillattr(inode, stat);
816 if (table)
817 stat->mode = (stat->mode & S_IFMT) | table->mode;
818
819 sysctl_head_finish(head);
820 return 0;
821}
822
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800823static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700824 .open = proc_sys_open,
825 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800826 .read = proc_sys_read,
827 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200828 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400829};
830
831static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700832 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400833 .iterate_shared = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200834 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800835};
836
Jan Engelhardt03a44822008-02-08 04:21:19 -0800837static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400838 .permission = proc_sys_permission,
839 .setattr = proc_sys_setattr,
840 .getattr = proc_sys_getattr,
841};
842
843static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800844 .lookup = proc_sys_lookup,
845 .permission = proc_sys_permission,
846 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400847 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800848};
849
Al Viro0b728e12012-06-10 16:03:43 -0400850static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800851{
Al Viro0b728e12012-06-10 16:03:43 -0400852 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100853 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000854 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400855}
856
Nick Pigginfe15ce42011-01-07 17:49:23 +1100857static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400858{
David Howells2b0143b2015-03-17 22:25:59 +0000859 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400860}
861
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800862static int sysctl_is_seen(struct ctl_table_header *p)
863{
864 struct ctl_table_set *set = p->set;
865 int res;
866 spin_lock(&sysctl_lock);
867 if (p->unregistering)
868 res = 0;
869 else if (!set->is_seen)
870 res = 1;
871 else
872 res = set->is_seen(set);
873 spin_unlock(&sysctl_lock);
874 return res;
875}
876
Al Viro6fa67e72016-07-31 16:37:25 -0400877static int proc_sys_compare(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100878 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400879{
Al Virodfef6dcd32011-03-08 01:25:28 -0500880 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700881 struct inode *inode;
882
Nick Piggin31e6b012011-01-07 17:49:52 +1100883 /* Although proc doesn't have negative dentries, rcu-walk means
884 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500885 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000886 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100887 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500888 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100889 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400890 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100891 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400892 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500893 head = rcu_dereference(PROC_I(inode)->sysctl);
894 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800895}
896
Al Virod72f71e2009-02-20 05:58:47 +0000897static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800898 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400899 .d_delete = proc_sys_delete,
900 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800901};
902
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800903static struct ctl_dir *find_subdir(struct ctl_dir *dir,
904 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800905{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800906 struct ctl_table_header *head;
907 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800908
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800909 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800910 if (!entry)
911 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800912 if (!S_ISDIR(entry->mode))
913 return ERR_PTR(-ENOTDIR);
914 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800915}
916
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800917static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800918 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800919{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800920 struct ctl_table *table;
921 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800922 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800923 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800924
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800925 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
926 sizeof(struct ctl_table)*2 + namelen + 1,
927 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800928 if (!new)
929 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800930
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800931 node = (struct ctl_node *)(new + 1);
932 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800933 new_name = (char *)(table + 2);
934 memcpy(new_name, name, namelen);
935 new_name[namelen] = '\0';
936 table[0].procname = new_name;
937 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800938 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800939
940 return new;
941}
942
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800943/**
944 * get_subdir - find or create a subdir with the specified name.
945 * @dir: Directory to create the subdirectory in
946 * @name: The name of the subdirectory to find or create
947 * @namelen: The length of name
948 *
949 * Takes a directory with an elevated reference count so we know that
950 * if we drop the lock the directory will not go away. Upon success
951 * the reference is moved from @dir to the returned subdirectory.
952 * Upon error an error code is returned and the reference on @dir is
953 * simply dropped.
954 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800955static struct ctl_dir *get_subdir(struct ctl_dir *dir,
956 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800957{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800958 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800959 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800960 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800961
962 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800963 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800964 if (!IS_ERR(subdir))
965 goto found;
966 if (PTR_ERR(subdir) != -ENOENT)
967 goto failed;
968
969 spin_unlock(&sysctl_lock);
970 new = new_dir(set, name, namelen);
971 spin_lock(&sysctl_lock);
972 subdir = ERR_PTR(-ENOMEM);
973 if (!new)
974 goto failed;
975
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800976 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800977 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800978 if (!IS_ERR(subdir))
979 goto found;
980 if (PTR_ERR(subdir) != -ENOENT)
981 goto failed;
982
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800983 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800984 err = insert_header(dir, &new->header);
985 subdir = ERR_PTR(err);
986 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800987 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800988 subdir = new;
989found:
990 subdir->header.nreg++;
991failed:
Viresh Kumara1c83682015-08-12 15:59:44 +0530992 if (IS_ERR(subdir)) {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800993 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -0800994 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800995 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800996 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800997 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800998 drop_sysctl_table(&dir->header);
999 if (new)
1000 drop_sysctl_table(&new->header);
1001 spin_unlock(&sysctl_lock);
1002 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001003}
1004
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001005static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1006{
1007 struct ctl_dir *parent;
1008 const char *procname;
1009 if (!dir->header.parent)
1010 return &set->dir;
1011 parent = xlate_dir(set, dir->header.parent);
1012 if (IS_ERR(parent))
1013 return parent;
1014 procname = dir->header.ctl_table[0].procname;
1015 return find_subdir(parent, procname, strlen(procname));
1016}
1017
1018static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001019 struct ctl_table **pentry)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001020{
1021 struct ctl_table_header *head;
1022 struct ctl_table_root *root;
1023 struct ctl_table_set *set;
1024 struct ctl_table *entry;
1025 struct ctl_dir *dir;
1026 int ret;
1027
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001028 ret = 0;
1029 spin_lock(&sysctl_lock);
1030 root = (*pentry)->data;
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001031 set = lookup_header_set(root);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001032 dir = xlate_dir(set, (*phead)->parent);
1033 if (IS_ERR(dir))
1034 ret = PTR_ERR(dir);
1035 else {
1036 const char *procname = (*pentry)->procname;
1037 head = NULL;
1038 entry = find_entry(&head, dir, procname, strlen(procname));
1039 ret = -ENOENT;
1040 if (entry && use_table(head)) {
1041 unuse_table(*phead);
1042 *phead = head;
1043 *pentry = entry;
1044 ret = 0;
1045 }
1046 }
1047
1048 spin_unlock(&sysctl_lock);
1049 return ret;
1050}
1051
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001052static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1053{
1054 struct va_format vaf;
1055 va_list args;
1056
1057 va_start(args, fmt);
1058 vaf.fmt = fmt;
1059 vaf.va = &args;
1060
Andrew Morton87ebdc02013-02-27 17:03:16 -08001061 pr_err("sysctl table check failed: %s/%s %pV\n",
1062 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001063
1064 va_end(args);
1065 return -EINVAL;
1066}
1067
1068static int sysctl_check_table(const char *path, struct ctl_table *table)
1069{
1070 int err = 0;
1071 for (; table->procname; table++) {
1072 if (table->child)
1073 err = sysctl_err(path, table, "Not a file");
1074
1075 if ((table->proc_handler == proc_dostring) ||
1076 (table->proc_handler == proc_dointvec) ||
1077 (table->proc_handler == proc_dointvec_minmax) ||
1078 (table->proc_handler == proc_dointvec_jiffies) ||
1079 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1080 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1081 (table->proc_handler == proc_doulongvec_minmax) ||
1082 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1083 if (!table->data)
1084 err = sysctl_err(path, table, "No data");
1085 if (!table->maxlen)
1086 err = sysctl_err(path, table, "No maxlen");
1087 }
1088 if (!table->proc_handler)
1089 err = sysctl_err(path, table, "No proc_handler");
1090
1091 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1092 err = sysctl_err(path, table, "bogus .mode 0%o",
1093 table->mode);
1094 }
1095 return err;
1096}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001097
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001098static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1099 struct ctl_table_root *link_root)
1100{
1101 struct ctl_table *link_table, *entry, *link;
1102 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001103 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001104 char *link_name;
1105 int nr_entries, name_bytes;
1106
1107 name_bytes = 0;
1108 nr_entries = 0;
1109 for (entry = table; entry->procname; entry++) {
1110 nr_entries++;
1111 name_bytes += strlen(entry->procname) + 1;
1112 }
1113
1114 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001115 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001116 sizeof(struct ctl_table)*(nr_entries + 1) +
1117 name_bytes,
1118 GFP_KERNEL);
1119
1120 if (!links)
1121 return NULL;
1122
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001123 node = (struct ctl_node *)(links + 1);
1124 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001125 link_name = (char *)&link_table[nr_entries + 1];
1126
1127 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1128 int len = strlen(entry->procname) + 1;
1129 memcpy(link_name, entry->procname, len);
1130 link->procname = link_name;
1131 link->mode = S_IFLNK|S_IRWXUGO;
1132 link->data = link_root;
1133 link_name += len;
1134 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001135 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001136 links->nreg = nr_entries;
1137
1138 return links;
1139}
1140
1141static bool get_links(struct ctl_dir *dir,
1142 struct ctl_table *table, struct ctl_table_root *link_root)
1143{
1144 struct ctl_table_header *head;
1145 struct ctl_table *entry, *link;
1146
1147 /* Are there links available for every entry in table? */
1148 for (entry = table; entry->procname; entry++) {
1149 const char *procname = entry->procname;
1150 link = find_entry(&head, dir, procname, strlen(procname));
1151 if (!link)
1152 return false;
1153 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1154 continue;
1155 if (S_ISLNK(link->mode) && (link->data == link_root))
1156 continue;
1157 return false;
1158 }
1159
1160 /* The checks passed. Increase the registration count on the links */
1161 for (entry = table; entry->procname; entry++) {
1162 const char *procname = entry->procname;
1163 link = find_entry(&head, dir, procname, strlen(procname));
1164 head->nreg++;
1165 }
1166 return true;
1167}
1168
1169static int insert_links(struct ctl_table_header *head)
1170{
1171 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1172 struct ctl_dir *core_parent = NULL;
1173 struct ctl_table_header *links;
1174 int err;
1175
1176 if (head->set == root_set)
1177 return 0;
1178
1179 core_parent = xlate_dir(root_set, head->parent);
1180 if (IS_ERR(core_parent))
1181 return 0;
1182
1183 if (get_links(core_parent, head->ctl_table, head->root))
1184 return 0;
1185
1186 core_parent->header.nreg++;
1187 spin_unlock(&sysctl_lock);
1188
1189 links = new_links(core_parent, head->ctl_table, head->root);
1190
1191 spin_lock(&sysctl_lock);
1192 err = -ENOMEM;
1193 if (!links)
1194 goto out;
1195
1196 err = 0;
1197 if (get_links(core_parent, head->ctl_table, head->root)) {
1198 kfree(links);
1199 goto out;
1200 }
1201
1202 err = insert_header(core_parent, links);
1203 if (err)
1204 kfree(links);
1205out:
1206 drop_sysctl_table(&core_parent->header);
1207 return err;
1208}
1209
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001210/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001211 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001212 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001213 * @path: The path to the directory the sysctl table is in.
1214 * @table: the top-level table structure
1215 *
1216 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1217 * array. A completely 0 filled entry terminates the table.
1218 *
1219 * The members of the &struct ctl_table structure are used as follows:
1220 *
1221 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1222 * enter a sysctl file
1223 *
1224 * data - a pointer to data for use by proc_handler
1225 *
1226 * maxlen - the maximum size in bytes of the data
1227 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001228 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001229 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001230 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001231 *
1232 * proc_handler - the text handler routine (described below)
1233 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001234 * extra1, extra2 - extra pointers usable by the proc handler routines
1235 *
1236 * Leaf nodes in the sysctl tree will be represented by a single file
1237 * under /proc; non-leaf nodes will be represented by directories.
1238 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001239 * There must be a proc_handler routine for any terminal nodes.
1240 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001241 *
1242 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1243 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1244 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1245 *
1246 * It is the handler's job to read the input buffer from user memory
1247 * and process it. The handler should return 0 on success.
1248 *
1249 * This routine returns %NULL on a failure to register, and a pointer
1250 * to the table header on success.
1251 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001252struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001253 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001254 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001255{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001256 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001257 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001258 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001259 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001260 struct ctl_table *entry;
1261 struct ctl_node *node;
1262 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001263
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001264 for (entry = table; entry->procname; entry++)
1265 nr_entries++;
1266
1267 header = kzalloc(sizeof(struct ctl_table_header) +
1268 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001269 if (!header)
1270 return NULL;
1271
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001272 node = (struct ctl_node *)(header + 1);
1273 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001274 if (sysctl_check_table(path, table))
1275 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001276
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001277 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001278 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001279 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001280 dir->header.nreg++;
1281 spin_unlock(&sysctl_lock);
1282
1283 /* Find the directory for the ctl_table */
1284 for (name = path; name; name = nextname) {
1285 int namelen;
1286 nextname = strchr(name, '/');
1287 if (nextname) {
1288 namelen = nextname - name;
1289 nextname++;
1290 } else {
1291 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001292 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001293 if (namelen == 0)
1294 continue;
1295
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001296 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001297 if (IS_ERR(dir))
1298 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001299 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001300
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001301 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001302 if (insert_header(dir, header))
1303 goto fail_put_dir_locked;
1304
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001305 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001306 spin_unlock(&sysctl_lock);
1307
1308 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001309
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001310fail_put_dir_locked:
1311 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001312 spin_unlock(&sysctl_lock);
1313fail:
1314 kfree(header);
1315 dump_stack();
1316 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001317}
1318
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001319/**
1320 * register_sysctl - register a sysctl table
1321 * @path: The path to the directory the sysctl table is in.
1322 * @table: the table structure
1323 *
1324 * Register a sysctl table. @table should be a filled in ctl_table
1325 * array. A completely 0 filled entry terminates the table.
1326 *
1327 * See __register_sysctl_table for more details.
1328 */
1329struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1330{
1331 return __register_sysctl_table(&sysctl_table_root.default_set,
1332 path, table);
1333}
1334EXPORT_SYMBOL(register_sysctl);
1335
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001336static char *append_path(const char *path, char *pos, const char *name)
1337{
1338 int namelen;
1339 namelen = strlen(name);
1340 if (((pos - path) + namelen + 2) >= PATH_MAX)
1341 return NULL;
1342 memcpy(pos, name, namelen);
1343 pos[namelen] = '/';
1344 pos[namelen + 1] = '\0';
1345 pos += namelen + 1;
1346 return pos;
1347}
1348
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001349static int count_subheaders(struct ctl_table *table)
1350{
1351 int has_files = 0;
1352 int nr_subheaders = 0;
1353 struct ctl_table *entry;
1354
1355 /* special case: no directory and empty directory */
1356 if (!table || !table->procname)
1357 return 1;
1358
1359 for (entry = table; entry->procname; entry++) {
1360 if (entry->child)
1361 nr_subheaders += count_subheaders(entry->child);
1362 else
1363 has_files = 1;
1364 }
1365 return nr_subheaders + has_files;
1366}
1367
1368static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001369 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001370 struct ctl_table *table)
1371{
1372 struct ctl_table *ctl_table_arg = NULL;
1373 struct ctl_table *entry, *files;
1374 int nr_files = 0;
1375 int nr_dirs = 0;
1376 int err = -ENOMEM;
1377
1378 for (entry = table; entry->procname; entry++) {
1379 if (entry->child)
1380 nr_dirs++;
1381 else
1382 nr_files++;
1383 }
1384
1385 files = table;
1386 /* If there are mixed files and directories we need a new table */
1387 if (nr_dirs && nr_files) {
1388 struct ctl_table *new;
1389 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1390 GFP_KERNEL);
1391 if (!files)
1392 goto out;
1393
1394 ctl_table_arg = files;
1395 for (new = files, entry = table; entry->procname; entry++) {
1396 if (entry->child)
1397 continue;
1398 *new = *entry;
1399 new++;
1400 }
1401 }
1402
1403 /* Register everything except a directory full of subdirectories */
1404 if (nr_files || !nr_dirs) {
1405 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001406 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001407 if (!header) {
1408 kfree(ctl_table_arg);
1409 goto out;
1410 }
1411
1412 /* Remember if we need to free the file table */
1413 header->ctl_table_arg = ctl_table_arg;
1414 **subheader = header;
1415 (*subheader)++;
1416 }
1417
1418 /* Recurse into the subdirectories. */
1419 for (entry = table; entry->procname; entry++) {
1420 char *child_pos;
1421
1422 if (!entry->child)
1423 continue;
1424
1425 err = -ENAMETOOLONG;
1426 child_pos = append_path(path, pos, entry->procname);
1427 if (!child_pos)
1428 goto out;
1429
1430 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001431 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001432 pos[0] = '\0';
1433 if (err)
1434 goto out;
1435 }
1436 err = 0;
1437out:
1438 /* On failure our caller will unregister all registered subheaders */
1439 return err;
1440}
1441
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001442/**
1443 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001444 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001445 * @path: The path to the directory the sysctl table is in.
1446 * @table: the top-level table structure
1447 *
1448 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1449 * array. A completely 0 filled entry terminates the table.
1450 *
1451 * See __register_sysctl_table for more details.
1452 */
1453struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001454 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001455 const struct ctl_path *path, struct ctl_table *table)
1456{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001457 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001458 int nr_subheaders = count_subheaders(table);
1459 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001460 const struct ctl_path *component;
1461 char *new_path, *pos;
1462
1463 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1464 if (!new_path)
1465 return NULL;
1466
1467 pos[0] = '\0';
1468 for (component = path; component->procname; component++) {
1469 pos = append_path(new_path, pos, component->procname);
1470 if (!pos)
1471 goto out;
1472 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001473 while (table->procname && table->child && !table[1].procname) {
1474 pos = append_path(new_path, pos, table->procname);
1475 if (!pos)
1476 goto out;
1477 table = table->child;
1478 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001479 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001480 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001481 if (header)
1482 header->ctl_table_arg = ctl_table_arg;
1483 } else {
1484 header = kzalloc(sizeof(*header) +
1485 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1486 if (!header)
1487 goto out;
1488
1489 subheaders = (struct ctl_table_header **) (header + 1);
1490 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001491 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001492
1493 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001494 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001495 goto err_register_leaves;
1496 }
1497
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001498out:
1499 kfree(new_path);
1500 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001501
1502err_register_leaves:
1503 while (subheader > subheaders) {
1504 struct ctl_table_header *subh = *(--subheader);
1505 struct ctl_table *table = subh->ctl_table_arg;
1506 unregister_sysctl_table(subh);
1507 kfree(table);
1508 }
1509 kfree(header);
1510 header = NULL;
1511 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001512}
1513
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001514/**
1515 * register_sysctl_table_path - register a sysctl table hierarchy
1516 * @path: The path to the directory the sysctl table is in.
1517 * @table: the top-level table structure
1518 *
1519 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1520 * array. A completely 0 filled entry terminates the table.
1521 *
1522 * See __register_sysctl_paths for more details.
1523 */
1524struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1525 struct ctl_table *table)
1526{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001527 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001528 path, table);
1529}
1530EXPORT_SYMBOL(register_sysctl_paths);
1531
1532/**
1533 * register_sysctl_table - register a sysctl table hierarchy
1534 * @table: the top-level table structure
1535 *
1536 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1537 * array. A completely 0 filled entry terminates the table.
1538 *
1539 * See register_sysctl_paths for more details.
1540 */
1541struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1542{
1543 static const struct ctl_path null_path[] = { {} };
1544
1545 return register_sysctl_paths(null_path, table);
1546}
1547EXPORT_SYMBOL(register_sysctl_table);
1548
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001549static void put_links(struct ctl_table_header *header)
1550{
1551 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1552 struct ctl_table_root *root = header->root;
1553 struct ctl_dir *parent = header->parent;
1554 struct ctl_dir *core_parent;
1555 struct ctl_table *entry;
1556
1557 if (header->set == root_set)
1558 return;
1559
1560 core_parent = xlate_dir(root_set, parent);
1561 if (IS_ERR(core_parent))
1562 return;
1563
1564 for (entry = header->ctl_table; entry->procname; entry++) {
1565 struct ctl_table_header *link_head;
1566 struct ctl_table *link;
1567 const char *name = entry->procname;
1568
1569 link = find_entry(&link_head, core_parent, name, strlen(name));
1570 if (link &&
1571 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1572 (S_ISLNK(link->mode) && (link->data == root)))) {
1573 drop_sysctl_table(link_head);
1574 }
1575 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001576 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001577 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001578 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001579 }
1580 }
1581}
1582
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001583static void drop_sysctl_table(struct ctl_table_header *header)
1584{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001585 struct ctl_dir *parent = header->parent;
1586
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001587 if (--header->nreg)
1588 return;
1589
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001590 put_links(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001591 start_unregistering(header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001592 if (!--header->count)
1593 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001594
1595 if (parent)
1596 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001597}
1598
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001599/**
1600 * unregister_sysctl_table - unregister a sysctl table hierarchy
1601 * @header: the header returned from register_sysctl_table
1602 *
1603 * Unregisters the sysctl table and all children. proc entries may not
1604 * actually be removed until they are no longer used by anyone.
1605 */
1606void unregister_sysctl_table(struct ctl_table_header * header)
1607{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001608 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001609 might_sleep();
1610
1611 if (header == NULL)
1612 return;
1613
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001614 nr_subheaders = count_subheaders(header->ctl_table_arg);
1615 if (unlikely(nr_subheaders > 1)) {
1616 struct ctl_table_header **subheaders;
1617 int i;
1618
1619 subheaders = (struct ctl_table_header **)(header + 1);
1620 for (i = nr_subheaders -1; i >= 0; i--) {
1621 struct ctl_table_header *subh = subheaders[i];
1622 struct ctl_table *table = subh->ctl_table_arg;
1623 unregister_sysctl_table(subh);
1624 kfree(table);
1625 }
1626 kfree(header);
1627 return;
1628 }
1629
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001630 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001631 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001632 spin_unlock(&sysctl_lock);
1633}
1634EXPORT_SYMBOL(unregister_sysctl_table);
1635
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001636void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001637 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001638 int (*is_seen)(struct ctl_table_set *))
1639{
Dan Carpenter13474402012-01-30 16:40:29 +03001640 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001641 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001642 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001643}
1644
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001645void retire_sysctl_set(struct ctl_table_set *set)
1646{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001647 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001648}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001649
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001650int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001651{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001652 struct proc_dir_entry *proc_sys_root;
1653
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001654 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001655 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1656 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001657 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001658
1659 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001660}