[PATCH] nfsd kconfig: select things at the closest tristate instead of bool
[deliverable/linux.git] / fs / proc / base.c
CommitLineData
1da177e4
LT
1/*
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.
e070ad49
ML
14 *
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.
1da177e4
LT
48 */
49
50#include <asm/uaccess.h>
51
52#include <linux/config.h>
53#include <linux/errno.h>
54#include <linux/time.h>
55#include <linux/proc_fs.h>
56#include <linux/stat.h>
57#include <linux/init.h>
16f7e0fe 58#include <linux/capability.h>
1da177e4
LT
59#include <linux/file.h>
60#include <linux/string.h>
61#include <linux/seq_file.h>
62#include <linux/namei.h>
63#include <linux/namespace.h>
64#include <linux/mm.h>
65#include <linux/smp_lock.h>
b835996f 66#include <linux/rcupdate.h>
1da177e4
LT
67#include <linux/kallsyms.h>
68#include <linux/mount.h>
69#include <linux/security.h>
70#include <linux/ptrace.h>
71#include <linux/seccomp.h>
72#include <linux/cpuset.h>
73#include <linux/audit.h>
5addc5dd 74#include <linux/poll.h>
1da177e4
LT
75#include "internal.h"
76
77/*
78 * For hysterical raisins we keep the same inumbers as in the old procfs.
79 * Feel free to change the macro below - just keep the range distinct from
80 * inumbers of the rest of procfs (currently those are in 0x0000--0xffff).
81 * As soon as we'll get a separate superblock we will be able to forget
82 * about magical ranges too.
83 */
84
85#define fake_ino(pid,ino) (((pid)<<16)|(ino))
86
87enum pid_directory_inos {
88 PROC_TGID_INO = 2,
89 PROC_TGID_TASK,
90 PROC_TGID_STATUS,
91 PROC_TGID_MEM,
92#ifdef CONFIG_SECCOMP
93 PROC_TGID_SECCOMP,
94#endif
95 PROC_TGID_CWD,
96 PROC_TGID_ROOT,
97 PROC_TGID_EXE,
98 PROC_TGID_FD,
99 PROC_TGID_ENVIRON,
100 PROC_TGID_AUXV,
101 PROC_TGID_CMDLINE,
102 PROC_TGID_STAT,
103 PROC_TGID_STATM,
104 PROC_TGID_MAPS,
6e21c8f1 105 PROC_TGID_NUMA_MAPS,
1da177e4 106 PROC_TGID_MOUNTS,
b4629fe2 107 PROC_TGID_MOUNTSTATS,
1da177e4 108 PROC_TGID_WCHAN,
63c6764c 109#ifdef CONFIG_MMU
e070ad49 110 PROC_TGID_SMAPS,
63c6764c 111#endif
1da177e4
LT
112#ifdef CONFIG_SCHEDSTATS
113 PROC_TGID_SCHEDSTAT,
114#endif
115#ifdef CONFIG_CPUSETS
116 PROC_TGID_CPUSET,
117#endif
118#ifdef CONFIG_SECURITY
119 PROC_TGID_ATTR,
120 PROC_TGID_ATTR_CURRENT,
121 PROC_TGID_ATTR_PREV,
122 PROC_TGID_ATTR_EXEC,
123 PROC_TGID_ATTR_FSCREATE,
4eb582cf 124 PROC_TGID_ATTR_KEYCREATE,
1da177e4
LT
125#endif
126#ifdef CONFIG_AUDITSYSCALL
127 PROC_TGID_LOGINUID,
128#endif
1da177e4
LT
129 PROC_TGID_OOM_SCORE,
130 PROC_TGID_OOM_ADJUST,
131 PROC_TID_INO,
132 PROC_TID_STATUS,
133 PROC_TID_MEM,
134#ifdef CONFIG_SECCOMP
135 PROC_TID_SECCOMP,
136#endif
137 PROC_TID_CWD,
138 PROC_TID_ROOT,
139 PROC_TID_EXE,
140 PROC_TID_FD,
141 PROC_TID_ENVIRON,
142 PROC_TID_AUXV,
143 PROC_TID_CMDLINE,
144 PROC_TID_STAT,
145 PROC_TID_STATM,
146 PROC_TID_MAPS,
6e21c8f1 147 PROC_TID_NUMA_MAPS,
1da177e4 148 PROC_TID_MOUNTS,
b4629fe2 149 PROC_TID_MOUNTSTATS,
1da177e4 150 PROC_TID_WCHAN,
63c6764c 151#ifdef CONFIG_MMU
e070ad49 152 PROC_TID_SMAPS,
63c6764c 153#endif
1da177e4
LT
154#ifdef CONFIG_SCHEDSTATS
155 PROC_TID_SCHEDSTAT,
156#endif
157#ifdef CONFIG_CPUSETS
158 PROC_TID_CPUSET,
159#endif
160#ifdef CONFIG_SECURITY
161 PROC_TID_ATTR,
162 PROC_TID_ATTR_CURRENT,
163 PROC_TID_ATTR_PREV,
164 PROC_TID_ATTR_EXEC,
165 PROC_TID_ATTR_FSCREATE,
4eb582cf 166 PROC_TID_ATTR_KEYCREATE,
1da177e4
LT
167#endif
168#ifdef CONFIG_AUDITSYSCALL
169 PROC_TID_LOGINUID,
170#endif
1da177e4
LT
171 PROC_TID_OOM_SCORE,
172 PROC_TID_OOM_ADJUST,
5e21ccb1
MS
173
174 /* Add new entries before this */
175 PROC_TID_FD_DIR = 0x8000, /* 0x8000-0xffff */
1da177e4
LT
176};
177
178struct pid_entry {
179 int type;
180 int len;
181 char *name;
182 mode_t mode;
183};
184
185#define E(type,name,mode) {(type),sizeof(name)-1,(name),(mode)}
186
187static struct pid_entry tgid_base_stuff[] = {
188 E(PROC_TGID_TASK, "task", S_IFDIR|S_IRUGO|S_IXUGO),
189 E(PROC_TGID_FD, "fd", S_IFDIR|S_IRUSR|S_IXUSR),
190 E(PROC_TGID_ENVIRON, "environ", S_IFREG|S_IRUSR),
191 E(PROC_TGID_AUXV, "auxv", S_IFREG|S_IRUSR),
192 E(PROC_TGID_STATUS, "status", S_IFREG|S_IRUGO),
193 E(PROC_TGID_CMDLINE, "cmdline", S_IFREG|S_IRUGO),
194 E(PROC_TGID_STAT, "stat", S_IFREG|S_IRUGO),
195 E(PROC_TGID_STATM, "statm", S_IFREG|S_IRUGO),
196 E(PROC_TGID_MAPS, "maps", S_IFREG|S_IRUGO),
6e21c8f1
CL
197#ifdef CONFIG_NUMA
198 E(PROC_TGID_NUMA_MAPS, "numa_maps", S_IFREG|S_IRUGO),
199#endif
1da177e4
LT
200 E(PROC_TGID_MEM, "mem", S_IFREG|S_IRUSR|S_IWUSR),
201#ifdef CONFIG_SECCOMP
202 E(PROC_TGID_SECCOMP, "seccomp", S_IFREG|S_IRUSR|S_IWUSR),
203#endif
204 E(PROC_TGID_CWD, "cwd", S_IFLNK|S_IRWXUGO),
205 E(PROC_TGID_ROOT, "root", S_IFLNK|S_IRWXUGO),
206 E(PROC_TGID_EXE, "exe", S_IFLNK|S_IRWXUGO),
207 E(PROC_TGID_MOUNTS, "mounts", S_IFREG|S_IRUGO),
b4629fe2 208 E(PROC_TGID_MOUNTSTATS, "mountstats", S_IFREG|S_IRUSR),
63c6764c 209#ifdef CONFIG_MMU
e070ad49 210 E(PROC_TGID_SMAPS, "smaps", S_IFREG|S_IRUGO),
63c6764c 211#endif
1da177e4
LT
212#ifdef CONFIG_SECURITY
213 E(PROC_TGID_ATTR, "attr", S_IFDIR|S_IRUGO|S_IXUGO),
214#endif
215#ifdef CONFIG_KALLSYMS
216 E(PROC_TGID_WCHAN, "wchan", S_IFREG|S_IRUGO),
217#endif
218#ifdef CONFIG_SCHEDSTATS
219 E(PROC_TGID_SCHEDSTAT, "schedstat", S_IFREG|S_IRUGO),
220#endif
221#ifdef CONFIG_CPUSETS
222 E(PROC_TGID_CPUSET, "cpuset", S_IFREG|S_IRUGO),
223#endif
224 E(PROC_TGID_OOM_SCORE, "oom_score",S_IFREG|S_IRUGO),
225 E(PROC_TGID_OOM_ADJUST,"oom_adj", S_IFREG|S_IRUGO|S_IWUSR),
226#ifdef CONFIG_AUDITSYSCALL
227 E(PROC_TGID_LOGINUID, "loginuid", S_IFREG|S_IWUSR|S_IRUGO),
228#endif
229 {0,0,NULL,0}
230};
231static struct pid_entry tid_base_stuff[] = {
232 E(PROC_TID_FD, "fd", S_IFDIR|S_IRUSR|S_IXUSR),
233 E(PROC_TID_ENVIRON, "environ", S_IFREG|S_IRUSR),
234 E(PROC_TID_AUXV, "auxv", S_IFREG|S_IRUSR),
235 E(PROC_TID_STATUS, "status", S_IFREG|S_IRUGO),
236 E(PROC_TID_CMDLINE, "cmdline", S_IFREG|S_IRUGO),
237 E(PROC_TID_STAT, "stat", S_IFREG|S_IRUGO),
238 E(PROC_TID_STATM, "statm", S_IFREG|S_IRUGO),
239 E(PROC_TID_MAPS, "maps", S_IFREG|S_IRUGO),
6e21c8f1
CL
240#ifdef CONFIG_NUMA
241 E(PROC_TID_NUMA_MAPS, "numa_maps", S_IFREG|S_IRUGO),
242#endif
1da177e4
LT
243 E(PROC_TID_MEM, "mem", S_IFREG|S_IRUSR|S_IWUSR),
244#ifdef CONFIG_SECCOMP
245 E(PROC_TID_SECCOMP, "seccomp", S_IFREG|S_IRUSR|S_IWUSR),
246#endif
247 E(PROC_TID_CWD, "cwd", S_IFLNK|S_IRWXUGO),
248 E(PROC_TID_ROOT, "root", S_IFLNK|S_IRWXUGO),
249 E(PROC_TID_EXE, "exe", S_IFLNK|S_IRWXUGO),
250 E(PROC_TID_MOUNTS, "mounts", S_IFREG|S_IRUGO),
63c6764c 251#ifdef CONFIG_MMU
e070ad49 252 E(PROC_TID_SMAPS, "smaps", S_IFREG|S_IRUGO),
63c6764c 253#endif
1da177e4
LT
254#ifdef CONFIG_SECURITY
255 E(PROC_TID_ATTR, "attr", S_IFDIR|S_IRUGO|S_IXUGO),
256#endif
257#ifdef CONFIG_KALLSYMS
258 E(PROC_TID_WCHAN, "wchan", S_IFREG|S_IRUGO),
259#endif
260#ifdef CONFIG_SCHEDSTATS
261 E(PROC_TID_SCHEDSTAT, "schedstat",S_IFREG|S_IRUGO),
262#endif
263#ifdef CONFIG_CPUSETS
264 E(PROC_TID_CPUSET, "cpuset", S_IFREG|S_IRUGO),
265#endif
266 E(PROC_TID_OOM_SCORE, "oom_score",S_IFREG|S_IRUGO),
267 E(PROC_TID_OOM_ADJUST, "oom_adj", S_IFREG|S_IRUGO|S_IWUSR),
268#ifdef CONFIG_AUDITSYSCALL
269 E(PROC_TID_LOGINUID, "loginuid", S_IFREG|S_IWUSR|S_IRUGO),
270#endif
271 {0,0,NULL,0}
272};
273
274#ifdef CONFIG_SECURITY
275static struct pid_entry tgid_attr_stuff[] = {
276 E(PROC_TGID_ATTR_CURRENT, "current", S_IFREG|S_IRUGO|S_IWUGO),
277 E(PROC_TGID_ATTR_PREV, "prev", S_IFREG|S_IRUGO),
278 E(PROC_TGID_ATTR_EXEC, "exec", S_IFREG|S_IRUGO|S_IWUGO),
279 E(PROC_TGID_ATTR_FSCREATE, "fscreate", S_IFREG|S_IRUGO|S_IWUGO),
4eb582cf 280 E(PROC_TGID_ATTR_KEYCREATE, "keycreate", S_IFREG|S_IRUGO|S_IWUGO),
1da177e4
LT
281 {0,0,NULL,0}
282};
283static struct pid_entry tid_attr_stuff[] = {
284 E(PROC_TID_ATTR_CURRENT, "current", S_IFREG|S_IRUGO|S_IWUGO),
285 E(PROC_TID_ATTR_PREV, "prev", S_IFREG|S_IRUGO),
286 E(PROC_TID_ATTR_EXEC, "exec", S_IFREG|S_IRUGO|S_IWUGO),
287 E(PROC_TID_ATTR_FSCREATE, "fscreate", S_IFREG|S_IRUGO|S_IWUGO),
4eb582cf 288 E(PROC_TID_ATTR_KEYCREATE, "keycreate", S_IFREG|S_IRUGO|S_IWUGO),
1da177e4
LT
289 {0,0,NULL,0}
290};
291#endif
292
293#undef E
294
295static int proc_fd_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
296{
297 struct task_struct *task = proc_task(inode);
298 struct files_struct *files;
299 struct file *file;
300 int fd = proc_type(inode) - PROC_TID_FD_DIR;
301
302 files = get_files_struct(task);
303 if (files) {
ca99c1da
DS
304 /*
305 * We are not taking a ref to the file structure, so we must
306 * hold ->file_lock.
307 */
308 spin_lock(&files->file_lock);
1da177e4
LT
309 file = fcheck_files(files, fd);
310 if (file) {
311 *mnt = mntget(file->f_vfsmnt);
312 *dentry = dget(file->f_dentry);
ca99c1da 313 spin_unlock(&files->file_lock);
1da177e4
LT
314 put_files_struct(files);
315 return 0;
316 }
ca99c1da 317 spin_unlock(&files->file_lock);
1da177e4
LT
318 put_files_struct(files);
319 }
320 return -ENOENT;
321}
322
0494f6ec 323static struct fs_struct *get_fs_struct(struct task_struct *task)
1da177e4
LT
324{
325 struct fs_struct *fs;
0494f6ec
MS
326 task_lock(task);
327 fs = task->fs;
1da177e4
LT
328 if(fs)
329 atomic_inc(&fs->count);
0494f6ec
MS
330 task_unlock(task);
331 return fs;
332}
333
334static int proc_cwd_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
335{
336 struct fs_struct *fs = get_fs_struct(proc_task(inode));
337 int result = -ENOENT;
1da177e4
LT
338 if (fs) {
339 read_lock(&fs->lock);
340 *mnt = mntget(fs->pwdmnt);
341 *dentry = dget(fs->pwd);
342 read_unlock(&fs->lock);
343 result = 0;
344 put_fs_struct(fs);
345 }
346 return result;
347}
348
349static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
350{
0494f6ec 351 struct fs_struct *fs = get_fs_struct(proc_task(inode));
1da177e4 352 int result = -ENOENT;
1da177e4
LT
353 if (fs) {
354 read_lock(&fs->lock);
355 *mnt = mntget(fs->rootmnt);
356 *dentry = dget(fs->root);
357 read_unlock(&fs->lock);
358 result = 0;
359 put_fs_struct(fs);
360 }
361 return result;
362}
363
66dcca06
SK
364
365/* Same as proc_root_link, but this addionally tries to get fs from other
366 * threads in the group */
0678e5fe
AM
367static int proc_task_root_link(struct inode *inode, struct dentry **dentry,
368 struct vfsmount **mnt)
66dcca06
SK
369{
370 struct fs_struct *fs;
371 int result = -ENOENT;
372 struct task_struct *leader = proc_task(inode);
373
374 task_lock(leader);
375 fs = leader->fs;
376 if (fs) {
377 atomic_inc(&fs->count);
378 task_unlock(leader);
379 } else {
380 /* Try to get fs from other threads */
381 task_unlock(leader);
66dcca06 382 read_lock(&tasklist_lock);
0678e5fe
AM
383 if (pid_alive(leader)) {
384 struct task_struct *task = leader;
385
66dcca06
SK
386 while ((task = next_thread(task)) != leader) {
387 task_lock(task);
388 fs = task->fs;
389 if (fs) {
390 atomic_inc(&fs->count);
391 task_unlock(task);
392 break;
393 }
394 task_unlock(task);
395 }
396 }
397 read_unlock(&tasklist_lock);
398 }
399
400 if (fs) {
401 read_lock(&fs->lock);
402 *mnt = mntget(fs->rootmnt);
403 *dentry = dget(fs->root);
404 read_unlock(&fs->lock);
405 result = 0;
406 put_fs_struct(fs);
407 }
408 return result;
409}
410
411
1da177e4
LT
412#define MAY_PTRACE(task) \
413 (task == current || \
414 (task->parent == current && \
415 (task->ptrace & PT_PTRACED) && \
416 (task->state == TASK_STOPPED || task->state == TASK_TRACED) && \
417 security_ptrace(current,task) == 0))
418
1da177e4
LT
419static int proc_pid_environ(struct task_struct *task, char * buffer)
420{
421 int res = 0;
422 struct mm_struct *mm = get_task_mm(task);
423 if (mm) {
424 unsigned int len = mm->env_end - mm->env_start;
425 if (len > PAGE_SIZE)
426 len = PAGE_SIZE;
427 res = access_process_vm(task, mm->env_start, buffer, len, 0);
ab8d11be 428 if (!ptrace_may_attach(task))
1da177e4
LT
429 res = -ESRCH;
430 mmput(mm);
431 }
432 return res;
433}
434
435static int proc_pid_cmdline(struct task_struct *task, char * buffer)
436{
437 int res = 0;
438 unsigned int len;
439 struct mm_struct *mm = get_task_mm(task);
440 if (!mm)
441 goto out;
442 if (!mm->arg_end)
443 goto out_mm; /* Shh! No looking before we're done */
444
445 len = mm->arg_end - mm->arg_start;
446
447 if (len > PAGE_SIZE)
448 len = PAGE_SIZE;
449
450 res = access_process_vm(task, mm->arg_start, buffer, len, 0);
451
452 // If the nul at the end of args has been overwritten, then
453 // assume application is using setproctitle(3).
454 if (res > 0 && buffer[res-1] != '\0' && len < PAGE_SIZE) {
455 len = strnlen(buffer, res);
456 if (len < res) {
457 res = len;
458 } else {
459 len = mm->env_end - mm->env_start;
460 if (len > PAGE_SIZE - res)
461 len = PAGE_SIZE - res;
462 res += access_process_vm(task, mm->env_start, buffer+res, len, 0);
463 res = strnlen(buffer, res);
464 }
465 }
466out_mm:
467 mmput(mm);
468out:
469 return res;
470}
471
472static int proc_pid_auxv(struct task_struct *task, char *buffer)
473{
474 int res = 0;
475 struct mm_struct *mm = get_task_mm(task);
476 if (mm) {
477 unsigned int nwords = 0;
478 do
479 nwords += 2;
480 while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
481 res = nwords * sizeof(mm->saved_auxv[0]);
482 if (res > PAGE_SIZE)
483 res = PAGE_SIZE;
484 memcpy(buffer, mm->saved_auxv, res);
485 mmput(mm);
486 }
487 return res;
488}
489
490
491#ifdef CONFIG_KALLSYMS
492/*
493 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
494 * Returns the resolved symbol. If that fails, simply return the address.
495 */
496static int proc_pid_wchan(struct task_struct *task, char *buffer)
497{
498 char *modname;
499 const char *sym_name;
500 unsigned long wchan, size, offset;
501 char namebuf[KSYM_NAME_LEN+1];
502
503 wchan = get_wchan(task);
504
505 sym_name = kallsyms_lookup(wchan, &size, &offset, &modname, namebuf);
506 if (sym_name)
507 return sprintf(buffer, "%s", sym_name);
508 return sprintf(buffer, "%lu", wchan);
509}
510#endif /* CONFIG_KALLSYMS */
511
512#ifdef CONFIG_SCHEDSTATS
513/*
514 * Provides /proc/PID/schedstat
515 */
516static int proc_pid_schedstat(struct task_struct *task, char *buffer)
517{
518 return sprintf(buffer, "%lu %lu %lu\n",
519 task->sched_info.cpu_time,
520 task->sched_info.run_delay,
521 task->sched_info.pcnt);
522}
523#endif
524
525/* The badness from the OOM killer */
526unsigned long badness(struct task_struct *p, unsigned long uptime);
527static int proc_oom_score(struct task_struct *task, char *buffer)
528{
529 unsigned long points;
530 struct timespec uptime;
531
532 do_posix_clock_monotonic_gettime(&uptime);
533 points = badness(task, uptime.tv_sec);
534 return sprintf(buffer, "%lu\n", points);
535}
536
537/************************************************************************/
538/* Here the fs part begins */
539/************************************************************************/
540
541/* permission checks */
542
66dcca06
SK
543/* If the process being read is separated by chroot from the reading process,
544 * don't let the reader access the threads.
e4e5d3fc
HP
545 *
546 * note: this does dput(root) and mntput(vfsmnt) on exit.
66dcca06
SK
547 */
548static int proc_check_chroot(struct dentry *root, struct vfsmount *vfsmnt)
1da177e4 549{
66dcca06
SK
550 struct dentry *de, *base;
551 struct vfsmount *our_vfsmnt, *mnt;
1da177e4 552 int res = 0;
e4e5d3fc 553
1da177e4
LT
554 read_lock(&current->fs->lock);
555 our_vfsmnt = mntget(current->fs->rootmnt);
556 base = dget(current->fs->root);
557 read_unlock(&current->fs->lock);
558
559 spin_lock(&vfsmount_lock);
560 de = root;
561 mnt = vfsmnt;
562
e4e5d3fc
HP
563 while (mnt != our_vfsmnt) {
564 if (mnt == mnt->mnt_parent)
1da177e4 565 goto out;
e4e5d3fc
HP
566 de = mnt->mnt_mountpoint;
567 mnt = mnt->mnt_parent;
1da177e4
LT
568 }
569
570 if (!is_subdir(de, base))
571 goto out;
572 spin_unlock(&vfsmount_lock);
573
574exit:
575 dput(base);
576 mntput(our_vfsmnt);
577 dput(root);
e4e5d3fc 578 mntput(vfsmnt);
1da177e4
LT
579 return res;
580out:
581 spin_unlock(&vfsmount_lock);
582 res = -EACCES;
583 goto exit;
584}
585
66dcca06
SK
586static int proc_check_root(struct inode *inode)
587{
588 struct dentry *root;
589 struct vfsmount *vfsmnt;
590
591 if (proc_root_link(inode, &root, &vfsmnt)) /* Ewww... */
592 return -ENOENT;
593 return proc_check_chroot(root, vfsmnt);
594}
595
1da177e4
LT
596static int proc_permission(struct inode *inode, int mask, struct nameidata *nd)
597{
598 if (generic_permission(inode, mask, NULL) != 0)
599 return -EACCES;
600 return proc_check_root(inode);
601}
602
66dcca06
SK
603static int proc_task_permission(struct inode *inode, int mask, struct nameidata *nd)
604{
605 struct dentry *root;
606 struct vfsmount *vfsmnt;
607
608 if (generic_permission(inode, mask, NULL) != 0)
609 return -EACCES;
610
611 if (proc_task_root_link(inode, &root, &vfsmnt))
612 return -ENOENT;
613
614 return proc_check_chroot(root, vfsmnt);
615}
616
1da177e4
LT
617extern struct seq_operations proc_pid_maps_op;
618static int maps_open(struct inode *inode, struct file *file)
619{
620 struct task_struct *task = proc_task(inode);
621 int ret = seq_open(file, &proc_pid_maps_op);
622 if (!ret) {
623 struct seq_file *m = file->private_data;
624 m->private = task;
625 }
626 return ret;
627}
628
629static struct file_operations proc_maps_operations = {
630 .open = maps_open,
631 .read = seq_read,
632 .llseek = seq_lseek,
633 .release = seq_release,
634};
635
6e21c8f1
CL
636#ifdef CONFIG_NUMA
637extern struct seq_operations proc_pid_numa_maps_op;
638static int numa_maps_open(struct inode *inode, struct file *file)
639{
640 struct task_struct *task = proc_task(inode);
641 int ret = seq_open(file, &proc_pid_numa_maps_op);
642 if (!ret) {
643 struct seq_file *m = file->private_data;
644 m->private = task;
645 }
646 return ret;
647}
648
649static struct file_operations proc_numa_maps_operations = {
650 .open = numa_maps_open,
651 .read = seq_read,
652 .llseek = seq_lseek,
653 .release = seq_release,
654};
655#endif
656
63c6764c 657#ifdef CONFIG_MMU
e070ad49
ML
658extern struct seq_operations proc_pid_smaps_op;
659static int smaps_open(struct inode *inode, struct file *file)
660{
661 struct task_struct *task = proc_task(inode);
662 int ret = seq_open(file, &proc_pid_smaps_op);
663 if (!ret) {
664 struct seq_file *m = file->private_data;
665 m->private = task;
666 }
667 return ret;
668}
669
670static struct file_operations proc_smaps_operations = {
671 .open = smaps_open,
672 .read = seq_read,
673 .llseek = seq_lseek,
674 .release = seq_release,
675};
63c6764c 676#endif
e070ad49 677
1da177e4 678extern struct seq_operations mounts_op;
5addc5dd
AV
679struct proc_mounts {
680 struct seq_file m;
681 int event;
682};
683
1da177e4
LT
684static int mounts_open(struct inode *inode, struct file *file)
685{
686 struct task_struct *task = proc_task(inode);
5addc5dd
AV
687 struct namespace *namespace;
688 struct proc_mounts *p;
689 int ret = -EINVAL;
1da177e4 690
5addc5dd
AV
691 task_lock(task);
692 namespace = task->namespace;
693 if (namespace)
694 get_namespace(namespace);
695 task_unlock(task);
696
697 if (namespace) {
698 ret = -ENOMEM;
699 p = kmalloc(sizeof(struct proc_mounts), GFP_KERNEL);
700 if (p) {
701 file->private_data = &p->m;
702 ret = seq_open(file, &mounts_op);
703 if (!ret) {
704 p->m.private = namespace;
705 p->event = namespace->event;
706 return 0;
707 }
708 kfree(p);
1da177e4 709 }
5addc5dd 710 put_namespace(namespace);
1da177e4
LT
711 }
712 return ret;
713}
714
715static int mounts_release(struct inode *inode, struct file *file)
716{
717 struct seq_file *m = file->private_data;
718 struct namespace *namespace = m->private;
719 put_namespace(namespace);
720 return seq_release(inode, file);
721}
722
5addc5dd
AV
723static unsigned mounts_poll(struct file *file, poll_table *wait)
724{
725 struct proc_mounts *p = file->private_data;
726 struct namespace *ns = p->m.private;
727 unsigned res = 0;
728
729 poll_wait(file, &ns->poll, wait);
730
731 spin_lock(&vfsmount_lock);
732 if (p->event != ns->event) {
733 p->event = ns->event;
734 res = POLLERR;
735 }
736 spin_unlock(&vfsmount_lock);
737
738 return res;
739}
740
1da177e4
LT
741static struct file_operations proc_mounts_operations = {
742 .open = mounts_open,
743 .read = seq_read,
744 .llseek = seq_lseek,
745 .release = mounts_release,
5addc5dd 746 .poll = mounts_poll,
1da177e4
LT
747};
748
b4629fe2
CL
749extern struct seq_operations mountstats_op;
750static int mountstats_open(struct inode *inode, struct file *file)
751{
752 struct task_struct *task = proc_task(inode);
753 int ret = seq_open(file, &mountstats_op);
754
755 if (!ret) {
756 struct seq_file *m = file->private_data;
757 struct namespace *namespace;
758 task_lock(task);
759 namespace = task->namespace;
760 if (namespace)
761 get_namespace(namespace);
762 task_unlock(task);
763
764 if (namespace)
765 m->private = namespace;
766 else {
767 seq_release(inode, file);
768 ret = -EINVAL;
769 }
770 }
771 return ret;
772}
773
774static struct file_operations proc_mountstats_operations = {
775 .open = mountstats_open,
776 .read = seq_read,
777 .llseek = seq_lseek,
778 .release = mounts_release,
779};
780
1da177e4
LT
781#define PROC_BLOCK_SIZE (3*1024) /* 4K page size but our output routines use some slack for overruns */
782
783static ssize_t proc_info_read(struct file * file, char __user * buf,
784 size_t count, loff_t *ppos)
785{
786 struct inode * inode = file->f_dentry->d_inode;
787 unsigned long page;
788 ssize_t length;
789 struct task_struct *task = proc_task(inode);
790
791 if (count > PROC_BLOCK_SIZE)
792 count = PROC_BLOCK_SIZE;
793 if (!(page = __get_free_page(GFP_KERNEL)))
794 return -ENOMEM;
795
796 length = PROC_I(inode)->op.proc_read(task, (char*)page);
797
798 if (length >= 0)
799 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
800 free_page(page);
801 return length;
802}
803
804static struct file_operations proc_info_file_operations = {
805 .read = proc_info_read,
806};
807
808static int mem_open(struct inode* inode, struct file* file)
809{
810 file->private_data = (void*)((long)current->self_exec_id);
811 return 0;
812}
813
814static ssize_t mem_read(struct file * file, char __user * buf,
815 size_t count, loff_t *ppos)
816{
817 struct task_struct *task = proc_task(file->f_dentry->d_inode);
818 char *page;
819 unsigned long src = *ppos;
820 int ret = -ESRCH;
821 struct mm_struct *mm;
822
ab8d11be 823 if (!MAY_PTRACE(task) || !ptrace_may_attach(task))
1da177e4
LT
824 goto out;
825
826 ret = -ENOMEM;
827 page = (char *)__get_free_page(GFP_USER);
828 if (!page)
829 goto out;
830
831 ret = 0;
832
833 mm = get_task_mm(task);
834 if (!mm)
835 goto out_free;
836
837 ret = -EIO;
838
839 if (file->private_data != (void*)((long)current->self_exec_id))
840 goto out_put;
841
842 ret = 0;
843
844 while (count > 0) {
845 int this_len, retval;
846
847 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
848 retval = access_process_vm(task, src, page, this_len, 0);
ab8d11be 849 if (!retval || !MAY_PTRACE(task) || !ptrace_may_attach(task)) {
1da177e4
LT
850 if (!ret)
851 ret = -EIO;
852 break;
853 }
854
855 if (copy_to_user(buf, page, retval)) {
856 ret = -EFAULT;
857 break;
858 }
859
860 ret += retval;
861 src += retval;
862 buf += retval;
863 count -= retval;
864 }
865 *ppos = src;
866
867out_put:
868 mmput(mm);
869out_free:
870 free_page((unsigned long) page);
871out:
872 return ret;
873}
874
875#define mem_write NULL
876
877#ifndef mem_write
878/* This is a security hazard */
879static ssize_t mem_write(struct file * file, const char * buf,
880 size_t count, loff_t *ppos)
881{
882 int copied = 0;
883 char *page;
884 struct task_struct *task = proc_task(file->f_dentry->d_inode);
885 unsigned long dst = *ppos;
886
ab8d11be 887 if (!MAY_PTRACE(task) || !ptrace_may_attach(task))
1da177e4
LT
888 return -ESRCH;
889
890 page = (char *)__get_free_page(GFP_USER);
891 if (!page)
892 return -ENOMEM;
893
894 while (count > 0) {
895 int this_len, retval;
896
897 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
898 if (copy_from_user(page, buf, this_len)) {
899 copied = -EFAULT;
900 break;
901 }
902 retval = access_process_vm(task, dst, page, this_len, 1);
903 if (!retval) {
904 if (!copied)
905 copied = -EIO;
906 break;
907 }
908 copied += retval;
909 buf += retval;
910 dst += retval;
911 count -= retval;
912 }
913 *ppos = dst;
914 free_page((unsigned long) page);
915 return copied;
916}
917#endif
918
919static loff_t mem_lseek(struct file * file, loff_t offset, int orig)
920{
921 switch (orig) {
922 case 0:
923 file->f_pos = offset;
924 break;
925 case 1:
926 file->f_pos += offset;
927 break;
928 default:
929 return -EINVAL;
930 }
931 force_successful_syscall_return();
932 return file->f_pos;
933}
934
935static struct file_operations proc_mem_operations = {
936 .llseek = mem_lseek,
937 .read = mem_read,
938 .write = mem_write,
939 .open = mem_open,
940};
941
942static ssize_t oom_adjust_read(struct file *file, char __user *buf,
943 size_t count, loff_t *ppos)
944{
945 struct task_struct *task = proc_task(file->f_dentry->d_inode);
946 char buffer[8];
947 size_t len;
948 int oom_adjust = task->oomkilladj;
949 loff_t __ppos = *ppos;
950
951 len = sprintf(buffer, "%i\n", oom_adjust);
952 if (__ppos >= len)
953 return 0;
954 if (count > len-__ppos)
955 count = len-__ppos;
956 if (copy_to_user(buf, buffer + __ppos, count))
957 return -EFAULT;
958 *ppos = __ppos + count;
959 return count;
960}
961
962static ssize_t oom_adjust_write(struct file *file, const char __user *buf,
963 size_t count, loff_t *ppos)
964{
965 struct task_struct *task = proc_task(file->f_dentry->d_inode);
966 char buffer[8], *end;
967 int oom_adjust;
968
969 if (!capable(CAP_SYS_RESOURCE))
970 return -EPERM;
971 memset(buffer, 0, 8);
972 if (count > 6)
973 count = 6;
974 if (copy_from_user(buffer, buf, count))
975 return -EFAULT;
976 oom_adjust = simple_strtol(buffer, &end, 0);
79befd0c 977 if ((oom_adjust < -16 || oom_adjust > 15) && oom_adjust != OOM_DISABLE)
1da177e4
LT
978 return -EINVAL;
979 if (*end == '\n')
980 end++;
981 task->oomkilladj = oom_adjust;
982 if (end - buffer == 0)
983 return -EIO;
984 return end - buffer;
985}
986
987static struct file_operations proc_oom_adjust_operations = {
988 .read = oom_adjust_read,
989 .write = oom_adjust_write,
990};
991
992static struct inode_operations proc_mem_inode_operations = {
993 .permission = proc_permission,
994};
995
996#ifdef CONFIG_AUDITSYSCALL
997#define TMPBUFLEN 21
998static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
999 size_t count, loff_t *ppos)
1000{
1001 struct inode * inode = file->f_dentry->d_inode;
1002 struct task_struct *task = proc_task(inode);
1003 ssize_t length;
1004 char tmpbuf[TMPBUFLEN];
1005
1006 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1007 audit_get_loginuid(task->audit_context));
1008 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1009}
1010
1011static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1012 size_t count, loff_t *ppos)
1013{
1014 struct inode * inode = file->f_dentry->d_inode;
1015 char *page, *tmp;
1016 ssize_t length;
1017 struct task_struct *task = proc_task(inode);
1018 uid_t loginuid;
1019
1020 if (!capable(CAP_AUDIT_CONTROL))
1021 return -EPERM;
1022
1023 if (current != task)
1024 return -EPERM;
1025
e0182909
AV
1026 if (count >= PAGE_SIZE)
1027 count = PAGE_SIZE - 1;
1da177e4
LT
1028
1029 if (*ppos != 0) {
1030 /* No partial writes. */
1031 return -EINVAL;
1032 }
1033 page = (char*)__get_free_page(GFP_USER);
1034 if (!page)
1035 return -ENOMEM;
1036 length = -EFAULT;
1037 if (copy_from_user(page, buf, count))
1038 goto out_free_page;
1039
e0182909 1040 page[count] = '\0';
1da177e4
LT
1041 loginuid = simple_strtoul(page, &tmp, 10);
1042 if (tmp == page) {
1043 length = -EINVAL;
1044 goto out_free_page;
1045
1046 }
456be6cd 1047 length = audit_set_loginuid(task, loginuid);
1da177e4
LT
1048 if (likely(length == 0))
1049 length = count;
1050
1051out_free_page:
1052 free_page((unsigned long) page);
1053 return length;
1054}
1055
1056static struct file_operations proc_loginuid_operations = {
1057 .read = proc_loginuid_read,
1058 .write = proc_loginuid_write,
1059};
1060#endif
1061
1062#ifdef CONFIG_SECCOMP
1063static ssize_t seccomp_read(struct file *file, char __user *buf,
1064 size_t count, loff_t *ppos)
1065{
1066 struct task_struct *tsk = proc_task(file->f_dentry->d_inode);
1067 char __buf[20];
1068 loff_t __ppos = *ppos;
1069 size_t len;
1070
1071 /* no need to print the trailing zero, so use only len */
1072 len = sprintf(__buf, "%u\n", tsk->seccomp.mode);
1073 if (__ppos >= len)
1074 return 0;
1075 if (count > len - __ppos)
1076 count = len - __ppos;
1077 if (copy_to_user(buf, __buf + __ppos, count))
1078 return -EFAULT;
1079 *ppos = __ppos + count;
1080 return count;
1081}
1082
1083static ssize_t seccomp_write(struct file *file, const char __user *buf,
1084 size_t count, loff_t *ppos)
1085{
1086 struct task_struct *tsk = proc_task(file->f_dentry->d_inode);
1087 char __buf[20], *end;
1088 unsigned int seccomp_mode;
1089
1090 /* can set it only once to be even more secure */
1091 if (unlikely(tsk->seccomp.mode))
1092 return -EPERM;
1093
1094 memset(__buf, 0, sizeof(__buf));
1095 count = min(count, sizeof(__buf) - 1);
1096 if (copy_from_user(__buf, buf, count))
1097 return -EFAULT;
1098 seccomp_mode = simple_strtoul(__buf, &end, 0);
1099 if (*end == '\n')
1100 end++;
1101 if (seccomp_mode && seccomp_mode <= NR_SECCOMP_MODES) {
1102 tsk->seccomp.mode = seccomp_mode;
1103 set_tsk_thread_flag(tsk, TIF_SECCOMP);
1104 } else
1105 return -EINVAL;
1106 if (unlikely(!(end - __buf)))
1107 return -EIO;
1108 return end - __buf;
1109}
1110
1111static struct file_operations proc_seccomp_operations = {
1112 .read = seccomp_read,
1113 .write = seccomp_write,
1114};
1115#endif /* CONFIG_SECCOMP */
1116
008b150a 1117static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
1118{
1119 struct inode *inode = dentry->d_inode;
1120 int error = -EACCES;
1121
1122 /* We don't need a base pointer in the /proc filesystem */
1123 path_release(nd);
1124
1125 if (current->fsuid != inode->i_uid && !capable(CAP_DAC_OVERRIDE))
1126 goto out;
1127 error = proc_check_root(inode);
1128 if (error)
1129 goto out;
1130
1131 error = PROC_I(inode)->op.proc_get_link(inode, &nd->dentry, &nd->mnt);
1132 nd->last_type = LAST_BIND;
1133out:
008b150a 1134 return ERR_PTR(error);
1da177e4
LT
1135}
1136
1137static int do_proc_readlink(struct dentry *dentry, struct vfsmount *mnt,
1138 char __user *buffer, int buflen)
1139{
1140 struct inode * inode;
1141 char *tmp = (char*)__get_free_page(GFP_KERNEL), *path;
1142 int len;
1143
1144 if (!tmp)
1145 return -ENOMEM;
1146
1147 inode = dentry->d_inode;
1148 path = d_path(dentry, mnt, tmp, PAGE_SIZE);
1149 len = PTR_ERR(path);
1150 if (IS_ERR(path))
1151 goto out;
1152 len = tmp + PAGE_SIZE - 1 - path;
1153
1154 if (len > buflen)
1155 len = buflen;
1156 if (copy_to_user(buffer, path, len))
1157 len = -EFAULT;
1158 out:
1159 free_page((unsigned long)tmp);
1160 return len;
1161}
1162
1163static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1164{
1165 int error = -EACCES;
1166 struct inode *inode = dentry->d_inode;
1167 struct dentry *de;
1168 struct vfsmount *mnt = NULL;
1169
1170 lock_kernel();
1171
1172 if (current->fsuid != inode->i_uid && !capable(CAP_DAC_OVERRIDE))
1173 goto out;
1174 error = proc_check_root(inode);
1175 if (error)
1176 goto out;
1177
1178 error = PROC_I(inode)->op.proc_get_link(inode, &de, &mnt);
1179 if (error)
1180 goto out;
1181
1182 error = do_proc_readlink(de, mnt, buffer, buflen);
1183 dput(de);
1184 mntput(mnt);
1185out:
1186 unlock_kernel();
1187 return error;
1188}
1189
1190static struct inode_operations proc_pid_link_inode_operations = {
1191 .readlink = proc_pid_readlink,
1192 .follow_link = proc_pid_follow_link
1193};
1194
1195#define NUMBUF 10
1196
1197static int proc_readfd(struct file * filp, void * dirent, filldir_t filldir)
1198{
1199 struct inode *inode = filp->f_dentry->d_inode;
1200 struct task_struct *p = proc_task(inode);
1201 unsigned int fd, tid, ino;
1202 int retval;
1203 char buf[NUMBUF];
1204 struct files_struct * files;
badf1662 1205 struct fdtable *fdt;
1da177e4
LT
1206
1207 retval = -ENOENT;
1208 if (!pid_alive(p))
1209 goto out;
1210 retval = 0;
1211 tid = p->pid;
1212
1213 fd = filp->f_pos;
1214 switch (fd) {
1215 case 0:
1216 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
1217 goto out;
1218 filp->f_pos++;
1219 case 1:
1220 ino = fake_ino(tid, PROC_TID_INO);
1221 if (filldir(dirent, "..", 2, 1, ino, DT_DIR) < 0)
1222 goto out;
1223 filp->f_pos++;
1224 default:
1225 files = get_files_struct(p);
1226 if (!files)
1227 goto out;
b835996f 1228 rcu_read_lock();
badf1662 1229 fdt = files_fdtable(files);
1da177e4 1230 for (fd = filp->f_pos-2;
badf1662 1231 fd < fdt->max_fds;
1da177e4
LT
1232 fd++, filp->f_pos++) {
1233 unsigned int i,j;
1234
1235 if (!fcheck_files(files, fd))
1236 continue;
b835996f 1237 rcu_read_unlock();
1da177e4
LT
1238
1239 j = NUMBUF;
1240 i = fd;
1241 do {
1242 j--;
1243 buf[j] = '0' + (i % 10);
1244 i /= 10;
1245 } while (i);
1246
1247 ino = fake_ino(tid, PROC_TID_FD_DIR + fd);
1248 if (filldir(dirent, buf+j, NUMBUF-j, fd+2, ino, DT_LNK) < 0) {
b835996f 1249 rcu_read_lock();
1da177e4
LT
1250 break;
1251 }
b835996f 1252 rcu_read_lock();
1da177e4 1253 }
b835996f 1254 rcu_read_unlock();
1da177e4
LT
1255 put_files_struct(files);
1256 }
1257out:
1258 return retval;
1259}
1260
1261static int proc_pident_readdir(struct file *filp,
1262 void *dirent, filldir_t filldir,
1263 struct pid_entry *ents, unsigned int nents)
1264{
1265 int i;
1266 int pid;
1267 struct dentry *dentry = filp->f_dentry;
1268 struct inode *inode = dentry->d_inode;
1269 struct pid_entry *p;
1270 ino_t ino;
1271 int ret;
1272
1273 ret = -ENOENT;
1274 if (!pid_alive(proc_task(inode)))
1275 goto out;
1276
1277 ret = 0;
1278 pid = proc_task(inode)->pid;
1279 i = filp->f_pos;
1280 switch (i) {
1281 case 0:
1282 ino = inode->i_ino;
1283 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
1284 goto out;
1285 i++;
1286 filp->f_pos++;
1287 /* fall through */
1288 case 1:
1289 ino = parent_ino(dentry);
1290 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
1291 goto out;
1292 i++;
1293 filp->f_pos++;
1294 /* fall through */
1295 default:
1296 i -= 2;
1297 if (i >= nents) {
1298 ret = 1;
1299 goto out;
1300 }
1301 p = ents + i;
1302 while (p->name) {
1303 if (filldir(dirent, p->name, p->len, filp->f_pos,
1304 fake_ino(pid, p->type), p->mode >> 12) < 0)
1305 goto out;
1306 filp->f_pos++;
1307 p++;
1308 }
1309 }
1310
1311 ret = 1;
1312out:
1313 return ret;
1314}
1315
1316static int proc_tgid_base_readdir(struct file * filp,
1317 void * dirent, filldir_t filldir)
1318{
1319 return proc_pident_readdir(filp,dirent,filldir,
1320 tgid_base_stuff,ARRAY_SIZE(tgid_base_stuff));
1321}
1322
1323static int proc_tid_base_readdir(struct file * filp,
1324 void * dirent, filldir_t filldir)
1325{
1326 return proc_pident_readdir(filp,dirent,filldir,
1327 tid_base_stuff,ARRAY_SIZE(tid_base_stuff));
1328}
1329
1330/* building an inode */
1331
1332static int task_dumpable(struct task_struct *task)
1333{
1334 int dumpable = 0;
1335 struct mm_struct *mm;
1336
1337 task_lock(task);
1338 mm = task->mm;
1339 if (mm)
1340 dumpable = mm->dumpable;
1341 task_unlock(task);
d6e71144
AC
1342 if(dumpable == 1)
1343 return 1;
1344 return 0;
1da177e4
LT
1345}
1346
1347
1348static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task, int ino)
1349{
1350 struct inode * inode;
1351 struct proc_inode *ei;
1352
1353 /* We need a new inode */
1354
1355 inode = new_inode(sb);
1356 if (!inode)
1357 goto out;
1358
1359 /* Common stuff */
1360 ei = PROC_I(inode);
1361 ei->task = NULL;
1362 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1363 inode->i_ino = fake_ino(task->pid, ino);
1364
1365 if (!pid_alive(task))
1366 goto out_unlock;
1367
1368 /*
1369 * grab the reference to task.
1370 */
1371 get_task_struct(task);
1372 ei->task = task;
1373 ei->type = ino;
1374 inode->i_uid = 0;
1375 inode->i_gid = 0;
1376 if (ino == PROC_TGID_INO || ino == PROC_TID_INO || task_dumpable(task)) {
1377 inode->i_uid = task->euid;
1378 inode->i_gid = task->egid;
1379 }
1380 security_task_to_inode(task, inode);
1381
1382out:
1383 return inode;
1384
1385out_unlock:
1386 ei->pde = NULL;
1387 iput(inode);
1388 return NULL;
1389}
1390
1391/* dentry stuff */
1392
1393/*
1394 * Exceptional case: normally we are not allowed to unhash a busy
1395 * directory. In this case, however, we can do it - no aliasing problems
1396 * due to the way we treat inodes.
1397 *
1398 * Rewrite the inode's ownerships here because the owning task may have
1399 * performed a setuid(), etc.
1400 */
1401static int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
1402{
1403 struct inode *inode = dentry->d_inode;
1404 struct task_struct *task = proc_task(inode);
1405 if (pid_alive(task)) {
1406 if (proc_type(inode) == PROC_TGID_INO || proc_type(inode) == PROC_TID_INO || task_dumpable(task)) {
1407 inode->i_uid = task->euid;
1408 inode->i_gid = task->egid;
1409 } else {
1410 inode->i_uid = 0;
1411 inode->i_gid = 0;
1412 }
1413 security_task_to_inode(task, inode);
1414 return 1;
1415 }
1416 d_drop(dentry);
1417 return 0;
1418}
1419
1420static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1421{
1422 struct inode *inode = dentry->d_inode;
1423 struct task_struct *task = proc_task(inode);
1424 int fd = proc_type(inode) - PROC_TID_FD_DIR;
1425 struct files_struct *files;
1426
1427 files = get_files_struct(task);
1428 if (files) {
b835996f 1429 rcu_read_lock();
1da177e4 1430 if (fcheck_files(files, fd)) {
b835996f 1431 rcu_read_unlock();
1da177e4
LT
1432 put_files_struct(files);
1433 if (task_dumpable(task)) {
1434 inode->i_uid = task->euid;
1435 inode->i_gid = task->egid;
1436 } else {
1437 inode->i_uid = 0;
1438 inode->i_gid = 0;
1439 }
1440 security_task_to_inode(task, inode);
1441 return 1;
1442 }
b835996f 1443 rcu_read_unlock();
1da177e4
LT
1444 put_files_struct(files);
1445 }
1446 d_drop(dentry);
1447 return 0;
1448}
1449
1450static void pid_base_iput(struct dentry *dentry, struct inode *inode)
1451{
1452 struct task_struct *task = proc_task(inode);
1453 spin_lock(&task->proc_lock);
1454 if (task->proc_dentry == dentry)
1455 task->proc_dentry = NULL;
1456 spin_unlock(&task->proc_lock);
1457 iput(inode);
1458}
1459
1460static int pid_delete_dentry(struct dentry * dentry)
1461{
1462 /* Is the task we represent dead?
1463 * If so, then don't put the dentry on the lru list,
1464 * kill it immediately.
1465 */
1466 return !pid_alive(proc_task(dentry->d_inode));
1467}
1468
1469static struct dentry_operations tid_fd_dentry_operations =
1470{
1471 .d_revalidate = tid_fd_revalidate,
1472 .d_delete = pid_delete_dentry,
1473};
1474
1475static struct dentry_operations pid_dentry_operations =
1476{
1477 .d_revalidate = pid_revalidate,
1478 .d_delete = pid_delete_dentry,
1479};
1480
1481static struct dentry_operations pid_base_dentry_operations =
1482{
1483 .d_revalidate = pid_revalidate,
1484 .d_iput = pid_base_iput,
1485 .d_delete = pid_delete_dentry,
1486};
1487
1488/* Lookups */
1489
1490static unsigned name_to_int(struct dentry *dentry)
1491{
1492 const char *name = dentry->d_name.name;
1493 int len = dentry->d_name.len;
1494 unsigned n = 0;
1495
1496 if (len > 1 && *name == '0')
1497 goto out;
1498 while (len-- > 0) {
1499 unsigned c = *name++ - '0';
1500 if (c > 9)
1501 goto out;
1502 if (n >= (~0U-9)/10)
1503 goto out;
1504 n *= 10;
1505 n += c;
1506 }
1507 return n;
1508out:
1509 return ~0U;
1510}
1511
1512/* SMP-safe */
1513static struct dentry *proc_lookupfd(struct inode * dir, struct dentry * dentry, struct nameidata *nd)
1514{
1515 struct task_struct *task = proc_task(dir);
1516 unsigned fd = name_to_int(dentry);
1517 struct file * file;
1518 struct files_struct * files;
1519 struct inode *inode;
1520 struct proc_inode *ei;
1521
1522 if (fd == ~0U)
1523 goto out;
1524 if (!pid_alive(task))
1525 goto out;
1526
1527 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TID_FD_DIR+fd);
1528 if (!inode)
1529 goto out;
1530 ei = PROC_I(inode);
1531 files = get_files_struct(task);
1532 if (!files)
1533 goto out_unlock;
1534 inode->i_mode = S_IFLNK;
ca99c1da
DS
1535
1536 /*
1537 * We are not taking a ref to the file structure, so we must
1538 * hold ->file_lock.
1539 */
1540 spin_lock(&files->file_lock);
1da177e4
LT
1541 file = fcheck_files(files, fd);
1542 if (!file)
1543 goto out_unlock2;
1544 if (file->f_mode & 1)
1545 inode->i_mode |= S_IRUSR | S_IXUSR;
1546 if (file->f_mode & 2)
1547 inode->i_mode |= S_IWUSR | S_IXUSR;
ca99c1da 1548 spin_unlock(&files->file_lock);
1da177e4
LT
1549 put_files_struct(files);
1550 inode->i_op = &proc_pid_link_inode_operations;
1551 inode->i_size = 64;
1552 ei->op.proc_get_link = proc_fd_link;
1553 dentry->d_op = &tid_fd_dentry_operations;
1554 d_add(dentry, inode);
1555 return NULL;
1556
1557out_unlock2:
ca99c1da 1558 spin_unlock(&files->file_lock);
1da177e4
LT
1559 put_files_struct(files);
1560out_unlock:
1561 iput(inode);
1562out:
1563 return ERR_PTR(-ENOENT);
1564}
1565
1566static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir);
1567static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd);
1568
1569static struct file_operations proc_fd_operations = {
1570 .read = generic_read_dir,
1571 .readdir = proc_readfd,
1572};
1573
1574static struct file_operations proc_task_operations = {
1575 .read = generic_read_dir,
1576 .readdir = proc_task_readdir,
1577};
1578
1579/*
1580 * proc directories can do almost nothing..
1581 */
1582static struct inode_operations proc_fd_inode_operations = {
1583 .lookup = proc_lookupfd,
1584 .permission = proc_permission,
1585};
1586
1587static struct inode_operations proc_task_inode_operations = {
1588 .lookup = proc_task_lookup,
66dcca06 1589 .permission = proc_task_permission,
1da177e4
LT
1590};
1591
1592#ifdef CONFIG_SECURITY
1593static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
1594 size_t count, loff_t *ppos)
1595{
1596 struct inode * inode = file->f_dentry->d_inode;
1597 unsigned long page;
1598 ssize_t length;
1599 struct task_struct *task = proc_task(inode);
1600
1601 if (count > PAGE_SIZE)
1602 count = PAGE_SIZE;
1603 if (!(page = __get_free_page(GFP_KERNEL)))
1604 return -ENOMEM;
1605
1606 length = security_getprocattr(task,
1607 (char*)file->f_dentry->d_name.name,
1608 (void*)page, count);
1609 if (length >= 0)
1610 length = simple_read_from_buffer(buf, count, ppos, (char *)page, length);
1611 free_page(page);
1612 return length;
1613}
1614
1615static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
1616 size_t count, loff_t *ppos)
1617{
1618 struct inode * inode = file->f_dentry->d_inode;
1619 char *page;
1620 ssize_t length;
1621 struct task_struct *task = proc_task(inode);
1622
1623 if (count > PAGE_SIZE)
1624 count = PAGE_SIZE;
1625 if (*ppos != 0) {
1626 /* No partial writes. */
1627 return -EINVAL;
1628 }
1629 page = (char*)__get_free_page(GFP_USER);
1630 if (!page)
1631 return -ENOMEM;
1632 length = -EFAULT;
1633 if (copy_from_user(page, buf, count))
1634 goto out;
1635
1636 length = security_setprocattr(task,
1637 (char*)file->f_dentry->d_name.name,
1638 (void*)page, count);
1639out:
1640 free_page((unsigned long) page);
1641 return length;
1642}
1643
1644static struct file_operations proc_pid_attr_operations = {
1645 .read = proc_pid_attr_read,
1646 .write = proc_pid_attr_write,
1647};
1648
1649static struct file_operations proc_tid_attr_operations;
1650static struct inode_operations proc_tid_attr_inode_operations;
1651static struct file_operations proc_tgid_attr_operations;
1652static struct inode_operations proc_tgid_attr_inode_operations;
1653#endif
1654
f246315e
DD
1655static int get_tid_list(int index, unsigned int *tids, struct inode *dir);
1656
1da177e4
LT
1657/* SMP-safe */
1658static struct dentry *proc_pident_lookup(struct inode *dir,
1659 struct dentry *dentry,
1660 struct pid_entry *ents)
1661{
1662 struct inode *inode;
1663 int error;
1664 struct task_struct *task = proc_task(dir);
1665 struct pid_entry *p;
1666 struct proc_inode *ei;
1667
1668 error = -ENOENT;
1669 inode = NULL;
1670
1671 if (!pid_alive(task))
1672 goto out;
1673
1674 for (p = ents; p->name; p++) {
1675 if (p->len != dentry->d_name.len)
1676 continue;
1677 if (!memcmp(dentry->d_name.name, p->name, p->len))
1678 break;
1679 }
1680 if (!p->name)
1681 goto out;
1682
1683 error = -EINVAL;
1684 inode = proc_pid_make_inode(dir->i_sb, task, p->type);
1685 if (!inode)
1686 goto out;
1687
1688 ei = PROC_I(inode);
1689 inode->i_mode = p->mode;
1690 /*
1691 * Yes, it does not scale. And it should not. Don't add
1692 * new entries into /proc/<tgid>/ without very good reasons.
1693 */
1694 switch(p->type) {
1695 case PROC_TGID_TASK:
f246315e 1696 inode->i_nlink = 2 + get_tid_list(2, NULL, dir);
1da177e4
LT
1697 inode->i_op = &proc_task_inode_operations;
1698 inode->i_fop = &proc_task_operations;
1699 break;
1700 case PROC_TID_FD:
1701 case PROC_TGID_FD:
1702 inode->i_nlink = 2;
1703 inode->i_op = &proc_fd_inode_operations;
1704 inode->i_fop = &proc_fd_operations;
1705 break;
1706 case PROC_TID_EXE:
1707 case PROC_TGID_EXE:
1708 inode->i_op = &proc_pid_link_inode_operations;
1709 ei->op.proc_get_link = proc_exe_link;
1710 break;
1711 case PROC_TID_CWD:
1712 case PROC_TGID_CWD:
1713 inode->i_op = &proc_pid_link_inode_operations;
1714 ei->op.proc_get_link = proc_cwd_link;
1715 break;
1716 case PROC_TID_ROOT:
1717 case PROC_TGID_ROOT:
1718 inode->i_op = &proc_pid_link_inode_operations;
1719 ei->op.proc_get_link = proc_root_link;
1720 break;
1721 case PROC_TID_ENVIRON:
1722 case PROC_TGID_ENVIRON:
1723 inode->i_fop = &proc_info_file_operations;
1724 ei->op.proc_read = proc_pid_environ;
1725 break;
1726 case PROC_TID_AUXV:
1727 case PROC_TGID_AUXV:
1728 inode->i_fop = &proc_info_file_operations;
1729 ei->op.proc_read = proc_pid_auxv;
1730 break;
1731 case PROC_TID_STATUS:
1732 case PROC_TGID_STATUS:
1733 inode->i_fop = &proc_info_file_operations;
1734 ei->op.proc_read = proc_pid_status;
1735 break;
1736 case PROC_TID_STAT:
1737 inode->i_fop = &proc_info_file_operations;
1738 ei->op.proc_read = proc_tid_stat;
1739 break;
1740 case PROC_TGID_STAT:
1741 inode->i_fop = &proc_info_file_operations;
1742 ei->op.proc_read = proc_tgid_stat;
1743 break;
1744 case PROC_TID_CMDLINE:
1745 case PROC_TGID_CMDLINE:
1746 inode->i_fop = &proc_info_file_operations;
1747 ei->op.proc_read = proc_pid_cmdline;
1748 break;
1749 case PROC_TID_STATM:
1750 case PROC_TGID_STATM:
1751 inode->i_fop = &proc_info_file_operations;
1752 ei->op.proc_read = proc_pid_statm;
1753 break;
1754 case PROC_TID_MAPS:
1755 case PROC_TGID_MAPS:
1756 inode->i_fop = &proc_maps_operations;
1757 break;
6e21c8f1
CL
1758#ifdef CONFIG_NUMA
1759 case PROC_TID_NUMA_MAPS:
1760 case PROC_TGID_NUMA_MAPS:
1761 inode->i_fop = &proc_numa_maps_operations;
1762 break;
1763#endif
1da177e4
LT
1764 case PROC_TID_MEM:
1765 case PROC_TGID_MEM:
1766 inode->i_op = &proc_mem_inode_operations;
1767 inode->i_fop = &proc_mem_operations;
1768 break;
1769#ifdef CONFIG_SECCOMP
1770 case PROC_TID_SECCOMP:
1771 case PROC_TGID_SECCOMP:
1772 inode->i_fop = &proc_seccomp_operations;
1773 break;
1774#endif /* CONFIG_SECCOMP */
1775 case PROC_TID_MOUNTS:
1776 case PROC_TGID_MOUNTS:
1777 inode->i_fop = &proc_mounts_operations;
1778 break;
63c6764c 1779#ifdef CONFIG_MMU
e070ad49
ML
1780 case PROC_TID_SMAPS:
1781 case PROC_TGID_SMAPS:
1782 inode->i_fop = &proc_smaps_operations;
1783 break;
63c6764c 1784#endif
b4629fe2
CL
1785 case PROC_TID_MOUNTSTATS:
1786 case PROC_TGID_MOUNTSTATS:
1787 inode->i_fop = &proc_mountstats_operations;
1788 break;
1da177e4
LT
1789#ifdef CONFIG_SECURITY
1790 case PROC_TID_ATTR:
1791 inode->i_nlink = 2;
1792 inode->i_op = &proc_tid_attr_inode_operations;
1793 inode->i_fop = &proc_tid_attr_operations;
1794 break;
1795 case PROC_TGID_ATTR:
1796 inode->i_nlink = 2;
1797 inode->i_op = &proc_tgid_attr_inode_operations;
1798 inode->i_fop = &proc_tgid_attr_operations;
1799 break;
1800 case PROC_TID_ATTR_CURRENT:
1801 case PROC_TGID_ATTR_CURRENT:
1802 case PROC_TID_ATTR_PREV:
1803 case PROC_TGID_ATTR_PREV:
1804 case PROC_TID_ATTR_EXEC:
1805 case PROC_TGID_ATTR_EXEC:
1806 case PROC_TID_ATTR_FSCREATE:
1807 case PROC_TGID_ATTR_FSCREATE:
4eb582cf
ML
1808 case PROC_TID_ATTR_KEYCREATE:
1809 case PROC_TGID_ATTR_KEYCREATE:
1da177e4
LT
1810 inode->i_fop = &proc_pid_attr_operations;
1811 break;
1812#endif
1813#ifdef CONFIG_KALLSYMS
1814 case PROC_TID_WCHAN:
1815 case PROC_TGID_WCHAN:
1816 inode->i_fop = &proc_info_file_operations;
1817 ei->op.proc_read = proc_pid_wchan;
1818 break;
1819#endif
1820#ifdef CONFIG_SCHEDSTATS
1821 case PROC_TID_SCHEDSTAT:
1822 case PROC_TGID_SCHEDSTAT:
1823 inode->i_fop = &proc_info_file_operations;
1824 ei->op.proc_read = proc_pid_schedstat;
1825 break;
1826#endif
1827#ifdef CONFIG_CPUSETS
1828 case PROC_TID_CPUSET:
1829 case PROC_TGID_CPUSET:
1830 inode->i_fop = &proc_cpuset_operations;
1831 break;
1832#endif
1833 case PROC_TID_OOM_SCORE:
1834 case PROC_TGID_OOM_SCORE:
1835 inode->i_fop = &proc_info_file_operations;
1836 ei->op.proc_read = proc_oom_score;
1837 break;
1838 case PROC_TID_OOM_ADJUST:
1839 case PROC_TGID_OOM_ADJUST:
1840 inode->i_fop = &proc_oom_adjust_operations;
1841 break;
1842#ifdef CONFIG_AUDITSYSCALL
1843 case PROC_TID_LOGINUID:
1844 case PROC_TGID_LOGINUID:
1845 inode->i_fop = &proc_loginuid_operations;
1846 break;
1847#endif
1848 default:
1849 printk("procfs: impossible type (%d)",p->type);
1850 iput(inode);
1851 return ERR_PTR(-EINVAL);
1852 }
1853 dentry->d_op = &pid_dentry_operations;
1854 d_add(dentry, inode);
1855 return NULL;
1856
1857out:
1858 return ERR_PTR(error);
1859}
1860
1861static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
1862 return proc_pident_lookup(dir, dentry, tgid_base_stuff);
1863}
1864
1865static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){
1866 return proc_pident_lookup(dir, dentry, tid_base_stuff);
1867}
1868
1869static struct file_operations proc_tgid_base_operations = {
1870 .read = generic_read_dir,
1871 .readdir = proc_tgid_base_readdir,
1872};
1873
1874static struct file_operations proc_tid_base_operations = {
1875 .read = generic_read_dir,
1876 .readdir = proc_tid_base_readdir,
1877};
1878
1879static struct inode_operations proc_tgid_base_inode_operations = {
1880 .lookup = proc_tgid_base_lookup,
1881};
1882
1883static struct inode_operations proc_tid_base_inode_operations = {
1884 .lookup = proc_tid_base_lookup,
1885};
1886
1887#ifdef CONFIG_SECURITY
1888static int proc_tgid_attr_readdir(struct file * filp,
1889 void * dirent, filldir_t filldir)
1890{
1891 return proc_pident_readdir(filp,dirent,filldir,
1892 tgid_attr_stuff,ARRAY_SIZE(tgid_attr_stuff));
1893}
1894
1895static int proc_tid_attr_readdir(struct file * filp,
1896 void * dirent, filldir_t filldir)
1897{
1898 return proc_pident_readdir(filp,dirent,filldir,
1899 tid_attr_stuff,ARRAY_SIZE(tid_attr_stuff));
1900}
1901
1902static struct file_operations proc_tgid_attr_operations = {
1903 .read = generic_read_dir,
1904 .readdir = proc_tgid_attr_readdir,
1905};
1906
1907static struct file_operations proc_tid_attr_operations = {
1908 .read = generic_read_dir,
1909 .readdir = proc_tid_attr_readdir,
1910};
1911
1912static struct dentry *proc_tgid_attr_lookup(struct inode *dir,
1913 struct dentry *dentry, struct nameidata *nd)
1914{
1915 return proc_pident_lookup(dir, dentry, tgid_attr_stuff);
1916}
1917
1918static struct dentry *proc_tid_attr_lookup(struct inode *dir,
1919 struct dentry *dentry, struct nameidata *nd)
1920{
1921 return proc_pident_lookup(dir, dentry, tid_attr_stuff);
1922}
1923
1924static struct inode_operations proc_tgid_attr_inode_operations = {
1925 .lookup = proc_tgid_attr_lookup,
1926};
1927
1928static struct inode_operations proc_tid_attr_inode_operations = {
1929 .lookup = proc_tid_attr_lookup,
1930};
1931#endif
1932
1933/*
1934 * /proc/self:
1935 */
1936static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
1937 int buflen)
1938{
1939 char tmp[30];
1940 sprintf(tmp, "%d", current->tgid);
1941 return vfs_readlink(dentry,buffer,buflen,tmp);
1942}
1943
008b150a 1944static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
1945{
1946 char tmp[30];
1947 sprintf(tmp, "%d", current->tgid);
008b150a 1948 return ERR_PTR(vfs_follow_link(nd,tmp));
1da177e4
LT
1949}
1950
1951static struct inode_operations proc_self_inode_operations = {
1952 .readlink = proc_self_readlink,
1953 .follow_link = proc_self_follow_link,
1954};
1955
1956/**
4dc3b16b 1957 * proc_pid_unhash - Unhash /proc/@pid entry from the dcache.
1da177e4
LT
1958 * @p: task that should be flushed.
1959 *
4dc3b16b 1960 * Drops the /proc/@pid dcache entry from the hash chains.
1da177e4 1961 *
4dc3b16b
PP
1962 * Dropping /proc/@pid entries and detach_pid must be synchroneous,
1963 * otherwise e.g. /proc/@pid/exe might point to the wrong executable,
1da177e4
LT
1964 * if the pid value is immediately reused. This is enforced by
1965 * - caller must acquire spin_lock(p->proc_lock)
1966 * - must be called before detach_pid()
1967 * - proc_pid_lookup acquires proc_lock, and checks that
1968 * the target is not dead by looking at the attach count
1969 * of PIDTYPE_PID.
1970 */
1971
1972struct dentry *proc_pid_unhash(struct task_struct *p)
1973{
1974 struct dentry *proc_dentry;
1975
1976 proc_dentry = p->proc_dentry;
1977 if (proc_dentry != NULL) {
1978
1979 spin_lock(&dcache_lock);
1980 spin_lock(&proc_dentry->d_lock);
1981 if (!d_unhashed(proc_dentry)) {
1982 dget_locked(proc_dentry);
1983 __d_drop(proc_dentry);
1984 spin_unlock(&proc_dentry->d_lock);
1985 } else {
1986 spin_unlock(&proc_dentry->d_lock);
1987 proc_dentry = NULL;
1988 }
1989 spin_unlock(&dcache_lock);
1990 }
1991 return proc_dentry;
1992}
1993
1994/**
4dc3b16b 1995 * proc_pid_flush - recover memory used by stale /proc/@pid/x entries
67be2dd1 1996 * @proc_dentry: directoy to prune.
1da177e4
LT
1997 *
1998 * Shrink the /proc directory that was used by the just killed thread.
1999 */
2000
2001void proc_pid_flush(struct dentry *proc_dentry)
2002{
2003 might_sleep();
2004 if(proc_dentry != NULL) {
2005 shrink_dcache_parent(proc_dentry);
2006 dput(proc_dentry);
2007 }
2008}
2009
2010/* SMP-safe */
2011struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2012{
2013 struct task_struct *task;
2014 struct inode *inode;
2015 struct proc_inode *ei;
2016 unsigned tgid;
2017 int died;
2018
2019 if (dentry->d_name.len == 4 && !memcmp(dentry->d_name.name,"self",4)) {
2020 inode = new_inode(dir->i_sb);
2021 if (!inode)
2022 return ERR_PTR(-ENOMEM);
2023 ei = PROC_I(inode);
2024 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
2025 inode->i_ino = fake_ino(0, PROC_TGID_INO);
2026 ei->pde = NULL;
2027 inode->i_mode = S_IFLNK|S_IRWXUGO;
2028 inode->i_uid = inode->i_gid = 0;
2029 inode->i_size = 64;
2030 inode->i_op = &proc_self_inode_operations;
2031 d_add(dentry, inode);
2032 return NULL;
2033 }
2034 tgid = name_to_int(dentry);
2035 if (tgid == ~0U)
2036 goto out;
2037
2038 read_lock(&tasklist_lock);
2039 task = find_task_by_pid(tgid);
2040 if (task)
2041 get_task_struct(task);
2042 read_unlock(&tasklist_lock);
2043 if (!task)
2044 goto out;
2045
2046 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TGID_INO);
2047
2048
2049 if (!inode) {
2050 put_task_struct(task);
2051 goto out;
2052 }
2053 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2054 inode->i_op = &proc_tgid_base_inode_operations;
2055 inode->i_fop = &proc_tgid_base_operations;
1da177e4 2056 inode->i_flags|=S_IMMUTABLE;
bcf88e11
DD
2057#ifdef CONFIG_SECURITY
2058 inode->i_nlink = 5;
2059#else
2060 inode->i_nlink = 4;
2061#endif
1da177e4
LT
2062
2063 dentry->d_op = &pid_base_dentry_operations;
2064
2065 died = 0;
2066 d_add(dentry, inode);
2067 spin_lock(&task->proc_lock);
2068 task->proc_dentry = dentry;
2069 if (!pid_alive(task)) {
2070 dentry = proc_pid_unhash(task);
2071 died = 1;
2072 }
2073 spin_unlock(&task->proc_lock);
2074
2075 put_task_struct(task);
2076 if (died) {
2077 proc_pid_flush(dentry);
2078 goto out;
2079 }
2080 return NULL;
2081out:
2082 return ERR_PTR(-ENOENT);
2083}
2084
2085/* SMP-safe */
2086static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
2087{
2088 struct task_struct *task;
2089 struct task_struct *leader = proc_task(dir);
2090 struct inode *inode;
2091 unsigned tid;
2092
2093 tid = name_to_int(dentry);
2094 if (tid == ~0U)
2095 goto out;
2096
2097 read_lock(&tasklist_lock);
2098 task = find_task_by_pid(tid);
2099 if (task)
2100 get_task_struct(task);
2101 read_unlock(&tasklist_lock);
2102 if (!task)
2103 goto out;
2104 if (leader->tgid != task->tgid)
2105 goto out_drop_task;
2106
2107 inode = proc_pid_make_inode(dir->i_sb, task, PROC_TID_INO);
2108
2109
2110 if (!inode)
2111 goto out_drop_task;
2112 inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
2113 inode->i_op = &proc_tid_base_inode_operations;
2114 inode->i_fop = &proc_tid_base_operations;
1da177e4 2115 inode->i_flags|=S_IMMUTABLE;
bcf88e11
DD
2116#ifdef CONFIG_SECURITY
2117 inode->i_nlink = 4;
2118#else
2119 inode->i_nlink = 3;
2120#endif
1da177e4
LT
2121
2122 dentry->d_op = &pid_base_dentry_operations;
2123
2124 d_add(dentry, inode);
2125
2126 put_task_struct(task);
2127 return NULL;
2128out_drop_task:
2129 put_task_struct(task);
2130out:
2131 return ERR_PTR(-ENOENT);
2132}
2133
2134#define PROC_NUMBUF 10
2135#define PROC_MAXPIDS 20
2136
2137/*
2138 * Get a few tgid's to return for filldir - we need to hold the
2139 * tasklist lock while doing this, and we must release it before
2140 * we actually do the filldir itself, so we use a temp buffer..
2141 */
2142static int get_tgid_list(int index, unsigned long version, unsigned int *tgids)
2143{
2144 struct task_struct *p;
2145 int nr_tgids = 0;
2146
2147 index--;
2148 read_lock(&tasklist_lock);
2149 p = NULL;
2150 if (version) {
2151 p = find_task_by_pid(version);
2152 if (p && !thread_group_leader(p))
2153 p = NULL;
2154 }
2155
2156 if (p)
2157 index = 0;
2158 else
2159 p = next_task(&init_task);
2160
2161 for ( ; p != &init_task; p = next_task(p)) {
2162 int tgid = p->pid;
2163 if (!pid_alive(p))
2164 continue;
2165 if (--index >= 0)
2166 continue;
2167 tgids[nr_tgids] = tgid;
2168 nr_tgids++;
2169 if (nr_tgids >= PROC_MAXPIDS)
2170 break;
2171 }
2172 read_unlock(&tasklist_lock);
2173 return nr_tgids;
2174}
2175
2176/*
2177 * Get a few tid's to return for filldir - we need to hold the
2178 * tasklist lock while doing this, and we must release it before
2179 * we actually do the filldir itself, so we use a temp buffer..
2180 */
2181static int get_tid_list(int index, unsigned int *tids, struct inode *dir)
2182{
2183 struct task_struct *leader_task = proc_task(dir);
2184 struct task_struct *task = leader_task;
2185 int nr_tids = 0;
2186
2187 index -= 2;
2188 read_lock(&tasklist_lock);
2189 /*
2190 * The starting point task (leader_task) might be an already
2191 * unlinked task, which cannot be used to access the task-list
2192 * via next_thread().
2193 */
2194 if (pid_alive(task)) do {
2195 int tid = task->pid;
2196
2197 if (--index >= 0)
2198 continue;
f246315e
DD
2199 if (tids != NULL)
2200 tids[nr_tids] = tid;
1da177e4
LT
2201 nr_tids++;
2202 if (nr_tids >= PROC_MAXPIDS)
2203 break;
2204 } while ((task = next_thread(task)) != leader_task);
2205 read_unlock(&tasklist_lock);
2206 return nr_tids;
2207}
2208
2209/* for the /proc/ directory itself, after non-process stuff has been done */
2210int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
2211{
2212 unsigned int tgid_array[PROC_MAXPIDS];
2213 char buf[PROC_NUMBUF];
2214 unsigned int nr = filp->f_pos - FIRST_PROCESS_ENTRY;
2215 unsigned int nr_tgids, i;
2216 int next_tgid;
2217
2218 if (!nr) {
2219 ino_t ino = fake_ino(0,PROC_TGID_INO);
2220 if (filldir(dirent, "self", 4, filp->f_pos, ino, DT_LNK) < 0)
2221 return 0;
2222 filp->f_pos++;
2223 nr++;
2224 }
2225
2226 /* f_version caches the tgid value that the last readdir call couldn't
2227 * return. lseek aka telldir automagically resets f_version to 0.
2228 */
2229 next_tgid = filp->f_version;
2230 filp->f_version = 0;
2231 for (;;) {
2232 nr_tgids = get_tgid_list(nr, next_tgid, tgid_array);
2233 if (!nr_tgids) {
2234 /* no more entries ! */
2235 break;
2236 }
2237 next_tgid = 0;
2238
2239 /* do not use the last found pid, reserve it for next_tgid */
2240 if (nr_tgids == PROC_MAXPIDS) {
2241 nr_tgids--;
2242 next_tgid = tgid_array[nr_tgids];
2243 }
2244
2245 for (i=0;i<nr_tgids;i++) {
2246 int tgid = tgid_array[i];
2247 ino_t ino = fake_ino(tgid,PROC_TGID_INO);
2248 unsigned long j = PROC_NUMBUF;
2249
2250 do
2251 buf[--j] = '0' + (tgid % 10);
2252 while ((tgid /= 10) != 0);
2253
2254 if (filldir(dirent, buf+j, PROC_NUMBUF-j, filp->f_pos, ino, DT_DIR) < 0) {
2255 /* returning this tgid failed, save it as the first
2256 * pid for the next readir call */
2257 filp->f_version = tgid_array[i];
2258 goto out;
2259 }
2260 filp->f_pos++;
2261 nr++;
2262 }
2263 }
2264out:
2265 return 0;
2266}
2267
2268/* for the /proc/TGID/task/ directories */
2269static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldir)
2270{
2271 unsigned int tid_array[PROC_MAXPIDS];
2272 char buf[PROC_NUMBUF];
2273 unsigned int nr_tids, i;
2274 struct dentry *dentry = filp->f_dentry;
2275 struct inode *inode = dentry->d_inode;
2276 int retval = -ENOENT;
2277 ino_t ino;
2278 unsigned long pos = filp->f_pos; /* avoiding "long long" filp->f_pos */
2279
2280 if (!pid_alive(proc_task(inode)))
2281 goto out;
2282 retval = 0;
2283
2284 switch (pos) {
2285 case 0:
2286 ino = inode->i_ino;
2287 if (filldir(dirent, ".", 1, pos, ino, DT_DIR) < 0)
2288 goto out;
2289 pos++;
2290 /* fall through */
2291 case 1:
2292 ino = parent_ino(dentry);
2293 if (filldir(dirent, "..", 2, pos, ino, DT_DIR) < 0)
2294 goto out;
2295 pos++;
2296 /* fall through */
2297 }
2298
2299 nr_tids = get_tid_list(pos, tid_array, inode);
f246315e 2300 inode->i_nlink = pos + nr_tids;
1da177e4
LT
2301
2302 for (i = 0; i < nr_tids; i++) {
2303 unsigned long j = PROC_NUMBUF;
2304 int tid = tid_array[i];
2305
2306 ino = fake_ino(tid,PROC_TID_INO);
2307
2308 do
2309 buf[--j] = '0' + (tid % 10);
2310 while ((tid /= 10) != 0);
2311
2312 if (filldir(dirent, buf+j, PROC_NUMBUF-j, pos, ino, DT_DIR) < 0)
2313 break;
2314 pos++;
2315 }
2316out:
2317 filp->f_pos = pos;
2318 return retval;
2319}
This page took 0.227747 seconds and 5 git commands to generate.