A bunch of defined(__GLIBC__) added. static-linking warning expanded
[oweals/busybox.git] / libbb / procps.c
index a513f3f7f0a8145e781bc07a32942388aae26412..017710ff4537f795489485cd0330773dbe657058 100644 (file)
  *
  * Copyright 1998 by Albert Cahalan; all rights reserved.
  * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
- * GNU Library General Public License Version 2, or any later version
  *
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <dirent.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <asm/page.h>
-
 #include "libbb.h"
 
-extern procps_status_t * procps_scan(int save_user_arg0)
+
+typedef struct unsigned_to_name_map_t {
+       unsigned id;
+       char name[12];
+} unsigned_to_name_map_t;
+
+typedef struct cache_t {
+       unsigned_to_name_map_t *cache;
+       int size;
+} cache_t;
+
+static cache_t username, groupname;
+
+static void clear_cache(cache_t *cp)
+{
+       free(cp->cache);
+       cp->cache = NULL;
+       cp->size = 0;
+}
+void clear_username_cache(void)
+{
+       clear_cache(&username);
+       clear_cache(&groupname);
+}
+
+#if 0 /* more generic, but we don't need that yet */
+/* Returns -N-1 if not found. */
+/* cp->cache[N] is allocated and must be filled in this case */
+static int get_cached(cache_t *cp, unsigned id)
+{
+       int i;
+       for (i = 0; i < cp->size; i++)
+               if (cp->cache[i].id == id)
+                       return i;
+       i = cp->size++;
+       cp->cache = xrealloc(cp->cache, cp->size * sizeof(*cp->cache));
+       cp->cache[i++].id = id;
+       return -i;
+}
+#endif
+
+typedef char* ug_func(char *name, long uid, int bufsize);
+static char* get_cached(cache_t *cp, unsigned id, ug_func* fp)
+{
+       int i;
+       for (i = 0; i < cp->size; i++)
+               if (cp->cache[i].id == id)
+                       return cp->cache[i].name;
+       i = cp->size++;
+       cp->cache = xrealloc(cp->cache, cp->size * sizeof(*cp->cache));
+       cp->cache[i].id = id;
+       fp(cp->cache[i].name, id, sizeof(cp->cache[i].name));
+       return cp->cache[i].name;
+}
+const char* get_cached_username(uid_t uid)
+{
+       return get_cached(&username, uid, bb_getpwuid);
+}
+const char* get_cached_groupname(gid_t gid)
+{
+       return get_cached(&groupname, gid, bb_getgrgid);
+}
+
+
+#define PROCPS_BUFSIZE 1024
+
+static int read_to_buf(const char *filename, void *buf)
+{
+       ssize_t ret;
+       ret = open_read_close(filename, buf, PROCPS_BUFSIZE-1);
+       ((char *)buf)[ret > 0 ? ret : 0] = '\0';
+       return ret;
+}
+
+procps_status_t* alloc_procps_scan(int flags)
+{
+       procps_status_t* sp = xzalloc(sizeof(procps_status_t));
+       sp->dir = xopendir("/proc");
+       return sp;
+}
+
+void free_procps_scan(procps_status_t* sp)
+{
+       closedir(sp->dir);
+       free(sp->cmd);
+       free(sp);
+}
+
+void BUG_comm_size(void);
+procps_status_t* procps_scan(procps_status_t* sp, int flags)
 {
-       static DIR *dir;
        struct dirent *entry;
-       static procps_status_t ret_status;
-       char *name;
-       int n;
-       char status[32];
-       char buf[1024];
-       FILE *fp;
-       procps_status_t curstatus;
-       int pid;
+       char buf[PROCPS_BUFSIZE];
+       char filename[sizeof("/proc//cmdline") + sizeof(int)*3];
+       char *filename_tail;
        long tasknice;
+       unsigned pid;
+       int n;
        struct stat sb;
 
-       if (!dir) {
-               dir = opendir("/proc");
-               if(!dir)
-                       bb_error_msg_and_die("Can't open /proc");
-       }
-       for(;;) {
-               if((entry = readdir(dir)) == NULL) {
-                       closedir(dir);
-                       dir = 0;
-                       return 0;
+       if (!sp)
+               sp = alloc_procps_scan(flags);
+
+       for (;;) {
+               entry = readdir(sp->dir);
+               if (entry == NULL) {
+                       free_procps_scan(sp);
+                       return NULL;
                }
-               name = entry->d_name;
-               if (!(*name >= '0' && *name <= '9'))
+               pid = bb_strtou(entry->d_name, NULL, 10);
+               if (errno)
                        continue;
 
-               memset(&curstatus, 0, sizeof(procps_status_t));
-               pid = atoi(name);
-               curstatus.pid = pid;
+               /* After this point we have to break, not continue
+                * ("continue" would mean that current /proc/NNN
+                * is not a valid process info) */
 
-               sprintf(status, "/proc/%d/stat", pid);
-               if((fp = fopen(status, "r")) == NULL)
-                       continue;
-               if(fstat(fileno(fp), &sb))
-                       continue;
-               my_getpwuid(curstatus.user, sb.st_uid);
-               name = fgets(buf, sizeof(buf), fp);
-               fclose(fp);
-               if(name == NULL)
-                       continue;
-               name = strrchr(buf, ')'); /* split into "PID (cmd" and "<rest>" */
-               if(name == 0 || name[1] != ' ')
-                       continue;
-               *name = 0;
-               sscanf(buf, "%*s (%15c", curstatus.short_cmd);
-               n = sscanf(name+2,
-               "%c %d "
-               "%*s %*s %*s %*s "     /* pgrp, session, tty, tpgid */
-               "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
-#ifdef FEATURE_CPU_USAGE_PERCENTAGE
-               "%lu %lu "
-#else
-               "%*s %*s "
-#endif
-               "%*s %*s %*s "         /* cutime, cstime, priority */
-               "%ld "
-               "%*s %*s %*s "         /* timeout, it_real_value, start_time */
-               "%*s "                 /* vsize */
-               "%ld",
-               curstatus.state, &curstatus.ppid,
-#ifdef FEATURE_CPU_USAGE_PERCENTAGE
-               &curstatus.utime, &curstatus.stime,
-#endif
-               &tasknice,
-               &curstatus.rss);
-#ifdef FEATURE_CPU_USAGE_PERCENTAGE
-               if(n != 6)
+               memset(&sp->rss, 0, sizeof(*sp) - offsetof(procps_status_t, rss));
+
+               sp->pid = pid;
+               if (!(flags & ~PSSCAN_PID)) break;
+
+               filename_tail = filename + sprintf(filename, "/proc/%d", pid);
+
+               if (flags & PSSCAN_UIDGID) {
+                       if (stat(filename, &sb))
+                               break;
+                       /* Need comment - is this effective or read UID/GID? */
+                       sp->uid = sb.st_uid;
+                       sp->gid = sb.st_gid;
+               }
+       
+               if (flags & PSSCAN_STAT) {
+                       char *cp;
+                       /* see proc(5) for some details on this */
+                       strcpy(filename_tail, "/stat");
+                       n = read_to_buf(filename, buf);
+                       if (n < 0)
+                               break;
+                       cp = strrchr(buf, ')'); /* split into "PID (cmd" and "<rest>" */
+                       if (!cp || cp[1] != ' ')
+                               break;
+                       cp[0] = '\0';
+                       if (sizeof(sp->comm) < 16)
+                               BUG_comm_size();
+                       sscanf(buf, "%*s (%15c", sp->comm);
+                       n = sscanf(cp+2,
+                               "%c %u "               /* state, ppid */
+                               "%u %u %*s %*s "       /* pgid, sid, tty, tpgid */
+                               "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
+                               "%lu %lu "             /* utime, stime */
+                               "%*s %*s %*s "         /* cutime, cstime, priority */
+                               "%ld "                 /* nice */
+                               "%*s %*s %*s "         /* timeout, it_real_value, start_time */
+                               "%*s "                 /* vsize */
+                               "%lu",                 /* rss */
+                               sp->state, &sp->ppid,
+                               &sp->pgid, &sp->sid,
+                               &sp->utime, &sp->stime,
+                               &tasknice,
+                               &sp->rss);
+                       if (n != 8)
+                               break;
+
+                       if (sp->rss == 0 && sp->state[0] != 'Z')
+                               sp->state[1] = 'W';
+                       else
+                               sp->state[1] = ' ';
+                       if (tasknice < 0)
+                               sp->state[2] = '<';
+                       else if (tasknice > 0)
+                               sp->state[2] = 'N';
+                       else
+                               sp->state[2] = ' ';
+
+#ifdef PAGE_SHIFT
+                       sp->rss <<= (PAGE_SHIFT - 10);     /* 2**10 = 1kb */
 #else
-               if(n != 4)
+                       sp->rss *= (getpagesize() >> 10);     /* 2**10 = 1kb */
 #endif
-                       continue;
+               }
 
-               if (curstatus.rss == 0 && curstatus.state[0] != 'Z')
-                       curstatus.state[1] = 'W';
-               else
-                       curstatus.state[1] = ' ';
-               if (tasknice < 0)
-                       curstatus.state[2] = '<';
-               else if (tasknice > 0)
-                       curstatus.state[2] = 'N';
-               else
-                       curstatus.state[2] = ' ';
-
-               curstatus.rss <<= (PAGE_SHIFT - 10);     /* 2**10 = 1kb */
-
-               sprintf(status, "/proc/%d/cmdline", pid);
-               if(save_user_arg0) {
-                       if((fp = fopen(status, "r")) == NULL)
-                               continue;
-                       if((n=fread(buf, 1, sizeof(buf)-1, fp)) > 0) {
-                               if(buf[n-1]=='\n')
-                                       buf[--n] = 0;
-                               name = buf;
-                               while(n) {
-                                       if(((unsigned char)*name) < ' ')
-                                               *name = ' ';
-                                       name++;
-                                       n--;
-                               }
-                               *name = 0;
-                               if(buf[0])
-                                       curstatus.cmd = strdup(buf);
-                               /* if NULL it work true also */
+               if (flags & PSSCAN_CMD) {
+                       free(sp->cmd);
+                       sp->cmd = NULL;
+                       strcpy(filename_tail, "/cmdline");
+                       n = read_to_buf(filename, buf);
+                       if (n <= 0)
+                               break;
+                       if (buf[n-1] == '\n') {
+                               if (!--n)
+                                       break;
+                               buf[n] = '\0';
                        }
-                       fclose(fp);
+                       do {
+                               n--;
+                               if ((unsigned char)(buf[n]) < ' ')
+                                       buf[n] = ' ';
+                       } while (n);
+                       sp->cmd = strdup(buf);
                }
-               return memcpy(&ret_status, &curstatus, sizeof(procps_status_t));
+               break;
        }
+       return sp;
 }
+/* from kernel:
+       //             pid comm S ppid pgid sid tty_nr tty_pgrp flg
+       sprintf(buffer,"%d (%s) %c %d  %d   %d  %d     %d       %lu %lu \
+%lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \
+%lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu %llu\n",
+               task->pid,
+               tcomm,
+               state,
+               ppid,
+               pgid,
+               sid,
+               tty_nr,
+               tty_pgrp,
+               task->flags,
+               min_flt,
 
-/* END CODE */
-/*
-Local Variables:
-c-file-style: "linux"
-c-basic-offset: 4
-tab-width: 4
-End:
+               cmin_flt,
+               maj_flt,
+               cmaj_flt,
+               cputime_to_clock_t(utime),
+               cputime_to_clock_t(stime),
+               cputime_to_clock_t(cutime),
+               cputime_to_clock_t(cstime),
+               priority,
+               nice,
+               num_threads,
+               // 0,
+               start_time,
+               vsize,
+               mm ? get_mm_rss(mm) : 0,
+               rsslim,
+               mm ? mm->start_code : 0,
+               mm ? mm->end_code : 0,
+               mm ? mm->start_stack : 0,
+               esp,
+               eip,
+the rest is some obsolete cruft
 */