blob: 5b32c054df7152e829d76a02e7d03a3f7a81253b [file] [log] [blame]
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001/*
2 * /proc/sys support
3 */
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04004#include <linux/init.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08005#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -07006#include <linux/poll.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08007#include <linux/proc_fs.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -08008#include <linux/printk.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -08009#include <linux/security.h>
Al Viro40401532012-02-13 03:58:52 +000010#include <linux/sched.h>
Nick Piggin34286d62011-01-07 17:49:57 +110011#include <linux/namei.h>
Al Viro40401532012-02-13 03:58:52 +000012#include <linux/mm.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080013#include <linux/module.h>
Eric W. Biederman77b14db2007-02-14 00:34:12 -080014#include "internal.h"
15
Al Virod72f71e2009-02-20 05:58:47 +000016static const struct dentry_operations proc_sys_dentry_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080017static const struct file_operations proc_sys_file_operations;
Jan Engelhardt03a44822008-02-08 04:21:19 -080018static const struct inode_operations proc_sys_inode_operations;
Al Viro9043476f2008-07-15 08:54:06 -040019static const struct file_operations proc_sys_dir_file_operations;
20static const struct inode_operations proc_sys_dir_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -080021
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -050022/* Support for permanently empty directories */
23
24struct ctl_table sysctl_mount_point[] = {
25 { }
26};
27
28static bool is_empty_dir(struct ctl_table_header *head)
29{
30 return head->ctl_table[0].child == sysctl_mount_point;
31}
32
33static void set_empty_dir(struct ctl_dir *dir)
34{
35 dir->header.ctl_table[0].child = sysctl_mount_point;
36}
37
38static void clear_empty_dir(struct ctl_dir *dir)
39
40{
41 dir->header.ctl_table[0].child = NULL;
42}
43
Lucas De Marchif1ecf062011-11-02 13:39:22 -070044void proc_sys_poll_notify(struct ctl_table_poll *poll)
45{
46 if (!poll)
47 return;
48
49 atomic_inc(&poll->event);
50 wake_up_interruptible(&poll->wait);
51}
52
Eric W. Biedermana1945582012-01-21 17:51:48 -080053static struct ctl_table root_table[] = {
54 {
55 .procname = "",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080056 .mode = S_IFDIR|S_IRUGO|S_IXUGO,
Eric W. Biedermana1945582012-01-21 17:51:48 -080057 },
58 { }
59};
Eric W. Biederman0e47c992012-01-07 23:24:30 -080060static struct ctl_table_root sysctl_table_root = {
Eric W. Biederman0e47c992012-01-07 23:24:30 -080061 .default_set.dir.header = {
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080062 {{.count = 1,
63 .nreg = 1,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -080064 .ctl_table = root_table }},
Eric W. Biederman0e47c992012-01-07 23:24:30 -080065 .ctl_table_arg = root_table,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080066 .root = &sysctl_table_root,
67 .set = &sysctl_table_root.default_set,
68 },
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080069};
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080070
71static DEFINE_SPINLOCK(sysctl_lock);
72
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080073static void drop_sysctl_table(struct ctl_table_header *header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080074static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -050075 struct ctl_table **pentry);
Eric W. Biederman0e47c992012-01-07 23:24:30 -080076static int insert_links(struct ctl_table_header *head);
77static void put_links(struct ctl_table_header *header);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -080078
Eric W. Biederman69801282012-01-21 20:09:45 -080079static void sysctl_print_dir(struct ctl_dir *dir)
80{
81 if (dir->header.parent)
82 sysctl_print_dir(dir->header.parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -080083 pr_cont("%s/", dir->header.ctl_table[0].procname);
Eric W. Biederman69801282012-01-21 20:09:45 -080084}
85
Eric W. Biederman076c3ee2012-01-09 21:42:02 -080086static int namecmp(const char *name1, int len1, const char *name2, int len2)
87{
88 int minlen;
89 int cmp;
90
91 minlen = len1;
92 if (minlen > len2)
93 minlen = len2;
94
95 cmp = memcmp(name1, name2, minlen);
96 if (cmp == 0)
97 cmp = len1 - len2;
98 return cmp;
99}
100
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800101/* Called under sysctl_lock */
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800102static struct ctl_table *find_entry(struct ctl_table_header **phead,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800103 struct ctl_dir *dir, const char *name, int namelen)
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800104{
105 struct ctl_table_header *head;
106 struct ctl_table *entry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800107 struct rb_node *node = dir->root.rb_node;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800108
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800109 while (node)
110 {
111 struct ctl_node *ctl_node;
112 const char *procname;
113 int cmp;
114
115 ctl_node = rb_entry(node, struct ctl_node, node);
116 head = ctl_node->header;
117 entry = &head->ctl_table[ctl_node - head->node];
118 procname = entry->procname;
119
120 cmp = namecmp(name, namelen, procname, strlen(procname));
121 if (cmp < 0)
122 node = node->rb_left;
123 else if (cmp > 0)
124 node = node->rb_right;
125 else {
126 *phead = head;
127 return entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800128 }
129 }
130 return NULL;
131}
132
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800133static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry)
134{
135 struct rb_node *node = &head->node[entry - head->ctl_table].node;
136 struct rb_node **p = &head->parent->root.rb_node;
137 struct rb_node *parent = NULL;
138 const char *name = entry->procname;
139 int namelen = strlen(name);
140
141 while (*p) {
142 struct ctl_table_header *parent_head;
143 struct ctl_table *parent_entry;
144 struct ctl_node *parent_node;
145 const char *parent_name;
146 int cmp;
147
148 parent = *p;
149 parent_node = rb_entry(parent, struct ctl_node, node);
150 parent_head = parent_node->header;
151 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node];
152 parent_name = parent_entry->procname;
153
154 cmp = namecmp(name, namelen, parent_name, strlen(parent_name));
155 if (cmp < 0)
156 p = &(*p)->rb_left;
157 else if (cmp > 0)
158 p = &(*p)->rb_right;
159 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800160 pr_err("sysctl duplicate entry: ");
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800161 sysctl_print_dir(head->parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -0800162 pr_cont("/%s\n", entry->procname);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(node, parent, p);
Michel Lespinasseea5272f2012-10-08 16:30:35 -0700168 rb_insert_color(node, &head->parent->root);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800169 return 0;
170}
171
172static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry)
173{
174 struct rb_node *node = &head->node[entry - head->ctl_table].node;
175
176 rb_erase(node, &head->parent->root);
177}
178
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800179static void init_header(struct ctl_table_header *head,
180 struct ctl_table_root *root, struct ctl_table_set *set,
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800181 struct ctl_node *node, struct ctl_table *table)
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800182{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800183 head->ctl_table = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800184 head->ctl_table_arg = table;
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800185 head->used = 0;
186 head->count = 1;
187 head->nreg = 1;
188 head->unregistering = NULL;
189 head->root = root;
190 head->set = set;
191 head->parent = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800192 head->node = node;
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500193 INIT_HLIST_HEAD(&head->inodes);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800194 if (node) {
195 struct ctl_table *entry;
Michel Lespinasse4c199a92012-10-08 16:30:32 -0700196 for (entry = table; entry->procname; entry++, node++)
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800197 node->header = head;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800198 }
Eric W. Biedermane0d04522012-01-09 22:36:41 -0800199}
200
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800201static void erase_header(struct ctl_table_header *head)
202{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800203 struct ctl_table *entry;
204 for (entry = head->ctl_table; entry->procname; entry++)
205 erase_entry(head, entry);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800206}
207
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800208static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header)
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800209{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800210 struct ctl_table *entry;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800211 int err;
212
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500213 /* Is this a permanently empty directory? */
214 if (is_empty_dir(&dir->header))
215 return -EROFS;
216
217 /* Am I creating a permanently empty directory? */
218 if (header->ctl_table == sysctl_mount_point) {
219 if (!RB_EMPTY_ROOT(&dir->root))
220 return -EINVAL;
221 set_empty_dir(dir);
222 }
223
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800224 dir->header.nreg++;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800225 header->parent = dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800226 err = insert_links(header);
227 if (err)
228 goto fail_links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800229 for (entry = header->ctl_table; entry->procname; entry++) {
230 err = insert_entry(header, entry);
231 if (err)
232 goto fail;
233 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800234 return 0;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800235fail:
236 erase_header(header);
237 put_links(header);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800238fail_links:
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500239 if (header->ctl_table == sysctl_mount_point)
240 clear_empty_dir(dir);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800241 header->parent = NULL;
242 drop_sysctl_table(&dir->header);
243 return err;
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800244}
245
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800246/* called under sysctl_lock */
247static int use_table(struct ctl_table_header *p)
248{
249 if (unlikely(p->unregistering))
250 return 0;
251 p->used++;
252 return 1;
253}
254
255/* called under sysctl_lock */
256static void unuse_table(struct ctl_table_header *p)
257{
258 if (!--p->used)
259 if (unlikely(p->unregistering))
260 complete(p->unregistering);
261}
262
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300263static void proc_sys_prune_dcache(struct ctl_table_header *head)
264{
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500265 struct inode *inode;
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300266 struct proc_inode *ei;
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500267 struct hlist_node *node;
268 struct super_block *sb;
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300269
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300270 rcu_read_lock();
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500271 for (;;) {
272 node = hlist_first_rcu(&head->inodes);
273 if (!node)
274 break;
275 ei = hlist_entry(node, struct proc_inode, sysctl_inodes);
276 spin_lock(&sysctl_lock);
277 hlist_del_init_rcu(&ei->sysctl_inodes);
278 spin_unlock(&sysctl_lock);
279
280 inode = &ei->vfs_inode;
281 sb = inode->i_sb;
282 if (!atomic_inc_not_zero(&sb->s_active))
283 continue;
284 inode = igrab(inode);
285 rcu_read_unlock();
286 if (unlikely(!inode)) {
287 deactivate_super(sb);
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300288 rcu_read_lock();
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500289 continue;
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300290 }
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500291
292 d_prune_aliases(inode);
293 iput(inode);
294 deactivate_super(sb);
295
296 rcu_read_lock();
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300297 }
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300298 rcu_read_unlock();
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300299}
300
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800301/* called under sysctl_lock, will reacquire if has to wait */
302static void start_unregistering(struct ctl_table_header *p)
303{
304 /*
305 * if p->used is 0, nobody will ever touch that entry again;
306 * we'll eliminate all paths to it before dropping sysctl_lock
307 */
308 if (unlikely(p->used)) {
309 struct completion wait;
310 init_completion(&wait);
311 p->unregistering = &wait;
312 spin_unlock(&sysctl_lock);
313 wait_for_completion(&wait);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800314 } else {
315 /* anything non-NULL; we'll never dereference it */
316 p->unregistering = ERR_PTR(-EINVAL);
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300317 spin_unlock(&sysctl_lock);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800318 }
319 /*
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300320 * Prune dentries for unregistered sysctls: namespaced sysctls
321 * can have duplicate names and contaminate dcache very badly.
322 */
323 proc_sys_prune_dcache(p);
324 /*
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800325 * do not remove from the list until nobody holds it; walking the
326 * list in do_sysctl() relies on that.
327 */
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300328 spin_lock(&sysctl_lock);
Eric W. Biederman8425d6a2012-01-09 17:35:01 -0800329 erase_header(p);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800330}
331
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800332static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
333{
Prasad Joshiab4a1f22012-10-04 17:15:45 -0700334 BUG_ON(!head);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800335 spin_lock(&sysctl_lock);
336 if (!use_table(head))
337 head = ERR_PTR(-ENOENT);
338 spin_unlock(&sysctl_lock);
339 return head;
340}
341
342static void sysctl_head_finish(struct ctl_table_header *head)
343{
344 if (!head)
345 return;
346 spin_lock(&sysctl_lock);
347 unuse_table(head);
348 spin_unlock(&sysctl_lock);
349}
350
351static struct ctl_table_set *
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500352lookup_header_set(struct ctl_table_root *root)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800353{
354 struct ctl_table_set *set = &root->default_set;
355 if (root->lookup)
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500356 set = root->lookup(root);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800357 return set;
358}
359
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800360static struct ctl_table *lookup_entry(struct ctl_table_header **phead,
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800361 struct ctl_dir *dir,
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800362 const char *name, int namelen)
363{
364 struct ctl_table_header *head;
365 struct ctl_table *entry;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800366
367 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800368 entry = find_entry(&head, dir, name, namelen);
369 if (entry && use_table(head))
370 *phead = head;
371 else
372 entry = NULL;
Eric W. Biederman076c3ee2012-01-09 21:42:02 -0800373 spin_unlock(&sysctl_lock);
374 return entry;
375}
376
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800377static struct ctl_node *first_usable_entry(struct rb_node *node)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800378{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800379 struct ctl_node *ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800380
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800381 for (;node; node = rb_next(node)) {
382 ctl_node = rb_entry(node, struct ctl_node, node);
383 if (use_table(ctl_node->header))
384 return ctl_node;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800385 }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800386 return NULL;
387}
388
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800389static void first_entry(struct ctl_dir *dir,
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800390 struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800391{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800392 struct ctl_table_header *head = NULL;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800393 struct ctl_table *entry = NULL;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800394 struct ctl_node *ctl_node;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800395
396 spin_lock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800397 ctl_node = first_usable_entry(rb_first(&dir->root));
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800398 spin_unlock(&sysctl_lock);
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800399 if (ctl_node) {
400 head = ctl_node->header;
401 entry = &head->ctl_table[ctl_node - head->node];
402 }
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800403 *phead = head;
404 *pentry = entry;
405}
406
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800407static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry)
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800408{
409 struct ctl_table_header *head = *phead;
410 struct ctl_table *entry = *pentry;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800411 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800412
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800413 spin_lock(&sysctl_lock);
414 unuse_table(head);
415
416 ctl_node = first_usable_entry(rb_next(&ctl_node->node));
417 spin_unlock(&sysctl_lock);
418 head = NULL;
419 if (ctl_node) {
420 head = ctl_node->header;
421 entry = &head->ctl_table[ctl_node - head->node];
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800422 }
423 *phead = head;
424 *pentry = entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800425}
426
427void register_sysctl_root(struct ctl_table_root *root)
428{
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800429}
430
431/*
432 * sysctl_perm does NOT grant the superuser all rights automatically, because
433 * some sysctl variables are readonly even to root.
434 */
435
436static int test_perm(int mode, int op)
437{
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800438 if (uid_eq(current_euid(), GLOBAL_ROOT_UID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800439 mode >>= 6;
Eric W. Biederman091bd3e2012-02-13 18:02:50 -0800440 else if (in_egroup_p(GLOBAL_ROOT_GID))
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800441 mode >>= 3;
442 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
443 return 0;
444 return -EACCES;
445}
446
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000447static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800448{
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000449 struct ctl_table_root *root = head->root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800450 int mode;
451
452 if (root->permissions)
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000453 mode = root->permissions(head, table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800454 else
455 mode = table->mode;
456
457 return test_perm(mode, op);
458}
459
Al Viro9043476f2008-07-15 08:54:06 -0400460static struct inode *proc_sys_make_inode(struct super_block *sb,
461 struct ctl_table_header *head, struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800462{
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700463 struct ctl_table_root *root = head->root;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800464 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400465 struct proc_inode *ei;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800466
Al Viro9043476f2008-07-15 08:54:06 -0400467 inode = new_inode(sb);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800468 if (!inode)
Ivan Delalande4d5741a2018-12-13 15:20:52 -0800469 return ERR_PTR(-ENOMEM);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800470
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400471 inode->i_ino = get_next_ino();
472
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800473 ei = PROC_I(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400474
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300475 spin_lock(&sysctl_lock);
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300476 if (unlikely(head->unregistering)) {
477 spin_unlock(&sysctl_lock);
478 iput(inode);
Ivan Delalande4d5741a2018-12-13 15:20:52 -0800479 return ERR_PTR(-ENOENT);
Eric W. Biederman631f93a2017-02-20 18:17:03 +1300480 }
481 ei->sysctl = head;
482 ei->sysctl_entry = table;
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500483 hlist_add_head_rcu(&ei->sysctl_inodes, &head->inodes);
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300484 head->count++;
485 spin_unlock(&sysctl_lock);
486
Deepa Dinamani078cd822016-09-14 07:48:04 -0700487 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400488 inode->i_mode = table->mode;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800489 if (!S_ISDIR(table->mode)) {
Al Viro9043476f2008-07-15 08:54:06 -0400490 inode->i_mode |= S_IFREG;
491 inode->i_op = &proc_sys_inode_operations;
492 inode->i_fop = &proc_sys_file_operations;
493 } else {
494 inode->i_mode |= S_IFDIR;
Al Viro9043476f2008-07-15 08:54:06 -0400495 inode->i_op = &proc_sys_dir_operations;
496 inode->i_fop = &proc_sys_dir_file_operations;
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -0500497 if (is_empty_dir(head))
498 make_empty_dir_inode(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400499 }
Dmitry Torokhove79c6a42016-08-10 14:36:02 -0700500
501 if (root->set_ownership)
502 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid);
503
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800504 return inode;
505}
506
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300507void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head)
508{
509 spin_lock(&sysctl_lock);
Eric W. Biedermana3a7b992017-07-06 08:41:06 -0500510 hlist_del_init_rcu(&PROC_I(inode)->sysctl_inodes);
Konstantin Khlebnikovb96e2152017-02-10 10:35:02 +0300511 if (!--head->count)
512 kfree_rcu(head, rcu);
513 spin_unlock(&sysctl_lock);
514}
515
Adrian Bunk81324362008-10-03 00:33:54 +0400516static struct ctl_table_header *grab_header(struct inode *inode)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800517{
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800518 struct ctl_table_header *head = PROC_I(inode)->sysctl;
519 if (!head)
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800520 head = &sysctl_table_root.default_set.dir.header;
Eric W. Biederman3cc3e042012-01-07 06:57:47 -0800521 return sysctl_head_grab(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800522}
523
524static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400525 unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800526{
Al Viro9043476f2008-07-15 08:54:06 -0400527 struct ctl_table_header *head = grab_header(dir);
Al Viro9043476f2008-07-15 08:54:06 -0400528 struct ctl_table_header *h = NULL;
Al Virodc12e902016-07-20 22:41:44 -0400529 const struct qstr *name = &dentry->d_name;
Al Viro9043476f2008-07-15 08:54:06 -0400530 struct ctl_table *p;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800531 struct inode *inode;
Al Viro9043476f2008-07-15 08:54:06 -0400532 struct dentry *err = ERR_PTR(-ENOENT);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800533 struct ctl_dir *ctl_dir;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800534 int ret;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800535
Al Viro9043476f2008-07-15 08:54:06 -0400536 if (IS_ERR(head))
537 return ERR_CAST(head);
538
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800539 ctl_dir = container_of(head, struct ctl_dir, header);
Al Viro9043476f2008-07-15 08:54:06 -0400540
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800541 p = lookup_entry(&h, ctl_dir, name->name, name->len);
Al Viro9043476f2008-07-15 08:54:06 -0400542 if (!p)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800543 goto out;
544
Eric W. Biederman4e757322012-01-30 21:24:59 -0800545 if (S_ISLNK(p->mode)) {
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500546 ret = sysctl_follow_link(&h, &p);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800547 err = ERR_PTR(ret);
548 if (ret)
549 goto out;
550 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800551
Al Viro9043476f2008-07-15 08:54:06 -0400552 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p);
Ivan Delalande4d5741a2018-12-13 15:20:52 -0800553 if (IS_ERR(inode)) {
554 err = ERR_CAST(inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800555 goto out;
Ivan Delalande4d5741a2018-12-13 15:20:52 -0800556 }
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800557
558 err = NULL;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100559 d_set_d_op(dentry, &proc_sys_dentry_operations);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800560 d_add(dentry, inode);
561
562out:
Francesco Ruggeri6bf61042012-09-13 15:03:37 -0700563 if (h)
564 sysctl_head_finish(h);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800565 sysctl_head_finish(head);
566 return err;
567}
568
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700569static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
570 size_t count, loff_t *ppos, int write)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800571{
Al Viro496ad9a2013-01-23 17:07:38 -0500572 struct inode *inode = file_inode(filp);
Al Viro9043476f2008-07-15 08:54:06 -0400573 struct ctl_table_header *head = grab_header(inode);
574 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
David Howells2a2da532007-10-25 15:27:40 +0100575 ssize_t error;
576 size_t res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800577
Al Viro9043476f2008-07-15 08:54:06 -0400578 if (IS_ERR(head))
579 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800580
581 /*
582 * At this point we know that the sysctl was not unregistered
583 * and won't be until we finish.
584 */
585 error = -EPERM;
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000586 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ))
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800587 goto out;
588
Al Viro9043476f2008-07-15 08:54:06 -0400589 /* if that can happen at all, it should be -EINVAL, not -EISDIR */
590 error = -EINVAL;
591 if (!table->proc_handler)
592 goto out;
593
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800594 /* careful: calling conventions are nasty here */
595 res = count;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700596 error = table->proc_handler(table, write, buf, &res, ppos);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800597 if (!error)
598 error = res;
599out:
600 sysctl_head_finish(head);
601
602 return error;
603}
604
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700605static ssize_t proc_sys_read(struct file *filp, char __user *buf,
606 size_t count, loff_t *ppos)
607{
608 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 0);
609}
610
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800611static ssize_t proc_sys_write(struct file *filp, const char __user *buf,
612 size_t count, loff_t *ppos)
613{
Pavel Emelyanov7708bfb2008-04-29 01:02:40 -0700614 return proc_sys_call_handler(filp, (void __user *)buf, count, ppos, 1);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800615}
616
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700617static int proc_sys_open(struct inode *inode, struct file *filp)
618{
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700619 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700620 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
621
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700622 /* sysctl was unregistered */
623 if (IS_ERR(head))
624 return PTR_ERR(head);
625
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700626 if (table->poll)
627 filp->private_data = proc_sys_poll_event(table->poll);
628
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700629 sysctl_head_finish(head);
630
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700631 return 0;
632}
633
634static unsigned int proc_sys_poll(struct file *filp, poll_table *wait)
635{
Al Viro496ad9a2013-01-23 17:07:38 -0500636 struct inode *inode = file_inode(filp);
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700637 struct ctl_table_header *head = grab_header(inode);
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700638 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700639 unsigned int ret = DEFAULT_POLLMASK;
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700640 unsigned long event;
641
642 /* sysctl was unregistered */
643 if (IS_ERR(head))
644 return POLLERR | POLLHUP;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700645
646 if (!table->proc_handler)
647 goto out;
648
649 if (!table->poll)
650 goto out;
651
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700652 event = (unsigned long)filp->private_data;
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700653 poll_wait(filp, &table->poll->wait, wait);
654
655 if (event != atomic_read(&table->poll->event)) {
656 filp->private_data = proc_sys_poll_event(table->poll);
657 ret = POLLIN | POLLRDNORM | POLLERR | POLLPRI;
658 }
659
660out:
Lucas De Marchi4e474a02012-03-22 14:42:22 -0700661 sysctl_head_finish(head);
662
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700663 return ret;
664}
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800665
Al Virof0c3b502013-05-16 12:07:31 -0400666static bool proc_sys_fill_cache(struct file *file,
667 struct dir_context *ctx,
Al Viro9043476f2008-07-15 08:54:06 -0400668 struct ctl_table_header *head,
669 struct ctl_table *table)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800670{
Al Virof0c3b502013-05-16 12:07:31 -0400671 struct dentry *child, *dir = file->f_path.dentry;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800672 struct inode *inode;
673 struct qstr qname;
674 ino_t ino = 0;
675 unsigned type = DT_UNKNOWN;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800676
677 qname.name = table->procname;
678 qname.len = strlen(table->procname);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700679 qname.hash = full_name_hash(dir, qname.name, qname.len);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800680
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800681 child = d_lookup(dir, &qname);
682 if (!child) {
Al Viro76aab3a2016-04-20 16:36:09 -0400683 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
684 child = d_alloc_parallel(dir, &qname, &wq);
685 if (IS_ERR(child))
686 return false;
687 if (d_in_lookup(child)) {
Al Viro9043476f2008-07-15 08:54:06 -0400688 inode = proc_sys_make_inode(dir->d_sb, head, table);
Ivan Delalande4d5741a2018-12-13 15:20:52 -0800689 if (IS_ERR(inode)) {
Al Viro76aab3a2016-04-20 16:36:09 -0400690 d_lookup_done(child);
Al Viro9043476f2008-07-15 08:54:06 -0400691 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400692 return false;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800693 }
Al Viro76aab3a2016-04-20 16:36:09 -0400694 d_set_d_op(child, &proc_sys_dentry_operations);
695 d_add(child, inode);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800696 }
697 }
David Howells2b0143b2015-03-17 22:25:59 +0000698 inode = d_inode(child);
Al Viro9043476f2008-07-15 08:54:06 -0400699 ino = inode->i_ino;
700 type = inode->i_mode >> 12;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800701 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -0400702 return dir_emit(ctx, qname.name, qname.len, ino, type);
Al Viro9043476f2008-07-15 08:54:06 -0400703}
704
Al Virof0c3b502013-05-16 12:07:31 -0400705static bool proc_sys_link_fill_cache(struct file *file,
706 struct dir_context *ctx,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800707 struct ctl_table_header *head,
708 struct ctl_table *table)
709{
Al Virof0c3b502013-05-16 12:07:31 -0400710 bool ret = true;
Danilo Krummrichb6214382018-04-10 16:31:38 -0700711
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800712 head = sysctl_head_grab(head);
Danilo Krummrichb6214382018-04-10 16:31:38 -0700713 if (IS_ERR(head))
714 return false;
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800715
Eric W. Biederman4e757322012-01-30 21:24:59 -0800716 if (S_ISLNK(table->mode)) {
717 /* It is not an error if we can not follow the link ignore it */
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -0500718 int err = sysctl_follow_link(&head, &table);
Eric W. Biederman4e757322012-01-30 21:24:59 -0800719 if (err)
720 goto out;
721 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800722
Al Virof0c3b502013-05-16 12:07:31 -0400723 ret = proc_sys_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800724out:
725 sysctl_head_finish(head);
726 return ret;
727}
728
Joe Perchese5eea092014-08-08 14:22:16 -0700729static int scan(struct ctl_table_header *head, struct ctl_table *table,
Al Viro9043476f2008-07-15 08:54:06 -0400730 unsigned long *pos, struct file *file,
Al Virof0c3b502013-05-16 12:07:31 -0400731 struct dir_context *ctx)
Al Viro9043476f2008-07-15 08:54:06 -0400732{
Al Virof0c3b502013-05-16 12:07:31 -0400733 bool res;
Al Viro9043476f2008-07-15 08:54:06 -0400734
Al Virof0c3b502013-05-16 12:07:31 -0400735 if ((*pos)++ < ctx->pos)
736 return true;
Al Viro9043476f2008-07-15 08:54:06 -0400737
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800738 if (unlikely(S_ISLNK(table->mode)))
Al Virof0c3b502013-05-16 12:07:31 -0400739 res = proc_sys_link_fill_cache(file, ctx, head, table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800740 else
Al Virof0c3b502013-05-16 12:07:31 -0400741 res = proc_sys_fill_cache(file, ctx, head, table);
Al Viro9043476f2008-07-15 08:54:06 -0400742
Al Virof0c3b502013-05-16 12:07:31 -0400743 if (res)
744 ctx->pos = *pos;
Al Viro9043476f2008-07-15 08:54:06 -0400745
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800746 return res;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800747}
748
Al Virof0c3b502013-05-16 12:07:31 -0400749static int proc_sys_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800750{
Al Virof0c3b502013-05-16 12:07:31 -0400751 struct ctl_table_header *head = grab_header(file_inode(file));
Al Viro9043476f2008-07-15 08:54:06 -0400752 struct ctl_table_header *h = NULL;
Eric W. Biederman6a75ce12012-01-18 03:15:51 -0800753 struct ctl_table *entry;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800754 struct ctl_dir *ctl_dir;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800755 unsigned long pos;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800756
Al Viro9043476f2008-07-15 08:54:06 -0400757 if (IS_ERR(head))
758 return PTR_ERR(head);
759
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800760 ctl_dir = container_of(head, struct ctl_dir, header);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800761
Al Virof0c3b502013-05-16 12:07:31 -0400762 if (!dir_emit_dots(file, ctx))
Zhou Chengming00cf64f2017-01-06 09:32:32 +0800763 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400764
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800765 pos = 2;
766
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800767 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) {
Al Virof0c3b502013-05-16 12:07:31 -0400768 if (!scan(h, entry, &pos, file, ctx)) {
Al Viro9043476f2008-07-15 08:54:06 -0400769 sysctl_head_finish(h);
770 break;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800771 }
772 }
Zhou Chengming00cf64f2017-01-06 09:32:32 +0800773out:
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800774 sysctl_head_finish(head);
Al Virof0c3b502013-05-16 12:07:31 -0400775 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800776}
777
Al Viro10556cb2011-06-20 19:28:19 -0400778static int proc_sys_permission(struct inode *inode, int mask)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800779{
780 /*
781 * sysctl entries that are not writeable,
782 * are _NOT_ writeable, capabilities or not.
783 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200784 struct ctl_table_header *head;
785 struct ctl_table *table;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800786 int error;
787
Miklos Szeredif696a362008-07-31 13:41:58 +0200788 /* Executable files are not allowed under /proc/sys/ */
789 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))
790 return -EACCES;
791
792 head = grab_header(inode);
Al Viro9043476f2008-07-15 08:54:06 -0400793 if (IS_ERR(head))
794 return PTR_ERR(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800795
Miklos Szeredif696a362008-07-31 13:41:58 +0200796 table = PROC_I(inode)->sysctl_entry;
Al Viro9043476f2008-07-15 08:54:06 -0400797 if (!table) /* global root - r-xr-xr-x */
798 error = mask & MAY_WRITE ? -EACCES : 0;
799 else /* Use the permissions on the sysctl table entry */
Eric W. Biederman73f7ef42012-11-16 03:02:58 +0000800 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800801
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800802 sysctl_head_finish(head);
803 return error;
804}
805
806static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
807{
David Howells2b0143b2015-03-17 22:25:59 +0000808 struct inode *inode = d_inode(dentry);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800809 int error;
810
811 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
812 return -EPERM;
813
Jan Kara31051c82016-05-26 16:55:18 +0200814 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200815 if (error)
816 return error;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800817
Christoph Hellwig10257742010-06-04 11:30:02 +0200818 setattr_copy(inode, attr);
819 mark_inode_dirty(inode);
820 return 0;
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800821}
822
Al Viro9043476f2008-07-15 08:54:06 -0400823static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
824{
David Howells2b0143b2015-03-17 22:25:59 +0000825 struct inode *inode = d_inode(dentry);
Al Viro9043476f2008-07-15 08:54:06 -0400826 struct ctl_table_header *head = grab_header(inode);
827 struct ctl_table *table = PROC_I(inode)->sysctl_entry;
828
829 if (IS_ERR(head))
830 return PTR_ERR(head);
831
832 generic_fillattr(inode, stat);
833 if (table)
834 stat->mode = (stat->mode & S_IFMT) | table->mode;
835
836 sysctl_head_finish(head);
837 return 0;
838}
839
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800840static const struct file_operations proc_sys_file_operations = {
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700841 .open = proc_sys_open,
842 .poll = proc_sys_poll,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800843 .read = proc_sys_read,
844 .write = proc_sys_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200845 .llseek = default_llseek,
Al Viro9043476f2008-07-15 08:54:06 -0400846};
847
848static const struct file_operations proc_sys_dir_file_operations = {
Pavel Emelyanov887df072011-11-02 13:38:42 -0700849 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400850 .iterate_shared = proc_sys_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200851 .llseek = generic_file_llseek,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800852};
853
Jan Engelhardt03a44822008-02-08 04:21:19 -0800854static const struct inode_operations proc_sys_inode_operations = {
Al Viro9043476f2008-07-15 08:54:06 -0400855 .permission = proc_sys_permission,
856 .setattr = proc_sys_setattr,
857 .getattr = proc_sys_getattr,
858};
859
860static const struct inode_operations proc_sys_dir_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800861 .lookup = proc_sys_lookup,
862 .permission = proc_sys_permission,
863 .setattr = proc_sys_setattr,
Al Viro9043476f2008-07-15 08:54:06 -0400864 .getattr = proc_sys_getattr,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800865};
866
Al Viro0b728e12012-06-10 16:03:43 -0400867static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800868{
Al Viro0b728e12012-06-10 16:03:43 -0400869 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100870 return -ECHILD;
David Howells2b0143b2015-03-17 22:25:59 +0000871 return !PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400872}
873
Nick Pigginfe15ce42011-01-07 17:49:23 +1100874static int proc_sys_delete(const struct dentry *dentry)
Al Viro9043476f2008-07-15 08:54:06 -0400875{
David Howells2b0143b2015-03-17 22:25:59 +0000876 return !!PROC_I(d_inode(dentry))->sysctl->unregistering;
Al Viro9043476f2008-07-15 08:54:06 -0400877}
878
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800879static int sysctl_is_seen(struct ctl_table_header *p)
880{
881 struct ctl_table_set *set = p->set;
882 int res;
883 spin_lock(&sysctl_lock);
884 if (p->unregistering)
885 res = 0;
886 else if (!set->is_seen)
887 res = 1;
888 else
889 res = set->is_seen(set);
890 spin_unlock(&sysctl_lock);
891 return res;
892}
893
Al Viro6fa67e72016-07-31 16:37:25 -0400894static int proc_sys_compare(const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100895 unsigned int len, const char *str, const struct qstr *name)
Al Viro9043476f2008-07-15 08:54:06 -0400896{
Al Virodfef6dcd32011-03-08 01:25:28 -0500897 struct ctl_table_header *head;
Linus Torvaldsda53be12013-05-21 15:22:44 -0700898 struct inode *inode;
899
Nick Piggin31e6b012011-01-07 17:49:52 +1100900 /* Although proc doesn't have negative dentries, rcu-walk means
901 * that inode here can be NULL */
Al Virodfef6dcd32011-03-08 01:25:28 -0500902 /* AV: can it, indeed? */
David Howells2b0143b2015-03-17 22:25:59 +0000903 inode = d_inode_rcu(dentry);
Nick Piggin31e6b012011-01-07 17:49:52 +1100904 if (!inode)
Al Virodfef6dcd32011-03-08 01:25:28 -0500905 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100906 if (name->len != len)
Al Viro9043476f2008-07-15 08:54:06 -0400907 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +1100908 if (memcmp(name->name, str, len))
Al Viro9043476f2008-07-15 08:54:06 -0400909 return 1;
Al Virodfef6dcd32011-03-08 01:25:28 -0500910 head = rcu_dereference(PROC_I(inode)->sysctl);
911 return !head || !sysctl_is_seen(head);
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800912}
913
Al Virod72f71e2009-02-20 05:58:47 +0000914static const struct dentry_operations proc_sys_dentry_operations = {
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800915 .d_revalidate = proc_sys_revalidate,
Al Viro9043476f2008-07-15 08:54:06 -0400916 .d_delete = proc_sys_delete,
917 .d_compare = proc_sys_compare,
Eric W. Biederman77b14db2007-02-14 00:34:12 -0800918};
919
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800920static struct ctl_dir *find_subdir(struct ctl_dir *dir,
921 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800922{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800923 struct ctl_table_header *head;
924 struct ctl_table *entry;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800925
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800926 entry = find_entry(&head, dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800927 if (!entry)
928 return ERR_PTR(-ENOENT);
Eric W. Biederman51f72f42012-01-30 20:09:33 -0800929 if (!S_ISDIR(entry->mode))
930 return ERR_PTR(-ENOTDIR);
931 return container_of(head, struct ctl_dir, header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800932}
933
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800934static struct ctl_dir *new_dir(struct ctl_table_set *set,
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800935 const char *name, int namelen)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800936{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800937 struct ctl_table *table;
938 struct ctl_dir *new;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800939 struct ctl_node *node;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800940 char *new_name;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800941
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800942 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) +
943 sizeof(struct ctl_table)*2 + namelen + 1,
944 GFP_KERNEL);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800945 if (!new)
946 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -0800947
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800948 node = (struct ctl_node *)(new + 1);
949 table = (struct ctl_table *)(node + 1);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800950 new_name = (char *)(table + 2);
951 memcpy(new_name, name, namelen);
952 new_name[namelen] = '\0';
953 table[0].procname = new_name;
954 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -0800955 init_header(&new->header, set->dir.header.root, set, node, table);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800956
957 return new;
958}
959
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800960/**
961 * get_subdir - find or create a subdir with the specified name.
962 * @dir: Directory to create the subdirectory in
963 * @name: The name of the subdirectory to find or create
964 * @namelen: The length of name
965 *
966 * Takes a directory with an elevated reference count so we know that
967 * if we drop the lock the directory will not go away. Upon success
968 * the reference is moved from @dir to the returned subdirectory.
969 * Upon error an error code is returned and the reference on @dir is
970 * simply dropped.
971 */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800972static struct ctl_dir *get_subdir(struct ctl_dir *dir,
973 const char *name, int namelen)
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800974{
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800975 struct ctl_table_set *set = dir->header.set;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800976 struct ctl_dir *subdir, *new = NULL;
Eric W. Biederman0eb97f32012-01-30 20:37:51 -0800977 int err;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800978
979 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800980 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800981 if (!IS_ERR(subdir))
982 goto found;
983 if (PTR_ERR(subdir) != -ENOENT)
984 goto failed;
985
986 spin_unlock(&sysctl_lock);
987 new = new_dir(set, name, namelen);
988 spin_lock(&sysctl_lock);
989 subdir = ERR_PTR(-ENOMEM);
990 if (!new)
991 goto failed;
992
Eric W. Biederman60f126d2012-01-30 21:23:52 -0800993 /* Was the subdir added while we dropped the lock? */
Eric W. Biederman0e47c992012-01-07 23:24:30 -0800994 subdir = find_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -0800995 if (!IS_ERR(subdir))
996 goto found;
997 if (PTR_ERR(subdir) != -ENOENT)
998 goto failed;
999
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001000 /* Nope. Use the our freshly made directory entry. */
Eric W. Biederman0eb97f32012-01-30 20:37:51 -08001001 err = insert_header(dir, &new->header);
1002 subdir = ERR_PTR(err);
1003 if (err)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001004 goto failed;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001005 subdir = new;
1006found:
1007 subdir->header.nreg++;
1008failed:
Viresh Kumara1c83682015-08-12 15:59:44 +05301009 if (IS_ERR(subdir)) {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001010 pr_err("sysctl could not get directory: ");
Eric W. Biederman69801282012-01-21 20:09:45 -08001011 sysctl_print_dir(dir);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001012 pr_cont("/%*.*s %ld\n",
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001013 namelen, namelen, name, PTR_ERR(subdir));
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001014 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001015 drop_sysctl_table(&dir->header);
1016 if (new)
1017 drop_sysctl_table(&new->header);
1018 spin_unlock(&sysctl_lock);
1019 return subdir;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001020}
1021
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001022static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir)
1023{
1024 struct ctl_dir *parent;
1025 const char *procname;
1026 if (!dir->header.parent)
1027 return &set->dir;
1028 parent = xlate_dir(set, dir->header.parent);
1029 if (IS_ERR(parent))
1030 return parent;
1031 procname = dir->header.ctl_table[0].procname;
1032 return find_subdir(parent, procname, strlen(procname));
1033}
1034
1035static int sysctl_follow_link(struct ctl_table_header **phead,
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001036 struct ctl_table **pentry)
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001037{
1038 struct ctl_table_header *head;
1039 struct ctl_table_root *root;
1040 struct ctl_table_set *set;
1041 struct ctl_table *entry;
1042 struct ctl_dir *dir;
1043 int ret;
1044
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001045 ret = 0;
1046 spin_lock(&sysctl_lock);
1047 root = (*pentry)->data;
Eric W. Biederman13bcc6a2016-07-16 15:22:55 -05001048 set = lookup_header_set(root);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001049 dir = xlate_dir(set, (*phead)->parent);
1050 if (IS_ERR(dir))
1051 ret = PTR_ERR(dir);
1052 else {
1053 const char *procname = (*pentry)->procname;
1054 head = NULL;
1055 entry = find_entry(&head, dir, procname, strlen(procname));
1056 ret = -ENOENT;
1057 if (entry && use_table(head)) {
1058 unuse_table(*phead);
1059 *phead = head;
1060 *pentry = entry;
1061 ret = 0;
1062 }
1063 }
1064
1065 spin_unlock(&sysctl_lock);
1066 return ret;
1067}
1068
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001069static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...)
1070{
1071 struct va_format vaf;
1072 va_list args;
1073
1074 va_start(args, fmt);
1075 vaf.fmt = fmt;
1076 vaf.va = &args;
1077
Andrew Morton87ebdc02013-02-27 17:03:16 -08001078 pr_err("sysctl table check failed: %s/%s %pV\n",
1079 path, table->procname, &vaf);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001080
1081 va_end(args);
1082 return -EINVAL;
1083}
1084
1085static int sysctl_check_table(const char *path, struct ctl_table *table)
1086{
1087 int err = 0;
1088 for (; table->procname; table++) {
1089 if (table->child)
1090 err = sysctl_err(path, table, "Not a file");
1091
1092 if ((table->proc_handler == proc_dostring) ||
1093 (table->proc_handler == proc_dointvec) ||
1094 (table->proc_handler == proc_dointvec_minmax) ||
1095 (table->proc_handler == proc_dointvec_jiffies) ||
1096 (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1097 (table->proc_handler == proc_dointvec_ms_jiffies) ||
1098 (table->proc_handler == proc_doulongvec_minmax) ||
1099 (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1100 if (!table->data)
1101 err = sysctl_err(path, table, "No data");
1102 if (!table->maxlen)
1103 err = sysctl_err(path, table, "No maxlen");
1104 }
1105 if (!table->proc_handler)
1106 err = sysctl_err(path, table, "No proc_handler");
1107
1108 if ((table->mode & (S_IRUGO|S_IWUGO)) != table->mode)
1109 err = sysctl_err(path, table, "bogus .mode 0%o",
1110 table->mode);
1111 }
1112 return err;
1113}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001114
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001115static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table *table,
1116 struct ctl_table_root *link_root)
1117{
1118 struct ctl_table *link_table, *entry, *link;
1119 struct ctl_table_header *links;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001120 struct ctl_node *node;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001121 char *link_name;
1122 int nr_entries, name_bytes;
1123
1124 name_bytes = 0;
1125 nr_entries = 0;
1126 for (entry = table; entry->procname; entry++) {
1127 nr_entries++;
1128 name_bytes += strlen(entry->procname) + 1;
1129 }
1130
1131 links = kzalloc(sizeof(struct ctl_table_header) +
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001132 sizeof(struct ctl_node)*nr_entries +
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001133 sizeof(struct ctl_table)*(nr_entries + 1) +
1134 name_bytes,
1135 GFP_KERNEL);
1136
1137 if (!links)
1138 return NULL;
1139
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001140 node = (struct ctl_node *)(links + 1);
1141 link_table = (struct ctl_table *)(node + nr_entries);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001142 link_name = (char *)&link_table[nr_entries + 1];
1143
1144 for (link = link_table, entry = table; entry->procname; link++, entry++) {
1145 int len = strlen(entry->procname) + 1;
1146 memcpy(link_name, entry->procname, len);
1147 link->procname = link_name;
1148 link->mode = S_IFLNK|S_IRWXUGO;
1149 link->data = link_root;
1150 link_name += len;
1151 }
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001152 init_header(links, dir->header.root, dir->header.set, node, link_table);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001153 links->nreg = nr_entries;
1154
1155 return links;
1156}
1157
1158static bool get_links(struct ctl_dir *dir,
1159 struct ctl_table *table, struct ctl_table_root *link_root)
1160{
1161 struct ctl_table_header *head;
1162 struct ctl_table *entry, *link;
1163
1164 /* Are there links available for every entry in table? */
1165 for (entry = table; entry->procname; entry++) {
1166 const char *procname = entry->procname;
1167 link = find_entry(&head, dir, procname, strlen(procname));
1168 if (!link)
1169 return false;
1170 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode))
1171 continue;
1172 if (S_ISLNK(link->mode) && (link->data == link_root))
1173 continue;
1174 return false;
1175 }
1176
1177 /* The checks passed. Increase the registration count on the links */
1178 for (entry = table; entry->procname; entry++) {
1179 const char *procname = entry->procname;
1180 link = find_entry(&head, dir, procname, strlen(procname));
1181 head->nreg++;
1182 }
1183 return true;
1184}
1185
1186static int insert_links(struct ctl_table_header *head)
1187{
1188 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1189 struct ctl_dir *core_parent = NULL;
1190 struct ctl_table_header *links;
1191 int err;
1192
1193 if (head->set == root_set)
1194 return 0;
1195
1196 core_parent = xlate_dir(root_set, head->parent);
1197 if (IS_ERR(core_parent))
1198 return 0;
1199
1200 if (get_links(core_parent, head->ctl_table, head->root))
1201 return 0;
1202
1203 core_parent->header.nreg++;
1204 spin_unlock(&sysctl_lock);
1205
1206 links = new_links(core_parent, head->ctl_table, head->root);
1207
1208 spin_lock(&sysctl_lock);
1209 err = -ENOMEM;
1210 if (!links)
1211 goto out;
1212
1213 err = 0;
1214 if (get_links(core_parent, head->ctl_table, head->root)) {
1215 kfree(links);
1216 goto out;
1217 }
1218
1219 err = insert_header(core_parent, links);
1220 if (err)
1221 kfree(links);
1222out:
1223 drop_sysctl_table(&core_parent->header);
1224 return err;
1225}
1226
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001227/**
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001228 * __register_sysctl_table - register a leaf sysctl table
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001229 * @set: Sysctl tree to register on
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001230 * @path: The path to the directory the sysctl table is in.
1231 * @table: the top-level table structure
1232 *
1233 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1234 * array. A completely 0 filled entry terminates the table.
1235 *
1236 * The members of the &struct ctl_table structure are used as follows:
1237 *
1238 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1239 * enter a sysctl file
1240 *
1241 * data - a pointer to data for use by proc_handler
1242 *
1243 * maxlen - the maximum size in bytes of the data
1244 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001245 * mode - the file permissions for the /proc/sys file
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001246 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001247 * child - must be %NULL.
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001248 *
1249 * proc_handler - the text handler routine (described below)
1250 *
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001251 * extra1, extra2 - extra pointers usable by the proc handler routines
1252 *
1253 * Leaf nodes in the sysctl tree will be represented by a single file
1254 * under /proc; non-leaf nodes will be represented by directories.
1255 *
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001256 * There must be a proc_handler routine for any terminal nodes.
1257 * Several default handlers are available to cover common cases -
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001258 *
1259 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1260 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1261 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1262 *
1263 * It is the handler's job to read the input buffer from user memory
1264 * and process it. The handler should return 0 on success.
1265 *
1266 * This routine returns %NULL on a failure to register, and a pointer
1267 * to the table header on success.
1268 */
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001269struct ctl_table_header *__register_sysctl_table(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001270 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001271 const char *path, struct ctl_table *table)
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001272{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001273 struct ctl_table_root *root = set->dir.header.root;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001274 struct ctl_table_header *header;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001275 const char *name, *nextname;
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001276 struct ctl_dir *dir;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001277 struct ctl_table *entry;
1278 struct ctl_node *node;
1279 int nr_entries = 0;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001280
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001281 for (entry = table; entry->procname; entry++)
1282 nr_entries++;
1283
1284 header = kzalloc(sizeof(struct ctl_table_header) +
1285 sizeof(struct ctl_node)*nr_entries, GFP_KERNEL);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001286 if (!header)
1287 return NULL;
1288
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001289 node = (struct ctl_node *)(header + 1);
1290 init_header(header, root, set, node, table);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001291 if (sysctl_check_table(path, table))
1292 goto fail;
Eric W. Biederman8d6ecfc2012-01-06 11:55:30 -08001293
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001294 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001295 dir = &set->dir;
Eric W. Biederman60f126d2012-01-30 21:23:52 -08001296 /* Reference moved down the diretory tree get_subdir */
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001297 dir->header.nreg++;
1298 spin_unlock(&sysctl_lock);
1299
1300 /* Find the directory for the ctl_table */
1301 for (name = path; name; name = nextname) {
1302 int namelen;
1303 nextname = strchr(name, '/');
1304 if (nextname) {
1305 namelen = nextname - name;
1306 nextname++;
1307 } else {
1308 namelen = strlen(name);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001309 }
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001310 if (namelen == 0)
1311 continue;
1312
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001313 dir = get_subdir(dir, name, namelen);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001314 if (IS_ERR(dir))
1315 goto fail;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001316 }
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001317
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001318 spin_lock(&sysctl_lock);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001319 if (insert_header(dir, header))
1320 goto fail_put_dir_locked;
1321
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001322 drop_sysctl_table(&dir->header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001323 spin_unlock(&sysctl_lock);
1324
1325 return header;
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001326
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001327fail_put_dir_locked:
1328 drop_sysctl_table(&dir->header);
Eric W. Biederman7c60c482012-01-21 13:34:05 -08001329 spin_unlock(&sysctl_lock);
1330fail:
1331 kfree(header);
1332 dump_stack();
1333 return NULL;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001334}
1335
Eric W. Biedermanfea478d2012-01-20 21:47:03 -08001336/**
1337 * register_sysctl - register a sysctl table
1338 * @path: The path to the directory the sysctl table is in.
1339 * @table: the table structure
1340 *
1341 * Register a sysctl table. @table should be a filled in ctl_table
1342 * array. A completely 0 filled entry terminates the table.
1343 *
1344 * See __register_sysctl_table for more details.
1345 */
1346struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
1347{
1348 return __register_sysctl_table(&sysctl_table_root.default_set,
1349 path, table);
1350}
1351EXPORT_SYMBOL(register_sysctl);
1352
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001353static char *append_path(const char *path, char *pos, const char *name)
1354{
1355 int namelen;
1356 namelen = strlen(name);
1357 if (((pos - path) + namelen + 2) >= PATH_MAX)
1358 return NULL;
1359 memcpy(pos, name, namelen);
1360 pos[namelen] = '/';
1361 pos[namelen + 1] = '\0';
1362 pos += namelen + 1;
1363 return pos;
1364}
1365
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001366static int count_subheaders(struct ctl_table *table)
1367{
1368 int has_files = 0;
1369 int nr_subheaders = 0;
1370 struct ctl_table *entry;
1371
1372 /* special case: no directory and empty directory */
1373 if (!table || !table->procname)
1374 return 1;
1375
1376 for (entry = table; entry->procname; entry++) {
1377 if (entry->child)
1378 nr_subheaders += count_subheaders(entry->child);
1379 else
1380 has_files = 1;
1381 }
1382 return nr_subheaders + has_files;
1383}
1384
1385static int register_leaf_sysctl_tables(const char *path, char *pos,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001386 struct ctl_table_header ***subheader, struct ctl_table_set *set,
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001387 struct ctl_table *table)
1388{
1389 struct ctl_table *ctl_table_arg = NULL;
1390 struct ctl_table *entry, *files;
1391 int nr_files = 0;
1392 int nr_dirs = 0;
1393 int err = -ENOMEM;
1394
1395 for (entry = table; entry->procname; entry++) {
1396 if (entry->child)
1397 nr_dirs++;
1398 else
1399 nr_files++;
1400 }
1401
1402 files = table;
1403 /* If there are mixed files and directories we need a new table */
1404 if (nr_dirs && nr_files) {
1405 struct ctl_table *new;
1406 files = kzalloc(sizeof(struct ctl_table) * (nr_files + 1),
1407 GFP_KERNEL);
1408 if (!files)
1409 goto out;
1410
1411 ctl_table_arg = files;
1412 for (new = files, entry = table; entry->procname; entry++) {
1413 if (entry->child)
1414 continue;
1415 *new = *entry;
1416 new++;
1417 }
1418 }
1419
1420 /* Register everything except a directory full of subdirectories */
1421 if (nr_files || !nr_dirs) {
1422 struct ctl_table_header *header;
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001423 header = __register_sysctl_table(set, path, files);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001424 if (!header) {
1425 kfree(ctl_table_arg);
1426 goto out;
1427 }
1428
1429 /* Remember if we need to free the file table */
1430 header->ctl_table_arg = ctl_table_arg;
1431 **subheader = header;
1432 (*subheader)++;
1433 }
1434
1435 /* Recurse into the subdirectories. */
1436 for (entry = table; entry->procname; entry++) {
1437 char *child_pos;
1438
1439 if (!entry->child)
1440 continue;
1441
1442 err = -ENAMETOOLONG;
1443 child_pos = append_path(path, pos, entry->procname);
1444 if (!child_pos)
1445 goto out;
1446
1447 err = register_leaf_sysctl_tables(path, child_pos, subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001448 set, entry->child);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001449 pos[0] = '\0';
1450 if (err)
1451 goto out;
1452 }
1453 err = 0;
1454out:
1455 /* On failure our caller will unregister all registered subheaders */
1456 return err;
1457}
1458
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001459/**
1460 * __register_sysctl_paths - register a sysctl table hierarchy
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001461 * @set: Sysctl tree to register on
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001462 * @path: The path to the directory the sysctl table is in.
1463 * @table: the top-level table structure
1464 *
1465 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1466 * array. A completely 0 filled entry terminates the table.
1467 *
1468 * See __register_sysctl_table for more details.
1469 */
1470struct ctl_table_header *__register_sysctl_paths(
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001471 struct ctl_table_set *set,
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001472 const struct ctl_path *path, struct ctl_table *table)
1473{
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001474 struct ctl_table *ctl_table_arg = table;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001475 int nr_subheaders = count_subheaders(table);
1476 struct ctl_table_header *header = NULL, **subheaders, **subheader;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001477 const struct ctl_path *component;
1478 char *new_path, *pos;
1479
1480 pos = new_path = kmalloc(PATH_MAX, GFP_KERNEL);
1481 if (!new_path)
1482 return NULL;
1483
1484 pos[0] = '\0';
1485 for (component = path; component->procname; component++) {
1486 pos = append_path(new_path, pos, component->procname);
1487 if (!pos)
1488 goto out;
1489 }
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001490 while (table->procname && table->child && !table[1].procname) {
1491 pos = append_path(new_path, pos, table->procname);
1492 if (!pos)
1493 goto out;
1494 table = table->child;
1495 }
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001496 if (nr_subheaders == 1) {
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001497 header = __register_sysctl_table(set, new_path, table);
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001498 if (header)
1499 header->ctl_table_arg = ctl_table_arg;
1500 } else {
1501 header = kzalloc(sizeof(*header) +
1502 sizeof(*subheaders)*nr_subheaders, GFP_KERNEL);
1503 if (!header)
1504 goto out;
1505
1506 subheaders = (struct ctl_table_header **) (header + 1);
1507 subheader = subheaders;
Eric W. Biedermanec6a5262012-01-21 12:35:23 -08001508 header->ctl_table_arg = ctl_table_arg;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001509
1510 if (register_leaf_sysctl_tables(new_path, pos, &subheader,
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001511 set, table))
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001512 goto err_register_leaves;
1513 }
1514
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001515out:
1516 kfree(new_path);
1517 return header;
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001518
1519err_register_leaves:
1520 while (subheader > subheaders) {
1521 struct ctl_table_header *subh = *(--subheader);
1522 struct ctl_table *table = subh->ctl_table_arg;
1523 unregister_sysctl_table(subh);
1524 kfree(table);
1525 }
1526 kfree(header);
1527 header = NULL;
1528 goto out;
Eric W. Biederman6e9d5162012-01-21 10:26:26 -08001529}
1530
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001531/**
1532 * register_sysctl_table_path - register a sysctl table hierarchy
1533 * @path: The path to the directory the sysctl table is in.
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_paths(const struct ctl_path *path,
1542 struct ctl_table *table)
1543{
Eric W. Biederman60a47a22012-01-08 00:02:37 -08001544 return __register_sysctl_paths(&sysctl_table_root.default_set,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001545 path, table);
1546}
1547EXPORT_SYMBOL(register_sysctl_paths);
1548
1549/**
1550 * register_sysctl_table - register a sysctl table hierarchy
1551 * @table: the top-level table structure
1552 *
1553 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1554 * array. A completely 0 filled entry terminates the table.
1555 *
1556 * See register_sysctl_paths for more details.
1557 */
1558struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1559{
1560 static const struct ctl_path null_path[] = { {} };
1561
1562 return register_sysctl_paths(null_path, table);
1563}
1564EXPORT_SYMBOL(register_sysctl_table);
1565
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001566static void put_links(struct ctl_table_header *header)
1567{
1568 struct ctl_table_set *root_set = &sysctl_table_root.default_set;
1569 struct ctl_table_root *root = header->root;
1570 struct ctl_dir *parent = header->parent;
1571 struct ctl_dir *core_parent;
1572 struct ctl_table *entry;
1573
1574 if (header->set == root_set)
1575 return;
1576
1577 core_parent = xlate_dir(root_set, parent);
1578 if (IS_ERR(core_parent))
1579 return;
1580
1581 for (entry = header->ctl_table; entry->procname; entry++) {
1582 struct ctl_table_header *link_head;
1583 struct ctl_table *link;
1584 const char *name = entry->procname;
1585
1586 link = find_entry(&link_head, core_parent, name, strlen(name));
1587 if (link &&
1588 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) ||
1589 (S_ISLNK(link->mode) && (link->data == root)))) {
1590 drop_sysctl_table(link_head);
1591 }
1592 else {
Andrew Morton87ebdc02013-02-27 17:03:16 -08001593 pr_err("sysctl link missing during unregister: ");
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001594 sysctl_print_dir(parent);
Andrew Morton87ebdc02013-02-27 17:03:16 -08001595 pr_cont("/%s\n", name);
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001596 }
1597 }
1598}
1599
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001600static void drop_sysctl_table(struct ctl_table_header *header)
1601{
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001602 struct ctl_dir *parent = header->parent;
1603
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001604 if (--header->nreg)
1605 return;
1606
YueHaibing9f3a14b2019-04-25 22:24:05 -07001607 if (parent) {
YueHaibing28f06412019-03-28 20:44:40 -07001608 put_links(header);
YueHaibing9f3a14b2019-04-25 22:24:05 -07001609 start_unregistering(header);
1610 }
1611
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001612 if (!--header->count)
1613 kfree_rcu(header, rcu);
Eric W. Biederman7ec66d02011-12-29 08:24:29 -08001614
1615 if (parent)
1616 drop_sysctl_table(&parent->header);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001617}
1618
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001619/**
1620 * unregister_sysctl_table - unregister a sysctl table hierarchy
1621 * @header: the header returned from register_sysctl_table
1622 *
1623 * Unregisters the sysctl table and all children. proc entries may not
1624 * actually be removed until they are no longer used by anyone.
1625 */
1626void unregister_sysctl_table(struct ctl_table_header * header)
1627{
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001628 int nr_subheaders;
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001629 might_sleep();
1630
1631 if (header == NULL)
1632 return;
1633
Eric W. Biedermanf7280192012-01-22 18:22:05 -08001634 nr_subheaders = count_subheaders(header->ctl_table_arg);
1635 if (unlikely(nr_subheaders > 1)) {
1636 struct ctl_table_header **subheaders;
1637 int i;
1638
1639 subheaders = (struct ctl_table_header **)(header + 1);
1640 for (i = nr_subheaders -1; i >= 0; i--) {
1641 struct ctl_table_header *subh = subheaders[i];
1642 struct ctl_table *table = subh->ctl_table_arg;
1643 unregister_sysctl_table(subh);
1644 kfree(table);
1645 }
1646 kfree(header);
1647 return;
1648 }
1649
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001650 spin_lock(&sysctl_lock);
Eric W. Biederman938aaa42012-01-09 17:24:30 -08001651 drop_sysctl_table(header);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001652 spin_unlock(&sysctl_lock);
1653}
1654EXPORT_SYMBOL(unregister_sysctl_table);
1655
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001656void setup_sysctl_set(struct ctl_table_set *set,
Eric W. Biederman9eb47c22012-01-22 21:26:00 -08001657 struct ctl_table_root *root,
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001658 int (*is_seen)(struct ctl_table_set *))
1659{
Dan Carpenter13474402012-01-30 16:40:29 +03001660 memset(set, 0, sizeof(*set));
Eric W. Biederman0e47c992012-01-07 23:24:30 -08001661 set->is_seen = is_seen;
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001662 init_header(&set->dir.header, root, set, NULL, root_table);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001663}
1664
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001665void retire_sysctl_set(struct ctl_table_set *set)
1666{
Eric W. Biedermanac13ac62012-01-09 17:24:30 -08001667 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root));
Eric W. Biederman97324cd82012-01-09 22:19:13 -08001668}
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -08001669
Alexey Dobriyan1e0edd32008-10-17 05:07:44 +04001670int __init proc_sys_init(void)
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001671{
Alexey Dobriyane1675232008-10-03 00:23:32 +04001672 struct proc_dir_entry *proc_sys_root;
1673
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001674 proc_sys_root = proc_mkdir("sys", NULL);
Al Viro9043476f2008-07-15 08:54:06 -04001675 proc_sys_root->proc_iops = &proc_sys_dir_operations;
1676 proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001677 proc_sys_root->nlink = 0;
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001678
1679 return sysctl_init();
Eric W. Biederman77b14db2007-02-14 00:34:12 -08001680}