blob: 00cd85f18bcc74e4192513b7240446619b778726 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/proc/base.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * proc base directory handling functions
7 *
8 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
9 * Instead of using magical inumbers to determine the kind of object
10 * we allocate and fill in-core inodes upon lookup. They don't even
11 * go into icache. We cache the reference to task_struct upon lookup too.
12 * Eventually it should become a filesystem in its own. We don't use the
13 * rest of procfs anymore.
Mauricio Line070ad42005-09-03 15:55:10 -070014 *
15 *
16 * Changelog:
17 * 17-Jan-2005
18 * Allan Bezerra
19 * Bruna Moreira <bruna.moreira@indt.org.br>
20 * Edjard Mota <edjard.mota@indt.org.br>
21 * Ilias Biris <ilias.biris@indt.org.br>
22 * Mauricio Lin <mauricio.lin@indt.org.br>
23 *
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
25 *
26 * A new process specific entry (smaps) included in /proc. It shows the
27 * size of rss for each memory area. The maps entry lacks information
28 * about physical memory size (rss) for each mapped file, i.e.,
29 * rss information for executables and library files.
30 * This additional information is useful for any tools that need to know
31 * about physical memory consumption for a process specific library.
32 *
33 * Changelog:
34 * 21-Feb-2005
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
37 *
38 * ChangeLog:
39 * 10-Mar-2005
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
42 *
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
45 *
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50#include <asm/uaccess.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/time.h>
54#include <linux/proc_fs.h>
55#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020056#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080058#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040060#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/seq_file.h>
63#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070066#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030069#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070070#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070071#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/mount.h>
73#include <linux/security.h>
74#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070075#include <linux/tracehook.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080076#include <linux/printk.h>
Paul Menagea4243162007-10-18 23:39:35 -070077#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpuset.h>
79#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050080#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070081#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070082#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070083#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070084#include <linux/pid_namespace.h>
Eric W. Biederman22d917d2011-11-17 00:11:58 -080085#include <linux/user_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040086#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090087#include <linux/slab.h>
Pavel Emelyanov640708a2012-01-10 15:11:23 -080088#include <linux/flex_array.h>
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +040089#include <linux/posix-timers.h>
Chris Metcalff133ecc2011-05-26 12:40:09 -040090#ifdef CONFIG_HARDWALL
91#include <asm/hardwall.h>
92#endif
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -080093#include <trace/events/oom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include "internal.h"
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040095#include "fd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070097/* NOTE:
98 * Implementing inode permission operations in /proc is almost
99 * certainly an error. Permission checks need to happen during
100 * each system call not at open time. The reason is that most of
101 * what we wish to check for permissions in /proc varies at runtime.
102 *
103 * The classic example of a problem is opening file descriptors
104 * in /proc for a task before it execs a suid executable.
105 */
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107struct pid_entry {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700108 const char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700109 int len;
Al Virod161a132011-07-24 03:36:29 -0400110 umode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800111 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800112 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700113 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Eric W. Biederman61a28782006-10-02 02:18:49 -0700116#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700117 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700118 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700119 .mode = MODE, \
120 .iop = IOP, \
121 .fop = FOP, \
122 .op = OP, \
123}
124
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300125#define DIR(NAME, MODE, iops, fops) \
126 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
127#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700128 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700129 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300130 { .proc_get_link = get_link } )
131#define REG(NAME, MODE, fops) \
132 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300133#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800134 NOD(NAME, (S_IFREG|(MODE)), \
135 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300136 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Vegard Nossumaed54172008-06-05 22:46:53 -0700138/*
139 * Count the number of hardlinks for the pid_entry table, excluding the .
140 * and .. links.
141 */
142static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
143 unsigned int n)
144{
145 unsigned int i;
146 unsigned int count;
147
148 count = 0;
149 for (i = 0; i < n; ++i) {
150 if (S_ISDIR(entries[i].mode))
151 ++count;
152 }
153
154 return count;
155}
156
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200157static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000159 int result = -ENOENT;
160
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700161 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200162 if (task->fs) {
163 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000164 result = 0;
165 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000167 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700168}
169
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800170static int proc_cwd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700171{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800172 struct task_struct *task = get_proc_task(dentry->d_inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700173 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700174
175 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200176 task_lock(task);
177 if (task->fs) {
178 get_fs_pwd(task->fs, path);
179 result = 0;
180 }
181 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700182 put_task_struct(task);
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return result;
185}
186
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800187static int proc_root_link(struct dentry *dentry, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800189 struct task_struct *task = get_proc_task(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700191
192 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200193 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700194 put_task_struct(task);
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return result;
197}
198
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700199static int proc_pid_cmdline(struct seq_file *m, struct pid_namespace *ns,
200 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700202 /*
203 * Rely on struct seq_operations::show() being called once
204 * per internal buffer allocation. See single_open(), traverse().
205 */
206 BUG_ON(m->size < PAGE_SIZE);
207 m->count += get_cmdline(task, m->buf, PAGE_SIZE);
208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700211static int proc_pid_auxv(struct seq_file *m, struct pid_namespace *ns,
212 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Cong Wange7dcd992012-05-31 16:26:17 -0700214 struct mm_struct *mm = mm_access(task, PTRACE_MODE_READ);
Al Viro2fadaef2011-02-15 22:52:11 -0500215 if (mm && !IS_ERR(mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300217 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300219 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700220 seq_write(m, mm->saved_auxv, nwords * sizeof(mm->saved_auxv[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mmput(mm);
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700222 return 0;
223 } else
224 return PTR_ERR(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227
228#ifdef CONFIG_KALLSYMS
229/*
230 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
231 * Returns the resolved symbol. If that fails, simply return the address.
232 */
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700233static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
234 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700236 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700237 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 wchan = get_wchan(task);
240
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700241 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600242 if (!ptrace_may_access(task, PTRACE_MODE_READ))
243 return 0;
244 else
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700245 return seq_printf(m, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700246 else
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700247 return seq_printf(m, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249#endif /* CONFIG_KALLSYMS */
250
Al Viroa9712bc2011-03-23 15:52:50 -0400251static int lock_trace(struct task_struct *task)
252{
253 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
254 if (err)
255 return err;
256 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
257 mutex_unlock(&task->signal->cred_guard_mutex);
258 return -EPERM;
259 }
260 return 0;
261}
262
263static void unlock_trace(struct task_struct *task)
264{
265 mutex_unlock(&task->signal->cred_guard_mutex);
266}
267
Ken Chen2ec220e2008-11-10 11:26:08 +0300268#ifdef CONFIG_STACKTRACE
269
270#define MAX_STACK_TRACE_DEPTH 64
271
272static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
273 struct pid *pid, struct task_struct *task)
274{
275 struct stack_trace trace;
276 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400277 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300278 int i;
279
280 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
281 if (!entries)
282 return -ENOMEM;
283
284 trace.nr_entries = 0;
285 trace.max_entries = MAX_STACK_TRACE_DEPTH;
286 trace.entries = entries;
287 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300288
Al Viroa9712bc2011-03-23 15:52:50 -0400289 err = lock_trace(task);
290 if (!err) {
291 save_stack_trace_tsk(task, &trace);
292
293 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvaldsb81a6182011-03-23 20:51:42 -0700294 seq_printf(m, "[<%pK>] %pS\n",
Al Viroa9712bc2011-03-23 15:52:50 -0400295 (void *)entries[i], (void *)entries[i]);
296 }
297 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300298 }
299 kfree(entries);
300
Al Viroa9712bc2011-03-23 15:52:50 -0400301 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300302}
303#endif
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305#ifdef CONFIG_SCHEDSTATS
306/*
307 * Provides /proc/PID/schedstat
308 */
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700309static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
310 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700312 return seq_printf(m, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100313 (unsigned long long)task->se.sum_exec_runtime,
314 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200315 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317#endif
318
Arjan van de Ven97455122008-01-25 21:08:34 +0100319#ifdef CONFIG_LATENCYTOP
320static int lstats_show_proc(struct seq_file *m, void *v)
321{
322 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800323 struct inode *inode = m->private;
324 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100325
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800326 if (!task)
327 return -ESRCH;
328 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100329 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800330 struct latency_record *lr = &task->latency_record[i];
331 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100332 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800333 seq_printf(m, "%i %li %li",
334 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100335 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800336 unsigned long bt = lr->backtrace[q];
337 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100338 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800339 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100340 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800341 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100342 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800343 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100344 }
345
346 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800347 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100348 return 0;
349}
350
351static int lstats_open(struct inode *inode, struct file *file)
352{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800353 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800354}
355
Arjan van de Ven97455122008-01-25 21:08:34 +0100356static ssize_t lstats_write(struct file *file, const char __user *buf,
357 size_t count, loff_t *offs)
358{
Al Viro496ad9a2013-01-23 17:07:38 -0500359 struct task_struct *task = get_proc_task(file_inode(file));
Arjan van de Ven97455122008-01-25 21:08:34 +0100360
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800361 if (!task)
362 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100363 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800364 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100365
366 return count;
367}
368
369static const struct file_operations proc_lstats_operations = {
370 .open = lstats_open,
371 .read = seq_read,
372 .write = lstats_write,
373 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800374 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100375};
376
377#endif
378
Al Viro8d8b97b2013-04-19 23:11:24 -0400379#ifdef CONFIG_CGROUPS
380static int cgroup_open(struct inode *inode, struct file *file)
381{
382 struct pid *pid = PROC_I(inode)->pid;
383 return single_open(file, proc_cgroup_show, pid);
384}
385
386static const struct file_operations proc_cgroup_operations = {
387 .open = cgroup_open,
388 .read = seq_read,
389 .llseek = seq_lseek,
390 .release = single_release,
391};
392#endif
393
394#ifdef CONFIG_PROC_PID_CPUSET
395
396static int cpuset_open(struct inode *inode, struct file *file)
397{
398 struct pid *pid = PROC_I(inode)->pid;
399 return single_open(file, proc_cpuset_show, pid);
400}
401
402static const struct file_operations proc_cpuset_operations = {
403 .open = cpuset_open,
404 .read = seq_read,
405 .llseek = seq_lseek,
406 .release = single_release,
407};
408#endif
409
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700410static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
411 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
David Rientjesa7f638f2012-05-29 15:06:47 -0700413 unsigned long totalpages = totalram_pages + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200414 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700416 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200417 if (pid_alive(task))
David Rientjesa7f638f2012-05-29 15:06:47 -0700418 points = oom_badness(task, NULL, NULL, totalpages) *
419 1000 / totalpages;
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700420 read_unlock(&tasklist_lock);
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700421 return seq_printf(m, "%lu\n", points);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Neil Hormand85f50d2007-10-18 23:40:37 -0700424struct limit_names {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700425 const char *name;
426 const char *unit;
Neil Hormand85f50d2007-10-18 23:40:37 -0700427};
428
429static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700430 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700431 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
432 [RLIMIT_DATA] = {"Max data size", "bytes"},
433 [RLIMIT_STACK] = {"Max stack size", "bytes"},
434 [RLIMIT_CORE] = {"Max core file size", "bytes"},
435 [RLIMIT_RSS] = {"Max resident set", "bytes"},
436 [RLIMIT_NPROC] = {"Max processes", "processes"},
437 [RLIMIT_NOFILE] = {"Max open files", "files"},
438 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
439 [RLIMIT_AS] = {"Max address space", "bytes"},
440 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
441 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
442 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
443 [RLIMIT_NICE] = {"Max nice priority", NULL},
444 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800445 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700446};
447
448/* Display limits for a process */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700449static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
450 struct pid *pid, struct task_struct *task)
Neil Hormand85f50d2007-10-18 23:40:37 -0700451{
452 unsigned int i;
Neil Hormand85f50d2007-10-18 23:40:37 -0700453 unsigned long flags;
Neil Hormand85f50d2007-10-18 23:40:37 -0700454
455 struct rlimit rlim[RLIM_NLIMITS];
456
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400457 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700458 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700459 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
460 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700461
462 /*
463 * print the file header
464 */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700465 seq_printf(m, "%-25s %-20s %-20s %-10s\n",
Neil Hormand85f50d2007-10-18 23:40:37 -0700466 "Limit", "Soft Limit", "Hard Limit", "Units");
467
468 for (i = 0; i < RLIM_NLIMITS; i++) {
469 if (rlim[i].rlim_cur == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700470 seq_printf(m, "%-25s %-20s ",
Neil Hormand85f50d2007-10-18 23:40:37 -0700471 lnames[i].name, "unlimited");
472 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700473 seq_printf(m, "%-25s %-20lu ",
Neil Hormand85f50d2007-10-18 23:40:37 -0700474 lnames[i].name, rlim[i].rlim_cur);
475
476 if (rlim[i].rlim_max == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700477 seq_printf(m, "%-20s ", "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700478 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700479 seq_printf(m, "%-20lu ", rlim[i].rlim_max);
Neil Hormand85f50d2007-10-18 23:40:37 -0700480
481 if (lnames[i].unit)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700482 seq_printf(m, "%-10s\n", lnames[i].unit);
Neil Hormand85f50d2007-10-18 23:40:37 -0700483 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700484 seq_putc(m, '\n');
Neil Hormand85f50d2007-10-18 23:40:37 -0700485 }
486
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700487 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700488}
489
Roland McGrathebcb6732008-07-25 19:46:00 -0700490#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700491static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
492 struct pid *pid, struct task_struct *task)
Roland McGrathebcb6732008-07-25 19:46:00 -0700493{
494 long nr;
495 unsigned long args[6], sp, pc;
Al Viroa9712bc2011-03-23 15:52:50 -0400496 int res = lock_trace(task);
497 if (res)
498 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700499
500 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700501 seq_puts(m, "running\n");
Al Viroa9712bc2011-03-23 15:52:50 -0400502 else if (nr < 0)
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700503 seq_printf(m, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400504 else
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700505 seq_printf(m,
Roland McGrathebcb6732008-07-25 19:46:00 -0700506 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
507 nr,
508 args[0], args[1], args[2], args[3], args[4], args[5],
509 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400510 unlock_trace(task);
511 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700512}
513#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/************************************************************************/
516/* Here the fs part begins */
517/************************************************************************/
518
519/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700520static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700522 struct task_struct *task;
523 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700524 /* Allow access to a task's file descriptors if it is us or we
525 * may use ptrace attach to the process and find out that
526 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700527 */
528 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700529 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400530 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700531 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700532 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700533 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800536int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700537{
538 int error;
539 struct inode *inode = dentry->d_inode;
540
541 if (attr->ia_valid & ATTR_MODE)
542 return -EPERM;
543
544 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200545 if (error)
546 return error;
547
Christoph Hellwig10257742010-06-04 11:30:02 +0200548 setattr_copy(inode, attr);
549 mark_inode_dirty(inode);
550 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700551}
552
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800553/*
554 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
555 * or euid/egid (for hide_pid_min=2)?
556 */
557static bool has_pid_permissions(struct pid_namespace *pid,
558 struct task_struct *task,
559 int hide_pid_min)
560{
561 if (pid->hide_pid < hide_pid_min)
562 return true;
563 if (in_group_p(pid->pid_gid))
564 return true;
565 return ptrace_may_access(task, PTRACE_MODE_READ);
566}
567
568
569static int proc_pid_permission(struct inode *inode, int mask)
570{
571 struct pid_namespace *pid = inode->i_sb->s_fs_info;
572 struct task_struct *task;
573 bool has_perms;
574
575 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800576 if (!task)
577 return -ESRCH;
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800578 has_perms = has_pid_permissions(pid, task, 1);
579 put_task_struct(task);
580
581 if (!has_perms) {
582 if (pid->hide_pid == 2) {
583 /*
584 * Let's make getdents(), stat(), and open()
585 * consistent with each other. If a process
586 * may not stat() a file, it shouldn't be seen
587 * in procfs at all.
588 */
589 return -ENOENT;
590 }
591
592 return -EPERM;
593 }
594 return generic_permission(inode, mask);
595}
596
597
598
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800599static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700600 .setattr = proc_setattr,
601};
602
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800603static int proc_single_show(struct seq_file *m, void *v)
604{
605 struct inode *inode = m->private;
606 struct pid_namespace *ns;
607 struct pid *pid;
608 struct task_struct *task;
609 int ret;
610
611 ns = inode->i_sb->s_fs_info;
612 pid = proc_pid(inode);
613 task = get_pid_task(pid, PIDTYPE_PID);
614 if (!task)
615 return -ESRCH;
616
617 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
618
619 put_task_struct(task);
620 return ret;
621}
622
623static int proc_single_open(struct inode *inode, struct file *filp)
624{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800625 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800626}
627
628static const struct file_operations proc_single_file_operations = {
629 .open = proc_single_open,
630 .read = seq_read,
631 .llseek = seq_lseek,
632 .release = single_release,
633};
634
Cong Wangb409e572012-05-31 16:26:17 -0700635static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Al Viro496ad9a2013-01-23 17:07:38 -0500637 struct task_struct *task = get_proc_task(file_inode(file));
Linus Torvaldse2683372012-01-17 15:21:19 -0800638 struct mm_struct *mm;
639
640 if (!task)
641 return -ESRCH;
642
Cong Wangb409e572012-05-31 16:26:17 -0700643 mm = mm_access(task, mode);
Linus Torvaldse2683372012-01-17 15:21:19 -0800644 put_task_struct(task);
645
646 if (IS_ERR(mm))
647 return PTR_ERR(mm);
648
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100649 if (mm) {
650 /* ensure this mm_struct can't be freed */
651 atomic_inc(&mm->mm_count);
652 /* but do not pin its memory */
653 mmput(mm);
654 }
655
Linus Torvaldse2683372012-01-17 15:21:19 -0800656 file->private_data = mm;
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659}
660
Cong Wangb409e572012-05-31 16:26:17 -0700661static int mem_open(struct inode *inode, struct file *file)
662{
Djalal Harounibc452b42012-07-30 14:42:28 -0700663 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
664
665 /* OK to pass negative loff_t, we can catch out-of-range */
666 file->f_mode |= FMODE_UNSIGNED_OFFSET;
667
668 return ret;
Cong Wangb409e572012-05-31 16:26:17 -0700669}
670
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100671static ssize_t mem_rw(struct file *file, char __user *buf,
672 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Linus Torvaldse2683372012-01-17 15:21:19 -0800674 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100675 unsigned long addr = *ppos;
676 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvaldse2683372012-01-17 15:21:19 -0800679 if (!mm)
680 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Mel Gormane12ba742007-10-16 01:25:52 -0700682 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800684 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700686 copied = 0;
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100687 if (!atomic_inc_not_zero(&mm->mm_users))
688 goto free;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100691 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100693 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 copied = -EFAULT;
695 break;
696 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100697
698 this_len = access_remote_vm(mm, addr, page, this_len, write);
699 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (!copied)
701 copied = -EIO;
702 break;
703 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100704
705 if (!write && copy_to_user(buf, page, this_len)) {
706 copied = -EFAULT;
707 break;
708 }
709
710 buf += this_len;
711 addr += this_len;
712 copied += this_len;
713 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100715 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700716
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100717 mmput(mm);
718free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700719 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return copied;
721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100723static ssize_t mem_read(struct file *file, char __user *buf,
724 size_t count, loff_t *ppos)
725{
726 return mem_rw(file, buf, count, ppos, 0);
727}
728
729static ssize_t mem_write(struct file *file, const char __user *buf,
730 size_t count, loff_t *ppos)
731{
732 return mem_rw(file, (char __user*)buf, count, ppos, 1);
733}
734
Matt Mackall85863e42008-02-04 22:29:04 -0800735loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 switch (orig) {
738 case 0:
739 file->f_pos = offset;
740 break;
741 case 1:
742 file->f_pos += offset;
743 break;
744 default:
745 return -EINVAL;
746 }
747 force_successful_syscall_return();
748 return file->f_pos;
749}
750
Linus Torvaldse2683372012-01-17 15:21:19 -0800751static int mem_release(struct inode *inode, struct file *file)
752{
753 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100754 if (mm)
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100755 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800756 return 0;
757}
758
Arjan van de Ven00977a52007-02-12 00:55:34 -0800759static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 .llseek = mem_lseek,
761 .read = mem_read,
762 .write = mem_write,
763 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800764 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765};
766
Cong Wangb409e572012-05-31 16:26:17 -0700767static int environ_open(struct inode *inode, struct file *file)
768{
769 return __mem_open(inode, file, PTRACE_MODE_READ);
770}
771
James Pearson315e28c2007-10-16 23:30:17 -0700772static ssize_t environ_read(struct file *file, char __user *buf,
773 size_t count, loff_t *ppos)
774{
James Pearson315e28c2007-10-16 23:30:17 -0700775 char *page;
776 unsigned long src = *ppos;
Cong Wangb409e572012-05-31 16:26:17 -0700777 int ret = 0;
778 struct mm_struct *mm = file->private_data;
James Pearson315e28c2007-10-16 23:30:17 -0700779
Cong Wangb409e572012-05-31 16:26:17 -0700780 if (!mm)
781 return 0;
James Pearson315e28c2007-10-16 23:30:17 -0700782
James Pearson315e28c2007-10-16 23:30:17 -0700783 page = (char *)__get_free_page(GFP_TEMPORARY);
784 if (!page)
Cong Wangb409e572012-05-31 16:26:17 -0700785 return -ENOMEM;
James Pearson315e28c2007-10-16 23:30:17 -0700786
Al Virod6f64b82011-02-15 22:26:01 -0500787 ret = 0;
Cong Wangb409e572012-05-31 16:26:17 -0700788 if (!atomic_inc_not_zero(&mm->mm_users))
789 goto free;
James Pearson315e28c2007-10-16 23:30:17 -0700790 while (count > 0) {
Djalal Harounie8905ec2012-07-30 14:42:26 -0700791 size_t this_len, max_len;
792 int retval;
793
794 if (src >= (mm->env_end - mm->env_start))
795 break;
James Pearson315e28c2007-10-16 23:30:17 -0700796
797 this_len = mm->env_end - (mm->env_start + src);
798
Djalal Harounie8905ec2012-07-30 14:42:26 -0700799 max_len = min_t(size_t, PAGE_SIZE, count);
800 this_len = min(max_len, this_len);
James Pearson315e28c2007-10-16 23:30:17 -0700801
Cong Wangb409e572012-05-31 16:26:17 -0700802 retval = access_remote_vm(mm, (mm->env_start + src),
James Pearson315e28c2007-10-16 23:30:17 -0700803 page, this_len, 0);
804
805 if (retval <= 0) {
806 ret = retval;
807 break;
808 }
809
810 if (copy_to_user(buf, page, retval)) {
811 ret = -EFAULT;
812 break;
813 }
814
815 ret += retval;
816 src += retval;
817 buf += retval;
818 count -= retval;
819 }
820 *ppos = src;
James Pearson315e28c2007-10-16 23:30:17 -0700821 mmput(mm);
Cong Wangb409e572012-05-31 16:26:17 -0700822
823free:
James Pearson315e28c2007-10-16 23:30:17 -0700824 free_page((unsigned long) page);
James Pearson315e28c2007-10-16 23:30:17 -0700825 return ret;
826}
827
828static const struct file_operations proc_environ_operations = {
Cong Wangb409e572012-05-31 16:26:17 -0700829 .open = environ_open,
James Pearson315e28c2007-10-16 23:30:17 -0700830 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100831 .llseek = generic_file_llseek,
Cong Wangb409e572012-05-31 16:26:17 -0700832 .release = mem_release,
James Pearson315e28c2007-10-16 23:30:17 -0700833};
834
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800835static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
836 loff_t *ppos)
837{
Al Viro496ad9a2013-01-23 17:07:38 -0500838 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800839 char buffer[PROC_NUMBUF];
840 int oom_adj = OOM_ADJUST_MIN;
841 size_t len;
842 unsigned long flags;
843
844 if (!task)
845 return -ESRCH;
846 if (lock_task_sighand(task, &flags)) {
847 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
848 oom_adj = OOM_ADJUST_MAX;
849 else
850 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
851 OOM_SCORE_ADJ_MAX;
852 unlock_task_sighand(task, &flags);
853 }
854 put_task_struct(task);
855 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
856 return simple_read_from_buffer(buf, count, ppos, buffer, len);
857}
858
859static ssize_t oom_adj_write(struct file *file, const char __user *buf,
860 size_t count, loff_t *ppos)
861{
862 struct task_struct *task;
863 char buffer[PROC_NUMBUF];
864 int oom_adj;
865 unsigned long flags;
866 int err;
867
868 memset(buffer, 0, sizeof(buffer));
869 if (count > sizeof(buffer) - 1)
870 count = sizeof(buffer) - 1;
871 if (copy_from_user(buffer, buf, count)) {
872 err = -EFAULT;
873 goto out;
874 }
875
876 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
877 if (err)
878 goto out;
879 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
880 oom_adj != OOM_DISABLE) {
881 err = -EINVAL;
882 goto out;
883 }
884
Al Viro496ad9a2013-01-23 17:07:38 -0500885 task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800886 if (!task) {
887 err = -ESRCH;
888 goto out;
889 }
890
891 task_lock(task);
892 if (!task->mm) {
893 err = -EINVAL;
894 goto err_task_lock;
895 }
896
897 if (!lock_task_sighand(task, &flags)) {
898 err = -ESRCH;
899 goto err_task_lock;
900 }
901
902 /*
903 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
904 * value is always attainable.
905 */
906 if (oom_adj == OOM_ADJUST_MAX)
907 oom_adj = OOM_SCORE_ADJ_MAX;
908 else
909 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
910
911 if (oom_adj < task->signal->oom_score_adj &&
912 !capable(CAP_SYS_RESOURCE)) {
913 err = -EACCES;
914 goto err_sighand;
915 }
916
917 /*
918 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
919 * /proc/pid/oom_score_adj instead.
920 */
Andrew Morton87ebdc02013-02-27 17:03:16 -0800921 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800922 current->comm, task_pid_nr(current), task_pid_nr(task),
923 task_pid_nr(task));
924
925 task->signal->oom_score_adj = oom_adj;
926 trace_oom_score_adj_update(task);
927err_sighand:
928 unlock_task_sighand(task, &flags);
929err_task_lock:
930 task_unlock(task);
931 put_task_struct(task);
932out:
933 return err < 0 ? err : count;
934}
935
936static const struct file_operations proc_oom_adj_operations = {
937 .read = oom_adj_read,
938 .write = oom_adj_write,
939 .llseek = generic_file_llseek,
940};
941
David Rientjesa63d83f2010-08-09 17:19:46 -0700942static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
943 size_t count, loff_t *ppos)
944{
Al Viro496ad9a2013-01-23 17:07:38 -0500945 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesa63d83f2010-08-09 17:19:46 -0700946 char buffer[PROC_NUMBUF];
David Rientjesa9c58b902012-12-11 16:02:54 -0800947 short oom_score_adj = OOM_SCORE_ADJ_MIN;
David Rientjesa63d83f2010-08-09 17:19:46 -0700948 unsigned long flags;
949 size_t len;
950
951 if (!task)
952 return -ESRCH;
953 if (lock_task_sighand(task, &flags)) {
954 oom_score_adj = task->signal->oom_score_adj;
955 unlock_task_sighand(task, &flags);
956 }
957 put_task_struct(task);
David Rientjesa9c58b902012-12-11 16:02:54 -0800958 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -0700959 return simple_read_from_buffer(buf, count, ppos, buffer, len);
960}
961
962static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
963 size_t count, loff_t *ppos)
964{
965 struct task_struct *task;
966 char buffer[PROC_NUMBUF];
967 unsigned long flags;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700968 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -0700969 int err;
970
971 memset(buffer, 0, sizeof(buffer));
972 if (count > sizeof(buffer) - 1)
973 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -0700974 if (copy_from_user(buffer, buf, count)) {
975 err = -EFAULT;
976 goto out;
977 }
David Rientjesa63d83f2010-08-09 17:19:46 -0700978
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700979 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -0700980 if (err)
David Rientjes723548b2010-10-26 14:21:25 -0700981 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -0700982 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -0700983 oom_score_adj > OOM_SCORE_ADJ_MAX) {
984 err = -EINVAL;
985 goto out;
986 }
David Rientjesa63d83f2010-08-09 17:19:46 -0700987
Al Viro496ad9a2013-01-23 17:07:38 -0500988 task = get_proc_task(file_inode(file));
David Rientjes723548b2010-10-26 14:21:25 -0700989 if (!task) {
990 err = -ESRCH;
991 goto out;
992 }
David Rientjesa63d83f2010-08-09 17:19:46 -0700993
Ying Han3d5992d2010-10-26 14:21:23 -0700994 task_lock(task);
995 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -0700996 err = -EINVAL;
997 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -0700998 }
David Rientjesd19d5472010-10-26 14:21:26 -0700999
1000 if (!lock_task_sighand(task, &flags)) {
1001 err = -ESRCH;
1002 goto err_task_lock;
1003 }
1004
David Rientjesa9c58b902012-12-11 16:02:54 -08001005 if ((short)oom_score_adj < task->signal->oom_score_adj_min &&
David Rientjesd19d5472010-10-26 14:21:26 -07001006 !capable(CAP_SYS_RESOURCE)) {
1007 err = -EACCES;
1008 goto err_sighand;
1009 }
1010
David Rientjesa9c58b902012-12-11 16:02:54 -08001011 task->signal->oom_score_adj = (short)oom_score_adj;
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001012 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
David Rientjesa9c58b902012-12-11 16:02:54 -08001013 task->signal->oom_score_adj_min = (short)oom_score_adj;
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -08001014 trace_oom_score_adj_update(task);
Davidlohr Bueso01dc52e2012-10-08 16:29:30 -07001015
David Rientjes723548b2010-10-26 14:21:25 -07001016err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001017 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001018err_task_lock:
1019 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001020 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001021out:
1022 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001023}
1024
1025static const struct file_operations proc_oom_score_adj_operations = {
1026 .read = oom_score_adj_read,
1027 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001028 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001029};
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031#ifdef CONFIG_AUDITSYSCALL
1032#define TMPBUFLEN 21
1033static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1034 size_t count, loff_t *ppos)
1035{
Al Viro496ad9a2013-01-23 17:07:38 -05001036 struct inode * inode = file_inode(file);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001037 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 ssize_t length;
1039 char tmpbuf[TMPBUFLEN];
1040
Eric W. Biederman99f89552006-06-26 00:25:55 -07001041 if (!task)
1042 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001044 from_kuid(file->f_cred->user_ns,
1045 audit_get_loginuid(task)));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001046 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1048}
1049
1050static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1051 size_t count, loff_t *ppos)
1052{
Al Viro496ad9a2013-01-23 17:07:38 -05001053 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 char *page, *tmp;
1055 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 uid_t loginuid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001057 kuid_t kloginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001059 rcu_read_lock();
1060 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1061 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001063 }
1064 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Al Viroe0182902006-05-18 08:28:02 -04001066 if (count >= PAGE_SIZE)
1067 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 if (*ppos != 0) {
1070 /* No partial writes. */
1071 return -EINVAL;
1072 }
Mel Gormane12ba742007-10-16 01:25:52 -07001073 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (!page)
1075 return -ENOMEM;
1076 length = -EFAULT;
1077 if (copy_from_user(page, buf, count))
1078 goto out_free_page;
1079
Al Viroe0182902006-05-18 08:28:02 -04001080 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 loginuid = simple_strtoul(page, &tmp, 10);
1082 if (tmp == page) {
1083 length = -EINVAL;
1084 goto out_free_page;
1085
1086 }
Eric Paris81407c82013-05-24 09:49:14 -04001087
1088 /* is userspace tring to explicitly UNSET the loginuid? */
1089 if (loginuid == AUDIT_UID_UNSET) {
1090 kloginuid = INVALID_UID;
1091 } else {
1092 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
1093 if (!uid_valid(kloginuid)) {
1094 length = -EINVAL;
1095 goto out_free_page;
1096 }
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001097 }
1098
1099 length = audit_set_loginuid(kloginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (likely(length == 0))
1101 length = count;
1102
1103out_free_page:
1104 free_page((unsigned long) page);
1105 return length;
1106}
1107
Arjan van de Ven00977a52007-02-12 00:55:34 -08001108static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 .read = proc_loginuid_read,
1110 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001111 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112};
Eric Paris1e0bd752008-03-13 08:15:31 -04001113
1114static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1115 size_t count, loff_t *ppos)
1116{
Al Viro496ad9a2013-01-23 17:07:38 -05001117 struct inode * inode = file_inode(file);
Eric Paris1e0bd752008-03-13 08:15:31 -04001118 struct task_struct *task = get_proc_task(inode);
1119 ssize_t length;
1120 char tmpbuf[TMPBUFLEN];
1121
1122 if (!task)
1123 return -ESRCH;
1124 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1125 audit_get_sessionid(task));
1126 put_task_struct(task);
1127 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1128}
1129
1130static const struct file_operations proc_sessionid_operations = {
1131 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001132 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001133};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#endif
1135
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001136#ifdef CONFIG_FAULT_INJECTION
1137static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1138 size_t count, loff_t *ppos)
1139{
Al Viro496ad9a2013-01-23 17:07:38 -05001140 struct task_struct *task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001141 char buffer[PROC_NUMBUF];
1142 size_t len;
1143 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001144
1145 if (!task)
1146 return -ESRCH;
1147 make_it_fail = task->make_it_fail;
1148 put_task_struct(task);
1149
1150 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001151
1152 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001153}
1154
1155static ssize_t proc_fault_inject_write(struct file * file,
1156 const char __user * buf, size_t count, loff_t *ppos)
1157{
1158 struct task_struct *task;
1159 char buffer[PROC_NUMBUF], *end;
1160 int make_it_fail;
1161
1162 if (!capable(CAP_SYS_RESOURCE))
1163 return -EPERM;
1164 memset(buffer, 0, sizeof(buffer));
1165 if (count > sizeof(buffer) - 1)
1166 count = sizeof(buffer) - 1;
1167 if (copy_from_user(buffer, buf, count))
1168 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001169 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1170 if (*end)
1171 return -EINVAL;
Dave Jones16caed32014-04-07 15:39:15 -07001172 if (make_it_fail < 0 || make_it_fail > 1)
1173 return -EINVAL;
1174
Al Viro496ad9a2013-01-23 17:07:38 -05001175 task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001176 if (!task)
1177 return -ESRCH;
1178 task->make_it_fail = make_it_fail;
1179 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001180
1181 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001182}
1183
Arjan van de Ven00977a52007-02-12 00:55:34 -08001184static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001185 .read = proc_fault_inject_read,
1186 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001187 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001188};
1189#endif
1190
Arjan van de Ven97455122008-01-25 21:08:34 +01001191
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001192#ifdef CONFIG_SCHED_DEBUG
1193/*
1194 * Print out various scheduling related per-task fields:
1195 */
1196static int sched_show(struct seq_file *m, void *v)
1197{
1198 struct inode *inode = m->private;
1199 struct task_struct *p;
1200
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001201 p = get_proc_task(inode);
1202 if (!p)
1203 return -ESRCH;
1204 proc_sched_show_task(p, m);
1205
1206 put_task_struct(p);
1207
1208 return 0;
1209}
1210
1211static ssize_t
1212sched_write(struct file *file, const char __user *buf,
1213 size_t count, loff_t *offset)
1214{
Al Viro496ad9a2013-01-23 17:07:38 -05001215 struct inode *inode = file_inode(file);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001216 struct task_struct *p;
1217
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001218 p = get_proc_task(inode);
1219 if (!p)
1220 return -ESRCH;
1221 proc_sched_set_task(p);
1222
1223 put_task_struct(p);
1224
1225 return count;
1226}
1227
1228static int sched_open(struct inode *inode, struct file *filp)
1229{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001230 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001231}
1232
1233static const struct file_operations proc_pid_sched_operations = {
1234 .open = sched_open,
1235 .read = seq_read,
1236 .write = sched_write,
1237 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001238 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001239};
1240
1241#endif
1242
Mike Galbraith5091faa2010-11-30 14:18:03 +01001243#ifdef CONFIG_SCHED_AUTOGROUP
1244/*
1245 * Print out autogroup related information:
1246 */
1247static int sched_autogroup_show(struct seq_file *m, void *v)
1248{
1249 struct inode *inode = m->private;
1250 struct task_struct *p;
1251
1252 p = get_proc_task(inode);
1253 if (!p)
1254 return -ESRCH;
1255 proc_sched_autogroup_show_task(p, m);
1256
1257 put_task_struct(p);
1258
1259 return 0;
1260}
1261
1262static ssize_t
1263sched_autogroup_write(struct file *file, const char __user *buf,
1264 size_t count, loff_t *offset)
1265{
Al Viro496ad9a2013-01-23 17:07:38 -05001266 struct inode *inode = file_inode(file);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001267 struct task_struct *p;
1268 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001269 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001270 int err;
1271
1272 memset(buffer, 0, sizeof(buffer));
1273 if (count > sizeof(buffer) - 1)
1274 count = sizeof(buffer) - 1;
1275 if (copy_from_user(buffer, buf, count))
1276 return -EFAULT;
1277
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001278 err = kstrtoint(strstrip(buffer), 0, &nice);
1279 if (err < 0)
1280 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001281
1282 p = get_proc_task(inode);
1283 if (!p)
1284 return -ESRCH;
1285
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001286 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001287 if (err)
1288 count = err;
1289
1290 put_task_struct(p);
1291
1292 return count;
1293}
1294
1295static int sched_autogroup_open(struct inode *inode, struct file *filp)
1296{
1297 int ret;
1298
1299 ret = single_open(filp, sched_autogroup_show, NULL);
1300 if (!ret) {
1301 struct seq_file *m = filp->private_data;
1302
1303 m->private = inode;
1304 }
1305 return ret;
1306}
1307
1308static const struct file_operations proc_pid_sched_autogroup_operations = {
1309 .open = sched_autogroup_open,
1310 .read = seq_read,
1311 .write = sched_autogroup_write,
1312 .llseek = seq_lseek,
1313 .release = single_release,
1314};
1315
1316#endif /* CONFIG_SCHED_AUTOGROUP */
1317
john stultz4614a696b2009-12-14 18:00:05 -08001318static ssize_t comm_write(struct file *file, const char __user *buf,
1319 size_t count, loff_t *offset)
1320{
Al Viro496ad9a2013-01-23 17:07:38 -05001321 struct inode *inode = file_inode(file);
john stultz4614a696b2009-12-14 18:00:05 -08001322 struct task_struct *p;
1323 char buffer[TASK_COMM_LEN];
David Rientjes830e0fc2013-04-30 15:28:18 -07001324 const size_t maxlen = sizeof(buffer) - 1;
john stultz4614a696b2009-12-14 18:00:05 -08001325
1326 memset(buffer, 0, sizeof(buffer));
David Rientjes830e0fc2013-04-30 15:28:18 -07001327 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
john stultz4614a696b2009-12-14 18:00:05 -08001328 return -EFAULT;
1329
1330 p = get_proc_task(inode);
1331 if (!p)
1332 return -ESRCH;
1333
1334 if (same_thread_group(current, p))
1335 set_task_comm(p, buffer);
1336 else
1337 count = -EINVAL;
1338
1339 put_task_struct(p);
1340
1341 return count;
1342}
1343
1344static int comm_show(struct seq_file *m, void *v)
1345{
1346 struct inode *inode = m->private;
1347 struct task_struct *p;
1348
1349 p = get_proc_task(inode);
1350 if (!p)
1351 return -ESRCH;
1352
1353 task_lock(p);
1354 seq_printf(m, "%s\n", p->comm);
1355 task_unlock(p);
1356
1357 put_task_struct(p);
1358
1359 return 0;
1360}
1361
1362static int comm_open(struct inode *inode, struct file *filp)
1363{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001364 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001365}
1366
1367static const struct file_operations proc_pid_set_comm_operations = {
1368 .open = comm_open,
1369 .read = seq_read,
1370 .write = comm_write,
1371 .llseek = seq_lseek,
1372 .release = single_release,
1373};
1374
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001375static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001376{
1377 struct task_struct *task;
1378 struct mm_struct *mm;
1379 struct file *exe_file;
1380
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001381 task = get_proc_task(dentry->d_inode);
Matt Helsley925d1c42008-04-29 01:01:36 -07001382 if (!task)
1383 return -ENOENT;
1384 mm = get_task_mm(task);
1385 put_task_struct(task);
1386 if (!mm)
1387 return -ENOENT;
1388 exe_file = get_mm_exe_file(mm);
1389 mmput(mm);
1390 if (exe_file) {
1391 *exe_path = exe_file->f_path;
1392 path_get(&exe_file->f_path);
1393 fput(exe_file);
1394 return 0;
1395 } else
1396 return -ENOENT;
1397}
1398
Al Viro008b1502005-08-20 00:17:39 +01001399static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
1401 struct inode *inode = dentry->d_inode;
Christoph Hellwig408ef012012-06-18 10:47:03 -04001402 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 int error = -EACCES;
1404
Eric W. Biederman778c1142006-06-26 00:25:58 -07001405 /* Are we allowed to snoop on the tasks file descriptors? */
1406 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Christoph Hellwig408ef012012-06-18 10:47:03 -04001409 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1410 if (error)
1411 goto out;
1412
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -04001413 nd_jump_link(nd, &path);
Christoph Hellwig408ef012012-06-18 10:47:03 -04001414 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415out:
Al Viro008b1502005-08-20 00:17:39 +01001416 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001419static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Mel Gormane12ba742007-10-16 01:25:52 -07001421 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001422 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 int len;
1424
1425 if (!tmp)
1426 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001427
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001428 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001429 len = PTR_ERR(pathname);
1430 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001432 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 if (len > buflen)
1435 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001436 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 len = -EFAULT;
1438 out:
1439 free_page((unsigned long)tmp);
1440 return len;
1441}
1442
1443static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1444{
1445 int error = -EACCES;
1446 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001447 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Eric W. Biederman778c1142006-06-26 00:25:58 -07001449 /* Are we allowed to snoop on the tasks file descriptors? */
1450 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001453 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (error)
1455 goto out;
1456
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001457 error = do_proc_readlink(&path, buffer, buflen);
1458 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return error;
1461}
1462
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001463const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001465 .follow_link = proc_pid_follow_link,
1466 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467};
1468
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001469
1470/* building an inode */
1471
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001472struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001473{
1474 struct inode * inode;
1475 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001476 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001477
1478 /* We need a new inode */
1479
1480 inode = new_inode(sb);
1481 if (!inode)
1482 goto out;
1483
1484 /* Common stuff */
1485 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001486 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001487 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001488 inode->i_op = &proc_def_inode_operations;
1489
1490 /*
1491 * grab the reference to task.
1492 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001493 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001494 if (!ei->pid)
1495 goto out_unlock;
1496
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001497 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001498 rcu_read_lock();
1499 cred = __task_cred(task);
1500 inode->i_uid = cred->euid;
1501 inode->i_gid = cred->egid;
1502 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001503 }
1504 security_task_to_inode(task, inode);
1505
1506out:
1507 return inode;
1508
1509out_unlock:
1510 iput(inode);
1511 return NULL;
1512}
1513
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001514int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001515{
1516 struct inode *inode = dentry->d_inode;
1517 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001518 const struct cred *cred;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001519 struct pid_namespace *pid = dentry->d_sb->s_fs_info;
David Howellsc69e8d92008-11-14 10:39:19 +11001520
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001521 generic_fillattr(inode, stat);
1522
1523 rcu_read_lock();
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001524 stat->uid = GLOBAL_ROOT_UID;
1525 stat->gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001526 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1527 if (task) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001528 if (!has_pid_permissions(pid, task, 2)) {
1529 rcu_read_unlock();
1530 /*
1531 * This doesn't prevent learning whether PID exists,
1532 * it only makes getattr() consistent with readdir().
1533 */
1534 return -ENOENT;
1535 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001536 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1537 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001538 cred = __task_cred(task);
1539 stat->uid = cred->euid;
1540 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001541 }
1542 }
1543 rcu_read_unlock();
1544 return 0;
1545}
1546
1547/* dentry stuff */
1548
1549/*
1550 * Exceptional case: normally we are not allowed to unhash a busy
1551 * directory. In this case, however, we can do it - no aliasing problems
1552 * due to the way we treat inodes.
1553 *
1554 * Rewrite the inode's ownerships here because the owning task may have
1555 * performed a setuid(), etc.
1556 *
1557 * Before the /proc/pid/status file was created the only way to read
1558 * the effective uid of a /process was to stat /proc/pid. Reading
1559 * /proc/pid/status is slow enough that procps and other packages
1560 * kept stating /proc/pid. To keep the rules in /proc simple I have
1561 * made this apply to all per process world readable and executable
1562 * directories.
1563 */
Al Viro0b728e12012-06-10 16:03:43 -04001564int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001565{
Nick Piggin34286d62011-01-07 17:49:57 +11001566 struct inode *inode;
1567 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001568 const struct cred *cred;
1569
Al Viro0b728e12012-06-10 16:03:43 -04001570 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001571 return -ECHILD;
1572
1573 inode = dentry->d_inode;
1574 task = get_proc_task(inode);
1575
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001576 if (task) {
1577 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1578 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001579 rcu_read_lock();
1580 cred = __task_cred(task);
1581 inode->i_uid = cred->euid;
1582 inode->i_gid = cred->egid;
1583 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001584 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001585 inode->i_uid = GLOBAL_ROOT_UID;
1586 inode->i_gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001587 }
1588 inode->i_mode &= ~(S_ISUID | S_ISGID);
1589 security_task_to_inode(task, inode);
1590 put_task_struct(task);
1591 return 1;
1592 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001593 return 0;
1594}
1595
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001596static inline bool proc_inode_is_dead(struct inode *inode)
1597{
1598 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1599}
1600
David Howells1dd704b2013-04-12 01:08:50 +01001601int pid_delete_dentry(const struct dentry *dentry)
1602{
1603 /* Is the task we represent dead?
1604 * If so, then don't put the dentry on the lru list,
1605 * kill it immediately.
1606 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001607 return proc_inode_is_dead(dentry->d_inode);
David Howells1dd704b2013-04-12 01:08:50 +01001608}
1609
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001610const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001611{
1612 .d_revalidate = pid_revalidate,
1613 .d_delete = pid_delete_dentry,
1614};
1615
1616/* Lookups */
1617
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001618/*
1619 * Fill a directory entry.
1620 *
1621 * If possible create the dcache entry and derive our inode number and
1622 * file type from dcache entry.
1623 *
1624 * Since all of the proc inode numbers are dynamically generated, the inode
1625 * numbers do not exist until the inode is cache. This means creating the
1626 * the dcache entry in readdir is necessary to keep the inode numbers
1627 * reported by readdir in sync with the inode numbers reported
1628 * by stat.
1629 */
Al Virof0c3b502013-05-16 12:07:31 -04001630bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001631 const char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001632 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001633{
Al Virof0c3b502013-05-16 12:07:31 -04001634 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001635 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001636 struct inode *inode;
Al Viro1df98b82013-06-15 11:33:10 +04001637 unsigned type;
1638 ino_t ino;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001639
Al Viro1df98b82013-06-15 11:33:10 +04001640 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001641 if (!child) {
Al Viro1df98b82013-06-15 11:33:10 +04001642 child = d_alloc(dir, &qname);
1643 if (!child)
1644 goto end_instantiate;
1645 if (instantiate(dir->d_inode, child, task, ptr) < 0) {
1646 dput(child);
1647 goto end_instantiate;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001648 }
1649 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001650 inode = child->d_inode;
Al Viro147ce692013-06-15 10:26:35 +04001651 ino = inode->i_ino;
1652 type = inode->i_mode >> 12;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001653 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -04001654 return dir_emit(ctx, name, len, ino, type);
Al Viro1df98b82013-06-15 11:33:10 +04001655
1656end_instantiate:
1657 return dir_emit(ctx, name, len, 1, DT_UNKNOWN);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001658}
1659
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001660#ifdef CONFIG_CHECKPOINT_RESTORE
1661
1662/*
1663 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1664 * which represent vma start and end addresses.
1665 */
1666static int dname_to_vma_addr(struct dentry *dentry,
1667 unsigned long *start, unsigned long *end)
1668{
1669 if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1670 return -EINVAL;
1671
1672 return 0;
1673}
1674
Al Viro0b728e12012-06-10 16:03:43 -04001675static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001676{
1677 unsigned long vm_start, vm_end;
1678 bool exact_vma_exists = false;
1679 struct mm_struct *mm = NULL;
1680 struct task_struct *task;
1681 const struct cred *cred;
1682 struct inode *inode;
1683 int status = 0;
1684
Al Viro0b728e12012-06-10 16:03:43 -04001685 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001686 return -ECHILD;
1687
1688 if (!capable(CAP_SYS_ADMIN)) {
Zhao Hongjiang41735812013-02-20 13:13:55 +11001689 status = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001690 goto out_notask;
1691 }
1692
1693 inode = dentry->d_inode;
1694 task = get_proc_task(inode);
1695 if (!task)
1696 goto out_notask;
1697
Cong Wang2344bec2012-05-31 16:26:18 -07001698 mm = mm_access(task, PTRACE_MODE_READ);
1699 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001700 goto out;
1701
1702 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1703 down_read(&mm->mmap_sem);
1704 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1705 up_read(&mm->mmap_sem);
1706 }
1707
1708 mmput(mm);
1709
1710 if (exact_vma_exists) {
1711 if (task_dumpable(task)) {
1712 rcu_read_lock();
1713 cred = __task_cred(task);
1714 inode->i_uid = cred->euid;
1715 inode->i_gid = cred->egid;
1716 rcu_read_unlock();
1717 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001718 inode->i_uid = GLOBAL_ROOT_UID;
1719 inode->i_gid = GLOBAL_ROOT_GID;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001720 }
1721 security_task_to_inode(task, inode);
1722 status = 1;
1723 }
1724
1725out:
1726 put_task_struct(task);
1727
1728out_notask:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001729 return status;
1730}
1731
1732static const struct dentry_operations tid_map_files_dentry_operations = {
1733 .d_revalidate = map_files_d_revalidate,
1734 .d_delete = pid_delete_dentry,
1735};
1736
1737static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
1738{
1739 unsigned long vm_start, vm_end;
1740 struct vm_area_struct *vma;
1741 struct task_struct *task;
1742 struct mm_struct *mm;
1743 int rc;
1744
1745 rc = -ENOENT;
1746 task = get_proc_task(dentry->d_inode);
1747 if (!task)
1748 goto out;
1749
1750 mm = get_task_mm(task);
1751 put_task_struct(task);
1752 if (!mm)
1753 goto out;
1754
1755 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1756 if (rc)
1757 goto out_mmput;
1758
Artem Fetishev70335ab2014-03-10 15:49:45 -07001759 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001760 down_read(&mm->mmap_sem);
1761 vma = find_exact_vma(mm, vm_start, vm_end);
1762 if (vma && vma->vm_file) {
1763 *path = vma->vm_file->f_path;
1764 path_get(path);
1765 rc = 0;
1766 }
1767 up_read(&mm->mmap_sem);
1768
1769out_mmput:
1770 mmput(mm);
1771out:
1772 return rc;
1773}
1774
1775struct map_files_info {
Al Viro7b540d02012-08-27 14:55:26 -04001776 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001777 unsigned long len;
1778 unsigned char name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
1779};
1780
Al Viroc52a47a2013-06-15 11:15:20 +04001781static int
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001782proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
1783 struct task_struct *task, const void *ptr)
1784{
Al Viro7b540d02012-08-27 14:55:26 -04001785 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001786 struct proc_inode *ei;
1787 struct inode *inode;
1788
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001789 inode = proc_pid_make_inode(dir->i_sb, task);
1790 if (!inode)
Al Viroc52a47a2013-06-15 11:15:20 +04001791 return -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001792
1793 ei = PROC_I(inode);
1794 ei->op.proc_get_link = proc_map_files_get_link;
1795
1796 inode->i_op = &proc_pid_link_inode_operations;
1797 inode->i_size = 64;
1798 inode->i_mode = S_IFLNK;
1799
Al Viro7b540d02012-08-27 14:55:26 -04001800 if (mode & FMODE_READ)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001801 inode->i_mode |= S_IRUSR;
Al Viro7b540d02012-08-27 14:55:26 -04001802 if (mode & FMODE_WRITE)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001803 inode->i_mode |= S_IWUSR;
1804
1805 d_set_d_op(dentry, &tid_map_files_dentry_operations);
1806 d_add(dentry, inode);
1807
Al Viroc52a47a2013-06-15 11:15:20 +04001808 return 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001809}
1810
1811static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04001812 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001813{
1814 unsigned long vm_start, vm_end;
1815 struct vm_area_struct *vma;
1816 struct task_struct *task;
Al Viroc52a47a2013-06-15 11:15:20 +04001817 int result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001818 struct mm_struct *mm;
1819
Al Viroc52a47a2013-06-15 11:15:20 +04001820 result = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001821 if (!capable(CAP_SYS_ADMIN))
1822 goto out;
1823
Al Viroc52a47a2013-06-15 11:15:20 +04001824 result = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001825 task = get_proc_task(dir);
1826 if (!task)
1827 goto out;
1828
Al Viroc52a47a2013-06-15 11:15:20 +04001829 result = -EACCES;
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001830 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001831 goto out_put_task;
1832
Al Viroc52a47a2013-06-15 11:15:20 +04001833 result = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001834 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001835 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001836
1837 mm = get_task_mm(task);
1838 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001839 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001840
1841 down_read(&mm->mmap_sem);
1842 vma = find_exact_vma(mm, vm_start, vm_end);
1843 if (!vma)
1844 goto out_no_vma;
1845
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08001846 if (vma->vm_file)
1847 result = proc_map_files_instantiate(dir, dentry, task,
1848 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001849
1850out_no_vma:
1851 up_read(&mm->mmap_sem);
1852 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001853out_put_task:
1854 put_task_struct(task);
1855out:
Al Viroc52a47a2013-06-15 11:15:20 +04001856 return ERR_PTR(result);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001857}
1858
1859static const struct inode_operations proc_map_files_inode_operations = {
1860 .lookup = proc_map_files_lookup,
1861 .permission = proc_fd_permission,
1862 .setattr = proc_setattr,
1863};
1864
1865static int
Al Virof0c3b502013-05-16 12:07:31 -04001866proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001867{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001868 struct vm_area_struct *vma;
1869 struct task_struct *task;
1870 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04001871 unsigned long nr_files, pos, i;
1872 struct flex_array *fa = NULL;
1873 struct map_files_info info;
1874 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001875 int ret;
1876
Zhao Hongjiang41735812013-02-20 13:13:55 +11001877 ret = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001878 if (!capable(CAP_SYS_ADMIN))
1879 goto out;
1880
1881 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04001882 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001883 if (!task)
1884 goto out;
1885
1886 ret = -EACCES;
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001887 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001888 goto out_put_task;
1889
1890 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04001891 if (!dir_emit_dots(file, ctx))
1892 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001893
Al Virof0c3b502013-05-16 12:07:31 -04001894 mm = get_task_mm(task);
1895 if (!mm)
1896 goto out_put_task;
1897 down_read(&mm->mmap_sem);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001898
Al Virof0c3b502013-05-16 12:07:31 -04001899 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001900
Al Virof0c3b502013-05-16 12:07:31 -04001901 /*
1902 * We need two passes here:
1903 *
1904 * 1) Collect vmas of mapped files with mmap_sem taken
1905 * 2) Release mmap_sem and instantiate entries
1906 *
1907 * otherwise we get lockdep complained, since filldir()
1908 * routine might require mmap_sem taken in might_fault().
1909 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001910
Al Virof0c3b502013-05-16 12:07:31 -04001911 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
1912 if (vma->vm_file && ++pos > ctx->pos)
1913 nr_files++;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001914 }
Al Virof0c3b502013-05-16 12:07:31 -04001915
1916 if (nr_files) {
1917 fa = flex_array_alloc(sizeof(info), nr_files,
1918 GFP_KERNEL);
1919 if (!fa || flex_array_prealloc(fa, 0, nr_files,
1920 GFP_KERNEL)) {
1921 ret = -ENOMEM;
1922 if (fa)
1923 flex_array_free(fa);
1924 up_read(&mm->mmap_sem);
1925 mmput(mm);
1926 goto out_put_task;
1927 }
1928 for (i = 0, vma = mm->mmap, pos = 2; vma;
1929 vma = vma->vm_next) {
1930 if (!vma->vm_file)
1931 continue;
1932 if (++pos <= ctx->pos)
1933 continue;
1934
1935 info.mode = vma->vm_file->f_mode;
1936 info.len = snprintf(info.name,
1937 sizeof(info.name), "%lx-%lx",
1938 vma->vm_start, vma->vm_end);
1939 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
1940 BUG();
1941 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001942 }
Al Virof0c3b502013-05-16 12:07:31 -04001943 up_read(&mm->mmap_sem);
1944
1945 for (i = 0; i < nr_files; i++) {
1946 p = flex_array_get(fa, i);
1947 if (!proc_fill_cache(file, ctx,
1948 p->name, p->len,
1949 proc_map_files_instantiate,
1950 task,
1951 (void *)(unsigned long)p->mode))
1952 break;
1953 ctx->pos++;
1954 }
1955 if (fa)
1956 flex_array_free(fa);
1957 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001958
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001959out_put_task:
1960 put_task_struct(task);
1961out:
1962 return ret;
1963}
1964
1965static const struct file_operations proc_map_files_operations = {
1966 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04001967 .iterate = proc_map_files_readdir,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001968 .llseek = default_llseek,
1969};
1970
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04001971struct timers_private {
1972 struct pid *pid;
1973 struct task_struct *task;
1974 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04001975 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04001976 unsigned long flags;
1977};
1978
1979static void *timers_start(struct seq_file *m, loff_t *pos)
1980{
1981 struct timers_private *tp = m->private;
1982
1983 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
1984 if (!tp->task)
1985 return ERR_PTR(-ESRCH);
1986
1987 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
1988 if (!tp->sighand)
1989 return ERR_PTR(-ESRCH);
1990
1991 return seq_list_start(&tp->task->signal->posix_timers, *pos);
1992}
1993
1994static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
1995{
1996 struct timers_private *tp = m->private;
1997 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
1998}
1999
2000static void timers_stop(struct seq_file *m, void *v)
2001{
2002 struct timers_private *tp = m->private;
2003
2004 if (tp->sighand) {
2005 unlock_task_sighand(tp->task, &tp->flags);
2006 tp->sighand = NULL;
2007 }
2008
2009 if (tp->task) {
2010 put_task_struct(tp->task);
2011 tp->task = NULL;
2012 }
2013}
2014
2015static int show_timer(struct seq_file *m, void *v)
2016{
2017 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002018 struct timers_private *tp = m->private;
2019 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002020 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002021 [SIGEV_SIGNAL] = "signal",
2022 [SIGEV_NONE] = "none",
2023 [SIGEV_THREAD] = "thread",
2024 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002025
2026 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002027 notify = timer->it_sigev_notify;
2028
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002029 seq_printf(m, "ID: %d\n", timer->it_id);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002030 seq_printf(m, "signal: %d/%p\n", timer->sigq->info.si_signo,
2031 timer->sigq->info.si_value.sival_ptr);
2032 seq_printf(m, "notify: %s/%s.%d\n",
2033 nstr[notify & ~SIGEV_THREAD_ID],
2034 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2035 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002036 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002037
2038 return 0;
2039}
2040
2041static const struct seq_operations proc_timers_seq_ops = {
2042 .start = timers_start,
2043 .next = timers_next,
2044 .stop = timers_stop,
2045 .show = show_timer,
2046};
2047
2048static int proc_timers_open(struct inode *inode, struct file *file)
2049{
2050 struct timers_private *tp;
2051
2052 tp = __seq_open_private(file, &proc_timers_seq_ops,
2053 sizeof(struct timers_private));
2054 if (!tp)
2055 return -ENOMEM;
2056
2057 tp->pid = proc_pid(inode);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002058 tp->ns = inode->i_sb->s_fs_info;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002059 return 0;
2060}
2061
2062static const struct file_operations proc_timers_operations = {
2063 .open = proc_timers_open,
2064 .read = seq_read,
2065 .llseek = seq_lseek,
2066 .release = seq_release_private,
2067};
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002068#endif /* CONFIG_CHECKPOINT_RESTORE */
2069
Al Viroc52a47a2013-06-15 11:15:20 +04002070static int proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002071 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002072{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002073 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002074 struct inode *inode;
2075 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002076
Eric W. Biederman61a28782006-10-02 02:18:49 -07002077 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002078 if (!inode)
2079 goto out;
2080
2081 ei = PROC_I(inode);
2082 inode->i_mode = p->mode;
2083 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002084 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002085 if (p->iop)
2086 inode->i_op = p->iop;
2087 if (p->fop)
2088 inode->i_fop = p->fop;
2089 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002090 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002091 d_add(dentry, inode);
2092 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04002093 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04002094 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002095out:
Al Viroc52a47a2013-06-15 11:15:20 +04002096 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099static struct dentry *proc_pident_lookup(struct inode *dir,
2100 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002101 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002102 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Al Viroc52a47a2013-06-15 11:15:20 +04002104 int error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002105 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002106 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Al Viroc52a47a2013-06-15 11:15:20 +04002108 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Eric W. Biederman99f89552006-06-26 00:25:55 -07002110 if (!task)
2111 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002113 /*
2114 * Yes, it does not scale. And it should not. Don't add
2115 * new entries into /proc/<tgid>/ without very good reasons.
2116 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002117 last = &ents[nents - 1];
2118 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (p->len != dentry->d_name.len)
2120 continue;
2121 if (!memcmp(dentry->d_name.name, p->name, p->len))
2122 break;
2123 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002124 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 goto out;
2126
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002127 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002129 put_task_struct(task);
2130out_no_task:
Al Viroc52a47a2013-06-15 11:15:20 +04002131 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
Al Virof0c3b502013-05-16 12:07:31 -04002134static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002135 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002136{
Al Virof0c3b502013-05-16 12:07:31 -04002137 struct task_struct *task = get_proc_task(file_inode(file));
2138 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002139
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002140 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002141 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002142
Al Virof0c3b502013-05-16 12:07:31 -04002143 if (!dir_emit_dots(file, ctx))
2144 goto out;
2145
2146 if (ctx->pos >= nents + 2)
2147 goto out;
2148
2149 for (p = ents + (ctx->pos - 2); p <= ents + nents - 1; p++) {
2150 if (!proc_fill_cache(file, ctx, p->name, p->len,
2151 proc_pident_instantiate, task, p))
2152 break;
2153 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002154 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002155out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002156 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158}
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002161static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2162 size_t count, loff_t *ppos)
2163{
Al Viro496ad9a2013-01-23 17:07:38 -05002164 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002165 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002166 ssize_t length;
2167 struct task_struct *task = get_proc_task(inode);
2168
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002169 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002170 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002171
2172 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002173 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002174 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002175 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002176 if (length > 0)
2177 length = simple_read_from_buffer(buf, count, ppos, p, length);
2178 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002179 return length;
2180}
2181
2182static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2183 size_t count, loff_t *ppos)
2184{
Al Viro496ad9a2013-01-23 17:07:38 -05002185 struct inode * inode = file_inode(file);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002186 char *page;
2187 ssize_t length;
2188 struct task_struct *task = get_proc_task(inode);
2189
2190 length = -ESRCH;
2191 if (!task)
2192 goto out_no_task;
2193 if (count > PAGE_SIZE)
2194 count = PAGE_SIZE;
2195
2196 /* No partial writes. */
2197 length = -EINVAL;
2198 if (*ppos != 0)
2199 goto out;
2200
2201 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002202 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002203 if (!page)
2204 goto out;
2205
2206 length = -EFAULT;
2207 if (copy_from_user(page, buf, count))
2208 goto out_free;
2209
David Howells107db7c2009-05-08 13:55:27 +01002210 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002211 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002212 if (length < 0)
2213 goto out_free;
2214
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002215 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002216 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002217 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002218 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002219out_free:
2220 free_page((unsigned long) page);
2221out:
2222 put_task_struct(task);
2223out_no_task:
2224 return length;
2225}
2226
Arjan van de Ven00977a52007-02-12 00:55:34 -08002227static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002228 .read = proc_pid_attr_read,
2229 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002230 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002231};
2232
Eric Dumazetc5141e62007-05-08 00:26:15 -07002233static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002234 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2235 REG("prev", S_IRUGO, proc_pid_attr_operations),
2236 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2237 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2238 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2239 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002240};
2241
Al Virof0c3b502013-05-16 12:07:31 -04002242static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Al Virof0c3b502013-05-16 12:07:31 -04002244 return proc_pident_readdir(file, ctx,
2245 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
Arjan van de Ven00977a52007-02-12 00:55:34 -08002248static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002250 .iterate = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002251 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252};
2253
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002254static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002255 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002257 return proc_pident_lookup(dir, dentry,
2258 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002261static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002262 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002263 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002264 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265};
2266
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267#endif
2268
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002269#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002270static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2271 size_t count, loff_t *ppos)
2272{
Al Viro496ad9a2013-01-23 17:07:38 -05002273 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002274 struct mm_struct *mm;
2275 char buffer[PROC_NUMBUF];
2276 size_t len;
2277 int ret;
2278
2279 if (!task)
2280 return -ESRCH;
2281
2282 ret = 0;
2283 mm = get_task_mm(task);
2284 if (mm) {
2285 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2286 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2287 MMF_DUMP_FILTER_SHIFT));
2288 mmput(mm);
2289 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2290 }
2291
2292 put_task_struct(task);
2293
2294 return ret;
2295}
2296
2297static ssize_t proc_coredump_filter_write(struct file *file,
2298 const char __user *buf,
2299 size_t count,
2300 loff_t *ppos)
2301{
2302 struct task_struct *task;
2303 struct mm_struct *mm;
2304 char buffer[PROC_NUMBUF], *end;
2305 unsigned int val;
2306 int ret;
2307 int i;
2308 unsigned long mask;
2309
2310 ret = -EFAULT;
2311 memset(buffer, 0, sizeof(buffer));
2312 if (count > sizeof(buffer) - 1)
2313 count = sizeof(buffer) - 1;
2314 if (copy_from_user(buffer, buf, count))
2315 goto out_no_task;
2316
2317 ret = -EINVAL;
2318 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2319 if (*end == '\n')
2320 end++;
2321 if (end - buffer == 0)
2322 goto out_no_task;
2323
2324 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002325 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002326 if (!task)
2327 goto out_no_task;
2328
2329 ret = end - buffer;
2330 mm = get_task_mm(task);
2331 if (!mm)
2332 goto out_no_mm;
2333
2334 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2335 if (val & mask)
2336 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2337 else
2338 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2339 }
2340
2341 mmput(mm);
2342 out_no_mm:
2343 put_task_struct(task);
2344 out_no_task:
2345 return ret;
2346}
2347
2348static const struct file_operations proc_coredump_filter_operations = {
2349 .read = proc_coredump_filter_read,
2350 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002351 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002352};
2353#endif
2354
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002355#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002356static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002357{
Andrea Righi940389b2008-07-28 00:48:12 +02002358 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002359 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002360 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002361
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002362 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2363 if (result)
2364 return result;
2365
2366 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
2367 result = -EACCES;
2368 goto out_unlock;
2369 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002370
Andrea Righi59954772008-07-27 17:29:15 +02002371 if (whole && lock_task_sighand(task, &flags)) {
2372 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002373
Andrea Righi59954772008-07-27 17:29:15 +02002374 task_io_accounting_add(&acct, &task->signal->ioac);
2375 while_each_thread(task, t)
2376 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002377
Andrea Righi59954772008-07-27 17:29:15 +02002378 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002379 }
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002380 result = seq_printf(m,
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002381 "rchar: %llu\n"
2382 "wchar: %llu\n"
2383 "syscr: %llu\n"
2384 "syscw: %llu\n"
2385 "read_bytes: %llu\n"
2386 "write_bytes: %llu\n"
2387 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002388 (unsigned long long)acct.rchar,
2389 (unsigned long long)acct.wchar,
2390 (unsigned long long)acct.syscr,
2391 (unsigned long long)acct.syscw,
2392 (unsigned long long)acct.read_bytes,
2393 (unsigned long long)acct.write_bytes,
2394 (unsigned long long)acct.cancelled_write_bytes);
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002395out_unlock:
2396 mutex_unlock(&task->signal->cred_guard_mutex);
2397 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002398}
Andrea Righi297c5d92008-07-25 01:48:49 -07002399
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002400static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2401 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002402{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002403 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002404}
2405
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002406static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2407 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002408{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002409 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002410}
2411#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002412
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002413#ifdef CONFIG_USER_NS
2414static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002415 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002416{
2417 struct user_namespace *ns = NULL;
2418 struct task_struct *task;
2419 struct seq_file *seq;
2420 int ret = -EINVAL;
2421
2422 task = get_proc_task(inode);
2423 if (task) {
2424 rcu_read_lock();
2425 ns = get_user_ns(task_cred_xxx(task, user_ns));
2426 rcu_read_unlock();
2427 put_task_struct(task);
2428 }
2429 if (!ns)
2430 goto err;
2431
2432 ret = seq_open(file, seq_ops);
2433 if (ret)
2434 goto err_put_ns;
2435
2436 seq = file->private_data;
2437 seq->private = ns;
2438
2439 return 0;
2440err_put_ns:
2441 put_user_ns(ns);
2442err:
2443 return ret;
2444}
2445
2446static int proc_id_map_release(struct inode *inode, struct file *file)
2447{
2448 struct seq_file *seq = file->private_data;
2449 struct user_namespace *ns = seq->private;
2450 put_user_ns(ns);
2451 return seq_release(inode, file);
2452}
2453
2454static int proc_uid_map_open(struct inode *inode, struct file *file)
2455{
2456 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2457}
2458
2459static int proc_gid_map_open(struct inode *inode, struct file *file)
2460{
2461 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2462}
2463
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002464static int proc_projid_map_open(struct inode *inode, struct file *file)
2465{
2466 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2467}
2468
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002469static const struct file_operations proc_uid_map_operations = {
2470 .open = proc_uid_map_open,
2471 .write = proc_uid_map_write,
2472 .read = seq_read,
2473 .llseek = seq_lseek,
2474 .release = proc_id_map_release,
2475};
2476
2477static const struct file_operations proc_gid_map_operations = {
2478 .open = proc_gid_map_open,
2479 .write = proc_gid_map_write,
2480 .read = seq_read,
2481 .llseek = seq_lseek,
2482 .release = proc_id_map_release,
2483};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002484
2485static const struct file_operations proc_projid_map_operations = {
2486 .open = proc_projid_map_open,
2487 .write = proc_projid_map_write,
2488 .read = seq_read,
2489 .llseek = seq_lseek,
2490 .release = proc_id_map_release,
2491};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002492#endif /* CONFIG_USER_NS */
2493
Kees Cook47830722008-10-06 03:11:58 +04002494static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2495 struct pid *pid, struct task_struct *task)
2496{
Al Viroa9712bc2011-03-23 15:52:50 -04002497 int err = lock_trace(task);
2498 if (!err) {
2499 seq_printf(m, "%08x\n", task->personality);
2500 unlock_trace(task);
2501 }
2502 return err;
Kees Cook47830722008-10-06 03:11:58 +04002503}
2504
Eric W. Biederman801199c2006-10-02 02:18:48 -07002505/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002506 * Thread groups
2507 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002508static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002509static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002510
Eric Dumazetc5141e62007-05-08 00:26:15 -07002511static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002512 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2513 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002514#ifdef CONFIG_CHECKPOINT_RESTORE
2515 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
2516#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002517 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002518 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002519#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002520 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002521#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002522 REG("environ", S_IRUSR, proc_environ_operations),
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -07002523 ONE("auxv", S_IRUSR, proc_pid_auxv),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002524 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002525 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002526 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002527#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002528 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002529#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002530#ifdef CONFIG_SCHED_AUTOGROUP
2531 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2532#endif
john stultz4614a696b2009-12-14 18:00:05 -08002533 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002534#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07002535 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002536#endif
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -07002537 ONE("cmdline", S_IRUGO, proc_pid_cmdline),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002538 ONE("stat", S_IRUGO, proc_tgid_stat),
2539 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002540 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002541#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002542 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002543#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002544 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2545 LNK("cwd", proc_cwd_link),
2546 LNK("root", proc_root_link),
2547 LNK("exe", proc_exe_link),
2548 REG("mounts", S_IRUGO, proc_mounts_operations),
2549 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2550 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002551#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002552 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002553 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07002554 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002555#endif
2556#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002557 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002558#endif
2559#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07002560 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002561#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002562#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07002563 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002564#endif
2565#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07002566 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002567#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002568#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002569 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002570#endif
Paul Menage8793d852007-10-18 23:39:39 -07002571#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002572 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002573#endif
Paul Menagea4243162007-10-18 23:39:35 -07002574#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002575 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002576#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07002577 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08002578 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002579 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002580#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002581 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2582 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002583#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002584#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002585 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002586#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002587#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002588 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002589#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002590#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002591 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002592#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04002593#ifdef CONFIG_HARDWALL
Alexey Dobriyand962c142014-08-08 14:21:52 -07002594 ONE("hardwall", S_IRUGO, proc_pid_hardwall),
Chris Metcalff133ecc2011-05-26 12:40:09 -04002595#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002596#ifdef CONFIG_USER_NS
2597 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2598 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002599 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002600#endif
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002601#ifdef CONFIG_CHECKPOINT_RESTORE
2602 REG("timers", S_IRUGO, proc_timers_operations),
2603#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002604};
2605
Al Virof0c3b502013-05-16 12:07:31 -04002606static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002607{
Al Virof0c3b502013-05-16 12:07:31 -04002608 return proc_pident_readdir(file, ctx,
2609 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002610}
2611
Arjan van de Ven00977a52007-02-12 00:55:34 -08002612static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002613 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002614 .iterate = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002615 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002616};
2617
Al Viro00cd8dd2012-06-10 17:13:09 -04002618static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2619{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002620 return proc_pident_lookup(dir, dentry,
2621 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002622}
2623
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002624static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002625 .lookup = proc_tgid_base_lookup,
2626 .getattr = pid_getattr,
2627 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08002628 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002629};
2630
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002631static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002633 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002634 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002635 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Eric W. Biederman48e64842006-06-26 00:25:48 -07002637 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002638 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Al Viro4f522a22013-02-11 23:20:37 -05002639 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002640 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002641 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08002642 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002643 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Eric W. Biederman48e64842006-06-26 00:25:48 -07002646 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002647 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2648 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002649 if (!leader)
2650 goto out;
2651
2652 name.name = "task";
2653 name.len = strlen(name.name);
2654 dir = d_hash_and_lookup(leader, &name);
2655 if (!dir)
2656 goto out_put_leader;
2657
2658 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002659 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002660 dentry = d_hash_and_lookup(dir, &name);
2661 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08002662 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002663 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002665
2666 dput(dir);
2667out_put_leader:
2668 dput(leader);
2669out:
2670 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671}
2672
Randy Dunlap0895e912007-10-21 21:00:10 -07002673/**
2674 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2675 * @task: task that should be flushed.
2676 *
2677 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002678 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002679 * in. This call is supposed to do all of this job.
2680 *
2681 * Looks in the dcache for
2682 * /proc/@pid
2683 * /proc/@tgid/task/@pid
2684 * if either directory is present flushes it and all of it'ts children
2685 * from the dcache.
2686 *
2687 * It is safe and reasonable to cache /proc entries for a task until
2688 * that task exits. After that they just clog up the dcache with
2689 * useless entries, possibly causing useful dcache entries to be
2690 * flushed instead. This routine is proved to flush those useless
2691 * dcache entries at process exit time.
2692 *
2693 * NOTE: This routine is just an optimization so it does not guarantee
2694 * that no dcache entries will exist at process exit time it
2695 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002696 */
2697
2698void proc_flush_task(struct task_struct *task)
2699{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002700 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002701 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002702 struct upid *upid;
2703
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002704 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002705 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002706
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002707 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002708 upid = &pid->numbers[i];
2709 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002710 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002711 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002712}
2713
Al Viroc52a47a2013-06-15 11:15:20 +04002714static int proc_pid_instantiate(struct inode *dir,
2715 struct dentry * dentry,
2716 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002717{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002718 struct inode *inode;
2719
Eric W. Biederman61a28782006-10-02 02:18:49 -07002720 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002721 if (!inode)
2722 goto out;
2723
2724 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2725 inode->i_op = &proc_tgid_base_inode_operations;
2726 inode->i_fop = &proc_tgid_base_operations;
2727 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002728
Miklos Szeredibfe86842011-10-28 14:13:29 +02002729 set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
2730 ARRAY_SIZE(tgid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002731
Nick Pigginfb045ad2011-01-07 17:49:55 +11002732 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002733
2734 d_add(dentry, inode);
2735 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04002736 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04002737 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002738out:
Al Viroc52a47a2013-06-15 11:15:20 +04002739 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002740}
2741
Al Viro00cd8dd2012-06-10 17:13:09 -04002742struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
Alexey Dobriyan335eb532014-08-08 14:21:27 -07002744 int result = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002747 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07002749 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (tgid == ~0U)
2751 goto out;
2752
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002753 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002754 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002755 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (task)
2757 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002758 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 if (!task)
2760 goto out;
2761
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002762 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002763 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764out:
Al Viroc52a47a2013-06-15 11:15:20 +04002765 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002769 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002770 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002772struct tgid_iter {
2773 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002774 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002775};
2776static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2777{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002778 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002780 if (iter.task)
2781 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002782 rcu_read_lock();
2783retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002784 iter.task = NULL;
2785 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002786 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002787 iter.tgid = pid_nr_ns(pid, ns);
2788 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002789 /* What we to know is if the pid we have find is the
2790 * pid of a thread_group_leader. Testing for task
2791 * being a thread_group_leader is the obvious thing
2792 * todo but there is a window when it fails, due to
2793 * the pid transfer logic in de_thread.
2794 *
2795 * So we perform the straight forward test of seeing
2796 * if the pid we have found is the pid of a thread
2797 * group leader, and don't worry if the task we have
2798 * found doesn't happen to be a thread group leader.
2799 * As we don't care in the case of readdir.
2800 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002801 if (!iter.task || !has_group_leader_pid(iter.task)) {
2802 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002803 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002804 }
2805 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002807 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002808 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809}
2810
Eric W. Biederman00978752014-07-31 03:10:50 -07002811#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04002814int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002816 struct tgid_iter iter;
Al Virodb963162013-06-15 10:45:10 +04002817 struct pid_namespace *ns = file->f_dentry->d_sb->s_fs_info;
Al Virof0c3b502013-05-16 12:07:31 -04002818 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Al Viro021ada72013-03-29 19:27:05 -04002820 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04002821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Eric W. Biederman00978752014-07-31 03:10:50 -07002823 if (pos == TGID_OFFSET - 2) {
Al Virodb963162013-06-15 10:45:10 +04002824 struct inode *inode = ns->proc_self->d_inode;
2825 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04002826 return 0;
Eric W. Biederman00978752014-07-31 03:10:50 -07002827 ctx->pos = pos = pos + 1;
Al Viro021ada72013-03-29 19:27:05 -04002828 }
Eric W. Biederman00978752014-07-31 03:10:50 -07002829 if (pos == TGID_OFFSET - 1) {
2830 struct inode *inode = ns->proc_thread_self->d_inode;
2831 if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
2832 return 0;
2833 ctx->pos = pos = pos + 1;
2834 }
2835 iter.tgid = pos - TGID_OFFSET;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002836 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002837 for (iter = next_tgid(ns, iter);
2838 iter.task;
2839 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Al Virof0c3b502013-05-16 12:07:31 -04002840 char name[PROC_NUMBUF];
2841 int len;
2842 if (!has_pid_permissions(ns, iter.task, 2))
2843 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08002844
Al Virof0c3b502013-05-16 12:07:31 -04002845 len = snprintf(name, sizeof(name), "%d", iter.tgid);
2846 ctx->pos = iter.tgid + TGID_OFFSET;
2847 if (!proc_fill_cache(file, ctx, name, len,
2848 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002849 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04002850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
Al Virof0c3b502013-05-16 12:07:31 -04002853 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 return 0;
2855}
2856
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002857/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002858 * Tasks
2859 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002860static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002861 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07002862 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002863 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Eric W. Biederman6ba8ed72014-07-31 16:27:08 -07002864#ifdef CONFIG_NET
2865 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
2866#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002867 REG("environ", S_IRUSR, proc_environ_operations),
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -07002868 ONE("auxv", S_IRUSR, proc_pid_auxv),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002869 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002870 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002871 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002872#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002873 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002874#endif
john stultz4614a696b2009-12-14 18:00:05 -08002875 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002876#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07002877 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002878#endif
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -07002879 ONE("cmdline", S_IRUGO, proc_pid_cmdline),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002880 ONE("stat", S_IRUGO, proc_tid_stat),
2881 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002882 REG("maps", S_IRUGO, proc_tid_maps_operations),
Cyrill Gorcunov818411612012-05-31 16:26:43 -07002883#ifdef CONFIG_CHECKPOINT_RESTORE
2884 REG("children", S_IRUGO, proc_tid_children_operations),
2885#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002886#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002887 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002888#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002889 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2890 LNK("cwd", proc_cwd_link),
2891 LNK("root", proc_root_link),
2892 LNK("exe", proc_exe_link),
2893 REG("mounts", S_IRUGO, proc_mounts_operations),
2894 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002895#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002896 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002897 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07002898 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002899#endif
2900#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002901 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002902#endif
2903#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07002904 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002905#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002906#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07002907 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002908#endif
2909#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07002910 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002911#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002912#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002913 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002914#endif
Paul Menage8793d852007-10-18 23:39:39 -07002915#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002916 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002917#endif
Paul Menagea4243162007-10-18 23:39:35 -07002918#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002919 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002920#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07002921 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08002922 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002923 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002924#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002925 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05002926 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002927#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002928#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002929 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002930#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002931#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002932 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002933#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04002934#ifdef CONFIG_HARDWALL
Alexey Dobriyand962c142014-08-08 14:21:52 -07002935 ONE("hardwall", S_IRUGO, proc_pid_hardwall),
Chris Metcalff133ecc2011-05-26 12:40:09 -04002936#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002937#ifdef CONFIG_USER_NS
2938 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2939 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002940 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002941#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002942};
2943
Al Virof0c3b502013-05-16 12:07:31 -04002944static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002945{
Al Virof0c3b502013-05-16 12:07:31 -04002946 return proc_pident_readdir(file, ctx,
2947 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002948}
2949
Al Viro00cd8dd2012-06-10 17:13:09 -04002950static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2951{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002952 return proc_pident_lookup(dir, dentry,
2953 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002954}
2955
Arjan van de Ven00977a52007-02-12 00:55:34 -08002956static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002957 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002958 .iterate = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002959 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002960};
2961
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002962static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002963 .lookup = proc_tid_base_lookup,
2964 .getattr = pid_getattr,
2965 .setattr = proc_setattr,
2966};
2967
Al Viroc52a47a2013-06-15 11:15:20 +04002968static int proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002969 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002970{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002971 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07002972 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002973
2974 if (!inode)
2975 goto out;
2976 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2977 inode->i_op = &proc_tid_base_inode_operations;
2978 inode->i_fop = &proc_tid_base_operations;
2979 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002980
Miklos Szeredibfe86842011-10-28 14:13:29 +02002981 set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
2982 ARRAY_SIZE(tid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002983
Nick Pigginfb045ad2011-01-07 17:49:55 +11002984 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002985
2986 d_add(dentry, inode);
2987 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04002988 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04002989 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002990out:
Al Viroc52a47a2013-06-15 11:15:20 +04002991 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002992}
2993
Al Viro00cd8dd2012-06-10 17:13:09 -04002994static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002995{
Al Viroc52a47a2013-06-15 11:15:20 +04002996 int result = -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002997 struct task_struct *task;
2998 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002999 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003000 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003001
3002 if (!leader)
3003 goto out_no_task;
3004
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003005 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003006 if (tid == ~0U)
3007 goto out;
3008
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003009 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003010 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003011 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003012 if (task)
3013 get_task_struct(task);
3014 rcu_read_unlock();
3015 if (!task)
3016 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003017 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003018 goto out_drop_task;
3019
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003020 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003021out_drop_task:
3022 put_task_struct(task);
3023out:
3024 put_task_struct(leader);
3025out_no_task:
Al Viroc52a47a2013-06-15 11:15:20 +04003026 return ERR_PTR(result);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003027}
3028
3029/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003030 * Find the first tid of a thread group to return to user space.
3031 *
3032 * Usually this is just the thread group leader, but if the users
3033 * buffer was too small or there was a seek into the middle of the
3034 * directory we have more work todo.
3035 *
3036 * In the case of a short read we start with find_task_by_pid.
3037 *
3038 * In the case of a seek we start with the leader and walk nr
3039 * threads past it.
3040 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003041static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3042 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003043{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003044 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003045 unsigned long nr = f_pos;
3046
3047 if (nr != f_pos) /* 32bit overflow? */
3048 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003049
Eric W. Biedermancc288732006-06-26 00:26:01 -07003050 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003051 task = pid_task(pid, PIDTYPE_PID);
3052 if (!task)
3053 goto fail;
3054
3055 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003056 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003057 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003058 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003059 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003060 }
3061
3062 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003063 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003064 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003065
3066 /* If we haven't found our starting place yet start
3067 * with the leader and walk nr threads forward.
3068 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003069 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003070 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003071 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003072 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003073 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003074fail:
3075 pos = NULL;
3076 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003077found:
3078 get_task_struct(pos);
3079out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003080 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003081 return pos;
3082}
3083
3084/*
3085 * Find the next thread in the thread list.
3086 * Return NULL if there is an error or no next thread.
3087 *
3088 * The reference to the input task_struct is released.
3089 */
3090static struct task_struct *next_tid(struct task_struct *start)
3091{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003092 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003093 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003094 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003095 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003096 if (thread_group_leader(pos))
3097 pos = NULL;
3098 else
3099 get_task_struct(pos);
3100 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003101 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003102 put_task_struct(start);
3103 return pos;
3104}
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003107static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003109 struct inode *inode = file_inode(file);
3110 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003111 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003112 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003114 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003115 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Al Virof0c3b502013-05-16 12:07:31 -04003117 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003120 /* f_version caches the tgid value that the last readdir call couldn't
3121 * return. lseek aka telldir automagically resets f_version to 0.
3122 */
Al Virof0c3b502013-05-16 12:07:31 -04003123 ns = file->f_dentry->d_sb->s_fs_info;
3124 tid = (int)file->f_version;
3125 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003126 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003127 task;
Al Virof0c3b502013-05-16 12:07:31 -04003128 task = next_tid(task), ctx->pos++) {
3129 char name[PROC_NUMBUF];
3130 int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003131 tid = task_pid_nr_ns(task, ns);
Al Virof0c3b502013-05-16 12:07:31 -04003132 len = snprintf(name, sizeof(name), "%d", tid);
3133 if (!proc_fill_cache(file, ctx, name, len,
3134 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003135 /* returning this tgid failed, save it as the first
3136 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003137 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003138 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003142
Al Virof0c3b502013-05-16 12:07:31 -04003143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003145
3146static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3147{
3148 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003149 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003150 generic_fillattr(inode, stat);
3151
Eric W. Biederman99f89552006-06-26 00:25:55 -07003152 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003153 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003154 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003155 }
3156
3157 return 0;
3158}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003159
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003160static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003161 .lookup = proc_task_lookup,
3162 .getattr = proc_task_getattr,
3163 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003164 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003165};
3166
Arjan van de Ven00977a52007-02-12 00:55:34 -08003167static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003168 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04003169 .iterate = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003170 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003171};