blob: 71a34253dcbb99fc97a5aab322fd3e9db00855cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/proc/base.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * proc base directory handling functions
7 *
8 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
9 * Instead of using magical inumbers to determine the kind of object
10 * we allocate and fill in-core inodes upon lookup. They don't even
11 * go into icache. We cache the reference to task_struct upon lookup too.
12 * Eventually it should become a filesystem in its own. We don't use the
13 * rest of procfs anymore.
Mauricio Line070ad42005-09-03 15:55:10 -070014 *
15 *
16 * Changelog:
17 * 17-Jan-2005
18 * Allan Bezerra
19 * Bruna Moreira <bruna.moreira@indt.org.br>
20 * Edjard Mota <edjard.mota@indt.org.br>
21 * Ilias Biris <ilias.biris@indt.org.br>
22 * Mauricio Lin <mauricio.lin@indt.org.br>
23 *
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
25 *
26 * A new process specific entry (smaps) included in /proc. It shows the
27 * size of rss for each memory area. The maps entry lacks information
28 * about physical memory size (rss) for each mapped file, i.e.,
29 * rss information for executables and library files.
30 * This additional information is useful for any tools that need to know
31 * about physical memory consumption for a process specific library.
32 *
33 * Changelog:
34 * 21-Feb-2005
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
37 *
38 * ChangeLog:
39 * 10-Mar-2005
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
42 *
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
45 *
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50#include <asm/uaccess.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/time.h>
54#include <linux/proc_fs.h>
55#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020056#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080058#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040060#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/seq_file.h>
63#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mm.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070066#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030068#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070069#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070070#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/mount.h>
72#include <linux/security.h>
73#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070074#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070075#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/cpuset.h>
77#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050078#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070079#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070080#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070081#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070082#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040083#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include "internal.h"
85
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070086/* NOTE:
87 * Implementing inode permission operations in /proc is almost
88 * certainly an error. Permission checks need to happen during
89 * each system call not at open time. The reason is that most of
90 * what we wish to check for permissions in /proc varies at runtime.
91 *
92 * The classic example of a problem is opening file descriptors
93 * in /proc for a task before it execs a suid executable.
94 */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -070098 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800100 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800101 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700102 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Eric W. Biederman61a28782006-10-02 02:18:49 -0700105#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700106 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700107 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .mode = MODE, \
109 .iop = IOP, \
110 .fop = FOP, \
111 .op = OP, \
112}
113
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300114#define DIR(NAME, MODE, iops, fops) \
115 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
116#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700117 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700118 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300119 { .proc_get_link = get_link } )
120#define REG(NAME, MODE, fops) \
121 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
122#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700123 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700124 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300125 { .proc_read = read } )
126#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800127 NOD(NAME, (S_IFREG|(MODE)), \
128 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300129 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Vegard Nossumaed54172008-06-05 22:46:53 -0700131/*
132 * Count the number of hardlinks for the pid_entry table, excluding the .
133 * and .. links.
134 */
135static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
136 unsigned int n)
137{
138 unsigned int i;
139 unsigned int count;
140
141 count = 0;
142 for (i = 0; i < n; ++i) {
143 if (S_ISDIR(entries[i].mode))
144 ++count;
145 }
146
147 return count;
148}
149
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000150static int get_fs_path(struct task_struct *task, struct path *path, bool root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct fs_struct *fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000153 int result = -ENOENT;
154
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700155 task_lock(task);
156 fs = task->fs;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000157 if (fs) {
158 read_lock(&fs->lock);
159 *path = root ? fs->root : fs->pwd;
160 path_get(path);
161 read_unlock(&fs->lock);
162 result = 0;
163 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700164 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000165 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166}
167
Eric W. Biederman99f89552006-06-26 00:25:55 -0700168static int get_nr_threads(struct task_struct *tsk)
169{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700170 unsigned long flags;
171 int count = 0;
172
173 if (lock_task_sighand(tsk, &flags)) {
174 count = atomic_read(&tsk->signal->count);
175 unlock_task_sighand(tsk, &flags);
176 }
177 return count;
178}
179
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800180static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700181{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700182 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700183 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184
185 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000186 result = get_fs_path(task, path, 0);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700187 put_task_struct(task);
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return result;
190}
191
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800192static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700194 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700196
197 if (task) {
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000198 result = get_fs_path(task, path, 1);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700199 put_task_struct(task);
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return result;
202}
203
Roland McGrath638fa2022008-04-29 01:01:38 -0700204/*
205 * Return zero if current may access user memory in @task, -error if not.
206 */
207static int check_mem_permission(struct task_struct *task)
208{
209 /*
210 * A task can always look at itself, in case it chooses
211 * to use system calls instead of load instructions.
212 */
213 if (task == current)
214 return 0;
215
216 /*
217 * If current is actively ptrace'ing, and would also be
218 * permitted to freshly attach with ptrace now, permit it.
219 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700220 if (task_is_stopped_or_traced(task)) {
221 int match;
222 rcu_read_lock();
223 match = (tracehook_tracer_task(task) == current);
224 rcu_read_unlock();
225 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
226 return 0;
227 }
Roland McGrath638fa2022008-04-29 01:01:38 -0700228
229 /*
230 * Noone else is allowed.
231 */
232 return -EPERM;
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Al Viro831830b2008-01-02 14:09:57 +0000235struct mm_struct *mm_for_maps(struct task_struct *task)
236{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200237 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200238
Oleg Nesterov704b8362009-07-10 03:27:40 +0200239 if (mutex_lock_killable(&task->cred_guard_mutex))
240 return NULL;
241
242 mm = get_task_mm(task);
243 if (mm && mm != current->mm &&
244 !ptrace_may_access(task, PTRACE_MODE_READ)) {
245 mmput(mm);
246 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200247 }
Oleg Nesterov704b8362009-07-10 03:27:40 +0200248 mutex_unlock(&task->cred_guard_mutex);
249
Al Viro831830b2008-01-02 14:09:57 +0000250 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int proc_pid_cmdline(struct task_struct *task, char * buffer)
254{
255 int res = 0;
256 unsigned int len;
257 struct mm_struct *mm = get_task_mm(task);
258 if (!mm)
259 goto out;
260 if (!mm->arg_end)
261 goto out_mm; /* Shh! No looking before we're done */
262
263 len = mm->arg_end - mm->arg_start;
264
265 if (len > PAGE_SIZE)
266 len = PAGE_SIZE;
267
268 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
269
270 // If the nul at the end of args has been overwritten, then
271 // assume application is using setproctitle(3).
272 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
273 len = strnlen(buffer, res);
274 if (len < res) {
275 res = len;
276 } else {
277 len = mm->env_end - mm->env_start;
278 if (len > PAGE_SIZE - res)
279 len = PAGE_SIZE - res;
280 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
281 res = strnlen(buffer, res);
282 }
283 }
284out_mm:
285 mmput(mm);
286out:
287 return res;
288}
289
290static int proc_pid_auxv(struct task_struct *task, char *buffer)
291{
292 int res = 0;
293 struct mm_struct *mm = get_task_mm(task);
294 if (mm) {
295 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300296 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300298 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 res = nwords * sizeof(mm->saved_auxv[0]);
300 if (res > PAGE_SIZE)
301 res = PAGE_SIZE;
302 memcpy(buffer, mm->saved_auxv, res);
303 mmput(mm);
304 }
305 return res;
306}
307
308
309#ifdef CONFIG_KALLSYMS
310/*
311 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
312 * Returns the resolved symbol. If that fails, simply return the address.
313 */
314static int proc_pid_wchan(struct task_struct *task, char *buffer)
315{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700316 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700317 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 wchan = get_wchan(task);
320
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700321 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600322 if (!ptrace_may_access(task, PTRACE_MODE_READ))
323 return 0;
324 else
325 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700326 else
327 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329#endif /* CONFIG_KALLSYMS */
330
Ken Chen2ec220e2008-11-10 11:26:08 +0300331#ifdef CONFIG_STACKTRACE
332
333#define MAX_STACK_TRACE_DEPTH 64
334
335static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
336 struct pid *pid, struct task_struct *task)
337{
338 struct stack_trace trace;
339 unsigned long *entries;
340 int i;
341
342 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
343 if (!entries)
344 return -ENOMEM;
345
346 trace.nr_entries = 0;
347 trace.max_entries = MAX_STACK_TRACE_DEPTH;
348 trace.entries = entries;
349 trace.skip = 0;
350 save_stack_trace_tsk(task, &trace);
351
352 for (i = 0; i < trace.nr_entries; i++) {
353 seq_printf(m, "[<%p>] %pS\n",
354 (void *)entries[i], (void *)entries[i]);
355 }
356 kfree(entries);
357
358 return 0;
359}
360#endif
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#ifdef CONFIG_SCHEDSTATS
363/*
364 * Provides /proc/PID/schedstat
365 */
366static int proc_pid_schedstat(struct task_struct *task, char *buffer)
367{
Balbir Singh172ba842007-07-09 18:52:00 +0200368 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100369 (unsigned long long)task->se.sum_exec_runtime,
370 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200371 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373#endif
374
Arjan van de Ven97455122008-01-25 21:08:34 +0100375#ifdef CONFIG_LATENCYTOP
376static int lstats_show_proc(struct seq_file *m, void *v)
377{
378 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800379 struct inode *inode = m->private;
380 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100381
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800382 if (!task)
383 return -ESRCH;
384 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100385 for (i = 0; i < 32; i++) {
386 if (task->latency_record[i].backtrace[0]) {
387 int q;
388 seq_printf(m, "%i %li %li ",
389 task->latency_record[i].count,
390 task->latency_record[i].time,
391 task->latency_record[i].max);
392 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800393 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100394 char *c;
395 if (!task->latency_record[i].backtrace[q])
396 break;
397 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
398 break;
399 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
400 c = strchr(sym, '+');
401 if (c)
402 *c = 0;
403 seq_printf(m, "%s ", sym);
404 }
405 seq_printf(m, "\n");
406 }
407
408 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800409 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100410 return 0;
411}
412
413static int lstats_open(struct inode *inode, struct file *file)
414{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800415 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800416}
417
Arjan van de Ven97455122008-01-25 21:08:34 +0100418static ssize_t lstats_write(struct file *file, const char __user *buf,
419 size_t count, loff_t *offs)
420{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800421 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100422
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800423 if (!task)
424 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100425 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800426 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100427
428 return count;
429}
430
431static const struct file_operations proc_lstats_operations = {
432 .open = lstats_open,
433 .read = seq_read,
434 .write = lstats_write,
435 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800436 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100437};
438
439#endif
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/* The badness from the OOM killer */
442unsigned long badness(struct task_struct *p, unsigned long uptime);
443static int proc_oom_score(struct task_struct *task, char *buffer)
444{
445 unsigned long points;
446 struct timespec uptime;
447
448 do_posix_clock_monotonic_gettime(&uptime);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700449 read_lock(&tasklist_lock);
KOSAKI Motohiro495789a2009-09-21 17:03:14 -0700450 points = badness(task->group_leader, uptime.tv_sec);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700451 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return sprintf(buffer, "%lu\n", points);
453}
454
Neil Hormand85f50d2007-10-18 23:40:37 -0700455struct limit_names {
456 char *name;
457 char *unit;
458};
459
460static const struct limit_names lnames[RLIM_NLIMITS] = {
461 [RLIMIT_CPU] = {"Max cpu time", "ms"},
462 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
463 [RLIMIT_DATA] = {"Max data size", "bytes"},
464 [RLIMIT_STACK] = {"Max stack size", "bytes"},
465 [RLIMIT_CORE] = {"Max core file size", "bytes"},
466 [RLIMIT_RSS] = {"Max resident set", "bytes"},
467 [RLIMIT_NPROC] = {"Max processes", "processes"},
468 [RLIMIT_NOFILE] = {"Max open files", "files"},
469 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
470 [RLIMIT_AS] = {"Max address space", "bytes"},
471 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
472 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
473 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
474 [RLIMIT_NICE] = {"Max nice priority", NULL},
475 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800476 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700477};
478
479/* Display limits for a process */
480static int proc_pid_limits(struct task_struct *task, char *buffer)
481{
482 unsigned int i;
483 int count = 0;
484 unsigned long flags;
485 char *bufptr = buffer;
486
487 struct rlimit rlim[RLIM_NLIMITS];
488
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400489 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700490 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700491 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
492 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700493
494 /*
495 * print the file header
496 */
497 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
498 "Limit", "Soft Limit", "Hard Limit", "Units");
499
500 for (i = 0; i < RLIM_NLIMITS; i++) {
501 if (rlim[i].rlim_cur == RLIM_INFINITY)
502 count += sprintf(&bufptr[count], "%-25s %-20s ",
503 lnames[i].name, "unlimited");
504 else
505 count += sprintf(&bufptr[count], "%-25s %-20lu ",
506 lnames[i].name, rlim[i].rlim_cur);
507
508 if (rlim[i].rlim_max == RLIM_INFINITY)
509 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
510 else
511 count += sprintf(&bufptr[count], "%-20lu ",
512 rlim[i].rlim_max);
513
514 if (lnames[i].unit)
515 count += sprintf(&bufptr[count], "%-10s\n",
516 lnames[i].unit);
517 else
518 count += sprintf(&bufptr[count], "\n");
519 }
520
521 return count;
522}
523
Roland McGrathebcb6732008-07-25 19:46:00 -0700524#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
525static int proc_pid_syscall(struct task_struct *task, char *buffer)
526{
527 long nr;
528 unsigned long args[6], sp, pc;
529
530 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
531 return sprintf(buffer, "running\n");
532
533 if (nr < 0)
534 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
535
536 return sprintf(buffer,
537 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
538 nr,
539 args[0], args[1], args[2], args[3], args[4], args[5],
540 sp, pc);
541}
542#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/************************************************************************/
545/* Here the fs part begins */
546/************************************************************************/
547
548/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700549static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700551 struct task_struct *task;
552 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700553 /* Allow access to a task's file descriptors if it is us or we
554 * may use ptrace attach to the process and find out that
555 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700556 */
557 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700558 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400559 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700560 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700561 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700562 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700565static int proc_setattr(struct dentry *dentry, struct iattr *attr)
566{
567 int error;
568 struct inode *inode = dentry->d_inode;
569
570 if (attr->ia_valid & ATTR_MODE)
571 return -EPERM;
572
573 error = inode_change_ok(inode, attr);
John Johansen1e8123f2007-05-08 00:29:41 -0700574 if (!error)
575 error = inode_setattr(inode, attr);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700576 return error;
577}
578
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800579static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700580 .setattr = proc_setattr,
581};
582
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100583static int mounts_open_common(struct inode *inode, struct file *file,
584 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700586 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700587 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800588 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100589 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500590 struct proc_mounts *p;
591 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Eric W. Biederman99f89552006-06-26 00:25:55 -0700593 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700594 rcu_read_lock();
595 nsp = task_nsproxy(task);
596 if (nsp) {
597 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800598 if (ns)
599 get_mnt_ns(ns);
600 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700601 rcu_read_unlock();
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000602 if (ns && get_fs_path(task, &root, 1) == 0)
603 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700604 put_task_struct(task);
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100607 if (!ns)
608 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000609 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100610 goto err_put_ns;
611
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100612 ret = -ENOMEM;
613 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
614 if (!p)
615 goto err_put_path;
616
617 file->private_data = &p->m;
618 ret = seq_open(file, op);
619 if (ret)
620 goto err_free;
621
622 p->m.private = p;
623 p->ns = ns;
624 p->root = root;
625 p->event = ns->event;
626
627 return 0;
628
629 err_free:
630 kfree(p);
631 err_put_path:
632 path_put(&root);
633 err_put_ns:
634 put_mnt_ns(ns);
635 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return ret;
637}
638
639static int mounts_release(struct inode *inode, struct file *file)
640{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100641 struct proc_mounts *p = file->private_data;
642 path_put(&p->root);
643 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return seq_release(inode, file);
645}
646
Al Viro5addc5d2005-11-07 17:15:49 -0500647static unsigned mounts_poll(struct file *file, poll_table *wait)
648{
649 struct proc_mounts *p = file->private_data;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100650 struct mnt_namespace *ns = p->ns;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900651 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500652
653 poll_wait(file, &ns->poll, wait);
654
655 spin_lock(&vfsmount_lock);
656 if (p->event != ns->event) {
657 p->event = ns->event;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900658 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500659 }
660 spin_unlock(&vfsmount_lock);
661
662 return res;
663}
664
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100665static int mounts_open(struct inode *inode, struct file *file)
666{
667 return mounts_open_common(inode, file, &mounts_op);
668}
669
Arjan van de Ven00977a52007-02-12 00:55:34 -0800670static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 .open = mounts_open,
672 .read = seq_read,
673 .llseek = seq_lseek,
674 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500675 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676};
677
Ram Pai2d4d4862008-03-27 13:06:25 +0100678static int mountinfo_open(struct inode *inode, struct file *file)
679{
680 return mounts_open_common(inode, file, &mountinfo_op);
681}
682
683static const struct file_operations proc_mountinfo_operations = {
684 .open = mountinfo_open,
685 .read = seq_read,
686 .llseek = seq_lseek,
687 .release = mounts_release,
688 .poll = mounts_poll,
689};
690
Chuck Leverb4629fe2006-03-20 13:44:12 -0500691static int mountstats_open(struct inode *inode, struct file *file)
692{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100693 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500694}
695
Arjan van de Ven00977a52007-02-12 00:55:34 -0800696static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500697 .open = mountstats_open,
698 .read = seq_read,
699 .llseek = seq_lseek,
700 .release = mounts_release,
701};
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
704
705static ssize_t proc_info_read(struct file * file, char __user * buf,
706 size_t count, loff_t *ppos)
707{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800708 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 unsigned long page;
710 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700711 struct task_struct *task = get_proc_task(inode);
712
713 length = -ESRCH;
714 if (!task)
715 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 if (count > PROC_BLOCK_SIZE)
718 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700719
720 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700721 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700722 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 length = PROC_I(inode)->op.proc_read(task, (char*)page);
725
726 if (length >= 0)
727 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
728 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700729out:
730 put_task_struct(task);
731out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return length;
733}
734
Arjan van de Ven00977a52007-02-12 00:55:34 -0800735static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .read = proc_info_read,
737};
738
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800739static int proc_single_show(struct seq_file *m, void *v)
740{
741 struct inode *inode = m->private;
742 struct pid_namespace *ns;
743 struct pid *pid;
744 struct task_struct *task;
745 int ret;
746
747 ns = inode->i_sb->s_fs_info;
748 pid = proc_pid(inode);
749 task = get_pid_task(pid, PIDTYPE_PID);
750 if (!task)
751 return -ESRCH;
752
753 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
754
755 put_task_struct(task);
756 return ret;
757}
758
759static int proc_single_open(struct inode *inode, struct file *filp)
760{
761 int ret;
762 ret = single_open(filp, proc_single_show, NULL);
763 if (!ret) {
764 struct seq_file *m = filp->private_data;
765
766 m->private = inode;
767 }
768 return ret;
769}
770
771static const struct file_operations proc_single_file_operations = {
772 .open = proc_single_open,
773 .read = seq_read,
774 .llseek = seq_lseek,
775 .release = single_release,
776};
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static int mem_open(struct inode* inode, struct file* file)
779{
780 file->private_data = (void*)((long)current->self_exec_id);
781 return 0;
782}
783
784static ssize_t mem_read(struct file * file, char __user * buf,
785 size_t count, loff_t *ppos)
786{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800787 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 char *page;
789 unsigned long src = *ppos;
790 int ret = -ESRCH;
791 struct mm_struct *mm;
792
Eric W. Biederman99f89552006-06-26 00:25:55 -0700793 if (!task)
794 goto out_no_task;
795
Roland McGrath638fa2022008-04-29 01:01:38 -0700796 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto out;
798
799 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700800 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (!page)
802 goto out;
803
804 ret = 0;
805
806 mm = get_task_mm(task);
807 if (!mm)
808 goto out_free;
809
810 ret = -EIO;
811
812 if (file->private_data != (void*)((long)current->self_exec_id))
813 goto out_put;
814
815 ret = 0;
816
817 while (count > 0) {
818 int this_len, retval;
819
820 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
821 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa2022008-04-29 01:01:38 -0700822 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (!ret)
824 ret = -EIO;
825 break;
826 }
827
828 if (copy_to_user(buf, page, retval)) {
829 ret = -EFAULT;
830 break;
831 }
832
833 ret += retval;
834 src += retval;
835 buf += retval;
836 count -= retval;
837 }
838 *ppos = src;
839
840out_put:
841 mmput(mm);
842out_free:
843 free_page((unsigned long) page);
844out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700845 put_task_struct(task);
846out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return ret;
848}
849
850#define mem_write NULL
851
852#ifndef mem_write
853/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800854static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 size_t count, loff_t *ppos)
856{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700857 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800859 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 unsigned long dst = *ppos;
861
Eric W. Biederman99f89552006-06-26 00:25:55 -0700862 copied = -ESRCH;
863 if (!task)
864 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Roland McGrath638fa2022008-04-29 01:01:38 -0700866 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700867 goto out;
868
869 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700870 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700874 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 while (count > 0) {
876 int this_len, retval;
877
878 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
879 if (copy_from_user(page, buf, this_len)) {
880 copied = -EFAULT;
881 break;
882 }
883 retval = access_process_vm(task, dst, page, this_len, 1);
884 if (!retval) {
885 if (!copied)
886 copied = -EIO;
887 break;
888 }
889 copied += retval;
890 buf += retval;
891 dst += retval;
892 count -= retval;
893 }
894 *ppos = dst;
895 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700896out:
897 put_task_struct(task);
898out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return copied;
900}
901#endif
902
Matt Mackall85863e42008-02-04 22:29:04 -0800903loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 switch (orig) {
906 case 0:
907 file->f_pos = offset;
908 break;
909 case 1:
910 file->f_pos += offset;
911 break;
912 default:
913 return -EINVAL;
914 }
915 force_successful_syscall_return();
916 return file->f_pos;
917}
918
Arjan van de Ven00977a52007-02-12 00:55:34 -0800919static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 .llseek = mem_lseek,
921 .read = mem_read,
922 .write = mem_write,
923 .open = mem_open,
924};
925
James Pearson315e28c2007-10-16 23:30:17 -0700926static ssize_t environ_read(struct file *file, char __user *buf,
927 size_t count, loff_t *ppos)
928{
929 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
930 char *page;
931 unsigned long src = *ppos;
932 int ret = -ESRCH;
933 struct mm_struct *mm;
934
935 if (!task)
936 goto out_no_task;
937
Stephen Smalley006ebb42008-05-19 08:32:49 -0400938 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700939 goto out;
940
941 ret = -ENOMEM;
942 page = (char *)__get_free_page(GFP_TEMPORARY);
943 if (!page)
944 goto out;
945
946 ret = 0;
947
948 mm = get_task_mm(task);
949 if (!mm)
950 goto out_free;
951
952 while (count > 0) {
953 int this_len, retval, max_len;
954
955 this_len = mm->env_end - (mm->env_start + src);
956
957 if (this_len <= 0)
958 break;
959
960 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
961 this_len = (this_len > max_len) ? max_len : this_len;
962
963 retval = access_process_vm(task, (mm->env_start + src),
964 page, this_len, 0);
965
966 if (retval <= 0) {
967 ret = retval;
968 break;
969 }
970
971 if (copy_to_user(buf, page, retval)) {
972 ret = -EFAULT;
973 break;
974 }
975
976 ret += retval;
977 src += retval;
978 buf += retval;
979 count -= retval;
980 }
981 *ppos = src;
982
983 mmput(mm);
984out_free:
985 free_page((unsigned long) page);
986out:
987 put_task_struct(task);
988out_no_task:
989 return ret;
990}
991
992static const struct file_operations proc_environ_operations = {
993 .read = environ_read,
994};
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static ssize_t oom_adjust_read(struct file *file, char __user *buf,
997 size_t count, loff_t *ppos)
998{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800999 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001000 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001002 int oom_adjust = OOM_DISABLE;
1003 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Eric W. Biederman99f89552006-06-26 00:25:55 -07001005 if (!task)
1006 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001007
1008 if (lock_task_sighand(task, &flags)) {
1009 oom_adjust = task->signal->oom_adj;
1010 unlock_task_sighand(task, &flags);
1011 }
1012
Eric W. Biederman99f89552006-06-26 00:25:55 -07001013 put_task_struct(task);
1014
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001015 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001016
1017 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
1020static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1021 size_t count, loff_t *ppos)
1022{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001023 struct task_struct *task;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001024 char buffer[PROC_NUMBUF], *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 int oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001026 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001028 memset(buffer, 0, sizeof(buffer));
1029 if (count > sizeof(buffer) - 1)
1030 count = sizeof(buffer) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (copy_from_user(buffer, buf, count))
1032 return -EFAULT;
1033 oom_adjust = simple_strtol(buffer, &end, 0);
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001034 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
1035 oom_adjust != OOM_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return -EINVAL;
1037 if (*end == '\n')
1038 end++;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001039 task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001040 if (!task)
1041 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001042 if (!lock_task_sighand(task, &flags)) {
1043 put_task_struct(task);
1044 return -ESRCH;
1045 }
1046
1047 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1048 unlock_task_sighand(task, &flags);
Guillem Jover8fb4fc62006-12-06 20:32:24 -08001049 put_task_struct(task);
1050 return -EACCES;
1051 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001052
1053 task->signal->oom_adj = oom_adjust;
1054
1055 unlock_task_sighand(task, &flags);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001056 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (end - buffer == 0)
1058 return -EIO;
1059 return end - buffer;
1060}
1061
Arjan van de Ven00977a52007-02-12 00:55:34 -08001062static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 .read = oom_adjust_read,
1064 .write = oom_adjust_write,
1065};
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067#ifdef CONFIG_AUDITSYSCALL
1068#define TMPBUFLEN 21
1069static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1070 size_t count, loff_t *ppos)
1071{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001072 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001073 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 ssize_t length;
1075 char tmpbuf[TMPBUFLEN];
1076
Eric W. Biederman99f89552006-06-26 00:25:55 -07001077 if (!task)
1078 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001080 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001081 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1083}
1084
1085static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1086 size_t count, loff_t *ppos)
1087{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001088 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 char *page, *tmp;
1090 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 uid_t loginuid;
1092
1093 if (!capable(CAP_AUDIT_CONTROL))
1094 return -EPERM;
1095
Eric W. Biederman13b41b02006-06-26 00:25:56 -07001096 if (current != pid_task(proc_pid(inode), PIDTYPE_PID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return -EPERM;
1098
Al Viroe0182902006-05-18 08:28:02 -04001099 if (count >= PAGE_SIZE)
1100 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 if (*ppos != 0) {
1103 /* No partial writes. */
1104 return -EINVAL;
1105 }
Mel Gormane12ba742007-10-16 01:25:52 -07001106 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (!page)
1108 return -ENOMEM;
1109 length = -EFAULT;
1110 if (copy_from_user(page, buf, count))
1111 goto out_free_page;
1112
Al Viroe0182902006-05-18 08:28:02 -04001113 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 loginuid = simple_strtoul(page, &tmp, 10);
1115 if (tmp == page) {
1116 length = -EINVAL;
1117 goto out_free_page;
1118
1119 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001120 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (likely(length == 0))
1122 length = count;
1123
1124out_free_page:
1125 free_page((unsigned long) page);
1126 return length;
1127}
1128
Arjan van de Ven00977a52007-02-12 00:55:34 -08001129static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .read = proc_loginuid_read,
1131 .write = proc_loginuid_write,
1132};
Eric Paris1e0bd752008-03-13 08:15:31 -04001133
1134static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1135 size_t count, loff_t *ppos)
1136{
1137 struct inode * inode = file->f_path.dentry->d_inode;
1138 struct task_struct *task = get_proc_task(inode);
1139 ssize_t length;
1140 char tmpbuf[TMPBUFLEN];
1141
1142 if (!task)
1143 return -ESRCH;
1144 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1145 audit_get_sessionid(task));
1146 put_task_struct(task);
1147 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1148}
1149
1150static const struct file_operations proc_sessionid_operations = {
1151 .read = proc_sessionid_read,
1152};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#endif
1154
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001155#ifdef CONFIG_FAULT_INJECTION
1156static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1157 size_t count, loff_t *ppos)
1158{
1159 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1160 char buffer[PROC_NUMBUF];
1161 size_t len;
1162 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001163
1164 if (!task)
1165 return -ESRCH;
1166 make_it_fail = task->make_it_fail;
1167 put_task_struct(task);
1168
1169 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001170
1171 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001172}
1173
1174static ssize_t proc_fault_inject_write(struct file * file,
1175 const char __user * buf, size_t count, loff_t *ppos)
1176{
1177 struct task_struct *task;
1178 char buffer[PROC_NUMBUF], *end;
1179 int make_it_fail;
1180
1181 if (!capable(CAP_SYS_RESOURCE))
1182 return -EPERM;
1183 memset(buffer, 0, sizeof(buffer));
1184 if (count > sizeof(buffer) - 1)
1185 count = sizeof(buffer) - 1;
1186 if (copy_from_user(buffer, buf, count))
1187 return -EFAULT;
1188 make_it_fail = simple_strtol(buffer, &end, 0);
1189 if (*end == '\n')
1190 end++;
1191 task = get_proc_task(file->f_dentry->d_inode);
1192 if (!task)
1193 return -ESRCH;
1194 task->make_it_fail = make_it_fail;
1195 put_task_struct(task);
1196 if (end - buffer == 0)
1197 return -EIO;
1198 return end - buffer;
1199}
1200
Arjan van de Ven00977a52007-02-12 00:55:34 -08001201static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001202 .read = proc_fault_inject_read,
1203 .write = proc_fault_inject_write,
1204};
1205#endif
1206
Arjan van de Ven97455122008-01-25 21:08:34 +01001207
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001208#ifdef CONFIG_SCHED_DEBUG
1209/*
1210 * Print out various scheduling related per-task fields:
1211 */
1212static int sched_show(struct seq_file *m, void *v)
1213{
1214 struct inode *inode = m->private;
1215 struct task_struct *p;
1216
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001217 p = get_proc_task(inode);
1218 if (!p)
1219 return -ESRCH;
1220 proc_sched_show_task(p, m);
1221
1222 put_task_struct(p);
1223
1224 return 0;
1225}
1226
1227static ssize_t
1228sched_write(struct file *file, const char __user *buf,
1229 size_t count, loff_t *offset)
1230{
1231 struct inode *inode = file->f_path.dentry->d_inode;
1232 struct task_struct *p;
1233
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001234 p = get_proc_task(inode);
1235 if (!p)
1236 return -ESRCH;
1237 proc_sched_set_task(p);
1238
1239 put_task_struct(p);
1240
1241 return count;
1242}
1243
1244static int sched_open(struct inode *inode, struct file *filp)
1245{
1246 int ret;
1247
1248 ret = single_open(filp, sched_show, NULL);
1249 if (!ret) {
1250 struct seq_file *m = filp->private_data;
1251
1252 m->private = inode;
1253 }
1254 return ret;
1255}
1256
1257static const struct file_operations proc_pid_sched_operations = {
1258 .open = sched_open,
1259 .read = seq_read,
1260 .write = sched_write,
1261 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001262 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001263};
1264
1265#endif
1266
Matt Helsley925d1c42008-04-29 01:01:36 -07001267/*
1268 * We added or removed a vma mapping the executable. The vmas are only mapped
1269 * during exec and are not mapped with the mmap system call.
1270 * Callers must hold down_write() on the mm's mmap_sem for these
1271 */
1272void added_exe_file_vma(struct mm_struct *mm)
1273{
1274 mm->num_exe_file_vmas++;
1275}
1276
1277void removed_exe_file_vma(struct mm_struct *mm)
1278{
1279 mm->num_exe_file_vmas--;
1280 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1281 fput(mm->exe_file);
1282 mm->exe_file = NULL;
1283 }
1284
1285}
1286
1287void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1288{
1289 if (new_exe_file)
1290 get_file(new_exe_file);
1291 if (mm->exe_file)
1292 fput(mm->exe_file);
1293 mm->exe_file = new_exe_file;
1294 mm->num_exe_file_vmas = 0;
1295}
1296
1297struct file *get_mm_exe_file(struct mm_struct *mm)
1298{
1299 struct file *exe_file;
1300
1301 /* We need mmap_sem to protect against races with removal of
1302 * VM_EXECUTABLE vmas */
1303 down_read(&mm->mmap_sem);
1304 exe_file = mm->exe_file;
1305 if (exe_file)
1306 get_file(exe_file);
1307 up_read(&mm->mmap_sem);
1308 return exe_file;
1309}
1310
1311void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1312{
1313 /* It's safe to write the exe_file pointer without exe_file_lock because
1314 * this is called during fork when the task is not yet in /proc */
1315 newmm->exe_file = get_mm_exe_file(oldmm);
1316}
1317
1318static int proc_exe_link(struct inode *inode, struct path *exe_path)
1319{
1320 struct task_struct *task;
1321 struct mm_struct *mm;
1322 struct file *exe_file;
1323
1324 task = get_proc_task(inode);
1325 if (!task)
1326 return -ENOENT;
1327 mm = get_task_mm(task);
1328 put_task_struct(task);
1329 if (!mm)
1330 return -ENOENT;
1331 exe_file = get_mm_exe_file(mm);
1332 mmput(mm);
1333 if (exe_file) {
1334 *exe_path = exe_file->f_path;
1335 path_get(&exe_file->f_path);
1336 fput(exe_file);
1337 return 0;
1338 } else
1339 return -ENOENT;
1340}
1341
Al Viro008b1502005-08-20 00:17:39 +01001342static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct inode *inode = dentry->d_inode;
1345 int error = -EACCES;
1346
1347 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001348 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Eric W. Biederman778c1142006-06-26 00:25:58 -07001350 /* Are we allowed to snoop on the tasks file descriptors? */
1351 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001354 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 nd->last_type = LAST_BIND;
1356out:
Al Viro008b1502005-08-20 00:17:39 +01001357 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001360static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Mel Gormane12ba742007-10-16 01:25:52 -07001362 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001363 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 int len;
1365
1366 if (!tmp)
1367 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001368
Jan Blunckcf28b482008-02-14 19:38:44 -08001369 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001370 len = PTR_ERR(pathname);
1371 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001373 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 if (len > buflen)
1376 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001377 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 len = -EFAULT;
1379 out:
1380 free_page((unsigned long)tmp);
1381 return len;
1382}
1383
1384static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1385{
1386 int error = -EACCES;
1387 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001388 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Eric W. Biederman778c1142006-06-26 00:25:58 -07001390 /* Are we allowed to snoop on the tasks file descriptors? */
1391 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001394 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 if (error)
1396 goto out;
1397
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001398 error = do_proc_readlink(&path, buffer, buflen);
1399 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return error;
1402}
1403
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001404static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001406 .follow_link = proc_pid_follow_link,
1407 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408};
1409
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001410
1411/* building an inode */
1412
1413static int task_dumpable(struct task_struct *task)
1414{
1415 int dumpable = 0;
1416 struct mm_struct *mm;
1417
1418 task_lock(task);
1419 mm = task->mm;
1420 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001421 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001422 task_unlock(task);
1423 if(dumpable == 1)
1424 return 1;
1425 return 0;
1426}
1427
1428
Eric W. Biederman61a28782006-10-02 02:18:49 -07001429static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001430{
1431 struct inode * inode;
1432 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001433 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001434
1435 /* We need a new inode */
1436
1437 inode = new_inode(sb);
1438 if (!inode)
1439 goto out;
1440
1441 /* Common stuff */
1442 ei = PROC_I(inode);
1443 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001444 inode->i_op = &proc_def_inode_operations;
1445
1446 /*
1447 * grab the reference to task.
1448 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001449 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001450 if (!ei->pid)
1451 goto out_unlock;
1452
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001453 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001454 rcu_read_lock();
1455 cred = __task_cred(task);
1456 inode->i_uid = cred->euid;
1457 inode->i_gid = cred->egid;
1458 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001459 }
1460 security_task_to_inode(task, inode);
1461
1462out:
1463 return inode;
1464
1465out_unlock:
1466 iput(inode);
1467 return NULL;
1468}
1469
1470static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1471{
1472 struct inode *inode = dentry->d_inode;
1473 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001474 const struct cred *cred;
1475
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001476 generic_fillattr(inode, stat);
1477
1478 rcu_read_lock();
1479 stat->uid = 0;
1480 stat->gid = 0;
1481 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1482 if (task) {
1483 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1484 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001485 cred = __task_cred(task);
1486 stat->uid = cred->euid;
1487 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001488 }
1489 }
1490 rcu_read_unlock();
1491 return 0;
1492}
1493
1494/* dentry stuff */
1495
1496/*
1497 * Exceptional case: normally we are not allowed to unhash a busy
1498 * directory. In this case, however, we can do it - no aliasing problems
1499 * due to the way we treat inodes.
1500 *
1501 * Rewrite the inode's ownerships here because the owning task may have
1502 * performed a setuid(), etc.
1503 *
1504 * Before the /proc/pid/status file was created the only way to read
1505 * the effective uid of a /process was to stat /proc/pid. Reading
1506 * /proc/pid/status is slow enough that procps and other packages
1507 * kept stating /proc/pid. To keep the rules in /proc simple I have
1508 * made this apply to all per process world readable and executable
1509 * directories.
1510 */
1511static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1512{
1513 struct inode *inode = dentry->d_inode;
1514 struct task_struct *task = get_proc_task(inode);
David Howellsc69e8d92008-11-14 10:39:19 +11001515 const struct cred *cred;
1516
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001517 if (task) {
1518 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1519 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001520 rcu_read_lock();
1521 cred = __task_cred(task);
1522 inode->i_uid = cred->euid;
1523 inode->i_gid = cred->egid;
1524 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001525 } else {
1526 inode->i_uid = 0;
1527 inode->i_gid = 0;
1528 }
1529 inode->i_mode &= ~(S_ISUID | S_ISGID);
1530 security_task_to_inode(task, inode);
1531 put_task_struct(task);
1532 return 1;
1533 }
1534 d_drop(dentry);
1535 return 0;
1536}
1537
1538static int pid_delete_dentry(struct dentry * dentry)
1539{
1540 /* Is the task we represent dead?
1541 * If so, then don't put the dentry on the lru list,
1542 * kill it immediately.
1543 */
1544 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1545}
1546
Al Virod72f71e2009-02-20 05:58:47 +00001547static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001548{
1549 .d_revalidate = pid_revalidate,
1550 .d_delete = pid_delete_dentry,
1551};
1552
1553/* Lookups */
1554
Eric Dumazetc5141e62007-05-08 00:26:15 -07001555typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1556 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001557
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001558/*
1559 * Fill a directory entry.
1560 *
1561 * If possible create the dcache entry and derive our inode number and
1562 * file type from dcache entry.
1563 *
1564 * Since all of the proc inode numbers are dynamically generated, the inode
1565 * numbers do not exist until the inode is cache. This means creating the
1566 * the dcache entry in readdir is necessary to keep the inode numbers
1567 * reported by readdir in sync with the inode numbers reported
1568 * by stat.
1569 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001570static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1571 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001572 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001573{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001574 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001575 struct inode *inode;
1576 struct qstr qname;
1577 ino_t ino = 0;
1578 unsigned type = DT_UNKNOWN;
1579
1580 qname.name = name;
1581 qname.len = len;
1582 qname.hash = full_name_hash(name, len);
1583
1584 child = d_lookup(dir, &qname);
1585 if (!child) {
1586 struct dentry *new;
1587 new = d_alloc(dir, &qname);
1588 if (new) {
1589 child = instantiate(dir->d_inode, new, task, ptr);
1590 if (child)
1591 dput(new);
1592 else
1593 child = new;
1594 }
1595 }
1596 if (!child || IS_ERR(child) || !child->d_inode)
1597 goto end_instantiate;
1598 inode = child->d_inode;
1599 if (inode) {
1600 ino = inode->i_ino;
1601 type = inode->i_mode >> 12;
1602 }
1603 dput(child);
1604end_instantiate:
1605 if (!ino)
1606 ino = find_inode_number(dir, &qname);
1607 if (!ino)
1608 ino = 1;
1609 return filldir(dirent, name, len, filp->f_pos, ino, type);
1610}
1611
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001612static unsigned name_to_int(struct dentry *dentry)
1613{
1614 const char *name = dentry->d_name.name;
1615 int len = dentry->d_name.len;
1616 unsigned n = 0;
1617
1618 if (len > 1 && *name == '0')
1619 goto out;
1620 while (len-- > 0) {
1621 unsigned c = *name++ - '0';
1622 if (c > 9)
1623 goto out;
1624 if (n >= (~0U-9)/10)
1625 goto out;
1626 n *= 10;
1627 n += c;
1628 }
1629 return n;
1630out:
1631 return ~0U;
1632}
1633
Miklos Szeredi27932742007-05-08 00:26:17 -07001634#define PROC_FDINFO_MAX 64
1635
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001636static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001637{
1638 struct task_struct *task = get_proc_task(inode);
1639 struct files_struct *files = NULL;
1640 struct file *file;
1641 int fd = proc_fd(inode);
1642
1643 if (task) {
1644 files = get_files_struct(task);
1645 put_task_struct(task);
1646 }
1647 if (files) {
1648 /*
1649 * We are not taking a ref to the file structure, so we must
1650 * hold ->file_lock.
1651 */
1652 spin_lock(&files->file_lock);
1653 file = fcheck_files(files, fd);
1654 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001655 if (path) {
1656 *path = file->f_path;
1657 path_get(&file->f_path);
1658 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001659 if (info)
1660 snprintf(info, PROC_FDINFO_MAX,
1661 "pos:\t%lli\n"
1662 "flags:\t0%o\n",
1663 (long long) file->f_pos,
1664 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001665 spin_unlock(&files->file_lock);
1666 put_files_struct(files);
1667 return 0;
1668 }
1669 spin_unlock(&files->file_lock);
1670 put_files_struct(files);
1671 }
1672 return -ENOENT;
1673}
1674
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001675static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001676{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001677 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001678}
1679
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001680static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1681{
1682 struct inode *inode = dentry->d_inode;
1683 struct task_struct *task = get_proc_task(inode);
1684 int fd = proc_fd(inode);
1685 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001686 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001687
1688 if (task) {
1689 files = get_files_struct(task);
1690 if (files) {
1691 rcu_read_lock();
1692 if (fcheck_files(files, fd)) {
1693 rcu_read_unlock();
1694 put_files_struct(files);
1695 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001696 rcu_read_lock();
1697 cred = __task_cred(task);
1698 inode->i_uid = cred->euid;
1699 inode->i_gid = cred->egid;
1700 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001701 } else {
1702 inode->i_uid = 0;
1703 inode->i_gid = 0;
1704 }
1705 inode->i_mode &= ~(S_ISUID | S_ISGID);
1706 security_task_to_inode(task, inode);
1707 put_task_struct(task);
1708 return 1;
1709 }
1710 rcu_read_unlock();
1711 put_files_struct(files);
1712 }
1713 put_task_struct(task);
1714 }
1715 d_drop(dentry);
1716 return 0;
1717}
1718
Al Virod72f71e2009-02-20 05:58:47 +00001719static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001720{
1721 .d_revalidate = tid_fd_revalidate,
1722 .d_delete = pid_delete_dentry,
1723};
1724
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001725static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001726 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001727{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001728 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001729 struct file *file;
1730 struct files_struct *files;
1731 struct inode *inode;
1732 struct proc_inode *ei;
1733 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001734
Eric W. Biederman61a28782006-10-02 02:18:49 -07001735 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001736 if (!inode)
1737 goto out;
1738 ei = PROC_I(inode);
1739 ei->fd = fd;
1740 files = get_files_struct(task);
1741 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001742 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001743 inode->i_mode = S_IFLNK;
1744
1745 /*
1746 * We are not taking a ref to the file structure, so we must
1747 * hold ->file_lock.
1748 */
1749 spin_lock(&files->file_lock);
1750 file = fcheck_files(files, fd);
1751 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001752 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04001753 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001754 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04001755 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001756 inode->i_mode |= S_IWUSR | S_IXUSR;
1757 spin_unlock(&files->file_lock);
1758 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001759
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001760 inode->i_op = &proc_pid_link_inode_operations;
1761 inode->i_size = 64;
1762 ei->op.proc_get_link = proc_fd_link;
1763 dentry->d_op = &tid_fd_dentry_operations;
1764 d_add(dentry, inode);
1765 /* Close the race of the process dying before we return the dentry */
1766 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001767 error = NULL;
1768
1769 out:
1770 return error;
1771out_unlock:
1772 spin_unlock(&files->file_lock);
1773 put_files_struct(files);
1774out_iput:
1775 iput(inode);
1776 goto out;
1777}
1778
Miklos Szeredi27932742007-05-08 00:26:17 -07001779static struct dentry *proc_lookupfd_common(struct inode *dir,
1780 struct dentry *dentry,
1781 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001782{
1783 struct task_struct *task = get_proc_task(dir);
1784 unsigned fd = name_to_int(dentry);
1785 struct dentry *result = ERR_PTR(-ENOENT);
1786
1787 if (!task)
1788 goto out_no_task;
1789 if (fd == ~0U)
1790 goto out;
1791
Miklos Szeredi27932742007-05-08 00:26:17 -07001792 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001793out:
1794 put_task_struct(task);
1795out_no_task:
1796 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001797}
1798
Miklos Szeredi27932742007-05-08 00:26:17 -07001799static int proc_readfd_common(struct file * filp, void * dirent,
1800 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001802 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07001803 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001804 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07001805 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 struct files_struct * files;
1808
1809 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001810 if (!p)
1811 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 fd = filp->f_pos;
1815 switch (fd) {
1816 case 0:
1817 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1818 goto out;
1819 filp->f_pos++;
1820 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07001821 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1823 goto out;
1824 filp->f_pos++;
1825 default:
1826 files = get_files_struct(p);
1827 if (!files)
1828 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001829 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04001831 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07001833 char name[PROC_NUMBUF];
1834 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 if (!fcheck_files(files, fd))
1837 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07001838 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Miklos Szeredi27932742007-05-08 00:26:17 -07001840 len = snprintf(name, sizeof(name), "%d", fd);
1841 if (proc_fill_cache(filp, dirent, filldir,
1842 name, len, instantiate,
1843 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07001844 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 break;
1846 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001847 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07001849 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 put_files_struct(files);
1851 }
1852out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07001853 put_task_struct(p);
1854out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return retval;
1856}
1857
Miklos Szeredi27932742007-05-08 00:26:17 -07001858static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
1859 struct nameidata *nd)
1860{
1861 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
1862}
1863
1864static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
1865{
1866 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
1867}
1868
1869static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
1870 size_t len, loff_t *ppos)
1871{
1872 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001873 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07001874 if (!err)
1875 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
1876 return err;
1877}
1878
1879static const struct file_operations proc_fdinfo_file_operations = {
1880 .open = nonseekable_open,
1881 .read = proc_fdinfo_read,
1882};
1883
Arjan van de Ven00977a52007-02-12 00:55:34 -08001884static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 .read = generic_read_dir,
1886 .readdir = proc_readfd,
1887};
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001890 * /proc/pid/fd needs a special permission handler so that a process can still
1891 * access /proc/self/fd after it has executed a setuid().
1892 */
Al Viroe6305c42008-07-15 21:03:57 -04001893static int proc_fd_permission(struct inode *inode, int mask)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001894{
1895 int rv;
1896
1897 rv = generic_permission(inode, mask, NULL);
1898 if (rv == 0)
1899 return 0;
1900 if (task_pid(current) == proc_pid(inode))
1901 rv = 0;
1902 return rv;
1903}
1904
1905/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 * proc directories can do almost nothing..
1907 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001908static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07001910 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001911 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912};
1913
Miklos Szeredi27932742007-05-08 00:26:17 -07001914static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
1915 struct dentry *dentry, struct task_struct *task, const void *ptr)
1916{
1917 unsigned fd = *(unsigned *)ptr;
1918 struct inode *inode;
1919 struct proc_inode *ei;
1920 struct dentry *error = ERR_PTR(-ENOENT);
1921
1922 inode = proc_pid_make_inode(dir->i_sb, task);
1923 if (!inode)
1924 goto out;
1925 ei = PROC_I(inode);
1926 ei->fd = fd;
1927 inode->i_mode = S_IFREG | S_IRUSR;
1928 inode->i_fop = &proc_fdinfo_file_operations;
1929 dentry->d_op = &tid_fd_dentry_operations;
1930 d_add(dentry, inode);
1931 /* Close the race of the process dying before we return the dentry */
1932 if (tid_fd_revalidate(dentry, NULL))
1933 error = NULL;
1934
1935 out:
1936 return error;
1937}
1938
1939static struct dentry *proc_lookupfdinfo(struct inode *dir,
1940 struct dentry *dentry,
1941 struct nameidata *nd)
1942{
1943 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
1944}
1945
1946static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
1947{
1948 return proc_readfd_common(filp, dirent, filldir,
1949 proc_fdinfo_instantiate);
1950}
1951
1952static const struct file_operations proc_fdinfo_operations = {
1953 .read = generic_read_dir,
1954 .readdir = proc_readfdinfo,
1955};
1956
1957/*
1958 * proc directories can do almost nothing..
1959 */
1960static const struct inode_operations proc_fdinfo_inode_operations = {
1961 .lookup = proc_lookupfdinfo,
1962 .setattr = proc_setattr,
1963};
1964
1965
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001966static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001967 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001968{
Eric Dumazetc5141e62007-05-08 00:26:15 -07001969 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001970 struct inode *inode;
1971 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07001972 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001973
Eric W. Biederman61a28782006-10-02 02:18:49 -07001974 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001975 if (!inode)
1976 goto out;
1977
1978 ei = PROC_I(inode);
1979 inode->i_mode = p->mode;
1980 if (S_ISDIR(inode->i_mode))
1981 inode->i_nlink = 2; /* Use getattr to fix if necessary */
1982 if (p->iop)
1983 inode->i_op = p->iop;
1984 if (p->fop)
1985 inode->i_fop = p->fop;
1986 ei->op = p->op;
1987 dentry->d_op = &pid_dentry_operations;
1988 d_add(dentry, inode);
1989 /* Close the race of the process dying before we return the dentry */
1990 if (pid_revalidate(dentry, NULL))
1991 error = NULL;
1992out:
1993 return error;
1994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static struct dentry *proc_pident_lookup(struct inode *dir,
1997 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001998 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07001999 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002001 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002002 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002003 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002005 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Eric W. Biederman99f89552006-06-26 00:25:55 -07002007 if (!task)
2008 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002010 /*
2011 * Yes, it does not scale. And it should not. Don't add
2012 * new entries into /proc/<tgid>/ without very good reasons.
2013 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002014 last = &ents[nents - 1];
2015 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (p->len != dentry->d_name.len)
2017 continue;
2018 if (!memcmp(dentry->d_name.name, p->name, p->len))
2019 break;
2020 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002021 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 goto out;
2023
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002024 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002026 put_task_struct(task);
2027out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002028 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030
Eric Dumazetc5141e62007-05-08 00:26:15 -07002031static int proc_pident_fill_cache(struct file *filp, void *dirent,
2032 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002033{
2034 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2035 proc_pident_instantiate, task, p);
2036}
2037
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002038static int proc_pident_readdir(struct file *filp,
2039 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002040 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002041{
2042 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002043 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002044 struct inode *inode = dentry->d_inode;
2045 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002046 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002047 ino_t ino;
2048 int ret;
2049
2050 ret = -ENOENT;
2051 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002052 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002053
2054 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002055 i = filp->f_pos;
2056 switch (i) {
2057 case 0:
2058 ino = inode->i_ino;
2059 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2060 goto out;
2061 i++;
2062 filp->f_pos++;
2063 /* fall through */
2064 case 1:
2065 ino = parent_ino(dentry);
2066 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2067 goto out;
2068 i++;
2069 filp->f_pos++;
2070 /* fall through */
2071 default:
2072 i -= 2;
2073 if (i >= nents) {
2074 ret = 1;
2075 goto out;
2076 }
2077 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002078 last = &ents[nents - 1];
2079 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002080 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002081 goto out;
2082 filp->f_pos++;
2083 p++;
2084 }
2085 }
2086
2087 ret = 1;
2088out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002089 put_task_struct(task);
2090out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002091 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002095static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2096 size_t count, loff_t *ppos)
2097{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002098 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002099 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002100 ssize_t length;
2101 struct task_struct *task = get_proc_task(inode);
2102
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002103 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002104 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002105
2106 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002107 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002108 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002109 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002110 if (length > 0)
2111 length = simple_read_from_buffer(buf, count, ppos, p, length);
2112 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002113 return length;
2114}
2115
2116static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2117 size_t count, loff_t *ppos)
2118{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002119 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002120 char *page;
2121 ssize_t length;
2122 struct task_struct *task = get_proc_task(inode);
2123
2124 length = -ESRCH;
2125 if (!task)
2126 goto out_no_task;
2127 if (count > PAGE_SIZE)
2128 count = PAGE_SIZE;
2129
2130 /* No partial writes. */
2131 length = -EINVAL;
2132 if (*ppos != 0)
2133 goto out;
2134
2135 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002136 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002137 if (!page)
2138 goto out;
2139
2140 length = -EFAULT;
2141 if (copy_from_user(page, buf, count))
2142 goto out_free;
2143
David Howells107db7c2009-05-08 13:55:27 +01002144 /* Guard against adverse ptrace interaction */
2145 length = mutex_lock_interruptible(&task->cred_guard_mutex);
2146 if (length < 0)
2147 goto out_free;
2148
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002149 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002150 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002151 (void*)page, count);
David Howells107db7c2009-05-08 13:55:27 +01002152 mutex_unlock(&task->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002153out_free:
2154 free_page((unsigned long) page);
2155out:
2156 put_task_struct(task);
2157out_no_task:
2158 return length;
2159}
2160
Arjan van de Ven00977a52007-02-12 00:55:34 -08002161static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002162 .read = proc_pid_attr_read,
2163 .write = proc_pid_attr_write,
2164};
2165
Eric Dumazetc5141e62007-05-08 00:26:15 -07002166static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002167 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2168 REG("prev", S_IRUGO, proc_pid_attr_operations),
2169 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2170 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2171 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2172 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002173};
2174
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002175static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 void * dirent, filldir_t filldir)
2177{
2178 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002179 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
Arjan van de Ven00977a52007-02-12 00:55:34 -08002182static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002184 .readdir = proc_attr_dir_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185};
2186
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002187static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 struct dentry *dentry, struct nameidata *nd)
2189{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002190 return proc_pident_lookup(dir, dentry,
2191 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002194static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002195 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002196 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002197 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198};
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200#endif
2201
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002202#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
2203static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2204 size_t count, loff_t *ppos)
2205{
2206 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2207 struct mm_struct *mm;
2208 char buffer[PROC_NUMBUF];
2209 size_t len;
2210 int ret;
2211
2212 if (!task)
2213 return -ESRCH;
2214
2215 ret = 0;
2216 mm = get_task_mm(task);
2217 if (mm) {
2218 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2219 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2220 MMF_DUMP_FILTER_SHIFT));
2221 mmput(mm);
2222 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2223 }
2224
2225 put_task_struct(task);
2226
2227 return ret;
2228}
2229
2230static ssize_t proc_coredump_filter_write(struct file *file,
2231 const char __user *buf,
2232 size_t count,
2233 loff_t *ppos)
2234{
2235 struct task_struct *task;
2236 struct mm_struct *mm;
2237 char buffer[PROC_NUMBUF], *end;
2238 unsigned int val;
2239 int ret;
2240 int i;
2241 unsigned long mask;
2242
2243 ret = -EFAULT;
2244 memset(buffer, 0, sizeof(buffer));
2245 if (count > sizeof(buffer) - 1)
2246 count = sizeof(buffer) - 1;
2247 if (copy_from_user(buffer, buf, count))
2248 goto out_no_task;
2249
2250 ret = -EINVAL;
2251 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2252 if (*end == '\n')
2253 end++;
2254 if (end - buffer == 0)
2255 goto out_no_task;
2256
2257 ret = -ESRCH;
2258 task = get_proc_task(file->f_dentry->d_inode);
2259 if (!task)
2260 goto out_no_task;
2261
2262 ret = end - buffer;
2263 mm = get_task_mm(task);
2264 if (!mm)
2265 goto out_no_mm;
2266
2267 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2268 if (val & mask)
2269 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2270 else
2271 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2272 }
2273
2274 mmput(mm);
2275 out_no_mm:
2276 put_task_struct(task);
2277 out_no_task:
2278 return ret;
2279}
2280
2281static const struct file_operations proc_coredump_filter_operations = {
2282 .read = proc_coredump_filter_read,
2283 .write = proc_coredump_filter_write,
2284};
2285#endif
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287/*
2288 * /proc/self:
2289 */
2290static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2291 int buflen)
2292{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002293 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002294 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002295 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002296 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002297 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002298 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return vfs_readlink(dentry,buffer,buflen,tmp);
2300}
2301
Al Viro008b1502005-08-20 00:17:39 +01002302static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002304 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002305 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002306 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002307 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002308 return ERR_PTR(-ENOENT);
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002309 sprintf(tmp, "%d", task_tgid_nr_ns(current, ns));
Al Viro008b1502005-08-20 00:17:39 +01002310 return ERR_PTR(vfs_follow_link(nd,tmp));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002311}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002313static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 .readlink = proc_self_readlink,
2315 .follow_link = proc_self_follow_link,
2316};
2317
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002318/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002319 * proc base
2320 *
2321 * These are the directory entries in the root directory of /proc
2322 * that properly belong to the /proc filesystem, as they describe
2323 * describe something that is process related.
2324 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002325static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002326 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002327 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002328};
2329
2330/*
2331 * Exceptional case: normally we are not allowed to unhash a busy
2332 * directory. In this case, however, we can do it - no aliasing problems
2333 * due to the way we treat inodes.
2334 */
2335static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2336{
2337 struct inode *inode = dentry->d_inode;
2338 struct task_struct *task = get_proc_task(inode);
2339 if (task) {
2340 put_task_struct(task);
2341 return 1;
2342 }
2343 d_drop(dentry);
2344 return 0;
2345}
2346
Al Virod72f71e2009-02-20 05:58:47 +00002347static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002348{
2349 .d_revalidate = proc_base_revalidate,
2350 .d_delete = pid_delete_dentry,
2351};
2352
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002353static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002354 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002355{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002356 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002357 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002358 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002359 struct dentry *error = ERR_PTR(-EINVAL);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002360
2361 /* Allocate the inode */
2362 error = ERR_PTR(-ENOMEM);
2363 inode = new_inode(dir->i_sb);
2364 if (!inode)
2365 goto out;
2366
2367 /* Initialize the inode */
2368 ei = PROC_I(inode);
2369 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002370
2371 /*
2372 * grab the reference to the task.
2373 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002374 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002375 if (!ei->pid)
2376 goto out_iput;
2377
Eric W. Biederman801199c2006-10-02 02:18:48 -07002378 inode->i_mode = p->mode;
2379 if (S_ISDIR(inode->i_mode))
2380 inode->i_nlink = 2;
2381 if (S_ISLNK(inode->i_mode))
2382 inode->i_size = 64;
2383 if (p->iop)
2384 inode->i_op = p->iop;
2385 if (p->fop)
2386 inode->i_fop = p->fop;
2387 ei->op = p->op;
2388 dentry->d_op = &proc_base_dentry_operations;
2389 d_add(dentry, inode);
2390 error = NULL;
2391out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002392 return error;
2393out_iput:
2394 iput(inode);
2395 goto out;
2396}
2397
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002398static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2399{
2400 struct dentry *error;
2401 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002402 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002403
2404 error = ERR_PTR(-ENOENT);
2405
2406 if (!task)
2407 goto out_no_task;
2408
2409 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002410 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2411 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002412 if (p->len != dentry->d_name.len)
2413 continue;
2414 if (!memcmp(dentry->d_name.name, p->name, p->len))
2415 break;
2416 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002417 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002418 goto out;
2419
2420 error = proc_base_instantiate(dir, dentry, task, p);
2421
2422out:
2423 put_task_struct(task);
2424out_no_task:
2425 return error;
2426}
2427
Eric Dumazetc5141e62007-05-08 00:26:15 -07002428static int proc_base_fill_cache(struct file *filp, void *dirent,
2429 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002430{
2431 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2432 proc_base_instantiate, task, p);
2433}
2434
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002435#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002436static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002437{
Andrea Righi940389b2008-07-28 00:48:12 +02002438 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002439 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002440
Andrea Righi59954772008-07-27 17:29:15 +02002441 if (whole && lock_task_sighand(task, &flags)) {
2442 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002443
Andrea Righi59954772008-07-27 17:29:15 +02002444 task_io_accounting_add(&acct, &task->signal->ioac);
2445 while_each_thread(task, t)
2446 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002447
Andrea Righi59954772008-07-27 17:29:15 +02002448 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002449 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002450 return sprintf(buffer,
2451 "rchar: %llu\n"
2452 "wchar: %llu\n"
2453 "syscr: %llu\n"
2454 "syscw: %llu\n"
2455 "read_bytes: %llu\n"
2456 "write_bytes: %llu\n"
2457 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002458 (unsigned long long)acct.rchar,
2459 (unsigned long long)acct.wchar,
2460 (unsigned long long)acct.syscr,
2461 (unsigned long long)acct.syscw,
2462 (unsigned long long)acct.read_bytes,
2463 (unsigned long long)acct.write_bytes,
2464 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002465}
Andrea Righi297c5d92008-07-25 01:48:49 -07002466
2467static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2468{
2469 return do_io_accounting(task, buffer, 0);
2470}
2471
2472static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2473{
2474 return do_io_accounting(task, buffer, 1);
2475}
2476#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002477
Kees Cook47830722008-10-06 03:11:58 +04002478static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2479 struct pid *pid, struct task_struct *task)
2480{
2481 seq_printf(m, "%08x\n", task->personality);
2482 return 0;
2483}
2484
Eric W. Biederman801199c2006-10-02 02:18:48 -07002485/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002486 * Thread groups
2487 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002488static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002489static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002490
Eric Dumazetc5141e62007-05-08 00:26:15 -07002491static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002492 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2493 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2494 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002495#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002496 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002497#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002498 REG("environ", S_IRUSR, proc_environ_operations),
2499 INF("auxv", S_IRUSR, proc_pid_auxv),
2500 ONE("status", S_IRUGO, proc_pid_status),
2501 ONE("personality", S_IRUSR, proc_pid_personality),
2502 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002503#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002504 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002505#endif
Roland McGrathebcb6732008-07-25 19:46:00 -07002506#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002507 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002508#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002509 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2510 ONE("stat", S_IRUGO, proc_tgid_stat),
2511 ONE("statm", S_IRUGO, proc_pid_statm),
2512 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002513#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002514 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002515#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002516 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2517 LNK("cwd", proc_cwd_link),
2518 LNK("root", proc_root_link),
2519 LNK("exe", proc_exe_link),
2520 REG("mounts", S_IRUGO, proc_mounts_operations),
2521 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2522 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002523#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002524 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2525 REG("smaps", S_IRUGO, proc_smaps_operations),
2526 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002527#endif
2528#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002529 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002530#endif
2531#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002532 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002533#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002534#ifdef CONFIG_STACKTRACE
2535 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002536#endif
2537#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002538 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002539#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002540#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002541 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002542#endif
Paul Menage8793d852007-10-18 23:39:39 -07002543#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002544 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002545#endif
Paul Menagea4243162007-10-18 23:39:35 -07002546#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002547 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002548#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002549 INF("oom_score", S_IRUGO, proc_oom_score),
2550 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002551#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002552 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2553 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002554#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002555#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002556 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002557#endif
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002558#if defined(USE_ELF_CORE_DUMP) && defined(CONFIG_ELF_CORE)
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002559 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002560#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002561#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002562 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002563#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002564};
2565
2566static int proc_tgid_base_readdir(struct file * filp,
2567 void * dirent, filldir_t filldir)
2568{
2569 return proc_pident_readdir(filp,dirent,filldir,
2570 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2571}
2572
Arjan van de Ven00977a52007-02-12 00:55:34 -08002573static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002574 .read = generic_read_dir,
2575 .readdir = proc_tgid_base_readdir,
2576};
2577
2578static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002579 return proc_pident_lookup(dir, dentry,
2580 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002581}
2582
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002583static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002584 .lookup = proc_tgid_base_lookup,
2585 .getattr = pid_getattr,
2586 .setattr = proc_setattr,
2587};
2588
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002589static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002591 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002592 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002593 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Eric W. Biederman48e64842006-06-26 00:25:48 -07002595 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002596 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2597 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002598 if (dentry) {
Andrea Arcangeli77667552008-02-04 22:29:21 -08002599 if (!(current->flags & PF_EXITING))
2600 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002601 d_drop(dentry);
2602 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002605 if (tgid == 0)
Eric W. Biederman48e64842006-06-26 00:25:48 -07002606 goto out;
2607
2608 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002609 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2610 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002611 if (!leader)
2612 goto out;
2613
2614 name.name = "task";
2615 name.len = strlen(name.name);
2616 dir = d_hash_and_lookup(leader, &name);
2617 if (!dir)
2618 goto out_put_leader;
2619
2620 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002621 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002622 dentry = d_hash_and_lookup(dir, &name);
2623 if (dentry) {
2624 shrink_dcache_parent(dentry);
2625 d_drop(dentry);
2626 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002628
2629 dput(dir);
2630out_put_leader:
2631 dput(leader);
2632out:
2633 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
Randy Dunlap0895e912007-10-21 21:00:10 -07002636/**
2637 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2638 * @task: task that should be flushed.
2639 *
2640 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002641 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002642 * in. This call is supposed to do all of this job.
2643 *
2644 * Looks in the dcache for
2645 * /proc/@pid
2646 * /proc/@tgid/task/@pid
2647 * if either directory is present flushes it and all of it'ts children
2648 * from the dcache.
2649 *
2650 * It is safe and reasonable to cache /proc entries for a task until
2651 * that task exits. After that they just clog up the dcache with
2652 * useless entries, possibly causing useful dcache entries to be
2653 * flushed instead. This routine is proved to flush those useless
2654 * dcache entries at process exit time.
2655 *
2656 * NOTE: This routine is just an optimization so it does not guarantee
2657 * that no dcache entries will exist at process exit time it
2658 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002659 */
2660
2661void proc_flush_task(struct task_struct *task)
2662{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002663 int i;
2664 struct pid *pid, *tgid = NULL;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002665 struct upid *upid;
2666
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002667 pid = task_pid(task);
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002668 if (thread_group_leader(task))
2669 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002670
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002671 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002672 upid = &pid->numbers[i];
2673 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002674 tgid ? tgid->numbers[i].nr : 0);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002675 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002676
2677 upid = &pid->numbers[pid->level];
2678 if (upid->nr == 1)
2679 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002680}
2681
Adrian Bunk9711ef92006-12-06 20:38:31 -08002682static struct dentry *proc_pid_instantiate(struct inode *dir,
2683 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002684 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002685{
2686 struct dentry *error = ERR_PTR(-ENOENT);
2687 struct inode *inode;
2688
Eric W. Biederman61a28782006-10-02 02:18:49 -07002689 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002690 if (!inode)
2691 goto out;
2692
2693 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2694 inode->i_op = &proc_tgid_base_inode_operations;
2695 inode->i_fop = &proc_tgid_base_operations;
2696 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002697
2698 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2699 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002700
2701 dentry->d_op = &pid_dentry_operations;
2702
2703 d_add(dentry, inode);
2704 /* Close the race of the process dying before we return the dentry */
2705 if (pid_revalidate(dentry, NULL))
2706 error = NULL;
2707out:
2708 return error;
2709}
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2712{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002713 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002716 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Eric W. Biederman801199c2006-10-02 02:18:48 -07002718 result = proc_base_lookup(dir, dentry);
2719 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2720 goto out;
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 tgid = name_to_int(dentry);
2723 if (tgid == ~0U)
2724 goto out;
2725
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002726 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07002727 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002728 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (task)
2730 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07002731 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 if (!task)
2733 goto out;
2734
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002735 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002736 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002738 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002742 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002743 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002745struct tgid_iter {
2746 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002747 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002748};
2749static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
2750{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002751 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002753 if (iter.task)
2754 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002755 rcu_read_lock();
2756retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002757 iter.task = NULL;
2758 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002759 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002760 iter.tgid = pid_nr_ns(pid, ns);
2761 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002762 /* What we to know is if the pid we have find is the
2763 * pid of a thread_group_leader. Testing for task
2764 * being a thread_group_leader is the obvious thing
2765 * todo but there is a window when it fails, due to
2766 * the pid transfer logic in de_thread.
2767 *
2768 * So we perform the straight forward test of seeing
2769 * if the pid we have found is the pid of a thread
2770 * group leader, and don't worry if the task we have
2771 * found doesn't happen to be a thread group leader.
2772 * As we don't care in the case of readdir.
2773 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002774 if (!iter.task || !has_group_leader_pid(iter.task)) {
2775 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002776 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002777 }
2778 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07002780 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002781 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782}
2783
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002784#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Eric W. Biederman61a28782006-10-02 02:18:49 -07002786static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002787 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002788{
2789 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002790 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002791 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002792 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07002793}
2794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795/* for the /proc/ directory itself, after non-process stuff has been done */
2796int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002799 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002800 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002801 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Eric W. Biederman61a28782006-10-02 02:18:49 -07002803 if (!reaper)
2804 goto out_no_task;
2805
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002806 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07002807 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07002808 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002809 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 }
2811
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002812 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08002813 iter.task = NULL;
2814 iter.tgid = filp->f_pos - TGID_OFFSET;
2815 for (iter = next_tgid(ns, iter);
2816 iter.task;
2817 iter.tgid += 1, iter = next_tgid(ns, iter)) {
2818 filp->f_pos = iter.tgid + TGID_OFFSET;
2819 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
2820 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002821 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07002824 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
2825out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002826 put_task_struct(reaper);
2827out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 return 0;
2829}
2830
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002831/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002832 * Tasks
2833 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002834static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002835 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2836 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fd_operations),
2837 REG("environ", S_IRUSR, proc_environ_operations),
2838 INF("auxv", S_IRUSR, proc_pid_auxv),
2839 ONE("status", S_IRUGO, proc_pid_status),
2840 ONE("personality", S_IRUSR, proc_pid_personality),
2841 INF("limits", S_IRUSR, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002842#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002843 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002844#endif
Roland McGrathebcb6732008-07-25 19:46:00 -07002845#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002846 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002847#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002848 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2849 ONE("stat", S_IRUGO, proc_tid_stat),
2850 ONE("statm", S_IRUGO, proc_pid_statm),
2851 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002852#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002853 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002854#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002855 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2856 LNK("cwd", proc_cwd_link),
2857 LNK("root", proc_root_link),
2858 LNK("exe", proc_exe_link),
2859 REG("mounts", S_IRUGO, proc_mounts_operations),
2860 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002861#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002862 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2863 REG("smaps", S_IRUGO, proc_smaps_operations),
2864 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002865#endif
2866#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002867 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002868#endif
2869#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002870 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002871#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002872#ifdef CONFIG_STACKTRACE
2873 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002874#endif
2875#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002876 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002877#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002878#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002879 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002880#endif
Paul Menage8793d852007-10-18 23:39:39 -07002881#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002882 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002883#endif
Paul Menagea4243162007-10-18 23:39:35 -07002884#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002885 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002886#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002887 INF("oom_score", S_IRUGO, proc_oom_score),
2888 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002889#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002890 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2891 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002892#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002893#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002894 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002895#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07002896#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002897 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07002898#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002899};
2900
2901static int proc_tid_base_readdir(struct file * filp,
2902 void * dirent, filldir_t filldir)
2903{
2904 return proc_pident_readdir(filp,dirent,filldir,
2905 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
2906}
2907
2908static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002909 return proc_pident_lookup(dir, dentry,
2910 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002911}
2912
Arjan van de Ven00977a52007-02-12 00:55:34 -08002913static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002914 .read = generic_read_dir,
2915 .readdir = proc_tid_base_readdir,
2916};
2917
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002918static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002919 .lookup = proc_tid_base_lookup,
2920 .getattr = pid_getattr,
2921 .setattr = proc_setattr,
2922};
2923
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002924static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002925 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002926{
2927 struct dentry *error = ERR_PTR(-ENOENT);
2928 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07002929 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002930
2931 if (!inode)
2932 goto out;
2933 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2934 inode->i_op = &proc_tid_base_inode_operations;
2935 inode->i_fop = &proc_tid_base_operations;
2936 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002937
2938 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
2939 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002940
2941 dentry->d_op = &pid_dentry_operations;
2942
2943 d_add(dentry, inode);
2944 /* Close the race of the process dying before we return the dentry */
2945 if (pid_revalidate(dentry, NULL))
2946 error = NULL;
2947out:
2948 return error;
2949}
2950
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002951static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2952{
2953 struct dentry *result = ERR_PTR(-ENOENT);
2954 struct task_struct *task;
2955 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002956 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002957 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002958
2959 if (!leader)
2960 goto out_no_task;
2961
2962 tid = name_to_int(dentry);
2963 if (tid == ~0U)
2964 goto out;
2965
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002966 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002967 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002968 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002969 if (task)
2970 get_task_struct(task);
2971 rcu_read_unlock();
2972 if (!task)
2973 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07002974 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002975 goto out_drop_task;
2976
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002977 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002978out_drop_task:
2979 put_task_struct(task);
2980out:
2981 put_task_struct(leader);
2982out_no_task:
2983 return result;
2984}
2985
2986/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07002987 * Find the first tid of a thread group to return to user space.
2988 *
2989 * Usually this is just the thread group leader, but if the users
2990 * buffer was too small or there was a seek into the middle of the
2991 * directory we have more work todo.
2992 *
2993 * In the case of a short read we start with find_task_by_pid.
2994 *
2995 * In the case of a seek we start with the leader and walk nr
2996 * threads past it.
2997 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07002998static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002999 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003000{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003001 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003002
Eric W. Biedermancc288732006-06-26 00:26:01 -07003003 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003004 /* Attempt to start with the pid of a thread */
3005 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003006 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003007 if (pos && (pos->group_leader == leader))
3008 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003009 }
3010
3011 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003012 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003013 if (nr && nr >= get_nr_threads(leader))
3014 goto out;
3015
3016 /* If we haven't found our starting place yet start
3017 * with the leader and walk nr threads forward.
3018 */
3019 for (pos = leader; nr > 0; --nr) {
3020 pos = next_thread(pos);
3021 if (pos == leader) {
3022 pos = NULL;
3023 goto out;
3024 }
3025 }
3026found:
3027 get_task_struct(pos);
3028out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003029 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003030 return pos;
3031}
3032
3033/*
3034 * Find the next thread in the thread list.
3035 * Return NULL if there is an error or no next thread.
3036 *
3037 * The reference to the input task_struct is released.
3038 */
3039static struct task_struct *next_tid(struct task_struct *start)
3040{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003041 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003042 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003043 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003044 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003045 if (thread_group_leader(pos))
3046 pos = NULL;
3047 else
3048 get_task_struct(pos);
3049 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003050 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003051 put_task_struct(start);
3052 return pos;
3053}
3054
Eric W. Biederman61a28782006-10-02 02:18:49 -07003055static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3056 struct task_struct *task, int tid)
3057{
3058 char name[PROC_NUMBUF];
3059 int len = snprintf(name, sizeof(name), "%d", tid);
3060 return proc_fill_cache(filp, dirent, filldir, name, len,
3061 proc_task_instantiate, task, NULL);
3062}
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064/* for the /proc/TGID/task/ directories */
3065static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3066{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003067 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003069 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003070 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 int retval = -ENOENT;
3072 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003073 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003074 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003076 task = get_proc_task(inode);
3077 if (!task)
3078 goto out_no_task;
3079 rcu_read_lock();
3080 if (pid_alive(task)) {
3081 leader = task->group_leader;
3082 get_task_struct(leader);
3083 }
3084 rcu_read_unlock();
3085 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003086 if (!leader)
3087 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 retval = 0;
3089
Linus Torvaldsee568b22009-03-17 10:02:35 -07003090 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 case 0:
3092 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003093 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003095 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 /* fall through */
3097 case 1:
3098 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003099 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003101 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 /* fall through */
3103 }
3104
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003105 /* f_version caches the tgid value that the last readdir call couldn't
3106 * return. lseek aka telldir automagically resets f_version to 0.
3107 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003108 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003109 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003110 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003111 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003112 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003113 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003114 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003115 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003116 /* returning this tgid failed, save it as the first
3117 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003118 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003119 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 }
3123out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003124 put_task_struct(leader);
3125out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 return retval;
3127}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003128
3129static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3130{
3131 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003132 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003133 generic_fillattr(inode, stat);
3134
Eric W. Biederman99f89552006-06-26 00:25:55 -07003135 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003136 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003137 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003138 }
3139
3140 return 0;
3141}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003142
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003143static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003144 .lookup = proc_task_lookup,
3145 .getattr = proc_task_getattr,
3146 .setattr = proc_setattr,
3147};
3148
Arjan van de Ven00977a52007-02-12 00:55:34 -08003149static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003150 .read = generic_read_dir,
3151 .readdir = proc_task_readdir,
3152};