blob: 917f338a673992651144ae60e6f399a28f5d53c8 [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>
Dipankar Sarmab8359962005-09-09 13:04:14 -070066#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030068#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070069#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070070#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/mount.h>
72#include <linux/security.h>
73#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070074#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070075#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/cpuset.h>
77#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050078#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070079#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070080#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070081#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070082#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040083#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include "internal.h"
85
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070086/* NOTE:
87 * Implementing inode permission operations in /proc is almost
88 * certainly an error. Permission checks need to happen during
89 * each system call not at open time. The reason is that most of
90 * what we wish to check for permissions in /proc varies at runtime.
91 *
92 * The classic example of a problem is opening file descriptors
93 * in /proc for a task before it execs a suid executable.
94 */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -070098 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800100 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800101 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700102 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Eric W. Biederman61a28782006-10-02 02:18:49 -0700105#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700106 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700107 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .mode = MODE, \
109 .iop = IOP, \
110 .fop = FOP, \
111 .op = OP, \
112}
113
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300114#define DIR(NAME, MODE, iops, fops) \
115 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
116#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700117 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700118 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300119 { .proc_get_link = get_link } )
120#define REG(NAME, MODE, fops) \
121 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
122#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700123 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700124 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300125 { .proc_read = read } )
126#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800127 NOD(NAME, (S_IFREG|(MODE)), \
128 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300129 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Vegard Nossumaed54172008-06-05 22:46:53 -0700131/*
132 * Count the number of hardlinks for the pid_entry table, excluding the .
133 * and .. links.
134 */
135static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
136 unsigned int n)
137{
138 unsigned int i;
139 unsigned int count;
140
141 count = 0;
142 for (i = 0; i < n; ++i) {
143 if (S_ISDIR(entries[i].mode))
144 ++count;
145 }
146
147 return count;
148}
149
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000150static int get_fs_path(struct task_struct *task, struct path *path, bool root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct fs_struct *fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000153 int result = -ENOENT;
154
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700155 task_lock(task);
156 fs = task->fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000157 if (fs) {
158 read_lock(&fs->lock);
159 *path = root ? fs->root : fs->pwd;
160 path_get(path);
161 read_unlock(&fs->lock);
162 result = 0;
163 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700164 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000165 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166}
167
Eric W. Biederman99f89552006-06-26 00:25:55 -0700168static int get_nr_threads(struct task_struct *tsk)
169{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700170 unsigned long flags;
171 int count = 0;
172
173 if (lock_task_sighand(tsk, &flags)) {
174 count = atomic_read(&tsk->signal->count);
175 unlock_task_sighand(tsk, &flags);
176 }
177 return count;
178}
179
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800180static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700181{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700182 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700183 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184
185 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000186 result = get_fs_path(task, path, 0);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700187 put_task_struct(task);
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return result;
190}
191
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800192static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700194 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700196
197 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000198 result = get_fs_path(task, path, 1);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700199 put_task_struct(task);
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return result;
202}
203
Roland McGrath638fa202008-04-29 01:01:38 -0700204/*
205 * Return zero if current may access user memory in @task, -error if not.
206 */
207static int check_mem_permission(struct task_struct *task)
208{
209 /*
210 * A task can always look at itself, in case it chooses
211 * to use system calls instead of load instructions.
212 */
213 if (task == current)
214 return 0;
215
216 /*
217 * If current is actively ptrace'ing, and would also be
218 * permitted to freshly attach with ptrace now, permit it.
219 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700220 if (task_is_stopped_or_traced(task)) {
221 int match;
222 rcu_read_lock();
223 match = (tracehook_tracer_task(task) == current);
224 rcu_read_unlock();
225 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
226 return 0;
227 }
Roland McGrath638fa202008-04-29 01:01:38 -0700228
229 /*
230 * Noone else is allowed.
231 */
232 return -EPERM;
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Al Viro831830b2008-01-02 14:09:57 +0000235struct mm_struct *mm_for_maps(struct task_struct *task)
236{
237 struct mm_struct *mm = get_task_mm(task);
238 if (!mm)
239 return NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200240 if (mm != current->mm) {
241 /*
242 * task->mm can be changed before security check,
243 * in that case we must notice the change after.
244 */
245 if (!ptrace_may_access(task, PTRACE_MODE_READ) ||
246 mm != task->mm) {
247 mmput(mm);
248 return NULL;
249 }
250 }
Al Viro831830b2008-01-02 14:09:57 +0000251 down_read(&mm->mmap_sem);
Al Viro831830b2008-01-02 14:09:57 +0000252 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static int proc_pid_cmdline(struct task_struct *task, char * buffer)
256{
257 int res = 0;
258 unsigned int len;
259 struct mm_struct *mm = get_task_mm(task);
260 if (!mm)
261 goto out;
262 if (!mm->arg_end)
263 goto out_mm; /* Shh! No looking before we're done */
264
265 len = mm->arg_end - mm->arg_start;
266
267 if (len > PAGE_SIZE)
268 len = PAGE_SIZE;
269
270 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
271
272 // If the nul at the end of args has been overwritten, then
273 // assume application is using setproctitle(3).
274 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
275 len = strnlen(buffer, res);
276 if (len < res) {
277 res = len;
278 } else {
279 len = mm->env_end - mm->env_start;
280 if (len > PAGE_SIZE - res)
281 len = PAGE_SIZE - res;
282 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
283 res = strnlen(buffer, res);
284 }
285 }
286out_mm:
287 mmput(mm);
288out:
289 return res;
290}
291
292static int proc_pid_auxv(struct task_struct *task, char *buffer)
293{
294 int res = 0;
295 struct mm_struct *mm = get_task_mm(task);
296 if (mm) {
297 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300298 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300300 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 res = nwords * sizeof(mm->saved_auxv[0]);
302 if (res > PAGE_SIZE)
303 res = PAGE_SIZE;
304 memcpy(buffer, mm->saved_auxv, res);
305 mmput(mm);
306 }
307 return res;
308}
309
310
311#ifdef CONFIG_KALLSYMS
312/*
313 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
314 * Returns the resolved symbol. If that fails, simply return the address.
315 */
316static int proc_pid_wchan(struct task_struct *task, char *buffer)
317{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700318 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700319 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 wchan = get_wchan(task);
322
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700323 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600324 if (!ptrace_may_access(task, PTRACE_MODE_READ))
325 return 0;
326 else
327 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700328 else
329 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331#endif /* CONFIG_KALLSYMS */
332
Ken Chen2ec220e2008-11-10 11:26:08 +0300333#ifdef CONFIG_STACKTRACE
334
335#define MAX_STACK_TRACE_DEPTH 64
336
337static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
338 struct pid *pid, struct task_struct *task)
339{
340 struct stack_trace trace;
341 unsigned long *entries;
342 int i;
343
344 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
345 if (!entries)
346 return -ENOMEM;
347
348 trace.nr_entries = 0;
349 trace.max_entries = MAX_STACK_TRACE_DEPTH;
350 trace.entries = entries;
351 trace.skip = 0;
352 save_stack_trace_tsk(task, &trace);
353
354 for (i = 0; i < trace.nr_entries; i++) {
355 seq_printf(m, "[<%p>] %pS\n",
356 (void *)entries[i], (void *)entries[i]);
357 }
358 kfree(entries);
359
360 return 0;
361}
362#endif
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifdef CONFIG_SCHEDSTATS
365/*
366 * Provides /proc/PID/schedstat
367 */
368static int proc_pid_schedstat(struct task_struct *task, char *buffer)
369{
Balbir Singh172ba842007-07-09 18:52:00 +0200370 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100371 (unsigned long long)task->se.sum_exec_runtime,
372 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200373 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375#endif
376
Arjan van de Ven97455122008-01-25 21:08:34 +0100377#ifdef CONFIG_LATENCYTOP
378static int lstats_show_proc(struct seq_file *m, void *v)
379{
380 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800381 struct inode *inode = m->private;
382 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100383
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800384 if (!task)
385 return -ESRCH;
386 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100387 for (i = 0; i < 32; i++) {
388 if (task->latency_record[i].backtrace[0]) {
389 int q;
390 seq_printf(m, "%i %li %li ",
391 task->latency_record[i].count,
392 task->latency_record[i].time,
393 task->latency_record[i].max);
394 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800395 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100396 char *c;
397 if (!task->latency_record[i].backtrace[q])
398 break;
399 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
400 break;
401 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
402 c = strchr(sym, '+');
403 if (c)
404 *c = 0;
405 seq_printf(m, "%s ", sym);
406 }
407 seq_printf(m, "\n");
408 }
409
410 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800411 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100412 return 0;
413}
414
415static int lstats_open(struct inode *inode, struct file *file)
416{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800417 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800418}
419
Arjan van de Ven97455122008-01-25 21:08:34 +0100420static ssize_t lstats_write(struct file *file, const char __user *buf,
421 size_t count, loff_t *offs)
422{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800423 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100424
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800425 if (!task)
426 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100427 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800428 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100429
430 return count;
431}
432
433static const struct file_operations proc_lstats_operations = {
434 .open = lstats_open,
435 .read = seq_read,
436 .write = lstats_write,
437 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800438 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100439};
440
441#endif
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/* The badness from the OOM killer */
444unsigned long badness(struct task_struct *p, unsigned long uptime);
445static int proc_oom_score(struct task_struct *task, char *buffer)
446{
447 unsigned long points;
448 struct timespec uptime;
449
450 do_posix_clock_monotonic_gettime(&uptime);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700451 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 points = badness(task, uptime.tv_sec);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700453 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return sprintf(buffer, "%lu\n", points);
455}
456
Neil Hormand85f50d2007-10-18 23:40:37 -0700457struct limit_names {
458 char *name;
459 char *unit;
460};
461
462static const struct limit_names lnames[RLIM_NLIMITS] = {
463 [RLIMIT_CPU] = {"Max cpu time", "ms"},
464 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
465 [RLIMIT_DATA] = {"Max data size", "bytes"},
466 [RLIMIT_STACK] = {"Max stack size", "bytes"},
467 [RLIMIT_CORE] = {"Max core file size", "bytes"},
468 [RLIMIT_RSS] = {"Max resident set", "bytes"},
469 [RLIMIT_NPROC] = {"Max processes", "processes"},
470 [RLIMIT_NOFILE] = {"Max open files", "files"},
471 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
472 [RLIMIT_AS] = {"Max address space", "bytes"},
473 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
474 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
475 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
476 [RLIMIT_NICE] = {"Max nice priority", NULL},
477 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800478 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700479};
480
481/* Display limits for a process */
482static int proc_pid_limits(struct task_struct *task, char *buffer)
483{
484 unsigned int i;
485 int count = 0;
486 unsigned long flags;
487 char *bufptr = buffer;
488
489 struct rlimit rlim[RLIM_NLIMITS];
490
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400491 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700492 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700493 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
494 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700495
496 /*
497 * print the file header
498 */
499 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
500 "Limit", "Soft Limit", "Hard Limit", "Units");
501
502 for (i = 0; i < RLIM_NLIMITS; i++) {
503 if (rlim[i].rlim_cur == RLIM_INFINITY)
504 count += sprintf(&bufptr[count], "%-25s %-20s ",
505 lnames[i].name, "unlimited");
506 else
507 count += sprintf(&bufptr[count], "%-25s %-20lu ",
508 lnames[i].name, rlim[i].rlim_cur);
509
510 if (rlim[i].rlim_max == RLIM_INFINITY)
511 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
512 else
513 count += sprintf(&bufptr[count], "%-20lu ",
514 rlim[i].rlim_max);
515
516 if (lnames[i].unit)
517 count += sprintf(&bufptr[count], "%-10s\n",
518 lnames[i].unit);
519 else
520 count += sprintf(&bufptr[count], "\n");
521 }
522
523 return count;
524}
525
Roland McGrathebcb6732008-07-25 19:46:00 -0700526#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
527static int proc_pid_syscall(struct task_struct *task, char *buffer)
528{
529 long nr;
530 unsigned long args[6], sp, pc;
531
532 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
533 return sprintf(buffer, "running\n");
534
535 if (nr < 0)
536 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
537
538 return sprintf(buffer,
539 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
540 nr,
541 args[0], args[1], args[2], args[3], args[4], args[5],
542 sp, pc);
543}
544#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/************************************************************************/
547/* Here the fs part begins */
548/************************************************************************/
549
550/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700551static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700553 struct task_struct *task;
554 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700555 /* Allow access to a task's file descriptors if it is us or we
556 * may use ptrace attach to the process and find out that
557 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700558 */
559 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700560 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400561 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700562 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700563 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700564 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700567static int proc_setattr(struct dentry *dentry, struct iattr *attr)
568{
569 int error;
570 struct inode *inode = dentry->d_inode;
571
572 if (attr->ia_valid & ATTR_MODE)
573 return -EPERM;
574
575 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700576 if (!error)
577 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700578 return error;
579}
580
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800581static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700582 .setattr = proc_setattr,
583};
584
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100585static int mounts_open_common(struct inode *inode, struct file *file,
586 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700588 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700589 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800590 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100591 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500592 struct proc_mounts *p;
593 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Eric W. Biederman99f89552006-06-26 00:25:55 -0700595 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700596 rcu_read_lock();
597 nsp = task_nsproxy(task);
598 if (nsp) {
599 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800600 if (ns)
601 get_mnt_ns(ns);
602 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700603 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000604 if (ns && get_fs_path(task, &root, 1) == 0)
605 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700606 put_task_struct(task);
607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100609 if (!ns)
610 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000611 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100612 goto err_put_ns;
613
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100614 ret = -ENOMEM;
615 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
616 if (!p)
617 goto err_put_path;
618
619 file->private_data = &p->m;
620 ret = seq_open(file, op);
621 if (ret)
622 goto err_free;
623
624 p->m.private = p;
625 p->ns = ns;
626 p->root = root;
627 p->event = ns->event;
628
629 return 0;
630
631 err_free:
632 kfree(p);
633 err_put_path:
634 path_put(&root);
635 err_put_ns:
636 put_mnt_ns(ns);
637 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return ret;
639}
640
641static int mounts_release(struct inode *inode, struct file *file)
642{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100643 struct proc_mounts *p = file->private_data;
644 path_put(&p->root);
645 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return seq_release(inode, file);
647}
648
Al Viro5addc5d2005-11-07 17:15:49 -0500649static unsigned mounts_poll(struct file *file, poll_table *wait)
650{
651 struct proc_mounts *p = file->private_data;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100652 struct mnt_namespace *ns = p->ns;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900653 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500654
655 poll_wait(file, &ns->poll, wait);
656
657 spin_lock(&vfsmount_lock);
658 if (p->event != ns->event) {
659 p->event = ns->event;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900660 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500661 }
662 spin_unlock(&vfsmount_lock);
663
664 return res;
665}
666
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100667static int mounts_open(struct inode *inode, struct file *file)
668{
669 return mounts_open_common(inode, file, &mounts_op);
670}
671
Arjan van de Ven00977a52007-02-12 00:55:34 -0800672static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .open = mounts_open,
674 .read = seq_read,
675 .llseek = seq_lseek,
676 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500677 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678};
679
Ram Pai2d4d4862008-03-27 13:06:25 +0100680static int mountinfo_open(struct inode *inode, struct file *file)
681{
682 return mounts_open_common(inode, file, &mountinfo_op);
683}
684
685static const struct file_operations proc_mountinfo_operations = {
686 .open = mountinfo_open,
687 .read = seq_read,
688 .llseek = seq_lseek,
689 .release = mounts_release,
690 .poll = mounts_poll,
691};
692
Chuck Leverb4629fe2006-03-20 13:44:12 -0500693static int mountstats_open(struct inode *inode, struct file *file)
694{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100695 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500696}
697
Arjan van de Ven00977a52007-02-12 00:55:34 -0800698static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500699 .open = mountstats_open,
700 .read = seq_read,
701 .llseek = seq_lseek,
702 .release = mounts_release,
703};
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
706
707static ssize_t proc_info_read(struct file * file, char __user * buf,
708 size_t count, loff_t *ppos)
709{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800710 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned long page;
712 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700713 struct task_struct *task = get_proc_task(inode);
714
715 length = -ESRCH;
716 if (!task)
717 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (count > PROC_BLOCK_SIZE)
720 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700721
722 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700723 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700724 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 length = PROC_I(inode)->op.proc_read(task, (char*)page);
727
728 if (length >= 0)
729 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
730 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700731out:
732 put_task_struct(task);
733out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return length;
735}
736
Arjan van de Ven00977a52007-02-12 00:55:34 -0800737static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 .read = proc_info_read,
739};
740
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800741static int proc_single_show(struct seq_file *m, void *v)
742{
743 struct inode *inode = m->private;
744 struct pid_namespace *ns;
745 struct pid *pid;
746 struct task_struct *task;
747 int ret;
748
749 ns = inode->i_sb->s_fs_info;
750 pid = proc_pid(inode);
751 task = get_pid_task(pid, PIDTYPE_PID);
752 if (!task)
753 return -ESRCH;
754
755 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
756
757 put_task_struct(task);
758 return ret;
759}
760
761static int proc_single_open(struct inode *inode, struct file *filp)
762{
763 int ret;
764 ret = single_open(filp, proc_single_show, NULL);
765 if (!ret) {
766 struct seq_file *m = filp->private_data;
767
768 m->private = inode;
769 }
770 return ret;
771}
772
773static const struct file_operations proc_single_file_operations = {
774 .open = proc_single_open,
775 .read = seq_read,
776 .llseek = seq_lseek,
777 .release = single_release,
778};
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780static int mem_open(struct inode* inode, struct file* file)
781{
782 file->private_data = (void*)((long)current->self_exec_id);
783 return 0;
784}
785
786static ssize_t mem_read(struct file * file, char __user * buf,
787 size_t count, loff_t *ppos)
788{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800789 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 char *page;
791 unsigned long src = *ppos;
792 int ret = -ESRCH;
793 struct mm_struct *mm;
794
Eric W. Biederman99f89552006-06-26 00:25:55 -0700795 if (!task)
796 goto out_no_task;
797
Roland McGrath638fa202008-04-29 01:01:38 -0700798 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 goto out;
800
801 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700802 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (!page)
804 goto out;
805
806 ret = 0;
807
808 mm = get_task_mm(task);
809 if (!mm)
810 goto out_free;
811
812 ret = -EIO;
813
814 if (file->private_data != (void*)((long)current->self_exec_id))
815 goto out_put;
816
817 ret = 0;
818
819 while (count > 0) {
820 int this_len, retval;
821
822 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
823 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700824 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!ret)
826 ret = -EIO;
827 break;
828 }
829
830 if (copy_to_user(buf, page, retval)) {
831 ret = -EFAULT;
832 break;
833 }
834
835 ret += retval;
836 src += retval;
837 buf += retval;
838 count -= retval;
839 }
840 *ppos = src;
841
842out_put:
843 mmput(mm);
844out_free:
845 free_page((unsigned long) page);
846out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700847 put_task_struct(task);
848out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return ret;
850}
851
852#define mem_write NULL
853
854#ifndef mem_write
855/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800856static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 size_t count, loff_t *ppos)
858{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700859 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800861 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 unsigned long dst = *ppos;
863
Eric W. Biederman99f89552006-06-26 00:25:55 -0700864 copied = -ESRCH;
865 if (!task)
866 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Roland McGrath638fa202008-04-29 01:01:38 -0700868 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700869 goto out;
870
871 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700872 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700874 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700876 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 while (count > 0) {
878 int this_len, retval;
879
880 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
881 if (copy_from_user(page, buf, this_len)) {
882 copied = -EFAULT;
883 break;
884 }
885 retval = access_process_vm(task, dst, page, this_len, 1);
886 if (!retval) {
887 if (!copied)
888 copied = -EIO;
889 break;
890 }
891 copied += retval;
892 buf += retval;
893 dst += retval;
894 count -= retval;
895 }
896 *ppos = dst;
897 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700898out:
899 put_task_struct(task);
900out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return copied;
902}
903#endif
904
Matt Mackall85863e42008-02-04 22:29:04 -0800905loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 switch (orig) {
908 case 0:
909 file->f_pos = offset;
910 break;
911 case 1:
912 file->f_pos += offset;
913 break;
914 default:
915 return -EINVAL;
916 }
917 force_successful_syscall_return();
918 return file->f_pos;
919}
920
Arjan van de Ven00977a52007-02-12 00:55:34 -0800921static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 .llseek = mem_lseek,
923 .read = mem_read,
924 .write = mem_write,
925 .open = mem_open,
926};
927
James Pearson315e28c2007-10-16 23:30:17 -0700928static ssize_t environ_read(struct file *file, char __user *buf,
929 size_t count, loff_t *ppos)
930{
931 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
932 char *page;
933 unsigned long src = *ppos;
934 int ret = -ESRCH;
935 struct mm_struct *mm;
936
937 if (!task)
938 goto out_no_task;
939
Stephen Smalley006ebb42008-05-19 08:32:49 -0400940 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700941 goto out;
942
943 ret = -ENOMEM;
944 page = (char *)__get_free_page(GFP_TEMPORARY);
945 if (!page)
946 goto out;
947
948 ret = 0;
949
950 mm = get_task_mm(task);
951 if (!mm)
952 goto out_free;
953
954 while (count > 0) {
955 int this_len, retval, max_len;
956
957 this_len = mm->env_end - (mm->env_start + src);
958
959 if (this_len <= 0)
960 break;
961
962 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
963 this_len = (this_len > max_len) ? max_len : this_len;
964
965 retval = access_process_vm(task, (mm->env_start + src),
966 page, this_len, 0);
967
968 if (retval <= 0) {
969 ret = retval;
970 break;
971 }
972
973 if (copy_to_user(buf, page, retval)) {
974 ret = -EFAULT;
975 break;
976 }
977
978 ret += retval;
979 src += retval;
980 buf += retval;
981 count -= retval;
982 }
983 *ppos = src;
984
985 mmput(mm);
986out_free:
987 free_page((unsigned long) page);
988out:
989 put_task_struct(task);
990out_no_task:
991 return ret;
992}
993
994static const struct file_operations proc_environ_operations = {
995 .read = environ_read,
996};
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static ssize_t oom_adjust_read(struct file *file, char __user *buf,
999 size_t count, loff_t *ppos)
1000{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001001 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001002 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 size_t len;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001004 int oom_adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Eric W. Biederman99f89552006-06-26 00:25:55 -07001006 if (!task)
1007 return -ESRCH;
David Rientjes2ff05b22009-06-16 15:32:56 -07001008 task_lock(task);
1009 if (task->mm)
1010 oom_adjust = task->mm->oom_adj;
1011 else
1012 oom_adjust = OOM_DISABLE;
1013 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001014 put_task_struct(task);
1015
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001016 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001017
1018 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1022 size_t count, loff_t *ppos)
1023{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001024 struct task_struct *task;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001025 char buffer[PROC_NUMBUF], *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 int oom_adjust;
1027
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001028 memset(buffer, 0, sizeof(buffer));
1029 if (count > sizeof(buffer) - 1)
1030 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (copy_from_user(buffer, buf, count))
1032 return -EFAULT;
1033 oom_adjust = simple_strtol(buffer, &end, 0);
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001034 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
1035 oom_adjust != OOM_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return -EINVAL;
1037 if (*end == '\n')
1038 end++;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001039 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001040 if (!task)
1041 return -ESRCH;
David Rientjes2ff05b22009-06-16 15:32:56 -07001042 task_lock(task);
1043 if (!task->mm) {
1044 task_unlock(task);
1045 put_task_struct(task);
1046 return -EINVAL;
1047 }
1048 if (oom_adjust < task->mm->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1049 task_unlock(task);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001050 put_task_struct(task);
1051 return -EACCES;
1052 }
David Rientjes2ff05b22009-06-16 15:32:56 -07001053 task->mm->oom_adj = oom_adjust;
1054 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001055 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (end - buffer == 0)
1057 return -EIO;
1058 return end - buffer;
1059}
1060
Arjan van de Ven00977a52007-02-12 00:55:34 -08001061static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 .read = oom_adjust_read,
1063 .write = oom_adjust_write,
1064};
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066#ifdef CONFIG_AUDITSYSCALL
1067#define TMPBUFLEN 21
1068static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1069 size_t count, loff_t *ppos)
1070{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001071 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001072 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 ssize_t length;
1074 char tmpbuf[TMPBUFLEN];
1075
Eric W. Biederman99f89552006-06-26 00:25:55 -07001076 if (!task)
1077 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001079 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001080 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1082}
1083
1084static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1085 size_t count, loff_t *ppos)
1086{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001087 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 char *page, *tmp;
1089 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 uid_t loginuid;
1091
1092 if (!capable(CAP_AUDIT_CONTROL))
1093 return -EPERM;
1094
Eric W. Biederman13b41b02006-06-26 00:25:56 -07001095 if (current != pid_task(proc_pid(inode), PIDTYPE_PID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return -EPERM;
1097
Al Viroe0182902006-05-18 08:28:02 -04001098 if (count >= PAGE_SIZE)
1099 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (*ppos != 0) {
1102 /* No partial writes. */
1103 return -EINVAL;
1104 }
Mel Gormane12ba742007-10-16 01:25:52 -07001105 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (!page)
1107 return -ENOMEM;
1108 length = -EFAULT;
1109 if (copy_from_user(page, buf, count))
1110 goto out_free_page;
1111
Al Viroe0182902006-05-18 08:28:02 -04001112 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 loginuid = simple_strtoul(page, &tmp, 10);
1114 if (tmp == page) {
1115 length = -EINVAL;
1116 goto out_free_page;
1117
1118 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001119 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (likely(length == 0))
1121 length = count;
1122
1123out_free_page:
1124 free_page((unsigned long) page);
1125 return length;
1126}
1127
Arjan van de Ven00977a52007-02-12 00:55:34 -08001128static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 .read = proc_loginuid_read,
1130 .write = proc_loginuid_write,
1131};
Eric Paris1e0bd752008-03-13 08:15:31 -04001132
1133static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1134 size_t count, loff_t *ppos)
1135{
1136 struct inode * inode = file->f_path.dentry->d_inode;
1137 struct task_struct *task = get_proc_task(inode);
1138 ssize_t length;
1139 char tmpbuf[TMPBUFLEN];
1140
1141 if (!task)
1142 return -ESRCH;
1143 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1144 audit_get_sessionid(task));
1145 put_task_struct(task);
1146 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1147}
1148
1149static const struct file_operations proc_sessionid_operations = {
1150 .read = proc_sessionid_read,
1151};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152#endif
1153
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001154#ifdef CONFIG_FAULT_INJECTION
1155static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1156 size_t count, loff_t *ppos)
1157{
1158 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1159 char buffer[PROC_NUMBUF];
1160 size_t len;
1161 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001162
1163 if (!task)
1164 return -ESRCH;
1165 make_it_fail = task->make_it_fail;
1166 put_task_struct(task);
1167
1168 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001169
1170 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001171}
1172
1173static ssize_t proc_fault_inject_write(struct file * file,
1174 const char __user * buf, size_t count, loff_t *ppos)
1175{
1176 struct task_struct *task;
1177 char buffer[PROC_NUMBUF], *end;
1178 int make_it_fail;
1179
1180 if (!capable(CAP_SYS_RESOURCE))
1181 return -EPERM;
1182 memset(buffer, 0, sizeof(buffer));
1183 if (count > sizeof(buffer) - 1)
1184 count = sizeof(buffer) - 1;
1185 if (copy_from_user(buffer, buf, count))
1186 return -EFAULT;
1187 make_it_fail = simple_strtol(buffer, &end, 0);
1188 if (*end == '\n')
1189 end++;
1190 task = get_proc_task(file->f_dentry->d_inode);
1191 if (!task)
1192 return -ESRCH;
1193 task->make_it_fail = make_it_fail;
1194 put_task_struct(task);
1195 if (end - buffer == 0)
1196 return -EIO;
1197 return end - buffer;
1198}
1199
Arjan van de Ven00977a52007-02-12 00:55:34 -08001200static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001201 .read = proc_fault_inject_read,
1202 .write = proc_fault_inject_write,
1203};
1204#endif
1205
Arjan van de Ven97455122008-01-25 21:08:34 +01001206
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001207#ifdef CONFIG_SCHED_DEBUG
1208/*
1209 * Print out various scheduling related per-task fields:
1210 */
1211static int sched_show(struct seq_file *m, void *v)
1212{
1213 struct inode *inode = m->private;
1214 struct task_struct *p;
1215
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001216 p = get_proc_task(inode);
1217 if (!p)
1218 return -ESRCH;
1219 proc_sched_show_task(p, m);
1220
1221 put_task_struct(p);
1222
1223 return 0;
1224}
1225
1226static ssize_t
1227sched_write(struct file *file, const char __user *buf,
1228 size_t count, loff_t *offset)
1229{
1230 struct inode *inode = file->f_path.dentry->d_inode;
1231 struct task_struct *p;
1232
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001233 p = get_proc_task(inode);
1234 if (!p)
1235 return -ESRCH;
1236 proc_sched_set_task(p);
1237
1238 put_task_struct(p);
1239
1240 return count;
1241}
1242
1243static int sched_open(struct inode *inode, struct file *filp)
1244{
1245 int ret;
1246
1247 ret = single_open(filp, sched_show, NULL);
1248 if (!ret) {
1249 struct seq_file *m = filp->private_data;
1250
1251 m->private = inode;
1252 }
1253 return ret;
1254}
1255
1256static const struct file_operations proc_pid_sched_operations = {
1257 .open = sched_open,
1258 .read = seq_read,
1259 .write = sched_write,
1260 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001261 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001262};
1263
1264#endif
1265
Matt Helsley925d1c42008-04-29 01:01:36 -07001266/*
1267 * We added or removed a vma mapping the executable. The vmas are only mapped
1268 * during exec and are not mapped with the mmap system call.
1269 * Callers must hold down_write() on the mm's mmap_sem for these
1270 */
1271void added_exe_file_vma(struct mm_struct *mm)
1272{
1273 mm->num_exe_file_vmas++;
1274}
1275
1276void removed_exe_file_vma(struct mm_struct *mm)
1277{
1278 mm->num_exe_file_vmas--;
1279 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1280 fput(mm->exe_file);
1281 mm->exe_file = NULL;
1282 }
1283
1284}
1285
1286void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1287{
1288 if (new_exe_file)
1289 get_file(new_exe_file);
1290 if (mm->exe_file)
1291 fput(mm->exe_file);
1292 mm->exe_file = new_exe_file;
1293 mm->num_exe_file_vmas = 0;
1294}
1295
1296struct file *get_mm_exe_file(struct mm_struct *mm)
1297{
1298 struct file *exe_file;
1299
1300 /* We need mmap_sem to protect against races with removal of
1301 * VM_EXECUTABLE vmas */
1302 down_read(&mm->mmap_sem);
1303 exe_file = mm->exe_file;
1304 if (exe_file)
1305 get_file(exe_file);
1306 up_read(&mm->mmap_sem);
1307 return exe_file;
1308}
1309
1310void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1311{
1312 /* It's safe to write the exe_file pointer without exe_file_lock because
1313 * this is called during fork when the task is not yet in /proc */
1314 newmm->exe_file = get_mm_exe_file(oldmm);
1315}
1316
1317static int proc_exe_link(struct inode *inode, struct path *exe_path)
1318{
1319 struct task_struct *task;
1320 struct mm_struct *mm;
1321 struct file *exe_file;
1322
1323 task = get_proc_task(inode);
1324 if (!task)
1325 return -ENOENT;
1326 mm = get_task_mm(task);
1327 put_task_struct(task);
1328 if (!mm)
1329 return -ENOENT;
1330 exe_file = get_mm_exe_file(mm);
1331 mmput(mm);
1332 if (exe_file) {
1333 *exe_path = exe_file->f_path;
1334 path_get(&exe_file->f_path);
1335 fput(exe_file);
1336 return 0;
1337 } else
1338 return -ENOENT;
1339}
1340
Al Viro008b1502005-08-20 00:17:39 +01001341static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
1343 struct inode *inode = dentry->d_inode;
1344 int error = -EACCES;
1345
1346 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001347 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Eric W. Biederman778c1142006-06-26 00:25:58 -07001349 /* Are we allowed to snoop on the tasks file descriptors? */
1350 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001353 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 nd->last_type = LAST_BIND;
1355out:
Al Viro008b1502005-08-20 00:17:39 +01001356 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001359static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Mel Gormane12ba742007-10-16 01:25:52 -07001361 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001362 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 int len;
1364
1365 if (!tmp)
1366 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001367
Jan Blunckcf28b482008-02-14 19:38:44 -08001368 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001369 len = PTR_ERR(pathname);
1370 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001372 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 if (len > buflen)
1375 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001376 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 len = -EFAULT;
1378 out:
1379 free_page((unsigned long)tmp);
1380 return len;
1381}
1382
1383static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1384{
1385 int error = -EACCES;
1386 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001387 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Eric W. Biederman778c1142006-06-26 00:25:58 -07001389 /* Are we allowed to snoop on the tasks file descriptors? */
1390 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001393 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (error)
1395 goto out;
1396
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001397 error = do_proc_readlink(&path, buffer, buflen);
1398 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return error;
1401}
1402
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001403static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001405 .follow_link = proc_pid_follow_link,
1406 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407};
1408
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001409
1410/* building an inode */
1411
1412static int task_dumpable(struct task_struct *task)
1413{
1414 int dumpable = 0;
1415 struct mm_struct *mm;
1416
1417 task_lock(task);
1418 mm = task->mm;
1419 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001420 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001421 task_unlock(task);
1422 if(dumpable == 1)
1423 return 1;
1424 return 0;
1425}
1426
1427
Eric W. Biederman61a28782006-10-02 02:18:49 -07001428static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001429{
1430 struct inode * inode;
1431 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001432 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001433
1434 /* We need a new inode */
1435
1436 inode = new_inode(sb);
1437 if (!inode)
1438 goto out;
1439
1440 /* Common stuff */
1441 ei = PROC_I(inode);
1442 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001443 inode->i_op = &proc_def_inode_operations;
1444
1445 /*
1446 * grab the reference to task.
1447 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001448 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001449 if (!ei->pid)
1450 goto out_unlock;
1451
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001452 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001453 rcu_read_lock();
1454 cred = __task_cred(task);
1455 inode->i_uid = cred->euid;
1456 inode->i_gid = cred->egid;
1457 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001458 }
1459 security_task_to_inode(task, inode);
1460
1461out:
1462 return inode;
1463
1464out_unlock:
1465 iput(inode);
1466 return NULL;
1467}
1468
1469static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1470{
1471 struct inode *inode = dentry->d_inode;
1472 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001473 const struct cred *cred;
1474
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001475 generic_fillattr(inode, stat);
1476
1477 rcu_read_lock();
1478 stat->uid = 0;
1479 stat->gid = 0;
1480 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1481 if (task) {
1482 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1483 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001484 cred = __task_cred(task);
1485 stat->uid = cred->euid;
1486 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001487 }
1488 }
1489 rcu_read_unlock();
1490 return 0;
1491}
1492
1493/* dentry stuff */
1494
1495/*
1496 * Exceptional case: normally we are not allowed to unhash a busy
1497 * directory. In this case, however, we can do it - no aliasing problems
1498 * due to the way we treat inodes.
1499 *
1500 * Rewrite the inode's ownerships here because the owning task may have
1501 * performed a setuid(), etc.
1502 *
1503 * Before the /proc/pid/status file was created the only way to read
1504 * the effective uid of a /process was to stat /proc/pid. Reading
1505 * /proc/pid/status is slow enough that procps and other packages
1506 * kept stating /proc/pid. To keep the rules in /proc simple I have
1507 * made this apply to all per process world readable and executable
1508 * directories.
1509 */
1510static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1511{
1512 struct inode *inode = dentry->d_inode;
1513 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001514 const struct cred *cred;
1515
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001516 if (task) {
1517 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1518 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001519 rcu_read_lock();
1520 cred = __task_cred(task);
1521 inode->i_uid = cred->euid;
1522 inode->i_gid = cred->egid;
1523 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001524 } else {
1525 inode->i_uid = 0;
1526 inode->i_gid = 0;
1527 }
1528 inode->i_mode &= ~(S_ISUID | S_ISGID);
1529 security_task_to_inode(task, inode);
1530 put_task_struct(task);
1531 return 1;
1532 }
1533 d_drop(dentry);
1534 return 0;
1535}
1536
1537static int pid_delete_dentry(struct dentry * dentry)
1538{
1539 /* Is the task we represent dead?
1540 * If so, then don't put the dentry on the lru list,
1541 * kill it immediately.
1542 */
1543 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1544}
1545
Al Virod72f71e2009-02-20 05:58:47 +00001546static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001547{
1548 .d_revalidate = pid_revalidate,
1549 .d_delete = pid_delete_dentry,
1550};
1551
1552/* Lookups */
1553
Eric Dumazetc5141e62007-05-08 00:26:15 -07001554typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1555 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001556
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001557/*
1558 * Fill a directory entry.
1559 *
1560 * If possible create the dcache entry and derive our inode number and
1561 * file type from dcache entry.
1562 *
1563 * Since all of the proc inode numbers are dynamically generated, the inode
1564 * numbers do not exist until the inode is cache. This means creating the
1565 * the dcache entry in readdir is necessary to keep the inode numbers
1566 * reported by readdir in sync with the inode numbers reported
1567 * by stat.
1568 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001569static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1570 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001571 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001572{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001573 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001574 struct inode *inode;
1575 struct qstr qname;
1576 ino_t ino = 0;
1577 unsigned type = DT_UNKNOWN;
1578
1579 qname.name = name;
1580 qname.len = len;
1581 qname.hash = full_name_hash(name, len);
1582
1583 child = d_lookup(dir, &qname);
1584 if (!child) {
1585 struct dentry *new;
1586 new = d_alloc(dir, &qname);
1587 if (new) {
1588 child = instantiate(dir->d_inode, new, task, ptr);
1589 if (child)
1590 dput(new);
1591 else
1592 child = new;
1593 }
1594 }
1595 if (!child || IS_ERR(child) || !child->d_inode)
1596 goto end_instantiate;
1597 inode = child->d_inode;
1598 if (inode) {
1599 ino = inode->i_ino;
1600 type = inode->i_mode >> 12;
1601 }
1602 dput(child);
1603end_instantiate:
1604 if (!ino)
1605 ino = find_inode_number(dir, &qname);
1606 if (!ino)
1607 ino = 1;
1608 return filldir(dirent, name, len, filp->f_pos, ino, type);
1609}
1610
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001611static unsigned name_to_int(struct dentry *dentry)
1612{
1613 const char *name = dentry->d_name.name;
1614 int len = dentry->d_name.len;
1615 unsigned n = 0;
1616
1617 if (len > 1 && *name == '0')
1618 goto out;
1619 while (len-- > 0) {
1620 unsigned c = *name++ - '0';
1621 if (c > 9)
1622 goto out;
1623 if (n >= (~0U-9)/10)
1624 goto out;
1625 n *= 10;
1626 n += c;
1627 }
1628 return n;
1629out:
1630 return ~0U;
1631}
1632
Miklos Szeredi27932742007-05-08 00:26:17 -07001633#define PROC_FDINFO_MAX 64
1634
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001635static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001636{
1637 struct task_struct *task = get_proc_task(inode);
1638 struct files_struct *files = NULL;
1639 struct file *file;
1640 int fd = proc_fd(inode);
1641
1642 if (task) {
1643 files = get_files_struct(task);
1644 put_task_struct(task);
1645 }
1646 if (files) {
1647 /*
1648 * We are not taking a ref to the file structure, so we must
1649 * hold ->file_lock.
1650 */
1651 spin_lock(&files->file_lock);
1652 file = fcheck_files(files, fd);
1653 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001654 if (path) {
1655 *path = file->f_path;
1656 path_get(&file->f_path);
1657 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001658 if (info)
1659 snprintf(info, PROC_FDINFO_MAX,
1660 "pos:\t%lli\n"
1661 "flags:\t0%o\n",
1662 (long long) file->f_pos,
1663 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001664 spin_unlock(&files->file_lock);
1665 put_files_struct(files);
1666 return 0;
1667 }
1668 spin_unlock(&files->file_lock);
1669 put_files_struct(files);
1670 }
1671 return -ENOENT;
1672}
1673
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001674static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001675{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001676 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001677}
1678
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001679static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1680{
1681 struct inode *inode = dentry->d_inode;
1682 struct task_struct *task = get_proc_task(inode);
1683 int fd = proc_fd(inode);
1684 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001685 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001686
1687 if (task) {
1688 files = get_files_struct(task);
1689 if (files) {
1690 rcu_read_lock();
1691 if (fcheck_files(files, fd)) {
1692 rcu_read_unlock();
1693 put_files_struct(files);
1694 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001695 rcu_read_lock();
1696 cred = __task_cred(task);
1697 inode->i_uid = cred->euid;
1698 inode->i_gid = cred->egid;
1699 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001700 } else {
1701 inode->i_uid = 0;
1702 inode->i_gid = 0;
1703 }
1704 inode->i_mode &= ~(S_ISUID | S_ISGID);
1705 security_task_to_inode(task, inode);
1706 put_task_struct(task);
1707 return 1;
1708 }
1709 rcu_read_unlock();
1710 put_files_struct(files);
1711 }
1712 put_task_struct(task);
1713 }
1714 d_drop(dentry);
1715 return 0;
1716}
1717
Al Virod72f71e2009-02-20 05:58:47 +00001718static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001719{
1720 .d_revalidate = tid_fd_revalidate,
1721 .d_delete = pid_delete_dentry,
1722};
1723
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001724static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001725 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001726{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001727 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001728 struct file *file;
1729 struct files_struct *files;
1730 struct inode *inode;
1731 struct proc_inode *ei;
1732 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001733
Eric W. Biederman61a28782006-10-02 02:18:49 -07001734 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001735 if (!inode)
1736 goto out;
1737 ei = PROC_I(inode);
1738 ei->fd = fd;
1739 files = get_files_struct(task);
1740 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001741 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001742 inode->i_mode = S_IFLNK;
1743
1744 /*
1745 * We are not taking a ref to the file structure, so we must
1746 * hold ->file_lock.
1747 */
1748 spin_lock(&files->file_lock);
1749 file = fcheck_files(files, fd);
1750 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001751 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001752 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001753 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001754 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001755 inode->i_mode |= S_IWUSR | S_IXUSR;
1756 spin_unlock(&files->file_lock);
1757 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001758
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001759 inode->i_op = &proc_pid_link_inode_operations;
1760 inode->i_size = 64;
1761 ei->op.proc_get_link = proc_fd_link;
1762 dentry->d_op = &tid_fd_dentry_operations;
1763 d_add(dentry, inode);
1764 /* Close the race of the process dying before we return the dentry */
1765 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001766 error = NULL;
1767
1768 out:
1769 return error;
1770out_unlock:
1771 spin_unlock(&files->file_lock);
1772 put_files_struct(files);
1773out_iput:
1774 iput(inode);
1775 goto out;
1776}
1777
Miklos Szeredi27932742007-05-08 00:26:17 -07001778static struct dentry *proc_lookupfd_common(struct inode *dir,
1779 struct dentry *dentry,
1780 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001781{
1782 struct task_struct *task = get_proc_task(dir);
1783 unsigned fd = name_to_int(dentry);
1784 struct dentry *result = ERR_PTR(-ENOENT);
1785
1786 if (!task)
1787 goto out_no_task;
1788 if (fd == ~0U)
1789 goto out;
1790
Miklos Szeredi27932742007-05-08 00:26:17 -07001791 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001792out:
1793 put_task_struct(task);
1794out_no_task:
1795 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001796}
1797
Miklos Szeredi27932742007-05-08 00:26:17 -07001798static int proc_readfd_common(struct file * filp, void * dirent,
1799 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001801 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001802 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001803 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001804 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 struct files_struct * files;
1807
1808 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001809 if (!p)
1810 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 fd = filp->f_pos;
1814 switch (fd) {
1815 case 0:
1816 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1817 goto out;
1818 filp->f_pos++;
1819 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001820 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1822 goto out;
1823 filp->f_pos++;
1824 default:
1825 files = get_files_struct(p);
1826 if (!files)
1827 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001828 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001830 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001832 char name[PROC_NUMBUF];
1833 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 if (!fcheck_files(files, fd))
1836 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001837 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Miklos Szeredi27932742007-05-08 00:26:17 -07001839 len = snprintf(name, sizeof(name), "%d", fd);
1840 if (proc_fill_cache(filp, dirent, filldir,
1841 name, len, instantiate,
1842 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001843 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 break;
1845 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001846 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001848 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 put_files_struct(files);
1850 }
1851out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001852 put_task_struct(p);
1853out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 return retval;
1855}
1856
Miklos Szeredi27932742007-05-08 00:26:17 -07001857static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1858 struct nameidata *nd)
1859{
1860 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1861}
1862
1863static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1864{
1865 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1866}
1867
1868static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1869 size_t len, loff_t *ppos)
1870{
1871 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001872 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001873 if (!err)
1874 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1875 return err;
1876}
1877
1878static const struct file_operations proc_fdinfo_file_operations = {
1879 .open = nonseekable_open,
1880 .read = proc_fdinfo_read,
1881};
1882
Arjan van de Ven00977a52007-02-12 00:55:34 -08001883static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 .read = generic_read_dir,
1885 .readdir = proc_readfd,
1886};
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001889 * /proc/pid/fd needs a special permission handler so that a process can still
1890 * access /proc/self/fd after it has executed a setuid().
1891 */
Al Viroe6305c42008-07-15 21:03:57 -04001892static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001893{
1894 int rv;
1895
1896 rv = generic_permission(inode, mask, NULL);
1897 if (rv == 0)
1898 return 0;
1899 if (task_pid(current) == proc_pid(inode))
1900 rv = 0;
1901 return rv;
1902}
1903
1904/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * proc directories can do almost nothing..
1906 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001907static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001909 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001910 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911};
1912
Miklos Szeredi27932742007-05-08 00:26:17 -07001913static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
1914 struct dentry *dentry, struct task_struct *task, const void *ptr)
1915{
1916 unsigned fd = *(unsigned *)ptr;
1917 struct inode *inode;
1918 struct proc_inode *ei;
1919 struct dentry *error = ERR_PTR(-ENOENT);
1920
1921 inode = proc_pid_make_inode(dir->i_sb, task);
1922 if (!inode)
1923 goto out;
1924 ei = PROC_I(inode);
1925 ei->fd = fd;
1926 inode->i_mode = S_IFREG | S_IRUSR;
1927 inode->i_fop = &proc_fdinfo_file_operations;
1928 dentry->d_op = &tid_fd_dentry_operations;
1929 d_add(dentry, inode);
1930 /* Close the race of the process dying before we return the dentry */
1931 if (tid_fd_revalidate(dentry, NULL))
1932 error = NULL;
1933
1934 out:
1935 return error;
1936}
1937
1938static struct dentry *proc_lookupfdinfo(struct inode *dir,
1939 struct dentry *dentry,
1940 struct nameidata *nd)
1941{
1942 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
1943}
1944
1945static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
1946{
1947 return proc_readfd_common(filp, dirent, filldir,
1948 proc_fdinfo_instantiate);
1949}
1950
1951static const struct file_operations proc_fdinfo_operations = {
1952 .read = generic_read_dir,
1953 .readdir = proc_readfdinfo,
1954};
1955
1956/*
1957 * proc directories can do almost nothing..
1958 */
1959static const struct inode_operations proc_fdinfo_inode_operations = {
1960 .lookup = proc_lookupfdinfo,
1961 .setattr = proc_setattr,
1962};
1963
1964
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001965static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001966 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001967{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001968 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001969 struct inode *inode;
1970 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07001971 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001972
Eric W. Biederman61a28782006-10-02 02:18:49 -07001973 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001974 if (!inode)
1975 goto out;
1976
1977 ei = PROC_I(inode);
1978 inode->i_mode = p->mode;
1979 if (S_ISDIR(inode->i_mode))
1980 inode->i_nlink = 2; /* Use getattr to fix if necessary */
1981 if (p->iop)
1982 inode->i_op = p->iop;
1983 if (p->fop)
1984 inode->i_fop = p->fop;
1985 ei->op = p->op;
1986 dentry->d_op = &pid_dentry_operations;
1987 d_add(dentry, inode);
1988 /* Close the race of the process dying before we return the dentry */
1989 if (pid_revalidate(dentry, NULL))
1990 error = NULL;
1991out:
1992 return error;
1993}
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995static struct dentry *proc_pident_lookup(struct inode *dir,
1996 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001997 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07001998 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002000 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002001 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002002 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002004 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Eric W. Biederman99f89552006-06-26 00:25:55 -07002006 if (!task)
2007 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002009 /*
2010 * Yes, it does not scale. And it should not. Don't add
2011 * new entries into /proc/<tgid>/ without very good reasons.
2012 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002013 last = &ents[nents - 1];
2014 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (p->len != dentry->d_name.len)
2016 continue;
2017 if (!memcmp(dentry->d_name.name, p->name, p->len))
2018 break;
2019 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002020 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 goto out;
2022
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002023 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002025 put_task_struct(task);
2026out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002027 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Eric Dumazetc5141e62007-05-08 00:26:15 -07002030static int proc_pident_fill_cache(struct file *filp, void *dirent,
2031 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002032{
2033 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2034 proc_pident_instantiate, task, p);
2035}
2036
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002037static int proc_pident_readdir(struct file *filp,
2038 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002039 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002040{
2041 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002042 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002043 struct inode *inode = dentry->d_inode;
2044 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002045 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002046 ino_t ino;
2047 int ret;
2048
2049 ret = -ENOENT;
2050 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002051 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002052
2053 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002054 i = filp->f_pos;
2055 switch (i) {
2056 case 0:
2057 ino = inode->i_ino;
2058 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2059 goto out;
2060 i++;
2061 filp->f_pos++;
2062 /* fall through */
2063 case 1:
2064 ino = parent_ino(dentry);
2065 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2066 goto out;
2067 i++;
2068 filp->f_pos++;
2069 /* fall through */
2070 default:
2071 i -= 2;
2072 if (i >= nents) {
2073 ret = 1;
2074 goto out;
2075 }
2076 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002077 last = &ents[nents - 1];
2078 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002079 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002080 goto out;
2081 filp->f_pos++;
2082 p++;
2083 }
2084 }
2085
2086 ret = 1;
2087out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002088 put_task_struct(task);
2089out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002090 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002094static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2095 size_t count, loff_t *ppos)
2096{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002097 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002098 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002099 ssize_t length;
2100 struct task_struct *task = get_proc_task(inode);
2101
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002102 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002103 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002104
2105 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002106 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002107 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002108 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002109 if (length > 0)
2110 length = simple_read_from_buffer(buf, count, ppos, p, length);
2111 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002112 return length;
2113}
2114
2115static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2116 size_t count, loff_t *ppos)
2117{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002118 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002119 char *page;
2120 ssize_t length;
2121 struct task_struct *task = get_proc_task(inode);
2122
2123 length = -ESRCH;
2124 if (!task)
2125 goto out_no_task;
2126 if (count > PAGE_SIZE)
2127 count = PAGE_SIZE;
2128
2129 /* No partial writes. */
2130 length = -EINVAL;
2131 if (*ppos != 0)
2132 goto out;
2133
2134 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002135 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002136 if (!page)
2137 goto out;
2138
2139 length = -EFAULT;
2140 if (copy_from_user(page, buf, count))
2141 goto out_free;
2142
David Howells107db7c2009-05-08 13:55:27 +01002143 /* Guard against adverse ptrace interaction */
2144 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2145 if (length < 0)
2146 goto out_free;
2147
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002148 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002149 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002150 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002151 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002152out_free:
2153 free_page((unsigned long) page);
2154out:
2155 put_task_struct(task);
2156out_no_task:
2157 return length;
2158}
2159
Arjan van de Ven00977a52007-02-12 00:55:34 -08002160static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002161 .read = proc_pid_attr_read,
2162 .write = proc_pid_attr_write,
2163};
2164
Eric Dumazetc5141e62007-05-08 00:26:15 -07002165static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002166 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2167 REG("prev", S_IRUGO, proc_pid_attr_operations),
2168 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2169 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2170 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2171 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002172};
2173
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002174static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 void * dirent, filldir_t filldir)
2176{
2177 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002178 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
Arjan van de Ven00977a52007-02-12 00:55:34 -08002181static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002183 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184};
2185
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002186static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 struct dentry *dentry, struct nameidata *nd)
2188{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002189 return proc_pident_lookup(dir, dentry,
2190 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002193static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002194 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002195 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002196 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197};
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199#endif
2200
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002201#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2202static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2203 size_t count, loff_t *ppos)
2204{
2205 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2206 struct mm_struct *mm;
2207 char buffer[PROC_NUMBUF];
2208 size_t len;
2209 int ret;
2210
2211 if (!task)
2212 return -ESRCH;
2213
2214 ret = 0;
2215 mm = get_task_mm(task);
2216 if (mm) {
2217 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2218 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2219 MMF_DUMP_FILTER_SHIFT));
2220 mmput(mm);
2221 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2222 }
2223
2224 put_task_struct(task);
2225
2226 return ret;
2227}
2228
2229static ssize_t proc_coredump_filter_write(struct file *file,
2230 const char __user *buf,
2231 size_t count,
2232 loff_t *ppos)
2233{
2234 struct task_struct *task;
2235 struct mm_struct *mm;
2236 char buffer[PROC_NUMBUF], *end;
2237 unsigned int val;
2238 int ret;
2239 int i;
2240 unsigned long mask;
2241
2242 ret = -EFAULT;
2243 memset(buffer, 0, sizeof(buffer));
2244 if (count > sizeof(buffer) - 1)
2245 count = sizeof(buffer) - 1;
2246 if (copy_from_user(buffer, buf, count))
2247 goto out_no_task;
2248
2249 ret = -EINVAL;
2250 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2251 if (*end == '\n')
2252 end++;
2253 if (end - buffer == 0)
2254 goto out_no_task;
2255
2256 ret = -ESRCH;
2257 task = get_proc_task(file->f_dentry->d_inode);
2258 if (!task)
2259 goto out_no_task;
2260
2261 ret = end - buffer;
2262 mm = get_task_mm(task);
2263 if (!mm)
2264 goto out_no_mm;
2265
2266 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2267 if (val & mask)
2268 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2269 else
2270 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2271 }
2272
2273 mmput(mm);
2274 out_no_mm:
2275 put_task_struct(task);
2276 out_no_task:
2277 return ret;
2278}
2279
2280static const struct file_operations proc_coredump_filter_operations = {
2281 .read = proc_coredump_filter_read,
2282 .write = proc_coredump_filter_write,
2283};
2284#endif
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286/*
2287 * /proc/self:
2288 */
2289static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2290 int buflen)
2291{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002292 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002293 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002294 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002295 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002296 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002297 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 return vfs_readlink(dentry,buffer,buflen,tmp);
2299}
2300
Al Viro008b1502005-08-20 00:17:39 +01002301static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002303 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002304 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002305 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002306 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002307 return ERR_PTR(-ENOENT);
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002308 sprintf(tmp, "%d", task_tgid_nr_ns(current, ns));
Al Viro008b1502005-08-20 00:17:39 +01002309 return ERR_PTR(vfs_follow_link(nd,tmp));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002310}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002312static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 .readlink = proc_self_readlink,
2314 .follow_link = proc_self_follow_link,
2315};
2316
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002317/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002318 * proc base
2319 *
2320 * These are the directory entries in the root directory of /proc
2321 * that properly belong to the /proc filesystem, as they describe
2322 * describe something that is process related.
2323 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002324static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002325 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002326 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002327};
2328
2329/*
2330 * Exceptional case: normally we are not allowed to unhash a busy
2331 * directory. In this case, however, we can do it - no aliasing problems
2332 * due to the way we treat inodes.
2333 */
2334static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2335{
2336 struct inode *inode = dentry->d_inode;
2337 struct task_struct *task = get_proc_task(inode);
2338 if (task) {
2339 put_task_struct(task);
2340 return 1;
2341 }
2342 d_drop(dentry);
2343 return 0;
2344}
2345
Al Virod72f71e2009-02-20 05:58:47 +00002346static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002347{
2348 .d_revalidate = proc_base_revalidate,
2349 .d_delete = pid_delete_dentry,
2350};
2351
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002352static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002353 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002354{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002355 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002356 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002357 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002358 struct dentry *error = ERR_PTR(-EINVAL);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002359
2360 /* Allocate the inode */
2361 error = ERR_PTR(-ENOMEM);
2362 inode = new_inode(dir->i_sb);
2363 if (!inode)
2364 goto out;
2365
2366 /* Initialize the inode */
2367 ei = PROC_I(inode);
2368 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002369
2370 /*
2371 * grab the reference to the task.
2372 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002373 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002374 if (!ei->pid)
2375 goto out_iput;
2376
Eric W. Biederman801199c2006-10-02 02:18:48 -07002377 inode->i_mode = p->mode;
2378 if (S_ISDIR(inode->i_mode))
2379 inode->i_nlink = 2;
2380 if (S_ISLNK(inode->i_mode))
2381 inode->i_size = 64;
2382 if (p->iop)
2383 inode->i_op = p->iop;
2384 if (p->fop)
2385 inode->i_fop = p->fop;
2386 ei->op = p->op;
2387 dentry->d_op = &proc_base_dentry_operations;
2388 d_add(dentry, inode);
2389 error = NULL;
2390out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002391 return error;
2392out_iput:
2393 iput(inode);
2394 goto out;
2395}
2396
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002397static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2398{
2399 struct dentry *error;
2400 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002401 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002402
2403 error = ERR_PTR(-ENOENT);
2404
2405 if (!task)
2406 goto out_no_task;
2407
2408 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002409 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2410 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002411 if (p->len != dentry->d_name.len)
2412 continue;
2413 if (!memcmp(dentry->d_name.name, p->name, p->len))
2414 break;
2415 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002416 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002417 goto out;
2418
2419 error = proc_base_instantiate(dir, dentry, task, p);
2420
2421out:
2422 put_task_struct(task);
2423out_no_task:
2424 return error;
2425}
2426
Eric Dumazetc5141e62007-05-08 00:26:15 -07002427static int proc_base_fill_cache(struct file *filp, void *dirent,
2428 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002429{
2430 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2431 proc_base_instantiate, task, p);
2432}
2433
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002434#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002435static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002436{
Andrea Righi940389b2008-07-28 00:48:12 +02002437 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002438 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002439
Andrea Righi59954772008-07-27 17:29:15 +02002440 if (whole && lock_task_sighand(task, &flags)) {
2441 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002442
Andrea Righi59954772008-07-27 17:29:15 +02002443 task_io_accounting_add(&acct, &task->signal->ioac);
2444 while_each_thread(task, t)
2445 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002446
Andrea Righi59954772008-07-27 17:29:15 +02002447 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002448 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002449 return sprintf(buffer,
2450 "rchar: %llu\n"
2451 "wchar: %llu\n"
2452 "syscr: %llu\n"
2453 "syscw: %llu\n"
2454 "read_bytes: %llu\n"
2455 "write_bytes: %llu\n"
2456 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002457 (unsigned long long)acct.rchar,
2458 (unsigned long long)acct.wchar,
2459 (unsigned long long)acct.syscr,
2460 (unsigned long long)acct.syscw,
2461 (unsigned long long)acct.read_bytes,
2462 (unsigned long long)acct.write_bytes,
2463 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002464}
Andrea Righi297c5d92008-07-25 01:48:49 -07002465
2466static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2467{
2468 return do_io_accounting(task, buffer, 0);
2469}
2470
2471static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2472{
2473 return do_io_accounting(task, buffer, 1);
2474}
2475#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002476
Kees Cook47830722008-10-06 03:11:58 +04002477static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2478 struct pid *pid, struct task_struct *task)
2479{
2480 seq_printf(m, "%08x\n", task->personality);
2481 return 0;
2482}
2483
Eric W. Biederman801199c2006-10-02 02:18:48 -07002484/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002485 * Thread groups
2486 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002487static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002488static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002489
Eric Dumazetc5141e62007-05-08 00:26:15 -07002490static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002491 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2492 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2493 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002494#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002495 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002496#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002497 REG("environ", S_IRUSR, proc_environ_operations),
2498 INF("auxv", S_IRUSR, proc_pid_auxv),
2499 ONE("status", S_IRUGO, proc_pid_status),
2500 ONE("personality", S_IRUSR, proc_pid_personality),
2501 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002502#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002503 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002504#endif
Roland McGrathebcb6732008-07-25 19:46:00 -07002505#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002506 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002507#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002508 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2509 ONE("stat", S_IRUGO, proc_tgid_stat),
2510 ONE("statm", S_IRUGO, proc_pid_statm),
2511 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002512#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002513 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002514#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002515 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2516 LNK("cwd", proc_cwd_link),
2517 LNK("root", proc_root_link),
2518 LNK("exe", proc_exe_link),
2519 REG("mounts", S_IRUGO, proc_mounts_operations),
2520 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2521 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002522#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002523 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2524 REG("smaps", S_IRUGO, proc_smaps_operations),
2525 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002526#endif
2527#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002528 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002529#endif
2530#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002531 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002532#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002533#ifdef CONFIG_STACKTRACE
2534 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002535#endif
2536#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002537 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002538#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002539#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002540 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002541#endif
Paul Menage8793d852007-10-18 23:39:39 -07002542#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002543 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002544#endif
Paul Menagea4243162007-10-18 23:39:35 -07002545#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002546 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002547#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002548 INF("oom_score", S_IRUGO, proc_oom_score),
2549 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002550#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002551 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2552 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002553#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002554#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002555 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002556#endif
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002557#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002558 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002559#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002560#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002561 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002562#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002563};
2564
2565static int proc_tgid_base_readdir(struct file * filp,
2566 void * dirent, filldir_t filldir)
2567{
2568 return proc_pident_readdir(filp,dirent,filldir,
2569 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2570}
2571
Arjan van de Ven00977a52007-02-12 00:55:34 -08002572static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002573 .read = generic_read_dir,
2574 .readdir = proc_tgid_base_readdir,
2575};
2576
2577static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002578 return proc_pident_lookup(dir, dentry,
2579 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002580}
2581
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002582static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002583 .lookup = proc_tgid_base_lookup,
2584 .getattr = pid_getattr,
2585 .setattr = proc_setattr,
2586};
2587
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002588static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002590 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002591 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002592 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Eric W. Biederman48e64842006-06-26 00:25:48 -07002594 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002595 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2596 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002597 if (dentry) {
Andrea Arcangeli77667552008-02-04 22:29:21 -08002598 if (!(current->flags & PF_EXITING))
2599 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002600 d_drop(dentry);
2601 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002604 if (tgid == 0)
Eric W. Biederman48e64842006-06-26 00:25:48 -07002605 goto out;
2606
2607 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002608 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2609 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002610 if (!leader)
2611 goto out;
2612
2613 name.name = "task";
2614 name.len = strlen(name.name);
2615 dir = d_hash_and_lookup(leader, &name);
2616 if (!dir)
2617 goto out_put_leader;
2618
2619 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002620 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002621 dentry = d_hash_and_lookup(dir, &name);
2622 if (dentry) {
2623 shrink_dcache_parent(dentry);
2624 d_drop(dentry);
2625 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002627
2628 dput(dir);
2629out_put_leader:
2630 dput(leader);
2631out:
2632 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633}
2634
Randy Dunlap0895e912007-10-21 21:00:10 -07002635/**
2636 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2637 * @task: task that should be flushed.
2638 *
2639 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002640 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002641 * in. This call is supposed to do all of this job.
2642 *
2643 * Looks in the dcache for
2644 * /proc/@pid
2645 * /proc/@tgid/task/@pid
2646 * if either directory is present flushes it and all of it'ts children
2647 * from the dcache.
2648 *
2649 * It is safe and reasonable to cache /proc entries for a task until
2650 * that task exits. After that they just clog up the dcache with
2651 * useless entries, possibly causing useful dcache entries to be
2652 * flushed instead. This routine is proved to flush those useless
2653 * dcache entries at process exit time.
2654 *
2655 * NOTE: This routine is just an optimization so it does not guarantee
2656 * that no dcache entries will exist at process exit time it
2657 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002658 */
2659
2660void proc_flush_task(struct task_struct *task)
2661{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002662 int i;
2663 struct pid *pid, *tgid = NULL;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002664 struct upid *upid;
2665
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002666 pid = task_pid(task);
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002667 if (thread_group_leader(task))
2668 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002669
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002670 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002671 upid = &pid->numbers[i];
2672 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002673 tgid ? tgid->numbers[i].nr : 0);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002674 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002675
2676 upid = &pid->numbers[pid->level];
2677 if (upid->nr == 1)
2678 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002679}
2680
Adrian Bunk9711ef92006-12-06 20:38:31 -08002681static struct dentry *proc_pid_instantiate(struct inode *dir,
2682 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002683 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002684{
2685 struct dentry *error = ERR_PTR(-ENOENT);
2686 struct inode *inode;
2687
Eric W. Biederman61a28782006-10-02 02:18:49 -07002688 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002689 if (!inode)
2690 goto out;
2691
2692 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2693 inode->i_op = &proc_tgid_base_inode_operations;
2694 inode->i_fop = &proc_tgid_base_operations;
2695 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002696
2697 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2698 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002699
2700 dentry->d_op = &pid_dentry_operations;
2701
2702 d_add(dentry, inode);
2703 /* Close the race of the process dying before we return the dentry */
2704 if (pid_revalidate(dentry, NULL))
2705 error = NULL;
2706out:
2707 return error;
2708}
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2711{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002712 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002715 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Eric W. Biederman801199c2006-10-02 02:18:48 -07002717 result = proc_base_lookup(dir, dentry);
2718 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2719 goto out;
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 tgid = name_to_int(dentry);
2722 if (tgid == ~0U)
2723 goto out;
2724
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002725 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002726 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002727 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (task)
2729 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002730 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (!task)
2732 goto out;
2733
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002734 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002735 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002737 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738}
2739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002741 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002742 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002744struct tgid_iter {
2745 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002746 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002747};
2748static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2749{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002750 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002752 if (iter.task)
2753 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002754 rcu_read_lock();
2755retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002756 iter.task = NULL;
2757 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002758 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002759 iter.tgid = pid_nr_ns(pid, ns);
2760 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002761 /* What we to know is if the pid we have find is the
2762 * pid of a thread_group_leader. Testing for task
2763 * being a thread_group_leader is the obvious thing
2764 * todo but there is a window when it fails, due to
2765 * the pid transfer logic in de_thread.
2766 *
2767 * So we perform the straight forward test of seeing
2768 * if the pid we have found is the pid of a thread
2769 * group leader, and don't worry if the task we have
2770 * found doesn't happen to be a thread group leader.
2771 * As we don't care in the case of readdir.
2772 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002773 if (!iter.task || !has_group_leader_pid(iter.task)) {
2774 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002775 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002776 }
2777 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002779 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002780 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002783#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Eric W. Biederman61a28782006-10-02 02:18:49 -07002785static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002786 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002787{
2788 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002789 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002790 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002791 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002792}
2793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794/* for the /proc/ directory itself, after non-process stuff has been done */
2795int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2796{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002798 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002799 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002800 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Eric W. Biederman61a28782006-10-02 02:18:49 -07002802 if (!reaper)
2803 goto out_no_task;
2804
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002805 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002806 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002807 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002808 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 }
2810
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002811 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002812 iter.task = NULL;
2813 iter.tgid = filp->f_pos - TGID_OFFSET;
2814 for (iter = next_tgid(ns, iter);
2815 iter.task;
2816 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2817 filp->f_pos = iter.tgid + TGID_OFFSET;
2818 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2819 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002820 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002823 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2824out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002825 put_task_struct(reaper);
2826out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 return 0;
2828}
2829
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002830/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002831 * Tasks
2832 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002833static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002834 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2835 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fd_operations),
2836 REG("environ", S_IRUSR, proc_environ_operations),
2837 INF("auxv", S_IRUSR, proc_pid_auxv),
2838 ONE("status", S_IRUGO, proc_pid_status),
2839 ONE("personality", S_IRUSR, proc_pid_personality),
2840 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002841#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002842 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002843#endif
Roland McGrathebcb6732008-07-25 19:46:00 -07002844#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002845 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002846#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002847 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2848 ONE("stat", S_IRUGO, proc_tid_stat),
2849 ONE("statm", S_IRUGO, proc_pid_statm),
2850 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002851#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002852 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002853#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002854 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2855 LNK("cwd", proc_cwd_link),
2856 LNK("root", proc_root_link),
2857 LNK("exe", proc_exe_link),
2858 REG("mounts", S_IRUGO, proc_mounts_operations),
2859 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002860#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002861 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2862 REG("smaps", S_IRUGO, proc_smaps_operations),
2863 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002864#endif
2865#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002866 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002867#endif
2868#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002869 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002870#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002871#ifdef CONFIG_STACKTRACE
2872 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002873#endif
2874#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002875 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002876#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002877#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002878 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002879#endif
Paul Menage8793d852007-10-18 23:39:39 -07002880#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002881 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002882#endif
Paul Menagea4243162007-10-18 23:39:35 -07002883#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002884 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002885#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002886 INF("oom_score", S_IRUGO, proc_oom_score),
2887 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002888#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002889 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2890 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002891#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002892#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002893 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002894#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002895#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002896 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002897#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002898};
2899
2900static int proc_tid_base_readdir(struct file * filp,
2901 void * dirent, filldir_t filldir)
2902{
2903 return proc_pident_readdir(filp,dirent,filldir,
2904 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
2905}
2906
2907static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002908 return proc_pident_lookup(dir, dentry,
2909 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002910}
2911
Arjan van de Ven00977a52007-02-12 00:55:34 -08002912static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002913 .read = generic_read_dir,
2914 .readdir = proc_tid_base_readdir,
2915};
2916
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002917static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002918 .lookup = proc_tid_base_lookup,
2919 .getattr = pid_getattr,
2920 .setattr = proc_setattr,
2921};
2922
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002923static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002924 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002925{
2926 struct dentry *error = ERR_PTR(-ENOENT);
2927 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07002928 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002929
2930 if (!inode)
2931 goto out;
2932 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2933 inode->i_op = &proc_tid_base_inode_operations;
2934 inode->i_fop = &proc_tid_base_operations;
2935 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002936
2937 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
2938 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002939
2940 dentry->d_op = &pid_dentry_operations;
2941
2942 d_add(dentry, inode);
2943 /* Close the race of the process dying before we return the dentry */
2944 if (pid_revalidate(dentry, NULL))
2945 error = NULL;
2946out:
2947 return error;
2948}
2949
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002950static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2951{
2952 struct dentry *result = ERR_PTR(-ENOENT);
2953 struct task_struct *task;
2954 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002955 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002956 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002957
2958 if (!leader)
2959 goto out_no_task;
2960
2961 tid = name_to_int(dentry);
2962 if (tid == ~0U)
2963 goto out;
2964
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002965 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002966 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002967 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002968 if (task)
2969 get_task_struct(task);
2970 rcu_read_unlock();
2971 if (!task)
2972 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07002973 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002974 goto out_drop_task;
2975
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002976 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002977out_drop_task:
2978 put_task_struct(task);
2979out:
2980 put_task_struct(leader);
2981out_no_task:
2982 return result;
2983}
2984
2985/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002986 * Find the first tid of a thread group to return to user space.
2987 *
2988 * Usually this is just the thread group leader, but if the users
2989 * buffer was too small or there was a seek into the middle of the
2990 * directory we have more work todo.
2991 *
2992 * In the case of a short read we start with find_task_by_pid.
2993 *
2994 * In the case of a seek we start with the leader and walk nr
2995 * threads past it.
2996 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07002997static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002998 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002999{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003000 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003001
Eric W. Biedermancc288732006-06-26 00:26:01 -07003002 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003003 /* Attempt to start with the pid of a thread */
3004 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003005 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003006 if (pos && (pos->group_leader == leader))
3007 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003008 }
3009
3010 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003011 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003012 if (nr && nr >= get_nr_threads(leader))
3013 goto out;
3014
3015 /* If we haven't found our starting place yet start
3016 * with the leader and walk nr threads forward.
3017 */
3018 for (pos = leader; nr > 0; --nr) {
3019 pos = next_thread(pos);
3020 if (pos == leader) {
3021 pos = NULL;
3022 goto out;
3023 }
3024 }
3025found:
3026 get_task_struct(pos);
3027out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003028 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003029 return pos;
3030}
3031
3032/*
3033 * Find the next thread in the thread list.
3034 * Return NULL if there is an error or no next thread.
3035 *
3036 * The reference to the input task_struct is released.
3037 */
3038static struct task_struct *next_tid(struct task_struct *start)
3039{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003040 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003041 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003042 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003043 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003044 if (thread_group_leader(pos))
3045 pos = NULL;
3046 else
3047 get_task_struct(pos);
3048 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003049 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003050 put_task_struct(start);
3051 return pos;
3052}
3053
Eric W. Biederman61a28782006-10-02 02:18:49 -07003054static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3055 struct task_struct *task, int tid)
3056{
3057 char name[PROC_NUMBUF];
3058 int len = snprintf(name, sizeof(name), "%d", tid);
3059 return proc_fill_cache(filp, dirent, filldir, name, len,
3060 proc_task_instantiate, task, NULL);
3061}
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063/* for the /proc/TGID/task/ directories */
3064static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3065{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003066 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003068 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003069 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 int retval = -ENOENT;
3071 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003072 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003073 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003075 task = get_proc_task(inode);
3076 if (!task)
3077 goto out_no_task;
3078 rcu_read_lock();
3079 if (pid_alive(task)) {
3080 leader = task->group_leader;
3081 get_task_struct(leader);
3082 }
3083 rcu_read_unlock();
3084 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003085 if (!leader)
3086 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 retval = 0;
3088
Linus Torvaldsee568b22009-03-17 10:02:35 -07003089 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 case 0:
3091 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003092 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003094 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 /* fall through */
3096 case 1:
3097 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003098 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003100 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 /* fall through */
3102 }
3103
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003104 /* f_version caches the tgid value that the last readdir call couldn't
3105 * return. lseek aka telldir automagically resets f_version to 0.
3106 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003107 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003108 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003109 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003110 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003111 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003112 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003113 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003114 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003115 /* returning this tgid failed, save it as the first
3116 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003117 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003118 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
3122out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003123 put_task_struct(leader);
3124out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 return retval;
3126}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003127
3128static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3129{
3130 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003131 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003132 generic_fillattr(inode, stat);
3133
Eric W. Biederman99f89552006-06-26 00:25:55 -07003134 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003135 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003136 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003137 }
3138
3139 return 0;
3140}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003141
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003142static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003143 .lookup = proc_task_lookup,
3144 .getattr = proc_task_getattr,
3145 .setattr = proc_setattr,
3146};
3147
Arjan van de Ven00977a52007-02-12 00:55:34 -08003148static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003149 .read = generic_read_dir,
3150 .readdir = proc_task_readdir,
3151};