blob: 4ede550517a66b42b0c646d227d32456d4245764 [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>
Al Viro5ad4e532009-03-29 19:50:06 -040084#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090085#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "internal.h"
87
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070088/* NOTE:
89 * Implementing inode permission operations in /proc is almost
90 * certainly an error. Permission checks need to happen during
91 * each system call not at open time. The reason is that most of
92 * what we wish to check for permissions in /proc varies at runtime.
93 *
94 * The classic example of a problem is opening file descriptors
95 * in /proc for a task before it execs a suid executable.
96 */
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700100 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800102 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800103 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700104 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Eric W. Biederman61a28782006-10-02 02:18:49 -0700107#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700109 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700110 .mode = MODE, \
111 .iop = IOP, \
112 .fop = FOP, \
113 .op = OP, \
114}
115
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300116#define DIR(NAME, MODE, iops, fops) \
117 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
118#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700119 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700120 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300121 { .proc_get_link = get_link } )
122#define REG(NAME, MODE, fops) \
123 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
124#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700125 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300127 { .proc_read = read } )
128#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800129 NOD(NAME, (S_IFREG|(MODE)), \
130 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300131 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Vegard Nossumaed54172008-06-05 22:46:53 -0700133/*
134 * Count the number of hardlinks for the pid_entry table, excluding the .
135 * and .. links.
136 */
137static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
138 unsigned int n)
139{
140 unsigned int i;
141 unsigned int count;
142
143 count = 0;
144 for (i = 0; i < n; ++i) {
145 if (S_ISDIR(entries[i].mode))
146 ++count;
147 }
148
149 return count;
150}
151
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200152static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000154 int result = -ENOENT;
155
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700156 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200157 if (task->fs) {
158 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000159 result = 0;
160 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700161 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000162 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700163}
164
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800165static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700167 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700168 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700169
170 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200171 task_lock(task);
172 if (task->fs) {
173 get_fs_pwd(task->fs, path);
174 result = 0;
175 }
176 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700177 put_task_struct(task);
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return result;
180}
181
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800182static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700186
187 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200188 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700189 put_task_struct(task);
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return result;
192}
193
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400194static struct mm_struct *__check_mem_permission(struct task_struct *task)
Roland McGrath638fa2022008-04-29 01:01:38 -0700195{
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400196 struct mm_struct *mm;
197
198 mm = get_task_mm(task);
199 if (!mm)
200 return ERR_PTR(-EINVAL);
201
Roland McGrath638fa2022008-04-29 01:01:38 -0700202 /*
203 * A task can always look at itself, in case it chooses
204 * to use system calls instead of load instructions.
205 */
206 if (task == current)
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400207 return mm;
Roland McGrath638fa2022008-04-29 01:01:38 -0700208
209 /*
210 * If current is actively ptrace'ing, and would also be
211 * permitted to freshly attach with ptrace now, permit it.
212 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700213 if (task_is_stopped_or_traced(task)) {
214 int match;
215 rcu_read_lock();
216 match = (tracehook_tracer_task(task) == current);
217 rcu_read_unlock();
218 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400219 return mm;
Roland McGrath0d094ef2008-07-25 19:45:49 -0700220 }
Roland McGrath638fa2022008-04-29 01:01:38 -0700221
222 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300223 * No one else is allowed.
Roland McGrath638fa2022008-04-29 01:01:38 -0700224 */
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400225 mmput(mm);
226 return ERR_PTR(-EPERM);
Roland McGrath638fa2022008-04-29 01:01:38 -0700227}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Stephen Wilson18f661b2011-03-13 15:49:22 -0400229/*
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400230 * If current may access user memory in @task return a reference to the
231 * corresponding mm, otherwise ERR_PTR.
Stephen Wilson18f661b2011-03-13 15:49:22 -0400232 */
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400233static struct mm_struct *check_mem_permission(struct task_struct *task)
Stephen Wilson18f661b2011-03-13 15:49:22 -0400234{
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400235 struct mm_struct *mm;
Stephen Wilson18f661b2011-03-13 15:49:22 -0400236 int err;
237
238 /*
239 * Avoid racing if task exec's as we might get a new mm but validate
240 * against old credentials.
241 */
242 err = mutex_lock_killable(&task->signal->cred_guard_mutex);
243 if (err)
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400244 return ERR_PTR(err);
Stephen Wilson18f661b2011-03-13 15:49:22 -0400245
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400246 mm = __check_mem_permission(task);
Stephen Wilson18f661b2011-03-13 15:49:22 -0400247 mutex_unlock(&task->signal->cred_guard_mutex);
248
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400249 return mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Al Viro831830b2008-01-02 14:09:57 +0000252struct mm_struct *mm_for_maps(struct task_struct *task)
253{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200254 struct mm_struct *mm;
Al Viroec6fd8a2011-02-15 22:22:54 -0500255 int err;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200256
Al Viroec6fd8a2011-02-15 22:22:54 -0500257 err = mutex_lock_killable(&task->signal->cred_guard_mutex);
258 if (err)
259 return ERR_PTR(err);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200260
261 mm = get_task_mm(task);
262 if (mm && mm != current->mm &&
263 !ptrace_may_access(task, PTRACE_MODE_READ)) {
264 mmput(mm);
Al Viroec6fd8a2011-02-15 22:22:54 -0500265 mm = ERR_PTR(-EACCES);
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200266 }
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700267 mutex_unlock(&task->signal->cred_guard_mutex);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200268
Al Viro831830b2008-01-02 14:09:57 +0000269 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static int proc_pid_cmdline(struct task_struct *task, char * buffer)
273{
274 int res = 0;
275 unsigned int len;
276 struct mm_struct *mm = get_task_mm(task);
277 if (!mm)
278 goto out;
279 if (!mm->arg_end)
280 goto out_mm; /* Shh! No looking before we're done */
281
282 len = mm->arg_end - mm->arg_start;
283
284 if (len > PAGE_SIZE)
285 len = PAGE_SIZE;
286
287 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
288
289 // If the nul at the end of args has been overwritten, then
290 // assume application is using setproctitle(3).
291 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
292 len = strnlen(buffer, res);
293 if (len < res) {
294 res = len;
295 } else {
296 len = mm->env_end - mm->env_start;
297 if (len > PAGE_SIZE - res)
298 len = PAGE_SIZE - res;
299 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
300 res = strnlen(buffer, res);
301 }
302 }
303out_mm:
304 mmput(mm);
305out:
306 return res;
307}
308
309static int proc_pid_auxv(struct task_struct *task, char *buffer)
310{
Al Viro2fadaef2011-02-15 22:52:11 -0500311 struct mm_struct *mm = mm_for_maps(task);
312 int res = PTR_ERR(mm);
313 if (mm && !IS_ERR(mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300315 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300317 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 res = nwords * sizeof(mm->saved_auxv[0]);
319 if (res > PAGE_SIZE)
320 res = PAGE_SIZE;
321 memcpy(buffer, mm->saved_auxv, res);
322 mmput(mm);
323 }
324 return res;
325}
326
327
328#ifdef CONFIG_KALLSYMS
329/*
330 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
331 * Returns the resolved symbol. If that fails, simply return the address.
332 */
333static int proc_pid_wchan(struct task_struct *task, char *buffer)
334{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700335 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700336 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 wchan = get_wchan(task);
339
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700340 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600341 if (!ptrace_may_access(task, PTRACE_MODE_READ))
342 return 0;
343 else
344 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700345 else
346 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348#endif /* CONFIG_KALLSYMS */
349
Al Viroa9712bc2011-03-23 15:52:50 -0400350static int lock_trace(struct task_struct *task)
351{
352 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
353 if (err)
354 return err;
355 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH)) {
356 mutex_unlock(&task->signal->cred_guard_mutex);
357 return -EPERM;
358 }
359 return 0;
360}
361
362static void unlock_trace(struct task_struct *task)
363{
364 mutex_unlock(&task->signal->cred_guard_mutex);
365}
366
Ken Chen2ec220e2008-11-10 11:26:08 +0300367#ifdef CONFIG_STACKTRACE
368
369#define MAX_STACK_TRACE_DEPTH 64
370
371static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
372 struct pid *pid, struct task_struct *task)
373{
374 struct stack_trace trace;
375 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400376 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300377 int i;
378
379 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
380 if (!entries)
381 return -ENOMEM;
382
383 trace.nr_entries = 0;
384 trace.max_entries = MAX_STACK_TRACE_DEPTH;
385 trace.entries = entries;
386 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300387
Al Viroa9712bc2011-03-23 15:52:50 -0400388 err = lock_trace(task);
389 if (!err) {
390 save_stack_trace_tsk(task, &trace);
391
392 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvaldsb81a6182011-03-23 20:51:42 -0700393 seq_printf(m, "[<%pK>] %pS\n",
Al Viroa9712bc2011-03-23 15:52:50 -0400394 (void *)entries[i], (void *)entries[i]);
395 }
396 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300397 }
398 kfree(entries);
399
Al Viroa9712bc2011-03-23 15:52:50 -0400400 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300401}
402#endif
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#ifdef CONFIG_SCHEDSTATS
405/*
406 * Provides /proc/PID/schedstat
407 */
408static int proc_pid_schedstat(struct task_struct *task, char *buffer)
409{
Balbir Singh172ba842007-07-09 18:52:00 +0200410 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100411 (unsigned long long)task->se.sum_exec_runtime,
412 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200413 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415#endif
416
Arjan van de Ven97455122008-01-25 21:08:34 +0100417#ifdef CONFIG_LATENCYTOP
418static int lstats_show_proc(struct seq_file *m, void *v)
419{
420 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800421 struct inode *inode = m->private;
422 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100423
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800424 if (!task)
425 return -ESRCH;
426 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100427 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800428 struct latency_record *lr = &task->latency_record[i];
429 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100430 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800431 seq_printf(m, "%i %li %li",
432 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100433 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800434 unsigned long bt = lr->backtrace[q];
435 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100436 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800437 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100438 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800439 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100440 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800441 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100442 }
443
444 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800445 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100446 return 0;
447}
448
449static int lstats_open(struct inode *inode, struct file *file)
450{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800451 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800452}
453
Arjan van de Ven97455122008-01-25 21:08:34 +0100454static ssize_t lstats_write(struct file *file, const char __user *buf,
455 size_t count, loff_t *offs)
456{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800457 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100458
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800459 if (!task)
460 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100461 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800462 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100463
464 return count;
465}
466
467static const struct file_operations proc_lstats_operations = {
468 .open = lstats_open,
469 .read = seq_read,
470 .write = lstats_write,
471 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800472 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100473};
474
475#endif
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477static int proc_oom_score(struct task_struct *task, char *buffer)
478{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200479 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700481 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200482 if (pid_alive(task))
David Rientjesa63d83f2010-08-09 17:19:46 -0700483 points = oom_badness(task, NULL, NULL,
484 totalram_pages + total_swap_pages);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700485 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return sprintf(buffer, "%lu\n", points);
487}
488
Neil Hormand85f50d2007-10-18 23:40:37 -0700489struct limit_names {
490 char *name;
491 char *unit;
492};
493
494static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700495 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700496 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
497 [RLIMIT_DATA] = {"Max data size", "bytes"},
498 [RLIMIT_STACK] = {"Max stack size", "bytes"},
499 [RLIMIT_CORE] = {"Max core file size", "bytes"},
500 [RLIMIT_RSS] = {"Max resident set", "bytes"},
501 [RLIMIT_NPROC] = {"Max processes", "processes"},
502 [RLIMIT_NOFILE] = {"Max open files", "files"},
503 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
504 [RLIMIT_AS] = {"Max address space", "bytes"},
505 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
506 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
507 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
508 [RLIMIT_NICE] = {"Max nice priority", NULL},
509 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800510 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700511};
512
513/* Display limits for a process */
514static int proc_pid_limits(struct task_struct *task, char *buffer)
515{
516 unsigned int i;
517 int count = 0;
518 unsigned long flags;
519 char *bufptr = buffer;
520
521 struct rlimit rlim[RLIM_NLIMITS];
522
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400523 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700524 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700525 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
526 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700527
528 /*
529 * print the file header
530 */
531 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
532 "Limit", "Soft Limit", "Hard Limit", "Units");
533
534 for (i = 0; i < RLIM_NLIMITS; i++) {
535 if (rlim[i].rlim_cur == RLIM_INFINITY)
536 count += sprintf(&bufptr[count], "%-25s %-20s ",
537 lnames[i].name, "unlimited");
538 else
539 count += sprintf(&bufptr[count], "%-25s %-20lu ",
540 lnames[i].name, rlim[i].rlim_cur);
541
542 if (rlim[i].rlim_max == RLIM_INFINITY)
543 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
544 else
545 count += sprintf(&bufptr[count], "%-20lu ",
546 rlim[i].rlim_max);
547
548 if (lnames[i].unit)
549 count += sprintf(&bufptr[count], "%-10s\n",
550 lnames[i].unit);
551 else
552 count += sprintf(&bufptr[count], "\n");
553 }
554
555 return count;
556}
557
Roland McGrathebcb6732008-07-25 19:46:00 -0700558#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
559static int proc_pid_syscall(struct task_struct *task, char *buffer)
560{
561 long nr;
562 unsigned long args[6], sp, pc;
Al Viroa9712bc2011-03-23 15:52:50 -0400563 int res = lock_trace(task);
564 if (res)
565 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700566
567 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Al Viroa9712bc2011-03-23 15:52:50 -0400568 res = sprintf(buffer, "running\n");
569 else if (nr < 0)
570 res = sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
571 else
572 res = sprintf(buffer,
Roland McGrathebcb6732008-07-25 19:46:00 -0700573 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
574 nr,
575 args[0], args[1], args[2], args[3], args[4], args[5],
576 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400577 unlock_trace(task);
578 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700579}
580#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582/************************************************************************/
583/* Here the fs part begins */
584/************************************************************************/
585
586/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700587static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700589 struct task_struct *task;
590 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700591 /* Allow access to a task's file descriptors if it is us or we
592 * may use ptrace attach to the process and find out that
593 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700594 */
595 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700596 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400597 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700598 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700599 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700600 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800603int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700604{
605 int error;
606 struct inode *inode = dentry->d_inode;
607
608 if (attr->ia_valid & ATTR_MODE)
609 return -EPERM;
610
611 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200612 if (error)
613 return error;
614
615 if ((attr->ia_valid & ATTR_SIZE) &&
616 attr->ia_size != i_size_read(inode)) {
617 error = vmtruncate(inode, attr->ia_size);
618 if (error)
619 return error;
620 }
621
622 setattr_copy(inode, attr);
623 mark_inode_dirty(inode);
624 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700625}
626
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800627static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700628 .setattr = proc_setattr,
629};
630
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100631static int mounts_open_common(struct inode *inode, struct file *file,
632 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700634 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700635 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800636 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100637 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500638 struct proc_mounts *p;
639 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Eric W. Biederman99f89552006-06-26 00:25:55 -0700641 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700642 rcu_read_lock();
643 nsp = task_nsproxy(task);
644 if (nsp) {
645 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800646 if (ns)
647 get_mnt_ns(ns);
648 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700649 rcu_read_unlock();
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200650 if (ns && get_task_root(task, &root) == 0)
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000651 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700652 put_task_struct(task);
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100655 if (!ns)
656 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000657 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100658 goto err_put_ns;
659
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100660 ret = -ENOMEM;
661 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
662 if (!p)
663 goto err_put_path;
664
665 file->private_data = &p->m;
666 ret = seq_open(file, op);
667 if (ret)
668 goto err_free;
669
670 p->m.private = p;
671 p->ns = ns;
672 p->root = root;
673 p->event = ns->event;
674
675 return 0;
676
677 err_free:
678 kfree(p);
679 err_put_path:
680 path_put(&root);
681 err_put_ns:
682 put_mnt_ns(ns);
683 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return ret;
685}
686
687static int mounts_release(struct inode *inode, struct file *file)
688{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100689 struct proc_mounts *p = file->private_data;
690 path_put(&p->root);
691 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return seq_release(inode, file);
693}
694
Al Viro5addc5d2005-11-07 17:15:49 -0500695static unsigned mounts_poll(struct file *file, poll_table *wait)
696{
697 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900698 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500699
Al Viro9f5596a2010-02-05 00:40:25 -0500700 poll_wait(file, &p->ns->poll, wait);
701 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900702 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500703
704 return res;
705}
706
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100707static int mounts_open(struct inode *inode, struct file *file)
708{
709 return mounts_open_common(inode, file, &mounts_op);
710}
711
Arjan van de Ven00977a52007-02-12 00:55:34 -0800712static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 .open = mounts_open,
714 .read = seq_read,
715 .llseek = seq_lseek,
716 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500717 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718};
719
Ram Pai2d4d4862008-03-27 13:06:25 +0100720static int mountinfo_open(struct inode *inode, struct file *file)
721{
722 return mounts_open_common(inode, file, &mountinfo_op);
723}
724
725static const struct file_operations proc_mountinfo_operations = {
726 .open = mountinfo_open,
727 .read = seq_read,
728 .llseek = seq_lseek,
729 .release = mounts_release,
730 .poll = mounts_poll,
731};
732
Chuck Leverb4629fe2006-03-20 13:44:12 -0500733static int mountstats_open(struct inode *inode, struct file *file)
734{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100735 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500736}
737
Arjan van de Ven00977a52007-02-12 00:55:34 -0800738static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500739 .open = mountstats_open,
740 .read = seq_read,
741 .llseek = seq_lseek,
742 .release = mounts_release,
743};
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
746
747static ssize_t proc_info_read(struct file * file, char __user * buf,
748 size_t count, loff_t *ppos)
749{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800750 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long page;
752 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700753 struct task_struct *task = get_proc_task(inode);
754
755 length = -ESRCH;
756 if (!task)
757 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 if (count > PROC_BLOCK_SIZE)
760 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700761
762 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700763 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700764 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 length = PROC_I(inode)->op.proc_read(task, (char*)page);
767
768 if (length >= 0)
769 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
770 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700771out:
772 put_task_struct(task);
773out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return length;
775}
776
Arjan van de Ven00977a52007-02-12 00:55:34 -0800777static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100779 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780};
781
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800782static int proc_single_show(struct seq_file *m, void *v)
783{
784 struct inode *inode = m->private;
785 struct pid_namespace *ns;
786 struct pid *pid;
787 struct task_struct *task;
788 int ret;
789
790 ns = inode->i_sb->s_fs_info;
791 pid = proc_pid(inode);
792 task = get_pid_task(pid, PIDTYPE_PID);
793 if (!task)
794 return -ESRCH;
795
796 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
797
798 put_task_struct(task);
799 return ret;
800}
801
802static int proc_single_open(struct inode *inode, struct file *filp)
803{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800804 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800805}
806
807static const struct file_operations proc_single_file_operations = {
808 .open = proc_single_open,
809 .read = seq_read,
810 .llseek = seq_lseek,
811 .release = single_release,
812};
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814static int mem_open(struct inode* inode, struct file* file)
815{
816 file->private_data = (void*)((long)current->self_exec_id);
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700817 /* OK to pass negative loff_t, we can catch out-of-range */
818 file->f_mode |= FMODE_UNSIGNED_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return 0;
820}
821
822static ssize_t mem_read(struct file * file, char __user * buf,
823 size_t count, loff_t *ppos)
824{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800825 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 char *page;
827 unsigned long src = *ppos;
828 int ret = -ESRCH;
829 struct mm_struct *mm;
830
Eric W. Biederman99f89552006-06-26 00:25:55 -0700831 if (!task)
832 goto out_no_task;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700835 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (!page)
837 goto out;
838
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400839 mm = check_mem_permission(task);
840 ret = PTR_ERR(mm);
841 if (IS_ERR(mm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 goto out_free;
843
844 ret = -EIO;
845
846 if (file->private_data != (void*)((long)current->self_exec_id))
847 goto out_put;
848
849 ret = 0;
850
851 while (count > 0) {
852 int this_len, retval;
853
854 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400855 retval = access_remote_vm(mm, src, page, this_len, 0);
856 if (!retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!ret)
858 ret = -EIO;
859 break;
860 }
861
862 if (copy_to_user(buf, page, retval)) {
863 ret = -EFAULT;
864 break;
865 }
866
867 ret += retval;
868 src += retval;
869 buf += retval;
870 count -= retval;
871 }
872 *ppos = src;
873
874out_put:
875 mmput(mm);
876out_free:
877 free_page((unsigned long) page);
878out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700879 put_task_struct(task);
880out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return ret;
882}
883
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800884static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 size_t count, loff_t *ppos)
886{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700887 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800889 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 unsigned long dst = *ppos;
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400891 struct mm_struct *mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Eric W. Biederman99f89552006-06-26 00:25:55 -0700893 copied = -ESRCH;
894 if (!task)
895 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Eric W. Biederman99f89552006-06-26 00:25:55 -0700897 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700898 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (!page)
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700900 goto out_task;
901
902 mm = check_mem_permission(task);
903 copied = PTR_ERR(mm);
904 if (IS_ERR(mm))
905 goto out_free;
906
907 copied = -EIO;
908 if (file->private_data != (void *)((long)current->self_exec_id))
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400909 goto out_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700911 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 while (count > 0) {
913 int this_len, retval;
914
915 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
916 if (copy_from_user(page, buf, this_len)) {
917 copied = -EFAULT;
918 break;
919 }
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400920 retval = access_remote_vm(mm, dst, page, this_len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (!retval) {
922 if (!copied)
923 copied = -EIO;
924 break;
925 }
926 copied += retval;
927 buf += retval;
928 dst += retval;
929 count -= retval;
930 }
931 *ppos = dst;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700932
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400933out_mm:
934 mmput(mm);
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700935out_free:
936 free_page((unsigned long) page);
Stephen Wilson8b0db9d2011-03-13 15:49:23 -0400937out_task:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700938 put_task_struct(task);
939out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return copied;
941}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Matt Mackall85863e42008-02-04 22:29:04 -0800943loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 switch (orig) {
946 case 0:
947 file->f_pos = offset;
948 break;
949 case 1:
950 file->f_pos += offset;
951 break;
952 default:
953 return -EINVAL;
954 }
955 force_successful_syscall_return();
956 return file->f_pos;
957}
958
Arjan van de Ven00977a52007-02-12 00:55:34 -0800959static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 .llseek = mem_lseek,
961 .read = mem_read,
962 .write = mem_write,
963 .open = mem_open,
964};
965
James Pearson315e28c2007-10-16 23:30:17 -0700966static ssize_t environ_read(struct file *file, char __user *buf,
967 size_t count, loff_t *ppos)
968{
969 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
970 char *page;
971 unsigned long src = *ppos;
972 int ret = -ESRCH;
973 struct mm_struct *mm;
974
975 if (!task)
976 goto out_no_task;
977
James Pearson315e28c2007-10-16 23:30:17 -0700978 ret = -ENOMEM;
979 page = (char *)__get_free_page(GFP_TEMPORARY);
980 if (!page)
981 goto out;
982
James Pearson315e28c2007-10-16 23:30:17 -0700983
Al Virod6f64b82011-02-15 22:26:01 -0500984 mm = mm_for_maps(task);
985 ret = PTR_ERR(mm);
986 if (!mm || IS_ERR(mm))
James Pearson315e28c2007-10-16 23:30:17 -0700987 goto out_free;
988
Al Virod6f64b82011-02-15 22:26:01 -0500989 ret = 0;
James Pearson315e28c2007-10-16 23:30:17 -0700990 while (count > 0) {
991 int this_len, retval, max_len;
992
993 this_len = mm->env_end - (mm->env_start + src);
994
995 if (this_len <= 0)
996 break;
997
998 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
999 this_len = (this_len > max_len) ? max_len : this_len;
1000
1001 retval = access_process_vm(task, (mm->env_start + src),
1002 page, this_len, 0);
1003
1004 if (retval <= 0) {
1005 ret = retval;
1006 break;
1007 }
1008
1009 if (copy_to_user(buf, page, retval)) {
1010 ret = -EFAULT;
1011 break;
1012 }
1013
1014 ret += retval;
1015 src += retval;
1016 buf += retval;
1017 count -= retval;
1018 }
1019 *ppos = src;
1020
1021 mmput(mm);
1022out_free:
1023 free_page((unsigned long) page);
1024out:
1025 put_task_struct(task);
1026out_no_task:
1027 return ret;
1028}
1029
1030static const struct file_operations proc_environ_operations = {
1031 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001032 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -07001033};
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035static ssize_t oom_adjust_read(struct file *file, char __user *buf,
1036 size_t count, loff_t *ppos)
1037{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001038 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001039 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001041 int oom_adjust = OOM_DISABLE;
1042 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Eric W. Biederman99f89552006-06-26 00:25:55 -07001044 if (!task)
1045 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001046
1047 if (lock_task_sighand(task, &flags)) {
1048 oom_adjust = task->signal->oom_adj;
1049 unlock_task_sighand(task, &flags);
1050 }
1051
Eric W. Biederman99f89552006-06-26 00:25:55 -07001052 put_task_struct(task);
1053
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001054 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001055
1056 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1060 size_t count, loff_t *ppos)
1061{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001062 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001063 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001064 int oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001065 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001068 memset(buffer, 0, sizeof(buffer));
1069 if (count > sizeof(buffer) - 1)
1070 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001071 if (copy_from_user(buffer, buf, count)) {
1072 err = -EFAULT;
1073 goto out;
1074 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001075
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001076 err = kstrtoint(strstrip(buffer), 0, &oom_adjust);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001077 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001078 goto out;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001079 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
David Rientjes723548b2010-10-26 14:21:25 -07001080 oom_adjust != OOM_DISABLE) {
1081 err = -EINVAL;
1082 goto out;
1083 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001084
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001085 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001086 if (!task) {
1087 err = -ESRCH;
1088 goto out;
1089 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001090
Ying Han3d5992d2010-10-26 14:21:23 -07001091 task_lock(task);
1092 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001093 err = -EINVAL;
1094 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001095 }
1096
David Rientjesd19d5472010-10-26 14:21:26 -07001097 if (!lock_task_sighand(task, &flags)) {
1098 err = -ESRCH;
1099 goto err_task_lock;
1100 }
1101
1102 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1103 err = -EACCES;
1104 goto err_sighand;
1105 }
1106
Ying Han3d5992d2010-10-26 14:21:23 -07001107 if (oom_adjust != task->signal->oom_adj) {
1108 if (oom_adjust == OOM_DISABLE)
1109 atomic_inc(&task->mm->oom_disable_count);
1110 if (task->signal->oom_adj == OOM_DISABLE)
1111 atomic_dec(&task->mm->oom_disable_count);
1112 }
1113
David Rientjes51b1bd22010-08-09 17:19:47 -07001114 /*
1115 * Warn that /proc/pid/oom_adj is deprecated, see
1116 * Documentation/feature-removal-schedule.txt.
1117 */
1118 printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, "
1119 "please use /proc/%d/oom_score_adj instead.\n",
1120 current->comm, task_pid_nr(current),
1121 task_pid_nr(task), task_pid_nr(task));
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001122 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -07001123 /*
1124 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1125 * value is always attainable.
1126 */
1127 if (task->signal->oom_adj == OOM_ADJUST_MAX)
1128 task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX;
1129 else
1130 task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) /
1131 -OOM_DISABLE;
David Rientjes723548b2010-10-26 14:21:25 -07001132err_sighand:
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001133 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001134err_task_lock:
1135 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001136 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001137out:
1138 return err < 0 ? err : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Arjan van de Ven00977a52007-02-12 00:55:34 -08001141static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 .read = oom_adjust_read,
1143 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001144 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145};
1146
David Rientjesa63d83f2010-08-09 17:19:46 -07001147static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1148 size_t count, loff_t *ppos)
1149{
1150 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
1151 char buffer[PROC_NUMBUF];
1152 int oom_score_adj = OOM_SCORE_ADJ_MIN;
1153 unsigned long flags;
1154 size_t len;
1155
1156 if (!task)
1157 return -ESRCH;
1158 if (lock_task_sighand(task, &flags)) {
1159 oom_score_adj = task->signal->oom_score_adj;
1160 unlock_task_sighand(task, &flags);
1161 }
1162 put_task_struct(task);
1163 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
1164 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1165}
1166
1167static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1168 size_t count, loff_t *ppos)
1169{
1170 struct task_struct *task;
1171 char buffer[PROC_NUMBUF];
1172 unsigned long flags;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001173 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001174 int err;
1175
1176 memset(buffer, 0, sizeof(buffer));
1177 if (count > sizeof(buffer) - 1)
1178 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001179 if (copy_from_user(buffer, buf, count)) {
1180 err = -EFAULT;
1181 goto out;
1182 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001183
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001184 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001185 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001186 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001187 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001188 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1189 err = -EINVAL;
1190 goto out;
1191 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001192
1193 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001194 if (!task) {
1195 err = -ESRCH;
1196 goto out;
1197 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001198
Ying Han3d5992d2010-10-26 14:21:23 -07001199 task_lock(task);
1200 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001201 err = -EINVAL;
1202 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001203 }
David Rientjesd19d5472010-10-26 14:21:26 -07001204
1205 if (!lock_task_sighand(task, &flags)) {
1206 err = -ESRCH;
1207 goto err_task_lock;
1208 }
1209
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001210 if (oom_score_adj < task->signal->oom_score_adj_min &&
David Rientjesd19d5472010-10-26 14:21:26 -07001211 !capable(CAP_SYS_RESOURCE)) {
1212 err = -EACCES;
1213 goto err_sighand;
1214 }
1215
Ying Han3d5992d2010-10-26 14:21:23 -07001216 if (oom_score_adj != task->signal->oom_score_adj) {
1217 if (oom_score_adj == OOM_SCORE_ADJ_MIN)
1218 atomic_inc(&task->mm->oom_disable_count);
1219 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1220 atomic_dec(&task->mm->oom_disable_count);
1221 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001222 task->signal->oom_score_adj = oom_score_adj;
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001223 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
1224 task->signal->oom_score_adj_min = oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001225 /*
1226 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1227 * always attainable.
1228 */
1229 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1230 task->signal->oom_adj = OOM_DISABLE;
1231 else
1232 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1233 OOM_SCORE_ADJ_MAX;
David Rientjes723548b2010-10-26 14:21:25 -07001234err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001235 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001236err_task_lock:
1237 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001238 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001239out:
1240 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001241}
1242
1243static const struct file_operations proc_oom_score_adj_operations = {
1244 .read = oom_score_adj_read,
1245 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001246 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001247};
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249#ifdef CONFIG_AUDITSYSCALL
1250#define TMPBUFLEN 21
1251static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1252 size_t count, loff_t *ppos)
1253{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001254 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001255 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 ssize_t length;
1257 char tmpbuf[TMPBUFLEN];
1258
Eric W. Biederman99f89552006-06-26 00:25:55 -07001259 if (!task)
1260 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001262 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001263 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1265}
1266
1267static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1268 size_t count, loff_t *ppos)
1269{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001270 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 char *page, *tmp;
1272 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 uid_t loginuid;
1274
1275 if (!capable(CAP_AUDIT_CONTROL))
1276 return -EPERM;
1277
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001278 rcu_read_lock();
1279 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1280 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001282 }
1283 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Al Viroe0182902006-05-18 08:28:02 -04001285 if (count >= PAGE_SIZE)
1286 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 if (*ppos != 0) {
1289 /* No partial writes. */
1290 return -EINVAL;
1291 }
Mel Gormane12ba742007-10-16 01:25:52 -07001292 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!page)
1294 return -ENOMEM;
1295 length = -EFAULT;
1296 if (copy_from_user(page, buf, count))
1297 goto out_free_page;
1298
Al Viroe0182902006-05-18 08:28:02 -04001299 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 loginuid = simple_strtoul(page, &tmp, 10);
1301 if (tmp == page) {
1302 length = -EINVAL;
1303 goto out_free_page;
1304
1305 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001306 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (likely(length == 0))
1308 length = count;
1309
1310out_free_page:
1311 free_page((unsigned long) page);
1312 return length;
1313}
1314
Arjan van de Ven00977a52007-02-12 00:55:34 -08001315static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 .read = proc_loginuid_read,
1317 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001318 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319};
Eric Paris1e0bd752008-03-13 08:15:31 -04001320
1321static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1322 size_t count, loff_t *ppos)
1323{
1324 struct inode * inode = file->f_path.dentry->d_inode;
1325 struct task_struct *task = get_proc_task(inode);
1326 ssize_t length;
1327 char tmpbuf[TMPBUFLEN];
1328
1329 if (!task)
1330 return -ESRCH;
1331 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1332 audit_get_sessionid(task));
1333 put_task_struct(task);
1334 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1335}
1336
1337static const struct file_operations proc_sessionid_operations = {
1338 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001339 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001340};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341#endif
1342
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001343#ifdef CONFIG_FAULT_INJECTION
1344static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1345 size_t count, loff_t *ppos)
1346{
1347 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1348 char buffer[PROC_NUMBUF];
1349 size_t len;
1350 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001351
1352 if (!task)
1353 return -ESRCH;
1354 make_it_fail = task->make_it_fail;
1355 put_task_struct(task);
1356
1357 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001358
1359 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001360}
1361
1362static ssize_t proc_fault_inject_write(struct file * file,
1363 const char __user * buf, size_t count, loff_t *ppos)
1364{
1365 struct task_struct *task;
1366 char buffer[PROC_NUMBUF], *end;
1367 int make_it_fail;
1368
1369 if (!capable(CAP_SYS_RESOURCE))
1370 return -EPERM;
1371 memset(buffer, 0, sizeof(buffer));
1372 if (count > sizeof(buffer) - 1)
1373 count = sizeof(buffer) - 1;
1374 if (copy_from_user(buffer, buf, count))
1375 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001376 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1377 if (*end)
1378 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001379 task = get_proc_task(file->f_dentry->d_inode);
1380 if (!task)
1381 return -ESRCH;
1382 task->make_it_fail = make_it_fail;
1383 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001384
1385 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001386}
1387
Arjan van de Ven00977a52007-02-12 00:55:34 -08001388static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001389 .read = proc_fault_inject_read,
1390 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001391 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001392};
1393#endif
1394
Arjan van de Ven97455122008-01-25 21:08:34 +01001395
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001396#ifdef CONFIG_SCHED_DEBUG
1397/*
1398 * Print out various scheduling related per-task fields:
1399 */
1400static int sched_show(struct seq_file *m, void *v)
1401{
1402 struct inode *inode = m->private;
1403 struct task_struct *p;
1404
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001405 p = get_proc_task(inode);
1406 if (!p)
1407 return -ESRCH;
1408 proc_sched_show_task(p, m);
1409
1410 put_task_struct(p);
1411
1412 return 0;
1413}
1414
1415static ssize_t
1416sched_write(struct file *file, const char __user *buf,
1417 size_t count, loff_t *offset)
1418{
1419 struct inode *inode = file->f_path.dentry->d_inode;
1420 struct task_struct *p;
1421
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001422 p = get_proc_task(inode);
1423 if (!p)
1424 return -ESRCH;
1425 proc_sched_set_task(p);
1426
1427 put_task_struct(p);
1428
1429 return count;
1430}
1431
1432static int sched_open(struct inode *inode, struct file *filp)
1433{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001434 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001435}
1436
1437static const struct file_operations proc_pid_sched_operations = {
1438 .open = sched_open,
1439 .read = seq_read,
1440 .write = sched_write,
1441 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001442 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001443};
1444
1445#endif
1446
Mike Galbraith5091faa2010-11-30 14:18:03 +01001447#ifdef CONFIG_SCHED_AUTOGROUP
1448/*
1449 * Print out autogroup related information:
1450 */
1451static int sched_autogroup_show(struct seq_file *m, void *v)
1452{
1453 struct inode *inode = m->private;
1454 struct task_struct *p;
1455
1456 p = get_proc_task(inode);
1457 if (!p)
1458 return -ESRCH;
1459 proc_sched_autogroup_show_task(p, m);
1460
1461 put_task_struct(p);
1462
1463 return 0;
1464}
1465
1466static ssize_t
1467sched_autogroup_write(struct file *file, const char __user *buf,
1468 size_t count, loff_t *offset)
1469{
1470 struct inode *inode = file->f_path.dentry->d_inode;
1471 struct task_struct *p;
1472 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001473 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001474 int err;
1475
1476 memset(buffer, 0, sizeof(buffer));
1477 if (count > sizeof(buffer) - 1)
1478 count = sizeof(buffer) - 1;
1479 if (copy_from_user(buffer, buf, count))
1480 return -EFAULT;
1481
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001482 err = kstrtoint(strstrip(buffer), 0, &nice);
1483 if (err < 0)
1484 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001485
1486 p = get_proc_task(inode);
1487 if (!p)
1488 return -ESRCH;
1489
1490 err = nice;
1491 err = proc_sched_autogroup_set_nice(p, &err);
1492 if (err)
1493 count = err;
1494
1495 put_task_struct(p);
1496
1497 return count;
1498}
1499
1500static int sched_autogroup_open(struct inode *inode, struct file *filp)
1501{
1502 int ret;
1503
1504 ret = single_open(filp, sched_autogroup_show, NULL);
1505 if (!ret) {
1506 struct seq_file *m = filp->private_data;
1507
1508 m->private = inode;
1509 }
1510 return ret;
1511}
1512
1513static const struct file_operations proc_pid_sched_autogroup_operations = {
1514 .open = sched_autogroup_open,
1515 .read = seq_read,
1516 .write = sched_autogroup_write,
1517 .llseek = seq_lseek,
1518 .release = single_release,
1519};
1520
1521#endif /* CONFIG_SCHED_AUTOGROUP */
1522
john stultz4614a696b2009-12-14 18:00:05 -08001523static ssize_t comm_write(struct file *file, const char __user *buf,
1524 size_t count, loff_t *offset)
1525{
1526 struct inode *inode = file->f_path.dentry->d_inode;
1527 struct task_struct *p;
1528 char buffer[TASK_COMM_LEN];
1529
1530 memset(buffer, 0, sizeof(buffer));
1531 if (count > sizeof(buffer) - 1)
1532 count = sizeof(buffer) - 1;
1533 if (copy_from_user(buffer, buf, count))
1534 return -EFAULT;
1535
1536 p = get_proc_task(inode);
1537 if (!p)
1538 return -ESRCH;
1539
1540 if (same_thread_group(current, p))
1541 set_task_comm(p, buffer);
1542 else
1543 count = -EINVAL;
1544
1545 put_task_struct(p);
1546
1547 return count;
1548}
1549
1550static int comm_show(struct seq_file *m, void *v)
1551{
1552 struct inode *inode = m->private;
1553 struct task_struct *p;
1554
1555 p = get_proc_task(inode);
1556 if (!p)
1557 return -ESRCH;
1558
1559 task_lock(p);
1560 seq_printf(m, "%s\n", p->comm);
1561 task_unlock(p);
1562
1563 put_task_struct(p);
1564
1565 return 0;
1566}
1567
1568static int comm_open(struct inode *inode, struct file *filp)
1569{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001570 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001571}
1572
1573static const struct file_operations proc_pid_set_comm_operations = {
1574 .open = comm_open,
1575 .read = seq_read,
1576 .write = comm_write,
1577 .llseek = seq_lseek,
1578 .release = single_release,
1579};
1580
Matt Helsley925d1c42008-04-29 01:01:36 -07001581static int proc_exe_link(struct inode *inode, struct path *exe_path)
1582{
1583 struct task_struct *task;
1584 struct mm_struct *mm;
1585 struct file *exe_file;
1586
1587 task = get_proc_task(inode);
1588 if (!task)
1589 return -ENOENT;
1590 mm = get_task_mm(task);
1591 put_task_struct(task);
1592 if (!mm)
1593 return -ENOENT;
1594 exe_file = get_mm_exe_file(mm);
1595 mmput(mm);
1596 if (exe_file) {
1597 *exe_path = exe_file->f_path;
1598 path_get(&exe_file->f_path);
1599 fput(exe_file);
1600 return 0;
1601 } else
1602 return -ENOENT;
1603}
1604
Al Viro008b1502005-08-20 00:17:39 +01001605static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 struct inode *inode = dentry->d_inode;
1608 int error = -EACCES;
1609
1610 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001611 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Eric W. Biederman778c1142006-06-26 00:25:58 -07001613 /* Are we allowed to snoop on the tasks file descriptors? */
1614 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001617 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618out:
Al Viro008b1502005-08-20 00:17:39 +01001619 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001622static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Mel Gormane12ba742007-10-16 01:25:52 -07001624 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001625 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int len;
1627
1628 if (!tmp)
1629 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001630
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001631 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001632 len = PTR_ERR(pathname);
1633 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001635 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 if (len > buflen)
1638 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001639 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 len = -EFAULT;
1641 out:
1642 free_page((unsigned long)tmp);
1643 return len;
1644}
1645
1646static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1647{
1648 int error = -EACCES;
1649 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001650 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Eric W. Biederman778c1142006-06-26 00:25:58 -07001652 /* Are we allowed to snoop on the tasks file descriptors? */
1653 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001656 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (error)
1658 goto out;
1659
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001660 error = do_proc_readlink(&path, buffer, buflen);
1661 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return error;
1664}
1665
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001666static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001668 .follow_link = proc_pid_follow_link,
1669 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670};
1671
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001672
1673/* building an inode */
1674
1675static int task_dumpable(struct task_struct *task)
1676{
1677 int dumpable = 0;
1678 struct mm_struct *mm;
1679
1680 task_lock(task);
1681 mm = task->mm;
1682 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001683 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001684 task_unlock(task);
1685 if(dumpable == 1)
1686 return 1;
1687 return 0;
1688}
1689
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001690struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001691{
1692 struct inode * inode;
1693 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001694 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001695
1696 /* We need a new inode */
1697
1698 inode = new_inode(sb);
1699 if (!inode)
1700 goto out;
1701
1702 /* Common stuff */
1703 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001704 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001705 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001706 inode->i_op = &proc_def_inode_operations;
1707
1708 /*
1709 * grab the reference to task.
1710 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001711 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001712 if (!ei->pid)
1713 goto out_unlock;
1714
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001715 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001716 rcu_read_lock();
1717 cred = __task_cred(task);
1718 inode->i_uid = cred->euid;
1719 inode->i_gid = cred->egid;
1720 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001721 }
1722 security_task_to_inode(task, inode);
1723
1724out:
1725 return inode;
1726
1727out_unlock:
1728 iput(inode);
1729 return NULL;
1730}
1731
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001732int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001733{
1734 struct inode *inode = dentry->d_inode;
1735 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001736 const struct cred *cred;
1737
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001738 generic_fillattr(inode, stat);
1739
1740 rcu_read_lock();
1741 stat->uid = 0;
1742 stat->gid = 0;
1743 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1744 if (task) {
1745 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1746 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001747 cred = __task_cred(task);
1748 stat->uid = cred->euid;
1749 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001750 }
1751 }
1752 rcu_read_unlock();
1753 return 0;
1754}
1755
1756/* dentry stuff */
1757
1758/*
1759 * Exceptional case: normally we are not allowed to unhash a busy
1760 * directory. In this case, however, we can do it - no aliasing problems
1761 * due to the way we treat inodes.
1762 *
1763 * Rewrite the inode's ownerships here because the owning task may have
1764 * performed a setuid(), etc.
1765 *
1766 * Before the /proc/pid/status file was created the only way to read
1767 * the effective uid of a /process was to stat /proc/pid. Reading
1768 * /proc/pid/status is slow enough that procps and other packages
1769 * kept stating /proc/pid. To keep the rules in /proc simple I have
1770 * made this apply to all per process world readable and executable
1771 * directories.
1772 */
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001773int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001774{
Nick Piggin34286d62011-01-07 17:49:57 +11001775 struct inode *inode;
1776 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001777 const struct cred *cred;
1778
Nick Piggin34286d62011-01-07 17:49:57 +11001779 if (nd && nd->flags & LOOKUP_RCU)
1780 return -ECHILD;
1781
1782 inode = dentry->d_inode;
1783 task = get_proc_task(inode);
1784
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001785 if (task) {
1786 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1787 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001788 rcu_read_lock();
1789 cred = __task_cred(task);
1790 inode->i_uid = cred->euid;
1791 inode->i_gid = cred->egid;
1792 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001793 } else {
1794 inode->i_uid = 0;
1795 inode->i_gid = 0;
1796 }
1797 inode->i_mode &= ~(S_ISUID | S_ISGID);
1798 security_task_to_inode(task, inode);
1799 put_task_struct(task);
1800 return 1;
1801 }
1802 d_drop(dentry);
1803 return 0;
1804}
1805
Nick Pigginfe15ce42011-01-07 17:49:23 +11001806static int pid_delete_dentry(const struct dentry * dentry)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001807{
1808 /* Is the task we represent dead?
1809 * If so, then don't put the dentry on the lru list,
1810 * kill it immediately.
1811 */
1812 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1813}
1814
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001815const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001816{
1817 .d_revalidate = pid_revalidate,
1818 .d_delete = pid_delete_dentry,
1819};
1820
1821/* Lookups */
1822
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001823/*
1824 * Fill a directory entry.
1825 *
1826 * If possible create the dcache entry and derive our inode number and
1827 * file type from dcache entry.
1828 *
1829 * Since all of the proc inode numbers are dynamically generated, the inode
1830 * numbers do not exist until the inode is cache. This means creating the
1831 * the dcache entry in readdir is necessary to keep the inode numbers
1832 * reported by readdir in sync with the inode numbers reported
1833 * by stat.
1834 */
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001835int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1836 const char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001837 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001838{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001839 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001840 struct inode *inode;
1841 struct qstr qname;
1842 ino_t ino = 0;
1843 unsigned type = DT_UNKNOWN;
1844
1845 qname.name = name;
1846 qname.len = len;
1847 qname.hash = full_name_hash(name, len);
1848
1849 child = d_lookup(dir, &qname);
1850 if (!child) {
1851 struct dentry *new;
1852 new = d_alloc(dir, &qname);
1853 if (new) {
1854 child = instantiate(dir->d_inode, new, task, ptr);
1855 if (child)
1856 dput(new);
1857 else
1858 child = new;
1859 }
1860 }
1861 if (!child || IS_ERR(child) || !child->d_inode)
1862 goto end_instantiate;
1863 inode = child->d_inode;
1864 if (inode) {
1865 ino = inode->i_ino;
1866 type = inode->i_mode >> 12;
1867 }
1868 dput(child);
1869end_instantiate:
1870 if (!ino)
1871 ino = find_inode_number(dir, &qname);
1872 if (!ino)
1873 ino = 1;
1874 return filldir(dirent, name, len, filp->f_pos, ino, type);
1875}
1876
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001877static unsigned name_to_int(struct dentry *dentry)
1878{
1879 const char *name = dentry->d_name.name;
1880 int len = dentry->d_name.len;
1881 unsigned n = 0;
1882
1883 if (len > 1 && *name == '0')
1884 goto out;
1885 while (len-- > 0) {
1886 unsigned c = *name++ - '0';
1887 if (c > 9)
1888 goto out;
1889 if (n >= (~0U-9)/10)
1890 goto out;
1891 n *= 10;
1892 n += c;
1893 }
1894 return n;
1895out:
1896 return ~0U;
1897}
1898
Miklos Szeredi27932742007-05-08 00:26:17 -07001899#define PROC_FDINFO_MAX 64
1900
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001901static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001902{
1903 struct task_struct *task = get_proc_task(inode);
1904 struct files_struct *files = NULL;
1905 struct file *file;
1906 int fd = proc_fd(inode);
1907
1908 if (task) {
1909 files = get_files_struct(task);
1910 put_task_struct(task);
1911 }
1912 if (files) {
1913 /*
1914 * We are not taking a ref to the file structure, so we must
1915 * hold ->file_lock.
1916 */
1917 spin_lock(&files->file_lock);
1918 file = fcheck_files(files, fd);
1919 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001920 if (path) {
1921 *path = file->f_path;
1922 path_get(&file->f_path);
1923 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001924 if (info)
1925 snprintf(info, PROC_FDINFO_MAX,
1926 "pos:\t%lli\n"
1927 "flags:\t0%o\n",
1928 (long long) file->f_pos,
1929 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001930 spin_unlock(&files->file_lock);
1931 put_files_struct(files);
1932 return 0;
1933 }
1934 spin_unlock(&files->file_lock);
1935 put_files_struct(files);
1936 }
1937 return -ENOENT;
1938}
1939
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001940static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001941{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001942 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001943}
1944
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001945static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1946{
Nick Piggin34286d62011-01-07 17:49:57 +11001947 struct inode *inode;
1948 struct task_struct *task;
1949 int fd;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001950 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001951 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001952
Nick Piggin34286d62011-01-07 17:49:57 +11001953 if (nd && nd->flags & LOOKUP_RCU)
1954 return -ECHILD;
1955
1956 inode = dentry->d_inode;
1957 task = get_proc_task(inode);
1958 fd = proc_fd(inode);
1959
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001960 if (task) {
1961 files = get_files_struct(task);
1962 if (files) {
1963 rcu_read_lock();
1964 if (fcheck_files(files, fd)) {
1965 rcu_read_unlock();
1966 put_files_struct(files);
1967 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001968 rcu_read_lock();
1969 cred = __task_cred(task);
1970 inode->i_uid = cred->euid;
1971 inode->i_gid = cred->egid;
1972 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001973 } else {
1974 inode->i_uid = 0;
1975 inode->i_gid = 0;
1976 }
1977 inode->i_mode &= ~(S_ISUID | S_ISGID);
1978 security_task_to_inode(task, inode);
1979 put_task_struct(task);
1980 return 1;
1981 }
1982 rcu_read_unlock();
1983 put_files_struct(files);
1984 }
1985 put_task_struct(task);
1986 }
1987 d_drop(dentry);
1988 return 0;
1989}
1990
Al Virod72f71e2009-02-20 05:58:47 +00001991static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001992{
1993 .d_revalidate = tid_fd_revalidate,
1994 .d_delete = pid_delete_dentry,
1995};
1996
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001997static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001998 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001999{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002000 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002001 struct file *file;
2002 struct files_struct *files;
2003 struct inode *inode;
2004 struct proc_inode *ei;
2005 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002006
Eric W. Biederman61a28782006-10-02 02:18:49 -07002007 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002008 if (!inode)
2009 goto out;
2010 ei = PROC_I(inode);
2011 ei->fd = fd;
2012 files = get_files_struct(task);
2013 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002014 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002015 inode->i_mode = S_IFLNK;
2016
2017 /*
2018 * We are not taking a ref to the file structure, so we must
2019 * hold ->file_lock.
2020 */
2021 spin_lock(&files->file_lock);
2022 file = fcheck_files(files, fd);
2023 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002024 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04002025 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002026 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04002027 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002028 inode->i_mode |= S_IWUSR | S_IXUSR;
2029 spin_unlock(&files->file_lock);
2030 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002031
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002032 inode->i_op = &proc_pid_link_inode_operations;
2033 inode->i_size = 64;
2034 ei->op.proc_get_link = proc_fd_link;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002035 d_set_d_op(dentry, &tid_fd_dentry_operations);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002036 d_add(dentry, inode);
2037 /* Close the race of the process dying before we return the dentry */
2038 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002039 error = NULL;
2040
2041 out:
2042 return error;
2043out_unlock:
2044 spin_unlock(&files->file_lock);
2045 put_files_struct(files);
2046out_iput:
2047 iput(inode);
2048 goto out;
2049}
2050
Miklos Szeredi27932742007-05-08 00:26:17 -07002051static struct dentry *proc_lookupfd_common(struct inode *dir,
2052 struct dentry *dentry,
2053 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002054{
2055 struct task_struct *task = get_proc_task(dir);
2056 unsigned fd = name_to_int(dentry);
2057 struct dentry *result = ERR_PTR(-ENOENT);
2058
2059 if (!task)
2060 goto out_no_task;
2061 if (fd == ~0U)
2062 goto out;
2063
Miklos Szeredi27932742007-05-08 00:26:17 -07002064 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002065out:
2066 put_task_struct(task);
2067out_no_task:
2068 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002069}
2070
Miklos Szeredi27932742007-05-08 00:26:17 -07002071static int proc_readfd_common(struct file * filp, void * dirent,
2072 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002074 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07002075 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002076 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07002077 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct files_struct * files;
2080
2081 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002082 if (!p)
2083 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 fd = filp->f_pos;
2087 switch (fd) {
2088 case 0:
2089 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
2090 goto out;
2091 filp->f_pos++;
2092 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07002093 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
2095 goto out;
2096 filp->f_pos++;
2097 default:
2098 files = get_files_struct(p);
2099 if (!files)
2100 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002101 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04002103 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07002105 char name[PROC_NUMBUF];
2106 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 if (!fcheck_files(files, fd))
2109 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002110 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Miklos Szeredi27932742007-05-08 00:26:17 -07002112 len = snprintf(name, sizeof(name), "%d", fd);
2113 if (proc_fill_cache(filp, dirent, filldir,
2114 name, len, instantiate,
2115 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07002116 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 break;
2118 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002119 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002121 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 put_files_struct(files);
2123 }
2124out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002125 put_task_struct(p);
2126out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return retval;
2128}
2129
Miklos Szeredi27932742007-05-08 00:26:17 -07002130static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
2131 struct nameidata *nd)
2132{
2133 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
2134}
2135
2136static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
2137{
2138 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
2139}
2140
2141static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
2142 size_t len, loff_t *ppos)
2143{
2144 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08002145 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07002146 if (!err)
2147 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
2148 return err;
2149}
2150
2151static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01002152 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07002153 .read = proc_fdinfo_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002154 .llseek = no_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002155};
2156
Arjan van de Ven00977a52007-02-12 00:55:34 -08002157static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 .read = generic_read_dir,
2159 .readdir = proc_readfd,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002160 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161};
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002164 * /proc/pid/fd needs a special permission handler so that a process can still
2165 * access /proc/self/fd after it has executed a setuid().
2166 */
Nick Pigginb74c79e2011-01-07 17:49:58 +11002167static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002168{
2169 int rv;
2170
Nick Pigginb74c79e2011-01-07 17:49:58 +11002171 if (flags & IPERM_FLAG_RCU)
2172 return -ECHILD;
2173 rv = generic_permission(inode, mask, flags, NULL);
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002174 if (rv == 0)
2175 return 0;
2176 if (task_pid(current) == proc_pid(inode))
2177 rv = 0;
2178 return rv;
2179}
2180
2181/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 * proc directories can do almost nothing..
2183 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002184static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002186 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002187 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188};
2189
Miklos Szeredi27932742007-05-08 00:26:17 -07002190static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2191 struct dentry *dentry, struct task_struct *task, const void *ptr)
2192{
2193 unsigned fd = *(unsigned *)ptr;
2194 struct inode *inode;
2195 struct proc_inode *ei;
2196 struct dentry *error = ERR_PTR(-ENOENT);
2197
2198 inode = proc_pid_make_inode(dir->i_sb, task);
2199 if (!inode)
2200 goto out;
2201 ei = PROC_I(inode);
2202 ei->fd = fd;
2203 inode->i_mode = S_IFREG | S_IRUSR;
2204 inode->i_fop = &proc_fdinfo_file_operations;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002205 d_set_d_op(dentry, &tid_fd_dentry_operations);
Miklos Szeredi27932742007-05-08 00:26:17 -07002206 d_add(dentry, inode);
2207 /* Close the race of the process dying before we return the dentry */
2208 if (tid_fd_revalidate(dentry, NULL))
2209 error = NULL;
2210
2211 out:
2212 return error;
2213}
2214
2215static struct dentry *proc_lookupfdinfo(struct inode *dir,
2216 struct dentry *dentry,
2217 struct nameidata *nd)
2218{
2219 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2220}
2221
2222static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2223{
2224 return proc_readfd_common(filp, dirent, filldir,
2225 proc_fdinfo_instantiate);
2226}
2227
2228static const struct file_operations proc_fdinfo_operations = {
2229 .read = generic_read_dir,
2230 .readdir = proc_readfdinfo,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002231 .llseek = default_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002232};
2233
2234/*
2235 * proc directories can do almost nothing..
2236 */
2237static const struct inode_operations proc_fdinfo_inode_operations = {
2238 .lookup = proc_lookupfdinfo,
2239 .setattr = proc_setattr,
2240};
2241
2242
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002243static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002244 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002245{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002246 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002247 struct inode *inode;
2248 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002249 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002250
Eric W. Biederman61a28782006-10-02 02:18:49 -07002251 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002252 if (!inode)
2253 goto out;
2254
2255 ei = PROC_I(inode);
2256 inode->i_mode = p->mode;
2257 if (S_ISDIR(inode->i_mode))
2258 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2259 if (p->iop)
2260 inode->i_op = p->iop;
2261 if (p->fop)
2262 inode->i_fop = p->fop;
2263 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002264 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002265 d_add(dentry, inode);
2266 /* Close the race of the process dying before we return the dentry */
2267 if (pid_revalidate(dentry, NULL))
2268 error = NULL;
2269out:
2270 return error;
2271}
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273static struct dentry *proc_pident_lookup(struct inode *dir,
2274 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002275 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002276 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002278 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002279 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002280 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002282 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Eric W. Biederman99f89552006-06-26 00:25:55 -07002284 if (!task)
2285 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002287 /*
2288 * Yes, it does not scale. And it should not. Don't add
2289 * new entries into /proc/<tgid>/ without very good reasons.
2290 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002291 last = &ents[nents - 1];
2292 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (p->len != dentry->d_name.len)
2294 continue;
2295 if (!memcmp(dentry->d_name.name, p->name, p->len))
2296 break;
2297 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002298 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 goto out;
2300
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002301 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002303 put_task_struct(task);
2304out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002305 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
Eric Dumazetc5141e62007-05-08 00:26:15 -07002308static int proc_pident_fill_cache(struct file *filp, void *dirent,
2309 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002310{
2311 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2312 proc_pident_instantiate, task, p);
2313}
2314
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002315static int proc_pident_readdir(struct file *filp,
2316 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002317 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002318{
2319 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002320 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002321 struct inode *inode = dentry->d_inode;
2322 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002323 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002324 ino_t ino;
2325 int ret;
2326
2327 ret = -ENOENT;
2328 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002329 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002330
2331 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002332 i = filp->f_pos;
2333 switch (i) {
2334 case 0:
2335 ino = inode->i_ino;
2336 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2337 goto out;
2338 i++;
2339 filp->f_pos++;
2340 /* fall through */
2341 case 1:
2342 ino = parent_ino(dentry);
2343 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2344 goto out;
2345 i++;
2346 filp->f_pos++;
2347 /* fall through */
2348 default:
2349 i -= 2;
2350 if (i >= nents) {
2351 ret = 1;
2352 goto out;
2353 }
2354 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002355 last = &ents[nents - 1];
2356 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002357 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002358 goto out;
2359 filp->f_pos++;
2360 p++;
2361 }
2362 }
2363
2364 ret = 1;
2365out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002366 put_task_struct(task);
2367out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002368 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
2370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002372static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2373 size_t count, loff_t *ppos)
2374{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002375 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002376 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002377 ssize_t length;
2378 struct task_struct *task = get_proc_task(inode);
2379
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002380 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002381 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002382
2383 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002384 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002385 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002386 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002387 if (length > 0)
2388 length = simple_read_from_buffer(buf, count, ppos, p, length);
2389 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002390 return length;
2391}
2392
2393static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2394 size_t count, loff_t *ppos)
2395{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002396 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002397 char *page;
2398 ssize_t length;
2399 struct task_struct *task = get_proc_task(inode);
2400
2401 length = -ESRCH;
2402 if (!task)
2403 goto out_no_task;
2404 if (count > PAGE_SIZE)
2405 count = PAGE_SIZE;
2406
2407 /* No partial writes. */
2408 length = -EINVAL;
2409 if (*ppos != 0)
2410 goto out;
2411
2412 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002413 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002414 if (!page)
2415 goto out;
2416
2417 length = -EFAULT;
2418 if (copy_from_user(page, buf, count))
2419 goto out_free;
2420
David Howells107db7c2009-05-08 13:55:27 +01002421 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002422 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002423 if (length < 0)
2424 goto out_free;
2425
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002426 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002427 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002428 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002429 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002430out_free:
2431 free_page((unsigned long) page);
2432out:
2433 put_task_struct(task);
2434out_no_task:
2435 return length;
2436}
2437
Arjan van de Ven00977a52007-02-12 00:55:34 -08002438static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002439 .read = proc_pid_attr_read,
2440 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002441 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002442};
2443
Eric Dumazetc5141e62007-05-08 00:26:15 -07002444static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002445 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2446 REG("prev", S_IRUGO, proc_pid_attr_operations),
2447 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2448 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2449 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2450 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002451};
2452
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002453static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 void * dirent, filldir_t filldir)
2455{
2456 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002457 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
Arjan van de Ven00977a52007-02-12 00:55:34 -08002460static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002462 .readdir = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002463 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464};
2465
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002466static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 struct dentry *dentry, struct nameidata *nd)
2468{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002469 return proc_pident_lookup(dir, dentry,
2470 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002473static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002474 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002475 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002476 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477};
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479#endif
2480
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002481#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002482static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2483 size_t count, loff_t *ppos)
2484{
2485 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2486 struct mm_struct *mm;
2487 char buffer[PROC_NUMBUF];
2488 size_t len;
2489 int ret;
2490
2491 if (!task)
2492 return -ESRCH;
2493
2494 ret = 0;
2495 mm = get_task_mm(task);
2496 if (mm) {
2497 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2498 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2499 MMF_DUMP_FILTER_SHIFT));
2500 mmput(mm);
2501 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2502 }
2503
2504 put_task_struct(task);
2505
2506 return ret;
2507}
2508
2509static ssize_t proc_coredump_filter_write(struct file *file,
2510 const char __user *buf,
2511 size_t count,
2512 loff_t *ppos)
2513{
2514 struct task_struct *task;
2515 struct mm_struct *mm;
2516 char buffer[PROC_NUMBUF], *end;
2517 unsigned int val;
2518 int ret;
2519 int i;
2520 unsigned long mask;
2521
2522 ret = -EFAULT;
2523 memset(buffer, 0, sizeof(buffer));
2524 if (count > sizeof(buffer) - 1)
2525 count = sizeof(buffer) - 1;
2526 if (copy_from_user(buffer, buf, count))
2527 goto out_no_task;
2528
2529 ret = -EINVAL;
2530 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2531 if (*end == '\n')
2532 end++;
2533 if (end - buffer == 0)
2534 goto out_no_task;
2535
2536 ret = -ESRCH;
2537 task = get_proc_task(file->f_dentry->d_inode);
2538 if (!task)
2539 goto out_no_task;
2540
2541 ret = end - buffer;
2542 mm = get_task_mm(task);
2543 if (!mm)
2544 goto out_no_mm;
2545
2546 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2547 if (val & mask)
2548 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2549 else
2550 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2551 }
2552
2553 mmput(mm);
2554 out_no_mm:
2555 put_task_struct(task);
2556 out_no_task:
2557 return ret;
2558}
2559
2560static const struct file_operations proc_coredump_filter_operations = {
2561 .read = proc_coredump_filter_read,
2562 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002563 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002564};
2565#endif
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567/*
2568 * /proc/self:
2569 */
2570static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2571 int buflen)
2572{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002573 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002574 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002575 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002576 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002577 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002578 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return vfs_readlink(dentry,buffer,buflen,tmp);
2580}
2581
Al Viro008b1502005-08-20 00:17:39 +01002582static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002584 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002585 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002586 char *name = ERR_PTR(-ENOENT);
2587 if (tgid) {
2588 name = __getname();
2589 if (!name)
2590 name = ERR_PTR(-ENOMEM);
2591 else
2592 sprintf(name, "%d", tgid);
2593 }
2594 nd_set_link(nd, name);
2595 return NULL;
2596}
2597
2598static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2599 void *cookie)
2600{
2601 char *s = nd_get_link(nd);
2602 if (!IS_ERR(s))
2603 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002604}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002606static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 .readlink = proc_self_readlink,
2608 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002609 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610};
2611
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002612/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002613 * proc base
2614 *
2615 * These are the directory entries in the root directory of /proc
2616 * that properly belong to the /proc filesystem, as they describe
2617 * describe something that is process related.
2618 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002619static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002620 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002621 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002622};
2623
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002624static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002625 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002626{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002627 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002628 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002629 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002630 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002631
2632 /* Allocate the inode */
2633 error = ERR_PTR(-ENOMEM);
2634 inode = new_inode(dir->i_sb);
2635 if (!inode)
2636 goto out;
2637
2638 /* Initialize the inode */
2639 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002640 inode->i_ino = get_next_ino();
Eric W. Biederman801199c2006-10-02 02:18:48 -07002641 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002642
2643 /*
2644 * grab the reference to the task.
2645 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002646 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002647 if (!ei->pid)
2648 goto out_iput;
2649
Eric W. Biederman801199c2006-10-02 02:18:48 -07002650 inode->i_mode = p->mode;
2651 if (S_ISDIR(inode->i_mode))
2652 inode->i_nlink = 2;
2653 if (S_ISLNK(inode->i_mode))
2654 inode->i_size = 64;
2655 if (p->iop)
2656 inode->i_op = p->iop;
2657 if (p->fop)
2658 inode->i_fop = p->fop;
2659 ei->op = p->op;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002660 d_add(dentry, inode);
2661 error = NULL;
2662out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002663 return error;
2664out_iput:
2665 iput(inode);
2666 goto out;
2667}
2668
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002669static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2670{
2671 struct dentry *error;
2672 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002673 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002674
2675 error = ERR_PTR(-ENOENT);
2676
2677 if (!task)
2678 goto out_no_task;
2679
2680 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002681 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2682 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002683 if (p->len != dentry->d_name.len)
2684 continue;
2685 if (!memcmp(dentry->d_name.name, p->name, p->len))
2686 break;
2687 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002688 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002689 goto out;
2690
2691 error = proc_base_instantiate(dir, dentry, task, p);
2692
2693out:
2694 put_task_struct(task);
2695out_no_task:
2696 return error;
2697}
2698
Eric Dumazetc5141e62007-05-08 00:26:15 -07002699static int proc_base_fill_cache(struct file *filp, void *dirent,
2700 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002701{
2702 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2703 proc_base_instantiate, task, p);
2704}
2705
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002706#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002707static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002708{
Andrea Righi940389b2008-07-28 00:48:12 +02002709 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002710 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002711
Andrea Righi59954772008-07-27 17:29:15 +02002712 if (whole && lock_task_sighand(task, &flags)) {
2713 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002714
Andrea Righi59954772008-07-27 17:29:15 +02002715 task_io_accounting_add(&acct, &task->signal->ioac);
2716 while_each_thread(task, t)
2717 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002718
Andrea Righi59954772008-07-27 17:29:15 +02002719 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002720 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002721 return sprintf(buffer,
2722 "rchar: %llu\n"
2723 "wchar: %llu\n"
2724 "syscr: %llu\n"
2725 "syscw: %llu\n"
2726 "read_bytes: %llu\n"
2727 "write_bytes: %llu\n"
2728 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002729 (unsigned long long)acct.rchar,
2730 (unsigned long long)acct.wchar,
2731 (unsigned long long)acct.syscr,
2732 (unsigned long long)acct.syscw,
2733 (unsigned long long)acct.read_bytes,
2734 (unsigned long long)acct.write_bytes,
2735 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002736}
Andrea Righi297c5d92008-07-25 01:48:49 -07002737
2738static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2739{
2740 return do_io_accounting(task, buffer, 0);
2741}
2742
2743static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2744{
2745 return do_io_accounting(task, buffer, 1);
2746}
2747#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002748
Kees Cook47830722008-10-06 03:11:58 +04002749static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2750 struct pid *pid, struct task_struct *task)
2751{
Al Viroa9712bc2011-03-23 15:52:50 -04002752 int err = lock_trace(task);
2753 if (!err) {
2754 seq_printf(m, "%08x\n", task->personality);
2755 unlock_trace(task);
2756 }
2757 return err;
Kees Cook47830722008-10-06 03:11:58 +04002758}
2759
Eric W. Biederman801199c2006-10-02 02:18:48 -07002760/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002761 * Thread groups
2762 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002763static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002764static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002765
Eric Dumazetc5141e62007-05-08 00:26:15 -07002766static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002767 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2768 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2769 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002770 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002771#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002772 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002773#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002774 REG("environ", S_IRUSR, proc_environ_operations),
2775 INF("auxv", S_IRUSR, proc_pid_auxv),
2776 ONE("status", S_IRUGO, proc_pid_status),
Al Viroa9712bc2011-03-23 15:52:50 -04002777 ONE("personality", S_IRUGO, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07002778 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002779#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002780 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002781#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002782#ifdef CONFIG_SCHED_AUTOGROUP
2783 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2784#endif
john stultz4614a696b2009-12-14 18:00:05 -08002785 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002786#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Al Viroa9712bc2011-03-23 15:52:50 -04002787 INF("syscall", S_IRUGO, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002788#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002789 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2790 ONE("stat", S_IRUGO, proc_tgid_stat),
2791 ONE("statm", S_IRUGO, proc_pid_statm),
2792 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002793#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002794 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002795#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002796 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2797 LNK("cwd", proc_cwd_link),
2798 LNK("root", proc_root_link),
2799 LNK("exe", proc_exe_link),
2800 REG("mounts", S_IRUGO, proc_mounts_operations),
2801 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2802 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002803#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002804 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2805 REG("smaps", S_IRUGO, proc_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05002806 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002807#endif
2808#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002809 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002810#endif
2811#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002812 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002813#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002814#ifdef CONFIG_STACKTRACE
Al Viroa9712bc2011-03-23 15:52:50 -04002815 ONE("stack", S_IRUGO, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002816#endif
2817#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002818 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002819#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002820#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002821 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002822#endif
Paul Menage8793d852007-10-18 23:39:39 -07002823#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002824 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002825#endif
Paul Menagea4243162007-10-18 23:39:35 -07002826#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002827 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002828#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002829 INF("oom_score", S_IRUGO, proc_oom_score),
2830 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002831 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002832#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002833 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2834 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002835#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002836#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002837 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002838#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002839#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002840 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002841#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002842#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002843 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002844#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002845};
2846
2847static int proc_tgid_base_readdir(struct file * filp,
2848 void * dirent, filldir_t filldir)
2849{
2850 return proc_pident_readdir(filp,dirent,filldir,
2851 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2852}
2853
Arjan van de Ven00977a52007-02-12 00:55:34 -08002854static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002855 .read = generic_read_dir,
2856 .readdir = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002857 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002858};
2859
2860static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002861 return proc_pident_lookup(dir, dentry,
2862 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002863}
2864
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002865static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002866 .lookup = proc_tgid_base_lookup,
2867 .getattr = pid_getattr,
2868 .setattr = proc_setattr,
2869};
2870
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002871static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002873 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002874 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002875 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Eric W. Biederman48e64842006-06-26 00:25:48 -07002877 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002878 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2879 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002880 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002881 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002882 d_drop(dentry);
2883 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Eric W. Biederman48e64842006-06-26 00:25:48 -07002886 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002887 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2888 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002889 if (!leader)
2890 goto out;
2891
2892 name.name = "task";
2893 name.len = strlen(name.name);
2894 dir = d_hash_and_lookup(leader, &name);
2895 if (!dir)
2896 goto out_put_leader;
2897
2898 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002899 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002900 dentry = d_hash_and_lookup(dir, &name);
2901 if (dentry) {
2902 shrink_dcache_parent(dentry);
2903 d_drop(dentry);
2904 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002906
2907 dput(dir);
2908out_put_leader:
2909 dput(leader);
2910out:
2911 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912}
2913
Randy Dunlap0895e912007-10-21 21:00:10 -07002914/**
2915 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2916 * @task: task that should be flushed.
2917 *
2918 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002919 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002920 * in. This call is supposed to do all of this job.
2921 *
2922 * Looks in the dcache for
2923 * /proc/@pid
2924 * /proc/@tgid/task/@pid
2925 * if either directory is present flushes it and all of it'ts children
2926 * from the dcache.
2927 *
2928 * It is safe and reasonable to cache /proc entries for a task until
2929 * that task exits. After that they just clog up the dcache with
2930 * useless entries, possibly causing useful dcache entries to be
2931 * flushed instead. This routine is proved to flush those useless
2932 * dcache entries at process exit time.
2933 *
2934 * NOTE: This routine is just an optimization so it does not guarantee
2935 * that no dcache entries will exist at process exit time it
2936 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002937 */
2938
2939void proc_flush_task(struct task_struct *task)
2940{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002941 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002942 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002943 struct upid *upid;
2944
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002945 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002946 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002947
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002948 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002949 upid = &pid->numbers[i];
2950 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002951 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002952 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002953
2954 upid = &pid->numbers[pid->level];
2955 if (upid->nr == 1)
2956 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002957}
2958
Adrian Bunk9711ef92006-12-06 20:38:31 -08002959static struct dentry *proc_pid_instantiate(struct inode *dir,
2960 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002961 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002962{
2963 struct dentry *error = ERR_PTR(-ENOENT);
2964 struct inode *inode;
2965
Eric W. Biederman61a28782006-10-02 02:18:49 -07002966 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002967 if (!inode)
2968 goto out;
2969
2970 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2971 inode->i_op = &proc_tgid_base_inode_operations;
2972 inode->i_fop = &proc_tgid_base_operations;
2973 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002974
2975 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2976 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002977
Nick Pigginfb045ad2011-01-07 17:49:55 +11002978 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002979
2980 d_add(dentry, inode);
2981 /* Close the race of the process dying before we return the dentry */
2982 if (pid_revalidate(dentry, NULL))
2983 error = NULL;
2984out:
2985 return error;
2986}
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2989{
Dan Carpenter73d36462010-05-26 14:43:25 -07002990 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002993 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Eric W. Biederman801199c2006-10-02 02:18:48 -07002995 result = proc_base_lookup(dir, dentry);
2996 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2997 goto out;
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 tgid = name_to_int(dentry);
3000 if (tgid == ~0U)
3001 goto out;
3002
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003003 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003004 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003005 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (task)
3007 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003008 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (!task)
3010 goto out;
3011
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003012 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003013 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07003015 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003019 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003022struct tgid_iter {
3023 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003024 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003025};
3026static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3027{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003028 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003030 if (iter.task)
3031 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003032 rcu_read_lock();
3033retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003034 iter.task = NULL;
3035 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003036 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003037 iter.tgid = pid_nr_ns(pid, ns);
3038 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003039 /* What we to know is if the pid we have find is the
3040 * pid of a thread_group_leader. Testing for task
3041 * being a thread_group_leader is the obvious thing
3042 * todo but there is a window when it fails, due to
3043 * the pid transfer logic in de_thread.
3044 *
3045 * So we perform the straight forward test of seeing
3046 * if the pid we have found is the pid of a thread
3047 * group leader, and don't worry if the task we have
3048 * found doesn't happen to be a thread group leader.
3049 * As we don't care in the case of readdir.
3050 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003051 if (!iter.task || !has_group_leader_pid(iter.task)) {
3052 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003053 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003054 }
3055 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003057 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003058 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
3060
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003061#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Eric W. Biederman61a28782006-10-02 02:18:49 -07003063static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003064 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07003065{
3066 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003067 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003068 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003069 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003070}
3071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072/* for the /proc/ directory itself, after non-process stuff has been done */
3073int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
3074{
Linus Torvaldsd8bdc592011-04-18 10:36:54 -07003075 unsigned int nr;
3076 struct task_struct *reaper;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003077 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003078 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Linus Torvaldsd8bdc592011-04-18 10:36:54 -07003080 if (filp->f_pos >= PID_MAX_LIMIT + TGID_OFFSET)
3081 goto out_no_task;
3082 nr = filp->f_pos - FIRST_PROCESS_ENTRY;
3083
3084 reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003085 if (!reaper)
3086 goto out_no_task;
3087
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003088 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07003089 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07003090 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07003091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003094 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003095 iter.task = NULL;
3096 iter.tgid = filp->f_pos - TGID_OFFSET;
3097 for (iter = next_tgid(ns, iter);
3098 iter.task;
3099 iter.tgid += 1, iter = next_tgid(ns, iter)) {
3100 filp->f_pos = iter.tgid + TGID_OFFSET;
3101 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
3102 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003106 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
3107out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07003108 put_task_struct(reaper);
3109out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return 0;
3111}
3112
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003113/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003114 * Tasks
3115 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003116static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003117 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003118 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003119 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003120 REG("environ", S_IRUSR, proc_environ_operations),
3121 INF("auxv", S_IRUSR, proc_pid_auxv),
3122 ONE("status", S_IRUGO, proc_pid_status),
Al Viroa9712bc2011-03-23 15:52:50 -04003123 ONE("personality", S_IRUGO, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003124 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003125#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003126 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003127#endif
john stultz4614a696b2009-12-14 18:00:05 -08003128 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003129#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Al Viroa9712bc2011-03-23 15:52:50 -04003130 INF("syscall", S_IRUGO, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003131#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003132 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3133 ONE("stat", S_IRUGO, proc_tid_stat),
3134 ONE("statm", S_IRUGO, proc_pid_statm),
3135 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003136#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003137 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003138#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003139 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3140 LNK("cwd", proc_cwd_link),
3141 LNK("root", proc_root_link),
3142 LNK("exe", proc_exe_link),
3143 REG("mounts", S_IRUGO, proc_mounts_operations),
3144 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003145#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003146 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3147 REG("smaps", S_IRUGO, proc_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05003148 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003149#endif
3150#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003151 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003152#endif
3153#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003154 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003155#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003156#ifdef CONFIG_STACKTRACE
Al Viroa9712bc2011-03-23 15:52:50 -04003157 ONE("stack", S_IRUGO, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003158#endif
3159#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003160 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003161#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003162#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003163 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003164#endif
Paul Menage8793d852007-10-18 23:39:39 -07003165#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003166 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003167#endif
Paul Menagea4243162007-10-18 23:39:35 -07003168#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003169 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003170#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003171 INF("oom_score", S_IRUGO, proc_oom_score),
3172 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003173 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003174#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003175 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003176 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003177#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003178#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003179 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003180#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003181#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003182 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003183#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003184};
3185
3186static int proc_tid_base_readdir(struct file * filp,
3187 void * dirent, filldir_t filldir)
3188{
3189 return proc_pident_readdir(filp,dirent,filldir,
3190 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3191}
3192
3193static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003194 return proc_pident_lookup(dir, dentry,
3195 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003196}
3197
Arjan van de Ven00977a52007-02-12 00:55:34 -08003198static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003199 .read = generic_read_dir,
3200 .readdir = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003201 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003202};
3203
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003204static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003205 .lookup = proc_tid_base_lookup,
3206 .getattr = pid_getattr,
3207 .setattr = proc_setattr,
3208};
3209
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003210static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003211 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003212{
3213 struct dentry *error = ERR_PTR(-ENOENT);
3214 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003215 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003216
3217 if (!inode)
3218 goto out;
3219 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3220 inode->i_op = &proc_tid_base_inode_operations;
3221 inode->i_fop = &proc_tid_base_operations;
3222 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003223
3224 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3225 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003226
Nick Pigginfb045ad2011-01-07 17:49:55 +11003227 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003228
3229 d_add(dentry, inode);
3230 /* Close the race of the process dying before we return the dentry */
3231 if (pid_revalidate(dentry, NULL))
3232 error = NULL;
3233out:
3234 return error;
3235}
3236
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003237static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3238{
3239 struct dentry *result = ERR_PTR(-ENOENT);
3240 struct task_struct *task;
3241 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003242 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003243 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003244
3245 if (!leader)
3246 goto out_no_task;
3247
3248 tid = name_to_int(dentry);
3249 if (tid == ~0U)
3250 goto out;
3251
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003252 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003253 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003254 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003255 if (task)
3256 get_task_struct(task);
3257 rcu_read_unlock();
3258 if (!task)
3259 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003260 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003261 goto out_drop_task;
3262
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003263 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003264out_drop_task:
3265 put_task_struct(task);
3266out:
3267 put_task_struct(leader);
3268out_no_task:
3269 return result;
3270}
3271
3272/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003273 * Find the first tid of a thread group to return to user space.
3274 *
3275 * Usually this is just the thread group leader, but if the users
3276 * buffer was too small or there was a seek into the middle of the
3277 * directory we have more work todo.
3278 *
3279 * In the case of a short read we start with find_task_by_pid.
3280 *
3281 * In the case of a seek we start with the leader and walk nr
3282 * threads past it.
3283 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003284static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003285 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003286{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003287 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003288
Eric W. Biedermancc288732006-06-26 00:26:01 -07003289 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003290 /* Attempt to start with the pid of a thread */
3291 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003292 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003293 if (pos && (pos->group_leader == leader))
3294 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003295 }
3296
3297 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003298 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003299 if (nr && nr >= get_nr_threads(leader))
3300 goto out;
3301
3302 /* If we haven't found our starting place yet start
3303 * with the leader and walk nr threads forward.
3304 */
3305 for (pos = leader; nr > 0; --nr) {
3306 pos = next_thread(pos);
3307 if (pos == leader) {
3308 pos = NULL;
3309 goto out;
3310 }
3311 }
3312found:
3313 get_task_struct(pos);
3314out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003315 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003316 return pos;
3317}
3318
3319/*
3320 * Find the next thread in the thread list.
3321 * Return NULL if there is an error or no next thread.
3322 *
3323 * The reference to the input task_struct is released.
3324 */
3325static struct task_struct *next_tid(struct task_struct *start)
3326{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003327 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003328 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003329 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003330 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003331 if (thread_group_leader(pos))
3332 pos = NULL;
3333 else
3334 get_task_struct(pos);
3335 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003336 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003337 put_task_struct(start);
3338 return pos;
3339}
3340
Eric W. Biederman61a28782006-10-02 02:18:49 -07003341static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3342 struct task_struct *task, int tid)
3343{
3344 char name[PROC_NUMBUF];
3345 int len = snprintf(name, sizeof(name), "%d", tid);
3346 return proc_fill_cache(filp, dirent, filldir, name, len,
3347 proc_task_instantiate, task, NULL);
3348}
3349
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350/* for the /proc/TGID/task/ directories */
3351static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3352{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003353 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003355 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003356 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 int retval = -ENOENT;
3358 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003359 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003360 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003362 task = get_proc_task(inode);
3363 if (!task)
3364 goto out_no_task;
3365 rcu_read_lock();
3366 if (pid_alive(task)) {
3367 leader = task->group_leader;
3368 get_task_struct(leader);
3369 }
3370 rcu_read_unlock();
3371 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003372 if (!leader)
3373 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 retval = 0;
3375
Linus Torvaldsee568b22009-03-17 10:02:35 -07003376 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 case 0:
3378 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003379 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003381 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /* fall through */
3383 case 1:
3384 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003385 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003387 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 /* fall through */
3389 }
3390
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003391 /* f_version caches the tgid value that the last readdir call couldn't
3392 * return. lseek aka telldir automagically resets f_version to 0.
3393 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003394 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003395 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003396 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003397 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003398 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003399 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003400 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003401 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003402 /* returning this tgid failed, save it as the first
3403 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003404 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003405 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
3409out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003410 put_task_struct(leader);
3411out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 return retval;
3413}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003414
3415static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3416{
3417 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003418 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003419 generic_fillattr(inode, stat);
3420
Eric W. Biederman99f89552006-06-26 00:25:55 -07003421 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003422 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003423 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003424 }
3425
3426 return 0;
3427}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003428
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003429static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003430 .lookup = proc_task_lookup,
3431 .getattr = proc_task_getattr,
3432 .setattr = proc_setattr,
3433};
3434
Arjan van de Ven00977a52007-02-12 00:55:34 -08003435static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003436 .read = generic_read_dir,
3437 .readdir = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003438 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003439};