fe14439309ab3b367ce34467c07e7b039f7100bb
[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_DEAD |
141                                            TASK_STOPPED);
142         const char **p = &task_state_array[0];
143
144         while (state) {
145                 p++;
146                 state >>= 1;
147         }
148         return *p;
149 }
150
151 static inline char * task_state(struct task_struct *p, char *buffer)
152 {
153         struct group_info *group_info;
154         int g;
155
156         read_lock(&tasklist_lock);
157         buffer += sprintf(buffer,
158                 "State:\t%s\n"
159                 "SleepAVG:\t%lu%%\n"
160                 "Tgid:\t%d\n"
161                 "Pid:\t%d\n"
162                 "PPid:\t%d\n"
163                 "TracerPid:\t%d\n"
164                 "Uid:\t%d\t%d\t%d\t%d\n"
165                 "Gid:\t%d\t%d\t%d\t%d\n",
166                 get_task_state(p),
167                 (p->sleep_avg/1024)*100/(1020000000/1024),
168                 p->tgid,
169                 p->pid, p->pid ? p->real_parent->pid : 0,
170                 p->pid && p->ptrace ? p->parent->pid : 0,
171                 p->uid, p->euid, p->suid, p->fsuid,
172                 p->gid, p->egid, p->sgid, p->fsgid);
173         read_unlock(&tasklist_lock);
174         task_lock(p);
175         buffer += sprintf(buffer,
176                 "FDSize:\t%d\n"
177                 "Groups:\t",
178                 p->files ? p->files->max_fds : 0);
179
180         group_info = p->group_info;
181         get_group_info(group_info);
182         task_unlock(p);
183
184         for (g = 0; g < min(group_info->ngroups,NGROUPS_SMALL); g++)
185                 buffer += sprintf(buffer, "%d ", GROUP_AT(group_info,g));
186         put_group_info(group_info);
187
188         buffer += sprintf(buffer, "\n");
189         return buffer;
190 }
191
192 static char * render_sigset_t(const char *header, sigset_t *set, char *buffer)
193 {
194         int i, len;
195
196         len = strlen(header);
197         memcpy(buffer, header, len);
198         buffer += len;
199
200         i = _NSIG;
201         do {
202                 int x = 0;
203
204                 i -= 4;
205                 if (sigismember(set, i+1)) x |= 1;
206                 if (sigismember(set, i+2)) x |= 2;
207                 if (sigismember(set, i+3)) x |= 4;
208                 if (sigismember(set, i+4)) x |= 8;
209                 *buffer++ = (x < 10 ? '0' : 'a' - 10) + x;
210         } while (i >= 4);
211
212         *buffer++ = '\n';
213         *buffer = 0;
214         return buffer;
215 }
216
217 static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
218                                     sigset_t *catch)
219 {
220         struct k_sigaction *k;
221         int i;
222
223         k = p->sighand->action;
224         for (i = 1; i <= _NSIG; ++i, ++k) {
225                 if (k->sa.sa_handler == SIG_IGN)
226                         sigaddset(ign, i);
227                 else if (k->sa.sa_handler != SIG_DFL)
228                         sigaddset(catch, i);
229         }
230 }
231
232 static inline char * task_sig(struct task_struct *p, char *buffer)
233 {
234         sigset_t pending, shpending, blocked, ignored, caught;
235         int num_threads = 0;
236
237         sigemptyset(&pending);
238         sigemptyset(&shpending);
239         sigemptyset(&blocked);
240         sigemptyset(&ignored);
241         sigemptyset(&caught);
242
243         /* Gather all the data with the appropriate locks held */
244         read_lock(&tasklist_lock);
245         if (p->sighand) {
246                 spin_lock_irq(&p->sighand->siglock);
247                 pending = p->pending.signal;
248                 shpending = p->signal->shared_pending.signal;
249                 blocked = p->blocked;
250                 collect_sigign_sigcatch(p, &ignored, &caught);
251                 num_threads = atomic_read(&p->signal->count);
252                 spin_unlock_irq(&p->sighand->siglock);
253         }
254         read_unlock(&tasklist_lock);
255
256         buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
257
258         /* render them all */
259         buffer = render_sigset_t("SigPnd:\t", &pending, buffer);
260         buffer = render_sigset_t("ShdPnd:\t", &shpending, buffer);
261         buffer = render_sigset_t("SigBlk:\t", &blocked, buffer);
262         buffer = render_sigset_t("SigIgn:\t", &ignored, buffer);
263         buffer = render_sigset_t("SigCgt:\t", &caught, buffer);
264
265         return buffer;
266 }
267
268 static inline char *task_cap(struct task_struct *p, char *buffer)
269 {
270     return buffer + sprintf(buffer, "CapInh:\t%016x\n"
271                             "CapPrm:\t%016x\n"
272                             "CapEff:\t%016x\n",
273                             cap_t(p->cap_inheritable),
274                             cap_t(p->cap_permitted),
275                             cap_t(p->cap_effective));
276 }
277
278 extern char *task_mem(struct mm_struct *, char *);
279 int proc_pid_status(struct task_struct *task, char * buffer)
280 {
281         char * orig = buffer;
282         struct mm_struct *mm = get_task_mm(task);
283
284         buffer = task_name(task, buffer);
285         buffer = task_state(task, buffer);
286  
287         if (mm) {
288                 buffer = task_mem(mm, buffer);
289                 mmput(mm);
290         }
291         buffer = task_sig(task, buffer);
292         buffer = task_cap(task, buffer);
293 #if defined(CONFIG_ARCH_S390)
294         buffer = task_show_regs(task, buffer);
295 #endif
296         return buffer - orig;
297 }
298
299 extern unsigned long task_vsize(struct mm_struct *);
300 int proc_pid_stat(struct task_struct *task, char * buffer)
301 {
302         unsigned long vsize, eip, esp, wchan;
303         long priority, nice;
304         int tty_pgrp = -1, tty_nr = 0;
305         sigset_t sigign, sigcatch;
306         char state;
307         int res;
308         pid_t ppid, pgid = -1, sid = -1;
309         int num_threads = 0;
310         struct mm_struct *mm;
311         unsigned long long start_time;
312
313         state = *get_task_state(task);
314         vsize = eip = esp = 0;
315         task_lock(task);
316         mm = task->mm;
317         if(mm)
318                 mm = mmgrab(mm);
319         task_unlock(task);
320         if (mm) {
321                 down_read(&mm->mmap_sem);
322                 vsize = task_vsize(mm);
323                 eip = KSTK_EIP(task);
324                 esp = KSTK_ESP(task);
325                 up_read(&mm->mmap_sem);
326         }
327
328         wchan = get_wchan(task);
329
330         sigemptyset(&sigign);
331         sigemptyset(&sigcatch);
332         read_lock(&tasklist_lock);
333         if (task->sighand) {
334                 spin_lock_irq(&task->sighand->siglock);
335                 num_threads = atomic_read(&task->signal->count);
336                 collect_sigign_sigcatch(task, &sigign, &sigcatch);
337                 spin_unlock_irq(&task->sighand->siglock);
338         }
339         if (task->signal) {
340                 if (task->signal->tty) {
341                         tty_pgrp = task->signal->tty->pgrp;
342                         tty_nr = new_encode_dev(tty_devnum(task->signal->tty));
343                 }
344                 pgid = process_group(task);
345                 sid = task->signal->session;
346         }
347         read_unlock(&tasklist_lock);
348
349         /* scale priority and nice values from timeslices to -20..20 */
350         /* to make it look like a "normal" Unix priority/nice value  */
351         priority = task_prio(task);
352         nice = task_nice(task);
353
354         read_lock(&tasklist_lock);
355         ppid = task->pid ? task->real_parent->pid : 0;
356         read_unlock(&tasklist_lock);
357
358         /* Temporary variable needed for gcc-2.96 */
359         start_time = jiffies_64_to_clock_t(task->start_time - INITIAL_JIFFIES);
360
361         res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
362 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d %ld %llu %lu %ld %lu %lu %lu %lu %lu \
363 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu\n",
364                 task->pid,
365                 task->comm,
366                 state,
367                 ppid,
368                 pgid,
369                 sid,
370                 tty_nr,
371                 tty_pgrp,
372                 task->flags,
373                 task->min_flt,
374                 task->cmin_flt,
375                 task->maj_flt,
376                 task->cmaj_flt,
377                 jiffies_to_clock_t(task->utime),
378                 jiffies_to_clock_t(task->stime),
379                 jiffies_to_clock_t(task->cutime),
380                 jiffies_to_clock_t(task->cstime),
381                 priority,
382                 nice,
383                 num_threads,
384                 jiffies_to_clock_t(task->it_real_value),
385                 start_time,
386                 vsize,
387                 mm ? mm->rss : 0, /* you might want to shift this left 3 */
388                 task->rlim[RLIMIT_RSS].rlim_cur,
389                 mm ? mm->start_code : 0,
390                 mm ? mm->end_code : 0,
391                 mm ? mm->start_stack : 0,
392                 esp,
393                 eip,
394                 /* The signal information here is obsolete.
395                  * It must be decimal for Linux 2.0 compatibility.
396                  * Use /proc/#/status for real-time signals.
397                  */
398                 task->pending.signal.sig[0] & 0x7fffffffUL,
399                 task->blocked.sig[0] & 0x7fffffffUL,
400                 sigign      .sig[0] & 0x7fffffffUL,
401                 sigcatch    .sig[0] & 0x7fffffffUL,
402                 wchan,
403                 0UL,
404                 0UL,
405                 task->exit_signal,
406                 task_cpu(task),
407                 task->rt_priority,
408                 task->policy);
409         if(mm)
410                 mmput(mm);
411         return res;
412 }
413
414 extern int task_statm(struct mm_struct *, int *, int *, int *, int *);
415 int proc_pid_statm(struct task_struct *task, char *buffer)
416 {
417         int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
418         struct mm_struct *mm = get_task_mm(task);
419         
420         if (mm) {
421                 down_read(&mm->mmap_sem);
422                 size = task_statm(mm, &shared, &text, &data, &resident);
423                 up_read(&mm->mmap_sem);
424
425                 mmput(mm);
426         }
427
428         return sprintf(buffer,"%d %d %d %d %d %d %d\n",
429                        size, resident, shared, text, lib, data, 0);
430 }