vserver 1.9.3
[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_base.h>
77 #include <linux/vs_context.h>
78 #include <linux/vs_network.h>
79 #include <linux/vs_cvirt.h>
80
81 #include <asm/uaccess.h>
82 #include <asm/pgtable.h>
83 #include <asm/io.h>
84 #include <asm/processor.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_ZOMBIE |
149                                            TASK_DEAD |
150                                            TASK_STOPPED |
151                                            TASK_TRACED |
152                                            TASK_ONHOLD);
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, ppid, tppid, tgid;
167
168         read_lock(&tasklist_lock);
169         tgid = vx_map_tgid(p->tgid);
170         pid = vx_map_pid(p->pid);
171         ppid = vx_map_pid(p->real_parent->pid);
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) ? ppid : 0,
185                 p->pid && 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         struct nx_info *nxi;
299 #endif
300         struct mm_struct *mm = get_task_mm(task);
301
302         buffer = task_name(task, buffer);
303         buffer = task_state(task, buffer);
304  
305         if (mm) {
306                 buffer = task_mem(mm, buffer);
307                 mmput(mm);
308         }
309         buffer = task_sig(task, buffer);
310         buffer = task_cap(task, buffer);
311
312 #ifdef  CONFIG_VSERVER_LEGACY
313         buffer += sprintf (buffer,"s_context: %d\n", vx_task_xid(task));
314         vxi = task_get_vx_info(task);
315         if (vxi) {
316                 buffer += sprintf (buffer,"ctxflags: %08llx\n"
317                         ,(unsigned long long)vxi->vx_flags);
318                 buffer += sprintf (buffer,"initpid: %d\n"
319                         ,vxi->vx_initpid);
320         } else {
321                 buffer += sprintf (buffer,"ctxflags: none\n");
322                 buffer += sprintf (buffer,"initpid: none\n");
323         }
324         put_vx_info(vxi);
325         nxi = task_get_nx_info(task);
326         if (nxi) {
327                 int i;
328
329                 buffer += sprintf (buffer,"ipv4root:");
330                 for (i=0; i<nxi->nbipv4; i++){
331                         buffer += sprintf (buffer," %08x/%08x"
332                                 ,nxi->ipv4[i]
333                                 ,nxi->mask[i]);
334                 }
335                 *buffer++ = '\n';
336                 buffer += sprintf (buffer,"ipv4root_bcast: %08x\n"
337                         ,nxi->v4_bcast);
338         } else {
339                 buffer += sprintf (buffer,"ipv4root: 0\n");
340                 buffer += sprintf (buffer,"ipv4root_bcast: 0\n");
341         }
342         put_nx_info(nxi);
343 #endif
344 #if defined(CONFIG_ARCH_S390)
345         buffer = task_show_regs(task, buffer);
346 #endif
347         return buffer - orig;
348 }
349
350 int proc_pid_stat(struct task_struct *task, char * buffer)
351 {
352         unsigned long vsize, eip, esp, wchan;
353         long priority, nice;
354         unsigned long long bias_uptime = 0;
355         int tty_pgrp = -1, tty_nr = 0;
356         sigset_t sigign, sigcatch;
357         char state;
358         int res;
359         pid_t pid, ppid, pgid = -1, sid = -1;
360         int num_threads = 0;
361         struct mm_struct *mm;
362         unsigned long long start_time;
363         unsigned long cmin_flt = 0, cmaj_flt = 0, cutime = 0, cstime = 0;
364         char tcomm[sizeof(task->comm)];
365
366         state = *get_task_state(task);
367         vsize = eip = esp = 0;
368         mm = get_task_mm(task);
369         if (mm) {
370                 vsize = task_vsize(mm);
371                 eip = KSTK_EIP(task);
372                 esp = KSTK_ESP(task);
373         }
374
375         get_task_comm(tcomm, task);
376         wchan = get_wchan(task);
377
378         sigemptyset(&sigign);
379         sigemptyset(&sigcatch);
380         read_lock(&tasklist_lock);
381         if (task->sighand) {
382                 spin_lock_irq(&task->sighand->siglock);
383                 num_threads = atomic_read(&task->signal->count);
384                 collect_sigign_sigcatch(task, &sigign, &sigcatch);
385                 spin_unlock_irq(&task->sighand->siglock);
386         }
387         if (task->signal) {
388                 if (task->signal->tty) {
389                         tty_pgrp = task->signal->tty->pgrp;
390                         tty_nr = new_encode_dev(tty_devnum(task->signal->tty));
391                 }
392                 pgid = process_group(task);
393                 sid = task->signal->session;
394                 cmin_flt = task->signal->cmin_flt;
395                 cmaj_flt = task->signal->cmaj_flt;
396                 cutime = task->signal->cutime;
397                 cstime = task->signal->cstime;
398         }
399         if (task_vx_flags(task, VXF_VIRT_UPTIME, 0)) {
400                 bias_uptime = task->vx_info->cvirt.bias_uptime.tv_sec * NSEC_PER_SEC
401                         + task->vx_info->cvirt.bias_uptime.tv_nsec;
402         }
403         read_unlock(&tasklist_lock);
404
405         /* scale priority and nice values from timeslices to -20..20 */
406         /* to make it look like a "normal" Unix priority/nice value  */
407         priority = task_prio(task);
408         nice = task_nice(task);
409
410         read_lock(&tasklist_lock);
411         pid = vx_info_map_pid(task->vx_info, task->pid);
412         ppid = (!(pid > 1)) ? 0 :
413                 vx_info_map_pid(task->vx_info, task->real_parent->pid);
414         pgid = vx_info_map_pid(task->vx_info, pgid);
415         read_unlock(&tasklist_lock);
416
417         /* Temporary variable needed for gcc-2.96 */
418         /* convert timespec -> nsec*/
419         start_time = (unsigned long long)task->start_time.tv_sec * NSEC_PER_SEC
420                                 + task->start_time.tv_nsec;
421         /* convert nsec -> ticks */
422         start_time = nsec_to_clock_t(start_time - bias_uptime);
423
424         res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
425 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d %ld %llu %lu %ld %lu %lu %lu %lu %lu \
426 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu\n",
427                 pid,
428                 tcomm,
429                 state,
430                 ppid,
431                 pgid,
432                 sid,
433                 tty_nr,
434                 tty_pgrp,
435                 task->flags,
436                 task->min_flt,
437                 cmin_flt,
438                 task->maj_flt,
439                 cmaj_flt,
440                 jiffies_to_clock_t(task->utime),
441                 jiffies_to_clock_t(task->stime),
442                 jiffies_to_clock_t(cutime),
443                 jiffies_to_clock_t(cstime),
444                 priority,
445                 nice,
446                 num_threads,
447                 jiffies_to_clock_t(task->it_real_value),
448                 start_time,
449                 vsize,
450                 mm ? mm->rss : 0, /* you might want to shift this left 3 */
451                 task->rlim[RLIMIT_RSS].rlim_cur,
452                 mm ? mm->start_code : 0,
453                 mm ? mm->end_code : 0,
454                 mm ? mm->start_stack : 0,
455                 esp,
456                 eip,
457                 /* The signal information here is obsolete.
458                  * It must be decimal for Linux 2.0 compatibility.
459                  * Use /proc/#/status for real-time signals.
460                  */
461                 task->pending.signal.sig[0] & 0x7fffffffUL,
462                 task->blocked.sig[0] & 0x7fffffffUL,
463                 sigign      .sig[0] & 0x7fffffffUL,
464                 sigcatch    .sig[0] & 0x7fffffffUL,
465                 wchan,
466                 0UL,
467                 0UL,
468                 task->exit_signal,
469                 task_cpu(task),
470                 task->rt_priority,
471                 task->policy);
472         if(mm)
473                 mmput(mm);
474         return res;
475 }
476
477 int proc_pid_statm(struct task_struct *task, char *buffer)
478 {
479         int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
480         struct mm_struct *mm = get_task_mm(task);
481         
482         if (mm) {
483                 size = task_statm(mm, &shared, &text, &data, &resident);
484                 mmput(mm);
485         }
486
487         return sprintf(buffer,"%d %d %d %d %d %d %d\n",
488                        size, resident, shared, text, lib, data, 0);
489 }