6bdd15bfb4024f63e973a7d6fb39d0447c8c99f9
[linux-2.6.git] / fs / proc / array.c
1 /*
2  *  linux/fs/proc/array.c
3  *
4  *  Copyright (C) 1992  by Linus Torvalds
5  *  based on ideas by Darren Senn
6  *
7  * Fixes:
8  * Michael. K. Johnson: stat,statm extensions.
9  *                      <johnsonm@stolaf.edu>
10  *
11  * Pauline Middelink :  Made cmdline,envline only break at '\0's, to
12  *                      make sure SET_PROCTITLE works. Also removed
13  *                      bad '!' which forced address recalculation for
14  *                      EVERY character on the current page.
15  *                      <middelin@polyware.iaf.nl>
16  *
17  * Danny ter Haar    :  added cpuinfo
18  *                      <dth@cistron.nl>
19  *
20  * Alessandro Rubini :  profile extension.
21  *                      <rubini@ipvvis.unipv.it>
22  *
23  * Jeff Tranter      :  added BogoMips field to cpuinfo
24  *                      <Jeff_Tranter@Mitel.COM>
25  *
26  * Bruno Haible      :  remove 4K limit for the maps file
27  *                      <haible@ma2s2.mathematik.uni-karlsruhe.de>
28  *
29  * Yves Arrouye      :  remove removal of trailing spaces in get_array.
30  *                      <Yves.Arrouye@marin.fdn.fr>
31  *
32  * Jerome Forissier  :  added per-CPU time information to /proc/stat
33  *                      and /proc/<pid>/cpu extension
34  *                      <forissier@isia.cma.fr>
35  *                      - Incorporation and non-SMP safe operation
36  *                      of forissier patch in 2.1.78 by
37  *                      Hans Marcus <crowbar@concepts.nl>
38  *
39  * aeb@cwi.nl        :  /proc/partitions
40  *
41  *
42  * Alan Cox          :  security fixes.
43  *                      <Alan.Cox@linux.org>
44  *
45  * Al Viro           :  safe handling of mm_struct
46  *
47  * Gerhard Wichert   :  added BIGMEM support
48  * Siemens AG           <Gerhard.Wichert@pdb.siemens.de>
49  *
50  * Al Viro & Jeff Garzik :  moved most of the thing into base.c and
51  *                       :  proc_misc.c. The rest may eventually go into
52  *                       :  base.c too.
53  */
54
55 #include <linux/config.h>
56 #include <linux/types.h>
57 #include <linux/errno.h>
58 #include <linux/time.h>
59 #include <linux/kernel.h>
60 #include <linux/kernel_stat.h>
61 #include <linux/tty.h>
62 #include <linux/string.h>
63 #include <linux/mman.h>
64 #include <linux/proc_fs.h>
65 #include <linux/ioport.h>
66 #include <linux/mm.h>
67 #include <linux/hugetlb.h>
68 #include <linux/pagemap.h>
69 #include <linux/swap.h>
70 #include <linux/slab.h>
71 #include <linux/smp.h>
72 #include <linux/signal.h>
73 #include <linux/highmem.h>
74 #include <linux/file.h>
75 #include <linux/times.h>
76
77 #include <asm/uaccess.h>
78 #include <asm/pgtable.h>
79 #include <asm/io.h>
80 #include <asm/processor.h>
81
82 /* Gcc optimizes away "strlen(x)" for constant x */
83 #define ADDBUF(buffer, string) \
84 do { memcpy(buffer, string, strlen(string)); \
85      buffer += strlen(string); } while (0)
86
87 static inline char * task_name(struct task_struct *p, char * buf)
88 {
89         int i;
90         char * name;
91
92         ADDBUF(buf, "Name:\t");
93         name = p->comm;
94         i = sizeof(p->comm);
95         do {
96                 unsigned char c = *name;
97                 name++;
98                 i--;
99                 *buf = c;
100                 if (!c)
101                         break;
102                 if (c == '\\') {
103                         buf[1] = c;
104                         buf += 2;
105                         continue;
106                 }
107                 if (c == '\n') {
108                         buf[0] = '\\';
109                         buf[1] = 'n';
110                         buf += 2;
111                         continue;
112                 }
113                 buf++;
114         } while (i);
115         *buf = '\n';
116         return buf+1;
117 }
118
119 /*
120  * The task state array is a strange "bitmap" of
121  * reasons to sleep. Thus "running" is zero, and
122  * you can test for combinations of others with
123  * simple bit tests.
124  */
125 static const char *task_state_array[] = {
126         "R (running)",          /*  0 */
127         "S (sleeping)",         /*  1 */
128         "D (disk sleep)",       /*  2 */
129         "T (stopped)",          /*  4 */
130         "Z (zombie)",           /*  8 */
131         "X (dead)"              /* 16 */
132 };
133
134 static inline const char * get_task_state(struct task_struct *tsk)
135 {
136         unsigned int state = tsk->state & (TASK_RUNNING |
137                                            TASK_INTERRUPTIBLE |
138                                            TASK_UNINTERRUPTIBLE |
139                                            TASK_ZOMBIE |
140                                            TASK_STOPPED);
141         const char **p = &task_state_array[0];
142
143         while (state) {
144                 p++;
145                 state >>= 1;
146         }
147         return *p;
148 }
149
150 static inline char * task_state(struct task_struct *p, char *buffer)
151 {
152         int g;
153
154         read_lock(&tasklist_lock);
155         buffer += sprintf(buffer,
156                 "State:\t%s\n"
157                 "SleepAVG:\t%lu%%\n"
158                 "Tgid:\t%d\n"
159                 "Pid:\t%d\n"
160                 "PPid:\t%d\n"
161                 "TracerPid:\t%d\n"
162                 "Uid:\t%d\t%d\t%d\t%d\n"
163                 "Gid:\t%d\t%d\t%d\t%d\n",
164                 get_task_state(p),
165                 (p->sleep_avg/1024)*100/(1020000000/1024),
166                 p->tgid,
167                 p->pid, p->pid ? p->real_parent->pid : 0,
168                 p->pid && p->ptrace ? p->parent->pid : 0,
169                 p->uid, p->euid, p->suid, p->fsuid,
170                 p->gid, p->egid, p->sgid, p->fsgid);
171         read_unlock(&tasklist_lock);
172         task_lock(p);
173         buffer += sprintf(buffer,
174                 "FDSize:\t%d\n"
175                 "Groups:\t",
176                 p->files ? p->files->max_fds : 0);
177         task_unlock(p);
178
179         get_group_info(p->group_info);
180         for (g = 0; g < min(p->group_info->ngroups,NGROUPS_SMALL); g++)
181                 buffer += sprintf(buffer, "%d ", GROUP_AT(p->group_info,g));
182         put_group_info(p->group_info);
183
184         buffer += sprintf(buffer, "\n");
185         return buffer;
186 }
187
188 static char * render_sigset_t(const char *header, sigset_t *set, char *buffer)
189 {
190         int i, len;
191
192         len = strlen(header);
193         memcpy(buffer, header, len);
194         buffer += len;
195
196         i = _NSIG;
197         do {
198                 int x = 0;
199
200                 i -= 4;
201                 if (sigismember(set, i+1)) x |= 1;
202                 if (sigismember(set, i+2)) x |= 2;
203                 if (sigismember(set, i+3)) x |= 4;
204                 if (sigismember(set, i+4)) x |= 8;
205                 *buffer++ = (x < 10 ? '0' : 'a' - 10) + x;
206         } while (i >= 4);
207
208         *buffer++ = '\n';
209         *buffer = 0;
210         return buffer;
211 }
212
213 static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
214                                     sigset_t *catch)
215 {
216         struct k_sigaction *k;
217         int i;
218
219         k = p->sighand->action;
220         for (i = 1; i <= _NSIG; ++i, ++k) {
221                 if (k->sa.sa_handler == SIG_IGN)
222                         sigaddset(ign, i);
223                 else if (k->sa.sa_handler != SIG_DFL)
224                         sigaddset(catch, i);
225         }
226 }
227
228 static inline char * task_sig(struct task_struct *p, char *buffer)
229 {
230         sigset_t pending, shpending, blocked, ignored, caught;
231         int num_threads = 0;
232
233         sigemptyset(&pending);
234         sigemptyset(&shpending);
235         sigemptyset(&blocked);
236         sigemptyset(&ignored);
237         sigemptyset(&caught);
238
239         /* Gather all the data with the appropriate locks held */
240         read_lock(&tasklist_lock);
241         if (p->sighand) {
242                 spin_lock_irq(&p->sighand->siglock);
243                 pending = p->pending.signal;
244                 shpending = p->signal->shared_pending.signal;
245                 blocked = p->blocked;
246                 collect_sigign_sigcatch(p, &ignored, &caught);
247                 num_threads = atomic_read(&p->signal->count);
248                 spin_unlock_irq(&p->sighand->siglock);
249         }
250         read_unlock(&tasklist_lock);
251
252         buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
253
254         /* render them all */
255         buffer = render_sigset_t("SigPnd:\t", &pending, buffer);
256         buffer = render_sigset_t("ShdPnd:\t", &shpending, buffer);
257         buffer = render_sigset_t("SigBlk:\t", &blocked, buffer);
258         buffer = render_sigset_t("SigIgn:\t", &ignored, buffer);
259         buffer = render_sigset_t("SigCgt:\t", &caught, buffer);
260
261         return buffer;
262 }
263
264 static inline char *task_cap(struct task_struct *p, char *buffer)
265 {
266     return buffer + sprintf(buffer, "CapInh:\t%016x\n"
267                             "CapPrm:\t%016x\n"
268                             "CapEff:\t%016x\n",
269                             cap_t(p->cap_inheritable),
270                             cap_t(p->cap_permitted),
271                             cap_t(p->cap_effective));
272 }
273
274 extern char *task_mem(struct mm_struct *, char *);
275 int proc_pid_status(struct task_struct *task, char * buffer)
276 {
277         char * orig = buffer;
278         struct mm_struct *mm = get_task_mm(task);
279
280         buffer = task_name(task, buffer);
281         buffer = task_state(task, buffer);
282  
283         if (mm) {
284                 buffer = task_mem(mm, buffer);
285                 mmput(mm);
286         }
287         buffer = task_sig(task, buffer);
288         buffer = task_cap(task, buffer);
289 #if defined(CONFIG_ARCH_S390)
290         buffer = task_show_regs(task, buffer);
291 #endif
292         return buffer - orig;
293 }
294
295 extern unsigned long task_vsize(struct mm_struct *);
296 int proc_pid_stat(struct task_struct *task, char * buffer)
297 {
298         unsigned long vsize, eip, esp, wchan;
299         long priority, nice;
300         int tty_pgrp = -1, tty_nr = 0;
301         sigset_t sigign, sigcatch;
302         char state;
303         int res;
304         pid_t ppid, pgid = -1, sid = -1;
305         int num_threads = 0;
306         struct mm_struct *mm;
307         unsigned long long start_time;
308
309         state = *get_task_state(task);
310         vsize = eip = esp = 0;
311         task_lock(task);
312         mm = task->mm;
313         if(mm)
314                 mm = mmgrab(mm);
315         task_unlock(task);
316         if (mm) {
317                 down_read(&mm->mmap_sem);
318                 vsize = task_vsize(mm);
319                 eip = KSTK_EIP(task);
320                 esp = KSTK_ESP(task);
321                 up_read(&mm->mmap_sem);
322         }
323
324         wchan = get_wchan(task);
325
326         sigemptyset(&sigign);
327         sigemptyset(&sigcatch);
328         read_lock(&tasklist_lock);
329         if (task->sighand) {
330                 spin_lock_irq(&task->sighand->siglock);
331                 num_threads = atomic_read(&task->signal->count);
332                 collect_sigign_sigcatch(task, &sigign, &sigcatch);
333                 spin_unlock_irq(&task->sighand->siglock);
334         }
335         if (task->signal) {
336                 if (task->signal->tty) {
337                         tty_pgrp = task->signal->tty->pgrp;
338                         tty_nr = new_encode_dev(tty_devnum(task->signal->tty));
339                 }
340                 pgid = process_group(task);
341                 sid = task->signal->session;
342         }
343         read_unlock(&tasklist_lock);
344
345         /* scale priority and nice values from timeslices to -20..20 */
346         /* to make it look like a "normal" Unix priority/nice value  */
347         priority = task_prio(task);
348         nice = task_nice(task);
349
350         read_lock(&tasklist_lock);
351         ppid = task->pid ? task->real_parent->pid : 0;
352         read_unlock(&tasklist_lock);
353
354         /* Temporary variable needed for gcc-2.96 */
355         start_time = jiffies_64_to_clock_t(task->start_time - INITIAL_JIFFIES);
356
357         res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
358 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d %ld %llu %lu %ld %lu %lu %lu %lu %lu \
359 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu\n",
360                 task->pid,
361                 task->comm,
362                 state,
363                 ppid,
364                 pgid,
365                 sid,
366                 tty_nr,
367                 tty_pgrp,
368                 task->flags,
369                 task->min_flt,
370                 task->cmin_flt,
371                 task->maj_flt,
372                 task->cmaj_flt,
373                 jiffies_to_clock_t(task->utime),
374                 jiffies_to_clock_t(task->stime),
375                 jiffies_to_clock_t(task->cutime),
376                 jiffies_to_clock_t(task->cstime),
377                 priority,
378                 nice,
379                 num_threads,
380                 jiffies_to_clock_t(task->it_real_value),
381                 start_time,
382                 vsize,
383                 mm ? mm->rss : 0, /* you might want to shift this left 3 */
384                 task->rlim[RLIMIT_RSS].rlim_cur,
385                 mm ? mm->start_code : 0,
386                 mm ? mm->end_code : 0,
387                 mm ? mm->start_stack : 0,
388                 esp,
389                 eip,
390                 /* The signal information here is obsolete.
391                  * It must be decimal for Linux 2.0 compatibility.
392                  * Use /proc/#/status for real-time signals.
393                  */
394                 task->pending.signal.sig[0] & 0x7fffffffUL,
395                 task->blocked.sig[0] & 0x7fffffffUL,
396                 sigign      .sig[0] & 0x7fffffffUL,
397                 sigcatch    .sig[0] & 0x7fffffffUL,
398                 wchan,
399                 0UL,
400                 0UL,
401                 task->exit_signal,
402                 task_cpu(task),
403                 task->rt_priority,
404                 task->policy);
405         if(mm)
406                 mmput(mm);
407         return res;
408 }
409
410 extern int task_statm(struct mm_struct *, int *, int *, int *, int *);
411 int proc_pid_statm(struct task_struct *task, char *buffer)
412 {
413         int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
414         struct mm_struct *mm = get_task_mm(task);
415         
416         if (mm) {
417                 down_read(&mm->mmap_sem);
418                 size = task_statm(mm, &shared, &text, &data, &resident);
419                 up_read(&mm->mmap_sem);
420
421                 mmput(mm);
422         }
423
424         return sprintf(buffer,"%d %d %d %d %d %d %d\n",
425                        size, resident, shared, text, lib, data, 0);
426 }