blob: 439ae688650739f173499a635d578c99f104cebf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/proc/inode.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <linux/time.h>
8#include <linux/proc_fs.h>
9#include <linux/kernel.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080010#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/string.h>
13#include <linux/stat.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070014#include <linux/completion.h>
Alexey Dobriyandd23aae2007-09-11 15:23:55 -070015#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/file.h>
17#include <linux/limits.h>
18#include <linux/init.h>
19#include <linux/module.h>
Al Viro9043476f2008-07-15 08:54:06 -040020#include <linux/sysctl.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080021#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080023#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/uaccess.h>
26
Adrian Bunkfee781e2006-01-08 01:04:16 -080027#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Al Viro82679522010-06-04 22:17:56 -040029static void proc_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 struct proc_dir_entry *de;
Al Virodfef6dcd32011-03-08 01:25:28 -050032 struct ctl_table_header *head;
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080033 const struct proc_ns_operations *ns_ops;
Eric W. Biedermanbf056bf2011-06-18 17:48:18 -070034 void *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Mark Fashehfef26652005-09-09 13:01:31 -070036 truncate_inode_pages(&inode->i_data, 0);
Jan Karadbd57682012-05-03 14:48:02 +020037 clear_inode(inode);
Mark Fashehfef26652005-09-09 13:01:31 -070038
Eric W. Biederman99f89552006-06-26 00:25:55 -070039 /* Stop tracking associated processes */
Eric W. Biederman13b41b02006-06-26 00:25:56 -070040 put_pid(PROC_I(inode)->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 /* Let go of any associated proc directory entry */
43 de = PROC_I(inode)->pde;
Alexey Dobriyan99b76232009-03-25 22:48:06 +030044 if (de)
Alexey Dobriyan135d5652009-12-15 16:45:39 -080045 pde_put(de);
Al Virodfef6dcd32011-03-08 01:25:28 -050046 head = PROC_I(inode)->sysctl;
47 if (head) {
48 rcu_assign_pointer(PROC_I(inode)->sysctl, NULL);
49 sysctl_head_put(head);
50 }
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080051 /* Release any associated namespace */
52 ns_ops = PROC_I(inode)->ns_ops;
Eric W. Biedermanbf056bf2011-06-18 17:48:18 -070053 ns = PROC_I(inode)->ns;
54 if (ns_ops && ns)
55 ns_ops->put(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Christoph Lametere18b8902006-12-06 20:33:20 -080058static struct kmem_cache * proc_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60static struct inode *proc_alloc_inode(struct super_block *sb)
61{
62 struct proc_inode *ei;
63 struct inode *inode;
64
Christoph Lametere94b1762006-12-06 20:33:17 -080065 ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!ei)
67 return NULL;
Eric W. Biederman13b41b02006-06-26 00:25:56 -070068 ei->pid = NULL;
Eric W. Biedermanaed7a6c2006-06-26 00:25:44 -070069 ei->fd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 ei->op.proc_get_link = NULL;
71 ei->pde = NULL;
Al Viro9043476f2008-07-15 08:54:06 -040072 ei->sysctl = NULL;
73 ei->sysctl_entry = NULL;
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080074 ei->ns = NULL;
75 ei->ns_ops = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 inode = &ei->vfs_inode;
77 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
78 return inode;
79}
80
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110081static void proc_i_callback(struct rcu_head *head)
82{
83 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110084 kmem_cache_free(proc_inode_cachep, PROC_I(inode));
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static void proc_destroy_inode(struct inode *inode)
88{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110089 call_rcu(&inode->i_rcu, proc_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070092static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct proc_inode *ei = (struct proc_inode *) foo;
95
Christoph Lametera35afb82007-05-16 22:10:57 -070096 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
Paul Mundt20c2df82007-07-20 10:11:58 +090098
Alexey Dobriyan5bcd7ff2008-10-17 03:43:55 +040099void __init proc_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 proc_inode_cachep = kmem_cache_create("proc_inode_cache",
102 sizeof(struct proc_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800103 0, (SLAB_RECLAIM_ACCOUNT|
Alexey Dobriyan040b5c62007-10-16 23:26:10 -0700104 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900105 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800108static int proc_show_options(struct seq_file *seq, struct dentry *root)
109{
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800110 struct super_block *sb = root->d_sb;
111 struct pid_namespace *pid = sb->s_fs_info;
112
Eric W. Biedermandcb0f222012-02-09 08:48:21 -0800113 if (!gid_eq(pid->pid_gid, GLOBAL_ROOT_GID))
114 seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, pid->pid_gid));
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800115 if (pid->hide_pid != 0)
116 seq_printf(seq, ",hidepid=%u", pid->hide_pid);
117
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800118 return 0;
119}
120
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800121static const struct super_operations proc_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .alloc_inode = proc_alloc_inode,
123 .destroy_inode = proc_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .drop_inode = generic_delete_inode,
Al Viro82679522010-06-04 22:17:56 -0400125 .evict_inode = proc_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .statfs = simple_statfs,
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800127 .remount_fs = proc_remount,
128 .show_options = proc_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700131static void __pde_users_dec(struct proc_dir_entry *pde)
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700132{
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700133 pde->pde_users--;
134 if (pde->pde_unload_completion && pde->pde_users == 0)
135 complete(pde->pde_unload_completion);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700136}
137
Alexey Dobriyan3dec7f52009-02-20 17:04:33 +0300138void pde_users_dec(struct proc_dir_entry *pde)
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700139{
140 spin_lock(&pde->pde_unload_lock);
141 __pde_users_dec(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700142 spin_unlock(&pde->pde_unload_lock);
143}
144
145static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence)
146{
147 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
148 loff_t rv = -EINVAL;
149 loff_t (*llseek)(struct file *, loff_t, int);
150
151 spin_lock(&pde->pde_unload_lock);
152 /*
153 * remove_proc_entry() is going to delete PDE (as part of module
154 * cleanup sequence). No new callers into module allowed.
155 */
156 if (!pde->proc_fops) {
157 spin_unlock(&pde->pde_unload_lock);
158 return rv;
159 }
160 /*
161 * Bump refcount so that remove_proc_entry will wail for ->llseek to
162 * complete.
163 */
164 pde->pde_users++;
165 /*
166 * Save function pointer under lock, to protect against ->proc_fops
167 * NULL'ifying right after ->pde_unload_lock is dropped.
168 */
169 llseek = pde->proc_fops->llseek;
170 spin_unlock(&pde->pde_unload_lock);
171
172 if (!llseek)
173 llseek = default_llseek;
174 rv = llseek(file, offset, whence);
175
176 pde_users_dec(pde);
177 return rv;
178}
179
180static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
181{
182 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
183 ssize_t rv = -EIO;
184 ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
185
186 spin_lock(&pde->pde_unload_lock);
187 if (!pde->proc_fops) {
188 spin_unlock(&pde->pde_unload_lock);
189 return rv;
190 }
191 pde->pde_users++;
192 read = pde->proc_fops->read;
193 spin_unlock(&pde->pde_unload_lock);
194
195 if (read)
196 rv = read(file, buf, count, ppos);
197
198 pde_users_dec(pde);
199 return rv;
200}
201
202static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
203{
204 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
205 ssize_t rv = -EIO;
206 ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
207
208 spin_lock(&pde->pde_unload_lock);
209 if (!pde->proc_fops) {
210 spin_unlock(&pde->pde_unload_lock);
211 return rv;
212 }
213 pde->pde_users++;
214 write = pde->proc_fops->write;
215 spin_unlock(&pde->pde_unload_lock);
216
217 if (write)
218 rv = write(file, buf, count, ppos);
219
220 pde_users_dec(pde);
221 return rv;
222}
223
224static unsigned int proc_reg_poll(struct file *file, struct poll_table_struct *pts)
225{
226 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Alexey Dobriyandd23aae2007-09-11 15:23:55 -0700227 unsigned int rv = DEFAULT_POLLMASK;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700228 unsigned int (*poll)(struct file *, struct poll_table_struct *);
229
230 spin_lock(&pde->pde_unload_lock);
231 if (!pde->proc_fops) {
232 spin_unlock(&pde->pde_unload_lock);
233 return rv;
234 }
235 pde->pde_users++;
236 poll = pde->proc_fops->poll;
237 spin_unlock(&pde->pde_unload_lock);
238
239 if (poll)
240 rv = poll(file, pts);
241
242 pde_users_dec(pde);
243 return rv;
244}
245
246static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
247{
248 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
249 long rv = -ENOTTY;
Arnd Bergmannb19dd422010-07-04 00:15:10 +0200250 long (*ioctl)(struct file *, unsigned int, unsigned long);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700251
252 spin_lock(&pde->pde_unload_lock);
253 if (!pde->proc_fops) {
254 spin_unlock(&pde->pde_unload_lock);
255 return rv;
256 }
257 pde->pde_users++;
Arnd Bergmannb19dd422010-07-04 00:15:10 +0200258 ioctl = pde->proc_fops->unlocked_ioctl;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700259 spin_unlock(&pde->pde_unload_lock);
260
Arnd Bergmannb19dd422010-07-04 00:15:10 +0200261 if (ioctl)
262 rv = ioctl(file, cmd, arg);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700263
264 pde_users_dec(pde);
265 return rv;
266}
267
268#ifdef CONFIG_COMPAT
269static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
270{
271 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
272 long rv = -ENOTTY;
273 long (*compat_ioctl)(struct file *, unsigned int, unsigned long);
274
275 spin_lock(&pde->pde_unload_lock);
276 if (!pde->proc_fops) {
277 spin_unlock(&pde->pde_unload_lock);
278 return rv;
279 }
280 pde->pde_users++;
281 compat_ioctl = pde->proc_fops->compat_ioctl;
282 spin_unlock(&pde->pde_unload_lock);
283
284 if (compat_ioctl)
285 rv = compat_ioctl(file, cmd, arg);
286
287 pde_users_dec(pde);
288 return rv;
289}
290#endif
291
292static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma)
293{
294 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
295 int rv = -EIO;
296 int (*mmap)(struct file *, struct vm_area_struct *);
297
298 spin_lock(&pde->pde_unload_lock);
299 if (!pde->proc_fops) {
300 spin_unlock(&pde->pde_unload_lock);
301 return rv;
302 }
303 pde->pde_users++;
304 mmap = pde->proc_fops->mmap;
305 spin_unlock(&pde->pde_unload_lock);
306
307 if (mmap)
308 rv = mmap(file, vma);
309
310 pde_users_dec(pde);
311 return rv;
312}
313
314static int proc_reg_open(struct inode *inode, struct file *file)
315{
316 struct proc_dir_entry *pde = PDE(inode);
317 int rv = 0;
318 int (*open)(struct inode *, struct file *);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700319 int (*release)(struct inode *, struct file *);
320 struct pde_opener *pdeo;
321
322 /*
323 * What for, you ask? Well, we can have open, rmmod, remove_proc_entry
324 * sequence. ->release won't be called because ->proc_fops will be
325 * cleared. Depending on complexity of ->release, consequences vary.
326 *
327 * We can't wait for mercy when close will be done for real, it's
328 * deadlockable: rmmod foo </proc/foo . So, we're going to do ->release
329 * by hand in remove_proc_entry(). For this, save opener's credentials
330 * for later.
331 */
332 pdeo = kmalloc(sizeof(struct pde_opener), GFP_KERNEL);
333 if (!pdeo)
334 return -ENOMEM;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700335
336 spin_lock(&pde->pde_unload_lock);
337 if (!pde->proc_fops) {
338 spin_unlock(&pde->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700339 kfree(pdeo);
Daisuke Oginod2857e72011-07-26 16:08:37 -0700340 return -ENOENT;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700341 }
342 pde->pde_users++;
343 open = pde->proc_fops->open;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700344 release = pde->proc_fops->release;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700345 spin_unlock(&pde->pde_unload_lock);
346
347 if (open)
348 rv = open(inode, file);
349
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700350 spin_lock(&pde->pde_unload_lock);
351 if (rv == 0 && release) {
352 /* To know what to release. */
353 pdeo->inode = inode;
354 pdeo->file = file;
355 /* Strictly for "too late" ->release in proc_reg_release(). */
356 pdeo->release = release;
357 list_add(&pdeo->lh, &pde->pde_openers);
358 } else
359 kfree(pdeo);
360 __pde_users_dec(pde);
361 spin_unlock(&pde->pde_unload_lock);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700362 return rv;
363}
364
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700365static struct pde_opener *find_pde_opener(struct proc_dir_entry *pde,
366 struct inode *inode, struct file *file)
367{
368 struct pde_opener *pdeo;
369
370 list_for_each_entry(pdeo, &pde->pde_openers, lh) {
371 if (pdeo->inode == inode && pdeo->file == file)
372 return pdeo;
373 }
374 return NULL;
375}
376
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700377static int proc_reg_release(struct inode *inode, struct file *file)
378{
379 struct proc_dir_entry *pde = PDE(inode);
380 int rv = 0;
381 int (*release)(struct inode *, struct file *);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700382 struct pde_opener *pdeo;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700383
384 spin_lock(&pde->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700385 pdeo = find_pde_opener(pde, inode, file);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700386 if (!pde->proc_fops) {
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700387 /*
388 * Can't simply exit, __fput() will think that everything is OK,
389 * and move on to freeing struct file. remove_proc_entry() will
390 * find slacker in opener's list and will try to do non-trivial
391 * things with struct file. Therefore, remove opener from list.
392 *
393 * But if opener is removed from list, who will ->release it?
394 */
395 if (pdeo) {
396 list_del(&pdeo->lh);
397 spin_unlock(&pde->pde_unload_lock);
398 rv = pdeo->release(inode, file);
399 kfree(pdeo);
400 } else
401 spin_unlock(&pde->pde_unload_lock);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700402 return rv;
403 }
404 pde->pde_users++;
405 release = pde->proc_fops->release;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700406 if (pdeo) {
407 list_del(&pdeo->lh);
408 kfree(pdeo);
409 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700410 spin_unlock(&pde->pde_unload_lock);
411
412 if (release)
413 rv = release(inode, file);
414
415 pde_users_dec(pde);
416 return rv;
417}
418
419static const struct file_operations proc_reg_file_ops = {
420 .llseek = proc_reg_llseek,
421 .read = proc_reg_read,
422 .write = proc_reg_write,
423 .poll = proc_reg_poll,
424 .unlocked_ioctl = proc_reg_unlocked_ioctl,
425#ifdef CONFIG_COMPAT
426 .compat_ioctl = proc_reg_compat_ioctl,
427#endif
428 .mmap = proc_reg_mmap,
429 .open = proc_reg_open,
430 .release = proc_reg_release,
431};
432
David Miller778f3dd2007-07-27 22:58:37 -0700433#ifdef CONFIG_COMPAT
434static const struct file_operations proc_reg_file_ops_no_compat = {
435 .llseek = proc_reg_llseek,
436 .read = proc_reg_read,
437 .write = proc_reg_write,
438 .poll = proc_reg_poll,
439 .unlocked_ioctl = proc_reg_unlocked_ioctl,
440 .mmap = proc_reg_mmap,
441 .open = proc_reg_open,
442 .release = proc_reg_release,
443};
444#endif
445
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800446struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct inode * inode;
449
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800450 inode = iget_locked(sb, de->low_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!inode)
Alexey Dobriyan99b76232009-03-25 22:48:06 +0300452 return NULL;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800453 if (inode->i_state & I_NEW) {
454 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800455 PROC_I(inode)->pde = de;
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700456
457 if (de->mode) {
458 inode->i_mode = de->mode;
459 inode->i_uid = de->uid;
460 inode->i_gid = de->gid;
461 }
462 if (de->size)
463 inode->i_size = de->size;
464 if (de->nlink)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200465 set_nlink(inode, de->nlink);
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700466 if (de->proc_iops)
467 inode->i_op = de->proc_iops;
468 if (de->proc_fops) {
469 if (S_ISREG(inode->i_mode)) {
David Howellsa1d4aeb2008-02-07 00:15:45 -0800470#ifdef CONFIG_COMPAT
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700471 if (!de->proc_fops->compat_ioctl)
472 inode->i_fop =
473 &proc_reg_file_ops_no_compat;
474 else
David Howellsa1d4aeb2008-02-07 00:15:45 -0800475#endif
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700476 inode->i_fop = &proc_reg_file_ops;
477 } else {
478 inode->i_fop = de->proc_fops;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800479 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700480 }
David Howellsa1d4aeb2008-02-07 00:15:45 -0800481 unlock_new_inode(inode);
Alexey Dobriyan99b76232009-03-25 22:48:06 +0300482 } else
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800483 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Pavel Emelyanov07543f52007-10-18 23:40:08 -0700487int proc_fill_super(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Linus Torvalds92d03282006-07-15 12:20:05 -0700489 s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 s->s_blocksize = 1024;
491 s->s_blocksize_bits = 10;
492 s->s_magic = PROC_SUPER_MAGIC;
493 s->s_op = &proc_sops;
494 s->s_time_gran = 1;
495
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800496 pde_get(&proc_root);
Al Viro48fde702012-01-08 22:15:13 -0500497 s->s_root = d_make_root(proc_get_inode(s, &proc_root));
498 if (s->s_root)
499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 printk("proc_read_super: get root inode failed\n");
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800502 pde_put(&proc_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return -ENOMEM;
504}