blob: c330495c3115ed24162846f93e3da382e0757945 [file] [log] [blame]
Ingo Molnar3f07c012017-02-08 18:51:30 +01001#include <linux/sched/signal.h>
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04002#include <linux/errno.h>
3#include <linux/dcache.h>
4#include <linux/path.h>
5#include <linux/fdtable.h>
6#include <linux/namei.h>
7#include <linux/pid.h>
8#include <linux/security.h>
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +04009#include <linux/file.h>
10#include <linux/seq_file.h>
Andrey Vagin6c8c9032015-04-16 12:49:38 -070011#include <linux/fs.h>
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040012
13#include <linux/proc_fs.h>
14
Andrey Vagin49d063c2014-04-07 15:38:34 -070015#include "../mount.h"
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040016#include "internal.h"
17#include "fd.h"
18
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040019static int seq_show(struct seq_file *m, void *v)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040020{
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040021 struct files_struct *files = NULL;
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040022 int f_flags = 0, ret = -ENOENT;
23 struct file *file = NULL;
24 struct task_struct *task;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040025
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040026 task = get_proc_task(m->private);
27 if (!task)
28 return -ENOENT;
29
30 files = get_files_struct(task);
31 put_task_struct(task);
32
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040033 if (files) {
Alexey Dobriyan771187d2016-09-02 00:42:02 +030034 unsigned int fd = proc_fd(m->private);
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040035
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040036 spin_lock(&files->file_lock);
37 file = fcheck_files(files, fd);
38 if (file) {
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040039 struct fdtable *fdt = files_fdtable(files);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040040
Al Viroc6f3d812012-08-26 11:01:04 -040041 f_flags = file->f_flags;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040042 if (close_on_exec(fd, fdt))
43 f_flags |= O_CLOEXEC;
44
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040045 get_file(file);
46 ret = 0;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040047 }
48 spin_unlock(&files->file_lock);
49 put_files_struct(files);
50 }
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040051
Andrey Vagin6c8c9032015-04-16 12:49:38 -070052 if (ret)
53 return ret;
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040054
Andrey Vagin6c8c9032015-04-16 12:49:38 -070055 seq_printf(m, "pos:\t%lli\nflags:\t0%o\nmnt_id:\t%i\n",
56 (long long)file->f_pos, f_flags,
57 real_mount(file->f_path.mnt)->mnt_id);
58
59 show_fd_locks(m, file, files);
60 if (seq_has_overflowed(m))
61 goto out;
62
63 if (file->f_op->show_fdinfo)
64 file->f_op->show_fdinfo(m, file);
65
66out:
67 fput(file);
68 return 0;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040069}
70
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +040071static int seq_fdinfo_open(struct inode *inode, struct file *file)
72{
73 return single_open(file, seq_show, inode);
74}
75
76static const struct file_operations proc_fdinfo_file_operations = {
77 .open = seq_fdinfo_open,
78 .read = seq_read,
79 .llseek = seq_lseek,
80 .release = single_release,
81};
82
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040083static int tid_fd_revalidate(struct dentry *dentry, unsigned int flags)
84{
85 struct files_struct *files;
86 struct task_struct *task;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040087 struct inode *inode;
Alexey Dobriyan771187d2016-09-02 00:42:02 +030088 unsigned int fd;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040089
90 if (flags & LOOKUP_RCU)
91 return -ECHILD;
92
David Howells2b0143b2015-03-17 22:25:59 +000093 inode = d_inode(dentry);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040094 task = get_proc_task(inode);
95 fd = proc_fd(inode);
96
97 if (task) {
98 files = get_files_struct(task);
99 if (files) {
100 struct file *file;
101
102 rcu_read_lock();
103 file = fcheck_files(files, fd);
104 if (file) {
105 unsigned f_mode = file->f_mode;
106
107 rcu_read_unlock();
108 put_files_struct(files);
109
Eric W. Biederman68eb94f2017-01-03 10:23:11 +1300110 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400111
112 if (S_ISLNK(inode->i_mode)) {
113 unsigned i_mode = S_IFLNK;
114 if (f_mode & FMODE_READ)
115 i_mode |= S_IRUSR | S_IXUSR;
116 if (f_mode & FMODE_WRITE)
117 i_mode |= S_IWUSR | S_IXUSR;
118 inode->i_mode = i_mode;
119 }
120
121 security_task_to_inode(task, inode);
122 put_task_struct(task);
123 return 1;
124 }
125 rcu_read_unlock();
126 put_files_struct(files);
127 }
128 put_task_struct(task);
129 }
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400130 return 0;
131}
132
133static const struct dentry_operations tid_fd_dentry_operations = {
134 .d_revalidate = tid_fd_revalidate,
135 .d_delete = pid_delete_dentry,
136};
137
138static int proc_fd_link(struct dentry *dentry, struct path *path)
139{
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +0400140 struct files_struct *files = NULL;
141 struct task_struct *task;
142 int ret = -ENOENT;
143
David Howells2b0143b2015-03-17 22:25:59 +0000144 task = get_proc_task(d_inode(dentry));
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +0400145 if (task) {
146 files = get_files_struct(task);
147 put_task_struct(task);
148 }
149
150 if (files) {
Alexey Dobriyan771187d2016-09-02 00:42:02 +0300151 unsigned int fd = proc_fd(d_inode(dentry));
Cyrill Gorcunovddd3e072012-08-26 18:28:20 +0400152 struct file *fd_file;
153
154 spin_lock(&files->file_lock);
155 fd_file = fcheck_files(files, fd);
156 if (fd_file) {
157 *path = fd_file->f_path;
158 path_get(&fd_file->f_path);
159 ret = 0;
160 }
161 spin_unlock(&files->file_lock);
162 put_files_struct(files);
163 }
164
165 return ret;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400166}
167
Al Viroc52a47a2013-06-15 11:15:20 +0400168static int
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400169proc_fd_instantiate(struct inode *dir, struct dentry *dentry,
170 struct task_struct *task, const void *ptr)
171{
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400172 unsigned fd = (unsigned long)ptr;
173 struct proc_inode *ei;
174 struct inode *inode;
175
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +0100176 inode = proc_pid_make_inode(dir->i_sb, task, S_IFLNK);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400177 if (!inode)
178 goto out;
179
180 ei = PROC_I(inode);
181 ei->fd = fd;
182
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400183 inode->i_op = &proc_pid_link_inode_operations;
184 inode->i_size = 64;
185
186 ei->op.proc_get_link = proc_fd_link;
187
188 d_set_d_op(dentry, &tid_fd_dentry_operations);
189 d_add(dentry, inode);
190
191 /* Close the race of the process dying before we return the dentry */
192 if (tid_fd_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +0400193 return 0;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400194 out:
Al Viroc52a47a2013-06-15 11:15:20 +0400195 return -ENOENT;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400196}
197
198static struct dentry *proc_lookupfd_common(struct inode *dir,
199 struct dentry *dentry,
200 instantiate_t instantiate)
201{
202 struct task_struct *task = get_proc_task(dir);
Al Viroc52a47a2013-06-15 11:15:20 +0400203 int result = -ENOENT;
Alexey Dobriyandbcdb502014-08-08 14:21:25 -0700204 unsigned fd = name_to_int(&dentry->d_name);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400205
206 if (!task)
207 goto out_no_task;
208 if (fd == ~0U)
209 goto out;
210
211 result = instantiate(dir, dentry, task, (void *)(unsigned long)fd);
212out:
213 put_task_struct(task);
214out_no_task:
Al Viroc52a47a2013-06-15 11:15:20 +0400215 return ERR_PTR(result);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400216}
217
Al Virof0c3b502013-05-16 12:07:31 -0400218static int proc_readfd_common(struct file *file, struct dir_context *ctx,
219 instantiate_t instantiate)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400220{
Al Virof0c3b502013-05-16 12:07:31 -0400221 struct task_struct *p = get_proc_task(file_inode(file));
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400222 struct files_struct *files;
Al Virof0c3b502013-05-16 12:07:31 -0400223 unsigned int fd;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400224
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400225 if (!p)
Al Virof0c3b502013-05-16 12:07:31 -0400226 return -ENOENT;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400227
Al Virof0c3b502013-05-16 12:07:31 -0400228 if (!dir_emit_dots(file, ctx))
229 goto out;
Al Virof0c3b502013-05-16 12:07:31 -0400230 files = get_files_struct(p);
231 if (!files)
232 goto out;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400233
Al Virof0c3b502013-05-16 12:07:31 -0400234 rcu_read_lock();
235 for (fd = ctx->pos - 2;
236 fd < files_fdtable(files)->max_fds;
237 fd++, ctx->pos++) {
238 char name[PROC_NUMBUF];
239 int len;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400240
Al Virof0c3b502013-05-16 12:07:31 -0400241 if (!fcheck_files(files, fd))
242 continue;
243 rcu_read_unlock();
244
Alexey Dobriyan771187d2016-09-02 00:42:02 +0300245 len = snprintf(name, sizeof(name), "%u", fd);
Al Virof0c3b502013-05-16 12:07:31 -0400246 if (!proc_fill_cache(file, ctx,
247 name, len, instantiate, p,
248 (void *)(unsigned long)fd))
249 goto out_fd_loop;
Eric Dumazet3cc4a842015-12-03 11:12:07 -0800250 cond_resched();
Al Virof0c3b502013-05-16 12:07:31 -0400251 rcu_read_lock();
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400252 }
Al Virof0c3b502013-05-16 12:07:31 -0400253 rcu_read_unlock();
254out_fd_loop:
255 put_files_struct(files);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400256out:
257 put_task_struct(p);
Al Virof0c3b502013-05-16 12:07:31 -0400258 return 0;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400259}
260
Al Virof0c3b502013-05-16 12:07:31 -0400261static int proc_readfd(struct file *file, struct dir_context *ctx)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400262{
Al Virof0c3b502013-05-16 12:07:31 -0400263 return proc_readfd_common(file, ctx, proc_fd_instantiate);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400264}
265
266const struct file_operations proc_fd_operations = {
267 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400268 .iterate_shared = proc_readfd,
269 .llseek = generic_file_llseek,
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400270};
271
272static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
273 unsigned int flags)
274{
275 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
276}
277
278/*
279 * /proc/pid/fd needs a special permission handler so that a process can still
280 * access /proc/self/fd after it has executed a setuid().
281 */
282int proc_fd_permission(struct inode *inode, int mask)
283{
Oleg Nesterov54708d22015-11-06 16:30:06 -0800284 struct task_struct *p;
285 int rv;
286
287 rv = generic_permission(inode, mask);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400288 if (rv == 0)
Oleg Nesterov54708d22015-11-06 16:30:06 -0800289 return rv;
290
291 rcu_read_lock();
292 p = pid_task(proc_pid(inode), PIDTYPE_PID);
293 if (p && same_thread_group(p, current))
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400294 rv = 0;
Oleg Nesterov54708d22015-11-06 16:30:06 -0800295 rcu_read_unlock();
296
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400297 return rv;
298}
299
300const struct inode_operations proc_fd_inode_operations = {
301 .lookup = proc_lookupfd,
302 .permission = proc_fd_permission,
303 .setattr = proc_setattr,
304};
305
Al Viroc52a47a2013-06-15 11:15:20 +0400306static int
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400307proc_fdinfo_instantiate(struct inode *dir, struct dentry *dentry,
308 struct task_struct *task, const void *ptr)
309{
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400310 unsigned fd = (unsigned long)ptr;
311 struct proc_inode *ei;
312 struct inode *inode;
313
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +0100314 inode = proc_pid_make_inode(dir->i_sb, task, S_IFREG | S_IRUSR);
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400315 if (!inode)
316 goto out;
317
318 ei = PROC_I(inode);
319 ei->fd = fd;
320
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400321 inode->i_fop = &proc_fdinfo_file_operations;
322
323 d_set_d_op(dentry, &tid_fd_dentry_operations);
324 d_add(dentry, inode);
325
326 /* Close the race of the process dying before we return the dentry */
327 if (tid_fd_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +0400328 return 0;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400329 out:
Al Viroc52a47a2013-06-15 11:15:20 +0400330 return -ENOENT;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400331}
332
333static struct dentry *
334proc_lookupfdinfo(struct inode *dir, struct dentry *dentry, unsigned int flags)
335{
336 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
337}
338
Al Virof0c3b502013-05-16 12:07:31 -0400339static int proc_readfdinfo(struct file *file, struct dir_context *ctx)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400340{
Al Virof0c3b502013-05-16 12:07:31 -0400341 return proc_readfd_common(file, ctx,
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400342 proc_fdinfo_instantiate);
343}
344
345const struct inode_operations proc_fdinfo_inode_operations = {
346 .lookup = proc_lookupfdinfo,
347 .setattr = proc_setattr,
348};
349
350const struct file_operations proc_fdinfo_operations = {
351 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400352 .iterate_shared = proc_readfdinfo,
353 .llseek = generic_file_llseek,
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400354};