blob: b20962c71a52aba4eab01838611a6fef2340c082 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/proc/base.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * proc base directory handling functions
7 *
8 * 1999, Al Viro. Rewritten. Now it covers the whole per-process part.
9 * Instead of using magical inumbers to determine the kind of object
10 * we allocate and fill in-core inodes upon lookup. They don't even
11 * go into icache. We cache the reference to task_struct upon lookup too.
12 * Eventually it should become a filesystem in its own. We don't use the
13 * rest of procfs anymore.
Mauricio Line070ad42005-09-03 15:55:10 -070014 *
15 *
16 * Changelog:
17 * 17-Jan-2005
18 * Allan Bezerra
19 * Bruna Moreira <bruna.moreira@indt.org.br>
20 * Edjard Mota <edjard.mota@indt.org.br>
21 * Ilias Biris <ilias.biris@indt.org.br>
22 * Mauricio Lin <mauricio.lin@indt.org.br>
23 *
24 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
25 *
26 * A new process specific entry (smaps) included in /proc. It shows the
27 * size of rss for each memory area. The maps entry lacks information
28 * about physical memory size (rss) for each mapped file, i.e.,
29 * rss information for executables and library files.
30 * This additional information is useful for any tools that need to know
31 * about physical memory consumption for a process specific library.
32 *
33 * Changelog:
34 * 21-Feb-2005
35 * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT
36 * Pud inclusion in the page table walking.
37 *
38 * ChangeLog:
39 * 10-Mar-2005
40 * 10LE Instituto Nokia de Tecnologia - INdT:
41 * A better way to walks through the page table as suggested by Hugh Dickins.
42 *
43 * Simo Piiroinen <simo.piiroinen@nokia.com>:
44 * Smaps information related to shared, private, clean and dirty pages.
45 *
46 * Paul Mundt <paul.mundt@nokia.com>:
47 * Overall revision about smaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50#include <asm/uaccess.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/errno.h>
53#include <linux/time.h>
54#include <linux/proc_fs.h>
55#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020056#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080058#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040060#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/string.h>
62#include <linux/seq_file.h>
63#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070066#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030069#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070070#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070071#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/mount.h>
73#include <linux/security.h>
74#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070075#include <linux/tracehook.h>
Paul Menagea4243162007-10-18 23:39:35 -070076#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/cpuset.h>
78#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050079#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070080#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070081#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070082#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070083#include <linux/pid_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040084#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090085#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "internal.h"
87
Eric W. Biederman0f2fe202006-06-26 00:25:46 -070088/* NOTE:
89 * Implementing inode permission operations in /proc is almost
90 * certainly an error. Permission checks need to happen during
91 * each system call not at open time. The reason is that most of
92 * what we wish to check for permissions in /proc varies at runtime.
93 *
94 * The classic example of a problem is opening file descriptors
95 * in /proc for a task before it execs a suid executable.
96 */
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098struct pid_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *name;
Eric Dumazetc5141e62007-05-08 00:26:15 -0700100 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800102 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800103 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700104 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Eric W. Biederman61a28782006-10-02 02:18:49 -0700107#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700108 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700109 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700110 .mode = MODE, \
111 .iop = IOP, \
112 .fop = FOP, \
113 .op = OP, \
114}
115
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300116#define DIR(NAME, MODE, iops, fops) \
117 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
118#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700119 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700120 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300121 { .proc_get_link = get_link } )
122#define REG(NAME, MODE, fops) \
123 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
124#define INF(NAME, MODE, read) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700125 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 NULL, &proc_info_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300127 { .proc_read = read } )
128#define ONE(NAME, MODE, show) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800129 NOD(NAME, (S_IFREG|(MODE)), \
130 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300131 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Vegard Nossumaed54172008-06-05 22:46:53 -0700133/*
134 * Count the number of hardlinks for the pid_entry table, excluding the .
135 * and .. links.
136 */
137static unsigned int pid_entry_count_dirs(const struct pid_entry *entries,
138 unsigned int n)
139{
140 unsigned int i;
141 unsigned int count;
142
143 count = 0;
144 for (i = 0; i < n; ++i) {
145 if (S_ISDIR(entries[i].mode))
146 ++count;
147 }
148
149 return count;
150}
151
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200152static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000154 int result = -ENOENT;
155
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700156 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200157 if (task->fs) {
158 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000159 result = 0;
160 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700161 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000162 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700163}
164
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800165static int proc_cwd_link(struct inode *inode, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700166{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700167 struct task_struct *task = get_proc_task(inode);
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700168 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700169
170 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200171 task_lock(task);
172 if (task->fs) {
173 get_fs_pwd(task->fs, path);
174 result = 0;
175 }
176 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700177 put_task_struct(task);
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return result;
180}
181
Jan Blunck3dcd25f2008-02-14 19:38:35 -0800182static int proc_root_link(struct inode *inode, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700184 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700186
187 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200188 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700189 put_task_struct(task);
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return result;
192}
193
Roland McGrath638fa202008-04-29 01:01:38 -0700194/*
195 * Return zero if current may access user memory in @task, -error if not.
196 */
197static int check_mem_permission(struct task_struct *task)
198{
199 /*
200 * A task can always look at itself, in case it chooses
201 * to use system calls instead of load instructions.
202 */
203 if (task == current)
204 return 0;
205
206 /*
207 * If current is actively ptrace'ing, and would also be
208 * permitted to freshly attach with ptrace now, permit it.
209 */
Roland McGrath0d094ef2008-07-25 19:45:49 -0700210 if (task_is_stopped_or_traced(task)) {
211 int match;
212 rcu_read_lock();
213 match = (tracehook_tracer_task(task) == current);
214 rcu_read_unlock();
215 if (match && ptrace_may_access(task, PTRACE_MODE_ATTACH))
216 return 0;
217 }
Roland McGrath638fa202008-04-29 01:01:38 -0700218
219 /*
220 * Noone else is allowed.
221 */
222 return -EPERM;
223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Al Viro831830b2008-01-02 14:09:57 +0000225struct mm_struct *mm_for_maps(struct task_struct *task)
226{
Oleg Nesterov704b8362009-07-10 03:27:40 +0200227 struct mm_struct *mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200228
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700229 if (mutex_lock_killable(&task->signal->cred_guard_mutex))
Oleg Nesterov704b8362009-07-10 03:27:40 +0200230 return NULL;
231
232 mm = get_task_mm(task);
233 if (mm && mm != current->mm &&
234 !ptrace_may_access(task, PTRACE_MODE_READ)) {
235 mmput(mm);
236 mm = NULL;
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200237 }
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700238 mutex_unlock(&task->signal->cred_guard_mutex);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200239
Al Viro831830b2008-01-02 14:09:57 +0000240 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static int proc_pid_cmdline(struct task_struct *task, char * buffer)
244{
245 int res = 0;
246 unsigned int len;
247 struct mm_struct *mm = get_task_mm(task);
248 if (!mm)
249 goto out;
250 if (!mm->arg_end)
251 goto out_mm; /* Shh! No looking before we're done */
252
253 len = mm->arg_end - mm->arg_start;
254
255 if (len > PAGE_SIZE)
256 len = PAGE_SIZE;
257
258 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
259
260 // If the nul at the end of args has been overwritten, then
261 // assume application is using setproctitle(3).
262 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
263 len = strnlen(buffer, res);
264 if (len < res) {
265 res = len;
266 } else {
267 len = mm->env_end - mm->env_start;
268 if (len > PAGE_SIZE - res)
269 len = PAGE_SIZE - res;
270 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
271 res = strnlen(buffer, res);
272 }
273 }
274out_mm:
275 mmput(mm);
276out:
277 return res;
278}
279
280static int proc_pid_auxv(struct task_struct *task, char *buffer)
281{
282 int res = 0;
283 struct mm_struct *mm = get_task_mm(task);
284 if (mm) {
285 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300286 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300288 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 res = nwords * sizeof(mm->saved_auxv[0]);
290 if (res > PAGE_SIZE)
291 res = PAGE_SIZE;
292 memcpy(buffer, mm->saved_auxv, res);
293 mmput(mm);
294 }
295 return res;
296}
297
298
299#ifdef CONFIG_KALLSYMS
300/*
301 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
302 * Returns the resolved symbol. If that fails, simply return the address.
303 */
304static int proc_pid_wchan(struct task_struct *task, char *buffer)
305{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700306 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700307 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 wchan = get_wchan(task);
310
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700311 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600312 if (!ptrace_may_access(task, PTRACE_MODE_READ))
313 return 0;
314 else
315 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700316 else
317 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319#endif /* CONFIG_KALLSYMS */
320
Ken Chen2ec220e2008-11-10 11:26:08 +0300321#ifdef CONFIG_STACKTRACE
322
323#define MAX_STACK_TRACE_DEPTH 64
324
325static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
326 struct pid *pid, struct task_struct *task)
327{
328 struct stack_trace trace;
329 unsigned long *entries;
330 int i;
331
332 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
333 if (!entries)
334 return -ENOMEM;
335
336 trace.nr_entries = 0;
337 trace.max_entries = MAX_STACK_TRACE_DEPTH;
338 trace.entries = entries;
339 trace.skip = 0;
340 save_stack_trace_tsk(task, &trace);
341
342 for (i = 0; i < trace.nr_entries; i++) {
343 seq_printf(m, "[<%p>] %pS\n",
344 (void *)entries[i], (void *)entries[i]);
345 }
346 kfree(entries);
347
348 return 0;
349}
350#endif
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#ifdef CONFIG_SCHEDSTATS
353/*
354 * Provides /proc/PID/schedstat
355 */
356static int proc_pid_schedstat(struct task_struct *task, char *buffer)
357{
Balbir Singh172ba842007-07-09 18:52:00 +0200358 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100359 (unsigned long long)task->se.sum_exec_runtime,
360 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200361 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363#endif
364
Arjan van de Ven97455122008-01-25 21:08:34 +0100365#ifdef CONFIG_LATENCYTOP
366static int lstats_show_proc(struct seq_file *m, void *v)
367{
368 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800369 struct inode *inode = m->private;
370 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100371
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800372 if (!task)
373 return -ESRCH;
374 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100375 for (i = 0; i < 32; i++) {
376 if (task->latency_record[i].backtrace[0]) {
377 int q;
378 seq_printf(m, "%i %li %li ",
379 task->latency_record[i].count,
380 task->latency_record[i].time,
381 task->latency_record[i].max);
382 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Hugh Dickins9c246242008-12-09 13:14:27 -0800383 char sym[KSYM_SYMBOL_LEN];
Arjan van de Ven97455122008-01-25 21:08:34 +0100384 char *c;
385 if (!task->latency_record[i].backtrace[q])
386 break;
387 if (task->latency_record[i].backtrace[q] == ULONG_MAX)
388 break;
389 sprint_symbol(sym, task->latency_record[i].backtrace[q]);
390 c = strchr(sym, '+');
391 if (c)
392 *c = 0;
393 seq_printf(m, "%s ", sym);
394 }
395 seq_printf(m, "\n");
396 }
397
398 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800399 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100400 return 0;
401}
402
403static int lstats_open(struct inode *inode, struct file *file)
404{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800405 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800406}
407
Arjan van de Ven97455122008-01-25 21:08:34 +0100408static ssize_t lstats_write(struct file *file, const char __user *buf,
409 size_t count, loff_t *offs)
410{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800411 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100412
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800413 if (!task)
414 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100415 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800416 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100417
418 return count;
419}
420
421static const struct file_operations proc_lstats_operations = {
422 .open = lstats_open,
423 .read = seq_read,
424 .write = lstats_write,
425 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800426 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100427};
428
429#endif
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int proc_oom_score(struct task_struct *task, char *buffer)
432{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200433 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700435 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200436 if (pid_alive(task))
David Rientjesa63d83f2010-08-09 17:19:46 -0700437 points = oom_badness(task, NULL, NULL,
438 totalram_pages + total_swap_pages);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700439 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return sprintf(buffer, "%lu\n", points);
441}
442
Neil Hormand85f50d2007-10-18 23:40:37 -0700443struct limit_names {
444 char *name;
445 char *unit;
446};
447
448static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700449 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700450 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
451 [RLIMIT_DATA] = {"Max data size", "bytes"},
452 [RLIMIT_STACK] = {"Max stack size", "bytes"},
453 [RLIMIT_CORE] = {"Max core file size", "bytes"},
454 [RLIMIT_RSS] = {"Max resident set", "bytes"},
455 [RLIMIT_NPROC] = {"Max processes", "processes"},
456 [RLIMIT_NOFILE] = {"Max open files", "files"},
457 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
458 [RLIMIT_AS] = {"Max address space", "bytes"},
459 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
460 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
461 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
462 [RLIMIT_NICE] = {"Max nice priority", NULL},
463 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800464 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700465};
466
467/* Display limits for a process */
468static int proc_pid_limits(struct task_struct *task, char *buffer)
469{
470 unsigned int i;
471 int count = 0;
472 unsigned long flags;
473 char *bufptr = buffer;
474
475 struct rlimit rlim[RLIM_NLIMITS];
476
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400477 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700478 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700479 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
480 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700481
482 /*
483 * print the file header
484 */
485 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
486 "Limit", "Soft Limit", "Hard Limit", "Units");
487
488 for (i = 0; i < RLIM_NLIMITS; i++) {
489 if (rlim[i].rlim_cur == RLIM_INFINITY)
490 count += sprintf(&bufptr[count], "%-25s %-20s ",
491 lnames[i].name, "unlimited");
492 else
493 count += sprintf(&bufptr[count], "%-25s %-20lu ",
494 lnames[i].name, rlim[i].rlim_cur);
495
496 if (rlim[i].rlim_max == RLIM_INFINITY)
497 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
498 else
499 count += sprintf(&bufptr[count], "%-20lu ",
500 rlim[i].rlim_max);
501
502 if (lnames[i].unit)
503 count += sprintf(&bufptr[count], "%-10s\n",
504 lnames[i].unit);
505 else
506 count += sprintf(&bufptr[count], "\n");
507 }
508
509 return count;
510}
511
Roland McGrathebcb6732008-07-25 19:46:00 -0700512#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
513static int proc_pid_syscall(struct task_struct *task, char *buffer)
514{
515 long nr;
516 unsigned long args[6], sp, pc;
517
518 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
519 return sprintf(buffer, "running\n");
520
521 if (nr < 0)
522 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
523
524 return sprintf(buffer,
525 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
526 nr,
527 args[0], args[1], args[2], args[3], args[4], args[5],
528 sp, pc);
529}
530#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/************************************************************************/
533/* Here the fs part begins */
534/************************************************************************/
535
536/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700537static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700539 struct task_struct *task;
540 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700541 /* Allow access to a task's file descriptors if it is us or we
542 * may use ptrace attach to the process and find out that
543 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700544 */
545 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700546 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400547 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700548 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700549 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700550 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700553static int proc_setattr(struct dentry *dentry, struct iattr *attr)
554{
555 int error;
556 struct inode *inode = dentry->d_inode;
557
558 if (attr->ia_valid & ATTR_MODE)
559 return -EPERM;
560
561 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200562 if (error)
563 return error;
564
565 if ((attr->ia_valid & ATTR_SIZE) &&
566 attr->ia_size != i_size_read(inode)) {
567 error = vmtruncate(inode, attr->ia_size);
568 if (error)
569 return error;
570 }
571
572 setattr_copy(inode, attr);
573 mark_inode_dirty(inode);
574 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700575}
576
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800577static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700578 .setattr = proc_setattr,
579};
580
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100581static int mounts_open_common(struct inode *inode, struct file *file,
582 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700584 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700585 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800586 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100587 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500588 struct proc_mounts *p;
589 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Eric W. Biederman99f89552006-06-26 00:25:55 -0700591 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700592 rcu_read_lock();
593 nsp = task_nsproxy(task);
594 if (nsp) {
595 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800596 if (ns)
597 get_mnt_ns(ns);
598 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700599 rcu_read_unlock();
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200600 if (ns && get_task_root(task, &root) == 0)
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000601 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700602 put_task_struct(task);
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100605 if (!ns)
606 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000607 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100608 goto err_put_ns;
609
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100610 ret = -ENOMEM;
611 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
612 if (!p)
613 goto err_put_path;
614
615 file->private_data = &p->m;
616 ret = seq_open(file, op);
617 if (ret)
618 goto err_free;
619
620 p->m.private = p;
621 p->ns = ns;
622 p->root = root;
623 p->event = ns->event;
624
625 return 0;
626
627 err_free:
628 kfree(p);
629 err_put_path:
630 path_put(&root);
631 err_put_ns:
632 put_mnt_ns(ns);
633 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return ret;
635}
636
637static int mounts_release(struct inode *inode, struct file *file)
638{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100639 struct proc_mounts *p = file->private_data;
640 path_put(&p->root);
641 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return seq_release(inode, file);
643}
644
Al Viro5addc5d2005-11-07 17:15:49 -0500645static unsigned mounts_poll(struct file *file, poll_table *wait)
646{
647 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900648 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500649
Al Viro9f5596a2010-02-05 00:40:25 -0500650 poll_wait(file, &p->ns->poll, wait);
651 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900652 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500653
654 return res;
655}
656
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100657static int mounts_open(struct inode *inode, struct file *file)
658{
659 return mounts_open_common(inode, file, &mounts_op);
660}
661
Arjan van de Ven00977a52007-02-12 00:55:34 -0800662static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 .open = mounts_open,
664 .read = seq_read,
665 .llseek = seq_lseek,
666 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500667 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668};
669
Ram Pai2d4d4862008-03-27 13:06:25 +0100670static int mountinfo_open(struct inode *inode, struct file *file)
671{
672 return mounts_open_common(inode, file, &mountinfo_op);
673}
674
675static const struct file_operations proc_mountinfo_operations = {
676 .open = mountinfo_open,
677 .read = seq_read,
678 .llseek = seq_lseek,
679 .release = mounts_release,
680 .poll = mounts_poll,
681};
682
Chuck Leverb4629fe2006-03-20 13:44:12 -0500683static int mountstats_open(struct inode *inode, struct file *file)
684{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100685 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500686}
687
Arjan van de Ven00977a52007-02-12 00:55:34 -0800688static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500689 .open = mountstats_open,
690 .read = seq_read,
691 .llseek = seq_lseek,
692 .release = mounts_release,
693};
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
696
697static ssize_t proc_info_read(struct file * file, char __user * buf,
698 size_t count, loff_t *ppos)
699{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800700 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 unsigned long page;
702 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700703 struct task_struct *task = get_proc_task(inode);
704
705 length = -ESRCH;
706 if (!task)
707 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 if (count > PROC_BLOCK_SIZE)
710 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700711
712 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700713 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 length = PROC_I(inode)->op.proc_read(task, (char*)page);
717
718 if (length >= 0)
719 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
720 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700721out:
722 put_task_struct(task);
723out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return length;
725}
726
Arjan van de Ven00977a52007-02-12 00:55:34 -0800727static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100729 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730};
731
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800732static int proc_single_show(struct seq_file *m, void *v)
733{
734 struct inode *inode = m->private;
735 struct pid_namespace *ns;
736 struct pid *pid;
737 struct task_struct *task;
738 int ret;
739
740 ns = inode->i_sb->s_fs_info;
741 pid = proc_pid(inode);
742 task = get_pid_task(pid, PIDTYPE_PID);
743 if (!task)
744 return -ESRCH;
745
746 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
747
748 put_task_struct(task);
749 return ret;
750}
751
752static int proc_single_open(struct inode *inode, struct file *filp)
753{
754 int ret;
755 ret = single_open(filp, proc_single_show, NULL);
756 if (!ret) {
757 struct seq_file *m = filp->private_data;
758
759 m->private = inode;
760 }
761 return ret;
762}
763
764static const struct file_operations proc_single_file_operations = {
765 .open = proc_single_open,
766 .read = seq_read,
767 .llseek = seq_lseek,
768 .release = single_release,
769};
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771static int mem_open(struct inode* inode, struct file* file)
772{
773 file->private_data = (void*)((long)current->self_exec_id);
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700774 /* OK to pass negative loff_t, we can catch out-of-range */
775 file->f_mode |= FMODE_UNSIGNED_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
777}
778
779static ssize_t mem_read(struct file * file, char __user * buf,
780 size_t count, loff_t *ppos)
781{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800782 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 char *page;
784 unsigned long src = *ppos;
785 int ret = -ESRCH;
786 struct mm_struct *mm;
787
Eric W. Biederman99f89552006-06-26 00:25:55 -0700788 if (!task)
789 goto out_no_task;
790
Roland McGrath638fa202008-04-29 01:01:38 -0700791 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto out;
793
794 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700795 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!page)
797 goto out;
798
799 ret = 0;
800
801 mm = get_task_mm(task);
802 if (!mm)
803 goto out_free;
804
805 ret = -EIO;
806
807 if (file->private_data != (void*)((long)current->self_exec_id))
808 goto out_put;
809
810 ret = 0;
811
812 while (count > 0) {
813 int this_len, retval;
814
815 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
816 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700817 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!ret)
819 ret = -EIO;
820 break;
821 }
822
823 if (copy_to_user(buf, page, retval)) {
824 ret = -EFAULT;
825 break;
826 }
827
828 ret += retval;
829 src += retval;
830 buf += retval;
831 count -= retval;
832 }
833 *ppos = src;
834
835out_put:
836 mmput(mm);
837out_free:
838 free_page((unsigned long) page);
839out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700840 put_task_struct(task);
841out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ret;
843}
844
845#define mem_write NULL
846
847#ifndef mem_write
848/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800849static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 size_t count, loff_t *ppos)
851{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700852 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800854 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 unsigned long dst = *ppos;
856
Eric W. Biederman99f89552006-06-26 00:25:55 -0700857 copied = -ESRCH;
858 if (!task)
859 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Roland McGrath638fa202008-04-29 01:01:38 -0700861 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700862 goto out;
863
864 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700865 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700867 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700869 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 while (count > 0) {
871 int this_len, retval;
872
873 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
874 if (copy_from_user(page, buf, this_len)) {
875 copied = -EFAULT;
876 break;
877 }
878 retval = access_process_vm(task, dst, page, this_len, 1);
879 if (!retval) {
880 if (!copied)
881 copied = -EIO;
882 break;
883 }
884 copied += retval;
885 buf += retval;
886 dst += retval;
887 count -= retval;
888 }
889 *ppos = dst;
890 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700891out:
892 put_task_struct(task);
893out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return copied;
895}
896#endif
897
Matt Mackall85863e42008-02-04 22:29:04 -0800898loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 switch (orig) {
901 case 0:
902 file->f_pos = offset;
903 break;
904 case 1:
905 file->f_pos += offset;
906 break;
907 default:
908 return -EINVAL;
909 }
910 force_successful_syscall_return();
911 return file->f_pos;
912}
913
Arjan van de Ven00977a52007-02-12 00:55:34 -0800914static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .llseek = mem_lseek,
916 .read = mem_read,
917 .write = mem_write,
918 .open = mem_open,
919};
920
James Pearson315e28c2007-10-16 23:30:17 -0700921static ssize_t environ_read(struct file *file, char __user *buf,
922 size_t count, loff_t *ppos)
923{
924 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
925 char *page;
926 unsigned long src = *ppos;
927 int ret = -ESRCH;
928 struct mm_struct *mm;
929
930 if (!task)
931 goto out_no_task;
932
Stephen Smalley006ebb42008-05-19 08:32:49 -0400933 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700934 goto out;
935
936 ret = -ENOMEM;
937 page = (char *)__get_free_page(GFP_TEMPORARY);
938 if (!page)
939 goto out;
940
941 ret = 0;
942
943 mm = get_task_mm(task);
944 if (!mm)
945 goto out_free;
946
947 while (count > 0) {
948 int this_len, retval, max_len;
949
950 this_len = mm->env_end - (mm->env_start + src);
951
952 if (this_len <= 0)
953 break;
954
955 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
956 this_len = (this_len > max_len) ? max_len : this_len;
957
958 retval = access_process_vm(task, (mm->env_start + src),
959 page, this_len, 0);
960
961 if (retval <= 0) {
962 ret = retval;
963 break;
964 }
965
966 if (copy_to_user(buf, page, retval)) {
967 ret = -EFAULT;
968 break;
969 }
970
971 ret += retval;
972 src += retval;
973 buf += retval;
974 count -= retval;
975 }
976 *ppos = src;
977
978 mmput(mm);
979out_free:
980 free_page((unsigned long) page);
981out:
982 put_task_struct(task);
983out_no_task:
984 return ret;
985}
986
987static const struct file_operations proc_environ_operations = {
988 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100989 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700990};
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992static ssize_t oom_adjust_read(struct file *file, char __user *buf,
993 size_t count, loff_t *ppos)
994{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800995 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700996 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700998 int oom_adjust = OOM_DISABLE;
999 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Eric W. Biederman99f89552006-06-26 00:25:55 -07001001 if (!task)
1002 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001003
1004 if (lock_task_sighand(task, &flags)) {
1005 oom_adjust = task->signal->oom_adj;
1006 unlock_task_sighand(task, &flags);
1007 }
1008
Eric W. Biederman99f89552006-06-26 00:25:55 -07001009 put_task_struct(task);
1010
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001011 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001012
1013 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
1016static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1017 size_t count, loff_t *ppos)
1018{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001019 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001020 char buffer[PROC_NUMBUF];
1021 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001022 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001023 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001025 memset(buffer, 0, sizeof(buffer));
1026 if (count > sizeof(buffer) - 1)
1027 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001028 if (copy_from_user(buffer, buf, count)) {
1029 err = -EFAULT;
1030 goto out;
1031 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001032
1033 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1034 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001035 goto out;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001036 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
David Rientjes723548b2010-10-26 14:21:25 -07001037 oom_adjust != OOM_DISABLE) {
1038 err = -EINVAL;
1039 goto out;
1040 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001041
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001042 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001043 if (!task) {
1044 err = -ESRCH;
1045 goto out;
1046 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001047
Ying Han3d5992d2010-10-26 14:21:23 -07001048 task_lock(task);
1049 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001050 err = -EINVAL;
1051 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001052 }
1053
David Rientjesd19d5472010-10-26 14:21:26 -07001054 if (!lock_task_sighand(task, &flags)) {
1055 err = -ESRCH;
1056 goto err_task_lock;
1057 }
1058
1059 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1060 err = -EACCES;
1061 goto err_sighand;
1062 }
1063
Ying Han3d5992d2010-10-26 14:21:23 -07001064 if (oom_adjust != task->signal->oom_adj) {
1065 if (oom_adjust == OOM_DISABLE)
1066 atomic_inc(&task->mm->oom_disable_count);
1067 if (task->signal->oom_adj == OOM_DISABLE)
1068 atomic_dec(&task->mm->oom_disable_count);
1069 }
1070
David Rientjes51b1bd22010-08-09 17:19:47 -07001071 /*
1072 * Warn that /proc/pid/oom_adj is deprecated, see
1073 * Documentation/feature-removal-schedule.txt.
1074 */
1075 printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, "
1076 "please use /proc/%d/oom_score_adj instead.\n",
1077 current->comm, task_pid_nr(current),
1078 task_pid_nr(task), task_pid_nr(task));
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001079 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -07001080 /*
1081 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1082 * value is always attainable.
1083 */
1084 if (task->signal->oom_adj == OOM_ADJUST_MAX)
1085 task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX;
1086 else
1087 task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) /
1088 -OOM_DISABLE;
David Rientjes723548b2010-10-26 14:21:25 -07001089err_sighand:
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001090 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001091err_task_lock:
1092 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001093 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001094out:
1095 return err < 0 ? err : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Arjan van de Ven00977a52007-02-12 00:55:34 -08001098static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 .read = oom_adjust_read,
1100 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001101 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102};
1103
David Rientjesa63d83f2010-08-09 17:19:46 -07001104static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1105 size_t count, loff_t *ppos)
1106{
1107 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
1108 char buffer[PROC_NUMBUF];
1109 int oom_score_adj = OOM_SCORE_ADJ_MIN;
1110 unsigned long flags;
1111 size_t len;
1112
1113 if (!task)
1114 return -ESRCH;
1115 if (lock_task_sighand(task, &flags)) {
1116 oom_score_adj = task->signal->oom_score_adj;
1117 unlock_task_sighand(task, &flags);
1118 }
1119 put_task_struct(task);
1120 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
1121 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1122}
1123
1124static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1125 size_t count, loff_t *ppos)
1126{
1127 struct task_struct *task;
1128 char buffer[PROC_NUMBUF];
1129 unsigned long flags;
1130 long oom_score_adj;
1131 int err;
1132
1133 memset(buffer, 0, sizeof(buffer));
1134 if (count > sizeof(buffer) - 1)
1135 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001136 if (copy_from_user(buffer, buf, count)) {
1137 err = -EFAULT;
1138 goto out;
1139 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001140
1141 err = strict_strtol(strstrip(buffer), 0, &oom_score_adj);
1142 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001143 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001144 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001145 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1146 err = -EINVAL;
1147 goto out;
1148 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001149
1150 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001151 if (!task) {
1152 err = -ESRCH;
1153 goto out;
1154 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001155
Ying Han3d5992d2010-10-26 14:21:23 -07001156 task_lock(task);
1157 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001158 err = -EINVAL;
1159 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001160 }
David Rientjesd19d5472010-10-26 14:21:26 -07001161
1162 if (!lock_task_sighand(task, &flags)) {
1163 err = -ESRCH;
1164 goto err_task_lock;
1165 }
1166
1167 if (oom_score_adj < task->signal->oom_score_adj &&
1168 !capable(CAP_SYS_RESOURCE)) {
1169 err = -EACCES;
1170 goto err_sighand;
1171 }
1172
Ying Han3d5992d2010-10-26 14:21:23 -07001173 if (oom_score_adj != task->signal->oom_score_adj) {
1174 if (oom_score_adj == OOM_SCORE_ADJ_MIN)
1175 atomic_inc(&task->mm->oom_disable_count);
1176 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1177 atomic_dec(&task->mm->oom_disable_count);
1178 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001179 task->signal->oom_score_adj = oom_score_adj;
1180 /*
1181 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1182 * always attainable.
1183 */
1184 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1185 task->signal->oom_adj = OOM_DISABLE;
1186 else
1187 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1188 OOM_SCORE_ADJ_MAX;
David Rientjes723548b2010-10-26 14:21:25 -07001189err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001190 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001191err_task_lock:
1192 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001193 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001194out:
1195 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001196}
1197
1198static const struct file_operations proc_oom_score_adj_operations = {
1199 .read = oom_score_adj_read,
1200 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001201 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001202};
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204#ifdef CONFIG_AUDITSYSCALL
1205#define TMPBUFLEN 21
1206static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1207 size_t count, loff_t *ppos)
1208{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001209 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001210 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 ssize_t length;
1212 char tmpbuf[TMPBUFLEN];
1213
Eric W. Biederman99f89552006-06-26 00:25:55 -07001214 if (!task)
1215 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001217 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001218 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1220}
1221
1222static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1223 size_t count, loff_t *ppos)
1224{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001225 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 char *page, *tmp;
1227 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 uid_t loginuid;
1229
1230 if (!capable(CAP_AUDIT_CONTROL))
1231 return -EPERM;
1232
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001233 rcu_read_lock();
1234 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1235 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001237 }
1238 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Al Viroe0182902006-05-18 08:28:02 -04001240 if (count >= PAGE_SIZE)
1241 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 if (*ppos != 0) {
1244 /* No partial writes. */
1245 return -EINVAL;
1246 }
Mel Gormane12ba742007-10-16 01:25:52 -07001247 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!page)
1249 return -ENOMEM;
1250 length = -EFAULT;
1251 if (copy_from_user(page, buf, count))
1252 goto out_free_page;
1253
Al Viroe0182902006-05-18 08:28:02 -04001254 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 loginuid = simple_strtoul(page, &tmp, 10);
1256 if (tmp == page) {
1257 length = -EINVAL;
1258 goto out_free_page;
1259
1260 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001261 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (likely(length == 0))
1263 length = count;
1264
1265out_free_page:
1266 free_page((unsigned long) page);
1267 return length;
1268}
1269
Arjan van de Ven00977a52007-02-12 00:55:34 -08001270static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 .read = proc_loginuid_read,
1272 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001273 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274};
Eric Paris1e0bd752008-03-13 08:15:31 -04001275
1276static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1277 size_t count, loff_t *ppos)
1278{
1279 struct inode * inode = file->f_path.dentry->d_inode;
1280 struct task_struct *task = get_proc_task(inode);
1281 ssize_t length;
1282 char tmpbuf[TMPBUFLEN];
1283
1284 if (!task)
1285 return -ESRCH;
1286 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1287 audit_get_sessionid(task));
1288 put_task_struct(task);
1289 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1290}
1291
1292static const struct file_operations proc_sessionid_operations = {
1293 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001294 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001295};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296#endif
1297
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001298#ifdef CONFIG_FAULT_INJECTION
1299static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1300 size_t count, loff_t *ppos)
1301{
1302 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1303 char buffer[PROC_NUMBUF];
1304 size_t len;
1305 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001306
1307 if (!task)
1308 return -ESRCH;
1309 make_it_fail = task->make_it_fail;
1310 put_task_struct(task);
1311
1312 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001313
1314 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001315}
1316
1317static ssize_t proc_fault_inject_write(struct file * file,
1318 const char __user * buf, size_t count, loff_t *ppos)
1319{
1320 struct task_struct *task;
1321 char buffer[PROC_NUMBUF], *end;
1322 int make_it_fail;
1323
1324 if (!capable(CAP_SYS_RESOURCE))
1325 return -EPERM;
1326 memset(buffer, 0, sizeof(buffer));
1327 if (count > sizeof(buffer) - 1)
1328 count = sizeof(buffer) - 1;
1329 if (copy_from_user(buffer, buf, count))
1330 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001331 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1332 if (*end)
1333 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001334 task = get_proc_task(file->f_dentry->d_inode);
1335 if (!task)
1336 return -ESRCH;
1337 task->make_it_fail = make_it_fail;
1338 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001339
1340 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001341}
1342
Arjan van de Ven00977a52007-02-12 00:55:34 -08001343static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001344 .read = proc_fault_inject_read,
1345 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001346 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001347};
1348#endif
1349
Arjan van de Ven97455122008-01-25 21:08:34 +01001350
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001351#ifdef CONFIG_SCHED_DEBUG
1352/*
1353 * Print out various scheduling related per-task fields:
1354 */
1355static int sched_show(struct seq_file *m, void *v)
1356{
1357 struct inode *inode = m->private;
1358 struct task_struct *p;
1359
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001360 p = get_proc_task(inode);
1361 if (!p)
1362 return -ESRCH;
1363 proc_sched_show_task(p, m);
1364
1365 put_task_struct(p);
1366
1367 return 0;
1368}
1369
1370static ssize_t
1371sched_write(struct file *file, const char __user *buf,
1372 size_t count, loff_t *offset)
1373{
1374 struct inode *inode = file->f_path.dentry->d_inode;
1375 struct task_struct *p;
1376
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001377 p = get_proc_task(inode);
1378 if (!p)
1379 return -ESRCH;
1380 proc_sched_set_task(p);
1381
1382 put_task_struct(p);
1383
1384 return count;
1385}
1386
1387static int sched_open(struct inode *inode, struct file *filp)
1388{
1389 int ret;
1390
1391 ret = single_open(filp, sched_show, NULL);
1392 if (!ret) {
1393 struct seq_file *m = filp->private_data;
1394
1395 m->private = inode;
1396 }
1397 return ret;
1398}
1399
1400static const struct file_operations proc_pid_sched_operations = {
1401 .open = sched_open,
1402 .read = seq_read,
1403 .write = sched_write,
1404 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001405 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001406};
1407
1408#endif
1409
Mike Galbraith5091faa2010-11-30 14:18:03 +01001410#ifdef CONFIG_SCHED_AUTOGROUP
1411/*
1412 * Print out autogroup related information:
1413 */
1414static int sched_autogroup_show(struct seq_file *m, void *v)
1415{
1416 struct inode *inode = m->private;
1417 struct task_struct *p;
1418
1419 p = get_proc_task(inode);
1420 if (!p)
1421 return -ESRCH;
1422 proc_sched_autogroup_show_task(p, m);
1423
1424 put_task_struct(p);
1425
1426 return 0;
1427}
1428
1429static ssize_t
1430sched_autogroup_write(struct file *file, const char __user *buf,
1431 size_t count, loff_t *offset)
1432{
1433 struct inode *inode = file->f_path.dentry->d_inode;
1434 struct task_struct *p;
1435 char buffer[PROC_NUMBUF];
1436 long nice;
1437 int err;
1438
1439 memset(buffer, 0, sizeof(buffer));
1440 if (count > sizeof(buffer) - 1)
1441 count = sizeof(buffer) - 1;
1442 if (copy_from_user(buffer, buf, count))
1443 return -EFAULT;
1444
1445 err = strict_strtol(strstrip(buffer), 0, &nice);
1446 if (err)
1447 return -EINVAL;
1448
1449 p = get_proc_task(inode);
1450 if (!p)
1451 return -ESRCH;
1452
1453 err = nice;
1454 err = proc_sched_autogroup_set_nice(p, &err);
1455 if (err)
1456 count = err;
1457
1458 put_task_struct(p);
1459
1460 return count;
1461}
1462
1463static int sched_autogroup_open(struct inode *inode, struct file *filp)
1464{
1465 int ret;
1466
1467 ret = single_open(filp, sched_autogroup_show, NULL);
1468 if (!ret) {
1469 struct seq_file *m = filp->private_data;
1470
1471 m->private = inode;
1472 }
1473 return ret;
1474}
1475
1476static const struct file_operations proc_pid_sched_autogroup_operations = {
1477 .open = sched_autogroup_open,
1478 .read = seq_read,
1479 .write = sched_autogroup_write,
1480 .llseek = seq_lseek,
1481 .release = single_release,
1482};
1483
1484#endif /* CONFIG_SCHED_AUTOGROUP */
1485
john stultz4614a696b2009-12-14 18:00:05 -08001486static ssize_t comm_write(struct file *file, const char __user *buf,
1487 size_t count, loff_t *offset)
1488{
1489 struct inode *inode = file->f_path.dentry->d_inode;
1490 struct task_struct *p;
1491 char buffer[TASK_COMM_LEN];
1492
1493 memset(buffer, 0, sizeof(buffer));
1494 if (count > sizeof(buffer) - 1)
1495 count = sizeof(buffer) - 1;
1496 if (copy_from_user(buffer, buf, count))
1497 return -EFAULT;
1498
1499 p = get_proc_task(inode);
1500 if (!p)
1501 return -ESRCH;
1502
1503 if (same_thread_group(current, p))
1504 set_task_comm(p, buffer);
1505 else
1506 count = -EINVAL;
1507
1508 put_task_struct(p);
1509
1510 return count;
1511}
1512
1513static int comm_show(struct seq_file *m, void *v)
1514{
1515 struct inode *inode = m->private;
1516 struct task_struct *p;
1517
1518 p = get_proc_task(inode);
1519 if (!p)
1520 return -ESRCH;
1521
1522 task_lock(p);
1523 seq_printf(m, "%s\n", p->comm);
1524 task_unlock(p);
1525
1526 put_task_struct(p);
1527
1528 return 0;
1529}
1530
1531static int comm_open(struct inode *inode, struct file *filp)
1532{
1533 int ret;
1534
1535 ret = single_open(filp, comm_show, NULL);
1536 if (!ret) {
1537 struct seq_file *m = filp->private_data;
1538
1539 m->private = inode;
1540 }
1541 return ret;
1542}
1543
1544static const struct file_operations proc_pid_set_comm_operations = {
1545 .open = comm_open,
1546 .read = seq_read,
1547 .write = comm_write,
1548 .llseek = seq_lseek,
1549 .release = single_release,
1550};
1551
Matt Helsley925d1c42008-04-29 01:01:36 -07001552/*
1553 * We added or removed a vma mapping the executable. The vmas are only mapped
1554 * during exec and are not mapped with the mmap system call.
1555 * Callers must hold down_write() on the mm's mmap_sem for these
1556 */
1557void added_exe_file_vma(struct mm_struct *mm)
1558{
1559 mm->num_exe_file_vmas++;
1560}
1561
1562void removed_exe_file_vma(struct mm_struct *mm)
1563{
1564 mm->num_exe_file_vmas--;
1565 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1566 fput(mm->exe_file);
1567 mm->exe_file = NULL;
1568 }
1569
1570}
1571
1572void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1573{
1574 if (new_exe_file)
1575 get_file(new_exe_file);
1576 if (mm->exe_file)
1577 fput(mm->exe_file);
1578 mm->exe_file = new_exe_file;
1579 mm->num_exe_file_vmas = 0;
1580}
1581
1582struct file *get_mm_exe_file(struct mm_struct *mm)
1583{
1584 struct file *exe_file;
1585
1586 /* We need mmap_sem to protect against races with removal of
1587 * VM_EXECUTABLE vmas */
1588 down_read(&mm->mmap_sem);
1589 exe_file = mm->exe_file;
1590 if (exe_file)
1591 get_file(exe_file);
1592 up_read(&mm->mmap_sem);
1593 return exe_file;
1594}
1595
1596void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1597{
1598 /* It's safe to write the exe_file pointer without exe_file_lock because
1599 * this is called during fork when the task is not yet in /proc */
1600 newmm->exe_file = get_mm_exe_file(oldmm);
1601}
1602
1603static int proc_exe_link(struct inode *inode, struct path *exe_path)
1604{
1605 struct task_struct *task;
1606 struct mm_struct *mm;
1607 struct file *exe_file;
1608
1609 task = get_proc_task(inode);
1610 if (!task)
1611 return -ENOENT;
1612 mm = get_task_mm(task);
1613 put_task_struct(task);
1614 if (!mm)
1615 return -ENOENT;
1616 exe_file = get_mm_exe_file(mm);
1617 mmput(mm);
1618 if (exe_file) {
1619 *exe_path = exe_file->f_path;
1620 path_get(&exe_file->f_path);
1621 fput(exe_file);
1622 return 0;
1623 } else
1624 return -ENOENT;
1625}
1626
Al Viro008b1502005-08-20 00:17:39 +01001627static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
1629 struct inode *inode = dentry->d_inode;
1630 int error = -EACCES;
1631
1632 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001633 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Eric W. Biederman778c1142006-06-26 00:25:58 -07001635 /* Are we allowed to snoop on the tasks file descriptors? */
1636 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001639 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640out:
Al Viro008b1502005-08-20 00:17:39 +01001641 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001644static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Mel Gormane12ba742007-10-16 01:25:52 -07001646 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001647 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 int len;
1649
1650 if (!tmp)
1651 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001652
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001653 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001654 len = PTR_ERR(pathname);
1655 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001657 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 if (len > buflen)
1660 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001661 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 len = -EFAULT;
1663 out:
1664 free_page((unsigned long)tmp);
1665 return len;
1666}
1667
1668static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1669{
1670 int error = -EACCES;
1671 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001672 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Eric W. Biederman778c1142006-06-26 00:25:58 -07001674 /* Are we allowed to snoop on the tasks file descriptors? */
1675 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001678 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (error)
1680 goto out;
1681
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001682 error = do_proc_readlink(&path, buffer, buflen);
1683 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return error;
1686}
1687
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001688static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001690 .follow_link = proc_pid_follow_link,
1691 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692};
1693
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001694
1695/* building an inode */
1696
1697static int task_dumpable(struct task_struct *task)
1698{
1699 int dumpable = 0;
1700 struct mm_struct *mm;
1701
1702 task_lock(task);
1703 mm = task->mm;
1704 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001705 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001706 task_unlock(task);
1707 if(dumpable == 1)
1708 return 1;
1709 return 0;
1710}
1711
1712
Eric W. Biederman61a28782006-10-02 02:18:49 -07001713static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001714{
1715 struct inode * inode;
1716 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001717 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001718
1719 /* We need a new inode */
1720
1721 inode = new_inode(sb);
1722 if (!inode)
1723 goto out;
1724
1725 /* Common stuff */
1726 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001727 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001728 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001729 inode->i_op = &proc_def_inode_operations;
1730
1731 /*
1732 * grab the reference to task.
1733 */
Oleg Nesterov1a657f72006-10-02 02:18:59 -07001734 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001735 if (!ei->pid)
1736 goto out_unlock;
1737
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001738 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001739 rcu_read_lock();
1740 cred = __task_cred(task);
1741 inode->i_uid = cred->euid;
1742 inode->i_gid = cred->egid;
1743 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001744 }
1745 security_task_to_inode(task, inode);
1746
1747out:
1748 return inode;
1749
1750out_unlock:
1751 iput(inode);
1752 return NULL;
1753}
1754
1755static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1756{
1757 struct inode *inode = dentry->d_inode;
1758 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001759 const struct cred *cred;
1760
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001761 generic_fillattr(inode, stat);
1762
1763 rcu_read_lock();
1764 stat->uid = 0;
1765 stat->gid = 0;
1766 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1767 if (task) {
1768 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1769 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001770 cred = __task_cred(task);
1771 stat->uid = cred->euid;
1772 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001773 }
1774 }
1775 rcu_read_unlock();
1776 return 0;
1777}
1778
1779/* dentry stuff */
1780
1781/*
1782 * Exceptional case: normally we are not allowed to unhash a busy
1783 * directory. In this case, however, we can do it - no aliasing problems
1784 * due to the way we treat inodes.
1785 *
1786 * Rewrite the inode's ownerships here because the owning task may have
1787 * performed a setuid(), etc.
1788 *
1789 * Before the /proc/pid/status file was created the only way to read
1790 * the effective uid of a /process was to stat /proc/pid. Reading
1791 * /proc/pid/status is slow enough that procps and other packages
1792 * kept stating /proc/pid. To keep the rules in /proc simple I have
1793 * made this apply to all per process world readable and executable
1794 * directories.
1795 */
1796static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1797{
Nick Piggin34286d62011-01-07 17:49:57 +11001798 struct inode *inode;
1799 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001800 const struct cred *cred;
1801
Nick Piggin34286d62011-01-07 17:49:57 +11001802 if (nd && nd->flags & LOOKUP_RCU)
1803 return -ECHILD;
1804
1805 inode = dentry->d_inode;
1806 task = get_proc_task(inode);
1807
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001808 if (task) {
1809 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1810 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001811 rcu_read_lock();
1812 cred = __task_cred(task);
1813 inode->i_uid = cred->euid;
1814 inode->i_gid = cred->egid;
1815 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001816 } else {
1817 inode->i_uid = 0;
1818 inode->i_gid = 0;
1819 }
1820 inode->i_mode &= ~(S_ISUID | S_ISGID);
1821 security_task_to_inode(task, inode);
1822 put_task_struct(task);
1823 return 1;
1824 }
1825 d_drop(dentry);
1826 return 0;
1827}
1828
Nick Pigginfe15ce42011-01-07 17:49:23 +11001829static int pid_delete_dentry(const struct dentry * dentry)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001830{
1831 /* Is the task we represent dead?
1832 * If so, then don't put the dentry on the lru list,
1833 * kill it immediately.
1834 */
1835 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1836}
1837
Al Virod72f71e2009-02-20 05:58:47 +00001838static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001839{
1840 .d_revalidate = pid_revalidate,
1841 .d_delete = pid_delete_dentry,
1842};
1843
1844/* Lookups */
1845
Eric Dumazetc5141e62007-05-08 00:26:15 -07001846typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1847 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001848
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001849/*
1850 * Fill a directory entry.
1851 *
1852 * If possible create the dcache entry and derive our inode number and
1853 * file type from dcache entry.
1854 *
1855 * Since all of the proc inode numbers are dynamically generated, the inode
1856 * numbers do not exist until the inode is cache. This means creating the
1857 * the dcache entry in readdir is necessary to keep the inode numbers
1858 * reported by readdir in sync with the inode numbers reported
1859 * by stat.
1860 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001861static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1862 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001863 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001864{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001865 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001866 struct inode *inode;
1867 struct qstr qname;
1868 ino_t ino = 0;
1869 unsigned type = DT_UNKNOWN;
1870
1871 qname.name = name;
1872 qname.len = len;
1873 qname.hash = full_name_hash(name, len);
1874
1875 child = d_lookup(dir, &qname);
1876 if (!child) {
1877 struct dentry *new;
1878 new = d_alloc(dir, &qname);
1879 if (new) {
1880 child = instantiate(dir->d_inode, new, task, ptr);
1881 if (child)
1882 dput(new);
1883 else
1884 child = new;
1885 }
1886 }
1887 if (!child || IS_ERR(child) || !child->d_inode)
1888 goto end_instantiate;
1889 inode = child->d_inode;
1890 if (inode) {
1891 ino = inode->i_ino;
1892 type = inode->i_mode >> 12;
1893 }
1894 dput(child);
1895end_instantiate:
1896 if (!ino)
1897 ino = find_inode_number(dir, &qname);
1898 if (!ino)
1899 ino = 1;
1900 return filldir(dirent, name, len, filp->f_pos, ino, type);
1901}
1902
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001903static unsigned name_to_int(struct dentry *dentry)
1904{
1905 const char *name = dentry->d_name.name;
1906 int len = dentry->d_name.len;
1907 unsigned n = 0;
1908
1909 if (len > 1 && *name == '0')
1910 goto out;
1911 while (len-- > 0) {
1912 unsigned c = *name++ - '0';
1913 if (c > 9)
1914 goto out;
1915 if (n >= (~0U-9)/10)
1916 goto out;
1917 n *= 10;
1918 n += c;
1919 }
1920 return n;
1921out:
1922 return ~0U;
1923}
1924
Miklos Szeredi27932742007-05-08 00:26:17 -07001925#define PROC_FDINFO_MAX 64
1926
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001927static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001928{
1929 struct task_struct *task = get_proc_task(inode);
1930 struct files_struct *files = NULL;
1931 struct file *file;
1932 int fd = proc_fd(inode);
1933
1934 if (task) {
1935 files = get_files_struct(task);
1936 put_task_struct(task);
1937 }
1938 if (files) {
1939 /*
1940 * We are not taking a ref to the file structure, so we must
1941 * hold ->file_lock.
1942 */
1943 spin_lock(&files->file_lock);
1944 file = fcheck_files(files, fd);
1945 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001946 if (path) {
1947 *path = file->f_path;
1948 path_get(&file->f_path);
1949 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001950 if (info)
1951 snprintf(info, PROC_FDINFO_MAX,
1952 "pos:\t%lli\n"
1953 "flags:\t0%o\n",
1954 (long long) file->f_pos,
1955 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001956 spin_unlock(&files->file_lock);
1957 put_files_struct(files);
1958 return 0;
1959 }
1960 spin_unlock(&files->file_lock);
1961 put_files_struct(files);
1962 }
1963 return -ENOENT;
1964}
1965
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001966static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001967{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001968 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001969}
1970
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001971static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1972{
Nick Piggin34286d62011-01-07 17:49:57 +11001973 struct inode *inode;
1974 struct task_struct *task;
1975 int fd;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001976 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001977 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001978
Nick Piggin34286d62011-01-07 17:49:57 +11001979 if (nd && nd->flags & LOOKUP_RCU)
1980 return -ECHILD;
1981
1982 inode = dentry->d_inode;
1983 task = get_proc_task(inode);
1984 fd = proc_fd(inode);
1985
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001986 if (task) {
1987 files = get_files_struct(task);
1988 if (files) {
1989 rcu_read_lock();
1990 if (fcheck_files(files, fd)) {
1991 rcu_read_unlock();
1992 put_files_struct(files);
1993 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001994 rcu_read_lock();
1995 cred = __task_cred(task);
1996 inode->i_uid = cred->euid;
1997 inode->i_gid = cred->egid;
1998 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001999 } else {
2000 inode->i_uid = 0;
2001 inode->i_gid = 0;
2002 }
2003 inode->i_mode &= ~(S_ISUID | S_ISGID);
2004 security_task_to_inode(task, inode);
2005 put_task_struct(task);
2006 return 1;
2007 }
2008 rcu_read_unlock();
2009 put_files_struct(files);
2010 }
2011 put_task_struct(task);
2012 }
2013 d_drop(dentry);
2014 return 0;
2015}
2016
Al Virod72f71e2009-02-20 05:58:47 +00002017static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002018{
2019 .d_revalidate = tid_fd_revalidate,
2020 .d_delete = pid_delete_dentry,
2021};
2022
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002023static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002024 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002025{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002026 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002027 struct file *file;
2028 struct files_struct *files;
2029 struct inode *inode;
2030 struct proc_inode *ei;
2031 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002032
Eric W. Biederman61a28782006-10-02 02:18:49 -07002033 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002034 if (!inode)
2035 goto out;
2036 ei = PROC_I(inode);
2037 ei->fd = fd;
2038 files = get_files_struct(task);
2039 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002040 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002041 inode->i_mode = S_IFLNK;
2042
2043 /*
2044 * We are not taking a ref to the file structure, so we must
2045 * hold ->file_lock.
2046 */
2047 spin_lock(&files->file_lock);
2048 file = fcheck_files(files, fd);
2049 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002050 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04002051 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002052 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04002053 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002054 inode->i_mode |= S_IWUSR | S_IXUSR;
2055 spin_unlock(&files->file_lock);
2056 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002057
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002058 inode->i_op = &proc_pid_link_inode_operations;
2059 inode->i_size = 64;
2060 ei->op.proc_get_link = proc_fd_link;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002061 d_set_d_op(dentry, &tid_fd_dentry_operations);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002062 d_add(dentry, inode);
2063 /* Close the race of the process dying before we return the dentry */
2064 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002065 error = NULL;
2066
2067 out:
2068 return error;
2069out_unlock:
2070 spin_unlock(&files->file_lock);
2071 put_files_struct(files);
2072out_iput:
2073 iput(inode);
2074 goto out;
2075}
2076
Miklos Szeredi27932742007-05-08 00:26:17 -07002077static struct dentry *proc_lookupfd_common(struct inode *dir,
2078 struct dentry *dentry,
2079 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002080{
2081 struct task_struct *task = get_proc_task(dir);
2082 unsigned fd = name_to_int(dentry);
2083 struct dentry *result = ERR_PTR(-ENOENT);
2084
2085 if (!task)
2086 goto out_no_task;
2087 if (fd == ~0U)
2088 goto out;
2089
Miklos Szeredi27932742007-05-08 00:26:17 -07002090 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002091out:
2092 put_task_struct(task);
2093out_no_task:
2094 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002095}
2096
Miklos Szeredi27932742007-05-08 00:26:17 -07002097static int proc_readfd_common(struct file * filp, void * dirent,
2098 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002100 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07002101 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002102 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07002103 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 struct files_struct * files;
2106
2107 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002108 if (!p)
2109 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 fd = filp->f_pos;
2113 switch (fd) {
2114 case 0:
2115 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
2116 goto out;
2117 filp->f_pos++;
2118 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07002119 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
2121 goto out;
2122 filp->f_pos++;
2123 default:
2124 files = get_files_struct(p);
2125 if (!files)
2126 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002127 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04002129 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07002131 char name[PROC_NUMBUF];
2132 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 if (!fcheck_files(files, fd))
2135 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002136 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Miklos Szeredi27932742007-05-08 00:26:17 -07002138 len = snprintf(name, sizeof(name), "%d", fd);
2139 if (proc_fill_cache(filp, dirent, filldir,
2140 name, len, instantiate,
2141 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07002142 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
2144 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002145 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002147 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 put_files_struct(files);
2149 }
2150out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002151 put_task_struct(p);
2152out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return retval;
2154}
2155
Miklos Szeredi27932742007-05-08 00:26:17 -07002156static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
2157 struct nameidata *nd)
2158{
2159 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
2160}
2161
2162static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
2163{
2164 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
2165}
2166
2167static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
2168 size_t len, loff_t *ppos)
2169{
2170 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08002171 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07002172 if (!err)
2173 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
2174 return err;
2175}
2176
2177static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01002178 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07002179 .read = proc_fdinfo_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002180 .llseek = no_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002181};
2182
Arjan van de Ven00977a52007-02-12 00:55:34 -08002183static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 .read = generic_read_dir,
2185 .readdir = proc_readfd,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002186 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187};
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002190 * /proc/pid/fd needs a special permission handler so that a process can still
2191 * access /proc/self/fd after it has executed a setuid().
2192 */
Nick Pigginb74c79e2011-01-07 17:49:58 +11002193static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002194{
2195 int rv;
2196
Nick Pigginb74c79e2011-01-07 17:49:58 +11002197 if (flags & IPERM_FLAG_RCU)
2198 return -ECHILD;
2199 rv = generic_permission(inode, mask, flags, NULL);
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002200 if (rv == 0)
2201 return 0;
2202 if (task_pid(current) == proc_pid(inode))
2203 rv = 0;
2204 return rv;
2205}
2206
2207/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 * proc directories can do almost nothing..
2209 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002210static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002212 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002213 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214};
2215
Miklos Szeredi27932742007-05-08 00:26:17 -07002216static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2217 struct dentry *dentry, struct task_struct *task, const void *ptr)
2218{
2219 unsigned fd = *(unsigned *)ptr;
2220 struct inode *inode;
2221 struct proc_inode *ei;
2222 struct dentry *error = ERR_PTR(-ENOENT);
2223
2224 inode = proc_pid_make_inode(dir->i_sb, task);
2225 if (!inode)
2226 goto out;
2227 ei = PROC_I(inode);
2228 ei->fd = fd;
2229 inode->i_mode = S_IFREG | S_IRUSR;
2230 inode->i_fop = &proc_fdinfo_file_operations;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002231 d_set_d_op(dentry, &tid_fd_dentry_operations);
Miklos Szeredi27932742007-05-08 00:26:17 -07002232 d_add(dentry, inode);
2233 /* Close the race of the process dying before we return the dentry */
2234 if (tid_fd_revalidate(dentry, NULL))
2235 error = NULL;
2236
2237 out:
2238 return error;
2239}
2240
2241static struct dentry *proc_lookupfdinfo(struct inode *dir,
2242 struct dentry *dentry,
2243 struct nameidata *nd)
2244{
2245 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2246}
2247
2248static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2249{
2250 return proc_readfd_common(filp, dirent, filldir,
2251 proc_fdinfo_instantiate);
2252}
2253
2254static const struct file_operations proc_fdinfo_operations = {
2255 .read = generic_read_dir,
2256 .readdir = proc_readfdinfo,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002257 .llseek = default_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002258};
2259
2260/*
2261 * proc directories can do almost nothing..
2262 */
2263static const struct inode_operations proc_fdinfo_inode_operations = {
2264 .lookup = proc_lookupfdinfo,
2265 .setattr = proc_setattr,
2266};
2267
2268
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002269static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002270 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002271{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002272 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002273 struct inode *inode;
2274 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002275 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002276
Eric W. Biederman61a28782006-10-02 02:18:49 -07002277 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002278 if (!inode)
2279 goto out;
2280
2281 ei = PROC_I(inode);
2282 inode->i_mode = p->mode;
2283 if (S_ISDIR(inode->i_mode))
2284 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2285 if (p->iop)
2286 inode->i_op = p->iop;
2287 if (p->fop)
2288 inode->i_fop = p->fop;
2289 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002290 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002291 d_add(dentry, inode);
2292 /* Close the race of the process dying before we return the dentry */
2293 if (pid_revalidate(dentry, NULL))
2294 error = NULL;
2295out:
2296 return error;
2297}
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299static struct dentry *proc_pident_lookup(struct inode *dir,
2300 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002301 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002302 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002304 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002305 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002306 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002308 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Eric W. Biederman99f89552006-06-26 00:25:55 -07002310 if (!task)
2311 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002313 /*
2314 * Yes, it does not scale. And it should not. Don't add
2315 * new entries into /proc/<tgid>/ without very good reasons.
2316 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002317 last = &ents[nents - 1];
2318 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (p->len != dentry->d_name.len)
2320 continue;
2321 if (!memcmp(dentry->d_name.name, p->name, p->len))
2322 break;
2323 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002324 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto out;
2326
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002327 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002329 put_task_struct(task);
2330out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002331 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
Eric Dumazetc5141e62007-05-08 00:26:15 -07002334static int proc_pident_fill_cache(struct file *filp, void *dirent,
2335 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002336{
2337 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2338 proc_pident_instantiate, task, p);
2339}
2340
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002341static int proc_pident_readdir(struct file *filp,
2342 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002343 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002344{
2345 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002346 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002347 struct inode *inode = dentry->d_inode;
2348 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002349 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002350 ino_t ino;
2351 int ret;
2352
2353 ret = -ENOENT;
2354 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002355 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002356
2357 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002358 i = filp->f_pos;
2359 switch (i) {
2360 case 0:
2361 ino = inode->i_ino;
2362 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2363 goto out;
2364 i++;
2365 filp->f_pos++;
2366 /* fall through */
2367 case 1:
2368 ino = parent_ino(dentry);
2369 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2370 goto out;
2371 i++;
2372 filp->f_pos++;
2373 /* fall through */
2374 default:
2375 i -= 2;
2376 if (i >= nents) {
2377 ret = 1;
2378 goto out;
2379 }
2380 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002381 last = &ents[nents - 1];
2382 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002383 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002384 goto out;
2385 filp->f_pos++;
2386 p++;
2387 }
2388 }
2389
2390 ret = 1;
2391out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002392 put_task_struct(task);
2393out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002394 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002398static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2399 size_t count, loff_t *ppos)
2400{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002401 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002402 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002403 ssize_t length;
2404 struct task_struct *task = get_proc_task(inode);
2405
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002406 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002407 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002408
2409 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002410 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002411 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002412 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002413 if (length > 0)
2414 length = simple_read_from_buffer(buf, count, ppos, p, length);
2415 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002416 return length;
2417}
2418
2419static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2420 size_t count, loff_t *ppos)
2421{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002422 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002423 char *page;
2424 ssize_t length;
2425 struct task_struct *task = get_proc_task(inode);
2426
2427 length = -ESRCH;
2428 if (!task)
2429 goto out_no_task;
2430 if (count > PAGE_SIZE)
2431 count = PAGE_SIZE;
2432
2433 /* No partial writes. */
2434 length = -EINVAL;
2435 if (*ppos != 0)
2436 goto out;
2437
2438 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002439 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002440 if (!page)
2441 goto out;
2442
2443 length = -EFAULT;
2444 if (copy_from_user(page, buf, count))
2445 goto out_free;
2446
David Howells107db7c2009-05-08 13:55:27 +01002447 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002448 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002449 if (length < 0)
2450 goto out_free;
2451
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002452 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002453 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002454 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002455 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002456out_free:
2457 free_page((unsigned long) page);
2458out:
2459 put_task_struct(task);
2460out_no_task:
2461 return length;
2462}
2463
Arjan van de Ven00977a52007-02-12 00:55:34 -08002464static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002465 .read = proc_pid_attr_read,
2466 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002467 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002468};
2469
Eric Dumazetc5141e62007-05-08 00:26:15 -07002470static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002471 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2472 REG("prev", S_IRUGO, proc_pid_attr_operations),
2473 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2474 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2475 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2476 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002477};
2478
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002479static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 void * dirent, filldir_t filldir)
2481{
2482 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002483 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
Arjan van de Ven00977a52007-02-12 00:55:34 -08002486static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002488 .readdir = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002489 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490};
2491
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002492static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 struct dentry *dentry, struct nameidata *nd)
2494{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002495 return proc_pident_lookup(dir, dentry,
2496 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002499static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002500 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002501 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002502 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503};
2504
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505#endif
2506
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002507#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002508static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2509 size_t count, loff_t *ppos)
2510{
2511 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2512 struct mm_struct *mm;
2513 char buffer[PROC_NUMBUF];
2514 size_t len;
2515 int ret;
2516
2517 if (!task)
2518 return -ESRCH;
2519
2520 ret = 0;
2521 mm = get_task_mm(task);
2522 if (mm) {
2523 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2524 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2525 MMF_DUMP_FILTER_SHIFT));
2526 mmput(mm);
2527 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2528 }
2529
2530 put_task_struct(task);
2531
2532 return ret;
2533}
2534
2535static ssize_t proc_coredump_filter_write(struct file *file,
2536 const char __user *buf,
2537 size_t count,
2538 loff_t *ppos)
2539{
2540 struct task_struct *task;
2541 struct mm_struct *mm;
2542 char buffer[PROC_NUMBUF], *end;
2543 unsigned int val;
2544 int ret;
2545 int i;
2546 unsigned long mask;
2547
2548 ret = -EFAULT;
2549 memset(buffer, 0, sizeof(buffer));
2550 if (count > sizeof(buffer) - 1)
2551 count = sizeof(buffer) - 1;
2552 if (copy_from_user(buffer, buf, count))
2553 goto out_no_task;
2554
2555 ret = -EINVAL;
2556 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2557 if (*end == '\n')
2558 end++;
2559 if (end - buffer == 0)
2560 goto out_no_task;
2561
2562 ret = -ESRCH;
2563 task = get_proc_task(file->f_dentry->d_inode);
2564 if (!task)
2565 goto out_no_task;
2566
2567 ret = end - buffer;
2568 mm = get_task_mm(task);
2569 if (!mm)
2570 goto out_no_mm;
2571
2572 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2573 if (val & mask)
2574 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2575 else
2576 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2577 }
2578
2579 mmput(mm);
2580 out_no_mm:
2581 put_task_struct(task);
2582 out_no_task:
2583 return ret;
2584}
2585
2586static const struct file_operations proc_coredump_filter_operations = {
2587 .read = proc_coredump_filter_read,
2588 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002589 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002590};
2591#endif
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593/*
2594 * /proc/self:
2595 */
2596static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2597 int buflen)
2598{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002599 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002600 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002601 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002602 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002603 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002604 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 return vfs_readlink(dentry,buffer,buflen,tmp);
2606}
2607
Al Viro008b1502005-08-20 00:17:39 +01002608static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002610 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002611 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002612 char *name = ERR_PTR(-ENOENT);
2613 if (tgid) {
2614 name = __getname();
2615 if (!name)
2616 name = ERR_PTR(-ENOMEM);
2617 else
2618 sprintf(name, "%d", tgid);
2619 }
2620 nd_set_link(nd, name);
2621 return NULL;
2622}
2623
2624static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2625 void *cookie)
2626{
2627 char *s = nd_get_link(nd);
2628 if (!IS_ERR(s))
2629 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002632static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 .readlink = proc_self_readlink,
2634 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002635 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636};
2637
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002638/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002639 * proc base
2640 *
2641 * These are the directory entries in the root directory of /proc
2642 * that properly belong to the /proc filesystem, as they describe
2643 * describe something that is process related.
2644 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002645static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002646 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002647 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002648};
2649
2650/*
2651 * Exceptional case: normally we are not allowed to unhash a busy
2652 * directory. In this case, however, we can do it - no aliasing problems
2653 * due to the way we treat inodes.
2654 */
2655static int proc_base_revalidate(struct dentry *dentry, struct nameidata *nd)
2656{
Nick Piggin34286d62011-01-07 17:49:57 +11002657 struct inode *inode;
2658 struct task_struct *task;
2659
2660 if (nd->flags & LOOKUP_RCU)
2661 return -ECHILD;
2662
2663 inode = dentry->d_inode;
2664 task = get_proc_task(inode);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002665 if (task) {
2666 put_task_struct(task);
2667 return 1;
2668 }
2669 d_drop(dentry);
2670 return 0;
2671}
2672
Al Virod72f71e2009-02-20 05:58:47 +00002673static const struct dentry_operations proc_base_dentry_operations =
Eric W. Biederman801199c2006-10-02 02:18:48 -07002674{
2675 .d_revalidate = proc_base_revalidate,
2676 .d_delete = pid_delete_dentry,
2677};
2678
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002679static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002680 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002681{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002682 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002683 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002684 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002685 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002686
2687 /* Allocate the inode */
2688 error = ERR_PTR(-ENOMEM);
2689 inode = new_inode(dir->i_sb);
2690 if (!inode)
2691 goto out;
2692
2693 /* Initialize the inode */
2694 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002695 inode->i_ino = get_next_ino();
Eric W. Biederman801199c2006-10-02 02:18:48 -07002696 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002697
2698 /*
2699 * grab the reference to the task.
2700 */
Oleg Nesterov1a657f72006-10-02 02:18:59 -07002701 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002702 if (!ei->pid)
2703 goto out_iput;
2704
Eric W. Biederman801199c2006-10-02 02:18:48 -07002705 inode->i_mode = p->mode;
2706 if (S_ISDIR(inode->i_mode))
2707 inode->i_nlink = 2;
2708 if (S_ISLNK(inode->i_mode))
2709 inode->i_size = 64;
2710 if (p->iop)
2711 inode->i_op = p->iop;
2712 if (p->fop)
2713 inode->i_fop = p->fop;
2714 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002715 d_set_d_op(dentry, &proc_base_dentry_operations);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002716 d_add(dentry, inode);
2717 error = NULL;
2718out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002719 return error;
2720out_iput:
2721 iput(inode);
2722 goto out;
2723}
2724
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002725static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2726{
2727 struct dentry *error;
2728 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002729 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002730
2731 error = ERR_PTR(-ENOENT);
2732
2733 if (!task)
2734 goto out_no_task;
2735
2736 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002737 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2738 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002739 if (p->len != dentry->d_name.len)
2740 continue;
2741 if (!memcmp(dentry->d_name.name, p->name, p->len))
2742 break;
2743 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002744 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002745 goto out;
2746
2747 error = proc_base_instantiate(dir, dentry, task, p);
2748
2749out:
2750 put_task_struct(task);
2751out_no_task:
2752 return error;
2753}
2754
Eric Dumazetc5141e62007-05-08 00:26:15 -07002755static int proc_base_fill_cache(struct file *filp, void *dirent,
2756 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002757{
2758 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2759 proc_base_instantiate, task, p);
2760}
2761
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002762#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002763static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002764{
Andrea Righi940389b2008-07-28 00:48:12 +02002765 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002766 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002767
Andrea Righi59954772008-07-27 17:29:15 +02002768 if (whole && lock_task_sighand(task, &flags)) {
2769 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002770
Andrea Righi59954772008-07-27 17:29:15 +02002771 task_io_accounting_add(&acct, &task->signal->ioac);
2772 while_each_thread(task, t)
2773 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002774
Andrea Righi59954772008-07-27 17:29:15 +02002775 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002776 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002777 return sprintf(buffer,
2778 "rchar: %llu\n"
2779 "wchar: %llu\n"
2780 "syscr: %llu\n"
2781 "syscw: %llu\n"
2782 "read_bytes: %llu\n"
2783 "write_bytes: %llu\n"
2784 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002785 (unsigned long long)acct.rchar,
2786 (unsigned long long)acct.wchar,
2787 (unsigned long long)acct.syscr,
2788 (unsigned long long)acct.syscw,
2789 (unsigned long long)acct.read_bytes,
2790 (unsigned long long)acct.write_bytes,
2791 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002792}
Andrea Righi297c5d92008-07-25 01:48:49 -07002793
2794static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2795{
2796 return do_io_accounting(task, buffer, 0);
2797}
2798
2799static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2800{
2801 return do_io_accounting(task, buffer, 1);
2802}
2803#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002804
Kees Cook47830722008-10-06 03:11:58 +04002805static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2806 struct pid *pid, struct task_struct *task)
2807{
2808 seq_printf(m, "%08x\n", task->personality);
2809 return 0;
2810}
2811
Eric W. Biederman801199c2006-10-02 02:18:48 -07002812/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002813 * Thread groups
2814 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002815static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002816static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002817
Eric Dumazetc5141e62007-05-08 00:26:15 -07002818static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002819 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2820 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2821 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002822#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002823 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002824#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002825 REG("environ", S_IRUSR, proc_environ_operations),
2826 INF("auxv", S_IRUSR, proc_pid_auxv),
2827 ONE("status", S_IRUGO, proc_pid_status),
2828 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07002829 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002830#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002831 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002832#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002833#ifdef CONFIG_SCHED_AUTOGROUP
2834 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2835#endif
john stultz4614a696b2009-12-14 18:00:05 -08002836 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002837#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002838 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002839#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002840 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2841 ONE("stat", S_IRUGO, proc_tgid_stat),
2842 ONE("statm", S_IRUGO, proc_pid_statm),
2843 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002844#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002845 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002846#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002847 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2848 LNK("cwd", proc_cwd_link),
2849 LNK("root", proc_root_link),
2850 LNK("exe", proc_exe_link),
2851 REG("mounts", S_IRUGO, proc_mounts_operations),
2852 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2853 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002854#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002855 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2856 REG("smaps", S_IRUGO, proc_smaps_operations),
2857 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002858#endif
2859#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002860 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002861#endif
2862#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002863 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002864#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002865#ifdef CONFIG_STACKTRACE
2866 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002867#endif
2868#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002869 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002870#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002871#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002872 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002873#endif
Paul Menage8793d852007-10-18 23:39:39 -07002874#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002875 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002876#endif
Paul Menagea4243162007-10-18 23:39:35 -07002877#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002878 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002879#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002880 INF("oom_score", S_IRUGO, proc_oom_score),
2881 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002882 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002883#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002884 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2885 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002886#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002887#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002888 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002889#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002890#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002891 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002892#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002893#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002894 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002895#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002896};
2897
2898static int proc_tgid_base_readdir(struct file * filp,
2899 void * dirent, filldir_t filldir)
2900{
2901 return proc_pident_readdir(filp,dirent,filldir,
2902 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2903}
2904
Arjan van de Ven00977a52007-02-12 00:55:34 -08002905static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002906 .read = generic_read_dir,
2907 .readdir = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002908 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002909};
2910
2911static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002912 return proc_pident_lookup(dir, dentry,
2913 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002914}
2915
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002916static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002917 .lookup = proc_tgid_base_lookup,
2918 .getattr = pid_getattr,
2919 .setattr = proc_setattr,
2920};
2921
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002922static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002924 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002925 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002926 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Eric W. Biederman48e64842006-06-26 00:25:48 -07002928 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002929 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2930 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002931 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002932 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002933 d_drop(dentry);
2934 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Eric W. Biederman48e64842006-06-26 00:25:48 -07002937 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002938 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2939 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002940 if (!leader)
2941 goto out;
2942
2943 name.name = "task";
2944 name.len = strlen(name.name);
2945 dir = d_hash_and_lookup(leader, &name);
2946 if (!dir)
2947 goto out_put_leader;
2948
2949 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002950 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002951 dentry = d_hash_and_lookup(dir, &name);
2952 if (dentry) {
2953 shrink_dcache_parent(dentry);
2954 d_drop(dentry);
2955 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002957
2958 dput(dir);
2959out_put_leader:
2960 dput(leader);
2961out:
2962 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
Randy Dunlap0895e912007-10-21 21:00:10 -07002965/**
2966 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2967 * @task: task that should be flushed.
2968 *
2969 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002970 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002971 * in. This call is supposed to do all of this job.
2972 *
2973 * Looks in the dcache for
2974 * /proc/@pid
2975 * /proc/@tgid/task/@pid
2976 * if either directory is present flushes it and all of it'ts children
2977 * from the dcache.
2978 *
2979 * It is safe and reasonable to cache /proc entries for a task until
2980 * that task exits. After that they just clog up the dcache with
2981 * useless entries, possibly causing useful dcache entries to be
2982 * flushed instead. This routine is proved to flush those useless
2983 * dcache entries at process exit time.
2984 *
2985 * NOTE: This routine is just an optimization so it does not guarantee
2986 * that no dcache entries will exist at process exit time it
2987 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002988 */
2989
2990void proc_flush_task(struct task_struct *task)
2991{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002992 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002993 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002994 struct upid *upid;
2995
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002996 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002997 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002998
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002999 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003000 upid = &pid->numbers[i];
3001 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003002 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003003 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07003004
3005 upid = &pid->numbers[pid->level];
3006 if (upid->nr == 1)
3007 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003008}
3009
Adrian Bunk9711ef92006-12-06 20:38:31 -08003010static struct dentry *proc_pid_instantiate(struct inode *dir,
3011 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003012 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003013{
3014 struct dentry *error = ERR_PTR(-ENOENT);
3015 struct inode *inode;
3016
Eric W. Biederman61a28782006-10-02 02:18:49 -07003017 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003018 if (!inode)
3019 goto out;
3020
3021 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3022 inode->i_op = &proc_tgid_base_inode_operations;
3023 inode->i_fop = &proc_tgid_base_operations;
3024 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003025
3026 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
3027 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003028
Nick Pigginfb045ad2011-01-07 17:49:55 +11003029 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003030
3031 d_add(dentry, inode);
3032 /* Close the race of the process dying before we return the dentry */
3033 if (pid_revalidate(dentry, NULL))
3034 error = NULL;
3035out:
3036 return error;
3037}
3038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3040{
Dan Carpenter73d36462010-05-26 14:43:25 -07003041 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003044 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Eric W. Biederman801199c2006-10-02 02:18:48 -07003046 result = proc_base_lookup(dir, dentry);
3047 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
3048 goto out;
3049
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 tgid = name_to_int(dentry);
3051 if (tgid == ~0U)
3052 goto out;
3053
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003054 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003055 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003056 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 if (task)
3058 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003059 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (!task)
3061 goto out;
3062
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003063 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003064 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07003066 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003070 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003071 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003073struct tgid_iter {
3074 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003075 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003076};
3077static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3078{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003079 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003081 if (iter.task)
3082 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003083 rcu_read_lock();
3084retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003085 iter.task = NULL;
3086 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003087 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003088 iter.tgid = pid_nr_ns(pid, ns);
3089 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003090 /* What we to know is if the pid we have find is the
3091 * pid of a thread_group_leader. Testing for task
3092 * being a thread_group_leader is the obvious thing
3093 * todo but there is a window when it fails, due to
3094 * the pid transfer logic in de_thread.
3095 *
3096 * So we perform the straight forward test of seeing
3097 * if the pid we have found is the pid of a thread
3098 * group leader, and don't worry if the task we have
3099 * found doesn't happen to be a thread group leader.
3100 * As we don't care in the case of readdir.
3101 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003102 if (!iter.task || !has_group_leader_pid(iter.task)) {
3103 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003104 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003105 }
3106 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003108 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003109 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
3111
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003112#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Eric W. Biederman61a28782006-10-02 02:18:49 -07003114static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003115 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07003116{
3117 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003118 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003119 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003120 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003121}
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123/* for the /proc/ directory itself, after non-process stuff has been done */
3124int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
3125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003127 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003128 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003129 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Eric W. Biederman61a28782006-10-02 02:18:49 -07003131 if (!reaper)
3132 goto out_no_task;
3133
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003134 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07003135 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07003136 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07003137 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
3139
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003140 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003141 iter.task = NULL;
3142 iter.tgid = filp->f_pos - TGID_OFFSET;
3143 for (iter = next_tgid(ns, iter);
3144 iter.task;
3145 iter.tgid += 1, iter = next_tgid(ns, iter)) {
3146 filp->f_pos = iter.tgid + TGID_OFFSET;
3147 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
3148 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003149 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003152 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
3153out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07003154 put_task_struct(reaper);
3155out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 return 0;
3157}
3158
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003159/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003160 * Tasks
3161 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003162static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003163 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003164 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003165 REG("environ", S_IRUSR, proc_environ_operations),
3166 INF("auxv", S_IRUSR, proc_pid_auxv),
3167 ONE("status", S_IRUGO, proc_pid_status),
3168 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003169 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003170#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003171 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003172#endif
john stultz4614a696b2009-12-14 18:00:05 -08003173 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003174#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003175 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003176#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003177 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3178 ONE("stat", S_IRUGO, proc_tid_stat),
3179 ONE("statm", S_IRUGO, proc_pid_statm),
3180 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003181#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003182 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003183#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003184 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3185 LNK("cwd", proc_cwd_link),
3186 LNK("root", proc_root_link),
3187 LNK("exe", proc_exe_link),
3188 REG("mounts", S_IRUGO, proc_mounts_operations),
3189 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003190#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003191 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3192 REG("smaps", S_IRUGO, proc_smaps_operations),
3193 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003194#endif
3195#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003196 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003197#endif
3198#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003199 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003200#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003201#ifdef CONFIG_STACKTRACE
3202 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003203#endif
3204#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003205 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003206#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003207#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003208 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003209#endif
Paul Menage8793d852007-10-18 23:39:39 -07003210#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003211 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003212#endif
Paul Menagea4243162007-10-18 23:39:35 -07003213#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003214 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003215#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003216 INF("oom_score", S_IRUGO, proc_oom_score),
3217 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003218 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003219#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003220 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3221 REG("sessionid", S_IRUSR, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003222#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003223#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003224 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003225#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003226#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003227 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003228#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003229};
3230
3231static int proc_tid_base_readdir(struct file * filp,
3232 void * dirent, filldir_t filldir)
3233{
3234 return proc_pident_readdir(filp,dirent,filldir,
3235 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3236}
3237
3238static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003239 return proc_pident_lookup(dir, dentry,
3240 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003241}
3242
Arjan van de Ven00977a52007-02-12 00:55:34 -08003243static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003244 .read = generic_read_dir,
3245 .readdir = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003246 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003247};
3248
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003249static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003250 .lookup = proc_tid_base_lookup,
3251 .getattr = pid_getattr,
3252 .setattr = proc_setattr,
3253};
3254
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003255static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003256 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003257{
3258 struct dentry *error = ERR_PTR(-ENOENT);
3259 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003260 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003261
3262 if (!inode)
3263 goto out;
3264 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3265 inode->i_op = &proc_tid_base_inode_operations;
3266 inode->i_fop = &proc_tid_base_operations;
3267 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003268
3269 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3270 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003271
Nick Pigginfb045ad2011-01-07 17:49:55 +11003272 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003273
3274 d_add(dentry, inode);
3275 /* Close the race of the process dying before we return the dentry */
3276 if (pid_revalidate(dentry, NULL))
3277 error = NULL;
3278out:
3279 return error;
3280}
3281
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003282static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3283{
3284 struct dentry *result = ERR_PTR(-ENOENT);
3285 struct task_struct *task;
3286 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003287 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003288 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003289
3290 if (!leader)
3291 goto out_no_task;
3292
3293 tid = name_to_int(dentry);
3294 if (tid == ~0U)
3295 goto out;
3296
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003297 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003298 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003299 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003300 if (task)
3301 get_task_struct(task);
3302 rcu_read_unlock();
3303 if (!task)
3304 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003305 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003306 goto out_drop_task;
3307
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003308 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003309out_drop_task:
3310 put_task_struct(task);
3311out:
3312 put_task_struct(leader);
3313out_no_task:
3314 return result;
3315}
3316
3317/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003318 * Find the first tid of a thread group to return to user space.
3319 *
3320 * Usually this is just the thread group leader, but if the users
3321 * buffer was too small or there was a seek into the middle of the
3322 * directory we have more work todo.
3323 *
3324 * In the case of a short read we start with find_task_by_pid.
3325 *
3326 * In the case of a seek we start with the leader and walk nr
3327 * threads past it.
3328 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003329static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003330 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003331{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003332 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003333
Eric W. Biedermancc288732006-06-26 00:26:01 -07003334 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003335 /* Attempt to start with the pid of a thread */
3336 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003337 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003338 if (pos && (pos->group_leader == leader))
3339 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003340 }
3341
3342 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003343 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003344 if (nr && nr >= get_nr_threads(leader))
3345 goto out;
3346
3347 /* If we haven't found our starting place yet start
3348 * with the leader and walk nr threads forward.
3349 */
3350 for (pos = leader; nr > 0; --nr) {
3351 pos = next_thread(pos);
3352 if (pos == leader) {
3353 pos = NULL;
3354 goto out;
3355 }
3356 }
3357found:
3358 get_task_struct(pos);
3359out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003360 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003361 return pos;
3362}
3363
3364/*
3365 * Find the next thread in the thread list.
3366 * Return NULL if there is an error or no next thread.
3367 *
3368 * The reference to the input task_struct is released.
3369 */
3370static struct task_struct *next_tid(struct task_struct *start)
3371{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003372 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003373 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003374 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003375 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003376 if (thread_group_leader(pos))
3377 pos = NULL;
3378 else
3379 get_task_struct(pos);
3380 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003381 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003382 put_task_struct(start);
3383 return pos;
3384}
3385
Eric W. Biederman61a28782006-10-02 02:18:49 -07003386static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3387 struct task_struct *task, int tid)
3388{
3389 char name[PROC_NUMBUF];
3390 int len = snprintf(name, sizeof(name), "%d", tid);
3391 return proc_fill_cache(filp, dirent, filldir, name, len,
3392 proc_task_instantiate, task, NULL);
3393}
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395/* for the /proc/TGID/task/ directories */
3396static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3397{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003398 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003400 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003401 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 int retval = -ENOENT;
3403 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003404 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003405 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003407 task = get_proc_task(inode);
3408 if (!task)
3409 goto out_no_task;
3410 rcu_read_lock();
3411 if (pid_alive(task)) {
3412 leader = task->group_leader;
3413 get_task_struct(leader);
3414 }
3415 rcu_read_unlock();
3416 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003417 if (!leader)
3418 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 retval = 0;
3420
Linus Torvaldsee568b22009-03-17 10:02:35 -07003421 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 case 0:
3423 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003424 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003426 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 /* fall through */
3428 case 1:
3429 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003430 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003432 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 /* fall through */
3434 }
3435
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003436 /* f_version caches the tgid value that the last readdir call couldn't
3437 * return. lseek aka telldir automagically resets f_version to 0.
3438 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003439 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003440 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003441 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003442 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003443 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003444 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003445 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003446 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003447 /* returning this tgid failed, save it as the first
3448 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003449 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003450 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 }
3454out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003455 put_task_struct(leader);
3456out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return retval;
3458}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003459
3460static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3461{
3462 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003463 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003464 generic_fillattr(inode, stat);
3465
Eric W. Biederman99f89552006-06-26 00:25:55 -07003466 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003467 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003468 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003469 }
3470
3471 return 0;
3472}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003473
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003474static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003475 .lookup = proc_task_lookup,
3476 .getattr = proc_task_getattr,
3477 .setattr = proc_setattr,
3478};
3479
Arjan van de Ven00977a52007-02-12 00:55:34 -08003480static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003481 .read = generic_read_dir,
3482 .readdir = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003483 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003484};