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