blob: c282811020826d7c7553e197fdce11c8b45b6da6 [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;
Al Viroec6fd8a2011-02-15 22:22:54 -0500228 int err;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200229
Al Viroec6fd8a2011-02-15 22:22:54 -0500230 err = mutex_lock_killable(&task->signal->cred_guard_mutex);
231 if (err)
232 return ERR_PTR(err);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200233
234 mm = get_task_mm(task);
235 if (mm && mm != current->mm &&
236 !ptrace_may_access(task, PTRACE_MODE_READ)) {
237 mmput(mm);
Al Viroec6fd8a2011-02-15 22:22:54 -0500238 mm = ERR_PTR(-EACCES);
Oleg Nesterov13f0fea2009-06-23 21:25:32 +0200239 }
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700240 mutex_unlock(&task->signal->cred_guard_mutex);
Oleg Nesterov704b8362009-07-10 03:27:40 +0200241
Al Viro831830b2008-01-02 14:09:57 +0000242 return mm;
Al Viro831830b2008-01-02 14:09:57 +0000243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static int proc_pid_cmdline(struct task_struct *task, char * buffer)
246{
247 int res = 0;
248 unsigned int len;
249 struct mm_struct *mm = get_task_mm(task);
250 if (!mm)
251 goto out;
252 if (!mm->arg_end)
253 goto out_mm; /* Shh! No looking before we're done */
254
255 len = mm->arg_end - mm->arg_start;
256
257 if (len > PAGE_SIZE)
258 len = PAGE_SIZE;
259
260 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
261
262 // If the nul at the end of args has been overwritten, then
263 // assume application is using setproctitle(3).
264 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
265 len = strnlen(buffer, res);
266 if (len < res) {
267 res = len;
268 } else {
269 len = mm->env_end - mm->env_start;
270 if (len > PAGE_SIZE - res)
271 len = PAGE_SIZE - res;
272 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
273 res = strnlen(buffer, res);
274 }
275 }
276out_mm:
277 mmput(mm);
278out:
279 return res;
280}
281
282static int proc_pid_auxv(struct task_struct *task, char *buffer)
283{
284 int res = 0;
285 struct mm_struct *mm = get_task_mm(task);
286 if (mm) {
287 unsigned int nwords = 0;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300288 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 nwords += 2;
Hannes Ederdfe6b7d2008-12-30 18:49:13 +0300290 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 res = nwords * sizeof(mm->saved_auxv[0]);
292 if (res > PAGE_SIZE)
293 res = PAGE_SIZE;
294 memcpy(buffer, mm->saved_auxv, res);
295 mmput(mm);
296 }
297 return res;
298}
299
300
301#ifdef CONFIG_KALLSYMS
302/*
303 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
304 * Returns the resolved symbol. If that fails, simply return the address.
305 */
306static int proc_pid_wchan(struct task_struct *task, char *buffer)
307{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700308 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700309 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 wchan = get_wchan(task);
312
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700313 if (lookup_symbol_name(wchan, symname) < 0)
Jake Edgef83ce3e2009-05-04 12:51:14 -0600314 if (!ptrace_may_access(task, PTRACE_MODE_READ))
315 return 0;
316 else
317 return sprintf(buffer, "%lu", wchan);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700318 else
319 return sprintf(buffer, "%s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321#endif /* CONFIG_KALLSYMS */
322
Ken Chen2ec220e2008-11-10 11:26:08 +0300323#ifdef CONFIG_STACKTRACE
324
325#define MAX_STACK_TRACE_DEPTH 64
326
327static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
328 struct pid *pid, struct task_struct *task)
329{
330 struct stack_trace trace;
331 unsigned long *entries;
332 int i;
333
334 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
335 if (!entries)
336 return -ENOMEM;
337
338 trace.nr_entries = 0;
339 trace.max_entries = MAX_STACK_TRACE_DEPTH;
340 trace.entries = entries;
341 trace.skip = 0;
342 save_stack_trace_tsk(task, &trace);
343
344 for (i = 0; i < trace.nr_entries; i++) {
345 seq_printf(m, "[<%p>] %pS\n",
346 (void *)entries[i], (void *)entries[i]);
347 }
348 kfree(entries);
349
350 return 0;
351}
352#endif
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#ifdef CONFIG_SCHEDSTATS
355/*
356 * Provides /proc/PID/schedstat
357 */
358static int proc_pid_schedstat(struct task_struct *task, char *buffer)
359{
Balbir Singh172ba842007-07-09 18:52:00 +0200360 return sprintf(buffer, "%llu %llu %lu\n",
Ingo Molnar826e08b2008-12-22 07:37:41 +0100361 (unsigned long long)task->se.sum_exec_runtime,
362 (unsigned long long)task->sched_info.run_delay,
Ingo Molnar2d723762007-10-15 17:00:12 +0200363 task->sched_info.pcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365#endif
366
Arjan van de Ven97455122008-01-25 21:08:34 +0100367#ifdef CONFIG_LATENCYTOP
368static int lstats_show_proc(struct seq_file *m, void *v)
369{
370 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800371 struct inode *inode = m->private;
372 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100373
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800374 if (!task)
375 return -ESRCH;
376 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100377 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800378 struct latency_record *lr = &task->latency_record[i];
379 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100380 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800381 seq_printf(m, "%i %li %li",
382 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100383 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800384 unsigned long bt = lr->backtrace[q];
385 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100386 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800387 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100388 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800389 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100390 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800391 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100392 }
393
394 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800395 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100396 return 0;
397}
398
399static int lstats_open(struct inode *inode, struct file *file)
400{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800401 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800402}
403
Arjan van de Ven97455122008-01-25 21:08:34 +0100404static ssize_t lstats_write(struct file *file, const char __user *buf,
405 size_t count, loff_t *offs)
406{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800407 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100408
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800409 if (!task)
410 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100411 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800412 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100413
414 return count;
415}
416
417static const struct file_operations proc_lstats_operations = {
418 .open = lstats_open,
419 .read = seq_read,
420 .write = lstats_write,
421 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800422 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100423};
424
425#endif
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static int proc_oom_score(struct task_struct *task, char *buffer)
428{
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200429 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700431 read_lock(&tasklist_lock);
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200432 if (pid_alive(task))
David Rientjesa63d83f2010-08-09 17:19:46 -0700433 points = oom_badness(task, NULL, NULL,
434 totalram_pages + total_swap_pages);
Alexey Dobriyan19c5d452007-05-08 00:26:46 -0700435 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return sprintf(buffer, "%lu\n", points);
437}
438
Neil Hormand85f50d2007-10-18 23:40:37 -0700439struct limit_names {
440 char *name;
441 char *unit;
442};
443
444static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700445 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700446 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
447 [RLIMIT_DATA] = {"Max data size", "bytes"},
448 [RLIMIT_STACK] = {"Max stack size", "bytes"},
449 [RLIMIT_CORE] = {"Max core file size", "bytes"},
450 [RLIMIT_RSS] = {"Max resident set", "bytes"},
451 [RLIMIT_NPROC] = {"Max processes", "processes"},
452 [RLIMIT_NOFILE] = {"Max open files", "files"},
453 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
454 [RLIMIT_AS] = {"Max address space", "bytes"},
455 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
456 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
457 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
458 [RLIMIT_NICE] = {"Max nice priority", NULL},
459 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800460 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700461};
462
463/* Display limits for a process */
464static int proc_pid_limits(struct task_struct *task, char *buffer)
465{
466 unsigned int i;
467 int count = 0;
468 unsigned long flags;
469 char *bufptr = buffer;
470
471 struct rlimit rlim[RLIM_NLIMITS];
472
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400473 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700474 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700475 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
476 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700477
478 /*
479 * print the file header
480 */
481 count += sprintf(&bufptr[count], "%-25s %-20s %-20s %-10s\n",
482 "Limit", "Soft Limit", "Hard Limit", "Units");
483
484 for (i = 0; i < RLIM_NLIMITS; i++) {
485 if (rlim[i].rlim_cur == RLIM_INFINITY)
486 count += sprintf(&bufptr[count], "%-25s %-20s ",
487 lnames[i].name, "unlimited");
488 else
489 count += sprintf(&bufptr[count], "%-25s %-20lu ",
490 lnames[i].name, rlim[i].rlim_cur);
491
492 if (rlim[i].rlim_max == RLIM_INFINITY)
493 count += sprintf(&bufptr[count], "%-20s ", "unlimited");
494 else
495 count += sprintf(&bufptr[count], "%-20lu ",
496 rlim[i].rlim_max);
497
498 if (lnames[i].unit)
499 count += sprintf(&bufptr[count], "%-10s\n",
500 lnames[i].unit);
501 else
502 count += sprintf(&bufptr[count], "\n");
503 }
504
505 return count;
506}
507
Roland McGrathebcb6732008-07-25 19:46:00 -0700508#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
509static int proc_pid_syscall(struct task_struct *task, char *buffer)
510{
511 long nr;
512 unsigned long args[6], sp, pc;
513
514 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
515 return sprintf(buffer, "running\n");
516
517 if (nr < 0)
518 return sprintf(buffer, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
519
520 return sprintf(buffer,
521 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
522 nr,
523 args[0], args[1], args[2], args[3], args[4], args[5],
524 sp, pc);
525}
526#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/************************************************************************/
529/* Here the fs part begins */
530/************************************************************************/
531
532/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700533static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700535 struct task_struct *task;
536 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700537 /* Allow access to a task's file descriptors if it is us or we
538 * may use ptrace attach to the process and find out that
539 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700540 */
541 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700542 if (task) {
Stephen Smalley006ebb42008-05-19 08:32:49 -0400543 allowed = ptrace_may_access(task, PTRACE_MODE_READ);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700544 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700545 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700546 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700549static int proc_setattr(struct dentry *dentry, struct iattr *attr)
550{
551 int error;
552 struct inode *inode = dentry->d_inode;
553
554 if (attr->ia_valid & ATTR_MODE)
555 return -EPERM;
556
557 error = inode_change_ok(inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200558 if (error)
559 return error;
560
561 if ((attr->ia_valid & ATTR_SIZE) &&
562 attr->ia_size != i_size_read(inode)) {
563 error = vmtruncate(inode, attr->ia_size);
564 if (error)
565 return error;
566 }
567
568 setattr_copy(inode, attr);
569 mark_inode_dirty(inode);
570 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700571}
572
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800573static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700574 .setattr = proc_setattr,
575};
576
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100577static int mounts_open_common(struct inode *inode, struct file *file,
578 const struct seq_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700580 struct task_struct *task = get_proc_task(inode);
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700581 struct nsproxy *nsp;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800582 struct mnt_namespace *ns = NULL;
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100583 struct path root;
Al Viro5addc5d2005-11-07 17:15:49 -0500584 struct proc_mounts *p;
585 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Eric W. Biederman99f89552006-06-26 00:25:55 -0700587 if (task) {
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700588 rcu_read_lock();
589 nsp = task_nsproxy(task);
590 if (nsp) {
591 ns = nsp->mnt_ns;
Alexey Dobriyan863c4702007-01-26 00:56:53 -0800592 if (ns)
593 get_mnt_ns(ns);
594 }
Pavel Emelyanovcf7b7082007-10-18 23:39:54 -0700595 rcu_read_unlock();
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200596 if (ns && get_task_root(task, &root) == 0)
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000597 ret = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700598 put_task_struct(task);
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100601 if (!ns)
602 goto err;
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000603 if (ret)
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100604 goto err_put_ns;
605
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100606 ret = -ENOMEM;
607 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
608 if (!p)
609 goto err_put_path;
610
611 file->private_data = &p->m;
612 ret = seq_open(file, op);
613 if (ret)
614 goto err_free;
615
616 p->m.private = p;
617 p->ns = ns;
618 p->root = root;
619 p->event = ns->event;
620
621 return 0;
622
623 err_free:
624 kfree(p);
625 err_put_path:
626 path_put(&root);
627 err_put_ns:
628 put_mnt_ns(ns);
629 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return ret;
631}
632
633static int mounts_release(struct inode *inode, struct file *file)
634{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100635 struct proc_mounts *p = file->private_data;
636 path_put(&p->root);
637 put_mnt_ns(p->ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return seq_release(inode, file);
639}
640
Al Viro5addc5d2005-11-07 17:15:49 -0500641static unsigned mounts_poll(struct file *file, poll_table *wait)
642{
643 struct proc_mounts *p = file->private_data;
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900644 unsigned res = POLLIN | POLLRDNORM;
Al Viro5addc5d2005-11-07 17:15:49 -0500645
Al Viro9f5596a2010-02-05 00:40:25 -0500646 poll_wait(file, &p->ns->poll, wait);
647 if (mnt_had_events(p))
KOSAKI Motohiro31b07092009-04-09 13:57:59 +0900648 res |= POLLERR | POLLPRI;
Al Viro5addc5d2005-11-07 17:15:49 -0500649
650 return res;
651}
652
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100653static int mounts_open(struct inode *inode, struct file *file)
654{
655 return mounts_open_common(inode, file, &mounts_op);
656}
657
Arjan van de Ven00977a52007-02-12 00:55:34 -0800658static const struct file_operations proc_mounts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 .open = mounts_open,
660 .read = seq_read,
661 .llseek = seq_lseek,
662 .release = mounts_release,
Al Viro5addc5d2005-11-07 17:15:49 -0500663 .poll = mounts_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664};
665
Ram Pai2d4d4862008-03-27 13:06:25 +0100666static int mountinfo_open(struct inode *inode, struct file *file)
667{
668 return mounts_open_common(inode, file, &mountinfo_op);
669}
670
671static const struct file_operations proc_mountinfo_operations = {
672 .open = mountinfo_open,
673 .read = seq_read,
674 .llseek = seq_lseek,
675 .release = mounts_release,
676 .poll = mounts_poll,
677};
678
Chuck Leverb4629fe2006-03-20 13:44:12 -0500679static int mountstats_open(struct inode *inode, struct file *file)
680{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100681 return mounts_open_common(inode, file, &mountstats_op);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500682}
683
Arjan van de Ven00977a52007-02-12 00:55:34 -0800684static const struct file_operations proc_mountstats_operations = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500685 .open = mountstats_open,
686 .read = seq_read,
687 .llseek = seq_lseek,
688 .release = mounts_release,
689};
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
692
693static ssize_t proc_info_read(struct file * file, char __user * buf,
694 size_t count, loff_t *ppos)
695{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800696 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 unsigned long page;
698 ssize_t length;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700699 struct task_struct *task = get_proc_task(inode);
700
701 length = -ESRCH;
702 if (!task)
703 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (count > PROC_BLOCK_SIZE)
706 count = PROC_BLOCK_SIZE;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700707
708 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700709 if (!(page = __get_free_page(GFP_TEMPORARY)))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700710 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 length = PROC_I(inode)->op.proc_read(task, (char*)page);
713
714 if (length >= 0)
715 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
716 free_page(page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700717out:
718 put_task_struct(task);
719out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return length;
721}
722
Arjan van de Ven00977a52007-02-12 00:55:34 -0800723static const struct file_operations proc_info_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .read = proc_info_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100725 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726};
727
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800728static int proc_single_show(struct seq_file *m, void *v)
729{
730 struct inode *inode = m->private;
731 struct pid_namespace *ns;
732 struct pid *pid;
733 struct task_struct *task;
734 int ret;
735
736 ns = inode->i_sb->s_fs_info;
737 pid = proc_pid(inode);
738 task = get_pid_task(pid, PIDTYPE_PID);
739 if (!task)
740 return -ESRCH;
741
742 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
743
744 put_task_struct(task);
745 return ret;
746}
747
748static int proc_single_open(struct inode *inode, struct file *filp)
749{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800750 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800751}
752
753static const struct file_operations proc_single_file_operations = {
754 .open = proc_single_open,
755 .read = seq_read,
756 .llseek = seq_lseek,
757 .release = single_release,
758};
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760static int mem_open(struct inode* inode, struct file* file)
761{
762 file->private_data = (void*)((long)current->self_exec_id);
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700763 /* OK to pass negative loff_t, we can catch out-of-range */
764 file->f_mode |= FMODE_UNSIGNED_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return 0;
766}
767
768static ssize_t mem_read(struct file * file, char __user * buf,
769 size_t count, loff_t *ppos)
770{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800771 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 char *page;
773 unsigned long src = *ppos;
774 int ret = -ESRCH;
775 struct mm_struct *mm;
776
Eric W. Biederman99f89552006-06-26 00:25:55 -0700777 if (!task)
778 goto out_no_task;
779
Roland McGrath638fa202008-04-29 01:01:38 -0700780 if (check_mem_permission(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto out;
782
783 ret = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700784 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (!page)
786 goto out;
787
788 ret = 0;
789
790 mm = get_task_mm(task);
791 if (!mm)
792 goto out_free;
793
794 ret = -EIO;
795
796 if (file->private_data != (void*)((long)current->self_exec_id))
797 goto out_put;
798
799 ret = 0;
800
801 while (count > 0) {
802 int this_len, retval;
803
804 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
805 retval = access_process_vm(task, src, page, this_len, 0);
Roland McGrath638fa202008-04-29 01:01:38 -0700806 if (!retval || check_mem_permission(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!ret)
808 ret = -EIO;
809 break;
810 }
811
812 if (copy_to_user(buf, page, retval)) {
813 ret = -EFAULT;
814 break;
815 }
816
817 ret += retval;
818 src += retval;
819 buf += retval;
820 count -= retval;
821 }
822 *ppos = src;
823
824out_put:
825 mmput(mm);
826out_free:
827 free_page((unsigned long) page);
828out:
Eric W. Biederman99f89552006-06-26 00:25:55 -0700829 put_task_struct(task);
830out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return ret;
832}
833
834#define mem_write NULL
835
836#ifndef mem_write
837/* This is a security hazard */
Glauber de Oliveira Costa63967fa2007-02-20 13:58:12 -0800838static ssize_t mem_write(struct file * file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 size_t count, loff_t *ppos)
840{
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700841 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 char *page;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800843 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 unsigned long dst = *ppos;
845
Eric W. Biederman99f89552006-06-26 00:25:55 -0700846 copied = -ESRCH;
847 if (!task)
848 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Roland McGrath638fa202008-04-29 01:01:38 -0700850 if (check_mem_permission(task))
Eric W. Biederman99f89552006-06-26 00:25:55 -0700851 goto out;
852
853 copied = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -0700854 page = (char *)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!page)
Eric W. Biederman99f89552006-06-26 00:25:55 -0700856 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700858 copied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 while (count > 0) {
860 int this_len, retval;
861
862 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
863 if (copy_from_user(page, buf, this_len)) {
864 copied = -EFAULT;
865 break;
866 }
867 retval = access_process_vm(task, dst, page, this_len, 1);
868 if (!retval) {
869 if (!copied)
870 copied = -EIO;
871 break;
872 }
873 copied += retval;
874 buf += retval;
875 dst += retval;
876 count -= retval;
877 }
878 *ppos = dst;
879 free_page((unsigned long) page);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700880out:
881 put_task_struct(task);
882out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return copied;
884}
885#endif
886
Matt Mackall85863e42008-02-04 22:29:04 -0800887loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 switch (orig) {
890 case 0:
891 file->f_pos = offset;
892 break;
893 case 1:
894 file->f_pos += offset;
895 break;
896 default:
897 return -EINVAL;
898 }
899 force_successful_syscall_return();
900 return file->f_pos;
901}
902
Arjan van de Ven00977a52007-02-12 00:55:34 -0800903static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 .llseek = mem_lseek,
905 .read = mem_read,
906 .write = mem_write,
907 .open = mem_open,
908};
909
James Pearson315e28c2007-10-16 23:30:17 -0700910static ssize_t environ_read(struct file *file, char __user *buf,
911 size_t count, loff_t *ppos)
912{
913 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
914 char *page;
915 unsigned long src = *ppos;
916 int ret = -ESRCH;
917 struct mm_struct *mm;
918
919 if (!task)
920 goto out_no_task;
921
Stephen Smalley006ebb42008-05-19 08:32:49 -0400922 if (!ptrace_may_access(task, PTRACE_MODE_READ))
James Pearson315e28c2007-10-16 23:30:17 -0700923 goto out;
924
925 ret = -ENOMEM;
926 page = (char *)__get_free_page(GFP_TEMPORARY);
927 if (!page)
928 goto out;
929
930 ret = 0;
931
932 mm = get_task_mm(task);
933 if (!mm)
934 goto out_free;
935
936 while (count > 0) {
937 int this_len, retval, max_len;
938
939 this_len = mm->env_end - (mm->env_start + src);
940
941 if (this_len <= 0)
942 break;
943
944 max_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
945 this_len = (this_len > max_len) ? max_len : this_len;
946
947 retval = access_process_vm(task, (mm->env_start + src),
948 page, this_len, 0);
949
950 if (retval <= 0) {
951 ret = retval;
952 break;
953 }
954
955 if (copy_to_user(buf, page, retval)) {
956 ret = -EFAULT;
957 break;
958 }
959
960 ret += retval;
961 src += retval;
962 buf += retval;
963 count -= retval;
964 }
965 *ppos = src;
966
967 mmput(mm);
968out_free:
969 free_page((unsigned long) page);
970out:
971 put_task_struct(task);
972out_no_task:
973 return ret;
974}
975
976static const struct file_operations proc_environ_operations = {
977 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100978 .llseek = generic_file_llseek,
James Pearson315e28c2007-10-16 23:30:17 -0700979};
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981static ssize_t oom_adjust_read(struct file *file, char __user *buf,
982 size_t count, loff_t *ppos)
983{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800984 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Eric W. Biederman8578cea2006-06-26 00:25:54 -0700985 char buffer[PROC_NUMBUF];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 size_t len;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700987 int oom_adjust = OOM_DISABLE;
988 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Eric W. Biederman99f89552006-06-26 00:25:55 -0700990 if (!task)
991 return -ESRCH;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -0700992
993 if (lock_task_sighand(task, &flags)) {
994 oom_adjust = task->signal->oom_adj;
995 unlock_task_sighand(task, &flags);
996 }
997
Eric W. Biederman99f89552006-06-26 00:25:55 -0700998 put_task_struct(task);
999
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001000 len = snprintf(buffer, sizeof(buffer), "%i\n", oom_adjust);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001001
1002 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
1006 size_t count, loff_t *ppos)
1007{
Eric W. Biederman99f89552006-06-26 00:25:55 -07001008 struct task_struct *task;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001009 char buffer[PROC_NUMBUF];
1010 long oom_adjust;
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001011 unsigned long flags;
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001012 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Eric W. Biederman8578cea2006-06-26 00:25:54 -07001014 memset(buffer, 0, sizeof(buffer));
1015 if (count > sizeof(buffer) - 1)
1016 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001017 if (copy_from_user(buffer, buf, count)) {
1018 err = -EFAULT;
1019 goto out;
1020 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001021
1022 err = strict_strtol(strstrip(buffer), 0, &oom_adjust);
1023 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001024 goto out;
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001025 if ((oom_adjust < OOM_ADJUST_MIN || oom_adjust > OOM_ADJUST_MAX) &&
David Rientjes723548b2010-10-26 14:21:25 -07001026 oom_adjust != OOM_DISABLE) {
1027 err = -EINVAL;
1028 goto out;
1029 }
KOSAKI Motohiro5d863b82009-09-21 17:03:16 -07001030
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001031 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001032 if (!task) {
1033 err = -ESRCH;
1034 goto out;
1035 }
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001036
Ying Han3d5992d2010-10-26 14:21:23 -07001037 task_lock(task);
1038 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001039 err = -EINVAL;
1040 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001041 }
1042
David Rientjesd19d5472010-10-26 14:21:26 -07001043 if (!lock_task_sighand(task, &flags)) {
1044 err = -ESRCH;
1045 goto err_task_lock;
1046 }
1047
1048 if (oom_adjust < task->signal->oom_adj && !capable(CAP_SYS_RESOURCE)) {
1049 err = -EACCES;
1050 goto err_sighand;
1051 }
1052
Ying Han3d5992d2010-10-26 14:21:23 -07001053 if (oom_adjust != task->signal->oom_adj) {
1054 if (oom_adjust == OOM_DISABLE)
1055 atomic_inc(&task->mm->oom_disable_count);
1056 if (task->signal->oom_adj == OOM_DISABLE)
1057 atomic_dec(&task->mm->oom_disable_count);
1058 }
1059
David Rientjes51b1bd22010-08-09 17:19:47 -07001060 /*
1061 * Warn that /proc/pid/oom_adj is deprecated, see
1062 * Documentation/feature-removal-schedule.txt.
1063 */
1064 printk_once(KERN_WARNING "%s (%d): /proc/%d/oom_adj is deprecated, "
1065 "please use /proc/%d/oom_score_adj instead.\n",
1066 current->comm, task_pid_nr(current),
1067 task_pid_nr(task), task_pid_nr(task));
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001068 task->signal->oom_adj = oom_adjust;
David Rientjesa63d83f2010-08-09 17:19:46 -07001069 /*
1070 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1071 * value is always attainable.
1072 */
1073 if (task->signal->oom_adj == OOM_ADJUST_MAX)
1074 task->signal->oom_score_adj = OOM_SCORE_ADJ_MAX;
1075 else
1076 task->signal->oom_score_adj = (oom_adjust * OOM_SCORE_ADJ_MAX) /
1077 -OOM_DISABLE;
David Rientjes723548b2010-10-26 14:21:25 -07001078err_sighand:
KOSAKI Motohiro28b83c52009-09-21 17:03:13 -07001079 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001080err_task_lock:
1081 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001082 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001083out:
1084 return err < 0 ? err : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Arjan van de Ven00977a52007-02-12 00:55:34 -08001087static const struct file_operations proc_oom_adjust_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 .read = oom_adjust_read,
1089 .write = oom_adjust_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001090 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091};
1092
David Rientjesa63d83f2010-08-09 17:19:46 -07001093static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1094 size_t count, loff_t *ppos)
1095{
1096 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
1097 char buffer[PROC_NUMBUF];
1098 int oom_score_adj = OOM_SCORE_ADJ_MIN;
1099 unsigned long flags;
1100 size_t len;
1101
1102 if (!task)
1103 return -ESRCH;
1104 if (lock_task_sighand(task, &flags)) {
1105 oom_score_adj = task->signal->oom_score_adj;
1106 unlock_task_sighand(task, &flags);
1107 }
1108 put_task_struct(task);
1109 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_score_adj);
1110 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1111}
1112
1113static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1114 size_t count, loff_t *ppos)
1115{
1116 struct task_struct *task;
1117 char buffer[PROC_NUMBUF];
1118 unsigned long flags;
1119 long oom_score_adj;
1120 int err;
1121
1122 memset(buffer, 0, sizeof(buffer));
1123 if (count > sizeof(buffer) - 1)
1124 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001125 if (copy_from_user(buffer, buf, count)) {
1126 err = -EFAULT;
1127 goto out;
1128 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001129
1130 err = strict_strtol(strstrip(buffer), 0, &oom_score_adj);
1131 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001132 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001133 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001134 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1135 err = -EINVAL;
1136 goto out;
1137 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001138
1139 task = get_proc_task(file->f_path.dentry->d_inode);
David Rientjes723548b2010-10-26 14:21:25 -07001140 if (!task) {
1141 err = -ESRCH;
1142 goto out;
1143 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001144
Ying Han3d5992d2010-10-26 14:21:23 -07001145 task_lock(task);
1146 if (!task->mm) {
David Rientjes723548b2010-10-26 14:21:25 -07001147 err = -EINVAL;
1148 goto err_task_lock;
Ying Han3d5992d2010-10-26 14:21:23 -07001149 }
David Rientjesd19d5472010-10-26 14:21:26 -07001150
1151 if (!lock_task_sighand(task, &flags)) {
1152 err = -ESRCH;
1153 goto err_task_lock;
1154 }
1155
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001156 if (oom_score_adj < task->signal->oom_score_adj_min &&
David Rientjesd19d5472010-10-26 14:21:26 -07001157 !capable(CAP_SYS_RESOURCE)) {
1158 err = -EACCES;
1159 goto err_sighand;
1160 }
1161
Ying Han3d5992d2010-10-26 14:21:23 -07001162 if (oom_score_adj != task->signal->oom_score_adj) {
1163 if (oom_score_adj == OOM_SCORE_ADJ_MIN)
1164 atomic_inc(&task->mm->oom_disable_count);
1165 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1166 atomic_dec(&task->mm->oom_disable_count);
1167 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001168 task->signal->oom_score_adj = oom_score_adj;
Mandeep Singh Bainesdabb16f2011-01-13 15:46:05 -08001169 if (has_capability_noaudit(current, CAP_SYS_RESOURCE))
1170 task->signal->oom_score_adj_min = oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001171 /*
1172 * Scale /proc/pid/oom_adj appropriately ensuring that OOM_DISABLE is
1173 * always attainable.
1174 */
1175 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MIN)
1176 task->signal->oom_adj = OOM_DISABLE;
1177 else
1178 task->signal->oom_adj = (oom_score_adj * OOM_ADJUST_MAX) /
1179 OOM_SCORE_ADJ_MAX;
David Rientjes723548b2010-10-26 14:21:25 -07001180err_sighand:
David Rientjesa63d83f2010-08-09 17:19:46 -07001181 unlock_task_sighand(task, &flags);
David Rientjesd19d5472010-10-26 14:21:26 -07001182err_task_lock:
1183 task_unlock(task);
David Rientjesa63d83f2010-08-09 17:19:46 -07001184 put_task_struct(task);
David Rientjes723548b2010-10-26 14:21:25 -07001185out:
1186 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001187}
1188
1189static const struct file_operations proc_oom_score_adj_operations = {
1190 .read = oom_score_adj_read,
1191 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001192 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001193};
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195#ifdef CONFIG_AUDITSYSCALL
1196#define TMPBUFLEN 21
1197static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1198 size_t count, loff_t *ppos)
1199{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001200 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07001201 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 ssize_t length;
1203 char tmpbuf[TMPBUFLEN];
1204
Eric W. Biederman99f89552006-06-26 00:25:55 -07001205 if (!task)
1206 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Al Viro0c11b942008-01-10 04:20:52 -05001208 audit_get_loginuid(task));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001209 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1211}
1212
1213static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1214 size_t count, loff_t *ppos)
1215{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001216 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 char *page, *tmp;
1218 ssize_t length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 uid_t loginuid;
1220
1221 if (!capable(CAP_AUDIT_CONTROL))
1222 return -EPERM;
1223
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001224 rcu_read_lock();
1225 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1226 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001228 }
1229 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Al Viroe0182902006-05-18 08:28:02 -04001231 if (count >= PAGE_SIZE)
1232 count = PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 if (*ppos != 0) {
1235 /* No partial writes. */
1236 return -EINVAL;
1237 }
Mel Gormane12ba742007-10-16 01:25:52 -07001238 page = (char*)__get_free_page(GFP_TEMPORARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (!page)
1240 return -ENOMEM;
1241 length = -EFAULT;
1242 if (copy_from_user(page, buf, count))
1243 goto out_free_page;
1244
Al Viroe0182902006-05-18 08:28:02 -04001245 page[count] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 loginuid = simple_strtoul(page, &tmp, 10);
1247 if (tmp == page) {
1248 length = -EINVAL;
1249 goto out_free_page;
1250
1251 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07001252 length = audit_set_loginuid(current, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (likely(length == 0))
1254 length = count;
1255
1256out_free_page:
1257 free_page((unsigned long) page);
1258 return length;
1259}
1260
Arjan van de Ven00977a52007-02-12 00:55:34 -08001261static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 .read = proc_loginuid_read,
1263 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001264 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265};
Eric Paris1e0bd752008-03-13 08:15:31 -04001266
1267static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1268 size_t count, loff_t *ppos)
1269{
1270 struct inode * inode = file->f_path.dentry->d_inode;
1271 struct task_struct *task = get_proc_task(inode);
1272 ssize_t length;
1273 char tmpbuf[TMPBUFLEN];
1274
1275 if (!task)
1276 return -ESRCH;
1277 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1278 audit_get_sessionid(task));
1279 put_task_struct(task);
1280 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1281}
1282
1283static const struct file_operations proc_sessionid_operations = {
1284 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001285 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001286};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287#endif
1288
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001289#ifdef CONFIG_FAULT_INJECTION
1290static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1291 size_t count, loff_t *ppos)
1292{
1293 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
1294 char buffer[PROC_NUMBUF];
1295 size_t len;
1296 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001297
1298 if (!task)
1299 return -ESRCH;
1300 make_it_fail = task->make_it_fail;
1301 put_task_struct(task);
1302
1303 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001304
1305 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001306}
1307
1308static ssize_t proc_fault_inject_write(struct file * file,
1309 const char __user * buf, size_t count, loff_t *ppos)
1310{
1311 struct task_struct *task;
1312 char buffer[PROC_NUMBUF], *end;
1313 int make_it_fail;
1314
1315 if (!capable(CAP_SYS_RESOURCE))
1316 return -EPERM;
1317 memset(buffer, 0, sizeof(buffer));
1318 if (count > sizeof(buffer) - 1)
1319 count = sizeof(buffer) - 1;
1320 if (copy_from_user(buffer, buf, count))
1321 return -EFAULT;
Vincent Licba8aaf2009-09-22 16:45:38 -07001322 make_it_fail = simple_strtol(strstrip(buffer), &end, 0);
1323 if (*end)
1324 return -EINVAL;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001325 task = get_proc_task(file->f_dentry->d_inode);
1326 if (!task)
1327 return -ESRCH;
1328 task->make_it_fail = make_it_fail;
1329 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001330
1331 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001332}
1333
Arjan van de Ven00977a52007-02-12 00:55:34 -08001334static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001335 .read = proc_fault_inject_read,
1336 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001337 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001338};
1339#endif
1340
Arjan van de Ven97455122008-01-25 21:08:34 +01001341
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001342#ifdef CONFIG_SCHED_DEBUG
1343/*
1344 * Print out various scheduling related per-task fields:
1345 */
1346static int sched_show(struct seq_file *m, void *v)
1347{
1348 struct inode *inode = m->private;
1349 struct task_struct *p;
1350
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001351 p = get_proc_task(inode);
1352 if (!p)
1353 return -ESRCH;
1354 proc_sched_show_task(p, m);
1355
1356 put_task_struct(p);
1357
1358 return 0;
1359}
1360
1361static ssize_t
1362sched_write(struct file *file, const char __user *buf,
1363 size_t count, loff_t *offset)
1364{
1365 struct inode *inode = file->f_path.dentry->d_inode;
1366 struct task_struct *p;
1367
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001368 p = get_proc_task(inode);
1369 if (!p)
1370 return -ESRCH;
1371 proc_sched_set_task(p);
1372
1373 put_task_struct(p);
1374
1375 return count;
1376}
1377
1378static int sched_open(struct inode *inode, struct file *filp)
1379{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001380 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001381}
1382
1383static const struct file_operations proc_pid_sched_operations = {
1384 .open = sched_open,
1385 .read = seq_read,
1386 .write = sched_write,
1387 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001388 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001389};
1390
1391#endif
1392
Mike Galbraith5091faa2010-11-30 14:18:03 +01001393#ifdef CONFIG_SCHED_AUTOGROUP
1394/*
1395 * Print out autogroup related information:
1396 */
1397static int sched_autogroup_show(struct seq_file *m, void *v)
1398{
1399 struct inode *inode = m->private;
1400 struct task_struct *p;
1401
1402 p = get_proc_task(inode);
1403 if (!p)
1404 return -ESRCH;
1405 proc_sched_autogroup_show_task(p, m);
1406
1407 put_task_struct(p);
1408
1409 return 0;
1410}
1411
1412static ssize_t
1413sched_autogroup_write(struct file *file, const char __user *buf,
1414 size_t count, loff_t *offset)
1415{
1416 struct inode *inode = file->f_path.dentry->d_inode;
1417 struct task_struct *p;
1418 char buffer[PROC_NUMBUF];
1419 long nice;
1420 int err;
1421
1422 memset(buffer, 0, sizeof(buffer));
1423 if (count > sizeof(buffer) - 1)
1424 count = sizeof(buffer) - 1;
1425 if (copy_from_user(buffer, buf, count))
1426 return -EFAULT;
1427
1428 err = strict_strtol(strstrip(buffer), 0, &nice);
1429 if (err)
1430 return -EINVAL;
1431
1432 p = get_proc_task(inode);
1433 if (!p)
1434 return -ESRCH;
1435
1436 err = nice;
1437 err = proc_sched_autogroup_set_nice(p, &err);
1438 if (err)
1439 count = err;
1440
1441 put_task_struct(p);
1442
1443 return count;
1444}
1445
1446static int sched_autogroup_open(struct inode *inode, struct file *filp)
1447{
1448 int ret;
1449
1450 ret = single_open(filp, sched_autogroup_show, NULL);
1451 if (!ret) {
1452 struct seq_file *m = filp->private_data;
1453
1454 m->private = inode;
1455 }
1456 return ret;
1457}
1458
1459static const struct file_operations proc_pid_sched_autogroup_operations = {
1460 .open = sched_autogroup_open,
1461 .read = seq_read,
1462 .write = sched_autogroup_write,
1463 .llseek = seq_lseek,
1464 .release = single_release,
1465};
1466
1467#endif /* CONFIG_SCHED_AUTOGROUP */
1468
john stultz4614a696b2009-12-14 18:00:05 -08001469static ssize_t comm_write(struct file *file, const char __user *buf,
1470 size_t count, loff_t *offset)
1471{
1472 struct inode *inode = file->f_path.dentry->d_inode;
1473 struct task_struct *p;
1474 char buffer[TASK_COMM_LEN];
1475
1476 memset(buffer, 0, sizeof(buffer));
1477 if (count > sizeof(buffer) - 1)
1478 count = sizeof(buffer) - 1;
1479 if (copy_from_user(buffer, buf, count))
1480 return -EFAULT;
1481
1482 p = get_proc_task(inode);
1483 if (!p)
1484 return -ESRCH;
1485
1486 if (same_thread_group(current, p))
1487 set_task_comm(p, buffer);
1488 else
1489 count = -EINVAL;
1490
1491 put_task_struct(p);
1492
1493 return count;
1494}
1495
1496static int comm_show(struct seq_file *m, void *v)
1497{
1498 struct inode *inode = m->private;
1499 struct task_struct *p;
1500
1501 p = get_proc_task(inode);
1502 if (!p)
1503 return -ESRCH;
1504
1505 task_lock(p);
1506 seq_printf(m, "%s\n", p->comm);
1507 task_unlock(p);
1508
1509 put_task_struct(p);
1510
1511 return 0;
1512}
1513
1514static int comm_open(struct inode *inode, struct file *filp)
1515{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001516 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001517}
1518
1519static const struct file_operations proc_pid_set_comm_operations = {
1520 .open = comm_open,
1521 .read = seq_read,
1522 .write = comm_write,
1523 .llseek = seq_lseek,
1524 .release = single_release,
1525};
1526
Matt Helsley925d1c42008-04-29 01:01:36 -07001527/*
1528 * We added or removed a vma mapping the executable. The vmas are only mapped
1529 * during exec and are not mapped with the mmap system call.
1530 * Callers must hold down_write() on the mm's mmap_sem for these
1531 */
1532void added_exe_file_vma(struct mm_struct *mm)
1533{
1534 mm->num_exe_file_vmas++;
1535}
1536
1537void removed_exe_file_vma(struct mm_struct *mm)
1538{
1539 mm->num_exe_file_vmas--;
1540 if ((mm->num_exe_file_vmas == 0) && mm->exe_file){
1541 fput(mm->exe_file);
1542 mm->exe_file = NULL;
1543 }
1544
1545}
1546
1547void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1548{
1549 if (new_exe_file)
1550 get_file(new_exe_file);
1551 if (mm->exe_file)
1552 fput(mm->exe_file);
1553 mm->exe_file = new_exe_file;
1554 mm->num_exe_file_vmas = 0;
1555}
1556
1557struct file *get_mm_exe_file(struct mm_struct *mm)
1558{
1559 struct file *exe_file;
1560
1561 /* We need mmap_sem to protect against races with removal of
1562 * VM_EXECUTABLE vmas */
1563 down_read(&mm->mmap_sem);
1564 exe_file = mm->exe_file;
1565 if (exe_file)
1566 get_file(exe_file);
1567 up_read(&mm->mmap_sem);
1568 return exe_file;
1569}
1570
1571void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
1572{
1573 /* It's safe to write the exe_file pointer without exe_file_lock because
1574 * this is called during fork when the task is not yet in /proc */
1575 newmm->exe_file = get_mm_exe_file(oldmm);
1576}
1577
1578static int proc_exe_link(struct inode *inode, struct path *exe_path)
1579{
1580 struct task_struct *task;
1581 struct mm_struct *mm;
1582 struct file *exe_file;
1583
1584 task = get_proc_task(inode);
1585 if (!task)
1586 return -ENOENT;
1587 mm = get_task_mm(task);
1588 put_task_struct(task);
1589 if (!mm)
1590 return -ENOENT;
1591 exe_file = get_mm_exe_file(mm);
1592 mmput(mm);
1593 if (exe_file) {
1594 *exe_path = exe_file->f_path;
1595 path_get(&exe_file->f_path);
1596 fput(exe_file);
1597 return 0;
1598 } else
1599 return -ENOENT;
1600}
1601
Al Viro008b1502005-08-20 00:17:39 +01001602static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 struct inode *inode = dentry->d_inode;
1605 int error = -EACCES;
1606
1607 /* We don't need a base pointer in the /proc filesystem */
Jan Blunck1d957f92008-02-14 19:34:35 -08001608 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Eric W. Biederman778c1142006-06-26 00:25:58 -07001610 /* Are we allowed to snoop on the tasks file descriptors? */
1611 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001614 error = PROC_I(inode)->op.proc_get_link(inode, &nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615out:
Al Viro008b1502005-08-20 00:17:39 +01001616 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001619static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Mel Gormane12ba742007-10-16 01:25:52 -07001621 char *tmp = (char*)__get_free_page(GFP_TEMPORARY);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001622 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int len;
1624
1625 if (!tmp)
1626 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001627
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001628 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001629 len = PTR_ERR(pathname);
1630 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001632 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 if (len > buflen)
1635 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001636 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 len = -EFAULT;
1638 out:
1639 free_page((unsigned long)tmp);
1640 return len;
1641}
1642
1643static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1644{
1645 int error = -EACCES;
1646 struct inode *inode = dentry->d_inode;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001647 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Eric W. Biederman778c1142006-06-26 00:25:58 -07001649 /* Are we allowed to snoop on the tasks file descriptors? */
1650 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001653 error = PROC_I(inode)->op.proc_get_link(inode, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (error)
1655 goto out;
1656
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001657 error = do_proc_readlink(&path, buffer, buflen);
1658 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return error;
1661}
1662
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08001663static const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 .readlink = proc_pid_readlink,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001665 .follow_link = proc_pid_follow_link,
1666 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667};
1668
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001669
1670/* building an inode */
1671
1672static int task_dumpable(struct task_struct *task)
1673{
1674 int dumpable = 0;
1675 struct mm_struct *mm;
1676
1677 task_lock(task);
1678 mm = task->mm;
1679 if (mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001680 dumpable = get_dumpable(mm);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001681 task_unlock(task);
1682 if(dumpable == 1)
1683 return 1;
1684 return 0;
1685}
1686
1687
Eric W. Biederman61a28782006-10-02 02:18:49 -07001688static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001689{
1690 struct inode * inode;
1691 struct proc_inode *ei;
David Howellsc69e8d92008-11-14 10:39:19 +11001692 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001693
1694 /* We need a new inode */
1695
1696 inode = new_inode(sb);
1697 if (!inode)
1698 goto out;
1699
1700 /* Common stuff */
1701 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001702 inode->i_ino = get_next_ino();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001703 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001704 inode->i_op = &proc_def_inode_operations;
1705
1706 /*
1707 * grab the reference to task.
1708 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001709 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001710 if (!ei->pid)
1711 goto out_unlock;
1712
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001713 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001714 rcu_read_lock();
1715 cred = __task_cred(task);
1716 inode->i_uid = cred->euid;
1717 inode->i_gid = cred->egid;
1718 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001719 }
1720 security_task_to_inode(task, inode);
1721
1722out:
1723 return inode;
1724
1725out_unlock:
1726 iput(inode);
1727 return NULL;
1728}
1729
1730static int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1731{
1732 struct inode *inode = dentry->d_inode;
1733 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001734 const struct cred *cred;
1735
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001736 generic_fillattr(inode, stat);
1737
1738 rcu_read_lock();
1739 stat->uid = 0;
1740 stat->gid = 0;
1741 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1742 if (task) {
1743 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1744 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001745 cred = __task_cred(task);
1746 stat->uid = cred->euid;
1747 stat->gid = cred->egid;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001748 }
1749 }
1750 rcu_read_unlock();
1751 return 0;
1752}
1753
1754/* dentry stuff */
1755
1756/*
1757 * Exceptional case: normally we are not allowed to unhash a busy
1758 * directory. In this case, however, we can do it - no aliasing problems
1759 * due to the way we treat inodes.
1760 *
1761 * Rewrite the inode's ownerships here because the owning task may have
1762 * performed a setuid(), etc.
1763 *
1764 * Before the /proc/pid/status file was created the only way to read
1765 * the effective uid of a /process was to stat /proc/pid. Reading
1766 * /proc/pid/status is slow enough that procps and other packages
1767 * kept stating /proc/pid. To keep the rules in /proc simple I have
1768 * made this apply to all per process world readable and executable
1769 * directories.
1770 */
1771static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1772{
Nick Piggin34286d62011-01-07 17:49:57 +11001773 struct inode *inode;
1774 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001775 const struct cred *cred;
1776
Nick Piggin34286d62011-01-07 17:49:57 +11001777 if (nd && nd->flags & LOOKUP_RCU)
1778 return -ECHILD;
1779
1780 inode = dentry->d_inode;
1781 task = get_proc_task(inode);
1782
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001783 if (task) {
1784 if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
1785 task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001786 rcu_read_lock();
1787 cred = __task_cred(task);
1788 inode->i_uid = cred->euid;
1789 inode->i_gid = cred->egid;
1790 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001791 } else {
1792 inode->i_uid = 0;
1793 inode->i_gid = 0;
1794 }
1795 inode->i_mode &= ~(S_ISUID | S_ISGID);
1796 security_task_to_inode(task, inode);
1797 put_task_struct(task);
1798 return 1;
1799 }
1800 d_drop(dentry);
1801 return 0;
1802}
1803
Nick Pigginfe15ce42011-01-07 17:49:23 +11001804static int pid_delete_dentry(const struct dentry * dentry)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001805{
1806 /* Is the task we represent dead?
1807 * If so, then don't put the dentry on the lru list,
1808 * kill it immediately.
1809 */
1810 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
1811}
1812
Al Virod72f71e2009-02-20 05:58:47 +00001813static const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001814{
1815 .d_revalidate = pid_revalidate,
1816 .d_delete = pid_delete_dentry,
1817};
1818
1819/* Lookups */
1820
Eric Dumazetc5141e62007-05-08 00:26:15 -07001821typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
1822 struct task_struct *, const void *);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001823
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001824/*
1825 * Fill a directory entry.
1826 *
1827 * If possible create the dcache entry and derive our inode number and
1828 * file type from dcache entry.
1829 *
1830 * Since all of the proc inode numbers are dynamically generated, the inode
1831 * numbers do not exist until the inode is cache. This means creating the
1832 * the dcache entry in readdir is necessary to keep the inode numbers
1833 * reported by readdir in sync with the inode numbers reported
1834 * by stat.
1835 */
Eric W. Biederman61a28782006-10-02 02:18:49 -07001836static int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
1837 char *name, int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001838 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001839{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08001840 struct dentry *child, *dir = filp->f_path.dentry;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001841 struct inode *inode;
1842 struct qstr qname;
1843 ino_t ino = 0;
1844 unsigned type = DT_UNKNOWN;
1845
1846 qname.name = name;
1847 qname.len = len;
1848 qname.hash = full_name_hash(name, len);
1849
1850 child = d_lookup(dir, &qname);
1851 if (!child) {
1852 struct dentry *new;
1853 new = d_alloc(dir, &qname);
1854 if (new) {
1855 child = instantiate(dir->d_inode, new, task, ptr);
1856 if (child)
1857 dput(new);
1858 else
1859 child = new;
1860 }
1861 }
1862 if (!child || IS_ERR(child) || !child->d_inode)
1863 goto end_instantiate;
1864 inode = child->d_inode;
1865 if (inode) {
1866 ino = inode->i_ino;
1867 type = inode->i_mode >> 12;
1868 }
1869 dput(child);
1870end_instantiate:
1871 if (!ino)
1872 ino = find_inode_number(dir, &qname);
1873 if (!ino)
1874 ino = 1;
1875 return filldir(dirent, name, len, filp->f_pos, ino, type);
1876}
1877
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001878static unsigned name_to_int(struct dentry *dentry)
1879{
1880 const char *name = dentry->d_name.name;
1881 int len = dentry->d_name.len;
1882 unsigned n = 0;
1883
1884 if (len > 1 && *name == '0')
1885 goto out;
1886 while (len-- > 0) {
1887 unsigned c = *name++ - '0';
1888 if (c > 9)
1889 goto out;
1890 if (n >= (~0U-9)/10)
1891 goto out;
1892 n *= 10;
1893 n += c;
1894 }
1895 return n;
1896out:
1897 return ~0U;
1898}
1899
Miklos Szeredi27932742007-05-08 00:26:17 -07001900#define PROC_FDINFO_MAX 64
1901
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001902static int proc_fd_info(struct inode *inode, struct path *path, char *info)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001903{
1904 struct task_struct *task = get_proc_task(inode);
1905 struct files_struct *files = NULL;
1906 struct file *file;
1907 int fd = proc_fd(inode);
1908
1909 if (task) {
1910 files = get_files_struct(task);
1911 put_task_struct(task);
1912 }
1913 if (files) {
1914 /*
1915 * We are not taking a ref to the file structure, so we must
1916 * hold ->file_lock.
1917 */
1918 spin_lock(&files->file_lock);
1919 file = fcheck_files(files, fd);
1920 if (file) {
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001921 if (path) {
1922 *path = file->f_path;
1923 path_get(&file->f_path);
1924 }
Miklos Szeredi27932742007-05-08 00:26:17 -07001925 if (info)
1926 snprintf(info, PROC_FDINFO_MAX,
1927 "pos:\t%lli\n"
1928 "flags:\t0%o\n",
1929 (long long) file->f_pos,
1930 file->f_flags);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001931 spin_unlock(&files->file_lock);
1932 put_files_struct(files);
1933 return 0;
1934 }
1935 spin_unlock(&files->file_lock);
1936 put_files_struct(files);
1937 }
1938 return -ENOENT;
1939}
1940
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001941static int proc_fd_link(struct inode *inode, struct path *path)
Miklos Szeredi27932742007-05-08 00:26:17 -07001942{
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001943 return proc_fd_info(inode, path, NULL);
Miklos Szeredi27932742007-05-08 00:26:17 -07001944}
1945
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001946static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1947{
Nick Piggin34286d62011-01-07 17:49:57 +11001948 struct inode *inode;
1949 struct task_struct *task;
1950 int fd;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001951 struct files_struct *files;
David Howellsc69e8d92008-11-14 10:39:19 +11001952 const struct cred *cred;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001953
Nick Piggin34286d62011-01-07 17:49:57 +11001954 if (nd && nd->flags & LOOKUP_RCU)
1955 return -ECHILD;
1956
1957 inode = dentry->d_inode;
1958 task = get_proc_task(inode);
1959 fd = proc_fd(inode);
1960
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001961 if (task) {
1962 files = get_files_struct(task);
1963 if (files) {
1964 rcu_read_lock();
1965 if (fcheck_files(files, fd)) {
1966 rcu_read_unlock();
1967 put_files_struct(files);
1968 if (task_dumpable(task)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001969 rcu_read_lock();
1970 cred = __task_cred(task);
1971 inode->i_uid = cred->euid;
1972 inode->i_gid = cred->egid;
1973 rcu_read_unlock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001974 } else {
1975 inode->i_uid = 0;
1976 inode->i_gid = 0;
1977 }
1978 inode->i_mode &= ~(S_ISUID | S_ISGID);
1979 security_task_to_inode(task, inode);
1980 put_task_struct(task);
1981 return 1;
1982 }
1983 rcu_read_unlock();
1984 put_files_struct(files);
1985 }
1986 put_task_struct(task);
1987 }
1988 d_drop(dentry);
1989 return 0;
1990}
1991
Al Virod72f71e2009-02-20 05:58:47 +00001992static const struct dentry_operations tid_fd_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001993{
1994 .d_revalidate = tid_fd_revalidate,
1995 .d_delete = pid_delete_dentry,
1996};
1997
Eric W. Biederman444ceed2006-10-02 02:18:49 -07001998static struct dentry *proc_fd_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001999 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002000{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002001 unsigned fd = *(const unsigned *)ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002002 struct file *file;
2003 struct files_struct *files;
2004 struct inode *inode;
2005 struct proc_inode *ei;
2006 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002007
Eric W. Biederman61a28782006-10-02 02:18:49 -07002008 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002009 if (!inode)
2010 goto out;
2011 ei = PROC_I(inode);
2012 ei->fd = fd;
2013 files = get_files_struct(task);
2014 if (!files)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002015 goto out_iput;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002016 inode->i_mode = S_IFLNK;
2017
2018 /*
2019 * We are not taking a ref to the file structure, so we must
2020 * hold ->file_lock.
2021 */
2022 spin_lock(&files->file_lock);
2023 file = fcheck_files(files, fd);
2024 if (!file)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002025 goto out_unlock;
Al Viroaeb5d722008-09-02 15:28:45 -04002026 if (file->f_mode & FMODE_READ)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002027 inode->i_mode |= S_IRUSR | S_IXUSR;
Al Viroaeb5d722008-09-02 15:28:45 -04002028 if (file->f_mode & FMODE_WRITE)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002029 inode->i_mode |= S_IWUSR | S_IXUSR;
2030 spin_unlock(&files->file_lock);
2031 put_files_struct(files);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002032
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002033 inode->i_op = &proc_pid_link_inode_operations;
2034 inode->i_size = 64;
2035 ei->op.proc_get_link = proc_fd_link;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002036 d_set_d_op(dentry, &tid_fd_dentry_operations);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002037 d_add(dentry, inode);
2038 /* Close the race of the process dying before we return the dentry */
2039 if (tid_fd_revalidate(dentry, NULL))
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002040 error = NULL;
2041
2042 out:
2043 return error;
2044out_unlock:
2045 spin_unlock(&files->file_lock);
2046 put_files_struct(files);
2047out_iput:
2048 iput(inode);
2049 goto out;
2050}
2051
Miklos Szeredi27932742007-05-08 00:26:17 -07002052static struct dentry *proc_lookupfd_common(struct inode *dir,
2053 struct dentry *dentry,
2054 instantiate_t instantiate)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002055{
2056 struct task_struct *task = get_proc_task(dir);
2057 unsigned fd = name_to_int(dentry);
2058 struct dentry *result = ERR_PTR(-ENOENT);
2059
2060 if (!task)
2061 goto out_no_task;
2062 if (fd == ~0U)
2063 goto out;
2064
Miklos Szeredi27932742007-05-08 00:26:17 -07002065 result = instantiate(dir, dentry, task, &fd);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002066out:
2067 put_task_struct(task);
2068out_no_task:
2069 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002070}
2071
Miklos Szeredi27932742007-05-08 00:26:17 -07002072static int proc_readfd_common(struct file * filp, void * dirent,
2073 filldir_t filldir, instantiate_t instantiate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002075 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman56347082006-06-26 00:25:40 -07002076 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002077 struct task_struct *p = get_proc_task(inode);
Pavel Emelyanov457c2512007-10-18 23:40:43 -07002078 unsigned int fd, ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 struct files_struct * files;
2081
2082 retval = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002083 if (!p)
2084 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 fd = filp->f_pos;
2088 switch (fd) {
2089 case 0:
2090 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
2091 goto out;
2092 filp->f_pos++;
2093 case 1:
Eric W. Biederman56347082006-06-26 00:25:40 -07002094 ino = parent_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
2096 goto out;
2097 filp->f_pos++;
2098 default:
2099 files = get_files_struct(p);
2100 if (!files)
2101 goto out;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002102 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 for (fd = filp->f_pos-2;
Al Viro9b4f5262008-04-22 01:32:44 -04002104 fd < files_fdtable(files)->max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 fd++, filp->f_pos++) {
Miklos Szeredi27932742007-05-08 00:26:17 -07002106 char name[PROC_NUMBUF];
2107 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 if (!fcheck_files(files, fd))
2110 continue;
Dipankar Sarmab8359962005-09-09 13:04:14 -07002111 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Miklos Szeredi27932742007-05-08 00:26:17 -07002113 len = snprintf(name, sizeof(name), "%d", fd);
2114 if (proc_fill_cache(filp, dirent, filldir,
2115 name, len, instantiate,
2116 p, &fd) < 0) {
Dipankar Sarmab8359962005-09-09 13:04:14 -07002117 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 break;
2119 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002120 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
Dipankar Sarmab8359962005-09-09 13:04:14 -07002122 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 put_files_struct(files);
2124 }
2125out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002126 put_task_struct(p);
2127out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return retval;
2129}
2130
Miklos Szeredi27932742007-05-08 00:26:17 -07002131static struct dentry *proc_lookupfd(struct inode *dir, struct dentry *dentry,
2132 struct nameidata *nd)
2133{
2134 return proc_lookupfd_common(dir, dentry, proc_fd_instantiate);
2135}
2136
2137static int proc_readfd(struct file *filp, void *dirent, filldir_t filldir)
2138{
2139 return proc_readfd_common(filp, dirent, filldir, proc_fd_instantiate);
2140}
2141
2142static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
2143 size_t len, loff_t *ppos)
2144{
2145 char tmp[PROC_FDINFO_MAX];
Jan Blunck3dcd25f2008-02-14 19:38:35 -08002146 int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp);
Miklos Szeredi27932742007-05-08 00:26:17 -07002147 if (!err)
2148 err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp));
2149 return err;
2150}
2151
2152static const struct file_operations proc_fdinfo_file_operations = {
Arnd Bergmann87df8422010-03-17 23:06:02 +01002153 .open = nonseekable_open,
Miklos Szeredi27932742007-05-08 00:26:17 -07002154 .read = proc_fdinfo_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002155 .llseek = no_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002156};
2157
Arjan van de Ven00977a52007-02-12 00:55:34 -08002158static const struct file_operations proc_fd_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 .read = generic_read_dir,
2160 .readdir = proc_readfd,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002161 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162};
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164/*
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002165 * /proc/pid/fd needs a special permission handler so that a process can still
2166 * access /proc/self/fd after it has executed a setuid().
2167 */
Nick Pigginb74c79e2011-01-07 17:49:58 +11002168static int proc_fd_permission(struct inode *inode, int mask, unsigned int flags)
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002169{
2170 int rv;
2171
Nick Pigginb74c79e2011-01-07 17:49:58 +11002172 if (flags & IPERM_FLAG_RCU)
2173 return -ECHILD;
2174 rv = generic_permission(inode, mask, flags, NULL);
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002175 if (rv == 0)
2176 return 0;
2177 if (task_pid(current) == proc_pid(inode))
2178 rv = 0;
2179 return rv;
2180}
2181
2182/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 * proc directories can do almost nothing..
2184 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002185static const struct inode_operations proc_fd_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 .lookup = proc_lookupfd,
Alexey Dobriyan8948e112007-05-08 00:23:35 -07002187 .permission = proc_fd_permission,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002188 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189};
2190
Miklos Szeredi27932742007-05-08 00:26:17 -07002191static struct dentry *proc_fdinfo_instantiate(struct inode *dir,
2192 struct dentry *dentry, struct task_struct *task, const void *ptr)
2193{
2194 unsigned fd = *(unsigned *)ptr;
2195 struct inode *inode;
2196 struct proc_inode *ei;
2197 struct dentry *error = ERR_PTR(-ENOENT);
2198
2199 inode = proc_pid_make_inode(dir->i_sb, task);
2200 if (!inode)
2201 goto out;
2202 ei = PROC_I(inode);
2203 ei->fd = fd;
2204 inode->i_mode = S_IFREG | S_IRUSR;
2205 inode->i_fop = &proc_fdinfo_file_operations;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002206 d_set_d_op(dentry, &tid_fd_dentry_operations);
Miklos Szeredi27932742007-05-08 00:26:17 -07002207 d_add(dentry, inode);
2208 /* Close the race of the process dying before we return the dentry */
2209 if (tid_fd_revalidate(dentry, NULL))
2210 error = NULL;
2211
2212 out:
2213 return error;
2214}
2215
2216static struct dentry *proc_lookupfdinfo(struct inode *dir,
2217 struct dentry *dentry,
2218 struct nameidata *nd)
2219{
2220 return proc_lookupfd_common(dir, dentry, proc_fdinfo_instantiate);
2221}
2222
2223static int proc_readfdinfo(struct file *filp, void *dirent, filldir_t filldir)
2224{
2225 return proc_readfd_common(filp, dirent, filldir,
2226 proc_fdinfo_instantiate);
2227}
2228
2229static const struct file_operations proc_fdinfo_operations = {
2230 .read = generic_read_dir,
2231 .readdir = proc_readfdinfo,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002232 .llseek = default_llseek,
Miklos Szeredi27932742007-05-08 00:26:17 -07002233};
2234
2235/*
2236 * proc directories can do almost nothing..
2237 */
2238static const struct inode_operations proc_fdinfo_inode_operations = {
2239 .lookup = proc_lookupfdinfo,
2240 .setattr = proc_setattr,
2241};
2242
2243
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002244static struct dentry *proc_pident_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002245 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002246{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002247 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002248 struct inode *inode;
2249 struct proc_inode *ei;
KOSAKI Motohirobd6daba2009-05-28 14:34:21 -07002250 struct dentry *error = ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002251
Eric W. Biederman61a28782006-10-02 02:18:49 -07002252 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002253 if (!inode)
2254 goto out;
2255
2256 ei = PROC_I(inode);
2257 inode->i_mode = p->mode;
2258 if (S_ISDIR(inode->i_mode))
2259 inode->i_nlink = 2; /* Use getattr to fix if necessary */
2260 if (p->iop)
2261 inode->i_op = p->iop;
2262 if (p->fop)
2263 inode->i_fop = p->fop;
2264 ei->op = p->op;
Nick Pigginfb045ad2011-01-07 17:49:55 +11002265 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002266 d_add(dentry, inode);
2267 /* Close the race of the process dying before we return the dentry */
2268 if (pid_revalidate(dentry, NULL))
2269 error = NULL;
2270out:
2271 return error;
2272}
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274static struct dentry *proc_pident_lookup(struct inode *dir,
2275 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002276 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002277 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002279 struct dentry *error;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002280 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002281 const struct pid_entry *p, *last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002283 error = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Eric W. Biederman99f89552006-06-26 00:25:55 -07002285 if (!task)
2286 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002288 /*
2289 * Yes, it does not scale. And it should not. Don't add
2290 * new entries into /proc/<tgid>/ without very good reasons.
2291 */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002292 last = &ents[nents - 1];
2293 for (p = ents; p <= last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (p->len != dentry->d_name.len)
2295 continue;
2296 if (!memcmp(dentry->d_name.name, p->name, p->len))
2297 break;
2298 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002299 if (p > last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 goto out;
2301
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002302 error = proc_pident_instantiate(dir, dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002304 put_task_struct(task);
2305out_no_task:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07002306 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
2308
Eric Dumazetc5141e62007-05-08 00:26:15 -07002309static int proc_pident_fill_cache(struct file *filp, void *dirent,
2310 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002311{
2312 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2313 proc_pident_instantiate, task, p);
2314}
2315
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002316static int proc_pident_readdir(struct file *filp,
2317 void *dirent, filldir_t filldir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002318 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002319{
2320 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002321 struct dentry *dentry = filp->f_path.dentry;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002322 struct inode *inode = dentry->d_inode;
2323 struct task_struct *task = get_proc_task(inode);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002324 const struct pid_entry *p, *last;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002325 ino_t ino;
2326 int ret;
2327
2328 ret = -ENOENT;
2329 if (!task)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002330 goto out_no_task;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002331
2332 ret = 0;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002333 i = filp->f_pos;
2334 switch (i) {
2335 case 0:
2336 ino = inode->i_ino;
2337 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
2338 goto out;
2339 i++;
2340 filp->f_pos++;
2341 /* fall through */
2342 case 1:
2343 ino = parent_ino(dentry);
2344 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
2345 goto out;
2346 i++;
2347 filp->f_pos++;
2348 /* fall through */
2349 default:
2350 i -= 2;
2351 if (i >= nents) {
2352 ret = 1;
2353 goto out;
2354 }
2355 p = ents + i;
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002356 last = &ents[nents - 1];
2357 while (p <= last) {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002358 if (proc_pident_fill_cache(filp, dirent, filldir, task, p) < 0)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002359 goto out;
2360 filp->f_pos++;
2361 p++;
2362 }
2363 }
2364
2365 ret = 1;
2366out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002367 put_task_struct(task);
2368out_no_task:
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002369 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002373static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2374 size_t count, loff_t *ppos)
2375{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002376 struct inode * inode = file->f_path.dentry->d_inode;
Al Viro04ff9702007-03-12 16:17:58 +00002377 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002378 ssize_t length;
2379 struct task_struct *task = get_proc_task(inode);
2380
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002381 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002382 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002383
2384 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002385 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002386 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002387 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002388 if (length > 0)
2389 length = simple_read_from_buffer(buf, count, ppos, p, length);
2390 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002391 return length;
2392}
2393
2394static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2395 size_t count, loff_t *ppos)
2396{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002397 struct inode * inode = file->f_path.dentry->d_inode;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002398 char *page;
2399 ssize_t length;
2400 struct task_struct *task = get_proc_task(inode);
2401
2402 length = -ESRCH;
2403 if (!task)
2404 goto out_no_task;
2405 if (count > PAGE_SIZE)
2406 count = PAGE_SIZE;
2407
2408 /* No partial writes. */
2409 length = -EINVAL;
2410 if (*ppos != 0)
2411 goto out;
2412
2413 length = -ENOMEM;
Mel Gormane12ba742007-10-16 01:25:52 -07002414 page = (char*)__get_free_page(GFP_TEMPORARY);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002415 if (!page)
2416 goto out;
2417
2418 length = -EFAULT;
2419 if (copy_from_user(page, buf, count))
2420 goto out_free;
2421
David Howells107db7c2009-05-08 13:55:27 +01002422 /* Guard against adverse ptrace interaction */
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002423 length = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002424 if (length < 0)
2425 goto out_free;
2426
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002427 length = security_setprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002428 (char*)file->f_path.dentry->d_name.name,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002429 (void*)page, count);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07002430 mutex_unlock(&task->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002431out_free:
2432 free_page((unsigned long) page);
2433out:
2434 put_task_struct(task);
2435out_no_task:
2436 return length;
2437}
2438
Arjan van de Ven00977a52007-02-12 00:55:34 -08002439static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002440 .read = proc_pid_attr_read,
2441 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002442 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002443};
2444
Eric Dumazetc5141e62007-05-08 00:26:15 -07002445static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002446 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2447 REG("prev", S_IRUGO, proc_pid_attr_operations),
2448 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2449 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2450 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2451 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002452};
2453
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002454static int proc_attr_dir_readdir(struct file * filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 void * dirent, filldir_t filldir)
2456{
2457 return proc_pident_readdir(filp,dirent,filldir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002458 attr_dir_stuff,ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
Arjan van de Ven00977a52007-02-12 00:55:34 -08002461static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 .read = generic_read_dir,
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002463 .readdir = proc_attr_dir_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002464 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465};
2466
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002467static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 struct dentry *dentry, struct nameidata *nd)
2469{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002470 return proc_pident_lookup(dir, dentry,
2471 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002474static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002475 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002476 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002477 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478};
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480#endif
2481
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002482#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002483static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2484 size_t count, loff_t *ppos)
2485{
2486 struct task_struct *task = get_proc_task(file->f_dentry->d_inode);
2487 struct mm_struct *mm;
2488 char buffer[PROC_NUMBUF];
2489 size_t len;
2490 int ret;
2491
2492 if (!task)
2493 return -ESRCH;
2494
2495 ret = 0;
2496 mm = get_task_mm(task);
2497 if (mm) {
2498 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2499 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2500 MMF_DUMP_FILTER_SHIFT));
2501 mmput(mm);
2502 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2503 }
2504
2505 put_task_struct(task);
2506
2507 return ret;
2508}
2509
2510static ssize_t proc_coredump_filter_write(struct file *file,
2511 const char __user *buf,
2512 size_t count,
2513 loff_t *ppos)
2514{
2515 struct task_struct *task;
2516 struct mm_struct *mm;
2517 char buffer[PROC_NUMBUF], *end;
2518 unsigned int val;
2519 int ret;
2520 int i;
2521 unsigned long mask;
2522
2523 ret = -EFAULT;
2524 memset(buffer, 0, sizeof(buffer));
2525 if (count > sizeof(buffer) - 1)
2526 count = sizeof(buffer) - 1;
2527 if (copy_from_user(buffer, buf, count))
2528 goto out_no_task;
2529
2530 ret = -EINVAL;
2531 val = (unsigned int)simple_strtoul(buffer, &end, 0);
2532 if (*end == '\n')
2533 end++;
2534 if (end - buffer == 0)
2535 goto out_no_task;
2536
2537 ret = -ESRCH;
2538 task = get_proc_task(file->f_dentry->d_inode);
2539 if (!task)
2540 goto out_no_task;
2541
2542 ret = end - buffer;
2543 mm = get_task_mm(task);
2544 if (!mm)
2545 goto out_no_mm;
2546
2547 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2548 if (val & mask)
2549 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2550 else
2551 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2552 }
2553
2554 mmput(mm);
2555 out_no_mm:
2556 put_task_struct(task);
2557 out_no_task:
2558 return ret;
2559}
2560
2561static const struct file_operations proc_coredump_filter_operations = {
2562 .read = proc_coredump_filter_read,
2563 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002564 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002565};
2566#endif
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568/*
2569 * /proc/self:
2570 */
2571static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
2572 int buflen)
2573{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002574 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002575 pid_t tgid = task_tgid_nr_ns(current, ns);
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002576 char tmp[PROC_NUMBUF];
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002577 if (!tgid)
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002578 return -ENOENT;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002579 sprintf(tmp, "%d", tgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 return vfs_readlink(dentry,buffer,buflen,tmp);
2581}
2582
Al Viro008b1502005-08-20 00:17:39 +01002583static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Eric W. Biederman488e5bc2008-02-08 04:18:34 -08002585 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
Andrew Mortonb55fcb22008-02-08 15:00:43 -08002586 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro7fee4862010-01-14 01:03:28 -05002587 char *name = ERR_PTR(-ENOENT);
2588 if (tgid) {
2589 name = __getname();
2590 if (!name)
2591 name = ERR_PTR(-ENOMEM);
2592 else
2593 sprintf(name, "%d", tgid);
2594 }
2595 nd_set_link(nd, name);
2596 return NULL;
2597}
2598
2599static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
2600 void *cookie)
2601{
2602 char *s = nd_get_link(nd);
2603 if (!IS_ERR(s))
2604 __putname(s);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002607static const struct inode_operations proc_self_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 .readlink = proc_self_readlink,
2609 .follow_link = proc_self_follow_link,
Al Viro7fee4862010-01-14 01:03:28 -05002610 .put_link = proc_self_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611};
2612
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002613/*
Eric W. Biederman801199c2006-10-02 02:18:48 -07002614 * proc base
2615 *
2616 * These are the directory entries in the root directory of /proc
2617 * that properly belong to the /proc filesystem, as they describe
2618 * describe something that is process related.
2619 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07002620static const struct pid_entry proc_base_stuff[] = {
Eric W. Biederman61a28782006-10-02 02:18:49 -07002621 NOD("self", S_IFLNK|S_IRWXUGO,
Eric W. Biederman801199c2006-10-02 02:18:48 -07002622 &proc_self_inode_operations, NULL, {}),
Eric W. Biederman801199c2006-10-02 02:18:48 -07002623};
2624
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002625static struct dentry *proc_base_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002626 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman801199c2006-10-02 02:18:48 -07002627{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002628 const struct pid_entry *p = ptr;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002629 struct inode *inode;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002630 struct proc_inode *ei;
Dan Carpenter73d36462010-05-26 14:43:25 -07002631 struct dentry *error;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002632
2633 /* Allocate the inode */
2634 error = ERR_PTR(-ENOMEM);
2635 inode = new_inode(dir->i_sb);
2636 if (!inode)
2637 goto out;
2638
2639 /* Initialize the inode */
2640 ei = PROC_I(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002641 inode->i_ino = get_next_ino();
Eric W. Biederman801199c2006-10-02 02:18:48 -07002642 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002643
2644 /*
2645 * grab the reference to the task.
2646 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07002647 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman801199c2006-10-02 02:18:48 -07002648 if (!ei->pid)
2649 goto out_iput;
2650
Eric W. Biederman801199c2006-10-02 02:18:48 -07002651 inode->i_mode = p->mode;
2652 if (S_ISDIR(inode->i_mode))
2653 inode->i_nlink = 2;
2654 if (S_ISLNK(inode->i_mode))
2655 inode->i_size = 64;
2656 if (p->iop)
2657 inode->i_op = p->iop;
2658 if (p->fop)
2659 inode->i_fop = p->fop;
2660 ei->op = p->op;
Eric W. Biederman801199c2006-10-02 02:18:48 -07002661 d_add(dentry, inode);
2662 error = NULL;
2663out:
Eric W. Biederman801199c2006-10-02 02:18:48 -07002664 return error;
2665out_iput:
2666 iput(inode);
2667 goto out;
2668}
2669
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002670static struct dentry *proc_base_lookup(struct inode *dir, struct dentry *dentry)
2671{
2672 struct dentry *error;
2673 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002674 const struct pid_entry *p, *last;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002675
2676 error = ERR_PTR(-ENOENT);
2677
2678 if (!task)
2679 goto out_no_task;
2680
2681 /* Lookup the directory entry */
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002682 last = &proc_base_stuff[ARRAY_SIZE(proc_base_stuff) - 1];
2683 for (p = proc_base_stuff; p <= last; p++) {
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002684 if (p->len != dentry->d_name.len)
2685 continue;
2686 if (!memcmp(dentry->d_name.name, p->name, p->len))
2687 break;
2688 }
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002689 if (p > last)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002690 goto out;
2691
2692 error = proc_base_instantiate(dir, dentry, task, p);
2693
2694out:
2695 put_task_struct(task);
2696out_no_task:
2697 return error;
2698}
2699
Eric Dumazetc5141e62007-05-08 00:26:15 -07002700static int proc_base_fill_cache(struct file *filp, void *dirent,
2701 filldir_t filldir, struct task_struct *task, const struct pid_entry *p)
Eric W. Biederman61a28782006-10-02 02:18:49 -07002702{
2703 return proc_fill_cache(filp, dirent, filldir, p->name, p->len,
2704 proc_base_instantiate, task, p);
2705}
2706
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002707#ifdef CONFIG_TASK_IO_ACCOUNTING
Andrea Righi297c5d92008-07-25 01:48:49 -07002708static int do_io_accounting(struct task_struct *task, char *buffer, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002709{
Andrea Righi940389b2008-07-28 00:48:12 +02002710 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002711 unsigned long flags;
Andrea Righi297c5d92008-07-25 01:48:49 -07002712
Andrea Righi59954772008-07-27 17:29:15 +02002713 if (whole && lock_task_sighand(task, &flags)) {
2714 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002715
Andrea Righi59954772008-07-27 17:29:15 +02002716 task_io_accounting_add(&acct, &task->signal->ioac);
2717 while_each_thread(task, t)
2718 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002719
Andrea Righi59954772008-07-27 17:29:15 +02002720 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002721 }
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002722 return sprintf(buffer,
2723 "rchar: %llu\n"
2724 "wchar: %llu\n"
2725 "syscr: %llu\n"
2726 "syscw: %llu\n"
2727 "read_bytes: %llu\n"
2728 "write_bytes: %llu\n"
2729 "cancelled_write_bytes: %llu\n",
Alexander Beregalov7c443192008-08-05 13:01:34 -07002730 (unsigned long long)acct.rchar,
2731 (unsigned long long)acct.wchar,
2732 (unsigned long long)acct.syscr,
2733 (unsigned long long)acct.syscw,
2734 (unsigned long long)acct.read_bytes,
2735 (unsigned long long)acct.write_bytes,
2736 (unsigned long long)acct.cancelled_write_bytes);
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002737}
Andrea Righi297c5d92008-07-25 01:48:49 -07002738
2739static int proc_tid_io_accounting(struct task_struct *task, char *buffer)
2740{
2741 return do_io_accounting(task, buffer, 0);
2742}
2743
2744static int proc_tgid_io_accounting(struct task_struct *task, char *buffer)
2745{
2746 return do_io_accounting(task, buffer, 1);
2747}
2748#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002749
Kees Cook47830722008-10-06 03:11:58 +04002750static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2751 struct pid *pid, struct task_struct *task)
2752{
2753 seq_printf(m, "%08x\n", task->personality);
2754 return 0;
2755}
2756
Eric W. Biederman801199c2006-10-02 02:18:48 -07002757/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002758 * Thread groups
2759 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002760static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002761static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002762
Eric Dumazetc5141e62007-05-08 00:26:15 -07002763static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002764 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2765 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
2766 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002767#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002768 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002769#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002770 REG("environ", S_IRUSR, proc_environ_operations),
2771 INF("auxv", S_IRUSR, proc_pid_auxv),
2772 ONE("status", S_IRUGO, proc_pid_status),
2773 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07002774 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002775#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002776 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002777#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002778#ifdef CONFIG_SCHED_AUTOGROUP
2779 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2780#endif
john stultz4614a696b2009-12-14 18:00:05 -08002781 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002782#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002783 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002784#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002785 INF("cmdline", S_IRUGO, proc_pid_cmdline),
2786 ONE("stat", S_IRUGO, proc_tgid_stat),
2787 ONE("statm", S_IRUGO, proc_pid_statm),
2788 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002789#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002790 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002791#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002792 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2793 LNK("cwd", proc_cwd_link),
2794 LNK("root", proc_root_link),
2795 LNK("exe", proc_exe_link),
2796 REG("mounts", S_IRUGO, proc_mounts_operations),
2797 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2798 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002799#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002800 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
2801 REG("smaps", S_IRUGO, proc_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05002802 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002803#endif
2804#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002805 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002806#endif
2807#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002808 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002809#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002810#ifdef CONFIG_STACKTRACE
2811 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002812#endif
2813#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002814 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002815#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002816#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002817 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002818#endif
Paul Menage8793d852007-10-18 23:39:39 -07002819#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002820 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002821#endif
Paul Menagea4243162007-10-18 23:39:35 -07002822#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002823 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07002824#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002825 INF("oom_score", S_IRUGO, proc_oom_score),
2826 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002827 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002828#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002829 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2830 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002831#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002832#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002833 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002834#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002835#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002836 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002837#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002838#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002839 INF("io", S_IRUGO, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002840#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002841};
2842
2843static int proc_tgid_base_readdir(struct file * filp,
2844 void * dirent, filldir_t filldir)
2845{
2846 return proc_pident_readdir(filp,dirent,filldir,
2847 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
2848}
2849
Arjan van de Ven00977a52007-02-12 00:55:34 -08002850static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002851 .read = generic_read_dir,
2852 .readdir = proc_tgid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002853 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002854};
2855
2856static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002857 return proc_pident_lookup(dir, dentry,
2858 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002859}
2860
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002861static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002862 .lookup = proc_tgid_base_lookup,
2863 .getattr = pid_getattr,
2864 .setattr = proc_setattr,
2865};
2866
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002867static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868{
Eric W. Biederman48e64842006-06-26 00:25:48 -07002869 struct dentry *dentry, *leader, *dir;
Eric W. Biederman8578cea2006-06-26 00:25:54 -07002870 char buf[PROC_NUMBUF];
Eric W. Biederman48e64842006-06-26 00:25:48 -07002871 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Eric W. Biederman48e64842006-06-26 00:25:48 -07002873 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002874 name.len = snprintf(buf, sizeof(buf), "%d", pid);
2875 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002876 if (dentry) {
Sukadev Bhattiprolu29f12ca2009-11-11 14:26:32 -08002877 shrink_dcache_parent(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002878 d_drop(dentry);
2879 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Eric W. Biederman48e64842006-06-26 00:25:48 -07002882 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002883 name.len = snprintf(buf, sizeof(buf), "%d", tgid);
2884 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002885 if (!leader)
2886 goto out;
2887
2888 name.name = "task";
2889 name.len = strlen(name.name);
2890 dir = d_hash_and_lookup(leader, &name);
2891 if (!dir)
2892 goto out_put_leader;
2893
2894 name.name = buf;
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002895 name.len = snprintf(buf, sizeof(buf), "%d", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07002896 dentry = d_hash_and_lookup(dir, &name);
2897 if (dentry) {
2898 shrink_dcache_parent(dentry);
2899 d_drop(dentry);
2900 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07002902
2903 dput(dir);
2904out_put_leader:
2905 dput(leader);
2906out:
2907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908}
2909
Randy Dunlap0895e912007-10-21 21:00:10 -07002910/**
2911 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
2912 * @task: task that should be flushed.
2913 *
2914 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002915 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07002916 * in. This call is supposed to do all of this job.
2917 *
2918 * Looks in the dcache for
2919 * /proc/@pid
2920 * /proc/@tgid/task/@pid
2921 * if either directory is present flushes it and all of it'ts children
2922 * from the dcache.
2923 *
2924 * It is safe and reasonable to cache /proc entries for a task until
2925 * that task exits. After that they just clog up the dcache with
2926 * useless entries, possibly causing useful dcache entries to be
2927 * flushed instead. This routine is proved to flush those useless
2928 * dcache entries at process exit time.
2929 *
2930 * NOTE: This routine is just an optimization so it does not guarantee
2931 * that no dcache entries will exist at process exit time it
2932 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002933 */
2934
2935void proc_flush_task(struct task_struct *task)
2936{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002937 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002938 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002939 struct upid *upid;
2940
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002941 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002942 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002943
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08002944 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002945 upid = &pid->numbers[i];
2946 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07002947 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07002948 }
Pavel Emelyanov6f4e6432007-10-18 23:40:11 -07002949
2950 upid = &pid->numbers[pid->level];
2951 if (upid->nr == 1)
2952 pid_ns_release_proc(upid->ns);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07002953}
2954
Adrian Bunk9711ef92006-12-06 20:38:31 -08002955static struct dentry *proc_pid_instantiate(struct inode *dir,
2956 struct dentry * dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002957 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002958{
2959 struct dentry *error = ERR_PTR(-ENOENT);
2960 struct inode *inode;
2961
Eric W. Biederman61a28782006-10-02 02:18:49 -07002962 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002963 if (!inode)
2964 goto out;
2965
2966 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2967 inode->i_op = &proc_tgid_base_inode_operations;
2968 inode->i_fop = &proc_tgid_base_operations;
2969 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07002970
2971 inode->i_nlink = 2 + pid_entry_count_dirs(tgid_base_stuff,
2972 ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002973
Nick Pigginfb045ad2011-01-07 17:49:55 +11002974 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002975
2976 d_add(dentry, inode);
2977 /* Close the race of the process dying before we return the dentry */
2978 if (pid_revalidate(dentry, NULL))
2979 error = NULL;
2980out:
2981 return error;
2982}
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2985{
Dan Carpenter73d36462010-05-26 14:43:25 -07002986 struct dentry *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002989 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Eric W. Biederman801199c2006-10-02 02:18:48 -07002991 result = proc_base_lookup(dir, dentry);
2992 if (!IS_ERR(result) || PTR_ERR(result) != -ENOENT)
2993 goto out;
2994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 tgid = name_to_int(dentry);
2996 if (tgid == ~0U)
2997 goto out;
2998
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002999 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003000 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003001 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (task)
3003 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003004 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 if (!task)
3006 goto out;
3007
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003008 result = proc_pid_instantiate(dir, dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003009 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010out:
Eric W. Biedermancd6a3ce2006-06-26 00:25:49 -07003011 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012}
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003015 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003018struct tgid_iter {
3019 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003020 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003021};
3022static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3023{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003024 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003026 if (iter.task)
3027 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003028 rcu_read_lock();
3029retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003030 iter.task = NULL;
3031 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003032 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003033 iter.tgid = pid_nr_ns(pid, ns);
3034 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003035 /* What we to know is if the pid we have find is the
3036 * pid of a thread_group_leader. Testing for task
3037 * being a thread_group_leader is the obvious thing
3038 * todo but there is a window when it fails, due to
3039 * the pid transfer logic in de_thread.
3040 *
3041 * So we perform the straight forward test of seeing
3042 * if the pid we have found is the pid of a thread
3043 * group leader, and don't worry if the task we have
3044 * found doesn't happen to be a thread group leader.
3045 * As we don't care in the case of readdir.
3046 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003047 if (!iter.task || !has_group_leader_pid(iter.task)) {
3048 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003049 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003050 }
3051 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003053 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003054 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003057#define TGID_OFFSET (FIRST_PROCESS_ENTRY + ARRAY_SIZE(proc_base_stuff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Eric W. Biederman61a28782006-10-02 02:18:49 -07003059static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003060 struct tgid_iter iter)
Eric W. Biederman61a28782006-10-02 02:18:49 -07003061{
3062 char name[PROC_NUMBUF];
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003063 int len = snprintf(name, sizeof(name), "%d", iter.tgid);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003064 return proc_fill_cache(filp, dirent, filldir, name, len,
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003065 proc_pid_instantiate, iter.task, NULL);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003066}
3067
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068/* for the /proc/ directory itself, after non-process stuff has been done */
3069int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
3070{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003072 struct task_struct *reaper = get_proc_task(filp->f_path.dentry->d_inode);
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003073 struct tgid_iter iter;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003074 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Eric W. Biederman61a28782006-10-02 02:18:49 -07003076 if (!reaper)
3077 goto out_no_task;
3078
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003079 for (; nr < ARRAY_SIZE(proc_base_stuff); filp->f_pos++, nr++) {
Eric Dumazetc5141e62007-05-08 00:26:15 -07003080 const struct pid_entry *p = &proc_base_stuff[nr];
Eric W. Biederman61a28782006-10-02 02:18:49 -07003081 if (proc_base_fill_cache(filp, dirent, filldir, reaper, p) < 0)
Eric W. Biederman801199c2006-10-02 02:18:48 -07003082 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 }
3084
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003085 ns = filp->f_dentry->d_sb->s_fs_info;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003086 iter.task = NULL;
3087 iter.tgid = filp->f_pos - TGID_OFFSET;
3088 for (iter = next_tgid(ns, iter);
3089 iter.task;
3090 iter.tgid += 1, iter = next_tgid(ns, iter)) {
3091 filp->f_pos = iter.tgid + TGID_OFFSET;
3092 if (proc_pid_fill_cache(filp, dirent, filldir, iter) < 0) {
3093 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003094 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 }
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003097 filp->f_pos = PID_MAX_LIMIT + TGID_OFFSET;
3098out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07003099 put_task_struct(reaper);
3100out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 return 0;
3102}
3103
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003104/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003105 * Tasks
3106 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003107static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003108 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003109 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003110 REG("environ", S_IRUSR, proc_environ_operations),
3111 INF("auxv", S_IRUSR, proc_pid_auxv),
3112 ONE("status", S_IRUGO, proc_pid_status),
3113 ONE("personality", S_IRUSR, proc_pid_personality),
Jiri Olsa3036e7b2010-09-30 15:15:33 -07003114 INF("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003115#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003116 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003117#endif
john stultz4614a696b2009-12-14 18:00:05 -08003118 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003119#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003120 INF("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003121#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003122 INF("cmdline", S_IRUGO, proc_pid_cmdline),
3123 ONE("stat", S_IRUGO, proc_tid_stat),
3124 ONE("statm", S_IRUGO, proc_pid_statm),
3125 REG("maps", S_IRUGO, proc_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003126#ifdef CONFIG_NUMA
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003127 REG("numa_maps", S_IRUGO, proc_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003128#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003129 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3130 LNK("cwd", proc_cwd_link),
3131 LNK("root", proc_root_link),
3132 LNK("exe", proc_exe_link),
3133 REG("mounts", S_IRUGO, proc_mounts_operations),
3134 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003135#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003136 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
3137 REG("smaps", S_IRUGO, proc_smaps_operations),
Al Viroca6b0bf2011-02-15 22:04:37 -05003138 REG("pagemap", S_IRUGO, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003139#endif
3140#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003141 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003142#endif
3143#ifdef CONFIG_KALLSYMS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003144 INF("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003145#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003146#ifdef CONFIG_STACKTRACE
3147 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003148#endif
3149#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003150 INF("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003151#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003152#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003153 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003154#endif
Paul Menage8793d852007-10-18 23:39:39 -07003155#ifdef CONFIG_PROC_PID_CPUSET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003156 REG("cpuset", S_IRUGO, proc_cpuset_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003157#endif
Paul Menagea4243162007-10-18 23:39:35 -07003158#ifdef CONFIG_CGROUPS
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003159 REG("cgroup", S_IRUGO, proc_cgroup_operations),
Paul Menagea4243162007-10-18 23:39:35 -07003160#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003161 INF("oom_score", S_IRUGO, proc_oom_score),
3162 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adjust_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003163 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003164#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003165 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003166 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003167#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003168#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003169 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003170#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003171#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003172 INF("io", S_IRUGO, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003173#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003174};
3175
3176static int proc_tid_base_readdir(struct file * filp,
3177 void * dirent, filldir_t filldir)
3178{
3179 return proc_pident_readdir(filp,dirent,filldir,
3180 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
3181}
3182
3183static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003184 return proc_pident_lookup(dir, dentry,
3185 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003186}
3187
Arjan van de Ven00977a52007-02-12 00:55:34 -08003188static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003189 .read = generic_read_dir,
3190 .readdir = proc_tid_base_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003191 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003192};
3193
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003194static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003195 .lookup = proc_tid_base_lookup,
3196 .getattr = pid_getattr,
3197 .setattr = proc_setattr,
3198};
3199
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003200static struct dentry *proc_task_instantiate(struct inode *dir,
Eric Dumazetc5141e62007-05-08 00:26:15 -07003201 struct dentry *dentry, struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003202{
3203 struct dentry *error = ERR_PTR(-ENOENT);
3204 struct inode *inode;
Eric W. Biederman61a28782006-10-02 02:18:49 -07003205 inode = proc_pid_make_inode(dir->i_sb, task);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003206
3207 if (!inode)
3208 goto out;
3209 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
3210 inode->i_op = &proc_tid_base_inode_operations;
3211 inode->i_fop = &proc_tid_base_operations;
3212 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003213
3214 inode->i_nlink = 2 + pid_entry_count_dirs(tid_base_stuff,
3215 ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003216
Nick Pigginfb045ad2011-01-07 17:49:55 +11003217 d_set_d_op(dentry, &pid_dentry_operations);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003218
3219 d_add(dentry, inode);
3220 /* Close the race of the process dying before we return the dentry */
3221 if (pid_revalidate(dentry, NULL))
3222 error = NULL;
3223out:
3224 return error;
3225}
3226
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003227static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
3228{
3229 struct dentry *result = ERR_PTR(-ENOENT);
3230 struct task_struct *task;
3231 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003232 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003233 struct pid_namespace *ns;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003234
3235 if (!leader)
3236 goto out_no_task;
3237
3238 tid = name_to_int(dentry);
3239 if (tid == ~0U)
3240 goto out;
3241
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003242 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003243 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003244 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003245 if (task)
3246 get_task_struct(task);
3247 rcu_read_unlock();
3248 if (!task)
3249 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003250 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003251 goto out_drop_task;
3252
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003253 result = proc_task_instantiate(dir, dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003254out_drop_task:
3255 put_task_struct(task);
3256out:
3257 put_task_struct(leader);
3258out_no_task:
3259 return result;
3260}
3261
3262/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003263 * Find the first tid of a thread group to return to user space.
3264 *
3265 * Usually this is just the thread group leader, but if the users
3266 * buffer was too small or there was a seek into the middle of the
3267 * directory we have more work todo.
3268 *
3269 * In the case of a short read we start with find_task_by_pid.
3270 *
3271 * In the case of a seek we start with the leader and walk nr
3272 * threads past it.
3273 */
Eric W. Biedermancc288732006-06-26 00:26:01 -07003274static struct task_struct *first_tid(struct task_struct *leader,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003275 int tid, int nr, struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003276{
Oleg Nesterova872ff02006-06-26 00:26:01 -07003277 struct task_struct *pos;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003278
Eric W. Biedermancc288732006-06-26 00:26:01 -07003279 rcu_read_lock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003280 /* Attempt to start with the pid of a thread */
3281 if (tid && (nr > 0)) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003282 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterova872ff02006-06-26 00:26:01 -07003283 if (pos && (pos->group_leader == leader))
3284 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003285 }
3286
3287 /* If nr exceeds the number of threads there is nothing todo */
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003288 pos = NULL;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003289 if (nr && nr >= get_nr_threads(leader))
3290 goto out;
3291
3292 /* If we haven't found our starting place yet start
3293 * with the leader and walk nr threads forward.
3294 */
3295 for (pos = leader; nr > 0; --nr) {
3296 pos = next_thread(pos);
3297 if (pos == leader) {
3298 pos = NULL;
3299 goto out;
3300 }
3301 }
3302found:
3303 get_task_struct(pos);
3304out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003305 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003306 return pos;
3307}
3308
3309/*
3310 * Find the next thread in the thread list.
3311 * Return NULL if there is an error or no next thread.
3312 *
3313 * The reference to the input task_struct is released.
3314 */
3315static struct task_struct *next_tid(struct task_struct *start)
3316{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003317 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003318 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003319 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003320 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003321 if (thread_group_leader(pos))
3322 pos = NULL;
3323 else
3324 get_task_struct(pos);
3325 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003326 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003327 put_task_struct(start);
3328 return pos;
3329}
3330
Eric W. Biederman61a28782006-10-02 02:18:49 -07003331static int proc_task_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
3332 struct task_struct *task, int tid)
3333{
3334 char name[PROC_NUMBUF];
3335 int len = snprintf(name, sizeof(name), "%d", tid);
3336 return proc_fill_cache(filp, dirent, filldir, name, len,
3337 proc_task_instantiate, task, NULL);
3338}
3339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340/* for the /proc/TGID/task/ directories */
3341static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
3342{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08003343 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 struct inode *inode = dentry->d_inode;
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003345 struct task_struct *leader = NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003346 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 int retval = -ENOENT;
3348 ino_t ino;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003349 int tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003350 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Guillaume Chazarain7d895242007-01-31 23:48:14 -08003352 task = get_proc_task(inode);
3353 if (!task)
3354 goto out_no_task;
3355 rcu_read_lock();
3356 if (pid_alive(task)) {
3357 leader = task->group_leader;
3358 get_task_struct(leader);
3359 }
3360 rcu_read_unlock();
3361 put_task_struct(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003362 if (!leader)
3363 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 retval = 0;
3365
Linus Torvaldsee568b22009-03-17 10:02:35 -07003366 switch ((unsigned long)filp->f_pos) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 case 0:
3368 ino = inode->i_ino;
Zhang Leee6f7792009-03-16 14:44:31 +08003369 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003371 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 /* fall through */
3373 case 1:
3374 ino = parent_ino(dentry);
Zhang Leee6f7792009-03-16 14:44:31 +08003375 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 goto out;
Zhang Leee6f7792009-03-16 14:44:31 +08003377 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 /* fall through */
3379 }
3380
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003381 /* f_version caches the tgid value that the last readdir call couldn't
3382 * return. lseek aka telldir automagically resets f_version to 0.
3383 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003384 ns = filp->f_dentry->d_sb->s_fs_info;
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003385 tid = (int)filp->f_version;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003386 filp->f_version = 0;
Zhang Leee6f7792009-03-16 14:44:31 +08003387 for (task = first_tid(leader, tid, filp->f_pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003388 task;
Zhang Leee6f7792009-03-16 14:44:31 +08003389 task = next_tid(task), filp->f_pos++) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003390 tid = task_pid_nr_ns(task, ns);
Eric W. Biederman61a28782006-10-02 02:18:49 -07003391 if (proc_task_fill_cache(filp, dirent, filldir, task, tid) < 0) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003392 /* returning this tgid failed, save it as the first
3393 * pid for the next readir call */
Mathieu Desnoyers2b47c362007-10-16 23:27:21 -07003394 filp->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003395 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 }
3399out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07003400 put_task_struct(leader);
3401out_no_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 return retval;
3403}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003404
3405static int proc_task_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3406{
3407 struct inode *inode = dentry->d_inode;
Eric W. Biederman99f89552006-06-26 00:25:55 -07003408 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003409 generic_fillattr(inode, stat);
3410
Eric W. Biederman99f89552006-06-26 00:25:55 -07003411 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003412 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003413 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003414 }
3415
3416 return 0;
3417}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003418
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003419static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003420 .lookup = proc_task_lookup,
3421 .getattr = proc_task_getattr,
3422 .setattr = proc_setattr,
3423};
3424
Arjan van de Ven00977a52007-02-12 00:55:34 -08003425static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003426 .read = generic_read_dir,
3427 .readdir = proc_task_readdir,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003428 .llseek = default_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003429};