blob: 15a1cf74bc1d10146927b2e24eb5c5c554c91483 [file] [log] [blame]
Eric Andersen44608e92002-10-22 12:21:15 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright 1998 by Albert Cahalan; all rights reserved.
6 * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen44608e92002-10-22 12:21:15 +00007 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen44608e92002-10-22 12:21:15 +00009 */
10
Eric Andersen44608e92002-10-22 12:21:15 +000011#include <dirent.h>
12#include <string.h>
13#include <stdlib.h>
Rob Landley7818a422006-04-25 18:42:23 +000014#include <sys/param.h>
Eric Andersen44608e92002-10-22 12:21:15 +000015#include <unistd.h>
Rob Landleyb2804552006-02-13 22:04:27 +000016#include <fcntl.h>
Eric Andersen44608e92002-10-22 12:21:15 +000017
Glenn L McGrath7b1eca22002-11-24 01:32:56 +000018#include "libbb.h"
Eric Andersen44608e92002-10-22 12:21:15 +000019
Rob Landleyb2804552006-02-13 22:04:27 +000020
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +000021#define PROCPS_BUFSIZE 1024
22
23static int read_to_buf(const char *filename, void *buf)
Rob Landleyb2804552006-02-13 22:04:27 +000024{
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +000025 ssize_t ret;
Denis Vlasenkoea620772006-10-14 02:23:43 +000026 ret = open_read_close(filename, buf, PROCPS_BUFSIZE-1);
27 ((char *)buf)[ret > 0 ? ret : 0] = '\0';
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +000028 return ret;
Rob Landleyb2804552006-02-13 22:04:27 +000029}
30
31
Rob Landleydfba7412006-03-06 20:47:33 +000032procps_status_t * procps_scan(int save_user_arg0)
Eric Andersen44608e92002-10-22 12:21:15 +000033{
34 static DIR *dir;
Eric Andersen44608e92002-10-22 12:21:15 +000035 static procps_status_t ret_status;
Denis Vlasenko35fb5122006-11-01 09:16:49 +000036
37 struct dirent *entry;
Eric Andersen44608e92002-10-22 12:21:15 +000038 char *name;
39 int n;
40 char status[32];
Rob Landleyb2804552006-02-13 22:04:27 +000041 char *status_tail;
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +000042 char buf[PROCPS_BUFSIZE];
Eric Andersen44608e92002-10-22 12:21:15 +000043 procps_status_t curstatus;
44 int pid;
45 long tasknice;
46 struct stat sb;
47
48 if (!dir) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000049 dir = xopendir("/proc");
Eric Andersen44608e92002-10-22 12:21:15 +000050 }
Mike Frysinger58dda842006-07-12 20:04:00 +000051 for (;;) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +000052 entry = readdir(dir);
53 if (entry == NULL) {
Eric Andersen44608e92002-10-22 12:21:15 +000054 closedir(dir);
55 dir = 0;
56 return 0;
57 }
58 name = entry->d_name;
59 if (!(*name >= '0' && *name <= '9'))
60 continue;
61
62 memset(&curstatus, 0, sizeof(procps_status_t));
63 pid = atoi(name);
64 curstatus.pid = pid;
65
Rob Landleyb2804552006-02-13 22:04:27 +000066 status_tail = status + sprintf(status, "/proc/%d", pid);
Mike Frysinger58dda842006-07-12 20:04:00 +000067 if (stat(status, &sb))
Eric Andersen242ab832004-01-27 20:17:39 +000068 continue;
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +000069 bb_getpwuid(curstatus.user, sb.st_uid, sizeof(curstatus.user));
Eric Andersen242ab832004-01-27 20:17:39 +000070
Mike Frysinger301ad672006-06-07 20:24:34 +000071 /* see proc(5) for some details on this */
Rob Landleyb2804552006-02-13 22:04:27 +000072 strcpy(status_tail, "/stat");
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +000073 n = read_to_buf(status, buf);
Mike Frysinger58dda842006-07-12 20:04:00 +000074 if (n < 0)
Eric Andersen44608e92002-10-22 12:21:15 +000075 continue;
76 name = strrchr(buf, ')'); /* split into "PID (cmd" and "<rest>" */
Mike Frysinger58dda842006-07-12 20:04:00 +000077 if (name == 0 || name[1] != ' ')
Eric Andersen44608e92002-10-22 12:21:15 +000078 continue;
79 *name = 0;
80 sscanf(buf, "%*s (%15c", curstatus.short_cmd);
81 n = sscanf(name+2,
82 "%c %d "
83 "%*s %*s %*s %*s " /* pgrp, session, tty, tpgid */
84 "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
"Vladimir N. Oleynik"f246dc72005-09-16 12:55:29 +000085#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Mike Frysinger373af432006-06-07 21:37:59 +000086 "%lu %lu " /* utime, stime */
Eric Andersen44608e92002-10-22 12:21:15 +000087#else
Mike Frysinger373af432006-06-07 21:37:59 +000088 "%*s %*s " /* utime, stime */
Eric Andersen44608e92002-10-22 12:21:15 +000089#endif
90 "%*s %*s %*s " /* cutime, cstime, priority */
Mike Frysinger373af432006-06-07 21:37:59 +000091 "%ld " /* nice */
Eric Andersen44608e92002-10-22 12:21:15 +000092 "%*s %*s %*s " /* timeout, it_real_value, start_time */
93 "%*s " /* vsize */
Mike Frysinger373af432006-06-07 21:37:59 +000094 "%ld", /* rss */
Eric Andersen44608e92002-10-22 12:21:15 +000095 curstatus.state, &curstatus.ppid,
"Vladimir N. Oleynik"f246dc72005-09-16 12:55:29 +000096#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen44608e92002-10-22 12:21:15 +000097 &curstatus.utime, &curstatus.stime,
98#endif
99 &tasknice,
100 &curstatus.rss);
"Vladimir N. Oleynik"f246dc72005-09-16 12:55:29 +0000101#ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Mike Frysinger58dda842006-07-12 20:04:00 +0000102 if (n != 6)
Eric Andersen44608e92002-10-22 12:21:15 +0000103#else
Mike Frysinger58dda842006-07-12 20:04:00 +0000104 if (n != 4)
Eric Andersen44608e92002-10-22 12:21:15 +0000105#endif
106 continue;
107
108 if (curstatus.rss == 0 && curstatus.state[0] != 'Z')
109 curstatus.state[1] = 'W';
110 else
111 curstatus.state[1] = ' ';
112 if (tasknice < 0)
113 curstatus.state[2] = '<';
114 else if (tasknice > 0)
115 curstatus.state[2] = 'N';
116 else
117 curstatus.state[2] = ' ';
118
Glenn L McGratha1e4a0e2004-01-21 11:36:44 +0000119#ifdef PAGE_SHIFT
Eric Andersen44608e92002-10-22 12:21:15 +0000120 curstatus.rss <<= (PAGE_SHIFT - 10); /* 2**10 = 1kb */
Glenn L McGratha1e4a0e2004-01-21 11:36:44 +0000121#else
122 curstatus.rss *= (getpagesize() >> 10); /* 2**10 = 1kb */
123#endif
Eric Andersen44608e92002-10-22 12:21:15 +0000124
Mike Frysinger58dda842006-07-12 20:04:00 +0000125 if (save_user_arg0) {
Rob Landleyb2804552006-02-13 22:04:27 +0000126 strcpy(status_tail, "/cmdline");
"Vladimir N. Oleynik"465300c2006-02-14 10:17:09 +0000127 n = read_to_buf(status, buf);
Mike Frysinger58dda842006-07-12 20:04:00 +0000128 if (n > 0) {
129 if (buf[n-1]=='\n')
Glenn L McGrath393ad1a2002-11-25 22:31:37 +0000130 buf[--n] = 0;
131 name = buf;
Mike Frysinger58dda842006-07-12 20:04:00 +0000132 while (n) {
133 if (((unsigned char)*name) < ' ')
Glenn L McGrath393ad1a2002-11-25 22:31:37 +0000134 *name = ' ';
135 name++;
136 n--;
137 }
138 *name = 0;
Mike Frysinger58dda842006-07-12 20:04:00 +0000139 if (buf[0])
Eric Andersen44608e92002-10-22 12:21:15 +0000140 curstatus.cmd = strdup(buf);
141 /* if NULL it work true also */
142 }
Eric Andersen44608e92002-10-22 12:21:15 +0000143 }
144 return memcpy(&ret_status, &curstatus, sizeof(procps_status_t));
145 }
146}