1 /* vi: set sw=4 ts=4: */
5 * Copyright 1998 by Albert Cahalan; all rights reserved.
6 * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
7 * SELinux support: (c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
15 typedef struct id_to_name_map_t
{
17 char name
[USERNAME_MAX_SIZE
];
20 typedef struct cache_t
{
21 id_to_name_map_t
*cache
;
25 static cache_t username
, groupname
;
27 static void clear_cache(cache_t
*cp
)
33 void FAST_FUNC
clear_username_cache(void)
35 clear_cache(&username
);
36 clear_cache(&groupname
);
39 #if 0 /* more generic, but we don't need that yet */
40 /* Returns -N-1 if not found. */
41 /* cp->cache[N] is allocated and must be filled in this case */
42 static int get_cached(cache_t
*cp
, uid_t id
)
45 for (i
= 0; i
< cp
->size
; i
++)
46 if (cp
->cache
[i
].id
== id
)
49 cp
->cache
= xrealloc_vector(cp
->cache
, 2, i
);
50 cp
->cache
[i
++].id
= id
;
55 static char* get_cached(cache_t
*cp
, uid_t id
,
56 char* FAST_FUNC
x2x_utoa(uid_t id
))
59 for (i
= 0; i
< cp
->size
; i
++)
60 if (cp
->cache
[i
].id
== id
)
61 return cp
->cache
[i
].name
;
63 cp
->cache
= xrealloc_vector(cp
->cache
, 2, i
);
65 /* Never fails. Generates numeric string if name isn't found */
66 safe_strncpy(cp
->cache
[i
].name
, x2x_utoa(id
), sizeof(cp
->cache
[i
].name
));
67 return cp
->cache
[i
].name
;
69 const char* FAST_FUNC
get_cached_username(uid_t uid
)
71 return get_cached(&username
, uid
, uid2uname_utoa
);
73 const char* FAST_FUNC
get_cached_groupname(gid_t gid
)
75 return get_cached(&groupname
, gid
, gid2group_utoa
);
79 #define PROCPS_BUFSIZE 1024
81 static int read_to_buf(const char *filename
, void *buf
)
84 /* open_read_close() would do two reads, checking for EOF.
85 * When you have 10000 /proc/$NUM/stat to read, it isn't desirable */
87 fd
= open(filename
, O_RDONLY
);
89 ret
= read(fd
, buf
, PROCPS_BUFSIZE
-1);
92 ((char *)buf
)[ret
> 0 ? ret
: 0] = '\0';
96 static procps_status_t
* FAST_FUNC
alloc_procps_scan(void)
98 unsigned n
= getpagesize();
99 procps_status_t
* sp
= xzalloc(sizeof(procps_status_t
));
100 sp
->dir
= xopendir("/proc");
104 sp
->shift_pages_to_bytes
++;
106 sp
->shift_pages_to_kb
= sp
->shift_pages_to_bytes
- 10;
110 void FAST_FUNC
free_procps_scan(procps_status_t
* sp
)
113 #if ENABLE_FEATURE_SHOW_THREADS
115 closedir(sp
->task_dir
);
119 IF_SELINUX(free(sp
->context
);)
123 #if ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
124 static unsigned long fast_strtoul_16(char **endptr
)
130 /* Need to stop on both ' ' and '\n' */
131 while ((c
= *str
++) > ' ') {
132 c
= ((c
|0x20) - '0');
134 /* c = c + '0' - 'a' + 10: */
135 c
= c
- ('a' - '0' - 10);
138 *endptr
= str
; /* We skip trailing space! */
143 #if ENABLE_FEATURE_FAST_TOP || ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
144 /* We cut a lot of corners here for speed */
145 static unsigned long fast_strtoul_10(char **endptr
)
149 unsigned long n
= *str
- '0';
151 /* Need to stop on both ' ' and '\n' */
152 while ((c
= *++str
) > ' ')
153 n
= n
*10 + (c
- '0');
155 *endptr
= str
+ 1; /* We skip trailing space! */
159 # if ENABLE_FEATURE_FAST_TOP
160 static long fast_strtol_10(char **endptr
)
163 return fast_strtoul_10(endptr
);
166 return - (long)fast_strtoul_10(endptr
);
170 static char *skip_fields(char *str
, int count
)
173 while (*str
++ != ' ')
175 /* we found a space char, str points after it */
181 #if ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
182 int FAST_FUNC
procps_read_smaps(pid_t pid
, struct smaprec
*total
,
183 void (*cb
)(struct smaprec
*, void *), void *data
)
186 struct smaprec currec
;
187 char filename
[sizeof("/proc/%u/smaps") + sizeof(int)*3];
188 char buf
[PROCPS_BUFSIZE
];
190 void (*cb
)(struct smaprec
*, void *) = NULL
;
194 sprintf(filename
, "/proc/%u/smaps", (int)pid
);
196 file
= fopen_for_read(filename
);
200 memset(&currec
, 0, sizeof(currec
));
201 while (fgets(buf
, PROCPS_BUFSIZE
, file
)) {
202 // Each mapping datum has this form:
203 // f7d29000-f7d39000 rw-s FILEOFS M:m INODE FILENAME
211 if ((tp = is_prefixed_with(buf, S)) != NULL) { \
212 tp = skip_whitespace(tp); \
213 total->X += currec.X = fast_strtoul_10(&tp); \
217 SCAN("Pss:" , smap_pss
);
218 SCAN("Swap:" , smap_swap
);
220 SCAN("Private_Dirty:", private_dirty
);
221 SCAN("Private_Clean:", private_clean
);
222 SCAN("Shared_Dirty:" , shared_dirty
);
223 SCAN("Shared_Clean:" , shared_clean
);
225 tp
= strchr(buf
, '-');
227 // We reached next mapping - the line of this form:
228 // f7d29000-f7d39000 rw-s FILEOFS M:m INODE FILENAME
231 /* If we have a previous record, there's nothing more
232 * for it, call the callback and clear currec
234 if (currec
.smap_size
)
236 free(currec
.smap_name
);
238 memset(&currec
, 0, sizeof(currec
));
242 currec
.smap_start
= fast_strtoul_16(&tp
);
243 currec
.smap_size
= (fast_strtoul_16(&tp
) - currec
.smap_start
) >> 10;
245 strncpy(currec
.smap_mode
, tp
, sizeof(currec
.smap_mode
)-1);
247 // skipping "rw-s FILEOFS M:m INODE "
248 tp
= skip_whitespace(skip_fields(tp
, 4));
249 // filter out /dev/something (something != zero)
250 if (!is_prefixed_with(tp
, "/dev/") || strcmp(tp
, "/dev/zero\n") == 0) {
251 if (currec
.smap_mode
[1] == 'w') {
252 currec
.mapped_rw
= currec
.smap_size
;
253 total
->mapped_rw
+= currec
.smap_size
;
254 } else if (currec
.smap_mode
[1] == '-') {
255 currec
.mapped_ro
= currec
.smap_size
;
256 total
->mapped_ro
+= currec
.smap_size
;
260 if (strcmp(tp
, "[stack]\n") == 0)
261 total
->stack
+= currec
.smap_size
;
263 p
= skip_non_whitespace(tp
);
265 currec
.smap_name
= xstrdup(" [ anon ]");
268 currec
.smap_name
= xstrdup(tp
);
271 total
->smap_size
+= currec
.smap_size
;
277 if (currec
.smap_size
)
279 free(currec
.smap_name
);
286 procps_status_t
* FAST_FUNC
procps_scan(procps_status_t
* sp
, int flags
)
289 sp
= alloc_procps_scan();
292 struct dirent
*entry
;
293 char buf
[PROCPS_BUFSIZE
];
297 char filename
[sizeof("/proc/%u/task/%u/cmdline") + sizeof(int)*3 * 2];
300 #if ENABLE_FEATURE_SHOW_THREADS
302 entry
= readdir(sp
->task_dir
);
305 closedir(sp
->task_dir
);
309 entry
= readdir(sp
->dir
);
311 free_procps_scan(sp
);
314 IF_FEATURE_SHOW_THREADS(got_entry
:)
315 pid
= bb_strtou(entry
->d_name
, NULL
, 10);
318 #if ENABLE_FEATURE_SHOW_THREADS
319 if ((flags
& PSSCAN_TASKS
) && !sp
->task_dir
) {
320 /* We found another /proc/PID. Do not use it,
321 * there will be /proc/PID/task/PID (same PID!),
322 * so just go ahead and dive into /proc/PID/task. */
323 sprintf(filename
, "/proc/%u/task", pid
);
324 /* Note: if opendir fails, we just go to next /proc/XXX */
325 sp
->task_dir
= opendir(filename
);
326 sp
->main_thread_pid
= pid
;
331 /* After this point we can:
332 * "break": stop parsing, return the data
333 * "continue": try next /proc/XXX
336 memset(&sp
->vsz
, 0, sizeof(*sp
) - offsetof(procps_status_t
, vsz
));
339 if (!(flags
& ~PSSCAN_PID
))
340 break; /* we needed only pid, we got it */
343 if (flags
& PSSCAN_CONTEXT
) {
344 if (getpidcon(sp
->pid
, &sp
->context
) < 0)
349 #if ENABLE_FEATURE_SHOW_THREADS
351 filename_tail
= filename
+ sprintf(filename
, "/proc/%u/task/%u/", sp
->main_thread_pid
, pid
);
354 filename_tail
= filename
+ sprintf(filename
, "/proc/%u/", pid
);
356 if (flags
& PSSCAN_UIDGID
) {
358 if (stat(filename
, &sb
))
359 continue; /* process probably exited */
360 /* Effective UID/GID, not real */
365 /* These are all retrieved from proc/NN/stat in one go: */
366 if (flags
& (PSSCAN_PPID
| PSSCAN_PGID
| PSSCAN_SID
367 | PSSCAN_COMM
| PSSCAN_STATE
368 | PSSCAN_VSZ
| PSSCAN_RSS
369 | PSSCAN_STIME
| PSSCAN_UTIME
| PSSCAN_START_TIME
370 | PSSCAN_TTY
| PSSCAN_NICE
375 #if !ENABLE_FEATURE_FAST_TOP
376 unsigned long vsz
, rss
;
378 /* see proc(5) for some details on this */
379 strcpy(filename_tail
, "stat");
380 n
= read_to_buf(filename
, buf
);
382 continue; /* process probably exited */
383 cp
= strrchr(buf
, ')'); /* split into "PID (cmd" and "<rest>" */
384 /*if (!cp || cp[1] != ' ')
387 BUILD_BUG_ON(sizeof(sp
->comm
) < 16);
388 comm1
= strchr(buf
, '(');
390 safe_strncpy(sp
->comm
, comm1
+ 1, sizeof(sp
->comm
));
392 #if !ENABLE_FEATURE_FAST_TOP
394 "%c %u " /* state, ppid */
395 "%u %u %d %*s " /* pgid, sid, tty, tpgid */
396 "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
397 "%lu %lu " /* utime, stime */
398 "%*s %*s %*s " /* cutime, cstime, priority */
400 "%*s %*s " /* timeout, it_real_value */
401 "%lu " /* start_time */
404 # if ENABLE_FEATURE_TOP_SMP_PROCESS
405 "%*s %*s %*s %*s %*s %*s " /*rss_rlim, start_code, end_code, start_stack, kstk_esp, kstk_eip */
406 "%*s %*s %*s %*s " /*signal, blocked, sigignore, sigcatch */
407 "%*s %*s %*s %*s " /*wchan, nswap, cnswap, exit_signal */
408 "%d" /*cpu last seen on*/
411 sp
->state
, &sp
->ppid
,
412 &sp
->pgid
, &sp
->sid
, &tty
,
413 &sp
->utime
, &sp
->stime
,
418 # if ENABLE_FEATURE_TOP_SMP_PROCESS
419 , &sp
->last_seen_on_cpu
424 continue; /* bogus data, get next /proc/XXX */
425 # if ENABLE_FEATURE_TOP_SMP_PROCESS
427 sp
->last_seen_on_cpu
= 0;
430 /* vsz is in bytes and we want kb */
432 /* vsz is in bytes but rss is in *PAGES*! Can you believe that? */
433 sp
->rss
= rss
<< sp
->shift_pages_to_kb
;
434 sp
->tty_major
= (tty
>> 8) & 0xfff;
435 sp
->tty_minor
= (tty
& 0xff) | ((tty
>> 12) & 0xfff00);
437 /* This costs ~100 bytes more but makes top faster by 20%
438 * If you run 10000 processes, this may be important for you */
439 sp
->state
[0] = cp
[2];
441 sp
->ppid
= fast_strtoul_10(&cp
);
442 sp
->pgid
= fast_strtoul_10(&cp
);
443 sp
->sid
= fast_strtoul_10(&cp
);
444 tty
= fast_strtoul_10(&cp
);
445 sp
->tty_major
= (tty
>> 8) & 0xfff;
446 sp
->tty_minor
= (tty
& 0xff) | ((tty
>> 12) & 0xfff00);
447 cp
= skip_fields(cp
, 6); /* tpgid, flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
448 sp
->utime
= fast_strtoul_10(&cp
);
449 sp
->stime
= fast_strtoul_10(&cp
);
450 cp
= skip_fields(cp
, 3); /* cutime, cstime, priority */
451 tasknice
= fast_strtol_10(&cp
);
452 cp
= skip_fields(cp
, 2); /* timeout, it_real_value */
453 sp
->start_time
= fast_strtoul_10(&cp
);
454 /* vsz is in bytes and we want kb */
455 sp
->vsz
= fast_strtoul_10(&cp
) >> 10;
456 /* vsz is in bytes but rss is in *PAGES*! Can you believe that? */
457 sp
->rss
= fast_strtoul_10(&cp
) << sp
->shift_pages_to_kb
;
458 # if ENABLE_FEATURE_TOP_SMP_PROCESS
459 /* (6): rss_rlim, start_code, end_code, start_stack, kstk_esp, kstk_eip */
460 /* (4): signal, blocked, sigignore, sigcatch */
461 /* (4): wchan, nswap, cnswap, exit_signal */
462 cp
= skip_fields(cp
, 14);
463 //FIXME: is it safe to assume this field exists?
464 sp
->last_seen_on_cpu
= fast_strtoul_10(&cp
);
466 #endif /* FEATURE_FAST_TOP */
468 #if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
469 sp
->niceness
= tasknice
;
472 if (sp
->vsz
== 0 && sp
->state
[0] != 'Z')
478 else if (tasknice
) /* > 0 */
484 #if ENABLE_FEATURE_TOPMEM
485 if (flags
& PSSCAN_SMAPS
)
486 procps_read_smaps(pid
, &sp
->smaps
, NULL
, NULL
);
488 #if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
489 if (flags
& PSSCAN_RUIDGID
) {
492 strcpy(filename_tail
, "status");
493 file
= fopen_for_read(filename
);
495 while (fgets(buf
, sizeof(buf
), file
)) {
497 #define SCAN_TWO(str, name, statement) \
498 if ((tp = is_prefixed_with(buf, str)) != NULL) { \
499 tp = skip_whitespace(tp); \
500 sscanf(tp, "%u", &sp->name); \
503 SCAN_TWO("Uid:", ruid
, continue);
504 SCAN_TWO("Gid:", rgid
, break);
510 #endif /* PS_ADDITIONAL_COLUMNS */
511 if (flags
& PSSCAN_EXE
) {
512 strcpy(filename_tail
, "exe");
514 sp
->exe
= xmalloc_readlink(filename
);
516 /* Note: if /proc/PID/cmdline is empty,
517 * code below "breaks". Therefore it must be
518 * the last code to parse /proc/PID/xxx data
519 * (we used to have /proc/PID/exe parsing after it
520 * and were getting stale sp->exe).
522 #if 0 /* PSSCAN_CMD is not used */
523 if (flags
& (PSSCAN_CMD
|PSSCAN_ARGV0
)) {
528 strcpy(filename_tail
, "cmdline");
529 /* TODO: to get rid of size limits, read into malloc buf,
530 * then realloc it down to real size. */
531 n
= read_to_buf(filename
, buf
);
534 if (flags
& PSSCAN_ARGV0
)
535 sp
->argv0
= xstrdup(buf
);
536 if (flags
& PSSCAN_CMD
) {
539 if ((unsigned char)(buf
[n
]) < ' ')
542 sp
->cmd
= xstrdup(buf
);
546 if (flags
& (PSSCAN_ARGV0
|PSSCAN_ARGVN
)) {
549 strcpy(filename_tail
, "cmdline");
550 n
= read_to_buf(filename
, buf
);
553 if (flags
& PSSCAN_ARGVN
) {
555 sp
->argv0
= xmemdup(buf
, n
+ 1);
556 /* sp->argv0[n] = '\0'; - buf has it */
559 sp
->argv0
= xstrdup(buf
);
569 void FAST_FUNC
read_cmdline(char *buf
, int col
, unsigned pid
, const char *comm
)
572 char filename
[sizeof("/proc/%u/cmdline") + sizeof(int)*3];
574 sprintf(filename
, "/proc/%u/cmdline", pid
);
575 sz
= open_read_close(filename
, buf
, col
- 1);
581 while (--sz
>= 0 && buf
[sz
] == '\0')
583 /* Prevent basename("process foo/bar") = "bar" */
584 strchrnul(buf
, ' ')[0] = '\0';
585 base
= bb_basename(buf
); /* before we replace argv0's NUL with space */
587 if ((unsigned char)(buf
[sz
]) < ' ')
591 if (base
[0] == '-') /* "-sh" (login shell)? */
594 /* If comm differs from argv0, prepend "{comm} ".
595 * It allows to see thread names set by prctl(PR_SET_NAME).
599 comm_len
= strlen(comm
);
600 /* Why compare up to comm_len, not COMM_LEN-1?
601 * Well, some processes rewrite argv, and use _spaces_ there
602 * while rewriting. (KDE is observed to do it).
603 * I prefer to still treat argv0 "process foo bar"
604 * as 'equal' to comm "process".
606 if (strncmp(base
, comm
, comm_len
) != 0) {
609 memmove(buf
+ comm_len
, buf
, col
- comm_len
);
610 snprintf(buf
, col
, "{%s}", comm
);
613 buf
[comm_len
- 1] = ' ';
617 snprintf(buf
, col
, "[%s]", comm
? comm
: "?");
622 // pid comm S ppid pgid sid tty_nr tty_pgrp flg
623 sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu \
624 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \
625 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu %llu\n",
639 cputime_to_clock_t(utime),
640 cputime_to_clock_t(stime),
641 cputime_to_clock_t(cutime),
642 cputime_to_clock_t(cstime),
649 mm ? get_mm_rss(mm) : 0,
651 mm ? mm->start_code : 0,
652 mm ? mm->end_code : 0,
653 mm ? mm->start_stack : 0,
656 the rest is some obsolete cruft