patch-2.6.6-vs1.9.0
[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 #include <linux/ninline.h>
77
78 #include <asm/uaccess.h>
79 #include <asm/pgtable.h>
80 #include <asm/io.h>
81 #include <asm/processor.h>
82
83 /* Gcc optimizes away "strlen(x)" for constant x */
84 #define ADDBUF(buffer, string) \
85 do { memcpy(buffer, string, strlen(string)); \
86      buffer += strlen(string); } while (0)
87
88 static inline char * task_name(struct task_struct *p, char * buf)
89 {
90         int i;
91         char * name;
92
93         ADDBUF(buf, "Name:\t");
94         name = p->comm;
95         i = sizeof(p->comm);
96         do {
97                 unsigned char c = *name;
98                 name++;
99                 i--;
100                 *buf = c;
101                 if (!c)
102                         break;
103                 if (c == '\\') {
104                         buf[1] = c;
105                         buf += 2;
106                         continue;
107                 }
108                 if (c == '\n') {
109                         buf[0] = '\\';
110                         buf[1] = 'n';
111                         buf += 2;
112                         continue;
113                 }
114                 buf++;
115         } while (i);
116         *buf = '\n';
117         return buf+1;
118 }
119
120 /*
121  * The task state array is a strange "bitmap" of
122  * reasons to sleep. Thus "running" is zero, and
123  * you can test for combinations of others with
124  * simple bit tests.
125  */
126 static const char *task_state_array[] = {
127         "R (running)",          /*  0 */
128         "S (sleeping)",         /*  1 */
129         "D (disk sleep)",       /*  2 */
130         "T (stopped)",          /*  4 */
131         "Z (zombie)",           /*  8 */
132         "X (dead)",             /* 16 */
133         "H (on hold)"           /* 32 */
134 };
135
136 static inline const char * get_task_state(struct task_struct *tsk)
137 {
138         unsigned int state = tsk->state & (TASK_RUNNING |
139                                            TASK_INTERRUPTIBLE |
140                                            TASK_UNINTERRUPTIBLE |
141                                            TASK_ZOMBIE |
142                                            TASK_STOPPED |
143                                            TASK_ONHOLD);
144         const char **p = &task_state_array[0];
145
146         while (state) {
147                 p++;
148                 state >>= 1;
149         }
150         return *p;
151 }
152
153 static inline char * task_state(struct task_struct *p, char *buffer)
154 {
155         int g;
156         pid_t ppid;
157
158         read_lock(&tasklist_lock);
159         ppid = vx_map_tgid(current->vx_info, p->real_parent->pid);
160         buffer += sprintf(buffer,
161                 "State:\t%s\n"
162                 "SleepAVG:\t%lu%%\n"
163                 "Tgid:\t%d\n"
164                 "Pid:\t%d\n"
165                 "PPid:\t%d\n"
166                 "TracerPid:\t%d\n"
167                 "Uid:\t%d\t%d\t%d\t%d\n"
168                 "Gid:\t%d\t%d\t%d\t%d\n",
169                 get_task_state(p),
170                 (p->sleep_avg/1024)*100/(1020000000/1024),
171                 p->tgid,
172                 p->pid, p->pid ? ppid : 0,
173                 p->pid && p->ptrace ? p->parent->pid : 0,
174                 p->uid, p->euid, p->suid, p->fsuid,
175                 p->gid, p->egid, p->sgid, p->fsgid);
176         read_unlock(&tasklist_lock);
177         task_lock(p);
178         buffer += sprintf(buffer,
179                 "FDSize:\t%d\n"
180                 "Groups:\t",
181                 p->files ? p->files->max_fds : 0);
182         task_unlock(p);
183
184         get_group_info(p->group_info);
185         for (g = 0; g < min(p->group_info->ngroups,NGROUPS_SMALL); g++)
186                 buffer += sprintf(buffer, "%d ", GROUP_AT(p->group_info,g));
187         put_group_info(p->group_info);
188
189         buffer += sprintf(buffer, "\n");
190         return buffer;
191 }
192
193 static char * render_sigset_t(const char *header, sigset_t *set, char *buffer)
194 {
195         int i, len;
196
197         len = strlen(header);
198         memcpy(buffer, header, len);
199         buffer += len;
200
201         i = _NSIG;
202         do {
203                 int x = 0;
204
205                 i -= 4;
206                 if (sigismember(set, i+1)) x |= 1;
207                 if (sigismember(set, i+2)) x |= 2;
208                 if (sigismember(set, i+3)) x |= 4;
209                 if (sigismember(set, i+4)) x |= 8;
210                 *buffer++ = (x < 10 ? '0' : 'a' - 10) + x;
211         } while (i >= 4);
212
213         *buffer++ = '\n';
214         *buffer = 0;
215         return buffer;
216 }
217
218 static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
219                                     sigset_t *catch)
220 {
221         struct k_sigaction *k;
222         int i;
223
224         k = p->sighand->action;
225         for (i = 1; i <= _NSIG; ++i, ++k) {
226                 if (k->sa.sa_handler == SIG_IGN)
227                         sigaddset(ign, i);
228                 else if (k->sa.sa_handler != SIG_DFL)
229                         sigaddset(catch, i);
230         }
231 }
232
233 static inline char * task_sig(struct task_struct *p, char *buffer)
234 {
235         sigset_t pending, shpending, blocked, ignored, caught;
236         int num_threads = 0;
237
238         sigemptyset(&pending);
239         sigemptyset(&shpending);
240         sigemptyset(&blocked);
241         sigemptyset(&ignored);
242         sigemptyset(&caught);
243
244         /* Gather all the data with the appropriate locks held */
245         read_lock(&tasklist_lock);
246         if (p->sighand) {
247                 spin_lock_irq(&p->sighand->siglock);
248                 pending = p->pending.signal;
249                 shpending = p->signal->shared_pending.signal;
250                 blocked = p->blocked;
251                 collect_sigign_sigcatch(p, &ignored, &caught);
252                 num_threads = atomic_read(&p->signal->count);
253                 spin_unlock_irq(&p->sighand->siglock);
254         }
255         read_unlock(&tasklist_lock);
256
257         buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
258
259         /* render them all */
260         buffer = render_sigset_t("SigPnd:\t", &pending, buffer);
261         buffer = render_sigset_t("ShdPnd:\t", &shpending, buffer);
262         buffer = render_sigset_t("SigBlk:\t", &blocked, buffer);
263         buffer = render_sigset_t("SigIgn:\t", &ignored, buffer);
264         buffer = render_sigset_t("SigCgt:\t", &caught, buffer);
265
266         return buffer;
267 }
268
269 static inline char *task_cap(struct task_struct *p, char *buffer)
270 {
271     return buffer + sprintf(buffer, "CapInh:\t%016x\n"
272                             "CapPrm:\t%016x\n"
273                             "CapEff:\t%016x\n",
274                             cap_t(p->cap_inheritable),
275                             cap_t(p->cap_permitted),
276                             cap_t(p->cap_effective));
277 }
278
279 extern char *task_mem(struct mm_struct *, char *);
280 int proc_pid_status(struct task_struct *task, char * buffer)
281 {
282         char * orig = buffer;
283 #ifdef  CONFIG_VSERVER_LEGACY           
284         struct vx_info *vxi;
285         struct nx_info *nxi;
286 #endif
287         struct mm_struct *mm = get_task_mm(task);
288
289         buffer = task_name(task, buffer);
290         buffer = task_state(task, buffer);
291  
292         if (mm) {
293                 buffer = task_mem(mm, buffer);
294                 mmput(mm);
295         }
296         buffer = task_sig(task, buffer);
297         buffer = task_cap(task, buffer);
298
299 #ifdef  CONFIG_VSERVER_LEGACY           
300         buffer += sprintf (buffer,"s_context: %d\n", vx_task_xid(task));
301         vxi = task_get_vx_info(task);
302         if (vxi) {
303                 buffer += sprintf (buffer,"ctxflags: %08llx\n"
304                         ,vxi->vx_flags);
305                 buffer += sprintf (buffer,"initpid: %d\n"
306                         ,vxi->vx_initpid);
307         } else {
308                 buffer += sprintf (buffer,"ctxflags: none\n");
309                 buffer += sprintf (buffer,"initpid: none\n");
310         }
311         put_vx_info(vxi);
312         nxi = task_get_nx_info(task);
313         if (nxi) {
314                 int i;
315
316                 buffer += sprintf (buffer,"ipv4root:");
317                 for (i=0; i<nxi->nbipv4; i++){
318                         buffer += sprintf (buffer," %08x/%08x"
319                                 ,nxi->ipv4[i]
320                                 ,nxi->mask[i]);
321                 }
322                 *buffer++ = '\n';
323                 buffer += sprintf (buffer,"ipv4root_bcast: %08x\n"
324                         ,nxi->v4_bcast);
325                 buffer += sprintf (buffer,"ipv4root_refcnt: %d\n"
326                         ,atomic_read(&nxi->nx_refcount));
327         } else {
328                 buffer += sprintf (buffer,"ipv4root: 0\n");
329                 buffer += sprintf (buffer,"ipv4root_bcast: 0\n");
330         }
331         put_nx_info(nxi);
332 #endif
333 #if defined(CONFIG_ARCH_S390)
334         buffer = task_show_regs(task, buffer);
335 #endif
336         return buffer - orig;
337 }
338
339 extern unsigned long task_vsize(struct mm_struct *);
340 int proc_pid_stat(struct task_struct *task, char * buffer)
341 {
342         unsigned long vsize, eip, esp, wchan;
343         long priority, nice;
344         unsigned long long bias_jiffies;
345         int tty_pgrp = -1, tty_nr = 0;
346         sigset_t sigign, sigcatch;
347         char state;
348         int res;
349         pid_t ppid, pgid = -1, sid = -1;
350         int num_threads = 0;
351         struct mm_struct *mm;
352         unsigned long long start_time;
353
354         state = *get_task_state(task);
355         vsize = eip = esp = 0;
356         bias_jiffies = INITIAL_JIFFIES;
357
358         task_lock(task);
359         if (__vx_task_flags(task, VXF_VIRT_UPTIME, 0)) {
360                 bias_jiffies = task->vx_info->cvirt.bias_jiffies;
361                 /* hmm, do we need that? */
362                 if (bias_jiffies > task->start_time)
363                         bias_jiffies = task->start_time;
364         }
365
366         mm = task->mm;
367         if(mm)
368                 mm = mmgrab(mm);
369         task_unlock(task);
370         if (mm) {
371                 down_read(&mm->mmap_sem);
372                 vsize = task_vsize(mm);
373                 eip = KSTK_EIP(task);
374                 esp = KSTK_ESP(task);
375                 up_read(&mm->mmap_sem);
376         }
377
378         wchan = get_wchan(task);
379
380         sigemptyset(&sigign);
381         sigemptyset(&sigcatch);
382         read_lock(&tasklist_lock);
383         if (task->sighand) {
384                 spin_lock_irq(&task->sighand->siglock);
385                 num_threads = atomic_read(&task->signal->count);
386                 collect_sigign_sigcatch(task, &sigign, &sigcatch);
387                 spin_unlock_irq(&task->sighand->siglock);
388         }
389         if (task->signal) {
390                 if (task->signal->tty) {
391                         tty_pgrp = task->signal->tty->pgrp;
392                         tty_nr = new_encode_dev(tty_devnum(task->signal->tty));
393                 }
394                 pgid = process_group(task);
395                 sid = task->signal->session;
396         }
397         read_unlock(&tasklist_lock);
398
399         /* scale priority and nice values from timeslices to -20..20 */
400         /* to make it look like a "normal" Unix priority/nice value  */
401         priority = task_prio(task);
402         nice = task_nice(task);
403
404         read_lock(&tasklist_lock);
405         ppid = task->pid ? task->real_parent->pid : 0;
406         read_unlock(&tasklist_lock);
407
408         /* Temporary variable needed for gcc-2.96 */
409         start_time = jiffies_64_to_clock_t(task->start_time - bias_jiffies);
410
411         res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
412 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d %ld %llu %lu %ld %lu %lu %lu %lu %lu \
413 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu\n",
414                 task->pid,
415                 task->comm,
416                 state,
417                 ppid,
418                 pgid,
419                 sid,
420                 tty_nr,
421                 tty_pgrp,
422                 task->flags,
423                 task->min_flt,
424                 task->cmin_flt,
425                 task->maj_flt,
426                 task->cmaj_flt,
427                 jiffies_to_clock_t(task->utime),
428                 jiffies_to_clock_t(task->stime),
429                 jiffies_to_clock_t(task->cutime),
430                 jiffies_to_clock_t(task->cstime),
431                 priority,
432                 nice,
433                 num_threads,
434                 jiffies_to_clock_t(task->it_real_value),
435                 start_time,
436                 vsize,
437                 mm ? mm->rss : 0, /* you might want to shift this left 3 */
438                 task->rlim[RLIMIT_RSS].rlim_cur,
439                 mm ? mm->start_code : 0,
440                 mm ? mm->end_code : 0,
441                 mm ? mm->start_stack : 0,
442                 esp,
443                 eip,
444                 /* The signal information here is obsolete.
445                  * It must be decimal for Linux 2.0 compatibility.
446                  * Use /proc/#/status for real-time signals.
447                  */
448                 task->pending.signal.sig[0] & 0x7fffffffUL,
449                 task->blocked.sig[0] & 0x7fffffffUL,
450                 sigign      .sig[0] & 0x7fffffffUL,
451                 sigcatch    .sig[0] & 0x7fffffffUL,
452                 wchan,
453                 0UL,
454                 0UL,
455                 task->exit_signal,
456                 task_cpu(task),
457                 task->rt_priority,
458                 task->policy);
459         if(mm)
460                 mmput(mm);
461         return res;
462 }
463
464 extern int task_statm(struct mm_struct *, int *, int *, int *, int *);
465 int proc_pid_statm(struct task_struct *task, char *buffer)
466 {
467         int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
468         struct mm_struct *mm = get_task_mm(task);
469         
470         if (mm) {
471                 down_read(&mm->mmap_sem);
472                 size = task_statm(mm, &shared, &text, &data, &resident);
473                 up_read(&mm->mmap_sem);
474
475                 mmput(mm);
476         }
477
478         return sprintf(buffer,"%d %d %d %d %d %d %d\n",
479                        size, resident, shared, text, lib, data, 0);
480 }