Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[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/cpuset.h>
77 #include <linux/rcupdate.h>
78 #include <linux/vs_context.h>
79 #include <linux/vs_network.h>
80 #include <linux/vs_cvirt.h>
81
82 #include <asm/uaccess.h>
83 #include <asm/pgtable.h>
84 #include <asm/io.h>
85 #include <asm/processor.h>
86 #include "internal.h"
87
88 /* Gcc optimizes away "strlen(x)" for constant x */
89 #define ADDBUF(buffer, string) \
90 do { memcpy(buffer, string, strlen(string)); \
91      buffer += strlen(string); } while (0)
92
93 static inline char * task_name(struct task_struct *p, char * buf)
94 {
95         int i;
96         char * name;
97         char tcomm[sizeof(p->comm)];
98
99         get_task_comm(tcomm, p);
100
101         ADDBUF(buf, "Name:\t");
102         name = tcomm;
103         i = sizeof(tcomm);
104         do {
105                 unsigned char c = *name;
106                 name++;
107                 i--;
108                 *buf = c;
109                 if (!c)
110                         break;
111                 if (c == '\\') {
112                         buf[1] = c;
113                         buf += 2;
114                         continue;
115                 }
116                 if (c == '\n') {
117                         buf[0] = '\\';
118                         buf[1] = 'n';
119                         buf += 2;
120                         continue;
121                 }
122                 buf++;
123         } while (i);
124         *buf = '\n';
125         return buf+1;
126 }
127
128 /*
129  * The task state array is a strange "bitmap" of
130  * reasons to sleep. Thus "running" is zero, and
131  * you can test for combinations of others with
132  * simple bit tests.
133  */
134 static const char *task_state_array[] = {
135         "R (running)",          /*  0 */
136         "S (sleeping)",         /*  1 */
137         "D (disk sleep)",       /*  2 */
138         "T (stopped)",          /*  4 */
139         "T (tracing stop)",     /*  8 */
140         "Z (zombie)",           /* 16 */
141         "X (dead)",             /* 32 */
142         "N (noninteractive)",   /* 64 */
143         "H (on hold)"           /* 128 */
144 };
145
146 static inline const char * get_task_state(struct task_struct *tsk)
147 {
148         unsigned int state = (tsk->state & (TASK_RUNNING |
149                                             TASK_INTERRUPTIBLE |
150                                             TASK_UNINTERRUPTIBLE |
151                                             TASK_STOPPED |
152                                            TASK_TRACED |
153                                            TASK_ONHOLD)) |
154                         (tsk->exit_state & (EXIT_ZOMBIE |
155                                             EXIT_DEAD));
156         const char **p = &task_state_array[0];
157
158         while (state) {
159                 p++;
160                 state >>= 1;
161         }
162         return *p;
163 }
164
165 static inline char * task_state(struct task_struct *p, char *buffer)
166 {
167         struct group_info *group_info;
168         int g;
169         struct fdtable *fdt = NULL;
170         pid_t pid, ptgid, tppid, tgid;
171
172         read_lock(&tasklist_lock);
173         tgid = vx_map_tgid(p->tgid);
174         pid = vx_map_pid(p->pid);
175         ptgid = vx_map_pid(p->group_leader->real_parent->tgid);
176         tppid = vx_map_pid(p->parent->pid);
177         buffer += sprintf(buffer,
178                 "State:\t%s\n"
179                 "SleepAVG:\t%lu%%\n"
180                 "Tgid:\t%d\n"
181                 "Pid:\t%d\n"
182                 "PPid:\t%d\n"
183                 "TracerPid:\t%d\n"
184                 "Uid:\t%d\t%d\t%d\t%d\n"
185                 "Gid:\t%d\t%d\t%d\t%d\n",
186                 get_task_state(p),
187                 (p->sleep_avg/1024)*100/(1020000000/1024),
188                 tgid, pid, (pid > 1) ? ptgid : 0,
189                 pid_alive(p) && p->ptrace ? tppid : 0,
190                 p->uid, p->euid, p->suid, p->fsuid,
191                 p->gid, p->egid, p->sgid, p->fsgid);
192         read_unlock(&tasklist_lock);
193         task_lock(p);
194         rcu_read_lock();
195         if (p->files)
196                 fdt = files_fdtable(p->files);
197         buffer += sprintf(buffer,
198                 "FDSize:\t%d\n"
199                 "Groups:\t",
200                 fdt ? fdt->max_fds : 0);
201         rcu_read_unlock();
202
203         group_info = p->group_info;
204         get_group_info(group_info);
205         task_unlock(p);
206
207         for (g = 0; g < min(group_info->ngroups,NGROUPS_SMALL); g++)
208                 buffer += sprintf(buffer, "%d ", GROUP_AT(group_info,g));
209         put_group_info(group_info);
210
211         buffer += sprintf(buffer, "\n");
212         return buffer;
213 }
214
215 static char * render_sigset_t(const char *header, sigset_t *set, char *buffer)
216 {
217         int i, len;
218
219         len = strlen(header);
220         memcpy(buffer, header, len);
221         buffer += len;
222
223         i = _NSIG;
224         do {
225                 int x = 0;
226
227                 i -= 4;
228                 if (sigismember(set, i+1)) x |= 1;
229                 if (sigismember(set, i+2)) x |= 2;
230                 if (sigismember(set, i+3)) x |= 4;
231                 if (sigismember(set, i+4)) x |= 8;
232                 *buffer++ = (x < 10 ? '0' : 'a' - 10) + x;
233         } while (i >= 4);
234
235         *buffer++ = '\n';
236         *buffer = 0;
237         return buffer;
238 }
239
240 static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
241                                     sigset_t *catch)
242 {
243         struct k_sigaction *k;
244         int i;
245
246         k = p->sighand->action;
247         for (i = 1; i <= _NSIG; ++i, ++k) {
248                 if (k->sa.sa_handler == SIG_IGN)
249                         sigaddset(ign, i);
250                 else if (k->sa.sa_handler != SIG_DFL)
251                         sigaddset(catch, i);
252         }
253 }
254
255 static inline char * task_sig(struct task_struct *p, char *buffer)
256 {
257         sigset_t pending, shpending, blocked, ignored, caught;
258         int num_threads = 0;
259         unsigned long qsize = 0;
260         unsigned long qlim = 0;
261
262         sigemptyset(&pending);
263         sigemptyset(&shpending);
264         sigemptyset(&blocked);
265         sigemptyset(&ignored);
266         sigemptyset(&caught);
267
268         /* Gather all the data with the appropriate locks held */
269         read_lock(&tasklist_lock);
270         if (p->sighand) {
271                 spin_lock_irq(&p->sighand->siglock);
272                 pending = p->pending.signal;
273                 shpending = p->signal->shared_pending.signal;
274                 blocked = p->blocked;
275                 collect_sigign_sigcatch(p, &ignored, &caught);
276                 num_threads = atomic_read(&p->signal->count);
277                 qsize = atomic_read(&p->user->sigpending);
278                 qlim = p->signal->rlim[RLIMIT_SIGPENDING].rlim_cur;
279                 spin_unlock_irq(&p->sighand->siglock);
280         }
281         read_unlock(&tasklist_lock);
282
283         buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
284         buffer += sprintf(buffer, "SigQ:\t%lu/%lu\n", qsize, qlim);
285
286         /* render them all */
287         buffer = render_sigset_t("SigPnd:\t", &pending, buffer);
288         buffer = render_sigset_t("ShdPnd:\t", &shpending, buffer);
289         buffer = render_sigset_t("SigBlk:\t", &blocked, buffer);
290         buffer = render_sigset_t("SigIgn:\t", &ignored, buffer);
291         buffer = render_sigset_t("SigCgt:\t", &caught, buffer);
292
293         return buffer;
294 }
295
296 static inline char *task_cap(struct task_struct *p, char *buffer)
297 {
298     return buffer + sprintf(buffer, "CapInh:\t%016x\n"
299                             "CapPrm:\t%016x\n"
300                             "CapEff:\t%016x\n",
301                             cap_t(p->cap_inheritable),
302                             cap_t(p->cap_permitted),
303                             cap_t(p->cap_effective));
304 }
305
306 int proc_pid_status(struct task_struct *task, char * buffer)
307 {
308         char * orig = buffer;
309 #ifdef  CONFIG_VSERVER_LEGACY
310         struct vx_info *vxi;
311 #endif
312 #ifdef  CONFIG_VSERVER_LEGACYNET
313         struct nx_info *nxi;
314 #endif
315         struct mm_struct *mm = get_task_mm(task);
316
317         buffer = task_name(task, buffer);
318         buffer = task_state(task, buffer);
319  
320         if (mm) {
321                 buffer = task_mem(mm, buffer);
322                 mmput(mm);
323         }
324         buffer = task_sig(task, buffer);
325         buffer = task_cap(task, buffer);
326         buffer = cpuset_task_status_allowed(task, buffer);
327
328         if (task_vx_flags(task, VXF_INFO_HIDE, 0))
329                 goto skip;
330 #ifdef  CONFIG_VSERVER_LEGACY
331         buffer += sprintf (buffer,"s_context: %d\n", vx_task_xid(task));
332         vxi = task_get_vx_info(task);
333         if (vxi) {
334                 buffer += sprintf (buffer,"ctxflags: %08llx\n"
335                         ,(unsigned long long)vxi->vx_flags);
336                 buffer += sprintf (buffer,"initpid: %d\n"
337                         ,vxi->vx_initpid);
338         } else {
339                 buffer += sprintf (buffer,"ctxflags: none\n");
340                 buffer += sprintf (buffer,"initpid: none\n");
341         }
342         put_vx_info(vxi);
343 #else
344         buffer += sprintf (buffer,"VxID: %d\n", vx_task_xid(task));
345 #endif
346 #ifdef  CONFIG_VSERVER_LEGACYNET
347         nxi = task_get_nx_info(task);
348         if (nxi) {
349                 int i;
350
351                 buffer += sprintf (buffer,"ipv4root:");
352                 for (i=0; i<nxi->nbipv4; i++){
353                         buffer += sprintf (buffer," %08x/%08x"
354                                 ,nxi->ipv4[i]
355                                 ,nxi->mask[i]);
356                 }
357                 *buffer++ = '\n';
358                 buffer += sprintf (buffer,"ipv4root_bcast: %08x\n"
359                         ,nxi->v4_bcast);
360         } else {
361                 buffer += sprintf (buffer,"ipv4root: 0\n");
362                 buffer += sprintf (buffer,"ipv4root_bcast: 0\n");
363         }
364         put_nx_info(nxi);
365 #endif
366 skip:
367 #if defined(CONFIG_S390)
368         buffer = task_show_regs(task, buffer);
369 #endif
370         return buffer - orig;
371 }
372
373 static int do_task_stat(struct task_struct *task, char * buffer, int whole)
374 {
375         unsigned long vsize, eip, esp, wchan = ~0UL;
376         long priority, nice;
377         int tty_pgrp = -1, tty_nr = 0;
378         sigset_t sigign, sigcatch;
379         char state;
380         int res;
381         pid_t pid, ppid, pgid = -1, sid = -1;
382         int num_threads = 0;
383         struct mm_struct *mm;
384         unsigned long long start_time;
385         unsigned long cmin_flt = 0, cmaj_flt = 0;
386         unsigned long  min_flt = 0,  maj_flt = 0;
387         cputime_t cutime, cstime, utime, stime;
388         unsigned long rsslim = 0;
389         struct task_struct *t;
390         char tcomm[sizeof(task->comm)];
391
392         state = *get_task_state(task);
393         vsize = eip = esp = 0;
394         mm = get_task_mm(task);
395         if (mm) {
396                 vsize = task_vsize(mm);
397                 eip = KSTK_EIP(task);
398                 esp = KSTK_ESP(task);
399         }
400
401         get_task_comm(tcomm, task);
402
403         sigemptyset(&sigign);
404         sigemptyset(&sigcatch);
405         cutime = cstime = utime = stime = cputime_zero;
406         read_lock(&tasklist_lock);
407         if (task->sighand) {
408                 spin_lock_irq(&task->sighand->siglock);
409                 num_threads = atomic_read(&task->signal->count);
410                 collect_sigign_sigcatch(task, &sigign, &sigcatch);
411
412                 /* add up live thread stats at the group level */
413                 if (whole) {
414                         t = task;
415                         do {
416                                 min_flt += t->min_flt;
417                                 maj_flt += t->maj_flt;
418                                 utime = cputime_add(utime, t->utime);
419                                 stime = cputime_add(stime, t->stime);
420                                 t = next_thread(t);
421                         } while (t != task);
422                 }
423
424                 spin_unlock_irq(&task->sighand->siglock);
425         }
426         if (task->signal) {
427                 if (task->signal->tty) {
428                         tty_pgrp = task->signal->tty->pgrp;
429                         tty_nr = new_encode_dev(tty_devnum(task->signal->tty));
430                 }
431                 pgid = process_group(task);
432                 sid = task->signal->session;
433                 cmin_flt = task->signal->cmin_flt;
434                 cmaj_flt = task->signal->cmaj_flt;
435                 cutime = task->signal->cutime;
436                 cstime = task->signal->cstime;
437                 rsslim = task->signal->rlim[RLIMIT_RSS].rlim_cur;
438                 if (whole) {
439                         min_flt += task->signal->min_flt;
440                         maj_flt += task->signal->maj_flt;
441                         utime = cputime_add(utime, task->signal->utime);
442                         stime = cputime_add(stime, task->signal->stime);
443                 }
444         }
445         pid = vx_info_map_pid(task->vx_info, pid_alive(task) ? task->pid : 0);
446         ppid = (!(pid > 1)) ? 0 : vx_info_map_tgid(task->vx_info,
447                 task->group_leader->real_parent->tgid);
448         pgid = vx_info_map_pid(task->vx_info, pgid);
449
450         read_unlock(&tasklist_lock);
451
452         if (!whole || num_threads<2) {
453                 wchan = 0;
454                 if (current->uid == task->uid || current->euid == task->uid ||
455                                 capable(CAP_SYS_NICE))
456                         wchan = get_wchan(task);
457         }
458         if (!whole) {
459                 min_flt = task->min_flt;
460                 maj_flt = task->maj_flt;
461                 utime = task->utime;
462                 stime = task->stime;
463         }
464
465         /* scale priority and nice values from timeslices to -20..20 */
466         /* to make it look like a "normal" Unix priority/nice value  */
467         priority = task_prio(task);
468         nice = task_nice(task);
469
470         /* Temporary variable needed for gcc-2.96 */
471         /* convert timespec -> nsec*/
472         start_time = (unsigned long long)task->start_time.tv_sec * NSEC_PER_SEC
473                                 + task->start_time.tv_nsec;
474         /* convert nsec -> ticks */
475         start_time = nsec_to_clock_t(start_time);
476
477         /* fixup start time for virt uptime */
478         if (vx_flags(VXF_VIRT_UPTIME, 0)) {
479                 unsigned long long bias =
480                         current->vx_info->cvirt.bias_clock;
481
482                 if (start_time > bias)
483                         start_time -= bias;
484                 else
485                         start_time = 0;
486         }
487
488         res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
489 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \
490 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu\n",
491                 pid,
492                 tcomm,
493                 state,
494                 ppid,
495                 pgid,
496                 sid,
497                 tty_nr,
498                 tty_pgrp,
499                 task->flags,
500                 min_flt,
501                 cmin_flt,
502                 maj_flt,
503                 cmaj_flt,
504                 cputime_to_clock_t(utime),
505                 cputime_to_clock_t(stime),
506                 cputime_to_clock_t(cutime),
507                 cputime_to_clock_t(cstime),
508                 priority,
509                 nice,
510                 num_threads,
511                 start_time,
512                 vsize,
513                 mm ? get_mm_rss(mm) : 0,
514                 rsslim,
515                 mm ? mm->start_code : 0,
516                 mm ? mm->end_code : 0,
517                 mm ? mm->start_stack : 0,
518                 esp,
519                 eip,
520                 /* The signal information here is obsolete.
521                  * It must be decimal for Linux 2.0 compatibility.
522                  * Use /proc/#/status for real-time signals.
523                  */
524                 task->pending.signal.sig[0] & 0x7fffffffUL,
525                 task->blocked.sig[0] & 0x7fffffffUL,
526                 sigign      .sig[0] & 0x7fffffffUL,
527                 sigcatch    .sig[0] & 0x7fffffffUL,
528                 wchan,
529                 0UL,
530                 0UL,
531                 task->exit_signal,
532                 task_cpu(task),
533                 task->rt_priority,
534                 task->policy);
535         if(mm)
536                 mmput(mm);
537         return res;
538 }
539
540 int proc_tid_stat(struct task_struct *task, char * buffer)
541 {
542         return do_task_stat(task, buffer, 0);
543 }
544
545 int proc_tgid_stat(struct task_struct *task, char * buffer)
546 {
547         return do_task_stat(task, buffer, 1);
548 }
549
550 int proc_pid_statm(struct task_struct *task, char *buffer)
551 {
552         int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
553         struct mm_struct *mm = get_task_mm(task);
554         
555         if (mm) {
556                 size = task_statm(mm, &shared, &text, &data, &resident);
557                 mmput(mm);
558         }
559
560         return sprintf(buffer,"%d %d %d %d %d %d %d\n",
561                        size, resident, shared, text, lib, data, 0);
562 }