blob: be41e8bed3ab4e26c9ae31c3d8e75f0235b8da71 [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, {})
133#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700134 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700135 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300136 { .proc_read = read } )
137#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800138 NOD(NAME, (S_IFREG|(MODE)), \
139 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300140 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Vegard Nossumaed54172008-06-05 22:46:53 -0700142/*
143 * Count the number of hardlinks for the pid_entry table, excluding the .
144 * and .. links.
145 */
146static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
147 unsigned int n)
148{
149 unsigned int i;
150 unsigned int count;
151
152 count = 0;
153 for (i = 0; i < n; ++i) {
154 if (S_ISDIR(entries[i].mode))
155 ++count;
156 }
157
158 return count;
159}
160
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200161static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000163 int result = -ENOENT;
164
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700165 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200166 if (task->fs) {
167 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000168 result = 0;
169 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700170 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000171 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700172}
173
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800174static int proc_cwd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700175{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800176 struct task_struct *task = get_proc_task(dentry->d_inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700177 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700178
179 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200180 task_lock(task);
181 if (task->fs) {
182 get_fs_pwd(task->fs, path);
183 result = 0;
184 }
185 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700186 put_task_struct(task);
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return result;
189}
190
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800191static int proc_root_link(struct dentry *dentry, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800193 struct task_struct *task = get_proc_task(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700195
196 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200197 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700198 put_task_struct(task);
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return result;
201}
202
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700203static int proc_pid_cmdline(struct seq_file *m, struct pid_namespace *ns,
204 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700206 /*
207 * Rely on struct seq_operations::show() being called once
208 * per internal buffer allocation. See single_open(), traverse().
209 */
210 BUG_ON(m->size < PAGE_SIZE);
211 m->count += get_cmdline(task, m->buf, PAGE_SIZE);
212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700215static int proc_pid_auxv(struct seq_file *m, struct pid_namespace *ns,
216 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Cong Wange7dcd992012-05-31 16:26:17 -0700218 struct mm_struct *mm = mm_access(task, PTRACE_MODE_READ);
Al Viro2fadaef2011-02-15 22:52:11 -0500219 if (mm && !IS_ERR(mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300221 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300223 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700224 seq_write(m, mm->saved_auxv, nwords * sizeof(mm->saved_auxv[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 mmput(mm);
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -0700226 return 0;
227 } else
228 return PTR_ERR(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231
232#ifdef CONFIG_KALLSYMS
233/*
234 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
235 * Returns the resolved symbol. If that fails, simply return the address.
236 */
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700237static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
238 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700240 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700241 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 wchan = get_wchan(task);
244
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700245 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600246 if (!ptrace_may_access(task, PTRACE_MODE_READ))
247 return 0;
248 else
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700249 return seq_printf(m, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700250 else
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700251 return seq_printf(m, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253#endif /* CONFIG_KALLSYMS */
254
Al Viroa9712bc2011-03-23 15:52:50 -0400255static int lock_trace(struct task_struct *task)
256{
257 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
258 if (err)
259 return err;
260 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
261 mutex_unlock(&task->signal->cred_guard_mutex);
262 return -EPERM;
263 }
264 return 0;
265}
266
267static void unlock_trace(struct task_struct *task)
268{
269 mutex_unlock(&task->signal->cred_guard_mutex);
270}
271
Ken Chen2ec220e2008-11-10 11:26:08 +0300272#ifdef CONFIG_STACKTRACE
273
274#define MAX_STACK_TRACE_DEPTH 64
275
276static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
277 struct pid *pid, struct task_struct *task)
278{
279 struct stack_trace trace;
280 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400281 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300282 int i;
283
284 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
285 if (!entries)
286 return -ENOMEM;
287
288 trace.nr_entries = 0;
289 trace.max_entries = MAX_STACK_TRACE_DEPTH;
290 trace.entries = entries;
291 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300292
Al Viroa9712bc2011-03-23 15:52:50 -0400293 err = lock_trace(task);
294 if (!err) {
295 save_stack_trace_tsk(task, &trace);
296
297 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvaldsb81a6182011-03-23 20:51:42 -0700298 seq_printf(m, "[<%pK>] %pS\n",
Al Viroa9712bc2011-03-23 15:52:50 -0400299 (void *)entries[i], (void *)entries[i]);
300 }
301 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300302 }
303 kfree(entries);
304
Al Viroa9712bc2011-03-23 15:52:50 -0400305 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300306}
307#endif
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#ifdef CONFIG_SCHEDSTATS
310/*
311 * Provides /proc/PID/schedstat
312 */
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700313static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
314 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700316 return seq_printf(m, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100317 (unsigned long long)task->se.sum_exec_runtime,
318 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200319 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321#endif
322
Arjan van de Ven97455122008-01-25 21:08:34 +0100323#ifdef CONFIG_LATENCYTOP
324static int lstats_show_proc(struct seq_file *m, void *v)
325{
326 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800327 struct inode *inode = m->private;
328 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100329
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800330 if (!task)
331 return -ESRCH;
332 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100333 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800334 struct latency_record *lr = &task->latency_record[i];
335 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100336 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800337 seq_printf(m, "%i %li %li",
338 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100339 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800340 unsigned long bt = lr->backtrace[q];
341 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100342 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800343 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100344 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800345 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100346 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800347 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100348 }
349
350 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800351 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100352 return 0;
353}
354
355static int lstats_open(struct inode *inode, struct file *file)
356{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800357 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800358}
359
Arjan van de Ven97455122008-01-25 21:08:34 +0100360static ssize_t lstats_write(struct file *file, const char __user *buf,
361 size_t count, loff_t *offs)
362{
Al Viro496ad9a2013-01-23 17:07:38 -0500363 struct task_struct *task = get_proc_task(file_inode(file));
Arjan van de Ven97455122008-01-25 21:08:34 +0100364
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800365 if (!task)
366 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100367 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800368 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100369
370 return count;
371}
372
373static const struct file_operations proc_lstats_operations = {
374 .open = lstats_open,
375 .read = seq_read,
376 .write = lstats_write,
377 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800378 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100379};
380
381#endif
382
Al Viro8d8b97b2013-04-19 23:11:24 -0400383#ifdef CONFIG_CGROUPS
384static int cgroup_open(struct inode *inode, struct file *file)
385{
386 struct pid *pid = PROC_I(inode)->pid;
387 return single_open(file, proc_cgroup_show, pid);
388}
389
390static const struct file_operations proc_cgroup_operations = {
391 .open = cgroup_open,
392 .read = seq_read,
393 .llseek = seq_lseek,
394 .release = single_release,
395};
396#endif
397
398#ifdef CONFIG_PROC_PID_CPUSET
399
400static int cpuset_open(struct inode *inode, struct file *file)
401{
402 struct pid *pid = PROC_I(inode)->pid;
403 return single_open(file, proc_cpuset_show, pid);
404}
405
406static const struct file_operations proc_cpuset_operations = {
407 .open = cpuset_open,
408 .read = seq_read,
409 .llseek = seq_lseek,
410 .release = single_release,
411};
412#endif
413
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700414static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
415 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
David Rientjesa7f638f2012-05-29 15:06:47 -0700417 unsigned long totalpages = totalram_pages + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200418 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700420 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200421 if (pid_alive(task))
David Rientjesa7f638f2012-05-29 15:06:47 -0700422 points = oom_badness(task, NULL, NULL, totalpages) *
423 1000 / totalpages;
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700424 read_unlock(&tasklist_lock);
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700425 return seq_printf(m, "%lu\n", points);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Neil Hormand85f50d2007-10-18 23:40:37 -0700428struct limit_names {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700429 const char *name;
430 const char *unit;
Neil Hormand85f50d2007-10-18 23:40:37 -0700431};
432
433static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700434 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700435 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
436 [RLIMIT_DATA] = {"Max data size", "bytes"},
437 [RLIMIT_STACK] = {"Max stack size", "bytes"},
438 [RLIMIT_CORE] = {"Max core file size", "bytes"},
439 [RLIMIT_RSS] = {"Max resident set", "bytes"},
440 [RLIMIT_NPROC] = {"Max processes", "processes"},
441 [RLIMIT_NOFILE] = {"Max open files", "files"},
442 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
443 [RLIMIT_AS] = {"Max address space", "bytes"},
444 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
445 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
446 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
447 [RLIMIT_NICE] = {"Max nice priority", NULL},
448 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800449 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700450};
451
452/* Display limits for a process */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700453static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
454 struct pid *pid, struct task_struct *task)
Neil Hormand85f50d2007-10-18 23:40:37 -0700455{
456 unsigned int i;
Neil Hormand85f50d2007-10-18 23:40:37 -0700457 unsigned long flags;
Neil Hormand85f50d2007-10-18 23:40:37 -0700458
459 struct rlimit rlim[RLIM_NLIMITS];
460
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400461 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700462 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700463 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
464 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700465
466 /*
467 * print the file header
468 */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700469 seq_printf(m, "%-25s %-20s %-20s %-10s\n",
Neil Hormand85f50d2007-10-18 23:40:37 -0700470 "Limit", "Soft Limit", "Hard Limit", "Units");
471
472 for (i = 0; i < RLIM_NLIMITS; i++) {
473 if (rlim[i].rlim_cur == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700474 seq_printf(m, "%-25s %-20s ",
Neil Hormand85f50d2007-10-18 23:40:37 -0700475 lnames[i].name, "unlimited");
476 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700477 seq_printf(m, "%-25s %-20lu ",
Neil Hormand85f50d2007-10-18 23:40:37 -0700478 lnames[i].name, rlim[i].rlim_cur);
479
480 if (rlim[i].rlim_max == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700481 seq_printf(m, "%-20s ", "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700482 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700483 seq_printf(m, "%-20lu ", rlim[i].rlim_max);
Neil Hormand85f50d2007-10-18 23:40:37 -0700484
485 if (lnames[i].unit)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700486 seq_printf(m, "%-10s\n", lnames[i].unit);
Neil Hormand85f50d2007-10-18 23:40:37 -0700487 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700488 seq_putc(m, '\n');
Neil Hormand85f50d2007-10-18 23:40:37 -0700489 }
490
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700491 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700492}
493
Roland McGrathebcb6732008-07-25 19:46:00 -0700494#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700495static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
496 struct pid *pid, struct task_struct *task)
Roland McGrathebcb6732008-07-25 19:46:00 -0700497{
498 long nr;
499 unsigned long args[6], sp, pc;
Al Viroa9712bc2011-03-23 15:52:50 -0400500 int res = lock_trace(task);
501 if (res)
502 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700503
504 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700505 seq_puts(m, "running\n");
Al Viroa9712bc2011-03-23 15:52:50 -0400506 else if (nr < 0)
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700507 seq_printf(m, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400508 else
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700509 seq_printf(m,
Roland McGrathebcb6732008-07-25 19:46:00 -0700510 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
511 nr,
512 args[0], args[1], args[2], args[3], args[4], args[5],
513 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400514 unlock_trace(task);
515 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700516}
517#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/************************************************************************/
520/* Here the fs part begins */
521/************************************************************************/
522
523/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700524static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700526 struct task_struct *task;
527 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700528 /* Allow access to a task's file descriptors if it is us or we
529 * may use ptrace attach to the process and find out that
530 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700531 */
532 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700533 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400534 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700535 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700536 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700537 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800540int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700541{
542 int error;
543 struct inode *inode = dentry->d_inode;
544
545 if (attr->ia_valid & ATTR_MODE)
546 return -EPERM;
547
548 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200549 if (error)
550 return error;
551
Christoph Hellwig10257742010-06-04 11:30:02 +0200552 setattr_copy(inode, attr);
553 mark_inode_dirty(inode);
554 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700555}
556
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800557/*
558 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
559 * or euid/egid (for hide_pid_min=2)?
560 */
561static bool has_pid_permissions(struct pid_namespace *pid,
562 struct task_struct *task,
563 int hide_pid_min)
564{
565 if (pid->hide_pid < hide_pid_min)
566 return true;
567 if (in_group_p(pid->pid_gid))
568 return true;
569 return ptrace_may_access(task, PTRACE_MODE_READ);
570}
571
572
573static int proc_pid_permission(struct inode *inode, int mask)
574{
575 struct pid_namespace *pid = inode->i_sb->s_fs_info;
576 struct task_struct *task;
577 bool has_perms;
578
579 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800580 if (!task)
581 return -ESRCH;
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800582 has_perms = has_pid_permissions(pid, task, 1);
583 put_task_struct(task);
584
585 if (!has_perms) {
586 if (pid->hide_pid == 2) {
587 /*
588 * Let's make getdents(), stat(), and open()
589 * consistent with each other. If a process
590 * may not stat() a file, it shouldn't be seen
591 * in procfs at all.
592 */
593 return -ENOENT;
594 }
595
596 return -EPERM;
597 }
598 return generic_permission(inode, mask);
599}
600
601
602
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800603static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700604 .setattr = proc_setattr,
605};
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
608
609static ssize_t proc_info_read(struct file * file, char __user * buf,
610 size_t count, loff_t *ppos)
611{
Al Viro496ad9a2013-01-23 17:07:38 -0500612 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 unsigned long page;
614 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700615 struct task_struct *task = get_proc_task(inode);
616
617 length = -ESRCH;
618 if (!task)
619 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 if (count > PROC_BLOCK_SIZE)
622 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700623
624 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700625 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700626 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 length = PROC_I(inode)->op.proc_read(task, (char*)page);
629
630 if (length >= 0)
631 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
632 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700633out:
634 put_task_struct(task);
635out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return length;
637}
638
Arjan van de Ven00977a52007-02-12 00:55:34 -0800639static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100641 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642};
643
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800644static int proc_single_show(struct seq_file *m, void *v)
645{
646 struct inode *inode = m->private;
647 struct pid_namespace *ns;
648 struct pid *pid;
649 struct task_struct *task;
650 int ret;
651
652 ns = inode->i_sb->s_fs_info;
653 pid = proc_pid(inode);
654 task = get_pid_task(pid, PIDTYPE_PID);
655 if (!task)
656 return -ESRCH;
657
658 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
659
660 put_task_struct(task);
661 return ret;
662}
663
664static int proc_single_open(struct inode *inode, struct file *filp)
665{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800666 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800667}
668
669static const struct file_operations proc_single_file_operations = {
670 .open = proc_single_open,
671 .read = seq_read,
672 .llseek = seq_lseek,
673 .release = single_release,
674};
675
Cong Wangb409e572012-05-31 16:26:17 -0700676static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Al Viro496ad9a2013-01-23 17:07:38 -0500678 struct task_struct *task = get_proc_task(file_inode(file));
Linus Torvaldse2683372012-01-17 15:21:19 -0800679 struct mm_struct *mm;
680
681 if (!task)
682 return -ESRCH;
683
Cong Wangb409e572012-05-31 16:26:17 -0700684 mm = mm_access(task, mode);
Linus Torvaldse2683372012-01-17 15:21:19 -0800685 put_task_struct(task);
686
687 if (IS_ERR(mm))
688 return PTR_ERR(mm);
689
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100690 if (mm) {
691 /* ensure this mm_struct can't be freed */
692 atomic_inc(&mm->mm_count);
693 /* but do not pin its memory */
694 mmput(mm);
695 }
696
Linus Torvaldse2683372012-01-17 15:21:19 -0800697 file->private_data = mm;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
701
Cong Wangb409e572012-05-31 16:26:17 -0700702static int mem_open(struct inode *inode, struct file *file)
703{
Djalal Harounibc452b42012-07-30 14:42:28 -0700704 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
705
706 /* OK to pass negative loff_t, we can catch out-of-range */
707 file->f_mode |= FMODE_UNSIGNED_OFFSET;
708
709 return ret;
Cong Wangb409e572012-05-31 16:26:17 -0700710}
711
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100712static ssize_t mem_rw(struct file *file, char __user *buf,
713 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Linus Torvaldse2683372012-01-17 15:21:19 -0800715 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100716 unsigned long addr = *ppos;
717 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Linus Torvaldse2683372012-01-17 15:21:19 -0800720 if (!mm)
721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Mel Gormane12ba742007-10-16 01:25:52 -0700723 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800725 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700727 copied = 0;
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100728 if (!atomic_inc_not_zero(&mm->mm_users))
729 goto free;
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100732 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100734 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 copied = -EFAULT;
736 break;
737 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100738
739 this_len = access_remote_vm(mm, addr, page, this_len, write);
740 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (!copied)
742 copied = -EIO;
743 break;
744 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100745
746 if (!write && copy_to_user(buf, page, this_len)) {
747 copied = -EFAULT;
748 break;
749 }
750
751 buf += this_len;
752 addr += this_len;
753 copied += this_len;
754 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100756 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700757
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100758 mmput(mm);
759free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700760 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return copied;
762}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100764static ssize_t mem_read(struct file *file, char __user *buf,
765 size_t count, loff_t *ppos)
766{
767 return mem_rw(file, buf, count, ppos, 0);
768}
769
770static ssize_t mem_write(struct file *file, const char __user *buf,
771 size_t count, loff_t *ppos)
772{
773 return mem_rw(file, (char __user*)buf, count, ppos, 1);
774}
775
Matt Mackall85863e42008-02-04 22:29:04 -0800776loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 switch (orig) {
779 case 0:
780 file->f_pos = offset;
781 break;
782 case 1:
783 file->f_pos += offset;
784 break;
785 default:
786 return -EINVAL;
787 }
788 force_successful_syscall_return();
789 return file->f_pos;
790}
791
Linus Torvaldse2683372012-01-17 15:21:19 -0800792static int mem_release(struct inode *inode, struct file *file)
793{
794 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100795 if (mm)
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100796 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800797 return 0;
798}
799
Arjan van de Ven00977a52007-02-12 00:55:34 -0800800static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .llseek = mem_lseek,
802 .read = mem_read,
803 .write = mem_write,
804 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800805 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806};
807
Cong Wangb409e572012-05-31 16:26:17 -0700808static int environ_open(struct inode *inode, struct file *file)
809{
810 return __mem_open(inode, file, PTRACE_MODE_READ);
811}
812
James Pearson315e28c2007-10-16 23:30:17 -0700813static ssize_t environ_read(struct file *file, char __user *buf,
814 size_t count, loff_t *ppos)
815{
James Pearson315e28c2007-10-16 23:30:17 -0700816 char *page;
817 unsigned long src = *ppos;
Cong Wangb409e572012-05-31 16:26:17 -0700818 int ret = 0;
819 struct mm_struct *mm = file->private_data;
James Pearson315e28c2007-10-16 23:30:17 -0700820
Cong Wangb409e572012-05-31 16:26:17 -0700821 if (!mm)
822 return 0;
James Pearson315e28c2007-10-16 23:30:17 -0700823
James Pearson315e28c2007-10-16 23:30:17 -0700824 page = (char *)__get_free_page(GFP_TEMPORARY);
825 if (!page)
Cong Wangb409e572012-05-31 16:26:17 -0700826 return -ENOMEM;
James Pearson315e28c2007-10-16 23:30:17 -0700827
Al Virod6f64b82011-02-15 22:26:01 -0500828 ret = 0;
Cong Wangb409e572012-05-31 16:26:17 -0700829 if (!atomic_inc_not_zero(&mm->mm_users))
830 goto free;
James Pearson315e28c2007-10-16 23:30:17 -0700831 while (count > 0) {
Djalal Harounie8905ec2012-07-30 14:42:26 -0700832 size_t this_len, max_len;
833 int retval;
834
835 if (src >= (mm->env_end - mm->env_start))
836 break;
James Pearson315e28c2007-10-16 23:30:17 -0700837
838 this_len = mm->env_end - (mm->env_start + src);
839
Djalal Harounie8905ec2012-07-30 14:42:26 -0700840 max_len = min_t(size_t, PAGE_SIZE, count);
841 this_len = min(max_len, this_len);
James Pearson315e28c2007-10-16 23:30:17 -0700842
Cong Wangb409e572012-05-31 16:26:17 -0700843 retval = access_remote_vm(mm, (mm->env_start + src),
James Pearson315e28c2007-10-16 23:30:17 -0700844 page, this_len, 0);
845
846 if (retval <= 0) {
847 ret = retval;
848 break;
849 }
850
851 if (copy_to_user(buf, page, retval)) {
852 ret = -EFAULT;
853 break;
854 }
855
856 ret += retval;
857 src += retval;
858 buf += retval;
859 count -= retval;
860 }
861 *ppos = src;
James Pearson315e28c2007-10-16 23:30:17 -0700862 mmput(mm);
Cong Wangb409e572012-05-31 16:26:17 -0700863
864free:
James Pearson315e28c2007-10-16 23:30:17 -0700865 free_page((unsigned long) page);
James Pearson315e28c2007-10-16 23:30:17 -0700866 return ret;
867}
868
869static const struct file_operations proc_environ_operations = {
Cong Wangb409e572012-05-31 16:26:17 -0700870 .open = environ_open,
James Pearson315e28c2007-10-16 23:30:17 -0700871 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100872 .llseek = generic_file_llseek,
Cong Wangb409e572012-05-31 16:26:17 -0700873 .release = mem_release,
James Pearson315e28c2007-10-16 23:30:17 -0700874};
875
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800876static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
877 loff_t *ppos)
878{
Al Viro496ad9a2013-01-23 17:07:38 -0500879 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800880 char buffer[PROC_NUMBUF];
881 int oom_adj = OOM_ADJUST_MIN;
882 size_t len;
883 unsigned long flags;
884
885 if (!task)
886 return -ESRCH;
887 if (lock_task_sighand(task, &flags)) {
888 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
889 oom_adj = OOM_ADJUST_MAX;
890 else
891 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
892 OOM_SCORE_ADJ_MAX;
893 unlock_task_sighand(task, &flags);
894 }
895 put_task_struct(task);
896 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
897 return simple_read_from_buffer(buf, count, ppos, buffer, len);
898}
899
900static ssize_t oom_adj_write(struct file *file, const char __user *buf,
901 size_t count, loff_t *ppos)
902{
903 struct task_struct *task;
904 char buffer[PROC_NUMBUF];
905 int oom_adj;
906 unsigned long flags;
907 int err;
908
909 memset(buffer, 0, sizeof(buffer));
910 if (count > sizeof(buffer) - 1)
911 count = sizeof(buffer) - 1;
912 if (copy_from_user(buffer, buf, count)) {
913 err = -EFAULT;
914 goto out;
915 }
916
917 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
918 if (err)
919 goto out;
920 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
921 oom_adj != OOM_DISABLE) {
922 err = -EINVAL;
923 goto out;
924 }
925
Al Viro496ad9a2013-01-23 17:07:38 -0500926 task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800927 if (!task) {
928 err = -ESRCH;
929 goto out;
930 }
931
932 task_lock(task);
933 if (!task->mm) {
934 err = -EINVAL;
935 goto err_task_lock;
936 }
937
938 if (!lock_task_sighand(task, &flags)) {
939 err = -ESRCH;
940 goto err_task_lock;
941 }
942
943 /*
944 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
945 * value is always attainable.
946 */
947 if (oom_adj == OOM_ADJUST_MAX)
948 oom_adj = OOM_SCORE_ADJ_MAX;
949 else
950 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
951
952 if (oom_adj < task->signal->oom_score_adj &&
953 !capable(CAP_SYS_RESOURCE)) {
954 err = -EACCES;
955 goto err_sighand;
956 }
957
958 /*
959 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
960 * /proc/pid/oom_score_adj instead.
961 */
Andrew Morton87ebdc02013-02-27 17:03:16 -0800962 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 -0800963 current->comm, task_pid_nr(current), task_pid_nr(task),
964 task_pid_nr(task));
965
966 task->signal->oom_score_adj = oom_adj;
967 trace_oom_score_adj_update(task);
968err_sighand:
969 unlock_task_sighand(task, &flags);
970err_task_lock:
971 task_unlock(task);
972 put_task_struct(task);
973out:
974 return err < 0 ? err : count;
975}
976
977static const struct file_operations proc_oom_adj_operations = {
978 .read = oom_adj_read,
979 .write = oom_adj_write,
980 .llseek = generic_file_llseek,
981};
982
David Rientjesa63d83f2010-08-09 17:19:46 -0700983static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
984 size_t count, loff_t *ppos)
985{
Al Viro496ad9a2013-01-23 17:07:38 -0500986 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesa63d83f2010-08-09 17:19:46 -0700987 char buffer[PROC_NUMBUF];
David Rientjesa9c58b902012-12-11 16:02:54 -0800988 short oom_score_adj = OOM_SCORE_ADJ_MIN;
David Rientjesa63d83f2010-08-09 17:19:46 -0700989 unsigned long flags;
990 size_t len;
991
992 if (!task)
993 return -ESRCH;
994 if (lock_task_sighand(task, &flags)) {
995 oom_score_adj = task->signal->oom_score_adj;
996 unlock_task_sighand(task, &flags);
997 }
998 put_task_struct(task);
David Rientjesa9c58b902012-12-11 16:02:54 -0800999 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001000 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1001}
1002
1003static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1004 size_t count, loff_t *ppos)
1005{
1006 struct task_struct *task;
1007 char buffer[PROC_NUMBUF];
1008 unsigned long flags;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001009 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001010 int err;
1011
1012 memset(buffer, 0, sizeof(buffer));
1013 if (count > sizeof(buffer) - 1)
1014 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001015 if (copy_from_user(buffer, buf, count)) {
1016 err = -EFAULT;
1017 goto out;
1018 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001019
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001020 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001021 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001022 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001023 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001024 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1025 err = -EINVAL;
1026 goto out;
1027 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001028
Al Viro496ad9a2013-01-23 17:07:38 -05001029 task = get_proc_task(file_inode(file));
David Rientjes723548b2010-10-26 14:21:25 -07001030 if (!task) {
1031 err = -ESRCH;
1032 goto out;
1033 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001034
Ying Han3d5992d2010-10-26 14:21:23 -07001035 task_lock(task);
1036 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001037 err = -EINVAL;
1038 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001039 }
David Rientjesd19d5472010-10-26 14:21:26 -07001040
1041 if (!lock_task_sighand(task, &flags)) {
1042 err = -ESRCH;
1043 goto err_task_lock;
1044 }
1045
David Rientjesa9c58b902012-12-11 16:02:54 -08001046 if ((short)oom_score_adj < task->signal->oom_score_adj_min &&
David Rientjesd19d5472010-10-26 14:21:26 -07001047 !capable(CAP_SYS_RESOURCE)) {
1048 err = -EACCES;
1049 goto err_sighand;
1050 }
1051
David Rientjesa9c58b902012-12-11 16:02:54 -08001052 task->signal->oom_score_adj = (short)oom_score_adj;
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001053 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
David Rientjesa9c58b902012-12-11 16:02:54 -08001054 task->signal->oom_score_adj_min = (short)oom_score_adj;
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -08001055 trace_oom_score_adj_update(task);
Davidlohr Bueso01dc52e2012-10-08 16:29:30 -07001056
David Rientjes723548b2010-10-26 14:21:25 -07001057err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001058 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001059err_task_lock:
1060 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001061 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001062out:
1063 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001064}
1065
1066static const struct file_operations proc_oom_score_adj_operations = {
1067 .read = oom_score_adj_read,
1068 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001069 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001070};
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072#ifdef CONFIG_AUDITSYSCALL
1073#define TMPBUFLEN 21
1074static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1075 size_t count, loff_t *ppos)
1076{
Al Viro496ad9a2013-01-23 17:07:38 -05001077 struct inode * inode = file_inode(file);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001078 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 ssize_t length;
1080 char tmpbuf[TMPBUFLEN];
1081
Eric W. Biederman99f89552006-06-26 00:25:55 -07001082 if (!task)
1083 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001085 from_kuid(file->f_cred->user_ns,
1086 audit_get_loginuid(task)));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001087 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1089}
1090
1091static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1092 size_t count, loff_t *ppos)
1093{
Al Viro496ad9a2013-01-23 17:07:38 -05001094 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 char *page, *tmp;
1096 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 uid_t loginuid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001098 kuid_t kloginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001100 rcu_read_lock();
1101 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1102 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001104 }
1105 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Al Viroe0182902006-05-18 08:28:02 -04001107 if (count >= PAGE_SIZE)
1108 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (*ppos != 0) {
1111 /* No partial writes. */
1112 return -EINVAL;
1113 }
Mel Gormane12ba742007-10-16 01:25:52 -07001114 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (!page)
1116 return -ENOMEM;
1117 length = -EFAULT;
1118 if (copy_from_user(page, buf, count))
1119 goto out_free_page;
1120
Al Viroe0182902006-05-18 08:28:02 -04001121 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 loginuid = simple_strtoul(page, &tmp, 10);
1123 if (tmp == page) {
1124 length = -EINVAL;
1125 goto out_free_page;
1126
1127 }
Eric Paris81407c82013-05-24 09:49:14 -04001128
1129 /* is userspace tring to explicitly UNSET the loginuid? */
1130 if (loginuid == AUDIT_UID_UNSET) {
1131 kloginuid = INVALID_UID;
1132 } else {
1133 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
1134 if (!uid_valid(kloginuid)) {
1135 length = -EINVAL;
1136 goto out_free_page;
1137 }
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001138 }
1139
1140 length = audit_set_loginuid(kloginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (likely(length == 0))
1142 length = count;
1143
1144out_free_page:
1145 free_page((unsigned long) page);
1146 return length;
1147}
1148
Arjan van de Ven00977a52007-02-12 00:55:34 -08001149static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 .read = proc_loginuid_read,
1151 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001152 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153};
Eric Paris1e0bd752008-03-13 08:15:31 -04001154
1155static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1156 size_t count, loff_t *ppos)
1157{
Al Viro496ad9a2013-01-23 17:07:38 -05001158 struct inode * inode = file_inode(file);
Eric Paris1e0bd752008-03-13 08:15:31 -04001159 struct task_struct *task = get_proc_task(inode);
1160 ssize_t length;
1161 char tmpbuf[TMPBUFLEN];
1162
1163 if (!task)
1164 return -ESRCH;
1165 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1166 audit_get_sessionid(task));
1167 put_task_struct(task);
1168 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1169}
1170
1171static const struct file_operations proc_sessionid_operations = {
1172 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001173 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001174};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175#endif
1176
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001177#ifdef CONFIG_FAULT_INJECTION
1178static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1179 size_t count, loff_t *ppos)
1180{
Al Viro496ad9a2013-01-23 17:07:38 -05001181 struct task_struct *task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001182 char buffer[PROC_NUMBUF];
1183 size_t len;
1184 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001185
1186 if (!task)
1187 return -ESRCH;
1188 make_it_fail = task->make_it_fail;
1189 put_task_struct(task);
1190
1191 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001192
1193 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001194}
1195
1196static ssize_t proc_fault_inject_write(struct file * file,
1197 const char __user * buf, size_t count, loff_t *ppos)
1198{
1199 struct task_struct *task;
1200 char buffer[PROC_NUMBUF], *end;
1201 int make_it_fail;
1202
1203 if (!capable(CAP_SYS_RESOURCE))
1204 return -EPERM;
1205 memset(buffer, 0, sizeof(buffer));
1206 if (count > sizeof(buffer) - 1)
1207 count = sizeof(buffer) - 1;
1208 if (copy_from_user(buffer, buf, count))
1209 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001210 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1211 if (*end)
1212 return -EINVAL;
Dave Jones16caed32014-04-07 15:39:15 -07001213 if (make_it_fail < 0 || make_it_fail > 1)
1214 return -EINVAL;
1215
Al Viro496ad9a2013-01-23 17:07:38 -05001216 task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001217 if (!task)
1218 return -ESRCH;
1219 task->make_it_fail = make_it_fail;
1220 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001221
1222 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001223}
1224
Arjan van de Ven00977a52007-02-12 00:55:34 -08001225static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001226 .read = proc_fault_inject_read,
1227 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001228 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001229};
1230#endif
1231
Arjan van de Ven97455122008-01-25 21:08:34 +01001232
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001233#ifdef CONFIG_SCHED_DEBUG
1234/*
1235 * Print out various scheduling related per-task fields:
1236 */
1237static int sched_show(struct seq_file *m, void *v)
1238{
1239 struct inode *inode = m->private;
1240 struct task_struct *p;
1241
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001242 p = get_proc_task(inode);
1243 if (!p)
1244 return -ESRCH;
1245 proc_sched_show_task(p, m);
1246
1247 put_task_struct(p);
1248
1249 return 0;
1250}
1251
1252static ssize_t
1253sched_write(struct file *file, const char __user *buf,
1254 size_t count, loff_t *offset)
1255{
Al Viro496ad9a2013-01-23 17:07:38 -05001256 struct inode *inode = file_inode(file);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001257 struct task_struct *p;
1258
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001259 p = get_proc_task(inode);
1260 if (!p)
1261 return -ESRCH;
1262 proc_sched_set_task(p);
1263
1264 put_task_struct(p);
1265
1266 return count;
1267}
1268
1269static int sched_open(struct inode *inode, struct file *filp)
1270{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001271 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001272}
1273
1274static const struct file_operations proc_pid_sched_operations = {
1275 .open = sched_open,
1276 .read = seq_read,
1277 .write = sched_write,
1278 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001279 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001280};
1281
1282#endif
1283
Mike Galbraith5091faa2010-11-30 14:18:03 +01001284#ifdef CONFIG_SCHED_AUTOGROUP
1285/*
1286 * Print out autogroup related information:
1287 */
1288static int sched_autogroup_show(struct seq_file *m, void *v)
1289{
1290 struct inode *inode = m->private;
1291 struct task_struct *p;
1292
1293 p = get_proc_task(inode);
1294 if (!p)
1295 return -ESRCH;
1296 proc_sched_autogroup_show_task(p, m);
1297
1298 put_task_struct(p);
1299
1300 return 0;
1301}
1302
1303static ssize_t
1304sched_autogroup_write(struct file *file, const char __user *buf,
1305 size_t count, loff_t *offset)
1306{
Al Viro496ad9a2013-01-23 17:07:38 -05001307 struct inode *inode = file_inode(file);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001308 struct task_struct *p;
1309 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001310 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001311 int err;
1312
1313 memset(buffer, 0, sizeof(buffer));
1314 if (count > sizeof(buffer) - 1)
1315 count = sizeof(buffer) - 1;
1316 if (copy_from_user(buffer, buf, count))
1317 return -EFAULT;
1318
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001319 err = kstrtoint(strstrip(buffer), 0, &nice);
1320 if (err < 0)
1321 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001322
1323 p = get_proc_task(inode);
1324 if (!p)
1325 return -ESRCH;
1326
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001327 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001328 if (err)
1329 count = err;
1330
1331 put_task_struct(p);
1332
1333 return count;
1334}
1335
1336static int sched_autogroup_open(struct inode *inode, struct file *filp)
1337{
1338 int ret;
1339
1340 ret = single_open(filp, sched_autogroup_show, NULL);
1341 if (!ret) {
1342 struct seq_file *m = filp->private_data;
1343
1344 m->private = inode;
1345 }
1346 return ret;
1347}
1348
1349static const struct file_operations proc_pid_sched_autogroup_operations = {
1350 .open = sched_autogroup_open,
1351 .read = seq_read,
1352 .write = sched_autogroup_write,
1353 .llseek = seq_lseek,
1354 .release = single_release,
1355};
1356
1357#endif /* CONFIG_SCHED_AUTOGROUP */
1358
john stultz4614a696b2009-12-14 18:00:05 -08001359static ssize_t comm_write(struct file *file, const char __user *buf,
1360 size_t count, loff_t *offset)
1361{
Al Viro496ad9a2013-01-23 17:07:38 -05001362 struct inode *inode = file_inode(file);
john stultz4614a696b2009-12-14 18:00:05 -08001363 struct task_struct *p;
1364 char buffer[TASK_COMM_LEN];
David Rientjes830e0fc2013-04-30 15:28:18 -07001365 const size_t maxlen = sizeof(buffer) - 1;
john stultz4614a696b2009-12-14 18:00:05 -08001366
1367 memset(buffer, 0, sizeof(buffer));
David Rientjes830e0fc2013-04-30 15:28:18 -07001368 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
john stultz4614a696b2009-12-14 18:00:05 -08001369 return -EFAULT;
1370
1371 p = get_proc_task(inode);
1372 if (!p)
1373 return -ESRCH;
1374
1375 if (same_thread_group(current, p))
1376 set_task_comm(p, buffer);
1377 else
1378 count = -EINVAL;
1379
1380 put_task_struct(p);
1381
1382 return count;
1383}
1384
1385static int comm_show(struct seq_file *m, void *v)
1386{
1387 struct inode *inode = m->private;
1388 struct task_struct *p;
1389
1390 p = get_proc_task(inode);
1391 if (!p)
1392 return -ESRCH;
1393
1394 task_lock(p);
1395 seq_printf(m, "%s\n", p->comm);
1396 task_unlock(p);
1397
1398 put_task_struct(p);
1399
1400 return 0;
1401}
1402
1403static int comm_open(struct inode *inode, struct file *filp)
1404{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001405 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001406}
1407
1408static const struct file_operations proc_pid_set_comm_operations = {
1409 .open = comm_open,
1410 .read = seq_read,
1411 .write = comm_write,
1412 .llseek = seq_lseek,
1413 .release = single_release,
1414};
1415
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001416static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001417{
1418 struct task_struct *task;
1419 struct mm_struct *mm;
1420 struct file *exe_file;
1421
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001422 task = get_proc_task(dentry->d_inode);
Matt Helsley925d1c42008-04-29 01:01:36 -07001423 if (!task)
1424 return -ENOENT;
1425 mm = get_task_mm(task);
1426 put_task_struct(task);
1427 if (!mm)
1428 return -ENOENT;
1429 exe_file = get_mm_exe_file(mm);
1430 mmput(mm);
1431 if (exe_file) {
1432 *exe_path = exe_file->f_path;
1433 path_get(&exe_file->f_path);
1434 fput(exe_file);
1435 return 0;
1436 } else
1437 return -ENOENT;
1438}
1439
Al Viro008b1502005-08-20 00:17:39 +01001440static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
1442 struct inode *inode = dentry->d_inode;
Christoph Hellwig408ef012012-06-18 10:47:03 -04001443 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 int error = -EACCES;
1445
Eric W. Biederman778c1142006-06-26 00:25:58 -07001446 /* Are we allowed to snoop on the tasks file descriptors? */
1447 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Christoph Hellwig408ef012012-06-18 10:47:03 -04001450 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1451 if (error)
1452 goto out;
1453
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -04001454 nd_jump_link(nd, &path);
Christoph Hellwig408ef012012-06-18 10:47:03 -04001455 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456out:
Al Viro008b1502005-08-20 00:17:39 +01001457 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001460static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Mel Gormane12ba742007-10-16 01:25:52 -07001462 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001463 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 int len;
1465
1466 if (!tmp)
1467 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001468
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001469 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001470 len = PTR_ERR(pathname);
1471 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001473 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 if (len > buflen)
1476 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001477 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 len = -EFAULT;
1479 out:
1480 free_page((unsigned long)tmp);
1481 return len;
1482}
1483
1484static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1485{
1486 int error = -EACCES;
1487 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001488 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Eric W. Biederman778c1142006-06-26 00:25:58 -07001490 /* Are we allowed to snoop on the tasks file descriptors? */
1491 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001494 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (error)
1496 goto out;
1497
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001498 error = do_proc_readlink(&path, buffer, buflen);
1499 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return error;
1502}
1503
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001504const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001506 .follow_link = proc_pid_follow_link,
1507 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508};
1509
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001510
1511/* building an inode */
1512
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001513struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001514{
1515 struct inode * inode;
1516 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001517 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001518
1519 /* We need a new inode */
1520
1521 inode = new_inode(sb);
1522 if (!inode)
1523 goto out;
1524
1525 /* Common stuff */
1526 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001527 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001528 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001529 inode->i_op = &proc_def_inode_operations;
1530
1531 /*
1532 * grab the reference to task.
1533 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001534 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001535 if (!ei->pid)
1536 goto out_unlock;
1537
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001538 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001539 rcu_read_lock();
1540 cred = __task_cred(task);
1541 inode->i_uid = cred->euid;
1542 inode->i_gid = cred->egid;
1543 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001544 }
1545 security_task_to_inode(task, inode);
1546
1547out:
1548 return inode;
1549
1550out_unlock:
1551 iput(inode);
1552 return NULL;
1553}
1554
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001555int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001556{
1557 struct inode *inode = dentry->d_inode;
1558 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001559 const struct cred *cred;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001560 struct pid_namespace *pid = dentry->d_sb->s_fs_info;
David Howellsc69e8d92008-11-14 10:39:19 +11001561
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001562 generic_fillattr(inode, stat);
1563
1564 rcu_read_lock();
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001565 stat->uid = GLOBAL_ROOT_UID;
1566 stat->gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001567 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1568 if (task) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001569 if (!has_pid_permissions(pid, task, 2)) {
1570 rcu_read_unlock();
1571 /*
1572 * This doesn't prevent learning whether PID exists,
1573 * it only makes getattr() consistent with readdir().
1574 */
1575 return -ENOENT;
1576 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001577 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1578 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001579 cred = __task_cred(task);
1580 stat->uid = cred->euid;
1581 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001582 }
1583 }
1584 rcu_read_unlock();
1585 return 0;
1586}
1587
1588/* dentry stuff */
1589
1590/*
1591 * Exceptional case: normally we are not allowed to unhash a busy
1592 * directory. In this case, however, we can do it - no aliasing problems
1593 * due to the way we treat inodes.
1594 *
1595 * Rewrite the inode's ownerships here because the owning task may have
1596 * performed a setuid(), etc.
1597 *
1598 * Before the /proc/pid/status file was created the only way to read
1599 * the effective uid of a /process was to stat /proc/pid. Reading
1600 * /proc/pid/status is slow enough that procps and other packages
1601 * kept stating /proc/pid. To keep the rules in /proc simple I have
1602 * made this apply to all per process world readable and executable
1603 * directories.
1604 */
Al Viro0b728e12012-06-10 16:03:43 -04001605int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001606{
Nick Piggin34286d62011-01-07 17:49:57 +11001607 struct inode *inode;
1608 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001609 const struct cred *cred;
1610
Al Viro0b728e12012-06-10 16:03:43 -04001611 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001612 return -ECHILD;
1613
1614 inode = dentry->d_inode;
1615 task = get_proc_task(inode);
1616
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001617 if (task) {
1618 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1619 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001620 rcu_read_lock();
1621 cred = __task_cred(task);
1622 inode->i_uid = cred->euid;
1623 inode->i_gid = cred->egid;
1624 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001625 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001626 inode->i_uid = GLOBAL_ROOT_UID;
1627 inode->i_gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001628 }
1629 inode->i_mode &= ~(S_ISUID | S_ISGID);
1630 security_task_to_inode(task, inode);
1631 put_task_struct(task);
1632 return 1;
1633 }
1634 d_drop(dentry);
1635 return 0;
1636}
1637
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001638static inline bool proc_inode_is_dead(struct inode *inode)
1639{
1640 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1641}
1642
David Howells1dd704b2013-04-12 01:08:50 +01001643int pid_delete_dentry(const struct dentry *dentry)
1644{
1645 /* Is the task we represent dead?
1646 * If so, then don't put the dentry on the lru list,
1647 * kill it immediately.
1648 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001649 return proc_inode_is_dead(dentry->d_inode);
David Howells1dd704b2013-04-12 01:08:50 +01001650}
1651
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001652const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001653{
1654 .d_revalidate = pid_revalidate,
1655 .d_delete = pid_delete_dentry,
1656};
1657
1658/* Lookups */
1659
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001660/*
1661 * Fill a directory entry.
1662 *
1663 * If possible create the dcache entry and derive our inode number and
1664 * file type from dcache entry.
1665 *
1666 * Since all of the proc inode numbers are dynamically generated, the inode
1667 * numbers do not exist until the inode is cache. This means creating the
1668 * the dcache entry in readdir is necessary to keep the inode numbers
1669 * reported by readdir in sync with the inode numbers reported
1670 * by stat.
1671 */
Al Virof0c3b502013-05-16 12:07:31 -04001672bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001673 const char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001674 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001675{
Al Virof0c3b502013-05-16 12:07:31 -04001676 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001677 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001678 struct inode *inode;
Al Viro1df98b82013-06-15 11:33:10 +04001679 unsigned type;
1680 ino_t ino;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001681
Al Viro1df98b82013-06-15 11:33:10 +04001682 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001683 if (!child) {
Al Viro1df98b82013-06-15 11:33:10 +04001684 child = d_alloc(dir, &qname);
1685 if (!child)
1686 goto end_instantiate;
1687 if (instantiate(dir->d_inode, child, task, ptr) < 0) {
1688 dput(child);
1689 goto end_instantiate;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001690 }
1691 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001692 inode = child->d_inode;
Al Viro147ce692013-06-15 10:26:35 +04001693 ino = inode->i_ino;
1694 type = inode->i_mode >> 12;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001695 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -04001696 return dir_emit(ctx, name, len, ino, type);
Al Viro1df98b82013-06-15 11:33:10 +04001697
1698end_instantiate:
1699 return dir_emit(ctx, name, len, 1, DT_UNKNOWN);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001700}
1701
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001702#ifdef CONFIG_CHECKPOINT_RESTORE
1703
1704/*
1705 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1706 * which represent vma start and end addresses.
1707 */
1708static int dname_to_vma_addr(struct dentry *dentry,
1709 unsigned long *start, unsigned long *end)
1710{
1711 if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1712 return -EINVAL;
1713
1714 return 0;
1715}
1716
Al Viro0b728e12012-06-10 16:03:43 -04001717static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001718{
1719 unsigned long vm_start, vm_end;
1720 bool exact_vma_exists = false;
1721 struct mm_struct *mm = NULL;
1722 struct task_struct *task;
1723 const struct cred *cred;
1724 struct inode *inode;
1725 int status = 0;
1726
Al Viro0b728e12012-06-10 16:03:43 -04001727 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001728 return -ECHILD;
1729
1730 if (!capable(CAP_SYS_ADMIN)) {
Zhao Hongjiang41735812013-02-20 13:13:55 +11001731 status = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001732 goto out_notask;
1733 }
1734
1735 inode = dentry->d_inode;
1736 task = get_proc_task(inode);
1737 if (!task)
1738 goto out_notask;
1739
Cong Wang2344bec2012-05-31 16:26:18 -07001740 mm = mm_access(task, PTRACE_MODE_READ);
1741 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001742 goto out;
1743
1744 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1745 down_read(&mm->mmap_sem);
1746 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1747 up_read(&mm->mmap_sem);
1748 }
1749
1750 mmput(mm);
1751
1752 if (exact_vma_exists) {
1753 if (task_dumpable(task)) {
1754 rcu_read_lock();
1755 cred = __task_cred(task);
1756 inode->i_uid = cred->euid;
1757 inode->i_gid = cred->egid;
1758 rcu_read_unlock();
1759 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001760 inode->i_uid = GLOBAL_ROOT_UID;
1761 inode->i_gid = GLOBAL_ROOT_GID;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001762 }
1763 security_task_to_inode(task, inode);
1764 status = 1;
1765 }
1766
1767out:
1768 put_task_struct(task);
1769
1770out_notask:
1771 if (status <= 0)
1772 d_drop(dentry);
1773
1774 return status;
1775}
1776
1777static const struct dentry_operations tid_map_files_dentry_operations = {
1778 .d_revalidate = map_files_d_revalidate,
1779 .d_delete = pid_delete_dentry,
1780};
1781
1782static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
1783{
1784 unsigned long vm_start, vm_end;
1785 struct vm_area_struct *vma;
1786 struct task_struct *task;
1787 struct mm_struct *mm;
1788 int rc;
1789
1790 rc = -ENOENT;
1791 task = get_proc_task(dentry->d_inode);
1792 if (!task)
1793 goto out;
1794
1795 mm = get_task_mm(task);
1796 put_task_struct(task);
1797 if (!mm)
1798 goto out;
1799
1800 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1801 if (rc)
1802 goto out_mmput;
1803
Artem Fetishev70335ab2014-03-10 15:49:45 -07001804 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001805 down_read(&mm->mmap_sem);
1806 vma = find_exact_vma(mm, vm_start, vm_end);
1807 if (vma && vma->vm_file) {
1808 *path = vma->vm_file->f_path;
1809 path_get(path);
1810 rc = 0;
1811 }
1812 up_read(&mm->mmap_sem);
1813
1814out_mmput:
1815 mmput(mm);
1816out:
1817 return rc;
1818}
1819
1820struct map_files_info {
Al Viro7b540d02012-08-27 14:55:26 -04001821 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001822 unsigned long len;
1823 unsigned char name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
1824};
1825
Al Viroc52a47a2013-06-15 11:15:20 +04001826static int
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001827proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
1828 struct task_struct *task, const void *ptr)
1829{
Al Viro7b540d02012-08-27 14:55:26 -04001830 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001831 struct proc_inode *ei;
1832 struct inode *inode;
1833
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001834 inode = proc_pid_make_inode(dir->i_sb, task);
1835 if (!inode)
Al Viroc52a47a2013-06-15 11:15:20 +04001836 return -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001837
1838 ei = PROC_I(inode);
1839 ei->op.proc_get_link = proc_map_files_get_link;
1840
1841 inode->i_op = &proc_pid_link_inode_operations;
1842 inode->i_size = 64;
1843 inode->i_mode = S_IFLNK;
1844
Al Viro7b540d02012-08-27 14:55:26 -04001845 if (mode & FMODE_READ)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001846 inode->i_mode |= S_IRUSR;
Al Viro7b540d02012-08-27 14:55:26 -04001847 if (mode & FMODE_WRITE)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001848 inode->i_mode |= S_IWUSR;
1849
1850 d_set_d_op(dentry, &tid_map_files_dentry_operations);
1851 d_add(dentry, inode);
1852
Al Viroc52a47a2013-06-15 11:15:20 +04001853 return 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001854}
1855
1856static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04001857 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001858{
1859 unsigned long vm_start, vm_end;
1860 struct vm_area_struct *vma;
1861 struct task_struct *task;
Al Viroc52a47a2013-06-15 11:15:20 +04001862 int result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001863 struct mm_struct *mm;
1864
Al Viroc52a47a2013-06-15 11:15:20 +04001865 result = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001866 if (!capable(CAP_SYS_ADMIN))
1867 goto out;
1868
Al Viroc52a47a2013-06-15 11:15:20 +04001869 result = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001870 task = get_proc_task(dir);
1871 if (!task)
1872 goto out;
1873
Al Viroc52a47a2013-06-15 11:15:20 +04001874 result = -EACCES;
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001875 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001876 goto out_put_task;
1877
Al Viroc52a47a2013-06-15 11:15:20 +04001878 result = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001879 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001880 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001881
1882 mm = get_task_mm(task);
1883 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001884 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001885
1886 down_read(&mm->mmap_sem);
1887 vma = find_exact_vma(mm, vm_start, vm_end);
1888 if (!vma)
1889 goto out_no_vma;
1890
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08001891 if (vma->vm_file)
1892 result = proc_map_files_instantiate(dir, dentry, task,
1893 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001894
1895out_no_vma:
1896 up_read(&mm->mmap_sem);
1897 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001898out_put_task:
1899 put_task_struct(task);
1900out:
Al Viroc52a47a2013-06-15 11:15:20 +04001901 return ERR_PTR(result);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001902}
1903
1904static const struct inode_operations proc_map_files_inode_operations = {
1905 .lookup = proc_map_files_lookup,
1906 .permission = proc_fd_permission,
1907 .setattr = proc_setattr,
1908};
1909
1910static int
Al Virof0c3b502013-05-16 12:07:31 -04001911proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001912{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001913 struct vm_area_struct *vma;
1914 struct task_struct *task;
1915 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04001916 unsigned long nr_files, pos, i;
1917 struct flex_array *fa = NULL;
1918 struct map_files_info info;
1919 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001920 int ret;
1921
Zhao Hongjiang41735812013-02-20 13:13:55 +11001922 ret = -EPERM;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001923 if (!capable(CAP_SYS_ADMIN))
1924 goto out;
1925
1926 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04001927 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001928 if (!task)
1929 goto out;
1930
1931 ret = -EACCES;
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07001932 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001933 goto out_put_task;
1934
1935 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04001936 if (!dir_emit_dots(file, ctx))
1937 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001938
Al Virof0c3b502013-05-16 12:07:31 -04001939 mm = get_task_mm(task);
1940 if (!mm)
1941 goto out_put_task;
1942 down_read(&mm->mmap_sem);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001943
Al Virof0c3b502013-05-16 12:07:31 -04001944 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001945
Al Virof0c3b502013-05-16 12:07:31 -04001946 /*
1947 * We need two passes here:
1948 *
1949 * 1) Collect vmas of mapped files with mmap_sem taken
1950 * 2) Release mmap_sem and instantiate entries
1951 *
1952 * otherwise we get lockdep complained, since filldir()
1953 * routine might require mmap_sem taken in might_fault().
1954 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001955
Al Virof0c3b502013-05-16 12:07:31 -04001956 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
1957 if (vma->vm_file && ++pos > ctx->pos)
1958 nr_files++;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001959 }
Al Virof0c3b502013-05-16 12:07:31 -04001960
1961 if (nr_files) {
1962 fa = flex_array_alloc(sizeof(info), nr_files,
1963 GFP_KERNEL);
1964 if (!fa || flex_array_prealloc(fa, 0, nr_files,
1965 GFP_KERNEL)) {
1966 ret = -ENOMEM;
1967 if (fa)
1968 flex_array_free(fa);
1969 up_read(&mm->mmap_sem);
1970 mmput(mm);
1971 goto out_put_task;
1972 }
1973 for (i = 0, vma = mm->mmap, pos = 2; vma;
1974 vma = vma->vm_next) {
1975 if (!vma->vm_file)
1976 continue;
1977 if (++pos <= ctx->pos)
1978 continue;
1979
1980 info.mode = vma->vm_file->f_mode;
1981 info.len = snprintf(info.name,
1982 sizeof(info.name), "%lx-%lx",
1983 vma->vm_start, vma->vm_end);
1984 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
1985 BUG();
1986 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001987 }
Al Virof0c3b502013-05-16 12:07:31 -04001988 up_read(&mm->mmap_sem);
1989
1990 for (i = 0; i < nr_files; i++) {
1991 p = flex_array_get(fa, i);
1992 if (!proc_fill_cache(file, ctx,
1993 p->name, p->len,
1994 proc_map_files_instantiate,
1995 task,
1996 (void *)(unsigned long)p->mode))
1997 break;
1998 ctx->pos++;
1999 }
2000 if (fa)
2001 flex_array_free(fa);
2002 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002003
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002004out_put_task:
2005 put_task_struct(task);
2006out:
2007 return ret;
2008}
2009
2010static const struct file_operations proc_map_files_operations = {
2011 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002012 .iterate = proc_map_files_readdir,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002013 .llseek = default_llseek,
2014};
2015
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002016struct timers_private {
2017 struct pid *pid;
2018 struct task_struct *task;
2019 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002020 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002021 unsigned long flags;
2022};
2023
2024static void *timers_start(struct seq_file *m, loff_t *pos)
2025{
2026 struct timers_private *tp = m->private;
2027
2028 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2029 if (!tp->task)
2030 return ERR_PTR(-ESRCH);
2031
2032 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2033 if (!tp->sighand)
2034 return ERR_PTR(-ESRCH);
2035
2036 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2037}
2038
2039static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2040{
2041 struct timers_private *tp = m->private;
2042 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2043}
2044
2045static void timers_stop(struct seq_file *m, void *v)
2046{
2047 struct timers_private *tp = m->private;
2048
2049 if (tp->sighand) {
2050 unlock_task_sighand(tp->task, &tp->flags);
2051 tp->sighand = NULL;
2052 }
2053
2054 if (tp->task) {
2055 put_task_struct(tp->task);
2056 tp->task = NULL;
2057 }
2058}
2059
2060static int show_timer(struct seq_file *m, void *v)
2061{
2062 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002063 struct timers_private *tp = m->private;
2064 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002065 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002066 [SIGEV_SIGNAL] = "signal",
2067 [SIGEV_NONE] = "none",
2068 [SIGEV_THREAD] = "thread",
2069 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002070
2071 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002072 notify = timer->it_sigev_notify;
2073
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002074 seq_printf(m, "ID: %d\n", timer->it_id);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002075 seq_printf(m, "signal: %d/%p\n", timer->sigq->info.si_signo,
2076 timer->sigq->info.si_value.sival_ptr);
2077 seq_printf(m, "notify: %s/%s.%d\n",
2078 nstr[notify & ~SIGEV_THREAD_ID],
2079 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2080 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002081 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002082
2083 return 0;
2084}
2085
2086static const struct seq_operations proc_timers_seq_ops = {
2087 .start = timers_start,
2088 .next = timers_next,
2089 .stop = timers_stop,
2090 .show = show_timer,
2091};
2092
2093static int proc_timers_open(struct inode *inode, struct file *file)
2094{
2095 struct timers_private *tp;
2096
2097 tp = __seq_open_private(file, &proc_timers_seq_ops,
2098 sizeof(struct timers_private));
2099 if (!tp)
2100 return -ENOMEM;
2101
2102 tp->pid = proc_pid(inode);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002103 tp->ns = inode->i_sb->s_fs_info;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002104 return 0;
2105}
2106
2107static const struct file_operations proc_timers_operations = {
2108 .open = proc_timers_open,
2109 .read = seq_read,
2110 .llseek = seq_lseek,
2111 .release = seq_release_private,
2112};
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002113#endif /* CONFIG_CHECKPOINT_RESTORE */
2114
Al Viroc52a47a2013-06-15 11:15:20 +04002115static int proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002116 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002117{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002118 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002119 struct inode *inode;
2120 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002121
Eric W. Biederman61a28782006-10-02 02:18:49 -07002122 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002123 if (!inode)
2124 goto out;
2125
2126 ei = PROC_I(inode);
2127 inode->i_mode = p->mode;
2128 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002129 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002130 if (p->iop)
2131 inode->i_op = p->iop;
2132 if (p->fop)
2133 inode->i_fop = p->fop;
2134 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002135 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002136 d_add(dentry, inode);
2137 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04002138 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04002139 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002140out:
Al Viroc52a47a2013-06-15 11:15:20 +04002141 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002142}
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144static struct dentry *proc_pident_lookup(struct inode *dir,
2145 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002146 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002147 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Al Viroc52a47a2013-06-15 11:15:20 +04002149 int error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002150 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002151 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Al Viroc52a47a2013-06-15 11:15:20 +04002153 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Eric W. Biederman99f89552006-06-26 00:25:55 -07002155 if (!task)
2156 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002158 /*
2159 * Yes, it does not scale. And it should not. Don't add
2160 * new entries into /proc/<tgid>/ without very good reasons.
2161 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002162 last = &ents[nents - 1];
2163 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 if (p->len != dentry->d_name.len)
2165 continue;
2166 if (!memcmp(dentry->d_name.name, p->name, p->len))
2167 break;
2168 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002169 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 goto out;
2171
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002172 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002174 put_task_struct(task);
2175out_no_task:
Al Viroc52a47a2013-06-15 11:15:20 +04002176 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
Al Virof0c3b502013-05-16 12:07:31 -04002179static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002180 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002181{
Al Virof0c3b502013-05-16 12:07:31 -04002182 struct task_struct *task = get_proc_task(file_inode(file));
2183 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002184
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002185 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002186 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002187
Al Virof0c3b502013-05-16 12:07:31 -04002188 if (!dir_emit_dots(file, ctx))
2189 goto out;
2190
2191 if (ctx->pos >= nents + 2)
2192 goto out;
2193
2194 for (p = ents + (ctx->pos - 2); p <= ents + nents - 1; p++) {
2195 if (!proc_fill_cache(file, ctx, p->name, p->len,
2196 proc_pident_instantiate, task, p))
2197 break;
2198 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002199 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002200out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002201 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203}
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002206static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2207 size_t count, loff_t *ppos)
2208{
Al Viro496ad9a2013-01-23 17:07:38 -05002209 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002210 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002211 ssize_t length;
2212 struct task_struct *task = get_proc_task(inode);
2213
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002214 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002215 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002216
2217 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002218 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002219 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002220 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002221 if (length > 0)
2222 length = simple_read_from_buffer(buf, count, ppos, p, length);
2223 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002224 return length;
2225}
2226
2227static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2228 size_t count, loff_t *ppos)
2229{
Al Viro496ad9a2013-01-23 17:07:38 -05002230 struct inode * inode = file_inode(file);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002231 char *page;
2232 ssize_t length;
2233 struct task_struct *task = get_proc_task(inode);
2234
2235 length = -ESRCH;
2236 if (!task)
2237 goto out_no_task;
2238 if (count > PAGE_SIZE)
2239 count = PAGE_SIZE;
2240
2241 /* No partial writes. */
2242 length = -EINVAL;
2243 if (*ppos != 0)
2244 goto out;
2245
2246 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002247 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002248 if (!page)
2249 goto out;
2250
2251 length = -EFAULT;
2252 if (copy_from_user(page, buf, count))
2253 goto out_free;
2254
David Howells107db7c2009-05-08 13:55:27 +01002255 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002256 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002257 if (length < 0)
2258 goto out_free;
2259
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002260 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002261 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002262 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002263 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002264out_free:
2265 free_page((unsigned long) page);
2266out:
2267 put_task_struct(task);
2268out_no_task:
2269 return length;
2270}
2271
Arjan van de Ven00977a52007-02-12 00:55:34 -08002272static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002273 .read = proc_pid_attr_read,
2274 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002275 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002276};
2277
Eric Dumazetc5141e62007-05-08 00:26:15 -07002278static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002279 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2280 REG("prev", S_IRUGO, proc_pid_attr_operations),
2281 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2282 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2283 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2284 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002285};
2286
Al Virof0c3b502013-05-16 12:07:31 -04002287static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
Al Virof0c3b502013-05-16 12:07:31 -04002289 return proc_pident_readdir(file, ctx,
2290 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291}
2292
Arjan van de Ven00977a52007-02-12 00:55:34 -08002293static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002295 .iterate = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002296 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297};
2298
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002299static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002300 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002302 return proc_pident_lookup(dir, dentry,
2303 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002306static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002307 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002308 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002309 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310};
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312#endif
2313
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002314#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002315static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2316 size_t count, loff_t *ppos)
2317{
Al Viro496ad9a2013-01-23 17:07:38 -05002318 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002319 struct mm_struct *mm;
2320 char buffer[PROC_NUMBUF];
2321 size_t len;
2322 int ret;
2323
2324 if (!task)
2325 return -ESRCH;
2326
2327 ret = 0;
2328 mm = get_task_mm(task);
2329 if (mm) {
2330 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2331 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2332 MMF_DUMP_FILTER_SHIFT));
2333 mmput(mm);
2334 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2335 }
2336
2337 put_task_struct(task);
2338
2339 return ret;
2340}
2341
2342static ssize_t proc_coredump_filter_write(struct file *file,
2343 const char __user *buf,
2344 size_t count,
2345 loff_t *ppos)
2346{
2347 struct task_struct *task;
2348 struct mm_struct *mm;
2349 char buffer[PROC_NUMBUF], *end;
2350 unsigned int val;
2351 int ret;
2352 int i;
2353 unsigned long mask;
2354
2355 ret = -EFAULT;
2356 memset(buffer, 0, sizeof(buffer));
2357 if (count > sizeof(buffer) - 1)
2358 count = sizeof(buffer) - 1;
2359 if (copy_from_user(buffer, buf, count))
2360 goto out_no_task;
2361
2362 ret = -EINVAL;
2363 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2364 if (*end == '\n')
2365 end++;
2366 if (end - buffer == 0)
2367 goto out_no_task;
2368
2369 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002370 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002371 if (!task)
2372 goto out_no_task;
2373
2374 ret = end - buffer;
2375 mm = get_task_mm(task);
2376 if (!mm)
2377 goto out_no_mm;
2378
2379 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2380 if (val & mask)
2381 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2382 else
2383 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2384 }
2385
2386 mmput(mm);
2387 out_no_mm:
2388 put_task_struct(task);
2389 out_no_task:
2390 return ret;
2391}
2392
2393static const struct file_operations proc_coredump_filter_operations = {
2394 .read = proc_coredump_filter_read,
2395 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002396 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002397};
2398#endif
2399
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002400#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002401static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002402{
Andrea Righi940389b2008-07-28 00:48:12 +02002403 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002404 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002405 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002406
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002407 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2408 if (result)
2409 return result;
2410
2411 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
2412 result = -EACCES;
2413 goto out_unlock;
2414 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002415
Andrea Righi59954772008-07-27 17:29:15 +02002416 if (whole && lock_task_sighand(task, &flags)) {
2417 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002418
Andrea Righi59954772008-07-27 17:29:15 +02002419 task_io_accounting_add(&acct, &task->signal->ioac);
2420 while_each_thread(task, t)
2421 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002422
Andrea Righi59954772008-07-27 17:29:15 +02002423 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002424 }
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002425 result = seq_printf(m,
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002426 "rchar: %llu\n"
2427 "wchar: %llu\n"
2428 "syscr: %llu\n"
2429 "syscw: %llu\n"
2430 "read_bytes: %llu\n"
2431 "write_bytes: %llu\n"
2432 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002433 (unsigned long long)acct.rchar,
2434 (unsigned long long)acct.wchar,
2435 (unsigned long long)acct.syscr,
2436 (unsigned long long)acct.syscw,
2437 (unsigned long long)acct.read_bytes,
2438 (unsigned long long)acct.write_bytes,
2439 (unsigned long long)acct.cancelled_write_bytes);
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002440out_unlock:
2441 mutex_unlock(&task->signal->cred_guard_mutex);
2442 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002443}
Andrea Righi297c5d92008-07-25 01:48:49 -07002444
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002445static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2446 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002447{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002448 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002449}
2450
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002451static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2452 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002453{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002454 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002455}
2456#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002457
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002458#ifdef CONFIG_USER_NS
2459static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002460 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002461{
2462 struct user_namespace *ns = NULL;
2463 struct task_struct *task;
2464 struct seq_file *seq;
2465 int ret = -EINVAL;
2466
2467 task = get_proc_task(inode);
2468 if (task) {
2469 rcu_read_lock();
2470 ns = get_user_ns(task_cred_xxx(task, user_ns));
2471 rcu_read_unlock();
2472 put_task_struct(task);
2473 }
2474 if (!ns)
2475 goto err;
2476
2477 ret = seq_open(file, seq_ops);
2478 if (ret)
2479 goto err_put_ns;
2480
2481 seq = file->private_data;
2482 seq->private = ns;
2483
2484 return 0;
2485err_put_ns:
2486 put_user_ns(ns);
2487err:
2488 return ret;
2489}
2490
2491static int proc_id_map_release(struct inode *inode, struct file *file)
2492{
2493 struct seq_file *seq = file->private_data;
2494 struct user_namespace *ns = seq->private;
2495 put_user_ns(ns);
2496 return seq_release(inode, file);
2497}
2498
2499static int proc_uid_map_open(struct inode *inode, struct file *file)
2500{
2501 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2502}
2503
2504static int proc_gid_map_open(struct inode *inode, struct file *file)
2505{
2506 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2507}
2508
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002509static int proc_projid_map_open(struct inode *inode, struct file *file)
2510{
2511 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2512}
2513
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002514static const struct file_operations proc_uid_map_operations = {
2515 .open = proc_uid_map_open,
2516 .write = proc_uid_map_write,
2517 .read = seq_read,
2518 .llseek = seq_lseek,
2519 .release = proc_id_map_release,
2520};
2521
2522static const struct file_operations proc_gid_map_operations = {
2523 .open = proc_gid_map_open,
2524 .write = proc_gid_map_write,
2525 .read = seq_read,
2526 .llseek = seq_lseek,
2527 .release = proc_id_map_release,
2528};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002529
2530static const struct file_operations proc_projid_map_operations = {
2531 .open = proc_projid_map_open,
2532 .write = proc_projid_map_write,
2533 .read = seq_read,
2534 .llseek = seq_lseek,
2535 .release = proc_id_map_release,
2536};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002537#endif /* CONFIG_USER_NS */
2538
Kees Cook47830722008-10-06 03:11:58 +04002539static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2540 struct pid *pid, struct task_struct *task)
2541{
Al Viroa9712bc2011-03-23 15:52:50 -04002542 int err = lock_trace(task);
2543 if (!err) {
2544 seq_printf(m, "%08x\n", task->personality);
2545 unlock_trace(task);
2546 }
2547 return err;
Kees Cook47830722008-10-06 03:11:58 +04002548}
2549
Eric W. Biederman801199c2006-10-02 02:18:48 -07002550/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002551 * Thread groups
2552 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002553static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002554static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002555
Eric Dumazetc5141e62007-05-08 00:26:15 -07002556static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002557 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2558 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002559#ifdef CONFIG_CHECKPOINT_RESTORE
2560 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
2561#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002562 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002563 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002564#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002565 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002566#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002567 REG("environ", S_IRUSR, proc_environ_operations),
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -07002568 ONE("auxv", S_IRUSR, proc_pid_auxv),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002569 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002570 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002571 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002572#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002573 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002574#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002575#ifdef CONFIG_SCHED_AUTOGROUP
2576 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2577#endif
john stultz4614a696b2009-12-14 18:00:05 -08002578 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002579#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07002580 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002581#endif
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -07002582 ONE("cmdline", S_IRUGO, proc_pid_cmdline),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002583 ONE("stat", S_IRUGO, proc_tgid_stat),
2584 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002585 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002586#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002587 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002588#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002589 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2590 LNK("cwd", proc_cwd_link),
2591 LNK("root", proc_root_link),
2592 LNK("exe", proc_exe_link),
2593 REG("mounts", S_IRUGO, proc_mounts_operations),
2594 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2595 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002596#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002597 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002598 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07002599 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002600#endif
2601#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002602 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002603#endif
2604#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07002605 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002606#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002607#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07002608 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002609#endif
2610#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07002611 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002612#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002613#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002614 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002615#endif
Paul Menage8793d852007-10-18 23:39:39 -07002616#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002617 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002618#endif
Paul Menagea4243162007-10-18 23:39:35 -07002619#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002620 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002621#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07002622 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08002623 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002624 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002625#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002626 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2627 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002628#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002629#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002630 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002631#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002632#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002633 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002634#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002635#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002636 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002637#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04002638#ifdef CONFIG_HARDWALL
Alexey Dobriyand962c142014-08-08 14:21:52 -07002639 ONE("hardwall", S_IRUGO, proc_pid_hardwall),
Chris Metcalff133ecc2011-05-26 12:40:09 -04002640#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002641#ifdef CONFIG_USER_NS
2642 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2643 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002644 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002645#endif
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002646#ifdef CONFIG_CHECKPOINT_RESTORE
2647 REG("timers", S_IRUGO, proc_timers_operations),
2648#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002649};
2650
Al Virof0c3b502013-05-16 12:07:31 -04002651static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002652{
Al Virof0c3b502013-05-16 12:07:31 -04002653 return proc_pident_readdir(file, ctx,
2654 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002655}
2656
Arjan van de Ven00977a52007-02-12 00:55:34 -08002657static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002658 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002659 .iterate = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002660 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002661};
2662
Al Viro00cd8dd2012-06-10 17:13:09 -04002663static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2664{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002665 return proc_pident_lookup(dir, dentry,
2666 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002667}
2668
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002669static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002670 .lookup = proc_tgid_base_lookup,
2671 .getattr = pid_getattr,
2672 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08002673 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002674};
2675
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002676static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002678 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002679 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002680 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Eric W. Biederman48e64842006-06-26 00:25:48 -07002682 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002683 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Al Viro4f522a22013-02-11 23:20:37 -05002684 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002685 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002686 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002687 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002688 d_drop(dentry);
2689 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Eric W. Biederman48e64842006-06-26 00:25:48 -07002692 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002693 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2694 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002695 if (!leader)
2696 goto out;
2697
2698 name.name = "task";
2699 name.len = strlen(name.name);
2700 dir = d_hash_and_lookup(leader, &name);
2701 if (!dir)
2702 goto out_put_leader;
2703
2704 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002705 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002706 dentry = d_hash_and_lookup(dir, &name);
2707 if (dentry) {
2708 shrink_dcache_parent(dentry);
2709 d_drop(dentry);
2710 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002712
2713 dput(dir);
2714out_put_leader:
2715 dput(leader);
2716out:
2717 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718}
2719
Randy Dunlap0895e912007-10-21 21:00:10 -07002720/**
2721 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2722 * @task: task that should be flushed.
2723 *
2724 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002725 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002726 * in. This call is supposed to do all of this job.
2727 *
2728 * Looks in the dcache for
2729 * /proc/@pid
2730 * /proc/@tgid/task/@pid
2731 * if either directory is present flushes it and all of it'ts children
2732 * from the dcache.
2733 *
2734 * It is safe and reasonable to cache /proc entries for a task until
2735 * that task exits. After that they just clog up the dcache with
2736 * useless entries, possibly causing useful dcache entries to be
2737 * flushed instead. This routine is proved to flush those useless
2738 * dcache entries at process exit time.
2739 *
2740 * NOTE: This routine is just an optimization so it does not guarantee
2741 * that no dcache entries will exist at process exit time it
2742 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002743 */
2744
2745void proc_flush_task(struct task_struct *task)
2746{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002747 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002748 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002749 struct upid *upid;
2750
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002751 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002752 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002753
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002754 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002755 upid = &pid->numbers[i];
2756 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002757 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002758 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002759}
2760
Al Viroc52a47a2013-06-15 11:15:20 +04002761static int proc_pid_instantiate(struct inode *dir,
2762 struct dentry * dentry,
2763 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002764{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002765 struct inode *inode;
2766
Eric W. Biederman61a28782006-10-02 02:18:49 -07002767 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002768 if (!inode)
2769 goto out;
2770
2771 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2772 inode->i_op = &proc_tgid_base_inode_operations;
2773 inode->i_fop = &proc_tgid_base_operations;
2774 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002775
Miklos Szeredibfe86842011-10-28 14:13:29 +02002776 set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
2777 ARRAY_SIZE(tgid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002778
Nick Pigginfb045ad2011-01-07 17:49:55 +11002779 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002780
2781 d_add(dentry, inode);
2782 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04002783 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04002784 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002785out:
Al Viroc52a47a2013-06-15 11:15:20 +04002786 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002787}
2788
Al Viro00cd8dd2012-06-10 17:13:09 -04002789struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
Alexey Dobriyan335eb532014-08-08 14:21:27 -07002791 int result = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002794 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07002796 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 if (tgid == ~0U)
2798 goto out;
2799
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002800 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002801 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002802 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (task)
2804 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002805 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (!task)
2807 goto out;
2808
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002809 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002810 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811out:
Al Viroc52a47a2013-06-15 11:15:20 +04002812 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002816 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002817 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002819struct tgid_iter {
2820 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002821 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002822};
2823static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2824{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002825 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002827 if (iter.task)
2828 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002829 rcu_read_lock();
2830retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002831 iter.task = NULL;
2832 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002833 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002834 iter.tgid = pid_nr_ns(pid, ns);
2835 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002836 /* What we to know is if the pid we have find is the
2837 * pid of a thread_group_leader. Testing for task
2838 * being a thread_group_leader is the obvious thing
2839 * todo but there is a window when it fails, due to
2840 * the pid transfer logic in de_thread.
2841 *
2842 * So we perform the straight forward test of seeing
2843 * if the pid we have found is the pid of a thread
2844 * group leader, and don't worry if the task we have
2845 * found doesn't happen to be a thread group leader.
2846 * As we don't care in the case of readdir.
2847 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002848 if (!iter.task || !has_group_leader_pid(iter.task)) {
2849 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002850 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002851 }
2852 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002854 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002855 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856}
2857
Al Viro021ada72013-03-29 19:27:05 -04002858#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04002861int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002863 struct tgid_iter iter;
Al Virodb963162013-06-15 10:45:10 +04002864 struct pid_namespace *ns = file->f_dentry->d_sb->s_fs_info;
Al Virof0c3b502013-05-16 12:07:31 -04002865 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Al Viro021ada72013-03-29 19:27:05 -04002867 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04002868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Al Viro021ada72013-03-29 19:27:05 -04002870 if (pos == TGID_OFFSET - 1) {
Al Virodb963162013-06-15 10:45:10 +04002871 struct inode *inode = ns->proc_self->d_inode;
2872 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04002873 return 0;
Al Viro021ada72013-03-29 19:27:05 -04002874 iter.tgid = 0;
2875 } else {
2876 iter.tgid = pos - TGID_OFFSET;
2877 }
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002878 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002879 for (iter = next_tgid(ns, iter);
2880 iter.task;
2881 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Al Virof0c3b502013-05-16 12:07:31 -04002882 char name[PROC_NUMBUF];
2883 int len;
2884 if (!has_pid_permissions(ns, iter.task, 2))
2885 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08002886
Al Virof0c3b502013-05-16 12:07:31 -04002887 len = snprintf(name, sizeof(name), "%d", iter.tgid);
2888 ctx->pos = iter.tgid + TGID_OFFSET;
2889 if (!proc_fill_cache(file, ctx, name, len,
2890 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002891 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04002892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
Al Virof0c3b502013-05-16 12:07:31 -04002895 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 return 0;
2897}
2898
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002899/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002900 * Tasks
2901 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002902static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002903 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07002904 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002905 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002906 REG("environ", S_IRUSR, proc_environ_operations),
Alexey Dobriyanf9ea5362014-08-08 14:21:35 -07002907 ONE("auxv", S_IRUSR, proc_pid_auxv),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002908 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002909 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002910 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002911#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002912 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002913#endif
john stultz4614a696b2009-12-14 18:00:05 -08002914 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002915#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07002916 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002917#endif
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -07002918 ONE("cmdline", S_IRUGO, proc_pid_cmdline),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002919 ONE("stat", S_IRUGO, proc_tid_stat),
2920 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002921 REG("maps", S_IRUGO, proc_tid_maps_operations),
Cyrill Gorcunov818411612012-05-31 16:26:43 -07002922#ifdef CONFIG_CHECKPOINT_RESTORE
2923 REG("children", S_IRUGO, proc_tid_children_operations),
2924#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002925#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002926 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002927#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002928 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2929 LNK("cwd", proc_cwd_link),
2930 LNK("root", proc_root_link),
2931 LNK("exe", proc_exe_link),
2932 REG("mounts", S_IRUGO, proc_mounts_operations),
2933 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002934#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002935 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002936 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07002937 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002938#endif
2939#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002940 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002941#endif
2942#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07002943 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002944#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002945#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07002946 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002947#endif
2948#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07002949 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002950#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002951#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002952 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002953#endif
Paul Menage8793d852007-10-18 23:39:39 -07002954#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002955 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002956#endif
Paul Menagea4243162007-10-18 23:39:35 -07002957#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002958 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002959#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07002960 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08002961 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002962 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002963#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002964 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05002965 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002966#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002967#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002968 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002969#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002970#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002971 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002972#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04002973#ifdef CONFIG_HARDWALL
Alexey Dobriyand962c142014-08-08 14:21:52 -07002974 ONE("hardwall", S_IRUGO, proc_pid_hardwall),
Chris Metcalff133ecc2011-05-26 12:40:09 -04002975#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002976#ifdef CONFIG_USER_NS
2977 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2978 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002979 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002980#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002981};
2982
Al Virof0c3b502013-05-16 12:07:31 -04002983static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002984{
Al Virof0c3b502013-05-16 12:07:31 -04002985 return proc_pident_readdir(file, ctx,
2986 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002987}
2988
Al Viro00cd8dd2012-06-10 17:13:09 -04002989static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
2990{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002991 return proc_pident_lookup(dir, dentry,
2992 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002993}
2994
Arjan van de Ven00977a52007-02-12 00:55:34 -08002995static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002996 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04002997 .iterate = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002998 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002999};
3000
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003001static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003002 .lookup = proc_tid_base_lookup,
3003 .getattr = pid_getattr,
3004 .setattr = proc_setattr,
3005};
3006
Al Viroc52a47a2013-06-15 11:15:20 +04003007static int proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003008 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003009{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003010 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003011 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003012
3013 if (!inode)
3014 goto out;
3015 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3016 inode->i_op = &proc_tid_base_inode_operations;
3017 inode->i_fop = &proc_tid_base_operations;
3018 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003019
Miklos Szeredibfe86842011-10-28 14:13:29 +02003020 set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
3021 ARRAY_SIZE(tid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003022
Nick Pigginfb045ad2011-01-07 17:49:55 +11003023 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003024
3025 d_add(dentry, inode);
3026 /* Close the race of the process dying before we return the dentry */
Al Viro0b728e12012-06-10 16:03:43 -04003027 if (pid_revalidate(dentry, 0))
Al Viroc52a47a2013-06-15 11:15:20 +04003028 return 0;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003029out:
Al Viroc52a47a2013-06-15 11:15:20 +04003030 return -ENOENT;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003031}
3032
Al Viro00cd8dd2012-06-10 17:13:09 -04003033static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003034{
Al Viroc52a47a2013-06-15 11:15:20 +04003035 int result = -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003036 struct task_struct *task;
3037 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003038 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003039 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003040
3041 if (!leader)
3042 goto out_no_task;
3043
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003044 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003045 if (tid == ~0U)
3046 goto out;
3047
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003048 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003049 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003050 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003051 if (task)
3052 get_task_struct(task);
3053 rcu_read_unlock();
3054 if (!task)
3055 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003056 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003057 goto out_drop_task;
3058
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003059 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003060out_drop_task:
3061 put_task_struct(task);
3062out:
3063 put_task_struct(leader);
3064out_no_task:
Al Viroc52a47a2013-06-15 11:15:20 +04003065 return ERR_PTR(result);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003066}
3067
3068/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003069 * Find the first tid of a thread group to return to user space.
3070 *
3071 * Usually this is just the thread group leader, but if the users
3072 * buffer was too small or there was a seek into the middle of the
3073 * directory we have more work todo.
3074 *
3075 * In the case of a short read we start with find_task_by_pid.
3076 *
3077 * In the case of a seek we start with the leader and walk nr
3078 * threads past it.
3079 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003080static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3081 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003082{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003083 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003084 unsigned long nr = f_pos;
3085
3086 if (nr != f_pos) /* 32bit overflow? */
3087 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003088
Eric W. Biedermancc288732006-06-26 00:26:01 -07003089 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003090 task = pid_task(pid, PIDTYPE_PID);
3091 if (!task)
3092 goto fail;
3093
3094 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003095 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003096 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003097 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003098 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003099 }
3100
3101 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003102 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003103 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003104
3105 /* If we haven't found our starting place yet start
3106 * with the leader and walk nr threads forward.
3107 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003108 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003109 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003110 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003111 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003112 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003113fail:
3114 pos = NULL;
3115 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003116found:
3117 get_task_struct(pos);
3118out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003119 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003120 return pos;
3121}
3122
3123/*
3124 * Find the next thread in the thread list.
3125 * Return NULL if there is an error or no next thread.
3126 *
3127 * The reference to the input task_struct is released.
3128 */
3129static struct task_struct *next_tid(struct task_struct *start)
3130{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003131 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003132 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003133 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003134 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003135 if (thread_group_leader(pos))
3136 pos = NULL;
3137 else
3138 get_task_struct(pos);
3139 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003140 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003141 put_task_struct(start);
3142 return pos;
3143}
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003146static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003148 struct inode *inode = file_inode(file);
3149 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003150 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003151 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003153 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003154 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Al Virof0c3b502013-05-16 12:07:31 -04003156 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003159 /* f_version caches the tgid value that the last readdir call couldn't
3160 * return. lseek aka telldir automagically resets f_version to 0.
3161 */
Al Virof0c3b502013-05-16 12:07:31 -04003162 ns = file->f_dentry->d_sb->s_fs_info;
3163 tid = (int)file->f_version;
3164 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003165 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003166 task;
Al Virof0c3b502013-05-16 12:07:31 -04003167 task = next_tid(task), ctx->pos++) {
3168 char name[PROC_NUMBUF];
3169 int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003170 tid = task_pid_nr_ns(task, ns);
Al Virof0c3b502013-05-16 12:07:31 -04003171 len = snprintf(name, sizeof(name), "%d", tid);
3172 if (!proc_fill_cache(file, ctx, name, len,
3173 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003174 /* returning this tgid failed, save it as the first
3175 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003176 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003177 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003181
Al Virof0c3b502013-05-16 12:07:31 -04003182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003184
3185static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3186{
3187 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003188 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003189 generic_fillattr(inode, stat);
3190
Eric W. Biederman99f89552006-06-26 00:25:55 -07003191 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003192 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003193 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003194 }
3195
3196 return 0;
3197}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003198
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003199static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003200 .lookup = proc_task_lookup,
3201 .getattr = proc_task_getattr,
3202 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003203 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003204};
3205
Arjan van de Ven00977a52007-02-12 00:55:34 -08003206static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003207 .read = generic_read_dir,
Al Virof0c3b502013-05-16 12:07:31 -04003208 .iterate = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003209 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003210};