sched: remove the SleepAVG field
[usb.git] / fs / proc / array.c
blob3df644313f9bc3d0a1c9776d0c26df3a6f98d93c
1 /*
2 * linux/fs/proc/array.c
4 * Copyright (C) 1992 by Linus Torvalds
5 * based on ideas by Darren Senn
7 * Fixes:
8 * Michael. K. Johnson: stat,statm extensions.
9 * <johnsonm@stolaf.edu>
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>
17 * Danny ter Haar : added cpuinfo
18 * <dth@cistron.nl>
20 * Alessandro Rubini : profile extension.
21 * <rubini@ipvvis.unipv.it>
23 * Jeff Tranter : added BogoMips field to cpuinfo
24 * <Jeff_Tranter@Mitel.COM>
26 * Bruno Haible : remove 4K limit for the maps file
27 * <haible@ma2s2.mathematik.uni-karlsruhe.de>
29 * Yves Arrouye : remove removal of trailing spaces in get_array.
30 * <Yves.Arrouye@marin.fdn.fr>
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>
39 * aeb@cwi.nl : /proc/partitions
42 * Alan Cox : security fixes.
43 * <Alan.Cox@linux.org>
45 * Al Viro : safe handling of mm_struct
47 * Gerhard Wichert : added BIGMEM support
48 * Siemens AG <Gerhard.Wichert@pdb.siemens.de>
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.
55 #include <linux/types.h>
56 #include <linux/errno.h>
57 #include <linux/time.h>
58 #include <linux/kernel.h>
59 #include <linux/kernel_stat.h>
60 #include <linux/tty.h>
61 #include <linux/string.h>
62 #include <linux/mman.h>
63 #include <linux/proc_fs.h>
64 #include <linux/ioport.h>
65 #include <linux/mm.h>
66 #include <linux/hugetlb.h>
67 #include <linux/pagemap.h>
68 #include <linux/swap.h>
69 #include <linux/slab.h>
70 #include <linux/smp.h>
71 #include <linux/signal.h>
72 #include <linux/highmem.h>
73 #include <linux/file.h>
74 #include <linux/times.h>
75 #include <linux/cpuset.h>
76 #include <linux/rcupdate.h>
77 #include <linux/delayacct.h>
79 #include <asm/uaccess.h>
80 #include <asm/pgtable.h>
81 #include <asm/io.h>
82 #include <asm/processor.h>
83 #include "internal.h"
85 /* Gcc optimizes away "strlen(x)" for constant x */
86 #define ADDBUF(buffer, string) \
87 do { memcpy(buffer, string, strlen(string)); \
88 buffer += strlen(string); } while (0)
90 static inline char * task_name(struct task_struct *p, char * buf)
92 int i;
93 char * name;
94 char tcomm[sizeof(p->comm)];
96 get_task_comm(tcomm, p);
98 ADDBUF(buf, "Name:\t");
99 name = tcomm;
100 i = sizeof(tcomm);
101 do {
102 unsigned char c = *name;
103 name++;
104 i--;
105 *buf = c;
106 if (!c)
107 break;
108 if (c == '\\') {
109 buf[1] = c;
110 buf += 2;
111 continue;
113 if (c == '\n') {
114 buf[0] = '\\';
115 buf[1] = 'n';
116 buf += 2;
117 continue;
119 buf++;
120 } while (i);
121 *buf = '\n';
122 return buf+1;
126 * The task state array is a strange "bitmap" of
127 * reasons to sleep. Thus "running" is zero, and
128 * you can test for combinations of others with
129 * simple bit tests.
131 static const char *task_state_array[] = {
132 "R (running)", /* 0 */
133 "S (sleeping)", /* 1 */
134 "D (disk sleep)", /* 2 */
135 "T (stopped)", /* 4 */
136 "T (tracing stop)", /* 8 */
137 "Z (zombie)", /* 16 */
138 "X (dead)" /* 32 */
141 static inline const char * get_task_state(struct task_struct *tsk)
143 unsigned int state = (tsk->state & (TASK_RUNNING |
144 TASK_INTERRUPTIBLE |
145 TASK_UNINTERRUPTIBLE |
146 TASK_STOPPED |
147 TASK_TRACED)) |
148 (tsk->exit_state & (EXIT_ZOMBIE |
149 EXIT_DEAD));
150 const char **p = &task_state_array[0];
152 while (state) {
153 p++;
154 state >>= 1;
156 return *p;
159 static inline char * task_state(struct task_struct *p, char *buffer)
161 struct group_info *group_info;
162 int g;
163 struct fdtable *fdt = NULL;
165 rcu_read_lock();
166 buffer += sprintf(buffer,
167 "State:\t%s\n"
168 "Tgid:\t%d\n"
169 "Pid:\t%d\n"
170 "PPid:\t%d\n"
171 "TracerPid:\t%d\n"
172 "Uid:\t%d\t%d\t%d\t%d\n"
173 "Gid:\t%d\t%d\t%d\t%d\n",
174 get_task_state(p),
175 p->tgid, p->pid,
176 pid_alive(p) ? rcu_dereference(p->real_parent)->tgid : 0,
177 pid_alive(p) && p->ptrace ? rcu_dereference(p->parent)->pid : 0,
178 p->uid, p->euid, p->suid, p->fsuid,
179 p->gid, p->egid, p->sgid, p->fsgid);
181 task_lock(p);
182 if (p->files)
183 fdt = files_fdtable(p->files);
184 buffer += sprintf(buffer,
185 "FDSize:\t%d\n"
186 "Groups:\t",
187 fdt ? fdt->max_fds : 0);
188 rcu_read_unlock();
190 group_info = p->group_info;
191 get_group_info(group_info);
192 task_unlock(p);
194 for (g = 0; g < min(group_info->ngroups,NGROUPS_SMALL); g++)
195 buffer += sprintf(buffer, "%d ", GROUP_AT(group_info,g));
196 put_group_info(group_info);
198 buffer += sprintf(buffer, "\n");
199 return buffer;
202 static char * render_sigset_t(const char *header, sigset_t *set, char *buffer)
204 int i, len;
206 len = strlen(header);
207 memcpy(buffer, header, len);
208 buffer += len;
210 i = _NSIG;
211 do {
212 int x = 0;
214 i -= 4;
215 if (sigismember(set, i+1)) x |= 1;
216 if (sigismember(set, i+2)) x |= 2;
217 if (sigismember(set, i+3)) x |= 4;
218 if (sigismember(set, i+4)) x |= 8;
219 *buffer++ = (x < 10 ? '0' : 'a' - 10) + x;
220 } while (i >= 4);
222 *buffer++ = '\n';
223 *buffer = 0;
224 return buffer;
227 static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
228 sigset_t *catch)
230 struct k_sigaction *k;
231 int i;
233 k = p->sighand->action;
234 for (i = 1; i <= _NSIG; ++i, ++k) {
235 if (k->sa.sa_handler == SIG_IGN)
236 sigaddset(ign, i);
237 else if (k->sa.sa_handler != SIG_DFL)
238 sigaddset(catch, i);
242 static inline char * task_sig(struct task_struct *p, char *buffer)
244 unsigned long flags;
245 sigset_t pending, shpending, blocked, ignored, caught;
246 int num_threads = 0;
247 unsigned long qsize = 0;
248 unsigned long qlim = 0;
250 sigemptyset(&pending);
251 sigemptyset(&shpending);
252 sigemptyset(&blocked);
253 sigemptyset(&ignored);
254 sigemptyset(&caught);
256 rcu_read_lock();
257 if (lock_task_sighand(p, &flags)) {
258 pending = p->pending.signal;
259 shpending = p->signal->shared_pending.signal;
260 blocked = p->blocked;
261 collect_sigign_sigcatch(p, &ignored, &caught);
262 num_threads = atomic_read(&p->signal->count);
263 qsize = atomic_read(&p->user->sigpending);
264 qlim = p->signal->rlim[RLIMIT_SIGPENDING].rlim_cur;
265 unlock_task_sighand(p, &flags);
267 rcu_read_unlock();
269 buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
270 buffer += sprintf(buffer, "SigQ:\t%lu/%lu\n", qsize, qlim);
272 /* render them all */
273 buffer = render_sigset_t("SigPnd:\t", &pending, buffer);
274 buffer = render_sigset_t("ShdPnd:\t", &shpending, buffer);
275 buffer = render_sigset_t("SigBlk:\t", &blocked, buffer);
276 buffer = render_sigset_t("SigIgn:\t", &ignored, buffer);
277 buffer = render_sigset_t("SigCgt:\t", &caught, buffer);
279 return buffer;
282 static inline char *task_cap(struct task_struct *p, char *buffer)
284 return buffer + sprintf(buffer, "CapInh:\t%016x\n"
285 "CapPrm:\t%016x\n"
286 "CapEff:\t%016x\n",
287 cap_t(p->cap_inheritable),
288 cap_t(p->cap_permitted),
289 cap_t(p->cap_effective));
292 int proc_pid_status(struct task_struct *task, char * buffer)
294 char * orig = buffer;
295 struct mm_struct *mm = get_task_mm(task);
297 buffer = task_name(task, buffer);
298 buffer = task_state(task, buffer);
300 if (mm) {
301 buffer = task_mem(mm, buffer);
302 mmput(mm);
304 buffer = task_sig(task, buffer);
305 buffer = task_cap(task, buffer);
306 buffer = cpuset_task_status_allowed(task, buffer);
307 #if defined(CONFIG_S390)
308 buffer = task_show_regs(task, buffer);
309 #endif
310 return buffer - orig;
313 static int do_task_stat(struct task_struct *task, char * buffer, int whole)
315 unsigned long vsize, eip, esp, wchan = ~0UL;
316 long priority, nice;
317 int tty_pgrp = -1, tty_nr = 0;
318 sigset_t sigign, sigcatch;
319 char state;
320 int res;
321 pid_t ppid = 0, pgid = -1, sid = -1;
322 int num_threads = 0;
323 struct mm_struct *mm;
324 unsigned long long start_time;
325 unsigned long cmin_flt = 0, cmaj_flt = 0;
326 unsigned long min_flt = 0, maj_flt = 0;
327 cputime_t cutime, cstime, utime, stime;
328 unsigned long rsslim = 0;
329 char tcomm[sizeof(task->comm)];
330 unsigned long flags;
332 state = *get_task_state(task);
333 vsize = eip = esp = 0;
334 mm = get_task_mm(task);
335 if (mm) {
336 vsize = task_vsize(mm);
337 eip = KSTK_EIP(task);
338 esp = KSTK_ESP(task);
341 get_task_comm(tcomm, task);
343 sigemptyset(&sigign);
344 sigemptyset(&sigcatch);
345 cutime = cstime = utime = stime = cputime_zero;
347 rcu_read_lock();
348 if (lock_task_sighand(task, &flags)) {
349 struct signal_struct *sig = task->signal;
351 if (sig->tty) {
352 tty_pgrp = pid_nr(sig->tty->pgrp);
353 tty_nr = new_encode_dev(tty_devnum(sig->tty));
356 num_threads = atomic_read(&sig->count);
357 collect_sigign_sigcatch(task, &sigign, &sigcatch);
359 cmin_flt = sig->cmin_flt;
360 cmaj_flt = sig->cmaj_flt;
361 cutime = sig->cutime;
362 cstime = sig->cstime;
363 rsslim = sig->rlim[RLIMIT_RSS].rlim_cur;
365 /* add up live thread stats at the group level */
366 if (whole) {
367 struct task_struct *t = task;
368 do {
369 min_flt += t->min_flt;
370 maj_flt += t->maj_flt;
371 utime = cputime_add(utime, t->utime);
372 stime = cputime_add(stime, t->stime);
373 t = next_thread(t);
374 } while (t != task);
376 min_flt += sig->min_flt;
377 maj_flt += sig->maj_flt;
378 utime = cputime_add(utime, sig->utime);
379 stime = cputime_add(stime, sig->stime);
382 sid = signal_session(sig);
383 pgid = process_group(task);
384 ppid = rcu_dereference(task->real_parent)->tgid;
386 unlock_task_sighand(task, &flags);
388 rcu_read_unlock();
390 if (!whole || num_threads<2)
391 wchan = get_wchan(task);
392 if (!whole) {
393 min_flt = task->min_flt;
394 maj_flt = task->maj_flt;
395 utime = task->utime;
396 stime = task->stime;
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);
404 /* Temporary variable needed for gcc-2.96 */
405 /* convert timespec -> nsec*/
406 start_time = (unsigned long long)task->start_time.tv_sec * NSEC_PER_SEC
407 + task->start_time.tv_nsec;
408 /* convert nsec -> ticks */
409 start_time = nsec_to_clock_t(start_time);
411 res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %u %lu \
412 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \
413 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %u %u %llu\n",
414 task->pid,
415 tcomm,
416 state,
417 ppid,
418 pgid,
419 sid,
420 tty_nr,
421 tty_pgrp,
422 task->flags,
423 min_flt,
424 cmin_flt,
425 maj_flt,
426 cmaj_flt,
427 cputime_to_clock_t(utime),
428 cputime_to_clock_t(stime),
429 cputime_to_clock_t(cutime),
430 cputime_to_clock_t(cstime),
431 priority,
432 nice,
433 num_threads,
434 start_time,
435 vsize,
436 mm ? get_mm_rss(mm) : 0,
437 rsslim,
438 mm ? mm->start_code : 0,
439 mm ? mm->end_code : 0,
440 mm ? mm->start_stack : 0,
441 esp,
442 eip,
443 /* The signal information here is obsolete.
444 * It must be decimal for Linux 2.0 compatibility.
445 * Use /proc/#/status for real-time signals.
447 task->pending.signal.sig[0] & 0x7fffffffUL,
448 task->blocked.sig[0] & 0x7fffffffUL,
449 sigign .sig[0] & 0x7fffffffUL,
450 sigcatch .sig[0] & 0x7fffffffUL,
451 wchan,
452 0UL,
453 0UL,
454 task->exit_signal,
455 task_cpu(task),
456 task->rt_priority,
457 task->policy,
458 (unsigned long long)delayacct_blkio_ticks(task));
459 if(mm)
460 mmput(mm);
461 return res;
464 int proc_tid_stat(struct task_struct *task, char * buffer)
466 return do_task_stat(task, buffer, 0);
469 int proc_tgid_stat(struct task_struct *task, char * buffer)
471 return do_task_stat(task, buffer, 1);
474 int proc_pid_statm(struct task_struct *task, char *buffer)
476 int size = 0, resident = 0, shared = 0, text = 0, lib = 0, data = 0;
477 struct mm_struct *mm = get_task_mm(task);
479 if (mm) {
480 size = task_statm(mm, &shared, &text, &data, &resident);
481 mmput(mm);
484 return sprintf(buffer,"%d %d %d %d %d %d %d\n",
485 size, resident, shared, text, lib, data, 0);