blob: d50224c7021521f6c08dd0aa25c09ae744b662d0 [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>
Andrew Morton87ebdc02013-02-27 17:03:16 -080016#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/file.h>
18#include <linux/limits.h>
19#include <linux/init.h>
20#include <linux/module.h>
Al Viro90434762008-07-15 08:54:06 -040021#include <linux/sysctl.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080022#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Vasiliy Kulikov97412952012-01-10 15:11:27 -080024#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/uaccess.h>
27
Adrian Bunkfee781e2006-01-08 01:04:16 -080028#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Al Viro82679522010-06-04 22:17:56 -040030static void proc_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
32 struct proc_dir_entry *de;
Al Virodfef6dcd32011-03-08 01:25:28 -050033 struct ctl_table_header *head;
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080034 const struct proc_ns_operations *ns_ops;
Eric W. Biedermanbf056bf2011-06-18 17:48:18 -070035 void *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Mark Fashehfef26652005-09-09 13:01:31 -070037 truncate_inode_pages(&inode->i_data, 0);
Jan Karadbd57682012-05-03 14:48:02 +020038 clear_inode(inode);
Mark Fashehfef26652005-09-09 13:01:31 -070039
Eric W. Biederman99f89552006-06-26 00:25:55 -070040 /* Stop tracking associated processes */
Eric W. Biederman13b41b02006-06-26 00:25:56 -070041 put_pid(PROC_I(inode)->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 /* Let go of any associated proc directory entry */
44 de = PROC_I(inode)->pde;
Alexey Dobriyan99b76232009-03-25 22:48:06 +030045 if (de)
Alexey Dobriyan135d5652009-12-15 16:45:39 -080046 pde_put(de);
Al Virodfef6dcd32011-03-08 01:25:28 -050047 head = PROC_I(inode)->sysctl;
48 if (head) {
49 rcu_assign_pointer(PROC_I(inode)->sysctl, NULL);
50 sysctl_head_put(head);
51 }
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080052 /* Release any associated namespace */
53 ns_ops = PROC_I(inode)->ns_ops;
Eric W. Biedermanbf056bf2011-06-18 17:48:18 -070054 ns = PROC_I(inode)->ns;
55 if (ns_ops && ns)
56 ns_ops->put(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Christoph Lametere18b8902006-12-06 20:33:20 -080059static struct kmem_cache * proc_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static struct inode *proc_alloc_inode(struct super_block *sb)
62{
63 struct proc_inode *ei;
64 struct inode *inode;
65
Christoph Lametere94b1762006-12-06 20:33:17 -080066 ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!ei)
68 return NULL;
Eric W. Biederman13b41b02006-06-26 00:25:56 -070069 ei->pid = NULL;
Eric W. Biedermanaed7a6c2006-06-26 00:25:44 -070070 ei->fd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 ei->op.proc_get_link = NULL;
72 ei->pde = NULL;
Al Viro90434762008-07-15 08:54:06 -040073 ei->sysctl = NULL;
74 ei->sysctl_entry = NULL;
Eric W. Biederman6b4e3062010-03-07 16:41:34 -080075 ei->ns = NULL;
76 ei->ns_ops = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 inode = &ei->vfs_inode;
78 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
79 return inode;
80}
81
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110082static void proc_i_callback(struct rcu_head *head)
83{
84 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110085 kmem_cache_free(proc_inode_cachep, PROC_I(inode));
86}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void proc_destroy_inode(struct inode *inode)
89{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110090 call_rcu(&inode->i_rcu, proc_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070093static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct proc_inode *ei = (struct proc_inode *) foo;
96
Christoph Lametera35afb82007-05-16 22:10:57 -070097 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
Paul Mundt20c2df82007-07-20 10:11:58 +090099
Alexey Dobriyan5bcd7ff2008-10-17 03:43:55 +0400100void __init proc_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 proc_inode_cachep = kmem_cache_create("proc_inode_cache",
103 sizeof(struct proc_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800104 0, (SLAB_RECLAIM_ACCOUNT|
Alexey Dobriyan040b5c62007-10-16 23:26:10 -0700105 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900106 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800109static int proc_show_options(struct seq_file *seq, struct dentry *root)
110{
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800111 struct super_block *sb = root->d_sb;
112 struct pid_namespace *pid = sb->s_fs_info;
113
Eric W. Biedermandcb0f222012-02-09 08:48:21 -0800114 if (!gid_eq(pid->pid_gid, GLOBAL_ROOT_GID))
115 seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, pid->pid_gid));
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800116 if (pid->hide_pid != 0)
117 seq_printf(seq, ",hidepid=%u", pid->hide_pid);
118
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800119 return 0;
120}
121
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800122static const struct super_operations proc_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .alloc_inode = proc_alloc_inode,
124 .destroy_inode = proc_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .drop_inode = generic_delete_inode,
Al Viro82679522010-06-04 22:17:56 -0400126 .evict_inode = proc_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .statfs = simple_statfs,
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800128 .remount_fs = proc_remount,
129 .show_options = proc_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Al Viro866ad9a2013-04-03 19:07:30 -0400132enum {BIAS = -1U<<31};
133
134static inline int use_pde(struct proc_dir_entry *pde)
135{
Al Viro05c0ae22013-04-04 16:28:47 -0400136 return atomic_inc_unless_negative(&pde->in_use);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700137}
138
Al Viro866ad9a2013-04-03 19:07:30 -0400139static void unuse_pde(struct proc_dir_entry *pde)
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700140{
Al Viro05c0ae22013-04-04 16:28:47 -0400141 if (atomic_dec_return(&pde->in_use) == BIAS)
142 complete(pde->pde_unload_completion);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700143}
144
Al Viroca469f32013-04-03 19:57:00 -0400145/* pde is locked */
146static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo)
147{
Al Viro05c0ae22013-04-04 16:28:47 -0400148 if (pdeo->closing) {
Al Viroca469f32013-04-03 19:57:00 -0400149 /* somebody else is doing that, just wait */
Al Viro05c0ae22013-04-04 16:28:47 -0400150 DECLARE_COMPLETION_ONSTACK(c);
151 pdeo->c = &c;
Al Viroca469f32013-04-03 19:57:00 -0400152 spin_unlock(&pde->pde_unload_lock);
Al Viro05c0ae22013-04-04 16:28:47 -0400153 wait_for_completion(&c);
Al Viroca469f32013-04-03 19:57:00 -0400154 spin_lock(&pde->pde_unload_lock);
Al Viroca469f32013-04-03 19:57:00 -0400155 } else {
156 struct file *file;
Al Viro05c0ae22013-04-04 16:28:47 -0400157 pdeo->closing = 1;
Al Viroca469f32013-04-03 19:57:00 -0400158 spin_unlock(&pde->pde_unload_lock);
159 file = pdeo->file;
160 pde->proc_fops->release(file_inode(file), file);
161 spin_lock(&pde->pde_unload_lock);
162 list_del_init(&pdeo->lh);
Al Viro05c0ae22013-04-04 16:28:47 -0400163 if (pdeo->c)
164 complete(pdeo->c);
Al Viroca469f32013-04-03 19:57:00 -0400165 kfree(pdeo);
Al Viro05c0ae22013-04-04 16:28:47 -0400166 }
Al Viroca469f32013-04-03 19:57:00 -0400167}
168
Al Viro866ad9a2013-04-03 19:07:30 -0400169void proc_entry_rundown(struct proc_dir_entry *de)
170{
Al Viro05c0ae22013-04-04 16:28:47 -0400171 DECLARE_COMPLETION_ONSTACK(c);
Al Viro866ad9a2013-04-03 19:07:30 -0400172 /* Wait until all existing callers into module are done. */
Al Viro05c0ae22013-04-04 16:28:47 -0400173 de->pde_unload_completion = &c;
174 if (atomic_add_return(BIAS, &de->in_use) != BIAS)
175 wait_for_completion(&c);
Al Viro866ad9a2013-04-03 19:07:30 -0400176
Al Viro05c0ae22013-04-04 16:28:47 -0400177 spin_lock(&de->pde_unload_lock);
Al Viro866ad9a2013-04-03 19:07:30 -0400178 while (!list_empty(&de->pde_openers)) {
179 struct pde_opener *pdeo;
Al Viro866ad9a2013-04-03 19:07:30 -0400180 pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh);
Al Viroca469f32013-04-03 19:57:00 -0400181 close_pdeo(de, pdeo);
Al Viro866ad9a2013-04-03 19:07:30 -0400182 }
183 spin_unlock(&de->pde_unload_lock);
184}
185
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700186static loff_t proc_reg_llseek(struct file *file, loff_t offset, int whence)
187{
Al Viro496ad9a2013-01-23 17:07:38 -0500188 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700189 loff_t rv = -EINVAL;
Al Viro866ad9a2013-04-03 19:07:30 -0400190 if (use_pde(pde)) {
191 loff_t (*llseek)(struct file *, loff_t, int);
192 llseek = pde->proc_fops->llseek;
193 if (!llseek)
194 llseek = default_llseek;
195 rv = llseek(file, offset, whence);
196 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700197 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700198 return rv;
199}
200
201static ssize_t proc_reg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
202{
Al Viro866ad9a2013-04-03 19:07:30 -0400203 ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
Al Viro496ad9a2013-01-23 17:07:38 -0500204 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700205 ssize_t rv = -EIO;
Al Viro866ad9a2013-04-03 19:07:30 -0400206 if (use_pde(pde)) {
207 read = pde->proc_fops->read;
208 if (read)
209 rv = read(file, buf, count, ppos);
210 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700211 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700212 return rv;
213}
214
215static ssize_t proc_reg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
216{
Al Viro866ad9a2013-04-03 19:07:30 -0400217 ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
Al Viro496ad9a2013-01-23 17:07:38 -0500218 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700219 ssize_t rv = -EIO;
Al Viro866ad9a2013-04-03 19:07:30 -0400220 if (use_pde(pde)) {
221 write = pde->proc_fops->write;
222 if (write)
223 rv = write(file, buf, count, ppos);
224 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700225 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700226 return rv;
227}
228
229static unsigned int proc_reg_poll(struct file *file, struct poll_table_struct *pts)
230{
Al Viro496ad9a2013-01-23 17:07:38 -0500231 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyandd23aae2007-09-11 15:23:55 -0700232 unsigned int rv = DEFAULT_POLLMASK;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700233 unsigned int (*poll)(struct file *, struct poll_table_struct *);
Al Viro866ad9a2013-04-03 19:07:30 -0400234 if (use_pde(pde)) {
235 poll = pde->proc_fops->poll;
236 if (poll)
237 rv = poll(file, pts);
238 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700239 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700240 return rv;
241}
242
243static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
244{
Al Viro496ad9a2013-01-23 17:07:38 -0500245 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700246 long rv = -ENOTTY;
Arnd Bergmannb19dd422010-07-04 00:15:10 +0200247 long (*ioctl)(struct file *, unsigned int, unsigned long);
Al Viro866ad9a2013-04-03 19:07:30 -0400248 if (use_pde(pde)) {
249 ioctl = pde->proc_fops->unlocked_ioctl;
250 if (ioctl)
251 rv = ioctl(file, cmd, arg);
252 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700253 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700254 return rv;
255}
256
257#ifdef CONFIG_COMPAT
258static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
259{
Al Viro496ad9a2013-01-23 17:07:38 -0500260 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700261 long rv = -ENOTTY;
262 long (*compat_ioctl)(struct file *, unsigned int, unsigned long);
Al Viro866ad9a2013-04-03 19:07:30 -0400263 if (use_pde(pde)) {
264 compat_ioctl = pde->proc_fops->compat_ioctl;
265 if (compat_ioctl)
266 rv = compat_ioctl(file, cmd, arg);
267 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700268 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700269 return rv;
270}
271#endif
272
273static int proc_reg_mmap(struct file *file, struct vm_area_struct *vma)
274{
Al Viro496ad9a2013-01-23 17:07:38 -0500275 struct proc_dir_entry *pde = PDE(file_inode(file));
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700276 int rv = -EIO;
277 int (*mmap)(struct file *, struct vm_area_struct *);
Al Viro866ad9a2013-04-03 19:07:30 -0400278 if (use_pde(pde)) {
279 mmap = pde->proc_fops->mmap;
280 if (mmap)
281 rv = mmap(file, vma);
282 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700283 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700284 return rv;
285}
286
287static int proc_reg_open(struct inode *inode, struct file *file)
288{
289 struct proc_dir_entry *pde = PDE(inode);
290 int rv = 0;
291 int (*open)(struct inode *, struct file *);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700292 int (*release)(struct inode *, struct file *);
293 struct pde_opener *pdeo;
294
295 /*
296 * What for, you ask? Well, we can have open, rmmod, remove_proc_entry
297 * sequence. ->release won't be called because ->proc_fops will be
298 * cleared. Depending on complexity of ->release, consequences vary.
299 *
300 * We can't wait for mercy when close will be done for real, it's
301 * deadlockable: rmmod foo </proc/foo . So, we're going to do ->release
302 * by hand in remove_proc_entry(). For this, save opener's credentials
303 * for later.
304 */
Al Viro05c0ae22013-04-04 16:28:47 -0400305 pdeo = kzalloc(sizeof(struct pde_opener), GFP_KERNEL);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700306 if (!pdeo)
307 return -ENOMEM;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700308
Al Viro866ad9a2013-04-03 19:07:30 -0400309 if (!use_pde(pde)) {
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700310 kfree(pdeo);
Daisuke Oginod2857e72011-07-26 16:08:37 -0700311 return -ENOENT;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700312 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700313 open = pde->proc_fops->open;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700314 release = pde->proc_fops->release;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700315
316 if (open)
317 rv = open(inode, file);
318
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700319 if (rv == 0 && release) {
320 /* To know what to release. */
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700321 pdeo->file = file;
322 /* Strictly for "too late" ->release in proc_reg_release(). */
Al Viro05c0ae22013-04-04 16:28:47 -0400323 spin_lock(&pde->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700324 list_add(&pdeo->lh, &pde->pde_openers);
Al Viro05c0ae22013-04-04 16:28:47 -0400325 spin_unlock(&pde->pde_unload_lock);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700326 } else
327 kfree(pdeo);
Al Viro05c0ae22013-04-04 16:28:47 -0400328
329 unuse_pde(pde);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700330 return rv;
331}
332
333static int proc_reg_release(struct inode *inode, struct file *file)
334{
335 struct proc_dir_entry *pde = PDE(inode);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700336 struct pde_opener *pdeo;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700337 spin_lock(&pde->pde_unload_lock);
Al Viroca469f32013-04-03 19:57:00 -0400338 list_for_each_entry(pdeo, &pde->pde_openers, lh) {
339 if (pdeo->file == file) {
340 close_pdeo(pde, pdeo);
341 break;
342 }
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700343 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700344 spin_unlock(&pde->pde_unload_lock);
Al Viroca469f32013-04-03 19:57:00 -0400345 return 0;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700346}
347
348static const struct file_operations proc_reg_file_ops = {
349 .llseek = proc_reg_llseek,
350 .read = proc_reg_read,
351 .write = proc_reg_write,
352 .poll = proc_reg_poll,
353 .unlocked_ioctl = proc_reg_unlocked_ioctl,
354#ifdef CONFIG_COMPAT
355 .compat_ioctl = proc_reg_compat_ioctl,
356#endif
357 .mmap = proc_reg_mmap,
358 .open = proc_reg_open,
359 .release = proc_reg_release,
360};
361
David Miller778f3dd2007-07-27 22:58:37 -0700362#ifdef CONFIG_COMPAT
363static const struct file_operations proc_reg_file_ops_no_compat = {
364 .llseek = proc_reg_llseek,
365 .read = proc_reg_read,
366 .write = proc_reg_write,
367 .poll = proc_reg_poll,
368 .unlocked_ioctl = proc_reg_unlocked_ioctl,
369 .mmap = proc_reg_mmap,
370 .open = proc_reg_open,
371 .release = proc_reg_release,
372};
373#endif
374
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800375struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Linus Torvalds51f08852013-03-22 11:44:04 -0700377 struct inode *inode = new_inode_pseudo(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds51f08852013-03-22 11:44:04 -0700379 if (inode) {
380 inode->i_ino = de->low_ino;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800381 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800382 PROC_I(inode)->pde = de;
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700383
384 if (de->mode) {
385 inode->i_mode = de->mode;
386 inode->i_uid = de->uid;
387 inode->i_gid = de->gid;
388 }
389 if (de->size)
390 inode->i_size = de->size;
391 if (de->nlink)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200392 set_nlink(inode, de->nlink);
Al Virob6cdc732013-03-30 21:20:14 -0400393 WARN_ON(!de->proc_iops);
394 inode->i_op = de->proc_iops;
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700395 if (de->proc_fops) {
396 if (S_ISREG(inode->i_mode)) {
David Howellsa1d4aeb2008-02-07 00:15:45 -0800397#ifdef CONFIG_COMPAT
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700398 if (!de->proc_fops->compat_ioctl)
399 inode->i_fop =
400 &proc_reg_file_ops_no_compat;
401 else
David Howellsa1d4aeb2008-02-07 00:15:45 -0800402#endif
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700403 inode->i_fop = &proc_reg_file_ops;
404 } else {
405 inode->i_fop = de->proc_fops;
David Howellsa1d4aeb2008-02-07 00:15:45 -0800406 }
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700407 }
Alexey Dobriyan99b76232009-03-25 22:48:06 +0300408 } else
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800409 pde_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return inode;
Al Virod3d009c2013-01-25 20:11:22 -0500411}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Pavel Emelyanov07543f52007-10-18 23:40:08 -0700413int proc_fill_super(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Maxim Patlasov87e0aab2013-02-20 13:13:32 +1100415 struct inode *root_inode;
416
Linus Torvalds92d03282006-07-15 12:20:05 -0700417 s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 s->s_blocksize = 1024;
419 s->s_blocksize_bits = 10;
420 s->s_magic = PROC_SUPER_MAGIC;
421 s->s_op = &proc_sops;
422 s->s_time_gran = 1;
423
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800424 pde_get(&proc_root);
Maxim Patlasov87e0aab2013-02-20 13:13:32 +1100425 root_inode = proc_get_inode(s, &proc_root);
426 if (!root_inode) {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800427 pr_err("proc_fill_super: get root inode failed\n");
Maxim Patlasov87e0aab2013-02-20 13:13:32 +1100428 return -ENOMEM;
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Maxim Patlasov87e0aab2013-02-20 13:13:32 +1100431 s->s_root = d_make_root(root_inode);
432 if (!s->s_root) {
Andrew Morton87ebdc02013-02-27 17:03:16 -0800433 pr_err("proc_fill_super: allocate dentry failed\n");
Maxim Patlasov87e0aab2013-02-20 13:13:32 +1100434 return -ENOMEM;
435 }
436
Al Viro021ada72013-03-29 19:27:05 -0400437 return proc_setup_self(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}