blob: 95d91cf3e24c573a664a29f4ec1f9bd03c9f2b2b [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{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200237 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200238
Oleg Nesterov704b8362009-07-10 03:27:40 +0200239 if (mutex_lock_killable(&task->cred_guard_mutex))
240 return NULL;
241
242 mm = get_task_mm(task);
243 if (mm && mm != current->mm &&
244 !ptrace_may_access(task, PTRACE_MODE_READ)) {
245 mmput(mm);
246 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200247 }
Oleg Nesterov704b8362009-07-10 03:27:40 +0200248 mutex_unlock(&task->cred_guard_mutex);
249
Al Viro831830b2008-01-02 14:09:57 +0000250 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int proc_pid_cmdline(struct task_struct *task, char * buffer)
254{
255 int res = 0;
256 unsigned int len;
257 struct mm_struct *mm = get_task_mm(task);
258 if (!mm)
259 goto out;
260 if (!mm->arg_end)
261 goto out_mm; /* Shh! No looking before we're done */
262
263 len = mm->arg_end - mm->arg_start;
264
265 if (len > PAGE_SIZE)
266 len = PAGE_SIZE;
267
268 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
269
270 // If the nul at the end of args has been overwritten, then
271 // assume application is using setproctitle(3).
272 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
273 len = strnlen(buffer, res);
274 if (len < res) {
275 res = len;
276 } else {
277 len = mm->env_end - mm->env_start;
278 if (len > PAGE_SIZE - res)
279 len = PAGE_SIZE - res;
280 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
281 res = strnlen(buffer, res);
282 }
283 }
284out_mm:
285 mmput(mm);
286out:
287 return res;
288}
289
290static int proc_pid_auxv(struct task_struct *task, char *buffer)
291{
292 int res = 0;
293 struct mm_struct *mm = get_task_mm(task);
294 if (mm) {
295 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300296 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300298 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 res = nwords * sizeof(mm->saved_auxv[0]);
300 if (res > PAGE_SIZE)
301 res = PAGE_SIZE;
302 memcpy(buffer, mm->saved_auxv, res);
303 mmput(mm);
304 }
305 return res;
306}
307
308
309#ifdef CONFIG_KALLSYMS
310/*
311 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
312 * Returns the resolved symbol. If that fails, simply return the address.
313 */
314static int proc_pid_wchan(struct task_struct *task, char *buffer)
315{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700316 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700317 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 wchan = get_wchan(task);
320
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700321 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600322 if (!ptrace_may_access(task, PTRACE_MODE_READ))
323 return 0;
324 else
325 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700326 else
327 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329#endif /* CONFIG_KALLSYMS */
330
Ken Chen2ec220e2008-11-10 11:26:08 +0300331#ifdef CONFIG_STACKTRACE
332
333#define MAX_STACK_TRACE_DEPTH 64
334
335static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
336 struct pid *pid, struct task_struct *task)
337{
338 struct stack_trace trace;
339 unsigned long *entries;
340 int i;
341
342 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
343 if (!entries)
344 return -ENOMEM;
345
346 trace.nr_entries = 0;
347 trace.max_entries = MAX_STACK_TRACE_DEPTH;
348 trace.entries = entries;
349 trace.skip = 0;
350 save_stack_trace_tsk(task, &trace);
351
352 for (i = 0; i < trace.nr_entries; i++) {
353 seq_printf(m, "[<%p>] %pS\n",
354 (void *)entries[i], (void *)entries[i]);
355 }
356 kfree(entries);
357
358 return 0;
359}
360#endif
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#ifdef CONFIG_SCHEDSTATS
363/*
364 * Provides /proc/PID/schedstat
365 */
366static int proc_pid_schedstat(struct task_struct *task, char *buffer)
367{
Balbir Singh172ba842007-07-09 18:52:00 +0200368 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100369 (unsigned long long)task->se.sum_exec_runtime,
370 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200371 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373#endif
374
Arjan van de Ven97455122008-01-25 21:08:34 +0100375#ifdef CONFIG_LATENCYTOP
376static int lstats_show_proc(struct seq_file *m, void *v)
377{
378 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800379 struct inode *inode = m->private;
380 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100381
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800382 if (!task)
383 return -ESRCH;
384 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100385 for (i = 0; i < 32; i++) {
386 if (task->latency_record[i].backtrace[0]) {
387 int q;
388 seq_printf(m, "%i %li %li ",
389 task->latency_record[i].count,
390 task->latency_record[i].time,
391 task->latency_record[i].max);
392 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800393 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100394 char *c;
395 if (!task->latency_record[i].backtrace[q])
396 break;
397 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
398 break;
399 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
400 c = strchr(sym, '+');
401 if (c)
402 *c = 0;
403 seq_printf(m, "%s ", sym);
404 }
405 seq_printf(m, "\n");
406 }
407
408 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800409 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100410 return 0;
411}
412
413static int lstats_open(struct inode *inode, struct file *file)
414{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800415 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800416}
417
Arjan van de Ven97455122008-01-25 21:08:34 +0100418static ssize_t lstats_write(struct file *file, const char __user *buf,
419 size_t count, loff_t *offs)
420{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800421 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100422
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800423 if (!task)
424 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100425 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800426 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100427
428 return count;
429}
430
431static const struct file_operations proc_lstats_operations = {
432 .open = lstats_open,
433 .read = seq_read,
434 .write = lstats_write,
435 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800436 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100437};
438
439#endif
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/* The badness from the OOM killer */
442unsigned long badness(struct task_struct *p, unsigned long uptime);
443static int proc_oom_score(struct task_struct *task, char *buffer)
444{
445 unsigned long points;
446 struct timespec uptime;
447
448 do_posix_clock_monotonic_gettime(&uptime);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700449 read_lock(&tasklist_lock);
KOSAKI Motohiro495789a2009-09-21 17:03:14 -0700450 points = badness(task->group_leader, uptime.tv_sec);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700451 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return sprintf(buffer, "%lu\n", points);
453}
454
Neil Hormand85f50d2007-10-18 23:40:37 -0700455struct limit_names {
456 char *name;
457 char *unit;
458};
459
460static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700461 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700462 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
463 [RLIMIT_DATA] = {"Max data size", "bytes"},
464 [RLIMIT_STACK] = {"Max stack size", "bytes"},
465 [RLIMIT_CORE] = {"Max core file size", "bytes"},
466 [RLIMIT_RSS] = {"Max resident set", "bytes"},
467 [RLIMIT_NPROC] = {"Max processes", "processes"},
468 [RLIMIT_NOFILE] = {"Max open files", "files"},
469 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
470 [RLIMIT_AS] = {"Max address space", "bytes"},
471 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
472 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
473 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
474 [RLIMIT_NICE] = {"Max nice priority", NULL},
475 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800476 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700477};
478
479/* Display limits for a process */
480static int proc_pid_limits(struct task_struct *task, char *buffer)
481{
482 unsigned int i;
483 int count = 0;
484 unsigned long flags;
485 char *bufptr = buffer;
486
487 struct rlimit rlim[RLIM_NLIMITS];
488
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400489 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700490 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700491 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
492 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700493
494 /*
495 * print the file header
496 */
497 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
498 "Limit", "Soft Limit", "Hard Limit", "Units");
499
500 for (i = 0; i < RLIM_NLIMITS; i++) {
501 if (rlim[i].rlim_cur == RLIM_INFINITY)
502 count += sprintf(&bufptr[count], "%-25s %-20s ",
503 lnames[i].name, "unlimited");
504 else
505 count += sprintf(&bufptr[count], "%-25s %-20lu ",
506 lnames[i].name, rlim[i].rlim_cur);
507
508 if (rlim[i].rlim_max == RLIM_INFINITY)
509 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
510 else
511 count += sprintf(&bufptr[count], "%-20lu ",
512 rlim[i].rlim_max);
513
514 if (lnames[i].unit)
515 count += sprintf(&bufptr[count], "%-10s\n",
516 lnames[i].unit);
517 else
518 count += sprintf(&bufptr[count], "\n");
519 }
520
521 return count;
522}
523
Roland McGrathebcb6732008-07-25 19:46:00 -0700524#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
525static int proc_pid_syscall(struct task_struct *task, char *buffer)
526{
527 long nr;
528 unsigned long args[6], sp, pc;
529
530 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
531 return sprintf(buffer, "running\n");
532
533 if (nr < 0)
534 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
535
536 return sprintf(buffer,
537 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
538 nr,
539 args[0], args[1], args[2], args[3], args[4], args[5],
540 sp, pc);
541}
542#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/************************************************************************/
545/* Here the fs part begins */
546/************************************************************************/
547
548/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700549static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700551 struct task_struct *task;
552 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700553 /* Allow access to a task's file descriptors if it is us or we
554 * may use ptrace attach to the process and find out that
555 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700556 */
557 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700558 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400559 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700560 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700561 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700562 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700565static int proc_setattr(struct dentry *dentry, struct iattr *attr)
566{
567 int error;
568 struct inode *inode = dentry->d_inode;
569
570 if (attr->ia_valid & ATTR_MODE)
571 return -EPERM;
572
573 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700574 if (!error)
575 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700576 return error;
577}
578
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800579static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700580 .setattr = proc_setattr,
581};
582
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100583static int mounts_open_common(struct inode *inode, struct file *file,
584 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700586 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700587 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800588 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100589 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500590 struct proc_mounts *p;
591 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Eric W. Biederman99f89552006-06-26 00:25:55 -0700593 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700594 rcu_read_lock();
595 nsp = task_nsproxy(task);
596 if (nsp) {
597 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800598 if (ns)
599 get_mnt_ns(ns);
600 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700601 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000602 if (ns && get_fs_path(task, &root, 1) == 0)
603 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700604 put_task_struct(task);
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100607 if (!ns)
608 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000609 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100610 goto err_put_ns;
611
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100612 ret = -ENOMEM;
613 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
614 if (!p)
615 goto err_put_path;
616
617 file->private_data = &p->m;
618 ret = seq_open(file, op);
619 if (ret)
620 goto err_free;
621
622 p->m.private = p;
623 p->ns = ns;
624 p->root = root;
625 p->event = ns->event;
626
627 return 0;
628
629 err_free:
630 kfree(p);
631 err_put_path:
632 path_put(&root);
633 err_put_ns:
634 put_mnt_ns(ns);
635 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return ret;
637}
638
639static int mounts_release(struct inode *inode, struct file *file)
640{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100641 struct proc_mounts *p = file->private_data;
642 path_put(&p->root);
643 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return seq_release(inode, file);
645}
646
Al Viro5addc5d2005-11-07 17:15:49 -0500647static unsigned mounts_poll(struct file *file, poll_table *wait)
648{
649 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900650 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500651
Al Viro9f5596a2010-02-05 00:40:25 -0500652 poll_wait(file, &p->ns->poll, wait);
653 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900654 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500655
656 return res;
657}
658
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100659static int mounts_open(struct inode *inode, struct file *file)
660{
661 return mounts_open_common(inode, file, &mounts_op);
662}
663
Arjan van de Ven00977a52007-02-12 00:55:34 -0800664static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .open = mounts_open,
666 .read = seq_read,
667 .llseek = seq_lseek,
668 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500669 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670};
671
Ram Pai2d4d4862008-03-27 13:06:25 +0100672static int mountinfo_open(struct inode *inode, struct file *file)
673{
674 return mounts_open_common(inode, file, &mountinfo_op);
675}
676
677static const struct file_operations proc_mountinfo_operations = {
678 .open = mountinfo_open,
679 .read = seq_read,
680 .llseek = seq_lseek,
681 .release = mounts_release,
682 .poll = mounts_poll,
683};
684
Chuck Leverb4629fe2006-03-20 13:44:12 -0500685static int mountstats_open(struct inode *inode, struct file *file)
686{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100687 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500688}
689
Arjan van de Ven00977a52007-02-12 00:55:34 -0800690static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500691 .open = mountstats_open,
692 .read = seq_read,
693 .llseek = seq_lseek,
694 .release = mounts_release,
695};
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
698
699static ssize_t proc_info_read(struct file * file, char __user * buf,
700 size_t count, loff_t *ppos)
701{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800702 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 unsigned long page;
704 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700705 struct task_struct *task = get_proc_task(inode);
706
707 length = -ESRCH;
708 if (!task)
709 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (count > PROC_BLOCK_SIZE)
712 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700713
714 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700715 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700716 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 length = PROC_I(inode)->op.proc_read(task, (char*)page);
719
720 if (length >= 0)
721 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
722 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700723out:
724 put_task_struct(task);
725out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return length;
727}
728
Arjan van de Ven00977a52007-02-12 00:55:34 -0800729static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100731 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732};
733
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800734static int proc_single_show(struct seq_file *m, void *v)
735{
736 struct inode *inode = m->private;
737 struct pid_namespace *ns;
738 struct pid *pid;
739 struct task_struct *task;
740 int ret;
741
742 ns = inode->i_sb->s_fs_info;
743 pid = proc_pid(inode);
744 task = get_pid_task(pid, PIDTYPE_PID);
745 if (!task)
746 return -ESRCH;
747
748 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
749
750 put_task_struct(task);
751 return ret;
752}
753
754static int proc_single_open(struct inode *inode, struct file *filp)
755{
756 int ret;
757 ret = single_open(filp, proc_single_show, NULL);
758 if (!ret) {
759 struct seq_file *m = filp->private_data;
760
761 m->private = inode;
762 }
763 return ret;
764}
765
766static const struct file_operations proc_single_file_operations = {
767 .open = proc_single_open,
768 .read = seq_read,
769 .llseek = seq_lseek,
770 .release = single_release,
771};
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static int mem_open(struct inode* inode, struct file* file)
774{
775 file->private_data = (void*)((long)current->self_exec_id);
776 return 0;
777}
778
779static ssize_t mem_read(struct file * file, char __user * buf,
780 size_t count, loff_t *ppos)
781{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800782 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 char *page;
784 unsigned long src = *ppos;
785 int ret = -ESRCH;
786 struct mm_struct *mm;
787
Eric W. Biederman99f89552006-06-26 00:25:55 -0700788 if (!task)
789 goto out_no_task;
790
Roland McGrath638fa202008-04-29 01:01:38 -0700791 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto out;
793
794 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700795 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!page)
797 goto out;
798
799 ret = 0;
800
801 mm = get_task_mm(task);
802 if (!mm)
803 goto out_free;
804
805 ret = -EIO;
806
807 if (file->private_data != (void*)((long)current->self_exec_id))
808 goto out_put;
809
810 ret = 0;
811
812 while (count > 0) {
813 int this_len, retval;
814
815 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
816 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700817 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!ret)
819 ret = -EIO;
820 break;
821 }
822
823 if (copy_to_user(buf, page, retval)) {
824 ret = -EFAULT;
825 break;
826 }
827
828 ret += retval;
829 src += retval;
830 buf += retval;
831 count -= retval;
832 }
833 *ppos = src;
834
835out_put:
836 mmput(mm);
837out_free:
838 free_page((unsigned long) page);
839out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700840 put_task_struct(task);
841out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ret;
843}
844
845#define mem_write NULL
846
847#ifndef mem_write
848/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800849static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 size_t count, loff_t *ppos)
851{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700852 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800854 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 unsigned long dst = *ppos;
856
Eric W. Biederman99f89552006-06-26 00:25:55 -0700857 copied = -ESRCH;
858 if (!task)
859 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Roland McGrath638fa202008-04-29 01:01:38 -0700861 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700862 goto out;
863
864 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700865 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700867 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700869 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 while (count > 0) {
871 int this_len, retval;
872
873 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
874 if (copy_from_user(page, buf, this_len)) {
875 copied = -EFAULT;
876 break;
877 }
878 retval = access_process_vm(task, dst, page, this_len, 1);
879 if (!retval) {
880 if (!copied)
881 copied = -EIO;
882 break;
883 }
884 copied += retval;
885 buf += retval;
886 dst += retval;
887 count -= retval;
888 }
889 *ppos = dst;
890 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700891out:
892 put_task_struct(task);
893out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return copied;
895}
896#endif
897
Matt Mackall85863e42008-02-04 22:29:04 -0800898loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 switch (orig) {
901 case 0:
902 file->f_pos = offset;
903 break;
904 case 1:
905 file->f_pos += offset;
906 break;
907 default:
908 return -EINVAL;
909 }
910 force_successful_syscall_return();
911 return file->f_pos;
912}
913
Arjan van de Ven00977a52007-02-12 00:55:34 -0800914static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .llseek = mem_lseek,
916 .read = mem_read,
917 .write = mem_write,
918 .open = mem_open,
919};
920
James Pearson315e28c2007-10-16 23:30:17 -0700921static ssize_t environ_read(struct file *file, char __user *buf,
922 size_t count, loff_t *ppos)
923{
924 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
925 char *page;
926 unsigned long src = *ppos;
927 int ret = -ESRCH;
928 struct mm_struct *mm;
929
930 if (!task)
931 goto out_no_task;
932
Stephen Smalley006ebb42008-05-19 08:32:49 -0400933 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700934 goto out;
935
936 ret = -ENOMEM;
937 page = (char *)__get_free_page(GFP_TEMPORARY);
938 if (!page)
939 goto out;
940
941 ret = 0;
942
943 mm = get_task_mm(task);
944 if (!mm)
945 goto out_free;
946
947 while (count > 0) {
948 int this_len, retval, max_len;
949
950 this_len = mm->env_end - (mm->env_start + src);
951
952 if (this_len <= 0)
953 break;
954
955 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
956 this_len = (this_len > max_len) ? max_len : this_len;
957
958 retval = access_process_vm(task, (mm->env_start + src),
959 page, this_len, 0);
960
961 if (retval <= 0) {
962 ret = retval;
963 break;
964 }
965
966 if (copy_to_user(buf, page, retval)) {
967 ret = -EFAULT;
968 break;
969 }
970
971 ret += retval;
972 src += retval;
973 buf += retval;
974 count -= retval;
975 }
976 *ppos = src;
977
978 mmput(mm);
979out_free:
980 free_page((unsigned long) page);
981out:
982 put_task_struct(task);
983out_no_task:
984 return ret;
985}
986
987static const struct file_operations proc_environ_operations = {
988 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100989 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700990};
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992static ssize_t oom_adjust_read(struct file *file, char __user *buf,
993 size_t count, loff_t *ppos)
994{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800995 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700996 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700998 int oom_adjust = OOM_DISABLE;
999 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Eric W. Biederman99f89552006-06-26 00:25:55 -07001001 if (!task)
1002 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001003
1004 if (lock_task_sighand(task, &flags)) {
1005 oom_adjust = task->signal->oom_adj;
1006 unlock_task_sighand(task, &flags);
1007 }
1008
Eric W. Biederman99f89552006-06-26 00:25:55 -07001009 put_task_struct(task);
1010
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001011 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001012
1013 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
1016static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1017 size_t count, loff_t *ppos)
1018{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001019 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001020 char buffer[PROC_NUMBUF];
1021 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001022 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001023 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001025 memset(buffer, 0, sizeof(buffer));
1026 if (count > sizeof(buffer) - 1)
1027 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (copy_from_user(buffer, buf, count))
1029 return -EFAULT;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001030
1031 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1032 if (err)
1033 return -EINVAL;
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;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001037
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001038 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001039 if (!task)
1040 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001041 if (!lock_task_sighand(task, &flags)) {
1042 put_task_struct(task);
1043 return -ESRCH;
1044 }
1045
1046 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1047 unlock_task_sighand(task, &flags);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001048 put_task_struct(task);
1049 return -EACCES;
1050 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001051
1052 task->signal->oom_adj = oom_adjust;
1053
1054 unlock_task_sighand(task, &flags);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001055 put_task_struct(task);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001056
1057 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
Arjan van de Ven00977a52007-02-12 00:55:34 -08001060static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .read = oom_adjust_read,
1062 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001063 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064};
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
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001095 rcu_read_lock();
1096 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1097 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001099 }
1100 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Al Viroe0182902006-05-18 08:28:02 -04001102 if (count >= PAGE_SIZE)
1103 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 if (*ppos != 0) {
1106 /* No partial writes. */
1107 return -EINVAL;
1108 }
Mel Gormane12ba742007-10-16 01:25:52 -07001109 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (!page)
1111 return -ENOMEM;
1112 length = -EFAULT;
1113 if (copy_from_user(page, buf, count))
1114 goto out_free_page;
1115
Al Viroe0182902006-05-18 08:28:02 -04001116 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 loginuid = simple_strtoul(page, &tmp, 10);
1118 if (tmp == page) {
1119 length = -EINVAL;
1120 goto out_free_page;
1121
1122 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001123 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (likely(length == 0))
1125 length = count;
1126
1127out_free_page:
1128 free_page((unsigned long) page);
1129 return length;
1130}
1131
Arjan van de Ven00977a52007-02-12 00:55:34 -08001132static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 .read = proc_loginuid_read,
1134 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001135 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136};
Eric Paris1e0bd752008-03-13 08:15:31 -04001137
1138static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1139 size_t count, loff_t *ppos)
1140{
1141 struct inode * inode = file->f_path.dentry->d_inode;
1142 struct task_struct *task = get_proc_task(inode);
1143 ssize_t length;
1144 char tmpbuf[TMPBUFLEN];
1145
1146 if (!task)
1147 return -ESRCH;
1148 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1149 audit_get_sessionid(task));
1150 put_task_struct(task);
1151 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1152}
1153
1154static const struct file_operations proc_sessionid_operations = {
1155 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001156 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001157};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158#endif
1159
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001160#ifdef CONFIG_FAULT_INJECTION
1161static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1162 size_t count, loff_t *ppos)
1163{
1164 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1165 char buffer[PROC_NUMBUF];
1166 size_t len;
1167 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001168
1169 if (!task)
1170 return -ESRCH;
1171 make_it_fail = task->make_it_fail;
1172 put_task_struct(task);
1173
1174 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001175
1176 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001177}
1178
1179static ssize_t proc_fault_inject_write(struct file * file,
1180 const char __user * buf, size_t count, loff_t *ppos)
1181{
1182 struct task_struct *task;
1183 char buffer[PROC_NUMBUF], *end;
1184 int make_it_fail;
1185
1186 if (!capable(CAP_SYS_RESOURCE))
1187 return -EPERM;
1188 memset(buffer, 0, sizeof(buffer));
1189 if (count > sizeof(buffer) - 1)
1190 count = sizeof(buffer) - 1;
1191 if (copy_from_user(buffer, buf, count))
1192 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001193 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1194 if (*end)
1195 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001196 task = get_proc_task(file->f_dentry->d_inode);
1197 if (!task)
1198 return -ESRCH;
1199 task->make_it_fail = make_it_fail;
1200 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001201
1202 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001203}
1204
Arjan van de Ven00977a52007-02-12 00:55:34 -08001205static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001206 .read = proc_fault_inject_read,
1207 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001208 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001209};
1210#endif
1211
Arjan van de Ven97455122008-01-25 21:08:34 +01001212
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001213#ifdef CONFIG_SCHED_DEBUG
1214/*
1215 * Print out various scheduling related per-task fields:
1216 */
1217static int sched_show(struct seq_file *m, void *v)
1218{
1219 struct inode *inode = m->private;
1220 struct task_struct *p;
1221
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001222 p = get_proc_task(inode);
1223 if (!p)
1224 return -ESRCH;
1225 proc_sched_show_task(p, m);
1226
1227 put_task_struct(p);
1228
1229 return 0;
1230}
1231
1232static ssize_t
1233sched_write(struct file *file, const char __user *buf,
1234 size_t count, loff_t *offset)
1235{
1236 struct inode *inode = file->f_path.dentry->d_inode;
1237 struct task_struct *p;
1238
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001239 p = get_proc_task(inode);
1240 if (!p)
1241 return -ESRCH;
1242 proc_sched_set_task(p);
1243
1244 put_task_struct(p);
1245
1246 return count;
1247}
1248
1249static int sched_open(struct inode *inode, struct file *filp)
1250{
1251 int ret;
1252
1253 ret = single_open(filp, sched_show, NULL);
1254 if (!ret) {
1255 struct seq_file *m = filp->private_data;
1256
1257 m->private = inode;
1258 }
1259 return ret;
1260}
1261
1262static const struct file_operations proc_pid_sched_operations = {
1263 .open = sched_open,
1264 .read = seq_read,
1265 .write = sched_write,
1266 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001267 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001268};
1269
1270#endif
1271
john stultz4614a696b2009-12-14 18:00:05 -08001272static ssize_t comm_write(struct file *file, const char __user *buf,
1273 size_t count, loff_t *offset)
1274{
1275 struct inode *inode = file->f_path.dentry->d_inode;
1276 struct task_struct *p;
1277 char buffer[TASK_COMM_LEN];
1278
1279 memset(buffer, 0, sizeof(buffer));
1280 if (count > sizeof(buffer) - 1)
1281 count = sizeof(buffer) - 1;
1282 if (copy_from_user(buffer, buf, count))
1283 return -EFAULT;
1284
1285 p = get_proc_task(inode);
1286 if (!p)
1287 return -ESRCH;
1288
1289 if (same_thread_group(current, p))
1290 set_task_comm(p, buffer);
1291 else
1292 count = -EINVAL;
1293
1294 put_task_struct(p);
1295
1296 return count;
1297}
1298
1299static int comm_show(struct seq_file *m, void *v)
1300{
1301 struct inode *inode = m->private;
1302 struct task_struct *p;
1303
1304 p = get_proc_task(inode);
1305 if (!p)
1306 return -ESRCH;
1307
1308 task_lock(p);
1309 seq_printf(m, "%s\n", p->comm);
1310 task_unlock(p);
1311
1312 put_task_struct(p);
1313
1314 return 0;
1315}
1316
1317static int comm_open(struct inode *inode, struct file *filp)
1318{
1319 int ret;
1320
1321 ret = single_open(filp, comm_show, NULL);
1322 if (!ret) {
1323 struct seq_file *m = filp->private_data;
1324
1325 m->private = inode;
1326 }
1327 return ret;
1328}
1329
1330static const struct file_operations proc_pid_set_comm_operations = {
1331 .open = comm_open,
1332 .read = seq_read,
1333 .write = comm_write,
1334 .llseek = seq_lseek,
1335 .release = single_release,
1336};
1337
Matt Helsley925d1c42008-04-29 01:01:36 -07001338/*
1339 * We added or removed a vma mapping the executable. The vmas are only mapped
1340 * during exec and are not mapped with the mmap system call.
1341 * Callers must hold down_write() on the mm's mmap_sem for these
1342 */
1343void added_exe_file_vma(struct mm_struct *mm)
1344{
1345 mm->num_exe_file_vmas++;
1346}
1347
1348void removed_exe_file_vma(struct mm_struct *mm)
1349{
1350 mm->num_exe_file_vmas--;
1351 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1352 fput(mm->exe_file);
1353 mm->exe_file = NULL;
1354 }
1355
1356}
1357
1358void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1359{
1360 if (new_exe_file)
1361 get_file(new_exe_file);
1362 if (mm->exe_file)
1363 fput(mm->exe_file);
1364 mm->exe_file = new_exe_file;
1365 mm->num_exe_file_vmas = 0;
1366}
1367
1368struct file *get_mm_exe_file(struct mm_struct *mm)
1369{
1370 struct file *exe_file;
1371
1372 /* We need mmap_sem to protect against races with removal of
1373 * VM_EXECUTABLE vmas */
1374 down_read(&mm->mmap_sem);
1375 exe_file = mm->exe_file;
1376 if (exe_file)
1377 get_file(exe_file);
1378 up_read(&mm->mmap_sem);
1379 return exe_file;
1380}
1381
1382void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1383{
1384 /* It's safe to write the exe_file pointer without exe_file_lock because
1385 * this is called during fork when the task is not yet in /proc */
1386 newmm->exe_file = get_mm_exe_file(oldmm);
1387}
1388
1389static int proc_exe_link(struct inode *inode, struct path *exe_path)
1390{
1391 struct task_struct *task;
1392 struct mm_struct *mm;
1393 struct file *exe_file;
1394
1395 task = get_proc_task(inode);
1396 if (!task)
1397 return -ENOENT;
1398 mm = get_task_mm(task);
1399 put_task_struct(task);
1400 if (!mm)
1401 return -ENOENT;
1402 exe_file = get_mm_exe_file(mm);
1403 mmput(mm);
1404 if (exe_file) {
1405 *exe_path = exe_file->f_path;
1406 path_get(&exe_file->f_path);
1407 fput(exe_file);
1408 return 0;
1409 } else
1410 return -ENOENT;
1411}
1412
Al Viro008b1502005-08-20 00:17:39 +01001413static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct inode *inode = dentry->d_inode;
1416 int error = -EACCES;
1417
1418 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001419 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Eric W. Biederman778c1142006-06-26 00:25:58 -07001421 /* Are we allowed to snoop on the tasks file descriptors? */
1422 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001425 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426out:
Al Viro008b1502005-08-20 00:17:39 +01001427 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001430static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Mel Gormane12ba742007-10-16 01:25:52 -07001432 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001433 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 int len;
1435
1436 if (!tmp)
1437 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001438
Jan Blunckcf28b482008-02-14 19:38:44 -08001439 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001440 len = PTR_ERR(pathname);
1441 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001443 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (len > buflen)
1446 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001447 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 len = -EFAULT;
1449 out:
1450 free_page((unsigned long)tmp);
1451 return len;
1452}
1453
1454static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1455{
1456 int error = -EACCES;
1457 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001458 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Eric W. Biederman778c1142006-06-26 00:25:58 -07001460 /* Are we allowed to snoop on the tasks file descriptors? */
1461 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001464 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (error)
1466 goto out;
1467
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001468 error = do_proc_readlink(&path, buffer, buflen);
1469 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return error;
1472}
1473
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001474static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001476 .follow_link = proc_pid_follow_link,
1477 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478};
1479
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001480
1481/* building an inode */
1482
1483static int task_dumpable(struct task_struct *task)
1484{
1485 int dumpable = 0;
1486 struct mm_struct *mm;
1487
1488 task_lock(task);
1489 mm = task->mm;
1490 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001491 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001492 task_unlock(task);
1493 if(dumpable == 1)
1494 return 1;
1495 return 0;
1496}
1497
1498
Eric W. Biederman61a28782006-10-02 02:18:49 -07001499static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001500{
1501 struct inode * inode;
1502 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001503 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001504
1505 /* We need a new inode */
1506
1507 inode = new_inode(sb);
1508 if (!inode)
1509 goto out;
1510
1511 /* Common stuff */
1512 ei = PROC_I(inode);
1513 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001514 inode->i_op = &proc_def_inode_operations;
1515
1516 /*
1517 * grab the reference to task.
1518 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001519 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001520 if (!ei->pid)
1521 goto out_unlock;
1522
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001523 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001524 rcu_read_lock();
1525 cred = __task_cred(task);
1526 inode->i_uid = cred->euid;
1527 inode->i_gid = cred->egid;
1528 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001529 }
1530 security_task_to_inode(task, inode);
1531
1532out:
1533 return inode;
1534
1535out_unlock:
1536 iput(inode);
1537 return NULL;
1538}
1539
1540static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1541{
1542 struct inode *inode = dentry->d_inode;
1543 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001544 const struct cred *cred;
1545
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001546 generic_fillattr(inode, stat);
1547
1548 rcu_read_lock();
1549 stat->uid = 0;
1550 stat->gid = 0;
1551 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1552 if (task) {
1553 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1554 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001555 cred = __task_cred(task);
1556 stat->uid = cred->euid;
1557 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001558 }
1559 }
1560 rcu_read_unlock();
1561 return 0;
1562}
1563
1564/* dentry stuff */
1565
1566/*
1567 * Exceptional case: normally we are not allowed to unhash a busy
1568 * directory. In this case, however, we can do it - no aliasing problems
1569 * due to the way we treat inodes.
1570 *
1571 * Rewrite the inode's ownerships here because the owning task may have
1572 * performed a setuid(), etc.
1573 *
1574 * Before the /proc/pid/status file was created the only way to read
1575 * the effective uid of a /process was to stat /proc/pid. Reading
1576 * /proc/pid/status is slow enough that procps and other packages
1577 * kept stating /proc/pid. To keep the rules in /proc simple I have
1578 * made this apply to all per process world readable and executable
1579 * directories.
1580 */
1581static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1582{
1583 struct inode *inode = dentry->d_inode;
1584 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001585 const struct cred *cred;
1586
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001587 if (task) {
1588 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1589 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001590 rcu_read_lock();
1591 cred = __task_cred(task);
1592 inode->i_uid = cred->euid;
1593 inode->i_gid = cred->egid;
1594 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001595 } else {
1596 inode->i_uid = 0;
1597 inode->i_gid = 0;
1598 }
1599 inode->i_mode &= ~(S_ISUID | S_ISGID);
1600 security_task_to_inode(task, inode);
1601 put_task_struct(task);
1602 return 1;
1603 }
1604 d_drop(dentry);
1605 return 0;
1606}
1607
1608static int pid_delete_dentry(struct dentry * dentry)
1609{
1610 /* Is the task we represent dead?
1611 * If so, then don't put the dentry on the lru list,
1612 * kill it immediately.
1613 */
1614 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1615}
1616
Al Virod72f71e2009-02-20 05:58:47 +00001617static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001618{
1619 .d_revalidate = pid_revalidate,
1620 .d_delete = pid_delete_dentry,
1621};
1622
1623/* Lookups */
1624
Eric Dumazetc5141e62007-05-08 00:26:15 -07001625typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1626 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001627
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001628/*
1629 * Fill a directory entry.
1630 *
1631 * If possible create the dcache entry and derive our inode number and
1632 * file type from dcache entry.
1633 *
1634 * Since all of the proc inode numbers are dynamically generated, the inode
1635 * numbers do not exist until the inode is cache. This means creating the
1636 * the dcache entry in readdir is necessary to keep the inode numbers
1637 * reported by readdir in sync with the inode numbers reported
1638 * by stat.
1639 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001640static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1641 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001642 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001643{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001644 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001645 struct inode *inode;
1646 struct qstr qname;
1647 ino_t ino = 0;
1648 unsigned type = DT_UNKNOWN;
1649
1650 qname.name = name;
1651 qname.len = len;
1652 qname.hash = full_name_hash(name, len);
1653
1654 child = d_lookup(dir, &qname);
1655 if (!child) {
1656 struct dentry *new;
1657 new = d_alloc(dir, &qname);
1658 if (new) {
1659 child = instantiate(dir->d_inode, new, task, ptr);
1660 if (child)
1661 dput(new);
1662 else
1663 child = new;
1664 }
1665 }
1666 if (!child || IS_ERR(child) || !child->d_inode)
1667 goto end_instantiate;
1668 inode = child->d_inode;
1669 if (inode) {
1670 ino = inode->i_ino;
1671 type = inode->i_mode >> 12;
1672 }
1673 dput(child);
1674end_instantiate:
1675 if (!ino)
1676 ino = find_inode_number(dir, &qname);
1677 if (!ino)
1678 ino = 1;
1679 return filldir(dirent, name, len, filp->f_pos, ino, type);
1680}
1681
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001682static unsigned name_to_int(struct dentry *dentry)
1683{
1684 const char *name = dentry->d_name.name;
1685 int len = dentry->d_name.len;
1686 unsigned n = 0;
1687
1688 if (len > 1 && *name == '0')
1689 goto out;
1690 while (len-- > 0) {
1691 unsigned c = *name++ - '0';
1692 if (c > 9)
1693 goto out;
1694 if (n >= (~0U-9)/10)
1695 goto out;
1696 n *= 10;
1697 n += c;
1698 }
1699 return n;
1700out:
1701 return ~0U;
1702}
1703
Miklos Szeredi27932742007-05-08 00:26:17 -07001704#define PROC_FDINFO_MAX 64
1705
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001706static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001707{
1708 struct task_struct *task = get_proc_task(inode);
1709 struct files_struct *files = NULL;
1710 struct file *file;
1711 int fd = proc_fd(inode);
1712
1713 if (task) {
1714 files = get_files_struct(task);
1715 put_task_struct(task);
1716 }
1717 if (files) {
1718 /*
1719 * We are not taking a ref to the file structure, so we must
1720 * hold ->file_lock.
1721 */
1722 spin_lock(&files->file_lock);
1723 file = fcheck_files(files, fd);
1724 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001725 if (path) {
1726 *path = file->f_path;
1727 path_get(&file->f_path);
1728 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001729 if (info)
1730 snprintf(info, PROC_FDINFO_MAX,
1731 "pos:\t%lli\n"
1732 "flags:\t0%o\n",
1733 (long long) file->f_pos,
1734 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001735 spin_unlock(&files->file_lock);
1736 put_files_struct(files);
1737 return 0;
1738 }
1739 spin_unlock(&files->file_lock);
1740 put_files_struct(files);
1741 }
1742 return -ENOENT;
1743}
1744
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001745static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001746{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001747 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001748}
1749
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001750static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1751{
1752 struct inode *inode = dentry->d_inode;
1753 struct task_struct *task = get_proc_task(inode);
1754 int fd = proc_fd(inode);
1755 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001756 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001757
1758 if (task) {
1759 files = get_files_struct(task);
1760 if (files) {
1761 rcu_read_lock();
1762 if (fcheck_files(files, fd)) {
1763 rcu_read_unlock();
1764 put_files_struct(files);
1765 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001766 rcu_read_lock();
1767 cred = __task_cred(task);
1768 inode->i_uid = cred->euid;
1769 inode->i_gid = cred->egid;
1770 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001771 } else {
1772 inode->i_uid = 0;
1773 inode->i_gid = 0;
1774 }
1775 inode->i_mode &= ~(S_ISUID | S_ISGID);
1776 security_task_to_inode(task, inode);
1777 put_task_struct(task);
1778 return 1;
1779 }
1780 rcu_read_unlock();
1781 put_files_struct(files);
1782 }
1783 put_task_struct(task);
1784 }
1785 d_drop(dentry);
1786 return 0;
1787}
1788
Al Virod72f71e2009-02-20 05:58:47 +00001789static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001790{
1791 .d_revalidate = tid_fd_revalidate,
1792 .d_delete = pid_delete_dentry,
1793};
1794
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001795static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001796 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001797{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001798 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001799 struct file *file;
1800 struct files_struct *files;
1801 struct inode *inode;
1802 struct proc_inode *ei;
1803 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001804
Eric W. Biederman61a28782006-10-02 02:18:49 -07001805 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001806 if (!inode)
1807 goto out;
1808 ei = PROC_I(inode);
1809 ei->fd = fd;
1810 files = get_files_struct(task);
1811 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001812 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001813 inode->i_mode = S_IFLNK;
1814
1815 /*
1816 * We are not taking a ref to the file structure, so we must
1817 * hold ->file_lock.
1818 */
1819 spin_lock(&files->file_lock);
1820 file = fcheck_files(files, fd);
1821 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001822 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001823 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001824 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001825 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001826 inode->i_mode |= S_IWUSR | S_IXUSR;
1827 spin_unlock(&files->file_lock);
1828 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001829
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001830 inode->i_op = &proc_pid_link_inode_operations;
1831 inode->i_size = 64;
1832 ei->op.proc_get_link = proc_fd_link;
1833 dentry->d_op = &tid_fd_dentry_operations;
1834 d_add(dentry, inode);
1835 /* Close the race of the process dying before we return the dentry */
1836 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001837 error = NULL;
1838
1839 out:
1840 return error;
1841out_unlock:
1842 spin_unlock(&files->file_lock);
1843 put_files_struct(files);
1844out_iput:
1845 iput(inode);
1846 goto out;
1847}
1848
Miklos Szeredi27932742007-05-08 00:26:17 -07001849static struct dentry *proc_lookupfd_common(struct inode *dir,
1850 struct dentry *dentry,
1851 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001852{
1853 struct task_struct *task = get_proc_task(dir);
1854 unsigned fd = name_to_int(dentry);
1855 struct dentry *result = ERR_PTR(-ENOENT);
1856
1857 if (!task)
1858 goto out_no_task;
1859 if (fd == ~0U)
1860 goto out;
1861
Miklos Szeredi27932742007-05-08 00:26:17 -07001862 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001863out:
1864 put_task_struct(task);
1865out_no_task:
1866 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001867}
1868
Miklos Szeredi27932742007-05-08 00:26:17 -07001869static int proc_readfd_common(struct file * filp, void * dirent,
1870 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001872 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001873 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001874 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001875 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 struct files_struct * files;
1878
1879 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001880 if (!p)
1881 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 fd = filp->f_pos;
1885 switch (fd) {
1886 case 0:
1887 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1888 goto out;
1889 filp->f_pos++;
1890 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001891 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1893 goto out;
1894 filp->f_pos++;
1895 default:
1896 files = get_files_struct(p);
1897 if (!files)
1898 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001899 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001901 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001903 char name[PROC_NUMBUF];
1904 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 if (!fcheck_files(files, fd))
1907 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001908 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Miklos Szeredi27932742007-05-08 00:26:17 -07001910 len = snprintf(name, sizeof(name), "%d", fd);
1911 if (proc_fill_cache(filp, dirent, filldir,
1912 name, len, instantiate,
1913 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001914 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 break;
1916 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001917 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001919 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 put_files_struct(files);
1921 }
1922out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001923 put_task_struct(p);
1924out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 return retval;
1926}
1927
Miklos Szeredi27932742007-05-08 00:26:17 -07001928static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1929 struct nameidata *nd)
1930{
1931 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1932}
1933
1934static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1935{
1936 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1937}
1938
1939static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1940 size_t len, loff_t *ppos)
1941{
1942 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001943 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001944 if (!err)
1945 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1946 return err;
1947}
1948
1949static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01001950 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07001951 .read = proc_fdinfo_read,
1952};
1953
Arjan van de Ven00977a52007-02-12 00:55:34 -08001954static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 .read = generic_read_dir,
1956 .readdir = proc_readfd,
1957};
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001960 * /proc/pid/fd needs a special permission handler so that a process can still
1961 * access /proc/self/fd after it has executed a setuid().
1962 */
Al Viroe6305c42008-07-15 21:03:57 -04001963static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001964{
1965 int rv;
1966
1967 rv = generic_permission(inode, mask, NULL);
1968 if (rv == 0)
1969 return 0;
1970 if (task_pid(current) == proc_pid(inode))
1971 rv = 0;
1972 return rv;
1973}
1974
1975/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * proc directories can do almost nothing..
1977 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001978static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001980 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001981 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982};
1983
Miklos Szeredi27932742007-05-08 00:26:17 -07001984static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
1985 struct dentry *dentry, struct task_struct *task, const void *ptr)
1986{
1987 unsigned fd = *(unsigned *)ptr;
1988 struct inode *inode;
1989 struct proc_inode *ei;
1990 struct dentry *error = ERR_PTR(-ENOENT);
1991
1992 inode = proc_pid_make_inode(dir->i_sb, task);
1993 if (!inode)
1994 goto out;
1995 ei = PROC_I(inode);
1996 ei->fd = fd;
1997 inode->i_mode = S_IFREG | S_IRUSR;
1998 inode->i_fop = &proc_fdinfo_file_operations;
1999 dentry->d_op = &tid_fd_dentry_operations;
2000 d_add(dentry, inode);
2001 /* Close the race of the process dying before we return the dentry */
2002 if (tid_fd_revalidate(dentry, NULL))
2003 error = NULL;
2004
2005 out:
2006 return error;
2007}
2008
2009static struct dentry *proc_lookupfdinfo(struct inode *dir,
2010 struct dentry *dentry,
2011 struct nameidata *nd)
2012{
2013 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2014}
2015
2016static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2017{
2018 return proc_readfd_common(filp, dirent, filldir,
2019 proc_fdinfo_instantiate);
2020}
2021
2022static const struct file_operations proc_fdinfo_operations = {
2023 .read = generic_read_dir,
2024 .readdir = proc_readfdinfo,
2025};
2026
2027/*
2028 * proc directories can do almost nothing..
2029 */
2030static const struct inode_operations proc_fdinfo_inode_operations = {
2031 .lookup = proc_lookupfdinfo,
2032 .setattr = proc_setattr,
2033};
2034
2035
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002036static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002037 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002038{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002039 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002040 struct inode *inode;
2041 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002042 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002043
Eric W. Biederman61a28782006-10-02 02:18:49 -07002044 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002045 if (!inode)
2046 goto out;
2047
2048 ei = PROC_I(inode);
2049 inode->i_mode = p->mode;
2050 if (S_ISDIR(inode->i_mode))
2051 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2052 if (p->iop)
2053 inode->i_op = p->iop;
2054 if (p->fop)
2055 inode->i_fop = p->fop;
2056 ei->op = p->op;
2057 dentry->d_op = &pid_dentry_operations;
2058 d_add(dentry, inode);
2059 /* Close the race of the process dying before we return the dentry */
2060 if (pid_revalidate(dentry, NULL))
2061 error = NULL;
2062out:
2063 return error;
2064}
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066static struct dentry *proc_pident_lookup(struct inode *dir,
2067 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002068 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002069 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002071 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002072 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002073 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002075 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Eric W. Biederman99f89552006-06-26 00:25:55 -07002077 if (!task)
2078 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002080 /*
2081 * Yes, it does not scale. And it should not. Don't add
2082 * new entries into /proc/<tgid>/ without very good reasons.
2083 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002084 last = &ents[nents - 1];
2085 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (p->len != dentry->d_name.len)
2087 continue;
2088 if (!memcmp(dentry->d_name.name, p->name, p->len))
2089 break;
2090 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002091 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 goto out;
2093
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002094 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002096 put_task_struct(task);
2097out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002098 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Eric Dumazetc5141e62007-05-08 00:26:15 -07002101static int proc_pident_fill_cache(struct file *filp, void *dirent,
2102 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002103{
2104 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2105 proc_pident_instantiate, task, p);
2106}
2107
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002108static int proc_pident_readdir(struct file *filp,
2109 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002110 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002111{
2112 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002113 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002114 struct inode *inode = dentry->d_inode;
2115 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002116 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002117 ino_t ino;
2118 int ret;
2119
2120 ret = -ENOENT;
2121 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002122 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002123
2124 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002125 i = filp->f_pos;
2126 switch (i) {
2127 case 0:
2128 ino = inode->i_ino;
2129 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2130 goto out;
2131 i++;
2132 filp->f_pos++;
2133 /* fall through */
2134 case 1:
2135 ino = parent_ino(dentry);
2136 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2137 goto out;
2138 i++;
2139 filp->f_pos++;
2140 /* fall through */
2141 default:
2142 i -= 2;
2143 if (i >= nents) {
2144 ret = 1;
2145 goto out;
2146 }
2147 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002148 last = &ents[nents - 1];
2149 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002150 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002151 goto out;
2152 filp->f_pos++;
2153 p++;
2154 }
2155 }
2156
2157 ret = 1;
2158out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002159 put_task_struct(task);
2160out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002165static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2166 size_t count, loff_t *ppos)
2167{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002168 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002169 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002170 ssize_t length;
2171 struct task_struct *task = get_proc_task(inode);
2172
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002173 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002174 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002175
2176 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002177 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002178 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002179 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002180 if (length > 0)
2181 length = simple_read_from_buffer(buf, count, ppos, p, length);
2182 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002183 return length;
2184}
2185
2186static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2187 size_t count, loff_t *ppos)
2188{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002189 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002190 char *page;
2191 ssize_t length;
2192 struct task_struct *task = get_proc_task(inode);
2193
2194 length = -ESRCH;
2195 if (!task)
2196 goto out_no_task;
2197 if (count > PAGE_SIZE)
2198 count = PAGE_SIZE;
2199
2200 /* No partial writes. */
2201 length = -EINVAL;
2202 if (*ppos != 0)
2203 goto out;
2204
2205 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002206 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002207 if (!page)
2208 goto out;
2209
2210 length = -EFAULT;
2211 if (copy_from_user(page, buf, count))
2212 goto out_free;
2213
David Howells107db7c2009-05-08 13:55:27 +01002214 /* Guard against adverse ptrace interaction */
2215 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2216 if (length < 0)
2217 goto out_free;
2218
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002219 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002220 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002221 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002222 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002223out_free:
2224 free_page((unsigned long) page);
2225out:
2226 put_task_struct(task);
2227out_no_task:
2228 return length;
2229}
2230
Arjan van de Ven00977a52007-02-12 00:55:34 -08002231static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002232 .read = proc_pid_attr_read,
2233 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002234 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002235};
2236
Eric Dumazetc5141e62007-05-08 00:26:15 -07002237static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002238 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2239 REG("prev", S_IRUGO, proc_pid_attr_operations),
2240 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2241 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2242 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2243 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002244};
2245
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002246static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 void * dirent, filldir_t filldir)
2248{
2249 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002250 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
Arjan van de Ven00977a52007-02-12 00:55:34 -08002253static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002255 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256};
2257
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002258static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct dentry *dentry, struct nameidata *nd)
2260{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002261 return proc_pident_lookup(dir, dentry,
2262 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263}
2264
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002265static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002266 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002267 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002268 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269};
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271#endif
2272
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002273#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002274static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2275 size_t count, loff_t *ppos)
2276{
2277 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2278 struct mm_struct *mm;
2279 char buffer[PROC_NUMBUF];
2280 size_t len;
2281 int ret;
2282
2283 if (!task)
2284 return -ESRCH;
2285
2286 ret = 0;
2287 mm = get_task_mm(task);
2288 if (mm) {
2289 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2290 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2291 MMF_DUMP_FILTER_SHIFT));
2292 mmput(mm);
2293 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2294 }
2295
2296 put_task_struct(task);
2297
2298 return ret;
2299}
2300
2301static ssize_t proc_coredump_filter_write(struct file *file,
2302 const char __user *buf,
2303 size_t count,
2304 loff_t *ppos)
2305{
2306 struct task_struct *task;
2307 struct mm_struct *mm;
2308 char buffer[PROC_NUMBUF], *end;
2309 unsigned int val;
2310 int ret;
2311 int i;
2312 unsigned long mask;
2313
2314 ret = -EFAULT;
2315 memset(buffer, 0, sizeof(buffer));
2316 if (count > sizeof(buffer) - 1)
2317 count = sizeof(buffer) - 1;
2318 if (copy_from_user(buffer, buf, count))
2319 goto out_no_task;
2320
2321 ret = -EINVAL;
2322 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2323 if (*end == '\n')
2324 end++;
2325 if (end - buffer == 0)
2326 goto out_no_task;
2327
2328 ret = -ESRCH;
2329 task = get_proc_task(file->f_dentry->d_inode);
2330 if (!task)
2331 goto out_no_task;
2332
2333 ret = end - buffer;
2334 mm = get_task_mm(task);
2335 if (!mm)
2336 goto out_no_mm;
2337
2338 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2339 if (val & mask)
2340 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2341 else
2342 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2343 }
2344
2345 mmput(mm);
2346 out_no_mm:
2347 put_task_struct(task);
2348 out_no_task:
2349 return ret;
2350}
2351
2352static const struct file_operations proc_coredump_filter_operations = {
2353 .read = proc_coredump_filter_read,
2354 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002355 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002356};
2357#endif
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359/*
2360 * /proc/self:
2361 */
2362static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2363 int buflen)
2364{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002365 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002366 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002367 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002368 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002369 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002370 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return vfs_readlink(dentry,buffer,buflen,tmp);
2372}
2373
Al Viro008b1502005-08-20 00:17:39 +01002374static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002376 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002377 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002378 char *name = ERR_PTR(-ENOENT);
2379 if (tgid) {
2380 name = __getname();
2381 if (!name)
2382 name = ERR_PTR(-ENOMEM);
2383 else
2384 sprintf(name, "%d", tgid);
2385 }
2386 nd_set_link(nd, name);
2387 return NULL;
2388}
2389
2390static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2391 void *cookie)
2392{
2393 char *s = nd_get_link(nd);
2394 if (!IS_ERR(s))
2395 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002396}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002398static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 .readlink = proc_self_readlink,
2400 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002401 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402};
2403
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002404/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002405 * proc base
2406 *
2407 * These are the directory entries in the root directory of /proc
2408 * that properly belong to the /proc filesystem, as they describe
2409 * describe something that is process related.
2410 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002411static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002412 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002413 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002414};
2415
2416/*
2417 * Exceptional case: normally we are not allowed to unhash a busy
2418 * directory. In this case, however, we can do it - no aliasing problems
2419 * due to the way we treat inodes.
2420 */
2421static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2422{
2423 struct inode *inode = dentry->d_inode;
2424 struct task_struct *task = get_proc_task(inode);
2425 if (task) {
2426 put_task_struct(task);
2427 return 1;
2428 }
2429 d_drop(dentry);
2430 return 0;
2431}
2432
Al Virod72f71e2009-02-20 05:58:47 +00002433static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002434{
2435 .d_revalidate = proc_base_revalidate,
2436 .d_delete = pid_delete_dentry,
2437};
2438
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002439static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002440 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002441{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002442 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002443 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002444 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002445 struct dentry *error = ERR_PTR(-EINVAL);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002446
2447 /* Allocate the inode */
2448 error = ERR_PTR(-ENOMEM);
2449 inode = new_inode(dir->i_sb);
2450 if (!inode)
2451 goto out;
2452
2453 /* Initialize the inode */
2454 ei = PROC_I(inode);
2455 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002456
2457 /*
2458 * grab the reference to the task.
2459 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002460 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002461 if (!ei->pid)
2462 goto out_iput;
2463
Eric W. Biederman801199c2006-10-02 02:18:48 -07002464 inode->i_mode = p->mode;
2465 if (S_ISDIR(inode->i_mode))
2466 inode->i_nlink = 2;
2467 if (S_ISLNK(inode->i_mode))
2468 inode->i_size = 64;
2469 if (p->iop)
2470 inode->i_op = p->iop;
2471 if (p->fop)
2472 inode->i_fop = p->fop;
2473 ei->op = p->op;
2474 dentry->d_op = &proc_base_dentry_operations;
2475 d_add(dentry, inode);
2476 error = NULL;
2477out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002478 return error;
2479out_iput:
2480 iput(inode);
2481 goto out;
2482}
2483
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002484static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2485{
2486 struct dentry *error;
2487 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002488 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002489
2490 error = ERR_PTR(-ENOENT);
2491
2492 if (!task)
2493 goto out_no_task;
2494
2495 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002496 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2497 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002498 if (p->len != dentry->d_name.len)
2499 continue;
2500 if (!memcmp(dentry->d_name.name, p->name, p->len))
2501 break;
2502 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002503 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002504 goto out;
2505
2506 error = proc_base_instantiate(dir, dentry, task, p);
2507
2508out:
2509 put_task_struct(task);
2510out_no_task:
2511 return error;
2512}
2513
Eric Dumazetc5141e62007-05-08 00:26:15 -07002514static int proc_base_fill_cache(struct file *filp, void *dirent,
2515 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002516{
2517 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2518 proc_base_instantiate, task, p);
2519}
2520
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002521#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002522static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002523{
Andrea Righi940389b2008-07-28 00:48:12 +02002524 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002525 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002526
Andrea Righi59954772008-07-27 17:29:15 +02002527 if (whole && lock_task_sighand(task, &flags)) {
2528 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002529
Andrea Righi59954772008-07-27 17:29:15 +02002530 task_io_accounting_add(&acct, &task->signal->ioac);
2531 while_each_thread(task, t)
2532 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002533
Andrea Righi59954772008-07-27 17:29:15 +02002534 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002535 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002536 return sprintf(buffer,
2537 "rchar: %llu\n"
2538 "wchar: %llu\n"
2539 "syscr: %llu\n"
2540 "syscw: %llu\n"
2541 "read_bytes: %llu\n"
2542 "write_bytes: %llu\n"
2543 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002544 (unsigned long long)acct.rchar,
2545 (unsigned long long)acct.wchar,
2546 (unsigned long long)acct.syscr,
2547 (unsigned long long)acct.syscw,
2548 (unsigned long long)acct.read_bytes,
2549 (unsigned long long)acct.write_bytes,
2550 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002551}
Andrea Righi297c5d92008-07-25 01:48:49 -07002552
2553static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2554{
2555 return do_io_accounting(task, buffer, 0);
2556}
2557
2558static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2559{
2560 return do_io_accounting(task, buffer, 1);
2561}
2562#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002563
Kees Cook47830722008-10-06 03:11:58 +04002564static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2565 struct pid *pid, struct task_struct *task)
2566{
2567 seq_printf(m, "%08x\n", task->personality);
2568 return 0;
2569}
2570
Eric W. Biederman801199c2006-10-02 02:18:48 -07002571/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002572 * Thread groups
2573 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002574static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002575static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002576
Eric Dumazetc5141e62007-05-08 00:26:15 -07002577static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002578 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2579 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2580 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002581#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002582 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002583#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002584 REG("environ", S_IRUSR, proc_environ_operations),
2585 INF("auxv", S_IRUSR, proc_pid_auxv),
2586 ONE("status", S_IRUGO, proc_pid_status),
2587 ONE("personality", S_IRUSR, proc_pid_personality),
2588 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002589#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002590 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002591#endif
john stultz4614a696b2009-12-14 18:00:05 -08002592 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002593#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002594 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002595#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002596 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2597 ONE("stat", S_IRUGO, proc_tgid_stat),
2598 ONE("statm", S_IRUGO, proc_pid_statm),
2599 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002600#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002601 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002602#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002603 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2604 LNK("cwd", proc_cwd_link),
2605 LNK("root", proc_root_link),
2606 LNK("exe", proc_exe_link),
2607 REG("mounts", S_IRUGO, proc_mounts_operations),
2608 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2609 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002610#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002611 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2612 REG("smaps", S_IRUGO, proc_smaps_operations),
2613 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002614#endif
2615#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002616 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002617#endif
2618#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002619 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002620#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002621#ifdef CONFIG_STACKTRACE
2622 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002623#endif
2624#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002625 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002626#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002627#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002628 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002629#endif
Paul Menage8793d852007-10-18 23:39:39 -07002630#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002631 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002632#endif
Paul Menagea4243162007-10-18 23:39:35 -07002633#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002634 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002635#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002636 INF("oom_score", S_IRUGO, proc_oom_score),
2637 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002638#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002639 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2640 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002641#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002642#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002643 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002644#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002645#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002646 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002647#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002648#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002649 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002650#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002651};
2652
2653static int proc_tgid_base_readdir(struct file * filp,
2654 void * dirent, filldir_t filldir)
2655{
2656 return proc_pident_readdir(filp,dirent,filldir,
2657 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2658}
2659
Arjan van de Ven00977a52007-02-12 00:55:34 -08002660static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002661 .read = generic_read_dir,
2662 .readdir = proc_tgid_base_readdir,
2663};
2664
2665static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002666 return proc_pident_lookup(dir, dentry,
2667 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002668}
2669
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002670static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002671 .lookup = proc_tgid_base_lookup,
2672 .getattr = pid_getattr,
2673 .setattr = proc_setattr,
2674};
2675
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002676static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002678 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002679 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002680 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Eric W. Biederman48e64842006-06-26 00:25:48 -07002682 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002683 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2684 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002685 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002686 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002687 d_drop(dentry);
2688 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Eric W. Biederman48e64842006-06-26 00:25:48 -07002691 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002692 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2693 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002694 if (!leader)
2695 goto out;
2696
2697 name.name = "task";
2698 name.len = strlen(name.name);
2699 dir = d_hash_and_lookup(leader, &name);
2700 if (!dir)
2701 goto out_put_leader;
2702
2703 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002704 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002705 dentry = d_hash_and_lookup(dir, &name);
2706 if (dentry) {
2707 shrink_dcache_parent(dentry);
2708 d_drop(dentry);
2709 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002711
2712 dput(dir);
2713out_put_leader:
2714 dput(leader);
2715out:
2716 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
Randy Dunlap0895e912007-10-21 21:00:10 -07002719/**
2720 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2721 * @task: task that should be flushed.
2722 *
2723 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002724 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002725 * in. This call is supposed to do all of this job.
2726 *
2727 * Looks in the dcache for
2728 * /proc/@pid
2729 * /proc/@tgid/task/@pid
2730 * if either directory is present flushes it and all of it'ts children
2731 * from the dcache.
2732 *
2733 * It is safe and reasonable to cache /proc entries for a task until
2734 * that task exits. After that they just clog up the dcache with
2735 * useless entries, possibly causing useful dcache entries to be
2736 * flushed instead. This routine is proved to flush those useless
2737 * dcache entries at process exit time.
2738 *
2739 * NOTE: This routine is just an optimization so it does not guarantee
2740 * that no dcache entries will exist at process exit time it
2741 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002742 */
2743
2744void proc_flush_task(struct task_struct *task)
2745{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002746 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002747 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002748 struct upid *upid;
2749
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002750 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002751 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002752
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002753 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002754 upid = &pid->numbers[i];
2755 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002756 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002757 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002758
2759 upid = &pid->numbers[pid->level];
2760 if (upid->nr == 1)
2761 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002762}
2763
Adrian Bunk9711ef92006-12-06 20:38:31 -08002764static struct dentry *proc_pid_instantiate(struct inode *dir,
2765 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002766 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002767{
2768 struct dentry *error = ERR_PTR(-ENOENT);
2769 struct inode *inode;
2770
Eric W. Biederman61a28782006-10-02 02:18:49 -07002771 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002772 if (!inode)
2773 goto out;
2774
2775 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2776 inode->i_op = &proc_tgid_base_inode_operations;
2777 inode->i_fop = &proc_tgid_base_operations;
2778 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002779
2780 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2781 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002782
2783 dentry->d_op = &pid_dentry_operations;
2784
2785 d_add(dentry, inode);
2786 /* Close the race of the process dying before we return the dentry */
2787 if (pid_revalidate(dentry, NULL))
2788 error = NULL;
2789out:
2790 return error;
2791}
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2794{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002795 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002798 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Eric W. Biederman801199c2006-10-02 02:18:48 -07002800 result = proc_base_lookup(dir, dentry);
2801 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2802 goto out;
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 tgid = name_to_int(dentry);
2805 if (tgid == ~0U)
2806 goto out;
2807
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002808 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002809 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002810 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (task)
2812 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002813 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (!task)
2815 goto out;
2816
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002817 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002818 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002820 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002824 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002825 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002827struct tgid_iter {
2828 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002829 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002830};
2831static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2832{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002833 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002835 if (iter.task)
2836 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002837 rcu_read_lock();
2838retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002839 iter.task = NULL;
2840 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002841 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002842 iter.tgid = pid_nr_ns(pid, ns);
2843 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002844 /* What we to know is if the pid we have find is the
2845 * pid of a thread_group_leader. Testing for task
2846 * being a thread_group_leader is the obvious thing
2847 * todo but there is a window when it fails, due to
2848 * the pid transfer logic in de_thread.
2849 *
2850 * So we perform the straight forward test of seeing
2851 * if the pid we have found is the pid of a thread
2852 * group leader, and don't worry if the task we have
2853 * found doesn't happen to be a thread group leader.
2854 * As we don't care in the case of readdir.
2855 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002856 if (!iter.task || !has_group_leader_pid(iter.task)) {
2857 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002858 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002859 }
2860 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002862 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002863 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864}
2865
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002866#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Eric W. Biederman61a28782006-10-02 02:18:49 -07002868static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002869 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002870{
2871 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002872 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002873 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002874 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002875}
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877/* for the /proc/ directory itself, after non-process stuff has been done */
2878int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2879{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002881 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002882 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002883 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Eric W. Biederman61a28782006-10-02 02:18:49 -07002885 if (!reaper)
2886 goto out_no_task;
2887
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002888 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002889 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002890 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002891 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
2893
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002894 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002895 iter.task = NULL;
2896 iter.tgid = filp->f_pos - TGID_OFFSET;
2897 for (iter = next_tgid(ns, iter);
2898 iter.task;
2899 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2900 filp->f_pos = iter.tgid + TGID_OFFSET;
2901 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2902 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002903 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002906 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2907out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002908 put_task_struct(reaper);
2909out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 return 0;
2911}
2912
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002913/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002914 * Tasks
2915 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002916static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002917 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2918 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fd_operations),
2919 REG("environ", S_IRUSR, proc_environ_operations),
2920 INF("auxv", S_IRUSR, proc_pid_auxv),
2921 ONE("status", S_IRUGO, proc_pid_status),
2922 ONE("personality", S_IRUSR, proc_pid_personality),
2923 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002924#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002925 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002926#endif
john stultz4614a696b2009-12-14 18:00:05 -08002927 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002928#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002929 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002930#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002931 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2932 ONE("stat", S_IRUGO, proc_tid_stat),
2933 ONE("statm", S_IRUGO, proc_pid_statm),
2934 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002935#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002936 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002937#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002938 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2939 LNK("cwd", proc_cwd_link),
2940 LNK("root", proc_root_link),
2941 LNK("exe", proc_exe_link),
2942 REG("mounts", S_IRUGO, proc_mounts_operations),
2943 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002944#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002945 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2946 REG("smaps", S_IRUGO, proc_smaps_operations),
2947 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002948#endif
2949#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002950 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002951#endif
2952#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002953 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002954#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002955#ifdef CONFIG_STACKTRACE
2956 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002957#endif
2958#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002959 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002960#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002961#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002962 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002963#endif
Paul Menage8793d852007-10-18 23:39:39 -07002964#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002965 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002966#endif
Paul Menagea4243162007-10-18 23:39:35 -07002967#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002968 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002969#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002970 INF("oom_score", S_IRUGO, proc_oom_score),
2971 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002972#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002973 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2974 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002975#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002976#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002977 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002978#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002979#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002980 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002981#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002982};
2983
2984static int proc_tid_base_readdir(struct file * filp,
2985 void * dirent, filldir_t filldir)
2986{
2987 return proc_pident_readdir(filp,dirent,filldir,
2988 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
2989}
2990
2991static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002992 return proc_pident_lookup(dir, dentry,
2993 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002994}
2995
Arjan van de Ven00977a52007-02-12 00:55:34 -08002996static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002997 .read = generic_read_dir,
2998 .readdir = proc_tid_base_readdir,
2999};
3000
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003001static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003002 .lookup = proc_tid_base_lookup,
3003 .getattr = pid_getattr,
3004 .setattr = proc_setattr,
3005};
3006
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003007static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003008 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003009{
3010 struct dentry *error = ERR_PTR(-ENOENT);
3011 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003012 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003013
3014 if (!inode)
3015 goto out;
3016 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3017 inode->i_op = &proc_tid_base_inode_operations;
3018 inode->i_fop = &proc_tid_base_operations;
3019 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003020
3021 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3022 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003023
3024 dentry->d_op = &pid_dentry_operations;
3025
3026 d_add(dentry, inode);
3027 /* Close the race of the process dying before we return the dentry */
3028 if (pid_revalidate(dentry, NULL))
3029 error = NULL;
3030out:
3031 return error;
3032}
3033
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003034static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3035{
3036 struct dentry *result = ERR_PTR(-ENOENT);
3037 struct task_struct *task;
3038 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003039 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003040 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003041
3042 if (!leader)
3043 goto out_no_task;
3044
3045 tid = name_to_int(dentry);
3046 if (tid == ~0U)
3047 goto out;
3048
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003049 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003050 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003051 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003052 if (task)
3053 get_task_struct(task);
3054 rcu_read_unlock();
3055 if (!task)
3056 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003057 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003058 goto out_drop_task;
3059
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003060 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003061out_drop_task:
3062 put_task_struct(task);
3063out:
3064 put_task_struct(leader);
3065out_no_task:
3066 return result;
3067}
3068
3069/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003070 * Find the first tid of a thread group to return to user space.
3071 *
3072 * Usually this is just the thread group leader, but if the users
3073 * buffer was too small or there was a seek into the middle of the
3074 * directory we have more work todo.
3075 *
3076 * In the case of a short read we start with find_task_by_pid.
3077 *
3078 * In the case of a seek we start with the leader and walk nr
3079 * threads past it.
3080 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003081static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003082 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003083{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003084 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003085
Eric W. Biedermancc288732006-06-26 00:26:01 -07003086 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003087 /* Attempt to start with the pid of a thread */
3088 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003089 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003090 if (pos && (pos->group_leader == leader))
3091 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003092 }
3093
3094 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003095 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003096 if (nr && nr >= get_nr_threads(leader))
3097 goto out;
3098
3099 /* If we haven't found our starting place yet start
3100 * with the leader and walk nr threads forward.
3101 */
3102 for (pos = leader; nr > 0; --nr) {
3103 pos = next_thread(pos);
3104 if (pos == leader) {
3105 pos = NULL;
3106 goto out;
3107 }
3108 }
3109found:
3110 get_task_struct(pos);
3111out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003112 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003113 return pos;
3114}
3115
3116/*
3117 * Find the next thread in the thread list.
3118 * Return NULL if there is an error or no next thread.
3119 *
3120 * The reference to the input task_struct is released.
3121 */
3122static struct task_struct *next_tid(struct task_struct *start)
3123{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003124 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003125 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003126 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003127 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003128 if (thread_group_leader(pos))
3129 pos = NULL;
3130 else
3131 get_task_struct(pos);
3132 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003133 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003134 put_task_struct(start);
3135 return pos;
3136}
3137
Eric W. Biederman61a28782006-10-02 02:18:49 -07003138static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3139 struct task_struct *task, int tid)
3140{
3141 char name[PROC_NUMBUF];
3142 int len = snprintf(name, sizeof(name), "%d", tid);
3143 return proc_fill_cache(filp, dirent, filldir, name, len,
3144 proc_task_instantiate, task, NULL);
3145}
3146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147/* for the /proc/TGID/task/ directories */
3148static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3149{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003150 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003152 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003153 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 int retval = -ENOENT;
3155 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003156 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003157 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003159 task = get_proc_task(inode);
3160 if (!task)
3161 goto out_no_task;
3162 rcu_read_lock();
3163 if (pid_alive(task)) {
3164 leader = task->group_leader;
3165 get_task_struct(leader);
3166 }
3167 rcu_read_unlock();
3168 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003169 if (!leader)
3170 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 retval = 0;
3172
Linus Torvaldsee568b22009-03-17 10:02:35 -07003173 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 case 0:
3175 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003176 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003178 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 /* fall through */
3180 case 1:
3181 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003182 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003184 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 /* fall through */
3186 }
3187
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003188 /* f_version caches the tgid value that the last readdir call couldn't
3189 * return. lseek aka telldir automagically resets f_version to 0.
3190 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003191 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003192 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003193 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003194 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003195 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003196 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003197 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003198 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003199 /* returning this tgid failed, save it as the first
3200 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003201 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003202 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 }
3206out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003207 put_task_struct(leader);
3208out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 return retval;
3210}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003211
3212static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3213{
3214 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003215 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003216 generic_fillattr(inode, stat);
3217
Eric W. Biederman99f89552006-06-26 00:25:55 -07003218 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003219 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003220 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003221 }
3222
3223 return 0;
3224}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003225
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003226static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003227 .lookup = proc_task_lookup,
3228 .getattr = proc_task_getattr,
3229 .setattr = proc_setattr,
3230};
3231
Arjan van de Ven00977a52007-02-12 00:55:34 -08003232static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003233 .read = generic_read_dir,
3234 .readdir = proc_task_readdir,
3235};