blob: d7d711876b6a00e8bf3ba659db8f59d69d6862dc [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>
Paul Menagea4243162007-10-18 23:39:35 -070076#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/cpuset.h>
78#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050079#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070080#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070081#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070082#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070083#include <linux/pid_namespace.h>
Eric W. Biederman22d917d2011-11-17 00:11:58 -080084#include <linux/user_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040085#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090086#include <linux/slab.h>
Pavel Emelyanov640708a2012-01-10 15:11:23 -080087#include <linux/flex_array.h>
Chris Metcalff133ecc2011-05-26 12:40:09 -040088#ifdef CONFIG_HARDWALL
89#include <asm/hardwall.h>
90#endif
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -080091#include <trace/events/oom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include "internal.h"
93
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070094/* NOTE:
95 * Implementing inode permission operations in /proc is almost
96 * certainly an error. Permission checks need to happen during
97 * each system call not at open time. The reason is that most of
98 * what we wish to check for permissions in /proc varies at runtime.
99 *
100 * The classic example of a problem is opening file descriptors
101 * in /proc for a task before it execs a suid executable.
102 */
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700106 int len;
Al Virod161a132011-07-24 03:36:29 -0400107 umode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800108 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800109 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700110 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Eric W. Biederman61a28782006-10-02 02:18:49 -0700113#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700114 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700115 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700116 .mode = MODE, \
117 .iop = IOP, \
118 .fop = FOP, \
119 .op = OP, \
120}
121
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300122#define DIR(NAME, MODE, iops, fops) \
123 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
124#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700125 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300127 { .proc_get_link = get_link } )
128#define REG(NAME, MODE, fops) \
129 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
130#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700131 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700132 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300133 { .proc_read = read } )
134#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800135 NOD(NAME, (S_IFREG|(MODE)), \
136 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300137 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Pavel Emelyanov640708a2012-01-10 15:11:23 -0800139static int proc_fd_permission(struct inode *inode, int mask);
140
Vegard Nossumaed54172008-06-05 22:46:53 -0700141/*
142 * Count the number of hardlinks for the pid_entry table, excluding the .
143 * and .. links.
144 */
145static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
146 unsigned int n)
147{
148 unsigned int i;
149 unsigned int count;
150
151 count = 0;
152 for (i = 0; i < n; ++i) {
153 if (S_ISDIR(entries[i].mode))
154 ++count;
155 }
156
157 return count;
158}
159
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200160static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000162 int result = -ENOENT;
163
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700164 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200165 if (task->fs) {
166 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000167 result = 0;
168 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700169 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000170 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700171}
172
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800173static int proc_cwd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700174{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800175 struct task_struct *task = get_proc_task(dentry->d_inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700176 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700177
178 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200179 task_lock(task);
180 if (task->fs) {
181 get_fs_pwd(task->fs, path);
182 result = 0;
183 }
184 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700185 put_task_struct(task);
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return result;
188}
189
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800190static int proc_root_link(struct dentry *dentry, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800192 struct task_struct *task = get_proc_task(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700194
195 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200196 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700197 put_task_struct(task);
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return result;
200}
201
Linus Torvaldse2683372012-01-17 15:21:19 -0800202struct mm_struct *mm_for_maps(struct task_struct *task)
203{
204 return mm_access(task, PTRACE_MODE_READ);
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static int proc_pid_cmdline(struct task_struct *task, char * buffer)
208{
209 int res = 0;
210 unsigned int len;
211 struct mm_struct *mm = get_task_mm(task);
212 if (!mm)
213 goto out;
214 if (!mm->arg_end)
215 goto out_mm; /* Shh! No looking before we're done */
216
217 len = mm->arg_end - mm->arg_start;
218
219 if (len > PAGE_SIZE)
220 len = PAGE_SIZE;
221
222 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
223
224 // If the nul at the end of args has been overwritten, then
225 // assume application is using setproctitle(3).
226 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
227 len = strnlen(buffer, res);
228 if (len < res) {
229 res = len;
230 } else {
231 len = mm->env_end - mm->env_start;
232 if (len > PAGE_SIZE - res)
233 len = PAGE_SIZE - res;
234 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
235 res = strnlen(buffer, res);
236 }
237 }
238out_mm:
239 mmput(mm);
240out:
241 return res;
242}
243
244static int proc_pid_auxv(struct task_struct *task, char *buffer)
245{
Al Viro2fadaef2011-02-15 22:52:11 -0500246 struct mm_struct *mm = mm_for_maps(task);
247 int res = PTR_ERR(mm);
248 if (mm && !IS_ERR(mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300250 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300252 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 res = nwords * sizeof(mm->saved_auxv[0]);
254 if (res > PAGE_SIZE)
255 res = PAGE_SIZE;
256 memcpy(buffer, mm->saved_auxv, res);
257 mmput(mm);
258 }
259 return res;
260}
261
262
263#ifdef CONFIG_KALLSYMS
264/*
265 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
266 * Returns the resolved symbol. If that fails, simply return the address.
267 */
268static int proc_pid_wchan(struct task_struct *task, char *buffer)
269{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700270 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700271 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 wchan = get_wchan(task);
274
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700275 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600276 if (!ptrace_may_access(task, PTRACE_MODE_READ))
277 return 0;
278 else
279 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700280 else
281 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283#endif /* CONFIG_KALLSYMS */
284
Al Viroa9712bc2011-03-23 15:52:50 -0400285static int lock_trace(struct task_struct *task)
286{
287 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
288 if (err)
289 return err;
290 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
291 mutex_unlock(&task->signal->cred_guard_mutex);
292 return -EPERM;
293 }
294 return 0;
295}
296
297static void unlock_trace(struct task_struct *task)
298{
299 mutex_unlock(&task->signal->cred_guard_mutex);
300}
301
Ken Chen2ec220e2008-11-10 11:26:08 +0300302#ifdef CONFIG_STACKTRACE
303
304#define MAX_STACK_TRACE_DEPTH 64
305
306static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
307 struct pid *pid, struct task_struct *task)
308{
309 struct stack_trace trace;
310 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400311 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300312 int i;
313
314 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
315 if (!entries)
316 return -ENOMEM;
317
318 trace.nr_entries = 0;
319 trace.max_entries = MAX_STACK_TRACE_DEPTH;
320 trace.entries = entries;
321 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300322
Al Viroa9712bc2011-03-23 15:52:50 -0400323 err = lock_trace(task);
324 if (!err) {
325 save_stack_trace_tsk(task, &trace);
326
327 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvaldsb81a6182011-03-23 20:51:42 -0700328 seq_printf(m, "[<%pK>] %pS\n",
Al Viroa9712bc2011-03-23 15:52:50 -0400329 (void *)entries[i], (void *)entries[i]);
330 }
331 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300332 }
333 kfree(entries);
334
Al Viroa9712bc2011-03-23 15:52:50 -0400335 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300336}
337#endif
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#ifdef CONFIG_SCHEDSTATS
340/*
341 * Provides /proc/PID/schedstat
342 */
343static int proc_pid_schedstat(struct task_struct *task, char *buffer)
344{
Balbir Singh172ba842007-07-09 18:52:00 +0200345 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100346 (unsigned long long)task->se.sum_exec_runtime,
347 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200348 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350#endif
351
Arjan van de Ven97455122008-01-25 21:08:34 +0100352#ifdef CONFIG_LATENCYTOP
353static int lstats_show_proc(struct seq_file *m, void *v)
354{
355 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800356 struct inode *inode = m->private;
357 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100358
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800359 if (!task)
360 return -ESRCH;
361 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100362 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800363 struct latency_record *lr = &task->latency_record[i];
364 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100365 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800366 seq_printf(m, "%i %li %li",
367 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100368 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800369 unsigned long bt = lr->backtrace[q];
370 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100371 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800372 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100373 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800374 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100375 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800376 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100377 }
378
379 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800380 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100381 return 0;
382}
383
384static int lstats_open(struct inode *inode, struct file *file)
385{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800386 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800387}
388
Arjan van de Ven97455122008-01-25 21:08:34 +0100389static ssize_t lstats_write(struct file *file, const char __user *buf,
390 size_t count, loff_t *offs)
391{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800392 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100393
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800394 if (!task)
395 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100396 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800397 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100398
399 return count;
400}
401
402static const struct file_operations proc_lstats_operations = {
403 .open = lstats_open,
404 .read = seq_read,
405 .write = lstats_write,
406 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800407 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100408};
409
410#endif
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static int proc_oom_score(struct task_struct *task, char *buffer)
413{
David Rientjesa7f638f2012-05-29 15:06:47 -0700414 unsigned long totalpages = totalram_pages + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200415 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700417 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200418 if (pid_alive(task))
David Rientjesa7f638f2012-05-29 15:06:47 -0700419 points = oom_badness(task, NULL, NULL, totalpages) *
420 1000 / totalpages;
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700421 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return sprintf(buffer, "%lu\n", points);
423}
424
Neil Hormand85f50d2007-10-18 23:40:37 -0700425struct limit_names {
426 char *name;
427 char *unit;
428};
429
430static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700431 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700432 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
433 [RLIMIT_DATA] = {"Max data size", "bytes"},
434 [RLIMIT_STACK] = {"Max stack size", "bytes"},
435 [RLIMIT_CORE] = {"Max core file size", "bytes"},
436 [RLIMIT_RSS] = {"Max resident set", "bytes"},
437 [RLIMIT_NPROC] = {"Max processes", "processes"},
438 [RLIMIT_NOFILE] = {"Max open files", "files"},
439 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
440 [RLIMIT_AS] = {"Max address space", "bytes"},
441 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
442 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
443 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
444 [RLIMIT_NICE] = {"Max nice priority", NULL},
445 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800446 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700447};
448
449/* Display limits for a process */
450static int proc_pid_limits(struct task_struct *task, char *buffer)
451{
452 unsigned int i;
453 int count = 0;
454 unsigned long flags;
455 char *bufptr = buffer;
456
457 struct rlimit rlim[RLIM_NLIMITS];
458
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400459 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700460 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700461 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
462 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700463
464 /*
465 * print the file header
466 */
467 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
468 "Limit", "Soft Limit", "Hard Limit", "Units");
469
470 for (i = 0; i < RLIM_NLIMITS; i++) {
471 if (rlim[i].rlim_cur == RLIM_INFINITY)
472 count += sprintf(&bufptr[count], "%-25s %-20s ",
473 lnames[i].name, "unlimited");
474 else
475 count += sprintf(&bufptr[count], "%-25s %-20lu ",
476 lnames[i].name, rlim[i].rlim_cur);
477
478 if (rlim[i].rlim_max == RLIM_INFINITY)
479 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
480 else
481 count += sprintf(&bufptr[count], "%-20lu ",
482 rlim[i].rlim_max);
483
484 if (lnames[i].unit)
485 count += sprintf(&bufptr[count], "%-10s\n",
486 lnames[i].unit);
487 else
488 count += sprintf(&bufptr[count], "\n");
489 }
490
491 return count;
492}
493
Roland McGrathebcb6732008-07-25 19:46:00 -0700494#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
495static int proc_pid_syscall(struct task_struct *task, char *buffer)
496{
497 long nr;
498 unsigned long args[6], sp, pc;
Al Viroa9712bc2011-03-23 15:52:50 -0400499 int res = lock_trace(task);
500 if (res)
501 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700502
503 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Al Viroa9712bc2011-03-23 15:52:50 -0400504 res = sprintf(buffer, "running\n");
505 else if (nr < 0)
506 res = sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
507 else
508 res = sprintf(buffer,
Roland McGrathebcb6732008-07-25 19:46:00 -0700509 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
510 nr,
511 args[0], args[1], args[2], args[3], args[4], args[5],
512 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400513 unlock_trace(task);
514 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700515}
516#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/************************************************************************/
519/* Here the fs part begins */
520/************************************************************************/
521
522/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700523static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700525 struct task_struct *task;
526 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700527 /* Allow access to a task's file descriptors if it is us or we
528 * may use ptrace attach to the process and find out that
529 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700530 */
531 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700532 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400533 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700534 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700535 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700536 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800539int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700540{
541 int error;
542 struct inode *inode = dentry->d_inode;
543
544 if (attr->ia_valid & ATTR_MODE)
545 return -EPERM;
546
547 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200548 if (error)
549 return error;
550
551 if ((attr->ia_valid & ATTR_SIZE) &&
552 attr->ia_size != i_size_read(inode)) {
553 error = vmtruncate(inode, attr->ia_size);
554 if (error)
555 return error;
556 }
557
558 setattr_copy(inode, attr);
559 mark_inode_dirty(inode);
560 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700561}
562
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800563/*
564 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
565 * or euid/egid (for hide_pid_min=2)?
566 */
567static bool has_pid_permissions(struct pid_namespace *pid,
568 struct task_struct *task,
569 int hide_pid_min)
570{
571 if (pid->hide_pid < hide_pid_min)
572 return true;
573 if (in_group_p(pid->pid_gid))
574 return true;
575 return ptrace_may_access(task, PTRACE_MODE_READ);
576}
577
578
579static int proc_pid_permission(struct inode *inode, int mask)
580{
581 struct pid_namespace *pid = inode->i_sb->s_fs_info;
582 struct task_struct *task;
583 bool has_perms;
584
585 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800586 if (!task)
587 return -ESRCH;
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800588 has_perms = has_pid_permissions(pid, task, 1);
589 put_task_struct(task);
590
591 if (!has_perms) {
592 if (pid->hide_pid == 2) {
593 /*
594 * Let's make getdents(), stat(), and open()
595 * consistent with each other. If a process
596 * may not stat() a file, it shouldn't be seen
597 * in procfs at all.
598 */
599 return -ENOENT;
600 }
601
602 return -EPERM;
603 }
604 return generic_permission(inode, mask);
605}
606
607
608
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800609static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700610 .setattr = proc_setattr,
611};
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
614
615static ssize_t proc_info_read(struct file * file, char __user * buf,
616 size_t count, loff_t *ppos)
617{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800618 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 unsigned long page;
620 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700621 struct task_struct *task = get_proc_task(inode);
622
623 length = -ESRCH;
624 if (!task)
625 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (count > PROC_BLOCK_SIZE)
628 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700629
630 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700631 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700632 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 length = PROC_I(inode)->op.proc_read(task, (char*)page);
635
636 if (length >= 0)
637 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
638 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700639out:
640 put_task_struct(task);
641out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return length;
643}
644
Arjan van de Ven00977a52007-02-12 00:55:34 -0800645static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100647 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648};
649
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800650static int proc_single_show(struct seq_file *m, void *v)
651{
652 struct inode *inode = m->private;
653 struct pid_namespace *ns;
654 struct pid *pid;
655 struct task_struct *task;
656 int ret;
657
658 ns = inode->i_sb->s_fs_info;
659 pid = proc_pid(inode);
660 task = get_pid_task(pid, PIDTYPE_PID);
661 if (!task)
662 return -ESRCH;
663
664 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
665
666 put_task_struct(task);
667 return ret;
668}
669
670static int proc_single_open(struct inode *inode, struct file *filp)
671{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800672 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800673}
674
675static const struct file_operations proc_single_file_operations = {
676 .open = proc_single_open,
677 .read = seq_read,
678 .llseek = seq_lseek,
679 .release = single_release,
680};
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682static int mem_open(struct inode* inode, struct file* file)
683{
Linus Torvaldse2683372012-01-17 15:21:19 -0800684 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
685 struct mm_struct *mm;
686
687 if (!task)
688 return -ESRCH;
689
690 mm = mm_access(task, PTRACE_MODE_ATTACH);
691 put_task_struct(task);
692
693 if (IS_ERR(mm))
694 return PTR_ERR(mm);
695
Oleg Nesterov6d08f2c72012-01-31 17:15:11 +0100696 if (mm) {
697 /* ensure this mm_struct can't be freed */
698 atomic_inc(&mm->mm_count);
699 /* but do not pin its memory */
700 mmput(mm);
701 }
702
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700703 /* OK to pass negative loff_t, we can catch out-of-range */
704 file->f_mode |= FMODE_UNSIGNED_OFFSET;
Linus Torvaldse2683372012-01-17 15:21:19 -0800705 file->private_data = mm;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100710static ssize_t mem_rw(struct file *file, char __user *buf,
711 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Linus Torvaldse2683372012-01-17 15:21:19 -0800713 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100714 unsigned long addr = *ppos;
715 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Linus Torvaldse2683372012-01-17 15:21:19 -0800718 if (!mm)
719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Mel Gormane12ba742007-10-16 01:25:52 -0700721 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800723 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700725 copied = 0;
Oleg Nesterov6d08f2c72012-01-31 17:15:11 +0100726 if (!atomic_inc_not_zero(&mm->mm_users))
727 goto free;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100730 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100732 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 copied = -EFAULT;
734 break;
735 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100736
737 this_len = access_remote_vm(mm, addr, page, this_len, write);
738 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!copied)
740 copied = -EIO;
741 break;
742 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100743
744 if (!write && copy_to_user(buf, page, this_len)) {
745 copied = -EFAULT;
746 break;
747 }
748
749 buf += this_len;
750 addr += this_len;
751 copied += this_len;
752 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100754 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700755
Oleg Nesterov6d08f2c72012-01-31 17:15:11 +0100756 mmput(mm);
757free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700758 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return copied;
760}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100762static ssize_t mem_read(struct file *file, char __user *buf,
763 size_t count, loff_t *ppos)
764{
765 return mem_rw(file, buf, count, ppos, 0);
766}
767
768static ssize_t mem_write(struct file *file, const char __user *buf,
769 size_t count, loff_t *ppos)
770{
771 return mem_rw(file, (char __user*)buf, count, ppos, 1);
772}
773
Matt Mackall85863e42008-02-04 22:29:04 -0800774loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 switch (orig) {
777 case 0:
778 file->f_pos = offset;
779 break;
780 case 1:
781 file->f_pos += offset;
782 break;
783 default:
784 return -EINVAL;
785 }
786 force_successful_syscall_return();
787 return file->f_pos;
788}
789
Linus Torvaldse2683372012-01-17 15:21:19 -0800790static int mem_release(struct inode *inode, struct file *file)
791{
792 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100793 if (mm)
Oleg Nesterov6d08f2c72012-01-31 17:15:11 +0100794 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800795 return 0;
796}
797
Arjan van de Ven00977a52007-02-12 00:55:34 -0800798static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 .llseek = mem_lseek,
800 .read = mem_read,
801 .write = mem_write,
802 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800803 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804};
805
James Pearson315e28c2007-10-16 23:30:17 -0700806static ssize_t environ_read(struct file *file, char __user *buf,
807 size_t count, loff_t *ppos)
808{
809 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
810 char *page;
811 unsigned long src = *ppos;
812 int ret = -ESRCH;
813 struct mm_struct *mm;
814
815 if (!task)
816 goto out_no_task;
817
James Pearson315e28c2007-10-16 23:30:17 -0700818 ret = -ENOMEM;
819 page = (char *)__get_free_page(GFP_TEMPORARY);
820 if (!page)
821 goto out;
822
James Pearson315e28c2007-10-16 23:30:17 -0700823
Al Virod6f64b82011-02-15 22:26:01 -0500824 mm = mm_for_maps(task);
825 ret = PTR_ERR(mm);
826 if (!mm || IS_ERR(mm))
James Pearson315e28c2007-10-16 23:30:17 -0700827 goto out_free;
828
Al Virod6f64b82011-02-15 22:26:01 -0500829 ret = 0;
James Pearson315e28c2007-10-16 23:30:17 -0700830 while (count > 0) {
831 int this_len, retval, max_len;
832
833 this_len = mm->env_end - (mm->env_start + src);
834
835 if (this_len <= 0)
836 break;
837
838 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
839 this_len = (this_len > max_len) ? max_len : this_len;
840
841 retval = access_process_vm(task, (mm->env_start + src),
842 page, this_len, 0);
843
844 if (retval <= 0) {
845 ret = retval;
846 break;
847 }
848
849 if (copy_to_user(buf, page, retval)) {
850 ret = -EFAULT;
851 break;
852 }
853
854 ret += retval;
855 src += retval;
856 buf += retval;
857 count -= retval;
858 }
859 *ppos = src;
860
861 mmput(mm);
862out_free:
863 free_page((unsigned long) page);
864out:
865 put_task_struct(task);
866out_no_task:
867 return ret;
868}
869
870static const struct file_operations proc_environ_operations = {
871 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100872 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700873};
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875static ssize_t oom_adjust_read(struct file *file, char __user *buf,
876 size_t count, loff_t *ppos)
877{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800878 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700879 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700881 int oom_adjust = OOM_DISABLE;
882 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Eric W. Biederman99f89552006-06-26 00:25:55 -0700884 if (!task)
885 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700886
887 if (lock_task_sighand(task, &flags)) {
888 oom_adjust = task->signal->oom_adj;
889 unlock_task_sighand(task, &flags);
890 }
891
Eric W. Biederman99f89552006-06-26 00:25:55 -0700892 put_task_struct(task);
893
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700894 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -0700895
896 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
900 size_t count, loff_t *ppos)
901{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700902 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -0700903 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700904 int oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700905 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -0700906 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700908 memset(buffer, 0, sizeof(buffer));
909 if (count > sizeof(buffer) - 1)
910 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -0700911 if (copy_from_user(buffer, buf, count)) {
912 err = -EFAULT;
913 goto out;
914 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -0700915
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700916 err = kstrtoint(strstrip(buffer), 0, &oom_adjust);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -0700917 if (err)
David Rientjes723548b2010-10-26 14:21:25 -0700918 goto out;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -0700919 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
David Rientjes723548b2010-10-26 14:21:25 -0700920 oom_adjust != OOM_DISABLE) {
921 err = -EINVAL;
922 goto out;
923 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -0700924
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800925 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -0700926 if (!task) {
927 err = -ESRCH;
928 goto out;
929 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700930
Ying Han3d5992d2010-10-26 14:21:23 -0700931 task_lock(task);
932 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -0700933 err = -EINVAL;
934 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -0700935 }
936
David Rientjesd19d5472010-10-26 14:21:26 -0700937 if (!lock_task_sighand(task, &flags)) {
938 err = -ESRCH;
939 goto err_task_lock;
940 }
941
942 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
943 err = -EACCES;
944 goto err_sighand;
945 }
946
David Rientjes51b1bd22010-08-09 17:19:47 -0700947 /*
948 * Warn that /proc/pid/oom_adj is deprecated, see
949 * Documentation/feature-removal-schedule.txt.
950 */
Linus Torvaldsc2142702011-08-06 11:43:08 -0700951 printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
David Rientjesbe8f6842011-07-25 17:12:18 -0700952 current->comm, task_pid_nr(current), task_pid_nr(task),
953 task_pid_nr(task));
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700954 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -0700955 /*
956 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
957 * value is always attainable.
958 */
959 if (task->signal->oom_adj == OOM_ADJUST_MAX)
960 task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX;
961 else
962 task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) /
963 -OOM_DISABLE;
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -0800964 trace_oom_score_adj_update(task);
David Rientjes723548b2010-10-26 14:21:25 -0700965err_sighand:
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700966 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -0700967err_task_lock:
968 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700969 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -0700970out:
971 return err < 0 ? err : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Arjan van de Ven00977a52007-02-12 00:55:34 -0800974static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 .read = oom_adjust_read,
976 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100977 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978};
979
David Rientjesa63d83f2010-08-09 17:19:46 -0700980static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
981 size_t count, loff_t *ppos)
982{
983 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
984 char buffer[PROC_NUMBUF];
985 int oom_score_adj = OOM_SCORE_ADJ_MIN;
986 unsigned long flags;
987 size_t len;
988
989 if (!task)
990 return -ESRCH;
991 if (lock_task_sighand(task, &flags)) {
992 oom_score_adj = task->signal->oom_score_adj;
993 unlock_task_sighand(task, &flags);
994 }
995 put_task_struct(task);
996 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
997 return simple_read_from_buffer(buf, count, ppos, buffer, len);
998}
999
1000static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1001 size_t count, loff_t *ppos)
1002{
1003 struct task_struct *task;
1004 char buffer[PROC_NUMBUF];
1005 unsigned long flags;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001006 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001007 int err;
1008
1009 memset(buffer, 0, sizeof(buffer));
1010 if (count > sizeof(buffer) - 1)
1011 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001012 if (copy_from_user(buffer, buf, count)) {
1013 err = -EFAULT;
1014 goto out;
1015 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001016
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001017 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001018 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001019 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001020 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001021 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1022 err = -EINVAL;
1023 goto out;
1024 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001025
1026 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001027 if (!task) {
1028 err = -ESRCH;
1029 goto out;
1030 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001031
Ying Han3d5992d2010-10-26 14:21:23 -07001032 task_lock(task);
1033 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001034 err = -EINVAL;
1035 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001036 }
David Rientjesd19d5472010-10-26 14:21:26 -07001037
1038 if (!lock_task_sighand(task, &flags)) {
1039 err = -ESRCH;
1040 goto err_task_lock;
1041 }
1042
Mandeep Singh Bainesdabb16f632011-01-13 15:46:05 -08001043 if (oom_score_adj < task->signal->oom_score_adj_min &&
David Rientjesd19d5472010-10-26 14:21:26 -07001044 !capable(CAP_SYS_RESOURCE)) {
1045 err = -EACCES;
1046 goto err_sighand;
1047 }
1048
David Rientjesa63d83f2010-08-09 17:19:46 -07001049 task->signal->oom_score_adj = oom_score_adj;
Mandeep Singh Bainesdabb16f632011-01-13 15:46:05 -08001050 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
1051 task->signal->oom_score_adj_min = oom_score_adj;
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -08001052 trace_oom_score_adj_update(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001053 /*
1054 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1055 * always attainable.
1056 */
1057 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1058 task->signal->oom_adj = OOM_DISABLE;
1059 else
1060 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1061 OOM_SCORE_ADJ_MAX;
David Rientjes723548b2010-10-26 14:21:25 -07001062err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001063 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001064err_task_lock:
1065 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001066 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001067out:
1068 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001069}
1070
1071static const struct file_operations proc_oom_score_adj_operations = {
1072 .read = oom_score_adj_read,
1073 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001074 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001075};
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077#ifdef CONFIG_AUDITSYSCALL
1078#define TMPBUFLEN 21
1079static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1080 size_t count, loff_t *ppos)
1081{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001082 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001083 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 ssize_t length;
1085 char tmpbuf[TMPBUFLEN];
1086
Eric W. Biederman99f89552006-06-26 00:25:55 -07001087 if (!task)
1088 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001090 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001091 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1093}
1094
1095static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1096 size_t count, loff_t *ppos)
1097{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001098 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 char *page, *tmp;
1100 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 uid_t loginuid;
1102
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001103 rcu_read_lock();
1104 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1105 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001107 }
1108 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Al Viroe0182902006-05-18 08:28:02 -04001110 if (count >= PAGE_SIZE)
1111 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (*ppos != 0) {
1114 /* No partial writes. */
1115 return -EINVAL;
1116 }
Mel Gormane12ba742007-10-16 01:25:52 -07001117 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (!page)
1119 return -ENOMEM;
1120 length = -EFAULT;
1121 if (copy_from_user(page, buf, count))
1122 goto out_free_page;
1123
Al Viroe0182902006-05-18 08:28:02 -04001124 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 loginuid = simple_strtoul(page, &tmp, 10);
1126 if (tmp == page) {
1127 length = -EINVAL;
1128 goto out_free_page;
1129
1130 }
Eric Paris0a300be2012-01-03 14:23:08 -05001131 length = audit_set_loginuid(loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (likely(length == 0))
1133 length = count;
1134
1135out_free_page:
1136 free_page((unsigned long) page);
1137 return length;
1138}
1139
Arjan van de Ven00977a52007-02-12 00:55:34 -08001140static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 .read = proc_loginuid_read,
1142 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001143 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144};
Eric Paris1e0bd752008-03-13 08:15:31 -04001145
1146static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1147 size_t count, loff_t *ppos)
1148{
1149 struct inode * inode = file->f_path.dentry->d_inode;
1150 struct task_struct *task = get_proc_task(inode);
1151 ssize_t length;
1152 char tmpbuf[TMPBUFLEN];
1153
1154 if (!task)
1155 return -ESRCH;
1156 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1157 audit_get_sessionid(task));
1158 put_task_struct(task);
1159 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1160}
1161
1162static const struct file_operations proc_sessionid_operations = {
1163 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001164 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001165};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166#endif
1167
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001168#ifdef CONFIG_FAULT_INJECTION
1169static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1170 size_t count, loff_t *ppos)
1171{
1172 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1173 char buffer[PROC_NUMBUF];
1174 size_t len;
1175 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001176
1177 if (!task)
1178 return -ESRCH;
1179 make_it_fail = task->make_it_fail;
1180 put_task_struct(task);
1181
1182 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001183
1184 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001185}
1186
1187static ssize_t proc_fault_inject_write(struct file * file,
1188 const char __user * buf, size_t count, loff_t *ppos)
1189{
1190 struct task_struct *task;
1191 char buffer[PROC_NUMBUF], *end;
1192 int make_it_fail;
1193
1194 if (!capable(CAP_SYS_RESOURCE))
1195 return -EPERM;
1196 memset(buffer, 0, sizeof(buffer));
1197 if (count > sizeof(buffer) - 1)
1198 count = sizeof(buffer) - 1;
1199 if (copy_from_user(buffer, buf, count))
1200 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001201 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1202 if (*end)
1203 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001204 task = get_proc_task(file->f_dentry->d_inode);
1205 if (!task)
1206 return -ESRCH;
1207 task->make_it_fail = make_it_fail;
1208 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001209
1210 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001211}
1212
Arjan van de Ven00977a52007-02-12 00:55:34 -08001213static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001214 .read = proc_fault_inject_read,
1215 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001216 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001217};
1218#endif
1219
Arjan van de Ven97455122008-01-25 21:08:34 +01001220
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001221#ifdef CONFIG_SCHED_DEBUG
1222/*
1223 * Print out various scheduling related per-task fields:
1224 */
1225static int sched_show(struct seq_file *m, void *v)
1226{
1227 struct inode *inode = m->private;
1228 struct task_struct *p;
1229
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001230 p = get_proc_task(inode);
1231 if (!p)
1232 return -ESRCH;
1233 proc_sched_show_task(p, m);
1234
1235 put_task_struct(p);
1236
1237 return 0;
1238}
1239
1240static ssize_t
1241sched_write(struct file *file, const char __user *buf,
1242 size_t count, loff_t *offset)
1243{
1244 struct inode *inode = file->f_path.dentry->d_inode;
1245 struct task_struct *p;
1246
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001247 p = get_proc_task(inode);
1248 if (!p)
1249 return -ESRCH;
1250 proc_sched_set_task(p);
1251
1252 put_task_struct(p);
1253
1254 return count;
1255}
1256
1257static int sched_open(struct inode *inode, struct file *filp)
1258{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001259 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001260}
1261
1262static const struct file_operations proc_pid_sched_operations = {
1263 .open = sched_open,
1264 .read = seq_read,
1265 .write = sched_write,
1266 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001267 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001268};
1269
1270#endif
1271
Mike Galbraith5091faa2010-11-30 14:18:03 +01001272#ifdef CONFIG_SCHED_AUTOGROUP
1273/*
1274 * Print out autogroup related information:
1275 */
1276static int sched_autogroup_show(struct seq_file *m, void *v)
1277{
1278 struct inode *inode = m->private;
1279 struct task_struct *p;
1280
1281 p = get_proc_task(inode);
1282 if (!p)
1283 return -ESRCH;
1284 proc_sched_autogroup_show_task(p, m);
1285
1286 put_task_struct(p);
1287
1288 return 0;
1289}
1290
1291static ssize_t
1292sched_autogroup_write(struct file *file, const char __user *buf,
1293 size_t count, loff_t *offset)
1294{
1295 struct inode *inode = file->f_path.dentry->d_inode;
1296 struct task_struct *p;
1297 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001298 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001299 int err;
1300
1301 memset(buffer, 0, sizeof(buffer));
1302 if (count > sizeof(buffer) - 1)
1303 count = sizeof(buffer) - 1;
1304 if (copy_from_user(buffer, buf, count))
1305 return -EFAULT;
1306
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001307 err = kstrtoint(strstrip(buffer), 0, &nice);
1308 if (err < 0)
1309 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001310
1311 p = get_proc_task(inode);
1312 if (!p)
1313 return -ESRCH;
1314
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001315 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001316 if (err)
1317 count = err;
1318
1319 put_task_struct(p);
1320
1321 return count;
1322}
1323
1324static int sched_autogroup_open(struct inode *inode, struct file *filp)
1325{
1326 int ret;
1327
1328 ret = single_open(filp, sched_autogroup_show, NULL);
1329 if (!ret) {
1330 struct seq_file *m = filp->private_data;
1331
1332 m->private = inode;
1333 }
1334 return ret;
1335}
1336
1337static const struct file_operations proc_pid_sched_autogroup_operations = {
1338 .open = sched_autogroup_open,
1339 .read = seq_read,
1340 .write = sched_autogroup_write,
1341 .llseek = seq_lseek,
1342 .release = single_release,
1343};
1344
1345#endif /* CONFIG_SCHED_AUTOGROUP */
1346
john stultz4614a696b2009-12-14 18:00:05 -08001347static ssize_t comm_write(struct file *file, const char __user *buf,
1348 size_t count, loff_t *offset)
1349{
1350 struct inode *inode = file->f_path.dentry->d_inode;
1351 struct task_struct *p;
1352 char buffer[TASK_COMM_LEN];
1353
1354 memset(buffer, 0, sizeof(buffer));
1355 if (count > sizeof(buffer) - 1)
1356 count = sizeof(buffer) - 1;
1357 if (copy_from_user(buffer, buf, count))
1358 return -EFAULT;
1359
1360 p = get_proc_task(inode);
1361 if (!p)
1362 return -ESRCH;
1363
1364 if (same_thread_group(current, p))
1365 set_task_comm(p, buffer);
1366 else
1367 count = -EINVAL;
1368
1369 put_task_struct(p);
1370
1371 return count;
1372}
1373
1374static int comm_show(struct seq_file *m, void *v)
1375{
1376 struct inode *inode = m->private;
1377 struct task_struct *p;
1378
1379 p = get_proc_task(inode);
1380 if (!p)
1381 return -ESRCH;
1382
1383 task_lock(p);
1384 seq_printf(m, "%s\n", p->comm);
1385 task_unlock(p);
1386
1387 put_task_struct(p);
1388
1389 return 0;
1390}
1391
1392static int comm_open(struct inode *inode, struct file *filp)
1393{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001394 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001395}
1396
1397static const struct file_operations proc_pid_set_comm_operations = {
1398 .open = comm_open,
1399 .read = seq_read,
1400 .write = comm_write,
1401 .llseek = seq_lseek,
1402 .release = single_release,
1403};
1404
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001405static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001406{
1407 struct task_struct *task;
1408 struct mm_struct *mm;
1409 struct file *exe_file;
1410
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001411 task = get_proc_task(dentry->d_inode);
Matt Helsley925d1c42008-04-29 01:01:36 -07001412 if (!task)
1413 return -ENOENT;
1414 mm = get_task_mm(task);
1415 put_task_struct(task);
1416 if (!mm)
1417 return -ENOENT;
1418 exe_file = get_mm_exe_file(mm);
1419 mmput(mm);
1420 if (exe_file) {
1421 *exe_path = exe_file->f_path;
1422 path_get(&exe_file->f_path);
1423 fput(exe_file);
1424 return 0;
1425 } else
1426 return -ENOENT;
1427}
1428
Al Viro008b1502005-08-20 00:17:39 +01001429static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
1431 struct inode *inode = dentry->d_inode;
1432 int error = -EACCES;
1433
1434 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001435 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Eric W. Biederman778c1142006-06-26 00:25:58 -07001437 /* Are we allowed to snoop on the tasks file descriptors? */
1438 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001441 error = PROC_I(inode)->op.proc_get_link(dentry, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442out:
Al Viro008b1502005-08-20 00:17:39 +01001443 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
1445
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001446static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Mel Gormane12ba742007-10-16 01:25:52 -07001448 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001449 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 int len;
1451
1452 if (!tmp)
1453 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001454
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001455 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001456 len = PTR_ERR(pathname);
1457 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001459 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 if (len > buflen)
1462 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001463 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 len = -EFAULT;
1465 out:
1466 free_page((unsigned long)tmp);
1467 return len;
1468}
1469
1470static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1471{
1472 int error = -EACCES;
1473 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001474 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Eric W. Biederman778c1142006-06-26 00:25:58 -07001476 /* Are we allowed to snoop on the tasks file descriptors? */
1477 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001480 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (error)
1482 goto out;
1483
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001484 error = do_proc_readlink(&path, buffer, buflen);
1485 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return error;
1488}
1489
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001490static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001492 .follow_link = proc_pid_follow_link,
1493 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494};
1495
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001496
1497/* building an inode */
1498
1499static int task_dumpable(struct task_struct *task)
1500{
1501 int dumpable = 0;
1502 struct mm_struct *mm;
1503
1504 task_lock(task);
1505 mm = task->mm;
1506 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001507 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001508 task_unlock(task);
1509 if(dumpable == 1)
1510 return 1;
1511 return 0;
1512}
1513
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001514struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001515{
1516 struct inode * inode;
1517 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001518 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001519
1520 /* We need a new inode */
1521
1522 inode = new_inode(sb);
1523 if (!inode)
1524 goto out;
1525
1526 /* Common stuff */
1527 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001528 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001529 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001530 inode->i_op = &proc_def_inode_operations;
1531
1532 /*
1533 * grab the reference to task.
1534 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001535 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001536 if (!ei->pid)
1537 goto out_unlock;
1538
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001539 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001540 rcu_read_lock();
1541 cred = __task_cred(task);
1542 inode->i_uid = cred->euid;
1543 inode->i_gid = cred->egid;
1544 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001545 }
1546 security_task_to_inode(task, inode);
1547
1548out:
1549 return inode;
1550
1551out_unlock:
1552 iput(inode);
1553 return NULL;
1554}
1555
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001556int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001557{
1558 struct inode *inode = dentry->d_inode;
1559 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001560 const struct cred *cred;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001561 struct pid_namespace *pid = dentry->d_sb->s_fs_info;
David Howellsc69e8d92008-11-14 10:39:19 +11001562
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001563 generic_fillattr(inode, stat);
1564
1565 rcu_read_lock();
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001566 stat->uid = GLOBAL_ROOT_UID;
1567 stat->gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001568 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1569 if (task) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001570 if (!has_pid_permissions(pid, task, 2)) {
1571 rcu_read_unlock();
1572 /*
1573 * This doesn't prevent learning whether PID exists,
1574 * it only makes getattr() consistent with readdir().
1575 */
1576 return -ENOENT;
1577 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001578 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1579 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001580 cred = __task_cred(task);
1581 stat->uid = cred->euid;
1582 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001583 }
1584 }
1585 rcu_read_unlock();
1586 return 0;
1587}
1588
1589/* dentry stuff */
1590
1591/*
1592 * Exceptional case: normally we are not allowed to unhash a busy
1593 * directory. In this case, however, we can do it - no aliasing problems
1594 * due to the way we treat inodes.
1595 *
1596 * Rewrite the inode's ownerships here because the owning task may have
1597 * performed a setuid(), etc.
1598 *
1599 * Before the /proc/pid/status file was created the only way to read
1600 * the effective uid of a /process was to stat /proc/pid. Reading
1601 * /proc/pid/status is slow enough that procps and other packages
1602 * kept stating /proc/pid. To keep the rules in /proc simple I have
1603 * made this apply to all per process world readable and executable
1604 * directories.
1605 */
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001606int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001607{
Nick Piggin34286d62011-01-07 17:49:57 +11001608 struct inode *inode;
1609 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001610 const struct cred *cred;
1611
Nick Piggin34286d62011-01-07 17:49:57 +11001612 if (nd && nd->flags & LOOKUP_RCU)
1613 return -ECHILD;
1614
1615 inode = dentry->d_inode;
1616 task = get_proc_task(inode);
1617
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001618 if (task) {
1619 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1620 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001621 rcu_read_lock();
1622 cred = __task_cred(task);
1623 inode->i_uid = cred->euid;
1624 inode->i_gid = cred->egid;
1625 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001626 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001627 inode->i_uid = GLOBAL_ROOT_UID;
1628 inode->i_gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001629 }
1630 inode->i_mode &= ~(S_ISUID | S_ISGID);
1631 security_task_to_inode(task, inode);
1632 put_task_struct(task);
1633 return 1;
1634 }
1635 d_drop(dentry);
1636 return 0;
1637}
1638
Nick Pigginfe15ce42011-01-07 17:49:23 +11001639static int pid_delete_dentry(const struct dentry * dentry)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001640{
1641 /* Is the task we represent dead?
1642 * If so, then don't put the dentry on the lru list,
1643 * kill it immediately.
1644 */
1645 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1646}
1647
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001648const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001649{
1650 .d_revalidate = pid_revalidate,
1651 .d_delete = pid_delete_dentry,
1652};
1653
1654/* Lookups */
1655
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001656/*
1657 * Fill a directory entry.
1658 *
1659 * If possible create the dcache entry and derive our inode number and
1660 * file type from dcache entry.
1661 *
1662 * Since all of the proc inode numbers are dynamically generated, the inode
1663 * numbers do not exist until the inode is cache. This means creating the
1664 * the dcache entry in readdir is necessary to keep the inode numbers
1665 * reported by readdir in sync with the inode numbers reported
1666 * by stat.
1667 */
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001668int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1669 const char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001670 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001671{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001672 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001673 struct inode *inode;
1674 struct qstr qname;
1675 ino_t ino = 0;
1676 unsigned type = DT_UNKNOWN;
1677
1678 qname.name = name;
1679 qname.len = len;
1680 qname.hash = full_name_hash(name, len);
1681
1682 child = d_lookup(dir, &qname);
1683 if (!child) {
1684 struct dentry *new;
1685 new = d_alloc(dir, &qname);
1686 if (new) {
1687 child = instantiate(dir->d_inode, new, task, ptr);
1688 if (child)
1689 dput(new);
1690 else
1691 child = new;
1692 }
1693 }
1694 if (!child || IS_ERR(child) || !child->d_inode)
1695 goto end_instantiate;
1696 inode = child->d_inode;
1697 if (inode) {
1698 ino = inode->i_ino;
1699 type = inode->i_mode >> 12;
1700 }
1701 dput(child);
1702end_instantiate:
1703 if (!ino)
1704 ino = find_inode_number(dir, &qname);
1705 if (!ino)
1706 ino = 1;
1707 return filldir(dirent, name, len, filp->f_pos, ino, type);
1708}
1709
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001710static unsigned name_to_int(struct dentry *dentry)
1711{
1712 const char *name = dentry->d_name.name;
1713 int len = dentry->d_name.len;
1714 unsigned n = 0;
1715
1716 if (len > 1 && *name == '0')
1717 goto out;
1718 while (len-- > 0) {
1719 unsigned c = *name++ - '0';
1720 if (c > 9)
1721 goto out;
1722 if (n >= (~0U-9)/10)
1723 goto out;
1724 n *= 10;
1725 n += c;
1726 }
1727 return n;
1728out:
1729 return ~0U;
1730}
1731
Miklos Szeredi27932742007-05-08 00:26:17 -07001732#define PROC_FDINFO_MAX 64
1733
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001734static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001735{
Linus Torvalds5e442a492011-11-09 18:16:00 -05001736 struct task_struct *task = get_proc_task(inode);
1737 struct files_struct *files = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001738 struct file *file;
1739 int fd = proc_fd(inode);
1740
Linus Torvalds5e442a492011-11-09 18:16:00 -05001741 if (task) {
1742 files = get_files_struct(task);
1743 put_task_struct(task);
1744 }
1745 if (files) {
1746 /*
1747 * We are not taking a ref to the file structure, so we must
1748 * hold ->file_lock.
1749 */
1750 spin_lock(&files->file_lock);
1751 file = fcheck_files(files, fd);
1752 if (file) {
1753 unsigned int f_flags;
1754 struct fdtable *fdt;
Linus Torvalds1117f722011-08-06 11:51:33 -07001755
Linus Torvalds5e442a492011-11-09 18:16:00 -05001756 fdt = files_fdtable(files);
1757 f_flags = file->f_flags & ~O_CLOEXEC;
David Howells1dce27c2012-02-16 17:49:42 +00001758 if (close_on_exec(fd, fdt))
Linus Torvalds5e442a492011-11-09 18:16:00 -05001759 f_flags |= O_CLOEXEC;
Linus Torvalds1117f722011-08-06 11:51:33 -07001760
Linus Torvalds5e442a492011-11-09 18:16:00 -05001761 if (path) {
1762 *path = file->f_path;
1763 path_get(&file->f_path);
1764 }
1765 if (info)
1766 snprintf(info, PROC_FDINFO_MAX,
1767 "pos:\t%lli\n"
1768 "flags:\t0%o\n",
1769 (long long) file->f_pos,
1770 f_flags);
1771 spin_unlock(&files->file_lock);
1772 put_files_struct(files);
1773 return 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001774 }
Linus Torvalds5e442a492011-11-09 18:16:00 -05001775 spin_unlock(&files->file_lock);
1776 put_files_struct(files);
1777 }
1778 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001779}
1780
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001781static int proc_fd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001782{
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001783 return proc_fd_info(dentry->d_inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001784}
1785
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001786static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1787{
Nick Piggin34286d62011-01-07 17:49:57 +11001788 struct inode *inode;
1789 struct task_struct *task;
1790 int fd;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001791 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001792 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001793
Nick Piggin34286d62011-01-07 17:49:57 +11001794 if (nd && nd->flags & LOOKUP_RCU)
1795 return -ECHILD;
1796
1797 inode = dentry->d_inode;
1798 task = get_proc_task(inode);
1799 fd = proc_fd(inode);
1800
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001801 if (task) {
1802 files = get_files_struct(task);
1803 if (files) {
Linus Torvalds30a08bf2012-05-18 11:32:15 -07001804 struct file *file;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001805 rcu_read_lock();
Linus Torvalds30a08bf2012-05-18 11:32:15 -07001806 file = fcheck_files(files, fd);
1807 if (file) {
1808 unsigned i_mode, f_mode = file->f_mode;
1809
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001810 rcu_read_unlock();
1811 put_files_struct(files);
Linus Torvalds30a08bf2012-05-18 11:32:15 -07001812
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001813 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001814 rcu_read_lock();
1815 cred = __task_cred(task);
1816 inode->i_uid = cred->euid;
1817 inode->i_gid = cred->egid;
1818 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001819 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001820 inode->i_uid = GLOBAL_ROOT_UID;
1821 inode->i_gid = GLOBAL_ROOT_GID;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001822 }
Linus Torvalds30a08bf2012-05-18 11:32:15 -07001823
1824 i_mode = S_IFLNK;
1825 if (f_mode & FMODE_READ)
1826 i_mode |= S_IRUSR | S_IXUSR;
1827 if (f_mode & FMODE_WRITE)
1828 i_mode |= S_IWUSR | S_IXUSR;
1829 inode->i_mode = i_mode;
1830
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001831 security_task_to_inode(task, inode);
1832 put_task_struct(task);
1833 return 1;
1834 }
1835 rcu_read_unlock();
1836 put_files_struct(files);
1837 }
1838 put_task_struct(task);
1839 }
1840 d_drop(dentry);
1841 return 0;
1842}
1843
Al Virod72f71e2009-02-20 05:58:47 +00001844static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001845{
1846 .d_revalidate = tid_fd_revalidate,
1847 .d_delete = pid_delete_dentry,
1848};
1849
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001850static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001851 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001852{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001853 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001854 struct inode *inode;
1855 struct proc_inode *ei;
1856 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001857
Eric W. Biederman61a28782006-10-02 02:18:49 -07001858 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001859 if (!inode)
1860 goto out;
1861 ei = PROC_I(inode);
1862 ei->fd = fd;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001863
Linus Torvalds5e442a492011-11-09 18:16:00 -05001864 inode->i_op = &proc_pid_link_inode_operations;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001865 inode->i_size = 64;
1866 ei->op.proc_get_link = proc_fd_link;
Nick Pigginfb045ad2011-01-07 17:49:55 +11001867 d_set_d_op(dentry, &tid_fd_dentry_operations);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001868 d_add(dentry, inode);
1869 /* Close the race of the process dying before we return the dentry */
1870 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001871 error = NULL;
1872
1873 out:
1874 return error;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001875}
1876
Miklos Szeredi27932742007-05-08 00:26:17 -07001877static struct dentry *proc_lookupfd_common(struct inode *dir,
1878 struct dentry *dentry,
1879 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001880{
1881 struct task_struct *task = get_proc_task(dir);
1882 unsigned fd = name_to_int(dentry);
1883 struct dentry *result = ERR_PTR(-ENOENT);
1884
1885 if (!task)
1886 goto out_no_task;
1887 if (fd == ~0U)
1888 goto out;
1889
Miklos Szeredi27932742007-05-08 00:26:17 -07001890 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001891out:
1892 put_task_struct(task);
1893out_no_task:
1894 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001895}
1896
Miklos Szeredi27932742007-05-08 00:26:17 -07001897static int proc_readfd_common(struct file * filp, void * dirent,
1898 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001900 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001901 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001902 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001903 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 struct files_struct * files;
1906
1907 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001908 if (!p)
1909 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 fd = filp->f_pos;
1913 switch (fd) {
1914 case 0:
1915 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
Linus Torvalds5e442a492011-11-09 18:16:00 -05001916 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 filp->f_pos++;
1918 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001919 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
Linus Torvalds5e442a492011-11-09 18:16:00 -05001921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 filp->f_pos++;
1923 default:
1924 files = get_files_struct(p);
1925 if (!files)
Linus Torvalds5e442a492011-11-09 18:16:00 -05001926 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001927 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001929 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001931 char name[PROC_NUMBUF];
1932 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 if (!fcheck_files(files, fd))
1935 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001936 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Miklos Szeredi27932742007-05-08 00:26:17 -07001938 len = snprintf(name, sizeof(name), "%d", fd);
1939 if (proc_fill_cache(filp, dirent, filldir,
1940 name, len, instantiate,
1941 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001942 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 break;
1944 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001945 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001947 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 put_files_struct(files);
1949 }
1950out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001951 put_task_struct(p);
1952out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return retval;
1954}
1955
Miklos Szeredi27932742007-05-08 00:26:17 -07001956static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1957 struct nameidata *nd)
1958{
1959 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1960}
1961
1962static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1963{
1964 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1965}
1966
1967static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1968 size_t len, loff_t *ppos)
1969{
1970 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001971 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001972 if (!err)
1973 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1974 return err;
1975}
1976
1977static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01001978 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07001979 .read = proc_fdinfo_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001980 .llseek = no_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07001981};
1982
Arjan van de Ven00977a52007-02-12 00:55:34 -08001983static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 .read = generic_read_dir,
1985 .readdir = proc_readfd,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001986 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987};
1988
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001989#ifdef CONFIG_CHECKPOINT_RESTORE
1990
1991/*
1992 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1993 * which represent vma start and end addresses.
1994 */
1995static int dname_to_vma_addr(struct dentry *dentry,
1996 unsigned long *start, unsigned long *end)
1997{
1998 if (sscanf(dentry->d_name.name, "%lx-%lx", start, end) != 2)
1999 return -EINVAL;
2000
2001 return 0;
2002}
2003
2004static int map_files_d_revalidate(struct dentry *dentry, struct nameidata *nd)
2005{
2006 unsigned long vm_start, vm_end;
2007 bool exact_vma_exists = false;
2008 struct mm_struct *mm = NULL;
2009 struct task_struct *task;
2010 const struct cred *cred;
2011 struct inode *inode;
2012 int status = 0;
2013
2014 if (nd && nd->flags & LOOKUP_RCU)
2015 return -ECHILD;
2016
2017 if (!capable(CAP_SYS_ADMIN)) {
2018 status = -EACCES;
2019 goto out_notask;
2020 }
2021
2022 inode = dentry->d_inode;
2023 task = get_proc_task(inode);
2024 if (!task)
2025 goto out_notask;
2026
2027 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2028 goto out;
2029
2030 mm = get_task_mm(task);
2031 if (!mm)
2032 goto out;
2033
2034 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
2035 down_read(&mm->mmap_sem);
2036 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
2037 up_read(&mm->mmap_sem);
2038 }
2039
2040 mmput(mm);
2041
2042 if (exact_vma_exists) {
2043 if (task_dumpable(task)) {
2044 rcu_read_lock();
2045 cred = __task_cred(task);
2046 inode->i_uid = cred->euid;
2047 inode->i_gid = cred->egid;
2048 rcu_read_unlock();
2049 } else {
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08002050 inode->i_uid = GLOBAL_ROOT_UID;
2051 inode->i_gid = GLOBAL_ROOT_GID;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002052 }
2053 security_task_to_inode(task, inode);
2054 status = 1;
2055 }
2056
2057out:
2058 put_task_struct(task);
2059
2060out_notask:
2061 if (status <= 0)
2062 d_drop(dentry);
2063
2064 return status;
2065}
2066
2067static const struct dentry_operations tid_map_files_dentry_operations = {
2068 .d_revalidate = map_files_d_revalidate,
2069 .d_delete = pid_delete_dentry,
2070};
2071
2072static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
2073{
2074 unsigned long vm_start, vm_end;
2075 struct vm_area_struct *vma;
2076 struct task_struct *task;
2077 struct mm_struct *mm;
2078 int rc;
2079
2080 rc = -ENOENT;
2081 task = get_proc_task(dentry->d_inode);
2082 if (!task)
2083 goto out;
2084
2085 mm = get_task_mm(task);
2086 put_task_struct(task);
2087 if (!mm)
2088 goto out;
2089
2090 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
2091 if (rc)
2092 goto out_mmput;
2093
2094 down_read(&mm->mmap_sem);
2095 vma = find_exact_vma(mm, vm_start, vm_end);
2096 if (vma && vma->vm_file) {
2097 *path = vma->vm_file->f_path;
2098 path_get(path);
2099 rc = 0;
2100 }
2101 up_read(&mm->mmap_sem);
2102
2103out_mmput:
2104 mmput(mm);
2105out:
2106 return rc;
2107}
2108
2109struct map_files_info {
2110 struct file *file;
2111 unsigned long len;
2112 unsigned char name[4*sizeof(long)+2]; /* max: %lx-%lx\0 */
2113};
2114
2115static struct dentry *
2116proc_map_files_instantiate(struct inode *dir, struct dentry *dentry,
2117 struct task_struct *task, const void *ptr)
2118{
2119 const struct file *file = ptr;
2120 struct proc_inode *ei;
2121 struct inode *inode;
2122
2123 if (!file)
2124 return ERR_PTR(-ENOENT);
2125
2126 inode = proc_pid_make_inode(dir->i_sb, task);
2127 if (!inode)
2128 return ERR_PTR(-ENOENT);
2129
2130 ei = PROC_I(inode);
2131 ei->op.proc_get_link = proc_map_files_get_link;
2132
2133 inode->i_op = &proc_pid_link_inode_operations;
2134 inode->i_size = 64;
2135 inode->i_mode = S_IFLNK;
2136
2137 if (file->f_mode & FMODE_READ)
2138 inode->i_mode |= S_IRUSR;
2139 if (file->f_mode & FMODE_WRITE)
2140 inode->i_mode |= S_IWUSR;
2141
2142 d_set_d_op(dentry, &tid_map_files_dentry_operations);
2143 d_add(dentry, inode);
2144
2145 return NULL;
2146}
2147
2148static struct dentry *proc_map_files_lookup(struct inode *dir,
2149 struct dentry *dentry, struct nameidata *nd)
2150{
2151 unsigned long vm_start, vm_end;
2152 struct vm_area_struct *vma;
2153 struct task_struct *task;
2154 struct dentry *result;
2155 struct mm_struct *mm;
2156
2157 result = ERR_PTR(-EACCES);
2158 if (!capable(CAP_SYS_ADMIN))
2159 goto out;
2160
2161 result = ERR_PTR(-ENOENT);
2162 task = get_proc_task(dir);
2163 if (!task)
2164 goto out;
2165
2166 result = ERR_PTR(-EACCES);
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002167 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002168 goto out_put_task;
2169
2170 result = ERR_PTR(-ENOENT);
2171 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002172 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002173
2174 mm = get_task_mm(task);
2175 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002176 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002177
2178 down_read(&mm->mmap_sem);
2179 vma = find_exact_vma(mm, vm_start, vm_end);
2180 if (!vma)
2181 goto out_no_vma;
2182
2183 result = proc_map_files_instantiate(dir, dentry, task, vma->vm_file);
2184
2185out_no_vma:
2186 up_read(&mm->mmap_sem);
2187 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002188out_put_task:
2189 put_task_struct(task);
2190out:
2191 return result;
2192}
2193
2194static const struct inode_operations proc_map_files_inode_operations = {
2195 .lookup = proc_map_files_lookup,
2196 .permission = proc_fd_permission,
2197 .setattr = proc_setattr,
2198};
2199
2200static int
2201proc_map_files_readdir(struct file *filp, void *dirent, filldir_t filldir)
2202{
2203 struct dentry *dentry = filp->f_path.dentry;
2204 struct inode *inode = dentry->d_inode;
2205 struct vm_area_struct *vma;
2206 struct task_struct *task;
2207 struct mm_struct *mm;
2208 ino_t ino;
2209 int ret;
2210
2211 ret = -EACCES;
2212 if (!capable(CAP_SYS_ADMIN))
2213 goto out;
2214
2215 ret = -ENOENT;
2216 task = get_proc_task(inode);
2217 if (!task)
2218 goto out;
2219
2220 ret = -EACCES;
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002221 if (!ptrace_may_access(task, PTRACE_MODE_READ))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002222 goto out_put_task;
2223
2224 ret = 0;
2225 switch (filp->f_pos) {
2226 case 0:
2227 ino = inode->i_ino;
2228 if (filldir(dirent, ".", 1, 0, ino, DT_DIR) < 0)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002229 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002230 filp->f_pos++;
2231 case 1:
2232 ino = parent_ino(dentry);
2233 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002234 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002235 filp->f_pos++;
2236 default:
2237 {
2238 unsigned long nr_files, pos, i;
2239 struct flex_array *fa = NULL;
2240 struct map_files_info info;
2241 struct map_files_info *p;
2242
2243 mm = get_task_mm(task);
2244 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002245 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002246 down_read(&mm->mmap_sem);
2247
2248 nr_files = 0;
2249
2250 /*
2251 * We need two passes here:
2252 *
2253 * 1) Collect vmas of mapped files with mmap_sem taken
2254 * 2) Release mmap_sem and instantiate entries
2255 *
2256 * otherwise we get lockdep complained, since filldir()
2257 * routine might require mmap_sem taken in might_fault().
2258 */
2259
2260 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
2261 if (vma->vm_file && ++pos > filp->f_pos)
2262 nr_files++;
2263 }
2264
2265 if (nr_files) {
2266 fa = flex_array_alloc(sizeof(info), nr_files,
2267 GFP_KERNEL);
2268 if (!fa || flex_array_prealloc(fa, 0, nr_files,
2269 GFP_KERNEL)) {
2270 ret = -ENOMEM;
2271 if (fa)
2272 flex_array_free(fa);
2273 up_read(&mm->mmap_sem);
2274 mmput(mm);
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002275 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002276 }
2277 for (i = 0, vma = mm->mmap, pos = 2; vma;
2278 vma = vma->vm_next) {
2279 if (!vma->vm_file)
2280 continue;
2281 if (++pos <= filp->f_pos)
2282 continue;
2283
2284 get_file(vma->vm_file);
2285 info.file = vma->vm_file;
2286 info.len = snprintf(info.name,
2287 sizeof(info.name), "%lx-%lx",
2288 vma->vm_start, vma->vm_end);
2289 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
2290 BUG();
2291 }
2292 }
2293 up_read(&mm->mmap_sem);
2294
2295 for (i = 0; i < nr_files; i++) {
2296 p = flex_array_get(fa, i);
2297 ret = proc_fill_cache(filp, dirent, filldir,
2298 p->name, p->len,
2299 proc_map_files_instantiate,
2300 task, p->file);
2301 if (ret)
2302 break;
2303 filp->f_pos++;
2304 fput(p->file);
2305 }
2306 for (; i < nr_files; i++) {
2307 /*
2308 * In case of error don't forget
2309 * to put rest of file refs.
2310 */
2311 p = flex_array_get(fa, i);
2312 fput(p->file);
2313 }
2314 if (fa)
2315 flex_array_free(fa);
2316 mmput(mm);
2317 }
2318 }
2319
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002320out_put_task:
2321 put_task_struct(task);
2322out:
2323 return ret;
2324}
2325
2326static const struct file_operations proc_map_files_operations = {
2327 .read = generic_read_dir,
2328 .readdir = proc_map_files_readdir,
2329 .llseek = default_llseek,
2330};
2331
2332#endif /* CONFIG_CHECKPOINT_RESTORE */
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002335 * /proc/pid/fd needs a special permission handler so that a process can still
2336 * access /proc/self/fd after it has executed a setuid().
2337 */
Al Viro10556cb22011-06-20 19:28:19 -04002338static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002339{
Al Viro2830ba72011-06-20 19:16:29 -04002340 int rv = generic_permission(inode, mask);
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002341 if (rv == 0)
2342 return 0;
2343 if (task_pid(current) == proc_pid(inode))
2344 rv = 0;
2345 return rv;
2346}
2347
2348/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 * proc directories can do almost nothing..
2350 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002351static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002353 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002354 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355};
2356
Miklos Szeredi27932742007-05-08 00:26:17 -07002357static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2358 struct dentry *dentry, struct task_struct *task, const void *ptr)
2359{
2360 unsigned fd = *(unsigned *)ptr;
2361 struct inode *inode;
2362 struct proc_inode *ei;
2363 struct dentry *error = ERR_PTR(-ENOENT);
2364
2365 inode = proc_pid_make_inode(dir->i_sb, task);
2366 if (!inode)
2367 goto out;
2368 ei = PROC_I(inode);
2369 ei->fd = fd;
2370 inode->i_mode = S_IFREG | S_IRUSR;
2371 inode->i_fop = &proc_fdinfo_file_operations;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002372 d_set_d_op(dentry, &tid_fd_dentry_operations);
Miklos Szeredi27932742007-05-08 00:26:17 -07002373 d_add(dentry, inode);
2374 /* Close the race of the process dying before we return the dentry */
2375 if (tid_fd_revalidate(dentry, NULL))
2376 error = NULL;
2377
2378 out:
2379 return error;
2380}
2381
2382static struct dentry *proc_lookupfdinfo(struct inode *dir,
2383 struct dentry *dentry,
2384 struct nameidata *nd)
2385{
2386 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2387}
2388
2389static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2390{
2391 return proc_readfd_common(filp, dirent, filldir,
2392 proc_fdinfo_instantiate);
2393}
2394
2395static const struct file_operations proc_fdinfo_operations = {
2396 .read = generic_read_dir,
2397 .readdir = proc_readfdinfo,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002398 .llseek = default_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002399};
2400
2401/*
2402 * proc directories can do almost nothing..
2403 */
2404static const struct inode_operations proc_fdinfo_inode_operations = {
2405 .lookup = proc_lookupfdinfo,
2406 .setattr = proc_setattr,
2407};
2408
2409
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002410static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002411 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002412{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002413 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002414 struct inode *inode;
2415 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002416 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002417
Eric W. Biederman61a28782006-10-02 02:18:49 -07002418 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002419 if (!inode)
2420 goto out;
2421
2422 ei = PROC_I(inode);
2423 inode->i_mode = p->mode;
2424 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002425 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002426 if (p->iop)
2427 inode->i_op = p->iop;
2428 if (p->fop)
2429 inode->i_fop = p->fop;
2430 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002431 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002432 d_add(dentry, inode);
2433 /* Close the race of the process dying before we return the dentry */
2434 if (pid_revalidate(dentry, NULL))
2435 error = NULL;
2436out:
2437 return error;
2438}
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440static struct dentry *proc_pident_lookup(struct inode *dir,
2441 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002442 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002443 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Eric W. Biedermancd6a3ce92006-06-26 00:25:49 -07002445 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002446 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002447 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Eric W. Biedermancd6a3ce92006-06-26 00:25:49 -07002449 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Eric W. Biederman99f89552006-06-26 00:25:55 -07002451 if (!task)
2452 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002454 /*
2455 * Yes, it does not scale. And it should not. Don't add
2456 * new entries into /proc/<tgid>/ without very good reasons.
2457 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002458 last = &ents[nents - 1];
2459 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 if (p->len != dentry->d_name.len)
2461 continue;
2462 if (!memcmp(dentry->d_name.name, p->name, p->len))
2463 break;
2464 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002465 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 goto out;
2467
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002468 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002470 put_task_struct(task);
2471out_no_task:
Eric W. Biedermancd6a3ce92006-06-26 00:25:49 -07002472 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
2474
Eric Dumazetc5141e62007-05-08 00:26:15 -07002475static int proc_pident_fill_cache(struct file *filp, void *dirent,
2476 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002477{
2478 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2479 proc_pident_instantiate, task, p);
2480}
2481
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002482static int proc_pident_readdir(struct file *filp,
2483 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002484 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002485{
2486 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002487 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002488 struct inode *inode = dentry->d_inode;
2489 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002490 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002491 ino_t ino;
2492 int ret;
2493
2494 ret = -ENOENT;
2495 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002496 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002497
2498 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002499 i = filp->f_pos;
2500 switch (i) {
2501 case 0:
2502 ino = inode->i_ino;
2503 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2504 goto out;
2505 i++;
2506 filp->f_pos++;
2507 /* fall through */
2508 case 1:
2509 ino = parent_ino(dentry);
2510 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2511 goto out;
2512 i++;
2513 filp->f_pos++;
2514 /* fall through */
2515 default:
2516 i -= 2;
2517 if (i >= nents) {
2518 ret = 1;
2519 goto out;
2520 }
2521 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002522 last = &ents[nents - 1];
2523 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002524 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002525 goto out;
2526 filp->f_pos++;
2527 p++;
2528 }
2529 }
2530
2531 ret = 1;
2532out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002533 put_task_struct(task);
2534out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002535 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536}
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002539static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2540 size_t count, loff_t *ppos)
2541{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002542 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002543 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002544 ssize_t length;
2545 struct task_struct *task = get_proc_task(inode);
2546
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002547 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002548 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002549
2550 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002551 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002552 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002553 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002554 if (length > 0)
2555 length = simple_read_from_buffer(buf, count, ppos, p, length);
2556 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002557 return length;
2558}
2559
2560static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2561 size_t count, loff_t *ppos)
2562{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002563 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002564 char *page;
2565 ssize_t length;
2566 struct task_struct *task = get_proc_task(inode);
2567
2568 length = -ESRCH;
2569 if (!task)
2570 goto out_no_task;
2571 if (count > PAGE_SIZE)
2572 count = PAGE_SIZE;
2573
2574 /* No partial writes. */
2575 length = -EINVAL;
2576 if (*ppos != 0)
2577 goto out;
2578
2579 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002580 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002581 if (!page)
2582 goto out;
2583
2584 length = -EFAULT;
2585 if (copy_from_user(page, buf, count))
2586 goto out_free;
2587
David Howells107db7c2009-05-08 13:55:27 +01002588 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002589 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002590 if (length < 0)
2591 goto out_free;
2592
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002593 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002594 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002595 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002596 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002597out_free:
2598 free_page((unsigned long) page);
2599out:
2600 put_task_struct(task);
2601out_no_task:
2602 return length;
2603}
2604
Arjan van de Ven00977a52007-02-12 00:55:34 -08002605static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002606 .read = proc_pid_attr_read,
2607 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002608 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002609};
2610
Eric Dumazetc5141e62007-05-08 00:26:15 -07002611static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002612 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2613 REG("prev", S_IRUGO, proc_pid_attr_operations),
2614 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2615 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2616 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2617 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002618};
2619
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002620static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 void * dirent, filldir_t filldir)
2622{
2623 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002624 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
Arjan van de Ven00977a52007-02-12 00:55:34 -08002627static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002629 .readdir = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002630 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631};
2632
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002633static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 struct dentry *dentry, struct nameidata *nd)
2635{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002636 return proc_pident_lookup(dir, dentry,
2637 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002640static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002641 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002642 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002643 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644};
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646#endif
2647
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002648#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002649static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2650 size_t count, loff_t *ppos)
2651{
2652 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2653 struct mm_struct *mm;
2654 char buffer[PROC_NUMBUF];
2655 size_t len;
2656 int ret;
2657
2658 if (!task)
2659 return -ESRCH;
2660
2661 ret = 0;
2662 mm = get_task_mm(task);
2663 if (mm) {
2664 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2665 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2666 MMF_DUMP_FILTER_SHIFT));
2667 mmput(mm);
2668 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2669 }
2670
2671 put_task_struct(task);
2672
2673 return ret;
2674}
2675
2676static ssize_t proc_coredump_filter_write(struct file *file,
2677 const char __user *buf,
2678 size_t count,
2679 loff_t *ppos)
2680{
2681 struct task_struct *task;
2682 struct mm_struct *mm;
2683 char buffer[PROC_NUMBUF], *end;
2684 unsigned int val;
2685 int ret;
2686 int i;
2687 unsigned long mask;
2688
2689 ret = -EFAULT;
2690 memset(buffer, 0, sizeof(buffer));
2691 if (count > sizeof(buffer) - 1)
2692 count = sizeof(buffer) - 1;
2693 if (copy_from_user(buffer, buf, count))
2694 goto out_no_task;
2695
2696 ret = -EINVAL;
2697 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2698 if (*end == '\n')
2699 end++;
2700 if (end - buffer == 0)
2701 goto out_no_task;
2702
2703 ret = -ESRCH;
2704 task = get_proc_task(file->f_dentry->d_inode);
2705 if (!task)
2706 goto out_no_task;
2707
2708 ret = end - buffer;
2709 mm = get_task_mm(task);
2710 if (!mm)
2711 goto out_no_mm;
2712
2713 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2714 if (val & mask)
2715 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2716 else
2717 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2718 }
2719
2720 mmput(mm);
2721 out_no_mm:
2722 put_task_struct(task);
2723 out_no_task:
2724 return ret;
2725}
2726
2727static const struct file_operations proc_coredump_filter_operations = {
2728 .read = proc_coredump_filter_read,
2729 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002730 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002731};
2732#endif
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734/*
2735 * /proc/self:
2736 */
2737static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2738 int buflen)
2739{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002740 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002741 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002742 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002743 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002744 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002745 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 return vfs_readlink(dentry,buffer,buflen,tmp);
2747}
2748
Al Viro008b1502005-08-20 00:17:39 +01002749static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002751 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002752 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002753 char *name = ERR_PTR(-ENOENT);
2754 if (tgid) {
2755 name = __getname();
2756 if (!name)
2757 name = ERR_PTR(-ENOMEM);
2758 else
2759 sprintf(name, "%d", tgid);
2760 }
2761 nd_set_link(nd, name);
2762 return NULL;
2763}
2764
2765static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2766 void *cookie)
2767{
2768 char *s = nd_get_link(nd);
2769 if (!IS_ERR(s))
2770 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002771}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002773static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 .readlink = proc_self_readlink,
2775 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002776 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777};
2778
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002779/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002780 * proc base
2781 *
2782 * These are the directory entries in the root directory of /proc
2783 * that properly belong to the /proc filesystem, as they describe
2784 * describe something that is process related.
2785 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002786static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002787 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002788 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002789};
2790
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002791static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002792 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002793{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002794 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002795 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002796 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002797 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002798
2799 /* Allocate the inode */
2800 error = ERR_PTR(-ENOMEM);
2801 inode = new_inode(dir->i_sb);
2802 if (!inode)
2803 goto out;
2804
2805 /* Initialize the inode */
2806 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002807 inode->i_ino = get_next_ino();
Eric W. Biederman801199c2006-10-02 02:18:48 -07002808 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002809
2810 /*
2811 * grab the reference to the task.
2812 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002813 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002814 if (!ei->pid)
2815 goto out_iput;
2816
Eric W. Biederman801199c2006-10-02 02:18:48 -07002817 inode->i_mode = p->mode;
2818 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002819 set_nlink(inode, 2);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002820 if (S_ISLNK(inode->i_mode))
2821 inode->i_size = 64;
2822 if (p->iop)
2823 inode->i_op = p->iop;
2824 if (p->fop)
2825 inode->i_fop = p->fop;
2826 ei->op = p->op;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002827 d_add(dentry, inode);
2828 error = NULL;
2829out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002830 return error;
2831out_iput:
2832 iput(inode);
2833 goto out;
2834}
2835
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002836static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2837{
2838 struct dentry *error;
2839 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002840 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002841
2842 error = ERR_PTR(-ENOENT);
2843
2844 if (!task)
2845 goto out_no_task;
2846
2847 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002848 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2849 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002850 if (p->len != dentry->d_name.len)
2851 continue;
2852 if (!memcmp(dentry->d_name.name, p->name, p->len))
2853 break;
2854 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002855 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002856 goto out;
2857
2858 error = proc_base_instantiate(dir, dentry, task, p);
2859
2860out:
2861 put_task_struct(task);
2862out_no_task:
2863 return error;
2864}
2865
Eric Dumazetc5141e62007-05-08 00:26:15 -07002866static int proc_base_fill_cache(struct file *filp, void *dirent,
2867 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002868{
2869 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2870 proc_base_instantiate, task, p);
2871}
2872
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002873#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002874static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002875{
Andrea Righi940389b2008-07-28 00:48:12 +02002876 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002877 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002878 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002879
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002880 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2881 if (result)
2882 return result;
2883
2884 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
2885 result = -EACCES;
2886 goto out_unlock;
2887 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002888
Andrea Righi59954772008-07-27 17:29:15 +02002889 if (whole && lock_task_sighand(task, &flags)) {
2890 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002891
Andrea Righi59954772008-07-27 17:29:15 +02002892 task_io_accounting_add(&acct, &task->signal->ioac);
2893 while_each_thread(task, t)
2894 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002895
Andrea Righi59954772008-07-27 17:29:15 +02002896 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002897 }
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002898 result = sprintf(buffer,
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002899 "rchar: %llu\n"
2900 "wchar: %llu\n"
2901 "syscr: %llu\n"
2902 "syscw: %llu\n"
2903 "read_bytes: %llu\n"
2904 "write_bytes: %llu\n"
2905 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002906 (unsigned long long)acct.rchar,
2907 (unsigned long long)acct.wchar,
2908 (unsigned long long)acct.syscr,
2909 (unsigned long long)acct.syscw,
2910 (unsigned long long)acct.read_bytes,
2911 (unsigned long long)acct.write_bytes,
2912 (unsigned long long)acct.cancelled_write_bytes);
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002913out_unlock:
2914 mutex_unlock(&task->signal->cred_guard_mutex);
2915 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002916}
Andrea Righi297c5d92008-07-25 01:48:49 -07002917
2918static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2919{
2920 return do_io_accounting(task, buffer, 0);
2921}
2922
2923static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2924{
2925 return do_io_accounting(task, buffer, 1);
2926}
2927#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002928
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002929#ifdef CONFIG_USER_NS
2930static int proc_id_map_open(struct inode *inode, struct file *file,
2931 struct seq_operations *seq_ops)
2932{
2933 struct user_namespace *ns = NULL;
2934 struct task_struct *task;
2935 struct seq_file *seq;
2936 int ret = -EINVAL;
2937
2938 task = get_proc_task(inode);
2939 if (task) {
2940 rcu_read_lock();
2941 ns = get_user_ns(task_cred_xxx(task, user_ns));
2942 rcu_read_unlock();
2943 put_task_struct(task);
2944 }
2945 if (!ns)
2946 goto err;
2947
2948 ret = seq_open(file, seq_ops);
2949 if (ret)
2950 goto err_put_ns;
2951
2952 seq = file->private_data;
2953 seq->private = ns;
2954
2955 return 0;
2956err_put_ns:
2957 put_user_ns(ns);
2958err:
2959 return ret;
2960}
2961
2962static int proc_id_map_release(struct inode *inode, struct file *file)
2963{
2964 struct seq_file *seq = file->private_data;
2965 struct user_namespace *ns = seq->private;
2966 put_user_ns(ns);
2967 return seq_release(inode, file);
2968}
2969
2970static int proc_uid_map_open(struct inode *inode, struct file *file)
2971{
2972 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2973}
2974
2975static int proc_gid_map_open(struct inode *inode, struct file *file)
2976{
2977 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2978}
2979
2980static const struct file_operations proc_uid_map_operations = {
2981 .open = proc_uid_map_open,
2982 .write = proc_uid_map_write,
2983 .read = seq_read,
2984 .llseek = seq_lseek,
2985 .release = proc_id_map_release,
2986};
2987
2988static const struct file_operations proc_gid_map_operations = {
2989 .open = proc_gid_map_open,
2990 .write = proc_gid_map_write,
2991 .read = seq_read,
2992 .llseek = seq_lseek,
2993 .release = proc_id_map_release,
2994};
2995#endif /* CONFIG_USER_NS */
2996
Kees Cook47830722008-10-06 03:11:58 +04002997static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2998 struct pid *pid, struct task_struct *task)
2999{
Al Viroa9712bc2011-03-23 15:52:50 -04003000 int err = lock_trace(task);
3001 if (!err) {
3002 seq_printf(m, "%08x\n", task->personality);
3003 unlock_trace(task);
3004 }
3005 return err;
Kees Cook47830722008-10-06 03:11:58 +04003006}
3007
Eric W. Biederman801199c2006-10-02 02:18:48 -07003008/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003009 * Thread groups
3010 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08003011static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003012static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07003013
Eric Dumazetc5141e62007-05-08 00:26:15 -07003014static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003015 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
3016 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08003017#ifdef CONFIG_CHECKPOINT_RESTORE
3018 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
3019#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003020 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003021 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003022#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003023 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003024#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003025 REG("environ", S_IRUSR, proc_environ_operations),
3026 INF("auxv", S_IRUSR, proc_pid_auxv),
3027 ONE("status", S_IRUGO, proc_pid_status),
Al Viroa9712bc2011-03-23 15:52:50 -04003028 ONE("personality", S_IRUGO, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003029 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003030#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003031 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003032#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01003033#ifdef CONFIG_SCHED_AUTOGROUP
3034 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
3035#endif
john stultz4614a696b2009-12-14 18:00:05 -08003036 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003037#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Al Viroa9712bc2011-03-23 15:52:50 -04003038 INF("syscall", S_IRUGO, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003039#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003040 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3041 ONE("stat", S_IRUGO, proc_tgid_stat),
3042 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003043 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003044#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003045 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003046#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003047 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3048 LNK("cwd", proc_cwd_link),
3049 LNK("root", proc_root_link),
3050 LNK("exe", proc_exe_link),
3051 REG("mounts", S_IRUGO, proc_mounts_operations),
3052 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
3053 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003054#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003055 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003056 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05003057 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003058#endif
3059#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003060 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003061#endif
3062#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003063 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003064#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003065#ifdef CONFIG_STACKTRACE
Al Viroa9712bc2011-03-23 15:52:50 -04003066 ONE("stack", S_IRUGO, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003067#endif
3068#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003069 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003070#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003071#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003072 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003073#endif
Paul Menage8793d852007-10-18 23:39:39 -07003074#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003075 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003076#endif
Paul Menagea4243162007-10-18 23:39:35 -07003077#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003078 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003079#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003080 INF("oom_score", S_IRUGO, proc_oom_score),
3081 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003082 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003083#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003084 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3085 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003086#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003087#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003088 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003089#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08003090#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003091 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07003092#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003093#ifdef CONFIG_TASK_IO_ACCOUNTING
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04003094 INF("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003095#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04003096#ifdef CONFIG_HARDWALL
3097 INF("hardwall", S_IRUGO, proc_pid_hardwall),
3098#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003099#ifdef CONFIG_USER_NS
3100 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3101 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
3102#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003103};
3104
3105static int proc_tgid_base_readdir(struct file * filp,
3106 void * dirent, filldir_t filldir)
3107{
3108 return proc_pident_readdir(filp,dirent,filldir,
3109 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
3110}
3111
Arjan van de Ven00977a52007-02-12 00:55:34 -08003112static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003113 .read = generic_read_dir,
3114 .readdir = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003115 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003116};
3117
3118static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003119 return proc_pident_lookup(dir, dentry,
3120 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003121}
3122
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003123static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003124 .lookup = proc_tgid_base_lookup,
3125 .getattr = pid_getattr,
3126 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003127 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003128};
3129
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003130static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131{
Eric W. Biederman48e64842006-06-26 00:25:48 -07003132 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07003133 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07003134 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Eric W. Biederman48e64842006-06-26 00:25:48 -07003136 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003137 name.len = snprintf(buf, sizeof(buf), "%d", pid);
3138 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003139 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08003140 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003141 d_drop(dentry);
3142 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Eric W. Biederman48e64842006-06-26 00:25:48 -07003145 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003146 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
3147 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003148 if (!leader)
3149 goto out;
3150
3151 name.name = "task";
3152 name.len = strlen(name.name);
3153 dir = d_hash_and_lookup(leader, &name);
3154 if (!dir)
3155 goto out_put_leader;
3156
3157 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003158 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003159 dentry = d_hash_and_lookup(dir, &name);
3160 if (dentry) {
3161 shrink_dcache_parent(dentry);
3162 d_drop(dentry);
3163 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07003165
3166 dput(dir);
3167out_put_leader:
3168 dput(leader);
3169out:
3170 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171}
3172
Randy Dunlap0895e912007-10-21 21:00:10 -07003173/**
3174 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3175 * @task: task that should be flushed.
3176 *
3177 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003178 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07003179 * in. This call is supposed to do all of this job.
3180 *
3181 * Looks in the dcache for
3182 * /proc/@pid
3183 * /proc/@tgid/task/@pid
3184 * if either directory is present flushes it and all of it'ts children
3185 * from the dcache.
3186 *
3187 * It is safe and reasonable to cache /proc entries for a task until
3188 * that task exits. After that they just clog up the dcache with
3189 * useless entries, possibly causing useful dcache entries to be
3190 * flushed instead. This routine is proved to flush those useless
3191 * dcache entries at process exit time.
3192 *
3193 * NOTE: This routine is just an optimization so it does not guarantee
3194 * that no dcache entries will exist at process exit time it
3195 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003196 */
3197
3198void proc_flush_task(struct task_struct *task)
3199{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003200 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003201 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003202 struct upid *upid;
3203
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003204 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003205 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003206
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003207 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003208 upid = &pid->numbers[i];
3209 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003210 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003211 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07003212
3213 upid = &pid->numbers[pid->level];
3214 if (upid->nr == 1)
3215 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003216}
3217
Adrian Bunk9711ef92006-12-06 20:38:31 -08003218static struct dentry *proc_pid_instantiate(struct inode *dir,
3219 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003220 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003221{
3222 struct dentry *error = ERR_PTR(-ENOENT);
3223 struct inode *inode;
3224
Eric W. Biederman61a28782006-10-02 02:18:49 -07003225 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003226 if (!inode)
3227 goto out;
3228
3229 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3230 inode->i_op = &proc_tgid_base_inode_operations;
3231 inode->i_fop = &proc_tgid_base_operations;
3232 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003233
Miklos Szeredibfe86842011-10-28 14:13:29 +02003234 set_nlink(inode, 2 + pid_entry_count_dirs(tgid_base_stuff,
3235 ARRAY_SIZE(tgid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003236
Nick Pigginfb045ad2011-01-07 17:49:55 +11003237 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003238
3239 d_add(dentry, inode);
3240 /* Close the race of the process dying before we return the dentry */
3241 if (pid_revalidate(dentry, NULL))
3242 error = NULL;
3243out:
3244 return error;
3245}
3246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3248{
Dan Carpenter73d36462010-05-26 14:43:25 -07003249 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003252 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Eric W. Biederman801199c2006-10-02 02:18:48 -07003254 result = proc_base_lookup(dir, dentry);
3255 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
3256 goto out;
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 tgid = name_to_int(dentry);
3259 if (tgid == ~0U)
3260 goto out;
3261
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003262 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003263 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003264 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (task)
3266 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003267 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (!task)
3269 goto out;
3270
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003271 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003272 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273out:
Eric W. Biedermancd6a3ce92006-06-26 00:25:49 -07003274 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003278 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003279 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003281struct tgid_iter {
3282 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003283 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003284};
3285static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3286{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003287 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003289 if (iter.task)
3290 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003291 rcu_read_lock();
3292retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003293 iter.task = NULL;
3294 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003295 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003296 iter.tgid = pid_nr_ns(pid, ns);
3297 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003298 /* What we to know is if the pid we have find is the
3299 * pid of a thread_group_leader. Testing for task
3300 * being a thread_group_leader is the obvious thing
3301 * todo but there is a window when it fails, due to
3302 * the pid transfer logic in de_thread.
3303 *
3304 * So we perform the straight forward test of seeing
3305 * if the pid we have found is the pid of a thread
3306 * group leader, and don't worry if the task we have
3307 * found doesn't happen to be a thread group leader.
3308 * As we don't care in the case of readdir.
3309 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003310 if (!iter.task || !has_group_leader_pid(iter.task)) {
3311 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003312 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003313 }
3314 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003316 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003317 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318}
3319
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003320#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Eric W. Biederman61a28782006-10-02 02:18:49 -07003322static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003323 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07003324{
3325 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003326 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003327 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003328 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003329}
3330
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003331static int fake_filldir(void *buf, const char *name, int namelen,
3332 loff_t offset, u64 ino, unsigned d_type)
3333{
3334 return 0;
3335}
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337/* for the /proc/ directory itself, after non-process stuff has been done */
3338int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
3339{
Linus Torvaldsd8bdc592011-04-18 10:36:54 -07003340 unsigned int nr;
3341 struct task_struct *reaper;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003342 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003343 struct pid_namespace *ns;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003344 filldir_t __filldir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
Linus Torvaldsd8bdc592011-04-18 10:36:54 -07003346 if (filp->f_pos >= PID_MAX_LIMIT + TGID_OFFSET)
3347 goto out_no_task;
3348 nr = filp->f_pos - FIRST_PROCESS_ENTRY;
3349
3350 reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003351 if (!reaper)
3352 goto out_no_task;
3353
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003354 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07003355 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07003356 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07003357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 }
3359
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003360 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003361 iter.task = NULL;
3362 iter.tgid = filp->f_pos - TGID_OFFSET;
3363 for (iter = next_tgid(ns, iter);
3364 iter.task;
3365 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003366 if (has_pid_permissions(ns, iter.task, 2))
3367 __filldir = filldir;
3368 else
3369 __filldir = fake_filldir;
3370
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003371 filp->f_pos = iter.tgid + TGID_OFFSET;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003372 if (proc_pid_fill_cache(filp, dirent, __filldir, iter) < 0) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003373 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003377 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
3378out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07003379 put_task_struct(reaper);
3380out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 return 0;
3382}
3383
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003384/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003385 * Tasks
3386 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003387static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003388 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003389 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003390 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003391 REG("environ", S_IRUSR, proc_environ_operations),
3392 INF("auxv", S_IRUSR, proc_pid_auxv),
3393 ONE("status", S_IRUGO, proc_pid_status),
Al Viroa9712bc2011-03-23 15:52:50 -04003394 ONE("personality", S_IRUGO, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003395 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003396#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003397 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003398#endif
john stultz4614a696b2009-12-14 18:00:05 -08003399 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003400#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Al Viroa9712bc2011-03-23 15:52:50 -04003401 INF("syscall", S_IRUGO, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003402#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003403 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3404 ONE("stat", S_IRUGO, proc_tid_stat),
3405 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003406 REG("maps", S_IRUGO, proc_tid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003407#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003408 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003409#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003410 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3411 LNK("cwd", proc_cwd_link),
3412 LNK("root", proc_root_link),
3413 LNK("exe", proc_exe_link),
3414 REG("mounts", S_IRUGO, proc_mounts_operations),
3415 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003416#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003417 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003418 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05003419 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003420#endif
3421#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003422 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003423#endif
3424#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003425 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003426#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003427#ifdef CONFIG_STACKTRACE
Al Viroa9712bc2011-03-23 15:52:50 -04003428 ONE("stack", S_IRUGO, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003429#endif
3430#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003431 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003432#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003433#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003434 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003435#endif
Paul Menage8793d852007-10-18 23:39:39 -07003436#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003437 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003438#endif
Paul Menagea4243162007-10-18 23:39:35 -07003439#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003440 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003441#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003442 INF("oom_score", S_IRUGO, proc_oom_score),
3443 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003444 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003445#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003446 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003447 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003448#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003449#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003450 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003451#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003452#ifdef CONFIG_TASK_IO_ACCOUNTING
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04003453 INF("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003454#endif
Chris Metcalff133ecc2011-05-26 12:40:09 -04003455#ifdef CONFIG_HARDWALL
3456 INF("hardwall", S_IRUGO, proc_pid_hardwall),
3457#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003458#ifdef CONFIG_USER_NS
3459 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3460 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
3461#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003462};
3463
3464static int proc_tid_base_readdir(struct file * filp,
3465 void * dirent, filldir_t filldir)
3466{
3467 return proc_pident_readdir(filp,dirent,filldir,
3468 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3469}
3470
3471static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003472 return proc_pident_lookup(dir, dentry,
3473 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003474}
3475
Arjan van de Ven00977a52007-02-12 00:55:34 -08003476static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003477 .read = generic_read_dir,
3478 .readdir = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003479 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003480};
3481
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003482static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003483 .lookup = proc_tid_base_lookup,
3484 .getattr = pid_getattr,
3485 .setattr = proc_setattr,
3486};
3487
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003488static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003489 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003490{
3491 struct dentry *error = ERR_PTR(-ENOENT);
3492 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003493 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003494
3495 if (!inode)
3496 goto out;
3497 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3498 inode->i_op = &proc_tid_base_inode_operations;
3499 inode->i_fop = &proc_tid_base_operations;
3500 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003501
Miklos Szeredibfe86842011-10-28 14:13:29 +02003502 set_nlink(inode, 2 + pid_entry_count_dirs(tid_base_stuff,
3503 ARRAY_SIZE(tid_base_stuff)));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003504
Nick Pigginfb045ad2011-01-07 17:49:55 +11003505 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003506
3507 d_add(dentry, inode);
3508 /* Close the race of the process dying before we return the dentry */
3509 if (pid_revalidate(dentry, NULL))
3510 error = NULL;
3511out:
3512 return error;
3513}
3514
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003515static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3516{
3517 struct dentry *result = ERR_PTR(-ENOENT);
3518 struct task_struct *task;
3519 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003520 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003521 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003522
3523 if (!leader)
3524 goto out_no_task;
3525
3526 tid = name_to_int(dentry);
3527 if (tid == ~0U)
3528 goto out;
3529
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003530 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003531 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003532 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003533 if (task)
3534 get_task_struct(task);
3535 rcu_read_unlock();
3536 if (!task)
3537 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003538 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003539 goto out_drop_task;
3540
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003541 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003542out_drop_task:
3543 put_task_struct(task);
3544out:
3545 put_task_struct(leader);
3546out_no_task:
3547 return result;
3548}
3549
3550/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003551 * Find the first tid of a thread group to return to user space.
3552 *
3553 * Usually this is just the thread group leader, but if the users
3554 * buffer was too small or there was a seek into the middle of the
3555 * directory we have more work todo.
3556 *
3557 * In the case of a short read we start with find_task_by_pid.
3558 *
3559 * In the case of a seek we start with the leader and walk nr
3560 * threads past it.
3561 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003562static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003563 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003564{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003565 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003566
Eric W. Biedermancc288732006-06-26 00:26:01 -07003567 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003568 /* Attempt to start with the pid of a thread */
3569 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003570 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003571 if (pos && (pos->group_leader == leader))
3572 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003573 }
3574
3575 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003576 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003577 if (nr && nr >= get_nr_threads(leader))
3578 goto out;
3579
3580 /* If we haven't found our starting place yet start
3581 * with the leader and walk nr threads forward.
3582 */
3583 for (pos = leader; nr > 0; --nr) {
3584 pos = next_thread(pos);
3585 if (pos == leader) {
3586 pos = NULL;
3587 goto out;
3588 }
3589 }
3590found:
3591 get_task_struct(pos);
3592out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003593 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003594 return pos;
3595}
3596
3597/*
3598 * Find the next thread in the thread list.
3599 * Return NULL if there is an error or no next thread.
3600 *
3601 * The reference to the input task_struct is released.
3602 */
3603static struct task_struct *next_tid(struct task_struct *start)
3604{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003605 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003606 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003607 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003608 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003609 if (thread_group_leader(pos))
3610 pos = NULL;
3611 else
3612 get_task_struct(pos);
3613 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003614 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003615 put_task_struct(start);
3616 return pos;
3617}
3618
Eric W. Biederman61a28782006-10-02 02:18:49 -07003619static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3620 struct task_struct *task, int tid)
3621{
3622 char name[PROC_NUMBUF];
3623 int len = snprintf(name, sizeof(name), "%d", tid);
3624 return proc_fill_cache(filp, dirent, filldir, name, len,
3625 proc_task_instantiate, task, NULL);
3626}
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628/* for the /proc/TGID/task/ directories */
3629static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3630{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003631 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003633 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003634 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 int retval = -ENOENT;
3636 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003637 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003638 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003640 task = get_proc_task(inode);
3641 if (!task)
3642 goto out_no_task;
3643 rcu_read_lock();
3644 if (pid_alive(task)) {
3645 leader = task->group_leader;
3646 get_task_struct(leader);
3647 }
3648 rcu_read_unlock();
3649 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003650 if (!leader)
3651 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 retval = 0;
3653
Linus Torvaldsee568b22009-03-17 10:02:35 -07003654 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 case 0:
3656 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003657 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003659 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 /* fall through */
3661 case 1:
3662 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003663 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003665 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 /* fall through */
3667 }
3668
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003669 /* f_version caches the tgid value that the last readdir call couldn't
3670 * return. lseek aka telldir automagically resets f_version to 0.
3671 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003672 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003673 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003674 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003675 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003676 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003677 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003678 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003679 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003680 /* returning this tgid failed, save it as the first
3681 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003682 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003683 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 }
3687out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003688 put_task_struct(leader);
3689out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 return retval;
3691}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003692
3693static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3694{
3695 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003696 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003697 generic_fillattr(inode, stat);
3698
Eric W. Biederman99f89552006-06-26 00:25:55 -07003699 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003700 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003701 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003702 }
3703
3704 return 0;
3705}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003706
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003707static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003708 .lookup = proc_task_lookup,
3709 .getattr = proc_task_getattr,
3710 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003711 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003712};
3713
Arjan van de Ven00977a52007-02-12 00:55:34 -08003714static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003715 .read = generic_read_dir,
3716 .readdir = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003717 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003718};