blob: f923b728388ae2ee1e75d54dd127c6288f120683 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/proc/base.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * proc base directory handling functions
7 *
8 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
9 * Instead of using magical inumbers to determine the kind of object
10 * we allocate and fill in-core inodes upon lookup. They don't even
11 * go into icache. We cache the reference to task_struct upon lookup too.
12 * Eventually it should become a filesystem in its own. We don't use the
13 * rest of procfs anymore.
Mauricio Line070ad42005-09-03 15:55:10 -070014 *
15 *
16 * Changelog:
17 * 17-Jan-2005
18 * Allan Bezerra
19 * Bruna Moreira <bruna.moreira@indt.org.br>
20 * Edjard Mota <edjard.mota@indt.org.br>
21 * Ilias Biris <ilias.biris@indt.org.br>
22 * Mauricio Lin <mauricio.lin@indt.org.br>
23 *
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
25 *
26 * A new process specific entry (smaps) included in /proc. It shows the
27 * size of rss for each memory area. The maps entry lacks information
28 * about physical memory size (rss) for each mapped file, i.e.,
29 * rss information for executables and library files.
30 * This additional information is useful for any tools that need to know
31 * about physical memory consumption for a process specific library.
32 *
33 * Changelog:
34 * 21-Feb-2005
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
37 *
38 * ChangeLog:
39 * 10-Mar-2005
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
42 *
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
45 *
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50#include <asm/uaccess.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/time.h>
54#include <linux/proc_fs.h>
55#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020056#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080058#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040060#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/seq_file.h>
63#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070066#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030069#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070070#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070071#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/mount.h>
73#include <linux/security.h>
74#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070075#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070076#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/cpuset.h>
78#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050079#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070080#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070081#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070082#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070083#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040084#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090085#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "internal.h"
87
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070088/* NOTE:
89 * Implementing inode permission operations in /proc is almost
90 * certainly an error. Permission checks need to happen during
91 * each system call not at open time. The reason is that most of
92 * what we wish to check for permissions in /proc varies at runtime.
93 *
94 * The classic example of a problem is opening file descriptors
95 * in /proc for a task before it execs a suid executable.
96 */
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700100 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800102 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800103 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700104 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Eric W. Biederman61a28782006-10-02 02:18:49 -0700107#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700109 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700110 .mode = MODE, \
111 .iop = IOP, \
112 .fop = FOP, \
113 .op = OP, \
114}
115
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300116#define DIR(NAME, MODE, iops, fops) \
117 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
118#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700119 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700120 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300121 { .proc_get_link = get_link } )
122#define REG(NAME, MODE, fops) \
123 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
124#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700125 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300127 { .proc_read = read } )
128#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800129 NOD(NAME, (S_IFREG|(MODE)), \
130 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300131 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Vegard Nossumaed54172008-06-05 22:46:53 -0700133/*
134 * Count the number of hardlinks for the pid_entry table, excluding the .
135 * and .. links.
136 */
137static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
138 unsigned int n)
139{
140 unsigned int i;
141 unsigned int count;
142
143 count = 0;
144 for (i = 0; i < n; ++i) {
145 if (S_ISDIR(entries[i].mode))
146 ++count;
147 }
148
149 return count;
150}
151
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000152static int get_fs_path(struct task_struct *task, struct path *path, bool root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct fs_struct *fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000155 int result = -ENOENT;
156
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700157 task_lock(task);
158 fs = task->fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000159 if (fs) {
160 read_lock(&fs->lock);
161 *path = root ? fs->root : fs->pwd;
162 path_get(path);
163 read_unlock(&fs->lock);
164 result = 0;
165 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000167 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700168}
169
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800170static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700171{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700172 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700173 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700174
175 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000176 result = get_fs_path(task, path, 0);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700177 put_task_struct(task);
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return result;
180}
181
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800182static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700186
187 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000188 result = get_fs_path(task, path, 1);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700189 put_task_struct(task);
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return result;
192}
193
Roland McGrath638fa202008-04-29 01:01:38 -0700194/*
195 * Return zero if current may access user memory in @task, -error if not.
196 */
197static int check_mem_permission(struct task_struct *task)
198{
199 /*
200 * A task can always look at itself, in case it chooses
201 * to use system calls instead of load instructions.
202 */
203 if (task == current)
204 return 0;
205
206 /*
207 * If current is actively ptrace'ing, and would also be
208 * permitted to freshly attach with ptrace now, permit it.
209 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700210 if (task_is_stopped_or_traced(task)) {
211 int match;
212 rcu_read_lock();
213 match = (tracehook_tracer_task(task) == current);
214 rcu_read_unlock();
215 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
216 return 0;
217 }
Roland McGrath638fa202008-04-29 01:01:38 -0700218
219 /*
220 * Noone else is allowed.
221 */
222 return -EPERM;
223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Al Viro831830b2008-01-02 14:09:57 +0000225struct mm_struct *mm_for_maps(struct task_struct *task)
226{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200227 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200228
Oleg Nesterov704b8362009-07-10 03:27:40 +0200229 if (mutex_lock_killable(&task->cred_guard_mutex))
230 return NULL;
231
232 mm = get_task_mm(task);
233 if (mm && mm != current->mm &&
234 !ptrace_may_access(task, PTRACE_MODE_READ)) {
235 mmput(mm);
236 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200237 }
Oleg Nesterov704b8362009-07-10 03:27:40 +0200238 mutex_unlock(&task->cred_guard_mutex);
239
Al Viro831830b2008-01-02 14:09:57 +0000240 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static int proc_pid_cmdline(struct task_struct *task, char * buffer)
244{
245 int res = 0;
246 unsigned int len;
247 struct mm_struct *mm = get_task_mm(task);
248 if (!mm)
249 goto out;
250 if (!mm->arg_end)
251 goto out_mm; /* Shh! No looking before we're done */
252
253 len = mm->arg_end - mm->arg_start;
254
255 if (len > PAGE_SIZE)
256 len = PAGE_SIZE;
257
258 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
259
260 // If the nul at the end of args has been overwritten, then
261 // assume application is using setproctitle(3).
262 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
263 len = strnlen(buffer, res);
264 if (len < res) {
265 res = len;
266 } else {
267 len = mm->env_end - mm->env_start;
268 if (len > PAGE_SIZE - res)
269 len = PAGE_SIZE - res;
270 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
271 res = strnlen(buffer, res);
272 }
273 }
274out_mm:
275 mmput(mm);
276out:
277 return res;
278}
279
280static int proc_pid_auxv(struct task_struct *task, char *buffer)
281{
282 int res = 0;
283 struct mm_struct *mm = get_task_mm(task);
284 if (mm) {
285 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300286 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300288 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 res = nwords * sizeof(mm->saved_auxv[0]);
290 if (res > PAGE_SIZE)
291 res = PAGE_SIZE;
292 memcpy(buffer, mm->saved_auxv, res);
293 mmput(mm);
294 }
295 return res;
296}
297
298
299#ifdef CONFIG_KALLSYMS
300/*
301 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
302 * Returns the resolved symbol. If that fails, simply return the address.
303 */
304static int proc_pid_wchan(struct task_struct *task, char *buffer)
305{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700306 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700307 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 wchan = get_wchan(task);
310
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700311 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600312 if (!ptrace_may_access(task, PTRACE_MODE_READ))
313 return 0;
314 else
315 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700316 else
317 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319#endif /* CONFIG_KALLSYMS */
320
Ken Chen2ec220e2008-11-10 11:26:08 +0300321#ifdef CONFIG_STACKTRACE
322
323#define MAX_STACK_TRACE_DEPTH 64
324
325static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
326 struct pid *pid, struct task_struct *task)
327{
328 struct stack_trace trace;
329 unsigned long *entries;
330 int i;
331
332 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
333 if (!entries)
334 return -ENOMEM;
335
336 trace.nr_entries = 0;
337 trace.max_entries = MAX_STACK_TRACE_DEPTH;
338 trace.entries = entries;
339 trace.skip = 0;
340 save_stack_trace_tsk(task, &trace);
341
342 for (i = 0; i < trace.nr_entries; i++) {
343 seq_printf(m, "[<%p>] %pS\n",
344 (void *)entries[i], (void *)entries[i]);
345 }
346 kfree(entries);
347
348 return 0;
349}
350#endif
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#ifdef CONFIG_SCHEDSTATS
353/*
354 * Provides /proc/PID/schedstat
355 */
356static int proc_pid_schedstat(struct task_struct *task, char *buffer)
357{
Balbir Singh172ba842007-07-09 18:52:00 +0200358 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100359 (unsigned long long)task->se.sum_exec_runtime,
360 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200361 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363#endif
364
Arjan van de Ven97455122008-01-25 21:08:34 +0100365#ifdef CONFIG_LATENCYTOP
366static int lstats_show_proc(struct seq_file *m, void *v)
367{
368 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800369 struct inode *inode = m->private;
370 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100371
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800372 if (!task)
373 return -ESRCH;
374 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100375 for (i = 0; i < 32; i++) {
376 if (task->latency_record[i].backtrace[0]) {
377 int q;
378 seq_printf(m, "%i %li %li ",
379 task->latency_record[i].count,
380 task->latency_record[i].time,
381 task->latency_record[i].max);
382 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800383 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100384 char *c;
385 if (!task->latency_record[i].backtrace[q])
386 break;
387 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
388 break;
389 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
390 c = strchr(sym, '+');
391 if (c)
392 *c = 0;
393 seq_printf(m, "%s ", sym);
394 }
395 seq_printf(m, "\n");
396 }
397
398 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800399 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100400 return 0;
401}
402
403static int lstats_open(struct inode *inode, struct file *file)
404{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800405 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800406}
407
Arjan van de Ven97455122008-01-25 21:08:34 +0100408static ssize_t lstats_write(struct file *file, const char __user *buf,
409 size_t count, loff_t *offs)
410{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800411 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100412
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800413 if (!task)
414 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100415 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800416 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100417
418 return count;
419}
420
421static const struct file_operations proc_lstats_operations = {
422 .open = lstats_open,
423 .read = seq_read,
424 .write = lstats_write,
425 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800426 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100427};
428
429#endif
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int proc_oom_score(struct task_struct *task, char *buffer)
432{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200433 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700435 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200436 if (pid_alive(task))
David Rientjesa63d83f2010-08-09 17:19:46 -0700437 points = oom_badness(task, NULL, NULL,
438 totalram_pages + total_swap_pages);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700439 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return sprintf(buffer, "%lu\n", points);
441}
442
Neil Hormand85f50d2007-10-18 23:40:37 -0700443struct limit_names {
444 char *name;
445 char *unit;
446};
447
448static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700449 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700450 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
451 [RLIMIT_DATA] = {"Max data size", "bytes"},
452 [RLIMIT_STACK] = {"Max stack size", "bytes"},
453 [RLIMIT_CORE] = {"Max core file size", "bytes"},
454 [RLIMIT_RSS] = {"Max resident set", "bytes"},
455 [RLIMIT_NPROC] = {"Max processes", "processes"},
456 [RLIMIT_NOFILE] = {"Max open files", "files"},
457 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
458 [RLIMIT_AS] = {"Max address space", "bytes"},
459 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
460 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
461 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
462 [RLIMIT_NICE] = {"Max nice priority", NULL},
463 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800464 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700465};
466
467/* Display limits for a process */
468static int proc_pid_limits(struct task_struct *task, char *buffer)
469{
470 unsigned int i;
471 int count = 0;
472 unsigned long flags;
473 char *bufptr = buffer;
474
475 struct rlimit rlim[RLIM_NLIMITS];
476
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400477 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700478 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700479 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
480 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700481
482 /*
483 * print the file header
484 */
485 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
486 "Limit", "Soft Limit", "Hard Limit", "Units");
487
488 for (i = 0; i < RLIM_NLIMITS; i++) {
489 if (rlim[i].rlim_cur == RLIM_INFINITY)
490 count += sprintf(&bufptr[count], "%-25s %-20s ",
491 lnames[i].name, "unlimited");
492 else
493 count += sprintf(&bufptr[count], "%-25s %-20lu ",
494 lnames[i].name, rlim[i].rlim_cur);
495
496 if (rlim[i].rlim_max == RLIM_INFINITY)
497 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
498 else
499 count += sprintf(&bufptr[count], "%-20lu ",
500 rlim[i].rlim_max);
501
502 if (lnames[i].unit)
503 count += sprintf(&bufptr[count], "%-10s\n",
504 lnames[i].unit);
505 else
506 count += sprintf(&bufptr[count], "\n");
507 }
508
509 return count;
510}
511
Roland McGrathebcb6732008-07-25 19:46:00 -0700512#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
513static int proc_pid_syscall(struct task_struct *task, char *buffer)
514{
515 long nr;
516 unsigned long args[6], sp, pc;
517
518 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
519 return sprintf(buffer, "running\n");
520
521 if (nr < 0)
522 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
523
524 return sprintf(buffer,
525 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
526 nr,
527 args[0], args[1], args[2], args[3], args[4], args[5],
528 sp, pc);
529}
530#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/************************************************************************/
533/* Here the fs part begins */
534/************************************************************************/
535
536/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700537static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700539 struct task_struct *task;
540 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700541 /* Allow access to a task's file descriptors if it is us or we
542 * may use ptrace attach to the process and find out that
543 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700544 */
545 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700546 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400547 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700548 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700549 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700550 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700553static int proc_setattr(struct dentry *dentry, struct iattr *attr)
554{
555 int error;
556 struct inode *inode = dentry->d_inode;
557
558 if (attr->ia_valid & ATTR_MODE)
559 return -EPERM;
560
561 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700562 if (!error)
563 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700564 return error;
565}
566
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800567static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700568 .setattr = proc_setattr,
569};
570
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100571static int mounts_open_common(struct inode *inode, struct file *file,
572 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700574 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700575 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800576 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100577 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500578 struct proc_mounts *p;
579 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Eric W. Biederman99f89552006-06-26 00:25:55 -0700581 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700582 rcu_read_lock();
583 nsp = task_nsproxy(task);
584 if (nsp) {
585 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800586 if (ns)
587 get_mnt_ns(ns);
588 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700589 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000590 if (ns && get_fs_path(task, &root, 1) == 0)
591 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700592 put_task_struct(task);
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100595 if (!ns)
596 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000597 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100598 goto err_put_ns;
599
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100600 ret = -ENOMEM;
601 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
602 if (!p)
603 goto err_put_path;
604
605 file->private_data = &p->m;
606 ret = seq_open(file, op);
607 if (ret)
608 goto err_free;
609
610 p->m.private = p;
611 p->ns = ns;
612 p->root = root;
613 p->event = ns->event;
614
615 return 0;
616
617 err_free:
618 kfree(p);
619 err_put_path:
620 path_put(&root);
621 err_put_ns:
622 put_mnt_ns(ns);
623 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return ret;
625}
626
627static int mounts_release(struct inode *inode, struct file *file)
628{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100629 struct proc_mounts *p = file->private_data;
630 path_put(&p->root);
631 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return seq_release(inode, file);
633}
634
Al Viro5addc5d2005-11-07 17:15:49 -0500635static unsigned mounts_poll(struct file *file, poll_table *wait)
636{
637 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900638 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500639
Al Viro9f5596a2010-02-05 00:40:25 -0500640 poll_wait(file, &p->ns->poll, wait);
641 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900642 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500643
644 return res;
645}
646
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100647static int mounts_open(struct inode *inode, struct file *file)
648{
649 return mounts_open_common(inode, file, &mounts_op);
650}
651
Arjan van de Ven00977a52007-02-12 00:55:34 -0800652static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 .open = mounts_open,
654 .read = seq_read,
655 .llseek = seq_lseek,
656 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500657 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658};
659
Ram Pai2d4d4862008-03-27 13:06:25 +0100660static int mountinfo_open(struct inode *inode, struct file *file)
661{
662 return mounts_open_common(inode, file, &mountinfo_op);
663}
664
665static const struct file_operations proc_mountinfo_operations = {
666 .open = mountinfo_open,
667 .read = seq_read,
668 .llseek = seq_lseek,
669 .release = mounts_release,
670 .poll = mounts_poll,
671};
672
Chuck Leverb4629fe2006-03-20 13:44:12 -0500673static int mountstats_open(struct inode *inode, struct file *file)
674{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100675 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500676}
677
Arjan van de Ven00977a52007-02-12 00:55:34 -0800678static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500679 .open = mountstats_open,
680 .read = seq_read,
681 .llseek = seq_lseek,
682 .release = mounts_release,
683};
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
686
687static ssize_t proc_info_read(struct file * file, char __user * buf,
688 size_t count, loff_t *ppos)
689{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800690 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 unsigned long page;
692 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700693 struct task_struct *task = get_proc_task(inode);
694
695 length = -ESRCH;
696 if (!task)
697 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (count > PROC_BLOCK_SIZE)
700 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700701
702 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700703 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700704 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 length = PROC_I(inode)->op.proc_read(task, (char*)page);
707
708 if (length >= 0)
709 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
710 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700711out:
712 put_task_struct(task);
713out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return length;
715}
716
Arjan van de Ven00977a52007-02-12 00:55:34 -0800717static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100719 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720};
721
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800722static int proc_single_show(struct seq_file *m, void *v)
723{
724 struct inode *inode = m->private;
725 struct pid_namespace *ns;
726 struct pid *pid;
727 struct task_struct *task;
728 int ret;
729
730 ns = inode->i_sb->s_fs_info;
731 pid = proc_pid(inode);
732 task = get_pid_task(pid, PIDTYPE_PID);
733 if (!task)
734 return -ESRCH;
735
736 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
737
738 put_task_struct(task);
739 return ret;
740}
741
742static int proc_single_open(struct inode *inode, struct file *filp)
743{
744 int ret;
745 ret = single_open(filp, proc_single_show, NULL);
746 if (!ret) {
747 struct seq_file *m = filp->private_data;
748
749 m->private = inode;
750 }
751 return ret;
752}
753
754static const struct file_operations proc_single_file_operations = {
755 .open = proc_single_open,
756 .read = seq_read,
757 .llseek = seq_lseek,
758 .release = single_release,
759};
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761static int mem_open(struct inode* inode, struct file* file)
762{
763 file->private_data = (void*)((long)current->self_exec_id);
764 return 0;
765}
766
767static ssize_t mem_read(struct file * file, char __user * buf,
768 size_t count, loff_t *ppos)
769{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800770 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 char *page;
772 unsigned long src = *ppos;
773 int ret = -ESRCH;
774 struct mm_struct *mm;
775
Eric W. Biederman99f89552006-06-26 00:25:55 -0700776 if (!task)
777 goto out_no_task;
778
Roland McGrath638fa202008-04-29 01:01:38 -0700779 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 goto out;
781
782 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700783 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!page)
785 goto out;
786
787 ret = 0;
788
789 mm = get_task_mm(task);
790 if (!mm)
791 goto out_free;
792
793 ret = -EIO;
794
795 if (file->private_data != (void*)((long)current->self_exec_id))
796 goto out_put;
797
798 ret = 0;
799
800 while (count > 0) {
801 int this_len, retval;
802
803 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
804 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700805 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (!ret)
807 ret = -EIO;
808 break;
809 }
810
811 if (copy_to_user(buf, page, retval)) {
812 ret = -EFAULT;
813 break;
814 }
815
816 ret += retval;
817 src += retval;
818 buf += retval;
819 count -= retval;
820 }
821 *ppos = src;
822
823out_put:
824 mmput(mm);
825out_free:
826 free_page((unsigned long) page);
827out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700828 put_task_struct(task);
829out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return ret;
831}
832
833#define mem_write NULL
834
835#ifndef mem_write
836/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800837static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 size_t count, loff_t *ppos)
839{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700840 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800842 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 unsigned long dst = *ppos;
844
Eric W. Biederman99f89552006-06-26 00:25:55 -0700845 copied = -ESRCH;
846 if (!task)
847 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Roland McGrath638fa202008-04-29 01:01:38 -0700849 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700850 goto out;
851
852 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700853 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700855 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700857 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 while (count > 0) {
859 int this_len, retval;
860
861 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
862 if (copy_from_user(page, buf, this_len)) {
863 copied = -EFAULT;
864 break;
865 }
866 retval = access_process_vm(task, dst, page, this_len, 1);
867 if (!retval) {
868 if (!copied)
869 copied = -EIO;
870 break;
871 }
872 copied += retval;
873 buf += retval;
874 dst += retval;
875 count -= retval;
876 }
877 *ppos = dst;
878 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700879out:
880 put_task_struct(task);
881out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return copied;
883}
884#endif
885
Matt Mackall85863e42008-02-04 22:29:04 -0800886loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 switch (orig) {
889 case 0:
890 file->f_pos = offset;
891 break;
892 case 1:
893 file->f_pos += offset;
894 break;
895 default:
896 return -EINVAL;
897 }
898 force_successful_syscall_return();
899 return file->f_pos;
900}
901
Arjan van de Ven00977a52007-02-12 00:55:34 -0800902static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 .llseek = mem_lseek,
904 .read = mem_read,
905 .write = mem_write,
906 .open = mem_open,
907};
908
James Pearson315e28c2007-10-16 23:30:17 -0700909static ssize_t environ_read(struct file *file, char __user *buf,
910 size_t count, loff_t *ppos)
911{
912 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
913 char *page;
914 unsigned long src = *ppos;
915 int ret = -ESRCH;
916 struct mm_struct *mm;
917
918 if (!task)
919 goto out_no_task;
920
Stephen Smalley006ebb42008-05-19 08:32:49 -0400921 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700922 goto out;
923
924 ret = -ENOMEM;
925 page = (char *)__get_free_page(GFP_TEMPORARY);
926 if (!page)
927 goto out;
928
929 ret = 0;
930
931 mm = get_task_mm(task);
932 if (!mm)
933 goto out_free;
934
935 while (count > 0) {
936 int this_len, retval, max_len;
937
938 this_len = mm->env_end - (mm->env_start + src);
939
940 if (this_len <= 0)
941 break;
942
943 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
944 this_len = (this_len > max_len) ? max_len : this_len;
945
946 retval = access_process_vm(task, (mm->env_start + src),
947 page, this_len, 0);
948
949 if (retval <= 0) {
950 ret = retval;
951 break;
952 }
953
954 if (copy_to_user(buf, page, retval)) {
955 ret = -EFAULT;
956 break;
957 }
958
959 ret += retval;
960 src += retval;
961 buf += retval;
962 count -= retval;
963 }
964 *ppos = src;
965
966 mmput(mm);
967out_free:
968 free_page((unsigned long) page);
969out:
970 put_task_struct(task);
971out_no_task:
972 return ret;
973}
974
975static const struct file_operations proc_environ_operations = {
976 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100977 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700978};
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static ssize_t oom_adjust_read(struct file *file, char __user *buf,
981 size_t count, loff_t *ppos)
982{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800983 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700984 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700986 int oom_adjust = OOM_DISABLE;
987 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Eric W. Biederman99f89552006-06-26 00:25:55 -0700989 if (!task)
990 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700991
992 if (lock_task_sighand(task, &flags)) {
993 oom_adjust = task->signal->oom_adj;
994 unlock_task_sighand(task, &flags);
995 }
996
Eric W. Biederman99f89552006-06-26 00:25:55 -0700997 put_task_struct(task);
998
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700999 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001000
1001 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
1004static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1005 size_t count, loff_t *ppos)
1006{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001007 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001008 char buffer[PROC_NUMBUF];
1009 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001010 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001011 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001013 memset(buffer, 0, sizeof(buffer));
1014 if (count > sizeof(buffer) - 1)
1015 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (copy_from_user(buffer, buf, count))
1017 return -EFAULT;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001018
1019 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1020 if (err)
1021 return -EINVAL;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001022 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
1023 oom_adjust != OOM_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return -EINVAL;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001025
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001026 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001027 if (!task)
1028 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001029 if (!lock_task_sighand(task, &flags)) {
1030 put_task_struct(task);
1031 return -ESRCH;
1032 }
1033
1034 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1035 unlock_task_sighand(task, &flags);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001036 put_task_struct(task);
1037 return -EACCES;
1038 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001039
1040 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -07001041 /*
1042 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1043 * value is always attainable.
1044 */
1045 if (task->signal->oom_adj == OOM_ADJUST_MAX)
1046 task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX;
1047 else
1048 task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) /
1049 -OOM_DISABLE;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001050 unlock_task_sighand(task, &flags);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001051 put_task_struct(task);
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001052
1053 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Arjan van de Ven00977a52007-02-12 00:55:34 -08001056static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .read = oom_adjust_read,
1058 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001059 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060};
1061
David Rientjesa63d83f2010-08-09 17:19:46 -07001062static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1063 size_t count, loff_t *ppos)
1064{
1065 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
1066 char buffer[PROC_NUMBUF];
1067 int oom_score_adj = OOM_SCORE_ADJ_MIN;
1068 unsigned long flags;
1069 size_t len;
1070
1071 if (!task)
1072 return -ESRCH;
1073 if (lock_task_sighand(task, &flags)) {
1074 oom_score_adj = task->signal->oom_score_adj;
1075 unlock_task_sighand(task, &flags);
1076 }
1077 put_task_struct(task);
1078 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
1079 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1080}
1081
1082static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1083 size_t count, loff_t *ppos)
1084{
1085 struct task_struct *task;
1086 char buffer[PROC_NUMBUF];
1087 unsigned long flags;
1088 long oom_score_adj;
1089 int err;
1090
1091 memset(buffer, 0, sizeof(buffer));
1092 if (count > sizeof(buffer) - 1)
1093 count = sizeof(buffer) - 1;
1094 if (copy_from_user(buffer, buf, count))
1095 return -EFAULT;
1096
1097 err = strict_strtol(strstrip(buffer), 0, &oom_score_adj);
1098 if (err)
1099 return -EINVAL;
1100 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
1101 oom_score_adj > OOM_SCORE_ADJ_MAX)
1102 return -EINVAL;
1103
1104 task = get_proc_task(file->f_path.dentry->d_inode);
1105 if (!task)
1106 return -ESRCH;
1107 if (!lock_task_sighand(task, &flags)) {
1108 put_task_struct(task);
1109 return -ESRCH;
1110 }
1111 if (oom_score_adj < task->signal->oom_score_adj &&
1112 !capable(CAP_SYS_RESOURCE)) {
1113 unlock_task_sighand(task, &flags);
1114 put_task_struct(task);
1115 return -EACCES;
1116 }
1117
1118 task->signal->oom_score_adj = oom_score_adj;
1119 /*
1120 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1121 * always attainable.
1122 */
1123 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1124 task->signal->oom_adj = OOM_DISABLE;
1125 else
1126 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1127 OOM_SCORE_ADJ_MAX;
1128 unlock_task_sighand(task, &flags);
1129 put_task_struct(task);
1130 return count;
1131}
1132
1133static const struct file_operations proc_oom_score_adj_operations = {
1134 .read = oom_score_adj_read,
1135 .write = oom_score_adj_write,
1136};
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138#ifdef CONFIG_AUDITSYSCALL
1139#define TMPBUFLEN 21
1140static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1141 size_t count, loff_t *ppos)
1142{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001143 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001144 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 ssize_t length;
1146 char tmpbuf[TMPBUFLEN];
1147
Eric W. Biederman99f89552006-06-26 00:25:55 -07001148 if (!task)
1149 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001151 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001152 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1154}
1155
1156static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1157 size_t count, loff_t *ppos)
1158{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001159 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 char *page, *tmp;
1161 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 uid_t loginuid;
1163
1164 if (!capable(CAP_AUDIT_CONTROL))
1165 return -EPERM;
1166
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001167 rcu_read_lock();
1168 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1169 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001171 }
1172 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Al Viroe0182902006-05-18 08:28:02 -04001174 if (count >= PAGE_SIZE)
1175 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (*ppos != 0) {
1178 /* No partial writes. */
1179 return -EINVAL;
1180 }
Mel Gormane12ba742007-10-16 01:25:52 -07001181 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (!page)
1183 return -ENOMEM;
1184 length = -EFAULT;
1185 if (copy_from_user(page, buf, count))
1186 goto out_free_page;
1187
Al Viroe0182902006-05-18 08:28:02 -04001188 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 loginuid = simple_strtoul(page, &tmp, 10);
1190 if (tmp == page) {
1191 length = -EINVAL;
1192 goto out_free_page;
1193
1194 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001195 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (likely(length == 0))
1197 length = count;
1198
1199out_free_page:
1200 free_page((unsigned long) page);
1201 return length;
1202}
1203
Arjan van de Ven00977a52007-02-12 00:55:34 -08001204static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 .read = proc_loginuid_read,
1206 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001207 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208};
Eric Paris1e0bd752008-03-13 08:15:31 -04001209
1210static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1211 size_t count, loff_t *ppos)
1212{
1213 struct inode * inode = file->f_path.dentry->d_inode;
1214 struct task_struct *task = get_proc_task(inode);
1215 ssize_t length;
1216 char tmpbuf[TMPBUFLEN];
1217
1218 if (!task)
1219 return -ESRCH;
1220 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1221 audit_get_sessionid(task));
1222 put_task_struct(task);
1223 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1224}
1225
1226static const struct file_operations proc_sessionid_operations = {
1227 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001228 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001229};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230#endif
1231
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001232#ifdef CONFIG_FAULT_INJECTION
1233static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1234 size_t count, loff_t *ppos)
1235{
1236 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1237 char buffer[PROC_NUMBUF];
1238 size_t len;
1239 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001240
1241 if (!task)
1242 return -ESRCH;
1243 make_it_fail = task->make_it_fail;
1244 put_task_struct(task);
1245
1246 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001247
1248 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001249}
1250
1251static ssize_t proc_fault_inject_write(struct file * file,
1252 const char __user * buf, size_t count, loff_t *ppos)
1253{
1254 struct task_struct *task;
1255 char buffer[PROC_NUMBUF], *end;
1256 int make_it_fail;
1257
1258 if (!capable(CAP_SYS_RESOURCE))
1259 return -EPERM;
1260 memset(buffer, 0, sizeof(buffer));
1261 if (count > sizeof(buffer) - 1)
1262 count = sizeof(buffer) - 1;
1263 if (copy_from_user(buffer, buf, count))
1264 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001265 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1266 if (*end)
1267 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001268 task = get_proc_task(file->f_dentry->d_inode);
1269 if (!task)
1270 return -ESRCH;
1271 task->make_it_fail = make_it_fail;
1272 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001273
1274 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001275}
1276
Arjan van de Ven00977a52007-02-12 00:55:34 -08001277static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001278 .read = proc_fault_inject_read,
1279 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001280 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001281};
1282#endif
1283
Arjan van de Ven97455122008-01-25 21:08:34 +01001284
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001285#ifdef CONFIG_SCHED_DEBUG
1286/*
1287 * Print out various scheduling related per-task fields:
1288 */
1289static int sched_show(struct seq_file *m, void *v)
1290{
1291 struct inode *inode = m->private;
1292 struct task_struct *p;
1293
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001294 p = get_proc_task(inode);
1295 if (!p)
1296 return -ESRCH;
1297 proc_sched_show_task(p, m);
1298
1299 put_task_struct(p);
1300
1301 return 0;
1302}
1303
1304static ssize_t
1305sched_write(struct file *file, const char __user *buf,
1306 size_t count, loff_t *offset)
1307{
1308 struct inode *inode = file->f_path.dentry->d_inode;
1309 struct task_struct *p;
1310
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001311 p = get_proc_task(inode);
1312 if (!p)
1313 return -ESRCH;
1314 proc_sched_set_task(p);
1315
1316 put_task_struct(p);
1317
1318 return count;
1319}
1320
1321static int sched_open(struct inode *inode, struct file *filp)
1322{
1323 int ret;
1324
1325 ret = single_open(filp, sched_show, NULL);
1326 if (!ret) {
1327 struct seq_file *m = filp->private_data;
1328
1329 m->private = inode;
1330 }
1331 return ret;
1332}
1333
1334static const struct file_operations proc_pid_sched_operations = {
1335 .open = sched_open,
1336 .read = seq_read,
1337 .write = sched_write,
1338 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001339 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001340};
1341
1342#endif
1343
john stultz4614a696b2009-12-14 18:00:05 -08001344static ssize_t comm_write(struct file *file, const char __user *buf,
1345 size_t count, loff_t *offset)
1346{
1347 struct inode *inode = file->f_path.dentry->d_inode;
1348 struct task_struct *p;
1349 char buffer[TASK_COMM_LEN];
1350
1351 memset(buffer, 0, sizeof(buffer));
1352 if (count > sizeof(buffer) - 1)
1353 count = sizeof(buffer) - 1;
1354 if (copy_from_user(buffer, buf, count))
1355 return -EFAULT;
1356
1357 p = get_proc_task(inode);
1358 if (!p)
1359 return -ESRCH;
1360
1361 if (same_thread_group(current, p))
1362 set_task_comm(p, buffer);
1363 else
1364 count = -EINVAL;
1365
1366 put_task_struct(p);
1367
1368 return count;
1369}
1370
1371static int comm_show(struct seq_file *m, void *v)
1372{
1373 struct inode *inode = m->private;
1374 struct task_struct *p;
1375
1376 p = get_proc_task(inode);
1377 if (!p)
1378 return -ESRCH;
1379
1380 task_lock(p);
1381 seq_printf(m, "%s\n", p->comm);
1382 task_unlock(p);
1383
1384 put_task_struct(p);
1385
1386 return 0;
1387}
1388
1389static int comm_open(struct inode *inode, struct file *filp)
1390{
1391 int ret;
1392
1393 ret = single_open(filp, comm_show, NULL);
1394 if (!ret) {
1395 struct seq_file *m = filp->private_data;
1396
1397 m->private = inode;
1398 }
1399 return ret;
1400}
1401
1402static const struct file_operations proc_pid_set_comm_operations = {
1403 .open = comm_open,
1404 .read = seq_read,
1405 .write = comm_write,
1406 .llseek = seq_lseek,
1407 .release = single_release,
1408};
1409
Matt Helsley925d1c42008-04-29 01:01:36 -07001410/*
1411 * We added or removed a vma mapping the executable. The vmas are only mapped
1412 * during exec and are not mapped with the mmap system call.
1413 * Callers must hold down_write() on the mm's mmap_sem for these
1414 */
1415void added_exe_file_vma(struct mm_struct *mm)
1416{
1417 mm->num_exe_file_vmas++;
1418}
1419
1420void removed_exe_file_vma(struct mm_struct *mm)
1421{
1422 mm->num_exe_file_vmas--;
1423 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1424 fput(mm->exe_file);
1425 mm->exe_file = NULL;
1426 }
1427
1428}
1429
1430void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1431{
1432 if (new_exe_file)
1433 get_file(new_exe_file);
1434 if (mm->exe_file)
1435 fput(mm->exe_file);
1436 mm->exe_file = new_exe_file;
1437 mm->num_exe_file_vmas = 0;
1438}
1439
1440struct file *get_mm_exe_file(struct mm_struct *mm)
1441{
1442 struct file *exe_file;
1443
1444 /* We need mmap_sem to protect against races with removal of
1445 * VM_EXECUTABLE vmas */
1446 down_read(&mm->mmap_sem);
1447 exe_file = mm->exe_file;
1448 if (exe_file)
1449 get_file(exe_file);
1450 up_read(&mm->mmap_sem);
1451 return exe_file;
1452}
1453
1454void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1455{
1456 /* It's safe to write the exe_file pointer without exe_file_lock because
1457 * this is called during fork when the task is not yet in /proc */
1458 newmm->exe_file = get_mm_exe_file(oldmm);
1459}
1460
1461static int proc_exe_link(struct inode *inode, struct path *exe_path)
1462{
1463 struct task_struct *task;
1464 struct mm_struct *mm;
1465 struct file *exe_file;
1466
1467 task = get_proc_task(inode);
1468 if (!task)
1469 return -ENOENT;
1470 mm = get_task_mm(task);
1471 put_task_struct(task);
1472 if (!mm)
1473 return -ENOENT;
1474 exe_file = get_mm_exe_file(mm);
1475 mmput(mm);
1476 if (exe_file) {
1477 *exe_path = exe_file->f_path;
1478 path_get(&exe_file->f_path);
1479 fput(exe_file);
1480 return 0;
1481 } else
1482 return -ENOENT;
1483}
1484
Al Viro008b1502005-08-20 00:17:39 +01001485static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 struct inode *inode = dentry->d_inode;
1488 int error = -EACCES;
1489
1490 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001491 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Eric W. Biederman778c1142006-06-26 00:25:58 -07001493 /* Are we allowed to snoop on the tasks file descriptors? */
1494 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001497 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498out:
Al Viro008b1502005-08-20 00:17:39 +01001499 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001502static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Mel Gormane12ba742007-10-16 01:25:52 -07001504 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001505 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 int len;
1507
1508 if (!tmp)
1509 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001510
Jan Blunckcf28b482008-02-14 19:38:44 -08001511 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001512 len = PTR_ERR(pathname);
1513 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001515 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 if (len > buflen)
1518 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001519 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 len = -EFAULT;
1521 out:
1522 free_page((unsigned long)tmp);
1523 return len;
1524}
1525
1526static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1527{
1528 int error = -EACCES;
1529 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001530 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Eric W. Biederman778c1142006-06-26 00:25:58 -07001532 /* Are we allowed to snoop on the tasks file descriptors? */
1533 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001536 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (error)
1538 goto out;
1539
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001540 error = do_proc_readlink(&path, buffer, buflen);
1541 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return error;
1544}
1545
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001546static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001548 .follow_link = proc_pid_follow_link,
1549 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550};
1551
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001552
1553/* building an inode */
1554
1555static int task_dumpable(struct task_struct *task)
1556{
1557 int dumpable = 0;
1558 struct mm_struct *mm;
1559
1560 task_lock(task);
1561 mm = task->mm;
1562 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001563 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001564 task_unlock(task);
1565 if(dumpable == 1)
1566 return 1;
1567 return 0;
1568}
1569
1570
Eric W. Biederman61a28782006-10-02 02:18:49 -07001571static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001572{
1573 struct inode * inode;
1574 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001575 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001576
1577 /* We need a new inode */
1578
1579 inode = new_inode(sb);
1580 if (!inode)
1581 goto out;
1582
1583 /* Common stuff */
1584 ei = PROC_I(inode);
1585 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001586 inode->i_op = &proc_def_inode_operations;
1587
1588 /*
1589 * grab the reference to task.
1590 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001591 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001592 if (!ei->pid)
1593 goto out_unlock;
1594
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001595 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001596 rcu_read_lock();
1597 cred = __task_cred(task);
1598 inode->i_uid = cred->euid;
1599 inode->i_gid = cred->egid;
1600 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001601 }
1602 security_task_to_inode(task, inode);
1603
1604out:
1605 return inode;
1606
1607out_unlock:
1608 iput(inode);
1609 return NULL;
1610}
1611
1612static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1613{
1614 struct inode *inode = dentry->d_inode;
1615 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001616 const struct cred *cred;
1617
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001618 generic_fillattr(inode, stat);
1619
1620 rcu_read_lock();
1621 stat->uid = 0;
1622 stat->gid = 0;
1623 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1624 if (task) {
1625 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1626 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001627 cred = __task_cred(task);
1628 stat->uid = cred->euid;
1629 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001630 }
1631 }
1632 rcu_read_unlock();
1633 return 0;
1634}
1635
1636/* dentry stuff */
1637
1638/*
1639 * Exceptional case: normally we are not allowed to unhash a busy
1640 * directory. In this case, however, we can do it - no aliasing problems
1641 * due to the way we treat inodes.
1642 *
1643 * Rewrite the inode's ownerships here because the owning task may have
1644 * performed a setuid(), etc.
1645 *
1646 * Before the /proc/pid/status file was created the only way to read
1647 * the effective uid of a /process was to stat /proc/pid. Reading
1648 * /proc/pid/status is slow enough that procps and other packages
1649 * kept stating /proc/pid. To keep the rules in /proc simple I have
1650 * made this apply to all per process world readable and executable
1651 * directories.
1652 */
1653static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1654{
1655 struct inode *inode = dentry->d_inode;
1656 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001657 const struct cred *cred;
1658
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001659 if (task) {
1660 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1661 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001662 rcu_read_lock();
1663 cred = __task_cred(task);
1664 inode->i_uid = cred->euid;
1665 inode->i_gid = cred->egid;
1666 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001667 } else {
1668 inode->i_uid = 0;
1669 inode->i_gid = 0;
1670 }
1671 inode->i_mode &= ~(S_ISUID | S_ISGID);
1672 security_task_to_inode(task, inode);
1673 put_task_struct(task);
1674 return 1;
1675 }
1676 d_drop(dentry);
1677 return 0;
1678}
1679
1680static int pid_delete_dentry(struct dentry * dentry)
1681{
1682 /* Is the task we represent dead?
1683 * If so, then don't put the dentry on the lru list,
1684 * kill it immediately.
1685 */
1686 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1687}
1688
Al Virod72f71e2009-02-20 05:58:47 +00001689static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001690{
1691 .d_revalidate = pid_revalidate,
1692 .d_delete = pid_delete_dentry,
1693};
1694
1695/* Lookups */
1696
Eric Dumazetc5141e62007-05-08 00:26:15 -07001697typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1698 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001699
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001700/*
1701 * Fill a directory entry.
1702 *
1703 * If possible create the dcache entry and derive our inode number and
1704 * file type from dcache entry.
1705 *
1706 * Since all of the proc inode numbers are dynamically generated, the inode
1707 * numbers do not exist until the inode is cache. This means creating the
1708 * the dcache entry in readdir is necessary to keep the inode numbers
1709 * reported by readdir in sync with the inode numbers reported
1710 * by stat.
1711 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001712static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1713 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001714 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001715{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001716 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001717 struct inode *inode;
1718 struct qstr qname;
1719 ino_t ino = 0;
1720 unsigned type = DT_UNKNOWN;
1721
1722 qname.name = name;
1723 qname.len = len;
1724 qname.hash = full_name_hash(name, len);
1725
1726 child = d_lookup(dir, &qname);
1727 if (!child) {
1728 struct dentry *new;
1729 new = d_alloc(dir, &qname);
1730 if (new) {
1731 child = instantiate(dir->d_inode, new, task, ptr);
1732 if (child)
1733 dput(new);
1734 else
1735 child = new;
1736 }
1737 }
1738 if (!child || IS_ERR(child) || !child->d_inode)
1739 goto end_instantiate;
1740 inode = child->d_inode;
1741 if (inode) {
1742 ino = inode->i_ino;
1743 type = inode->i_mode >> 12;
1744 }
1745 dput(child);
1746end_instantiate:
1747 if (!ino)
1748 ino = find_inode_number(dir, &qname);
1749 if (!ino)
1750 ino = 1;
1751 return filldir(dirent, name, len, filp->f_pos, ino, type);
1752}
1753
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001754static unsigned name_to_int(struct dentry *dentry)
1755{
1756 const char *name = dentry->d_name.name;
1757 int len = dentry->d_name.len;
1758 unsigned n = 0;
1759
1760 if (len > 1 && *name == '0')
1761 goto out;
1762 while (len-- > 0) {
1763 unsigned c = *name++ - '0';
1764 if (c > 9)
1765 goto out;
1766 if (n >= (~0U-9)/10)
1767 goto out;
1768 n *= 10;
1769 n += c;
1770 }
1771 return n;
1772out:
1773 return ~0U;
1774}
1775
Miklos Szeredi27932742007-05-08 00:26:17 -07001776#define PROC_FDINFO_MAX 64
1777
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001778static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001779{
1780 struct task_struct *task = get_proc_task(inode);
1781 struct files_struct *files = NULL;
1782 struct file *file;
1783 int fd = proc_fd(inode);
1784
1785 if (task) {
1786 files = get_files_struct(task);
1787 put_task_struct(task);
1788 }
1789 if (files) {
1790 /*
1791 * We are not taking a ref to the file structure, so we must
1792 * hold ->file_lock.
1793 */
1794 spin_lock(&files->file_lock);
1795 file = fcheck_files(files, fd);
1796 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001797 if (path) {
1798 *path = file->f_path;
1799 path_get(&file->f_path);
1800 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001801 if (info)
1802 snprintf(info, PROC_FDINFO_MAX,
1803 "pos:\t%lli\n"
1804 "flags:\t0%o\n",
1805 (long long) file->f_pos,
1806 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001807 spin_unlock(&files->file_lock);
1808 put_files_struct(files);
1809 return 0;
1810 }
1811 spin_unlock(&files->file_lock);
1812 put_files_struct(files);
1813 }
1814 return -ENOENT;
1815}
1816
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001817static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001818{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001819 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001820}
1821
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001822static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1823{
1824 struct inode *inode = dentry->d_inode;
1825 struct task_struct *task = get_proc_task(inode);
1826 int fd = proc_fd(inode);
1827 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001828 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001829
1830 if (task) {
1831 files = get_files_struct(task);
1832 if (files) {
1833 rcu_read_lock();
1834 if (fcheck_files(files, fd)) {
1835 rcu_read_unlock();
1836 put_files_struct(files);
1837 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001838 rcu_read_lock();
1839 cred = __task_cred(task);
1840 inode->i_uid = cred->euid;
1841 inode->i_gid = cred->egid;
1842 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001843 } else {
1844 inode->i_uid = 0;
1845 inode->i_gid = 0;
1846 }
1847 inode->i_mode &= ~(S_ISUID | S_ISGID);
1848 security_task_to_inode(task, inode);
1849 put_task_struct(task);
1850 return 1;
1851 }
1852 rcu_read_unlock();
1853 put_files_struct(files);
1854 }
1855 put_task_struct(task);
1856 }
1857 d_drop(dentry);
1858 return 0;
1859}
1860
Al Virod72f71e2009-02-20 05:58:47 +00001861static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001862{
1863 .d_revalidate = tid_fd_revalidate,
1864 .d_delete = pid_delete_dentry,
1865};
1866
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001867static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001868 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001869{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001870 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001871 struct file *file;
1872 struct files_struct *files;
1873 struct inode *inode;
1874 struct proc_inode *ei;
1875 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001876
Eric W. Biederman61a28782006-10-02 02:18:49 -07001877 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001878 if (!inode)
1879 goto out;
1880 ei = PROC_I(inode);
1881 ei->fd = fd;
1882 files = get_files_struct(task);
1883 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001884 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001885 inode->i_mode = S_IFLNK;
1886
1887 /*
1888 * We are not taking a ref to the file structure, so we must
1889 * hold ->file_lock.
1890 */
1891 spin_lock(&files->file_lock);
1892 file = fcheck_files(files, fd);
1893 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001894 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001895 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001896 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001897 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001898 inode->i_mode |= S_IWUSR | S_IXUSR;
1899 spin_unlock(&files->file_lock);
1900 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001901
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001902 inode->i_op = &proc_pid_link_inode_operations;
1903 inode->i_size = 64;
1904 ei->op.proc_get_link = proc_fd_link;
1905 dentry->d_op = &tid_fd_dentry_operations;
1906 d_add(dentry, inode);
1907 /* Close the race of the process dying before we return the dentry */
1908 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001909 error = NULL;
1910
1911 out:
1912 return error;
1913out_unlock:
1914 spin_unlock(&files->file_lock);
1915 put_files_struct(files);
1916out_iput:
1917 iput(inode);
1918 goto out;
1919}
1920
Miklos Szeredi27932742007-05-08 00:26:17 -07001921static struct dentry *proc_lookupfd_common(struct inode *dir,
1922 struct dentry *dentry,
1923 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001924{
1925 struct task_struct *task = get_proc_task(dir);
1926 unsigned fd = name_to_int(dentry);
1927 struct dentry *result = ERR_PTR(-ENOENT);
1928
1929 if (!task)
1930 goto out_no_task;
1931 if (fd == ~0U)
1932 goto out;
1933
Miklos Szeredi27932742007-05-08 00:26:17 -07001934 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001935out:
1936 put_task_struct(task);
1937out_no_task:
1938 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001939}
1940
Miklos Szeredi27932742007-05-08 00:26:17 -07001941static int proc_readfd_common(struct file * filp, void * dirent,
1942 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001944 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001945 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001946 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001947 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 struct files_struct * files;
1950
1951 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001952 if (!p)
1953 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 fd = filp->f_pos;
1957 switch (fd) {
1958 case 0:
1959 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1960 goto out;
1961 filp->f_pos++;
1962 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001963 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1965 goto out;
1966 filp->f_pos++;
1967 default:
1968 files = get_files_struct(p);
1969 if (!files)
1970 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001971 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001973 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001975 char name[PROC_NUMBUF];
1976 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 if (!fcheck_files(files, fd))
1979 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001980 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Miklos Szeredi27932742007-05-08 00:26:17 -07001982 len = snprintf(name, sizeof(name), "%d", fd);
1983 if (proc_fill_cache(filp, dirent, filldir,
1984 name, len, instantiate,
1985 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001986 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 break;
1988 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001989 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001991 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 put_files_struct(files);
1993 }
1994out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001995 put_task_struct(p);
1996out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return retval;
1998}
1999
Miklos Szeredi27932742007-05-08 00:26:17 -07002000static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
2001 struct nameidata *nd)
2002{
2003 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
2004}
2005
2006static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
2007{
2008 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
2009}
2010
2011static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
2012 size_t len, loff_t *ppos)
2013{
2014 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08002015 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07002016 if (!err)
2017 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
2018 return err;
2019}
2020
2021static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01002022 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07002023 .read = proc_fdinfo_read,
2024};
2025
Arjan van de Ven00977a52007-02-12 00:55:34 -08002026static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 .read = generic_read_dir,
2028 .readdir = proc_readfd,
2029};
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002032 * /proc/pid/fd needs a special permission handler so that a process can still
2033 * access /proc/self/fd after it has executed a setuid().
2034 */
Al Viroe6305c42008-07-15 21:03:57 -04002035static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002036{
2037 int rv;
2038
2039 rv = generic_permission(inode, mask, NULL);
2040 if (rv == 0)
2041 return 0;
2042 if (task_pid(current) == proc_pid(inode))
2043 rv = 0;
2044 return rv;
2045}
2046
2047/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * proc directories can do almost nothing..
2049 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002050static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002052 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002053 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054};
2055
Miklos Szeredi27932742007-05-08 00:26:17 -07002056static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2057 struct dentry *dentry, struct task_struct *task, const void *ptr)
2058{
2059 unsigned fd = *(unsigned *)ptr;
2060 struct inode *inode;
2061 struct proc_inode *ei;
2062 struct dentry *error = ERR_PTR(-ENOENT);
2063
2064 inode = proc_pid_make_inode(dir->i_sb, task);
2065 if (!inode)
2066 goto out;
2067 ei = PROC_I(inode);
2068 ei->fd = fd;
2069 inode->i_mode = S_IFREG | S_IRUSR;
2070 inode->i_fop = &proc_fdinfo_file_operations;
2071 dentry->d_op = &tid_fd_dentry_operations;
2072 d_add(dentry, inode);
2073 /* Close the race of the process dying before we return the dentry */
2074 if (tid_fd_revalidate(dentry, NULL))
2075 error = NULL;
2076
2077 out:
2078 return error;
2079}
2080
2081static struct dentry *proc_lookupfdinfo(struct inode *dir,
2082 struct dentry *dentry,
2083 struct nameidata *nd)
2084{
2085 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2086}
2087
2088static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2089{
2090 return proc_readfd_common(filp, dirent, filldir,
2091 proc_fdinfo_instantiate);
2092}
2093
2094static const struct file_operations proc_fdinfo_operations = {
2095 .read = generic_read_dir,
2096 .readdir = proc_readfdinfo,
2097};
2098
2099/*
2100 * proc directories can do almost nothing..
2101 */
2102static const struct inode_operations proc_fdinfo_inode_operations = {
2103 .lookup = proc_lookupfdinfo,
2104 .setattr = proc_setattr,
2105};
2106
2107
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002108static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002109 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002110{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002111 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002112 struct inode *inode;
2113 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002114 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002115
Eric W. Biederman61a28782006-10-02 02:18:49 -07002116 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002117 if (!inode)
2118 goto out;
2119
2120 ei = PROC_I(inode);
2121 inode->i_mode = p->mode;
2122 if (S_ISDIR(inode->i_mode))
2123 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2124 if (p->iop)
2125 inode->i_op = p->iop;
2126 if (p->fop)
2127 inode->i_fop = p->fop;
2128 ei->op = p->op;
2129 dentry->d_op = &pid_dentry_operations;
2130 d_add(dentry, inode);
2131 /* Close the race of the process dying before we return the dentry */
2132 if (pid_revalidate(dentry, NULL))
2133 error = NULL;
2134out:
2135 return error;
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138static struct dentry *proc_pident_lookup(struct inode *dir,
2139 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002140 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002141 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002143 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002144 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002145 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002147 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Eric W. Biederman99f89552006-06-26 00:25:55 -07002149 if (!task)
2150 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002152 /*
2153 * Yes, it does not scale. And it should not. Don't add
2154 * new entries into /proc/<tgid>/ without very good reasons.
2155 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002156 last = &ents[nents - 1];
2157 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 if (p->len != dentry->d_name.len)
2159 continue;
2160 if (!memcmp(dentry->d_name.name, p->name, p->len))
2161 break;
2162 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002163 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 goto out;
2165
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002166 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002168 put_task_struct(task);
2169out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002170 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
2172
Eric Dumazetc5141e62007-05-08 00:26:15 -07002173static int proc_pident_fill_cache(struct file *filp, void *dirent,
2174 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002175{
2176 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2177 proc_pident_instantiate, task, p);
2178}
2179
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002180static int proc_pident_readdir(struct file *filp,
2181 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002182 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002183{
2184 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002185 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002186 struct inode *inode = dentry->d_inode;
2187 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002188 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002189 ino_t ino;
2190 int ret;
2191
2192 ret = -ENOENT;
2193 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002194 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002195
2196 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002197 i = filp->f_pos;
2198 switch (i) {
2199 case 0:
2200 ino = inode->i_ino;
2201 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2202 goto out;
2203 i++;
2204 filp->f_pos++;
2205 /* fall through */
2206 case 1:
2207 ino = parent_ino(dentry);
2208 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2209 goto out;
2210 i++;
2211 filp->f_pos++;
2212 /* fall through */
2213 default:
2214 i -= 2;
2215 if (i >= nents) {
2216 ret = 1;
2217 goto out;
2218 }
2219 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002220 last = &ents[nents - 1];
2221 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002222 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002223 goto out;
2224 filp->f_pos++;
2225 p++;
2226 }
2227 }
2228
2229 ret = 1;
2230out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002231 put_task_struct(task);
2232out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234}
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002237static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2238 size_t count, loff_t *ppos)
2239{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002240 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002241 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002242 ssize_t length;
2243 struct task_struct *task = get_proc_task(inode);
2244
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002245 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002246 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002247
2248 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002249 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002250 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002251 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002252 if (length > 0)
2253 length = simple_read_from_buffer(buf, count, ppos, p, length);
2254 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002255 return length;
2256}
2257
2258static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2259 size_t count, loff_t *ppos)
2260{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002261 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002262 char *page;
2263 ssize_t length;
2264 struct task_struct *task = get_proc_task(inode);
2265
2266 length = -ESRCH;
2267 if (!task)
2268 goto out_no_task;
2269 if (count > PAGE_SIZE)
2270 count = PAGE_SIZE;
2271
2272 /* No partial writes. */
2273 length = -EINVAL;
2274 if (*ppos != 0)
2275 goto out;
2276
2277 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002278 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002279 if (!page)
2280 goto out;
2281
2282 length = -EFAULT;
2283 if (copy_from_user(page, buf, count))
2284 goto out_free;
2285
David Howells107db7c2009-05-08 13:55:27 +01002286 /* Guard against adverse ptrace interaction */
2287 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2288 if (length < 0)
2289 goto out_free;
2290
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002291 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002292 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002293 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002294 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002295out_free:
2296 free_page((unsigned long) page);
2297out:
2298 put_task_struct(task);
2299out_no_task:
2300 return length;
2301}
2302
Arjan van de Ven00977a52007-02-12 00:55:34 -08002303static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002304 .read = proc_pid_attr_read,
2305 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002306 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002307};
2308
Eric Dumazetc5141e62007-05-08 00:26:15 -07002309static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002310 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2311 REG("prev", S_IRUGO, proc_pid_attr_operations),
2312 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2313 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2314 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2315 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002316};
2317
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002318static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 void * dirent, filldir_t filldir)
2320{
2321 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002322 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324
Arjan van de Ven00977a52007-02-12 00:55:34 -08002325static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002327 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328};
2329
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002330static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 struct dentry *dentry, struct nameidata *nd)
2332{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002333 return proc_pident_lookup(dir, dentry,
2334 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335}
2336
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002337static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002338 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002339 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002340 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341};
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343#endif
2344
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002345#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002346static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2347 size_t count, loff_t *ppos)
2348{
2349 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2350 struct mm_struct *mm;
2351 char buffer[PROC_NUMBUF];
2352 size_t len;
2353 int ret;
2354
2355 if (!task)
2356 return -ESRCH;
2357
2358 ret = 0;
2359 mm = get_task_mm(task);
2360 if (mm) {
2361 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2362 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2363 MMF_DUMP_FILTER_SHIFT));
2364 mmput(mm);
2365 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2366 }
2367
2368 put_task_struct(task);
2369
2370 return ret;
2371}
2372
2373static ssize_t proc_coredump_filter_write(struct file *file,
2374 const char __user *buf,
2375 size_t count,
2376 loff_t *ppos)
2377{
2378 struct task_struct *task;
2379 struct mm_struct *mm;
2380 char buffer[PROC_NUMBUF], *end;
2381 unsigned int val;
2382 int ret;
2383 int i;
2384 unsigned long mask;
2385
2386 ret = -EFAULT;
2387 memset(buffer, 0, sizeof(buffer));
2388 if (count > sizeof(buffer) - 1)
2389 count = sizeof(buffer) - 1;
2390 if (copy_from_user(buffer, buf, count))
2391 goto out_no_task;
2392
2393 ret = -EINVAL;
2394 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2395 if (*end == '\n')
2396 end++;
2397 if (end - buffer == 0)
2398 goto out_no_task;
2399
2400 ret = -ESRCH;
2401 task = get_proc_task(file->f_dentry->d_inode);
2402 if (!task)
2403 goto out_no_task;
2404
2405 ret = end - buffer;
2406 mm = get_task_mm(task);
2407 if (!mm)
2408 goto out_no_mm;
2409
2410 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2411 if (val & mask)
2412 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2413 else
2414 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2415 }
2416
2417 mmput(mm);
2418 out_no_mm:
2419 put_task_struct(task);
2420 out_no_task:
2421 return ret;
2422}
2423
2424static const struct file_operations proc_coredump_filter_operations = {
2425 .read = proc_coredump_filter_read,
2426 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002427 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002428};
2429#endif
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431/*
2432 * /proc/self:
2433 */
2434static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2435 int buflen)
2436{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002437 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002438 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002439 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002440 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002441 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002442 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return vfs_readlink(dentry,buffer,buflen,tmp);
2444}
2445
Al Viro008b1502005-08-20 00:17:39 +01002446static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002448 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002449 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002450 char *name = ERR_PTR(-ENOENT);
2451 if (tgid) {
2452 name = __getname();
2453 if (!name)
2454 name = ERR_PTR(-ENOMEM);
2455 else
2456 sprintf(name, "%d", tgid);
2457 }
2458 nd_set_link(nd, name);
2459 return NULL;
2460}
2461
2462static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2463 void *cookie)
2464{
2465 char *s = nd_get_link(nd);
2466 if (!IS_ERR(s))
2467 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002468}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002470static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 .readlink = proc_self_readlink,
2472 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002473 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474};
2475
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002476/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002477 * proc base
2478 *
2479 * These are the directory entries in the root directory of /proc
2480 * that properly belong to the /proc filesystem, as they describe
2481 * describe something that is process related.
2482 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002483static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002484 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002485 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002486};
2487
2488/*
2489 * Exceptional case: normally we are not allowed to unhash a busy
2490 * directory. In this case, however, we can do it - no aliasing problems
2491 * due to the way we treat inodes.
2492 */
2493static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2494{
2495 struct inode *inode = dentry->d_inode;
2496 struct task_struct *task = get_proc_task(inode);
2497 if (task) {
2498 put_task_struct(task);
2499 return 1;
2500 }
2501 d_drop(dentry);
2502 return 0;
2503}
2504
Al Virod72f71e2009-02-20 05:58:47 +00002505static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002506{
2507 .d_revalidate = proc_base_revalidate,
2508 .d_delete = pid_delete_dentry,
2509};
2510
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002511static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002512 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002513{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002514 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002515 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002516 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002517 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002518
2519 /* Allocate the inode */
2520 error = ERR_PTR(-ENOMEM);
2521 inode = new_inode(dir->i_sb);
2522 if (!inode)
2523 goto out;
2524
2525 /* Initialize the inode */
2526 ei = PROC_I(inode);
2527 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002528
2529 /*
2530 * grab the reference to the task.
2531 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002532 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002533 if (!ei->pid)
2534 goto out_iput;
2535
Eric W. Biederman801199c2006-10-02 02:18:48 -07002536 inode->i_mode = p->mode;
2537 if (S_ISDIR(inode->i_mode))
2538 inode->i_nlink = 2;
2539 if (S_ISLNK(inode->i_mode))
2540 inode->i_size = 64;
2541 if (p->iop)
2542 inode->i_op = p->iop;
2543 if (p->fop)
2544 inode->i_fop = p->fop;
2545 ei->op = p->op;
2546 dentry->d_op = &proc_base_dentry_operations;
2547 d_add(dentry, inode);
2548 error = NULL;
2549out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002550 return error;
2551out_iput:
2552 iput(inode);
2553 goto out;
2554}
2555
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002556static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2557{
2558 struct dentry *error;
2559 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002560 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002561
2562 error = ERR_PTR(-ENOENT);
2563
2564 if (!task)
2565 goto out_no_task;
2566
2567 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002568 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2569 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002570 if (p->len != dentry->d_name.len)
2571 continue;
2572 if (!memcmp(dentry->d_name.name, p->name, p->len))
2573 break;
2574 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002575 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002576 goto out;
2577
2578 error = proc_base_instantiate(dir, dentry, task, p);
2579
2580out:
2581 put_task_struct(task);
2582out_no_task:
2583 return error;
2584}
2585
Eric Dumazetc5141e62007-05-08 00:26:15 -07002586static int proc_base_fill_cache(struct file *filp, void *dirent,
2587 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002588{
2589 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2590 proc_base_instantiate, task, p);
2591}
2592
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002593#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002594static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002595{
Andrea Righi940389b2008-07-28 00:48:12 +02002596 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002597 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002598
Andrea Righi59954772008-07-27 17:29:15 +02002599 if (whole && lock_task_sighand(task, &flags)) {
2600 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002601
Andrea Righi59954772008-07-27 17:29:15 +02002602 task_io_accounting_add(&acct, &task->signal->ioac);
2603 while_each_thread(task, t)
2604 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002605
Andrea Righi59954772008-07-27 17:29:15 +02002606 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002607 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002608 return sprintf(buffer,
2609 "rchar: %llu\n"
2610 "wchar: %llu\n"
2611 "syscr: %llu\n"
2612 "syscw: %llu\n"
2613 "read_bytes: %llu\n"
2614 "write_bytes: %llu\n"
2615 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002616 (unsigned long long)acct.rchar,
2617 (unsigned long long)acct.wchar,
2618 (unsigned long long)acct.syscr,
2619 (unsigned long long)acct.syscw,
2620 (unsigned long long)acct.read_bytes,
2621 (unsigned long long)acct.write_bytes,
2622 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002623}
Andrea Righi297c5d92008-07-25 01:48:49 -07002624
2625static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2626{
2627 return do_io_accounting(task, buffer, 0);
2628}
2629
2630static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2631{
2632 return do_io_accounting(task, buffer, 1);
2633}
2634#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002635
Kees Cook47830722008-10-06 03:11:58 +04002636static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2637 struct pid *pid, struct task_struct *task)
2638{
2639 seq_printf(m, "%08x\n", task->personality);
2640 return 0;
2641}
2642
Eric W. Biederman801199c2006-10-02 02:18:48 -07002643/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002644 * Thread groups
2645 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002646static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002647static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002648
Eric Dumazetc5141e62007-05-08 00:26:15 -07002649static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002650 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2651 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2652 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002653#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002654 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002655#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002656 REG("environ", S_IRUSR, proc_environ_operations),
2657 INF("auxv", S_IRUSR, proc_pid_auxv),
2658 ONE("status", S_IRUGO, proc_pid_status),
2659 ONE("personality", S_IRUSR, proc_pid_personality),
2660 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002661#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002662 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002663#endif
john stultz4614a696b2009-12-14 18:00:05 -08002664 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002665#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002666 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002667#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002668 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2669 ONE("stat", S_IRUGO, proc_tgid_stat),
2670 ONE("statm", S_IRUGO, proc_pid_statm),
2671 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002672#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002673 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002674#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002675 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2676 LNK("cwd", proc_cwd_link),
2677 LNK("root", proc_root_link),
2678 LNK("exe", proc_exe_link),
2679 REG("mounts", S_IRUGO, proc_mounts_operations),
2680 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2681 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002682#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002683 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2684 REG("smaps", S_IRUGO, proc_smaps_operations),
2685 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002686#endif
2687#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002688 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002689#endif
2690#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002691 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002692#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002693#ifdef CONFIG_STACKTRACE
2694 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002695#endif
2696#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002697 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002698#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002699#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002700 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002701#endif
Paul Menage8793d852007-10-18 23:39:39 -07002702#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002703 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002704#endif
Paul Menagea4243162007-10-18 23:39:35 -07002705#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002706 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002707#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002708 INF("oom_score", S_IRUGO, proc_oom_score),
2709 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002710 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002711#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002712 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2713 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002714#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002715#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002716 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002717#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002718#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002719 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002720#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002721#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002722 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002723#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002724};
2725
2726static int proc_tgid_base_readdir(struct file * filp,
2727 void * dirent, filldir_t filldir)
2728{
2729 return proc_pident_readdir(filp,dirent,filldir,
2730 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2731}
2732
Arjan van de Ven00977a52007-02-12 00:55:34 -08002733static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002734 .read = generic_read_dir,
2735 .readdir = proc_tgid_base_readdir,
2736};
2737
2738static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002739 return proc_pident_lookup(dir, dentry,
2740 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002741}
2742
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002743static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002744 .lookup = proc_tgid_base_lookup,
2745 .getattr = pid_getattr,
2746 .setattr = proc_setattr,
2747};
2748
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002749static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002751 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002752 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002753 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Eric W. Biederman48e64842006-06-26 00:25:48 -07002755 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002756 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2757 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002758 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002759 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002760 d_drop(dentry);
2761 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Eric W. Biederman48e64842006-06-26 00:25:48 -07002764 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002765 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2766 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002767 if (!leader)
2768 goto out;
2769
2770 name.name = "task";
2771 name.len = strlen(name.name);
2772 dir = d_hash_and_lookup(leader, &name);
2773 if (!dir)
2774 goto out_put_leader;
2775
2776 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002777 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002778 dentry = d_hash_and_lookup(dir, &name);
2779 if (dentry) {
2780 shrink_dcache_parent(dentry);
2781 d_drop(dentry);
2782 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002784
2785 dput(dir);
2786out_put_leader:
2787 dput(leader);
2788out:
2789 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790}
2791
Randy Dunlap0895e912007-10-21 21:00:10 -07002792/**
2793 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2794 * @task: task that should be flushed.
2795 *
2796 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002797 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002798 * in. This call is supposed to do all of this job.
2799 *
2800 * Looks in the dcache for
2801 * /proc/@pid
2802 * /proc/@tgid/task/@pid
2803 * if either directory is present flushes it and all of it'ts children
2804 * from the dcache.
2805 *
2806 * It is safe and reasonable to cache /proc entries for a task until
2807 * that task exits. After that they just clog up the dcache with
2808 * useless entries, possibly causing useful dcache entries to be
2809 * flushed instead. This routine is proved to flush those useless
2810 * dcache entries at process exit time.
2811 *
2812 * NOTE: This routine is just an optimization so it does not guarantee
2813 * that no dcache entries will exist at process exit time it
2814 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002815 */
2816
2817void proc_flush_task(struct task_struct *task)
2818{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002819 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002820 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002821 struct upid *upid;
2822
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002823 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002824 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002825
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002826 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002827 upid = &pid->numbers[i];
2828 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002829 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002830 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002831
2832 upid = &pid->numbers[pid->level];
2833 if (upid->nr == 1)
2834 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002835}
2836
Adrian Bunk9711ef92006-12-06 20:38:31 -08002837static struct dentry *proc_pid_instantiate(struct inode *dir,
2838 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002839 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002840{
2841 struct dentry *error = ERR_PTR(-ENOENT);
2842 struct inode *inode;
2843
Eric W. Biederman61a28782006-10-02 02:18:49 -07002844 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002845 if (!inode)
2846 goto out;
2847
2848 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2849 inode->i_op = &proc_tgid_base_inode_operations;
2850 inode->i_fop = &proc_tgid_base_operations;
2851 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002852
2853 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2854 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002855
2856 dentry->d_op = &pid_dentry_operations;
2857
2858 d_add(dentry, inode);
2859 /* Close the race of the process dying before we return the dentry */
2860 if (pid_revalidate(dentry, NULL))
2861 error = NULL;
2862out:
2863 return error;
2864}
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2867{
Dan Carpenter73d36462010-05-26 14:43:25 -07002868 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002871 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Eric W. Biederman801199c2006-10-02 02:18:48 -07002873 result = proc_base_lookup(dir, dentry);
2874 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2875 goto out;
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 tgid = name_to_int(dentry);
2878 if (tgid == ~0U)
2879 goto out;
2880
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002881 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002882 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002883 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (task)
2885 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002886 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 if (!task)
2888 goto out;
2889
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002890 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002891 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002893 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002897 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002898 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002900struct tgid_iter {
2901 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002902 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002903};
2904static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2905{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002906 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002908 if (iter.task)
2909 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002910 rcu_read_lock();
2911retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002912 iter.task = NULL;
2913 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002914 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002915 iter.tgid = pid_nr_ns(pid, ns);
2916 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002917 /* What we to know is if the pid we have find is the
2918 * pid of a thread_group_leader. Testing for task
2919 * being a thread_group_leader is the obvious thing
2920 * todo but there is a window when it fails, due to
2921 * the pid transfer logic in de_thread.
2922 *
2923 * So we perform the straight forward test of seeing
2924 * if the pid we have found is the pid of a thread
2925 * group leader, and don't worry if the task we have
2926 * found doesn't happen to be a thread group leader.
2927 * As we don't care in the case of readdir.
2928 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002929 if (!iter.task || !has_group_leader_pid(iter.task)) {
2930 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002931 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002932 }
2933 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002935 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002936 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
2938
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002939#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Eric W. Biederman61a28782006-10-02 02:18:49 -07002941static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002942 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002943{
2944 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002945 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002946 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002947 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002948}
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950/* for the /proc/ directory itself, after non-process stuff has been done */
2951int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2952{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002954 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002955 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002956 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Eric W. Biederman61a28782006-10-02 02:18:49 -07002958 if (!reaper)
2959 goto out_no_task;
2960
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002961 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002962 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002963 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002964 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 }
2966
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002967 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002968 iter.task = NULL;
2969 iter.tgid = filp->f_pos - TGID_OFFSET;
2970 for (iter = next_tgid(ns, iter);
2971 iter.task;
2972 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2973 filp->f_pos = iter.tgid + TGID_OFFSET;
2974 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2975 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002979 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2980out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002981 put_task_struct(reaper);
2982out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return 0;
2984}
2985
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002986/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002987 * Tasks
2988 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002989static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002990 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07002991 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002992 REG("environ", S_IRUSR, proc_environ_operations),
2993 INF("auxv", S_IRUSR, proc_pid_auxv),
2994 ONE("status", S_IRUGO, proc_pid_status),
2995 ONE("personality", S_IRUSR, proc_pid_personality),
2996 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002997#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002998 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002999#endif
john stultz4614a696b2009-12-14 18:00:05 -08003000 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003001#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003002 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003003#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003004 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3005 ONE("stat", S_IRUGO, proc_tid_stat),
3006 ONE("statm", S_IRUGO, proc_pid_statm),
3007 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003008#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003009 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003010#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003011 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3012 LNK("cwd", proc_cwd_link),
3013 LNK("root", proc_root_link),
3014 LNK("exe", proc_exe_link),
3015 REG("mounts", S_IRUGO, proc_mounts_operations),
3016 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003017#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003018 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3019 REG("smaps", S_IRUGO, proc_smaps_operations),
3020 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003021#endif
3022#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003023 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003024#endif
3025#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003026 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003027#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003028#ifdef CONFIG_STACKTRACE
3029 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003030#endif
3031#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003032 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003033#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003034#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003035 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003036#endif
Paul Menage8793d852007-10-18 23:39:39 -07003037#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003038 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003039#endif
Paul Menagea4243162007-10-18 23:39:35 -07003040#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003041 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003042#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003043 INF("oom_score", S_IRUGO, proc_oom_score),
3044 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003045 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003046#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003047 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3048 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003049#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003050#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003051 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003052#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003053#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003054 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003055#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003056};
3057
3058static int proc_tid_base_readdir(struct file * filp,
3059 void * dirent, filldir_t filldir)
3060{
3061 return proc_pident_readdir(filp,dirent,filldir,
3062 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3063}
3064
3065static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003066 return proc_pident_lookup(dir, dentry,
3067 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003068}
3069
Arjan van de Ven00977a52007-02-12 00:55:34 -08003070static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003071 .read = generic_read_dir,
3072 .readdir = proc_tid_base_readdir,
3073};
3074
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003075static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003076 .lookup = proc_tid_base_lookup,
3077 .getattr = pid_getattr,
3078 .setattr = proc_setattr,
3079};
3080
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003081static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003082 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003083{
3084 struct dentry *error = ERR_PTR(-ENOENT);
3085 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003086 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003087
3088 if (!inode)
3089 goto out;
3090 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3091 inode->i_op = &proc_tid_base_inode_operations;
3092 inode->i_fop = &proc_tid_base_operations;
3093 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003094
3095 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3096 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003097
3098 dentry->d_op = &pid_dentry_operations;
3099
3100 d_add(dentry, inode);
3101 /* Close the race of the process dying before we return the dentry */
3102 if (pid_revalidate(dentry, NULL))
3103 error = NULL;
3104out:
3105 return error;
3106}
3107
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003108static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3109{
3110 struct dentry *result = ERR_PTR(-ENOENT);
3111 struct task_struct *task;
3112 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003113 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003114 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003115
3116 if (!leader)
3117 goto out_no_task;
3118
3119 tid = name_to_int(dentry);
3120 if (tid == ~0U)
3121 goto out;
3122
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003123 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003124 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003125 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003126 if (task)
3127 get_task_struct(task);
3128 rcu_read_unlock();
3129 if (!task)
3130 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003131 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003132 goto out_drop_task;
3133
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003134 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003135out_drop_task:
3136 put_task_struct(task);
3137out:
3138 put_task_struct(leader);
3139out_no_task:
3140 return result;
3141}
3142
3143/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003144 * Find the first tid of a thread group to return to user space.
3145 *
3146 * Usually this is just the thread group leader, but if the users
3147 * buffer was too small or there was a seek into the middle of the
3148 * directory we have more work todo.
3149 *
3150 * In the case of a short read we start with find_task_by_pid.
3151 *
3152 * In the case of a seek we start with the leader and walk nr
3153 * threads past it.
3154 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003155static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003156 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003157{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003158 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003159
Eric W. Biedermancc288732006-06-26 00:26:01 -07003160 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003161 /* Attempt to start with the pid of a thread */
3162 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003163 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003164 if (pos && (pos->group_leader == leader))
3165 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003166 }
3167
3168 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003169 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003170 if (nr && nr >= get_nr_threads(leader))
3171 goto out;
3172
3173 /* If we haven't found our starting place yet start
3174 * with the leader and walk nr threads forward.
3175 */
3176 for (pos = leader; nr > 0; --nr) {
3177 pos = next_thread(pos);
3178 if (pos == leader) {
3179 pos = NULL;
3180 goto out;
3181 }
3182 }
3183found:
3184 get_task_struct(pos);
3185out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003186 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003187 return pos;
3188}
3189
3190/*
3191 * Find the next thread in the thread list.
3192 * Return NULL if there is an error or no next thread.
3193 *
3194 * The reference to the input task_struct is released.
3195 */
3196static struct task_struct *next_tid(struct task_struct *start)
3197{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003198 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003199 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003200 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003201 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003202 if (thread_group_leader(pos))
3203 pos = NULL;
3204 else
3205 get_task_struct(pos);
3206 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003207 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003208 put_task_struct(start);
3209 return pos;
3210}
3211
Eric W. Biederman61a28782006-10-02 02:18:49 -07003212static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3213 struct task_struct *task, int tid)
3214{
3215 char name[PROC_NUMBUF];
3216 int len = snprintf(name, sizeof(name), "%d", tid);
3217 return proc_fill_cache(filp, dirent, filldir, name, len,
3218 proc_task_instantiate, task, NULL);
3219}
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221/* for the /proc/TGID/task/ directories */
3222static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3223{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003224 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003226 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003227 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 int retval = -ENOENT;
3229 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003230 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003231 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003233 task = get_proc_task(inode);
3234 if (!task)
3235 goto out_no_task;
3236 rcu_read_lock();
3237 if (pid_alive(task)) {
3238 leader = task->group_leader;
3239 get_task_struct(leader);
3240 }
3241 rcu_read_unlock();
3242 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003243 if (!leader)
3244 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 retval = 0;
3246
Linus Torvaldsee568b22009-03-17 10:02:35 -07003247 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 case 0:
3249 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003250 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003252 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 /* fall through */
3254 case 1:
3255 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003256 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003258 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 /* fall through */
3260 }
3261
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003262 /* f_version caches the tgid value that the last readdir call couldn't
3263 * return. lseek aka telldir automagically resets f_version to 0.
3264 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003265 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003266 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003267 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003268 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003269 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003270 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003271 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003272 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003273 /* returning this tgid failed, save it as the first
3274 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003275 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003276 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
3280out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003281 put_task_struct(leader);
3282out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 return retval;
3284}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003285
3286static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3287{
3288 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003289 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003290 generic_fillattr(inode, stat);
3291
Eric W. Biederman99f89552006-06-26 00:25:55 -07003292 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003293 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003294 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003295 }
3296
3297 return 0;
3298}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003299
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003300static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003301 .lookup = proc_task_lookup,
3302 .getattr = proc_task_getattr,
3303 .setattr = proc_setattr,
3304};
3305
Arjan van de Ven00977a52007-02-12 00:55:34 -08003306static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003307 .read = generic_read_dir,
3308 .readdir = proc_task_readdir,
3309};