2002-05-02 06:26:05 +02:00
|
|
|
/* fhandler_proc.cc: fhandler for /proc virtual filesystem
|
|
|
|
|
|
|
|
Copyright 2002 Red Hat, Inc.
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/cygwin.h>
|
2002-05-12 03:37:48 +02:00
|
|
|
#include <ntdef.h>
|
2002-05-02 06:26:05 +02:00
|
|
|
#include "cygerrno.h"
|
|
|
|
#include "security.h"
|
|
|
|
#include "fhandler.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "pinfo.h"
|
2002-05-04 05:24:35 +02:00
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/utsname.h>
|
2002-08-31 18:37:51 +02:00
|
|
|
#include <sys/param.h>
|
2002-05-12 03:37:48 +02:00
|
|
|
#include "ntdll.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
#define _COMPILING_NEWLIB
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
/* offsets in proc_listing */
|
2002-05-12 03:37:48 +02:00
|
|
|
static const int PROC_LOADAVG = 2; // /proc/loadavg
|
|
|
|
static const int PROC_MEMINFO = 3; // /proc/meminfo
|
|
|
|
static const int PROC_REGISTRY = 4; // /proc/registry
|
|
|
|
static const int PROC_STAT = 5; // /proc/stat
|
|
|
|
static const int PROC_VERSION = 6; // /proc/version
|
|
|
|
static const int PROC_UPTIME = 7; // /proc/uptime
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
/* names of objects in /proc */
|
|
|
|
static const char *proc_listing[] = {
|
2002-05-04 05:24:35 +02:00
|
|
|
".",
|
|
|
|
"..",
|
2002-05-12 03:37:48 +02:00
|
|
|
"loadavg",
|
|
|
|
"meminfo",
|
2002-05-02 06:26:05 +02:00
|
|
|
"registry",
|
2002-05-12 03:37:48 +02:00
|
|
|
"stat",
|
2002-05-02 06:26:05 +02:00
|
|
|
"version",
|
|
|
|
"uptime",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2002-09-22 05:38:57 +02:00
|
|
|
static const int PROC_LINK_COUNT = (sizeof (proc_listing) / sizeof (const char *)) - 1;
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
/* FH_PROC in the table below means the file/directory is handles by
|
|
|
|
* fhandler_proc.
|
|
|
|
*/
|
2002-05-12 03:37:48 +02:00
|
|
|
static const DWORD proc_fhandlers[PROC_LINK_COUNT] = {
|
|
|
|
FH_PROC,
|
|
|
|
FH_PROC,
|
2002-05-04 05:24:35 +02:00
|
|
|
FH_PROC,
|
|
|
|
FH_PROC,
|
2002-05-02 06:26:05 +02:00
|
|
|
FH_REGISTRY,
|
|
|
|
FH_PROC,
|
2002-05-12 03:37:48 +02:00
|
|
|
FH_PROC,
|
2002-05-02 06:26:05 +02:00
|
|
|
FH_PROC
|
|
|
|
};
|
|
|
|
|
|
|
|
/* name of the /proc filesystem */
|
|
|
|
const char proc[] = "/proc";
|
|
|
|
const int proc_len = sizeof (proc) - 1;
|
|
|
|
|
2002-05-12 03:37:48 +02:00
|
|
|
static off_t format_proc_meminfo (char *destbuf, size_t maxsize);
|
|
|
|
static off_t format_proc_stat (char *destbuf, size_t maxsize);
|
|
|
|
static off_t format_proc_uptime (char *destbuf, size_t maxsize);
|
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
/* auxillary function that returns the fhandler associated with the given path
|
|
|
|
* this is where it would be nice to have pattern matching in C - polymorphism
|
|
|
|
* just doesn't cut it
|
|
|
|
*/
|
|
|
|
DWORD
|
|
|
|
fhandler_proc::get_proc_fhandler (const char *path)
|
|
|
|
{
|
|
|
|
debug_printf ("get_proc_fhandler(%s)", path);
|
|
|
|
path += proc_len;
|
|
|
|
/* Since this method is called from path_conv::check we can't rely on
|
|
|
|
* it being normalised and therefore the path may have runs of slashes
|
|
|
|
* in it.
|
|
|
|
*/
|
|
|
|
while (SLASH_P (*path))
|
|
|
|
path++;
|
|
|
|
|
|
|
|
/* Check if this is the root of the virtual filesystem (i.e. /proc). */
|
|
|
|
if (*path == 0)
|
|
|
|
return FH_PROC;
|
|
|
|
|
|
|
|
for (int i = 0; proc_listing[i]; i++)
|
|
|
|
{
|
|
|
|
if (path_prefix_p (proc_listing[i], path, strlen (proc_listing[i])))
|
2002-05-28 03:55:40 +02:00
|
|
|
return proc_fhandlers[i];
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
if (pinfo (atoi (path)))
|
|
|
|
return FH_PROCESS;
|
2002-05-04 05:24:35 +02:00
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
bool has_subdir = false;
|
|
|
|
while (*path)
|
|
|
|
if (SLASH_P (*path++))
|
|
|
|
{
|
|
|
|
has_subdir = true;
|
|
|
|
break;
|
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
if (has_subdir)
|
|
|
|
/* The user is trying to access a non-existent subdirectory of /proc. */
|
|
|
|
return FH_BAD;
|
|
|
|
else
|
|
|
|
/* Return FH_PROC so that we can return EROFS if the user is trying to create
|
|
|
|
a file. */
|
|
|
|
return FH_PROC;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns 0 if path doesn't exist, >0 if path is a directory,
|
|
|
|
* <0 if path is a file.
|
|
|
|
*/
|
|
|
|
int
|
2002-05-23 00:09:58 +02:00
|
|
|
fhandler_proc::exists ()
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2002-05-23 00:09:58 +02:00
|
|
|
const char *path = get_name ();
|
2002-05-02 06:26:05 +02:00
|
|
|
debug_printf ("exists (%s)", path);
|
|
|
|
path += proc_len;
|
|
|
|
if (*path == 0)
|
|
|
|
return 2;
|
|
|
|
for (int i = 0; proc_listing[i]; i++)
|
|
|
|
if (pathmatch (path + 1, proc_listing[i]))
|
|
|
|
return (proc_fhandlers[i] == FH_PROC) ? -1 : 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_proc::fhandler_proc ():
|
|
|
|
fhandler_virtual (FH_PROC)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_proc::fhandler_proc (DWORD devtype):
|
|
|
|
fhandler_virtual (devtype)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_proc::fstat (struct __stat64 *buf, path_conv *pc)
|
|
|
|
{
|
|
|
|
const char *path = get_name ();
|
2002-06-02 05:13:22 +02:00
|
|
|
debug_printf ("fstat (%s)", path);
|
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
path += proc_len;
|
|
|
|
(void) fhandler_base::fstat (buf, pc);
|
|
|
|
|
|
|
|
buf->st_mode &= ~_IFMT & NO_W;
|
|
|
|
|
|
|
|
if (!*path)
|
|
|
|
{
|
|
|
|
buf->st_nlink = PROC_LINK_COUNT;
|
|
|
|
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
path++;
|
|
|
|
for (int i = 0; proc_listing[i]; i++)
|
2002-05-28 03:55:40 +02:00
|
|
|
if (pathmatch (path, proc_listing[i]))
|
|
|
|
{
|
2002-05-02 06:26:05 +02:00
|
|
|
if (proc_fhandlers[i] != FH_PROC)
|
|
|
|
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buf->st_mode &= NO_X;
|
|
|
|
buf->st_mode |= S_IFREG;
|
|
|
|
}
|
2002-05-28 03:55:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct dirent *
|
|
|
|
fhandler_proc::readdir (DIR * dir)
|
|
|
|
{
|
|
|
|
if (dir->__d_position >= PROC_LINK_COUNT)
|
|
|
|
{
|
|
|
|
winpids pids;
|
|
|
|
int found = 0;
|
|
|
|
for (unsigned i = 0; i < pids.npids; i++)
|
2002-06-02 08:07:01 +02:00
|
|
|
if (found++ == dir->__d_position - PROC_LINK_COUNT)
|
|
|
|
{
|
|
|
|
__small_sprintf (dir->__d_dirent->d_name, "%d", pids[i]->pid);
|
|
|
|
dir->__d_position++;
|
|
|
|
return dir->__d_dirent;
|
|
|
|
}
|
2002-05-31 22:30:36 +02:00
|
|
|
set_errno (ENMFILE);
|
2002-05-02 06:26:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy (dir->__d_dirent->d_name, proc_listing[dir->__d_position++]);
|
|
|
|
syscall_printf ("%p = readdir (%p) (%s)", &dir->__d_dirent, dir,
|
2002-05-28 03:55:40 +02:00
|
|
|
dir->__d_dirent->d_name);
|
2002-05-02 06:26:05 +02:00
|
|
|
return dir->__d_dirent;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fhandler_proc::open (path_conv *pc, int flags, mode_t mode)
|
|
|
|
{
|
|
|
|
int proc_file_no = -1;
|
|
|
|
|
|
|
|
int res = fhandler_virtual::open (pc, flags, mode);
|
|
|
|
if (!res)
|
|
|
|
goto out;
|
|
|
|
|
2002-07-02 03:36:15 +02:00
|
|
|
set_nohandle (true);
|
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
const char *path;
|
|
|
|
|
2002-05-03 04:43:45 +02:00
|
|
|
path = get_name () + proc_len;
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
if (!*path)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EEXIST);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
else if (flags & O_WRONLY)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
flags |= O_DIROPEN;
|
|
|
|
goto success;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
proc_file_no = -1;
|
|
|
|
for (int i = 0; proc_listing[i]; i++)
|
|
|
|
if (path_prefix_p (proc_listing[i], path + 1, strlen (proc_listing[i])))
|
|
|
|
{
|
2002-05-28 03:55:40 +02:00
|
|
|
proc_file_no = i;
|
|
|
|
if (proc_fhandlers[i] != FH_PROC)
|
|
|
|
{
|
|
|
|
if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
|
|
|
{
|
|
|
|
set_errno (EEXIST);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (flags & O_WRONLY)
|
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flags |= O_DIROPEN;
|
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (proc_file_no == -1)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
if (flags & O_CREAT)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EROFS);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (ENOENT);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
if (flags & O_WRONLY)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
set_errno (EROFS);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-12 03:37:48 +02:00
|
|
|
|
|
|
|
fileid = proc_file_no;
|
2002-07-02 03:36:15 +02:00
|
|
|
if (!fill_filebuf ())
|
|
|
|
{
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-12 03:37:48 +02:00
|
|
|
|
|
|
|
if (flags & O_APPEND)
|
|
|
|
position = filesize;
|
|
|
|
else
|
|
|
|
position = 0;
|
|
|
|
|
|
|
|
success:
|
|
|
|
res = 1;
|
2002-07-01 21:03:26 +02:00
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2002-05-12 03:37:48 +02:00
|
|
|
set_open_status ();
|
|
|
|
out:
|
|
|
|
syscall_printf ("%d = fhandler_proc::open (%p, %d)", res, flags, mode);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-07-02 03:36:15 +02:00
|
|
|
bool
|
2002-05-12 03:37:48 +02:00
|
|
|
fhandler_proc::fill_filebuf ()
|
|
|
|
{
|
|
|
|
switch (fileid)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
case PROC_VERSION:
|
|
|
|
{
|
2002-05-28 03:55:40 +02:00
|
|
|
if (!filebuf)
|
|
|
|
{
|
2002-06-02 18:42:02 +02:00
|
|
|
struct utsname uts_name;
|
|
|
|
uname (&uts_name);
|
|
|
|
bufalloc = strlen (uts_name.sysname) + 1 + strlen (uts_name.release) +
|
|
|
|
1 + strlen (uts_name.version) + 2;
|
2002-10-30 22:05:18 +01:00
|
|
|
filebuf = (char *) realloc (filebuf, bufalloc);
|
2002-06-02 18:42:02 +02:00
|
|
|
filesize = __small_sprintf (filebuf, "%s %s %s\n", uts_name.sysname,
|
|
|
|
uts_name.release, uts_name.version);
|
2002-05-28 03:55:40 +02:00
|
|
|
}
|
|
|
|
break;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
case PROC_UPTIME:
|
|
|
|
{
|
2002-10-30 22:05:18 +01:00
|
|
|
filebuf = (char *) realloc (filebuf, bufalloc = 80);
|
2002-05-28 03:55:40 +02:00
|
|
|
filesize = format_proc_uptime (filebuf, bufalloc);
|
|
|
|
break;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
case PROC_STAT:
|
|
|
|
{
|
2002-10-30 22:05:18 +01:00
|
|
|
filebuf = (char *) realloc (filebuf, bufalloc = 2048);
|
2002-05-28 03:55:40 +02:00
|
|
|
filesize = format_proc_stat (filebuf, bufalloc);
|
|
|
|
break;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
case PROC_LOADAVG:
|
|
|
|
{
|
2002-05-28 03:55:40 +02:00
|
|
|
/*
|
|
|
|
* not really supported - Windows doesn't keep track of these values
|
|
|
|
* Windows 95/98/me does have the KERNEL/CPUUsage performance counter
|
|
|
|
* which is similar.
|
|
|
|
*/
|
2002-10-30 22:05:18 +01:00
|
|
|
filebuf = (char *) realloc (filebuf, bufalloc = 16);
|
2002-05-28 03:55:40 +02:00
|
|
|
filesize = __small_sprintf (filebuf, "%u.%02u %u.%02u %u.%02u\n",
|
|
|
|
0, 0, 0, 0, 0, 0);
|
|
|
|
break;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
case PROC_MEMINFO:
|
|
|
|
{
|
2002-10-30 22:05:18 +01:00
|
|
|
filebuf = (char *) realloc (filebuf, bufalloc = 2048);
|
2002-05-28 03:55:40 +02:00
|
|
|
filesize = format_proc_meminfo (filebuf, bufalloc);
|
|
|
|
break;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
}
|
2002-07-02 03:36:15 +02:00
|
|
|
return true;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
|
2002-05-12 03:37:48 +02:00
|
|
|
static
|
|
|
|
off_t
|
|
|
|
format_proc_meminfo (char *destbuf, size_t maxsize)
|
|
|
|
{
|
|
|
|
unsigned long mem_total = 0UL, mem_free = 0UL, swap_total = 0UL,
|
2002-05-28 03:55:40 +02:00
|
|
|
swap_free = 0UL;
|
2002-05-12 03:37:48 +02:00
|
|
|
MEMORYSTATUS memory_status;
|
|
|
|
GlobalMemoryStatus (&memory_status);
|
|
|
|
mem_total = memory_status.dwTotalPhys;
|
|
|
|
mem_free = memory_status.dwAvailPhys;
|
|
|
|
swap_total = memory_status.dwTotalPageFile;
|
|
|
|
swap_free = memory_status.dwAvailPageFile;
|
|
|
|
return __small_sprintf (destbuf, " total: used: free:\n"
|
2002-05-28 03:55:40 +02:00
|
|
|
"Mem: %10lu %10lu %10lu\n"
|
|
|
|
"Swap: %10lu %10lu %10lu\n"
|
|
|
|
"MemTotal: %10lu kB\n"
|
|
|
|
"MemFree: %10lu kB\n"
|
|
|
|
"MemShared: 0 kB\n"
|
|
|
|
"HighTotal: 0 kB\n"
|
|
|
|
"HighFree: 0 kB\n"
|
|
|
|
"LowTotal: %10lu kB\n"
|
|
|
|
"LowFree: %10lu kB\n"
|
|
|
|
"SwapTotal: %10lu kB\n"
|
|
|
|
"SwapFree: %10lu kB\n",
|
|
|
|
mem_total, mem_total - mem_free, mem_free,
|
|
|
|
swap_total, swap_total - swap_free, swap_free,
|
|
|
|
mem_total >> 10, mem_free >> 10,
|
|
|
|
mem_total >> 10, mem_free >> 10,
|
|
|
|
swap_total >> 10, swap_free >> 10);
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
off_t
|
|
|
|
format_proc_uptime (char *destbuf, size_t maxsize)
|
|
|
|
{
|
|
|
|
unsigned long long uptime = 0ULL, idle_time = 0ULL;
|
|
|
|
SYSTEM_PROCESSOR_TIMES spt;
|
|
|
|
|
2002-05-30 09:45:30 +02:00
|
|
|
NTSTATUS ret = NtQuerySystemInformation (SystemProcessorTimes, (PVOID) &spt,
|
2002-05-12 03:37:48 +02:00
|
|
|
sizeof spt, NULL);
|
|
|
|
if (!ret && GetLastError () == ERROR_PROC_NOT_FOUND)
|
2002-09-22 05:38:57 +02:00
|
|
|
uptime = GetTickCount () / 10;
|
2002-05-12 03:37:48 +02:00
|
|
|
else if (ret != STATUS_SUCCESS)
|
|
|
|
{
|
|
|
|
__seterrno_from_win_error (RtlNtStatusToDosError (ret));
|
|
|
|
debug_printf("NtQuerySystemInformation: ret = %d, "
|
|
|
|
"Dos(ret) = %d",
|
|
|
|
ret, RtlNtStatusToDosError (ret));
|
|
|
|
return 0;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
|
|
|
idle_time = spt.IdleTime.QuadPart / 100000ULL;
|
2002-08-31 18:37:51 +02:00
|
|
|
uptime = (spt.KernelTime.QuadPart +
|
2002-09-30 17:17:44 +02:00
|
|
|
spt.UserTime.QuadPart) / 100000ULL;
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
|
2002-05-12 03:37:48 +02:00
|
|
|
return __small_sprintf (destbuf, "%U.%02u %U.%02u\n",
|
2002-05-28 03:55:40 +02:00
|
|
|
uptime / 100, long (uptime % 100),
|
|
|
|
idle_time / 100, long (idle_time % 100));
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
off_t
|
|
|
|
format_proc_stat (char *destbuf, size_t maxsize)
|
|
|
|
{
|
|
|
|
unsigned long long user_time = 0ULL, kernel_time = 0ULL, idle_time = 0ULL;
|
|
|
|
unsigned long pages_in = 0UL, pages_out = 0UL, interrupt_count = 0UL,
|
2002-05-28 03:55:40 +02:00
|
|
|
context_switches = 0UL, swap_in = 0UL, swap_out = 0UL;
|
2002-05-12 03:37:48 +02:00
|
|
|
time_t boot_time = 0;
|
|
|
|
|
|
|
|
if (wincap.is_winnt ())
|
|
|
|
{
|
|
|
|
NTSTATUS ret;
|
|
|
|
SYSTEM_PROCESSOR_TIMES spt;
|
|
|
|
SYSTEM_PERFORMANCE_INFORMATION spi;
|
|
|
|
SYSTEM_TIME_OF_DAY_INFORMATION stodi;
|
2002-05-30 09:45:30 +02:00
|
|
|
ret = NtQuerySystemInformation (SystemProcessorTimes,
|
2002-05-28 03:55:40 +02:00
|
|
|
(PVOID) &spt,
|
|
|
|
sizeof spt, NULL);
|
2002-05-12 03:37:48 +02:00
|
|
|
if (ret == STATUS_SUCCESS)
|
2002-05-30 09:45:30 +02:00
|
|
|
ret = NtQuerySystemInformation (SystemPerformanceInformation,
|
2002-05-28 03:55:40 +02:00
|
|
|
(PVOID) &spi,
|
|
|
|
sizeof spi, NULL);
|
2002-05-12 03:37:48 +02:00
|
|
|
if (ret == STATUS_SUCCESS)
|
2002-05-30 09:45:30 +02:00
|
|
|
ret = NtQuerySystemInformation (SystemTimeOfDayInformation,
|
2002-05-28 03:55:40 +02:00
|
|
|
(PVOID) &stodi,
|
|
|
|
sizeof stodi, NULL);
|
2002-05-12 03:37:48 +02:00
|
|
|
if (ret != STATUS_SUCCESS)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
__seterrno_from_win_error (RtlNtStatusToDosError (ret));
|
|
|
|
debug_printf("NtQuerySystemInformation: ret = %d, "
|
|
|
|
"Dos(ret) = %d",
|
|
|
|
ret, RtlNtStatusToDosError (ret));
|
|
|
|
return 0;
|
|
|
|
}
|
2002-08-31 18:37:51 +02:00
|
|
|
kernel_time = (spt.KernelTime.QuadPart - spt.IdleTime.QuadPart) * HZ / 10000000ULL;
|
|
|
|
user_time = spt.UserTime.QuadPart * HZ / 10000000ULL;
|
|
|
|
idle_time = spt.IdleTime.QuadPart * HZ / 10000000ULL;
|
2002-05-12 03:37:48 +02:00
|
|
|
interrupt_count = spt.InterruptCount;
|
|
|
|
pages_in = spi.PagesRead;
|
|
|
|
pages_out = spi.PagefilePagesWritten + spi.MappedFilePagesWritten;
|
|
|
|
/*
|
|
|
|
* Note: there is no distinction made in this structure between pages
|
|
|
|
* read from the page file and pages read from mapped files, but there
|
|
|
|
* is such a distinction made when it comes to writing. Goodness knows
|
|
|
|
* why. The value of swap_in, then, will obviously be wrong but its our
|
|
|
|
* best guess.
|
|
|
|
*/
|
|
|
|
swap_in = spi.PagesRead;
|
|
|
|
swap_out = spi.PagefilePagesWritten;
|
|
|
|
context_switches = spi.ContextSwitches;
|
|
|
|
boot_time = to_time_t ((FILETIME *) &stodi.BootTime.QuadPart);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* else
|
|
|
|
* {
|
|
|
|
* There are only two relevant performance counters on Windows 95/98/me,
|
|
|
|
* VMM/cPageIns and VMM/cPageOuts. The extra effort needed to read these
|
|
|
|
* counters is by no means worth it.
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
return __small_sprintf (destbuf, "cpu %U %U %U %U\n"
|
2002-05-28 03:55:40 +02:00
|
|
|
"page %u %u\n"
|
|
|
|
"swap %u %u\n"
|
|
|
|
"intr %u\n"
|
|
|
|
"ctxt %u\n"
|
|
|
|
"btime %u\n",
|
|
|
|
user_time, 0ULL,
|
|
|
|
kernel_time, idle_time,
|
|
|
|
pages_in, pages_out,
|
|
|
|
swap_in, swap_out,
|
|
|
|
interrupt_count,
|
|
|
|
context_switches,
|
|
|
|
boot_time);
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|