1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
|
/*
* Copyright (c) 2009, Jay Loden, Giampaolo Rodola'. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Helper functions related to fetching process information. Used by
* _psutil_windows module methods.
*/
#include <Python.h>
#include <windows.h>
#include "../../arch/all/init.h"
#ifndef _WIN64
typedef NTSTATUS (NTAPI *__NtQueryInformationProcess)(
HANDLE ProcessHandle,
DWORD ProcessInformationClass,
PVOID ProcessInformation,
DWORD ProcessInformationLength,
PDWORD ReturnLength);
#endif
#define PSUTIL_FIRST_PROCESS(Processes) ( \
(PSYSTEM_PROCESS_INFORMATION)(Processes))
#define PSUTIL_NEXT_PROCESS(Process) ( \
((PSYSTEM_PROCESS_INFORMATION)(Process))->NextEntryOffset ? \
(PSYSTEM_PROCESS_INFORMATION)((PCHAR)(Process) + \
((PSYSTEM_PROCESS_INFORMATION)(Process))->NextEntryOffset) : NULL)
/*
* Given a pointer into a process's memory, figure out how much
* data can be read from it.
*/
static int
psutil_get_process_region_size(HANDLE hProcess, LPCVOID src, SIZE_T *psize) {
MEMORY_BASIC_INFORMATION info;
if (!VirtualQueryEx(hProcess, src, &info, sizeof(info))) {
psutil_PyErr_SetFromOSErrnoWithSyscall("VirtualQueryEx");
return -1;
}
*psize = info.RegionSize - ((char*)src - (char*)info.BaseAddress);
return 0;
}
enum psutil_process_data_kind {
KIND_CMDLINE,
KIND_CWD,
KIND_ENVIRON,
};
static void
psutil_convert_winerr(ULONG err, char* syscall) {
char fullmsg[8192];
if (err == ERROR_NOACCESS) {
sprintf(fullmsg, "%s -> ERROR_NOACCESS", syscall);
psutil_debug(fullmsg);
AccessDenied(fullmsg);
}
else {
psutil_PyErr_SetFromOSErrnoWithSyscall(syscall);
}
}
static void
psutil_convert_ntstatus_err(NTSTATUS status, char* syscall) {
ULONG err;
if (NT_NTWIN32(status))
err = WIN32_FROM_NTSTATUS(status);
else
err = RtlNtStatusToDosErrorNoTeb(status);
psutil_convert_winerr(err, syscall);
}
static void
psutil_giveup_with_ad(NTSTATUS status, char* syscall) {
ULONG err;
char fullmsg[8192];
if (NT_NTWIN32(status))
err = WIN32_FROM_NTSTATUS(status);
else
err = RtlNtStatusToDosErrorNoTeb(status);
sprintf(fullmsg, "%s -> %lu (%s)", syscall, err, strerror(err));
psutil_debug(fullmsg);
AccessDenied(fullmsg);
}
/*
* Get data from the process with the given pid. The data is returned
* in the pdata output member as a nul terminated string which must be
* freed on success.
* On success 0 is returned. On error the output parameter is not touched,
* -1 is returned, and an appropriate Python exception is set.
*/
static int
psutil_get_process_data(DWORD pid,
enum psutil_process_data_kind kind,
WCHAR **pdata,
SIZE_T *psize) {
/* This function is quite complex because there are several cases to be
considered:
Two cases are really simple: we (i.e. the python interpreter) and the
target process are both 32 bit or both 64 bit. In that case the memory
layout of the structures matches up and all is well.
When we are 64 bit and the target process is 32 bit we need to use
custom 32 bit versions of the structures.
When we are 32 bit and the target process is 64 bit we need to use
custom 64 bit version of the structures. Also we need to use separate
Wow64 functions to get the information.
A few helper structs are defined above so that the compiler can handle
calculating the correct offsets.
Additional help also came from the following sources:
https://github.com/kohsuke/winp and
http://wj32.org/wp/2009/01/24/howto-get-the-command-line-of-processes/
http://stackoverflow.com/a/14012919
http://www.drdobbs.com/embracing-64-bit-windows/184401966
*/
SIZE_T size = 0;
HANDLE hProcess = NULL;
LPCVOID src;
WCHAR *buffer = NULL;
#ifdef _WIN64
LPVOID ppeb32 = NULL;
#else
static __NtQueryInformationProcess NtWow64QueryInformationProcess64 = NULL;
static _NtWow64ReadVirtualMemory64 NtWow64ReadVirtualMemory64 = NULL;
PVOID64 src64;
BOOL weAreWow64;
BOOL theyAreWow64;
#endif
DWORD access = PROCESS_QUERY_INFORMATION | PROCESS_VM_READ;
NTSTATUS status;
hProcess = psutil_handle_from_pid(pid, access);
if (hProcess == NULL)
return -1;
#ifdef _WIN64
/* 64 bit case. Check if the target is a 32 bit process running in WoW64
* mode. */
status = NtQueryInformationProcess(
hProcess,
ProcessWow64Information,
&ppeb32,
sizeof(LPVOID),
NULL);
if (!NT_SUCCESS(status)) {
psutil_SetFromNTStatusErr(
status, "NtQueryInformationProcess(ProcessWow64Information)");
goto error;
}
if (ppeb32 != NULL) {
/* We are 64 bit. Target process is 32 bit running in WoW64 mode. */
PEB32 peb32;
RTL_USER_PROCESS_PARAMETERS32 procParameters32;
// read PEB
if (!ReadProcessMemory(hProcess, ppeb32, &peb32, sizeof(peb32), NULL)) {
// May fail with ERROR_PARTIAL_COPY, see:
// https://github.com/giampaolo/psutil/issues/875
psutil_convert_winerr(GetLastError(), "ReadProcessMemory");
goto error;
}
// read process parameters
if (!ReadProcessMemory(hProcess,
UlongToPtr(peb32.ProcessParameters),
&procParameters32,
sizeof(procParameters32),
NULL))
{
// May fail with ERROR_PARTIAL_COPY, see:
// https://github.com/giampaolo/psutil/issues/875
psutil_convert_winerr(GetLastError(), "ReadProcessMemory");
goto error;
}
switch (kind) {
case KIND_CMDLINE:
src = UlongToPtr(procParameters32.CommandLine.Buffer),
size = procParameters32.CommandLine.Length;
break;
case KIND_CWD:
src = UlongToPtr(procParameters32.CurrentDirectoryPath.Buffer);
size = procParameters32.CurrentDirectoryPath.Length;
break;
case KIND_ENVIRON:
src = UlongToPtr(procParameters32.env);
break;
}
} else
#else // #ifdef _WIN64
// 32 bit process. In here we may run into a lot of errors, e.g.:
// * [Error 0] The operation completed successfully
// (originated from NtWow64ReadVirtualMemory64)
// * [Error 998] Invalid access to memory location:
// (originated from NtWow64ReadVirtualMemory64)
// Refs:
// * https://github.com/giampaolo/psutil/issues/1839
// * https://github.com/giampaolo/psutil/pull/1866
// Since the following code is quite hackish and fails unpredictably,
// in case of any error from NtWow64* APIs we raise AccessDenied.
// 32 bit case. Check if the target is also 32 bit.
if (!IsWow64Process(GetCurrentProcess(), &weAreWow64) ||
!IsWow64Process(hProcess, &theyAreWow64)) {
psutil_PyErr_SetFromOSErrnoWithSyscall("IsWow64Process");
goto error;
}
if (weAreWow64 && !theyAreWow64) {
/* We are 32 bit running in WoW64 mode. Target process is 64 bit. */
PROCESS_BASIC_INFORMATION64 pbi64;
PEB64 peb64;
RTL_USER_PROCESS_PARAMETERS64 procParameters64;
if (NtWow64QueryInformationProcess64 == NULL) {
NtWow64QueryInformationProcess64 = \
psutil_GetProcAddressFromLib(
"ntdll.dll", "NtWow64QueryInformationProcess64");
if (NtWow64QueryInformationProcess64 == NULL) {
PyErr_Clear();
AccessDenied("can't query 64-bit process in 32-bit-WoW mode");
goto error;
}
}
if (NtWow64ReadVirtualMemory64 == NULL) {
NtWow64ReadVirtualMemory64 = \
psutil_GetProcAddressFromLib(
"ntdll.dll", "NtWow64ReadVirtualMemory64");
if (NtWow64ReadVirtualMemory64 == NULL) {
PyErr_Clear();
AccessDenied("can't query 64-bit process in 32-bit-WoW mode");
goto error;
}
}
status = NtWow64QueryInformationProcess64(
hProcess,
ProcessBasicInformation,
&pbi64,
sizeof(pbi64),
NULL);
if (!NT_SUCCESS(status)) {
/*
psutil_convert_ntstatus_err(
status,
"NtWow64QueryInformationProcess64(ProcessBasicInformation)");
*/
psutil_giveup_with_ad(
status,
"NtWow64QueryInformationProcess64(ProcessBasicInformation)");
goto error;
}
// read peb
status = NtWow64ReadVirtualMemory64(
hProcess,
pbi64.PebBaseAddress,
&peb64,
sizeof(peb64),
NULL);
if (!NT_SUCCESS(status)) {
/*
psutil_convert_ntstatus_err(
status, "NtWow64ReadVirtualMemory64(pbi64.PebBaseAddress)");
*/
psutil_giveup_with_ad(
status,
"NtWow64ReadVirtualMemory64(pbi64.PebBaseAddress)");
goto error;
}
// read process parameters
status = NtWow64ReadVirtualMemory64(
hProcess,
peb64.ProcessParameters,
&procParameters64,
sizeof(procParameters64),
NULL);
if (!NT_SUCCESS(status)) {
/*
psutil_convert_ntstatus_err(
status, "NtWow64ReadVirtualMemory64(peb64.ProcessParameters)");
*/
psutil_giveup_with_ad(
status,
"NtWow64ReadVirtualMemory64(peb64.ProcessParameters)");
goto error;
}
switch (kind) {
case KIND_CMDLINE:
src64 = procParameters64.CommandLine.Buffer;
size = procParameters64.CommandLine.Length;
break;
case KIND_CWD:
src64 = procParameters64.CurrentDirectoryPath.Buffer,
size = procParameters64.CurrentDirectoryPath.Length;
break;
case KIND_ENVIRON:
src64 = procParameters64.env;
break;
}
} else
#endif
/* Target process is of the same bitness as us. */
{
PROCESS_BASIC_INFORMATION pbi;
PEB_ peb;
RTL_USER_PROCESS_PARAMETERS_ procParameters;
status = NtQueryInformationProcess(
hProcess,
ProcessBasicInformation,
&pbi,
sizeof(pbi),
NULL);
if (!NT_SUCCESS(status)) {
psutil_SetFromNTStatusErr(
status, "NtQueryInformationProcess(ProcessBasicInformation)");
goto error;
}
// read peb
if (!ReadProcessMemory(hProcess,
pbi.PebBaseAddress,
&peb,
sizeof(peb),
NULL))
{
// May fail with ERROR_PARTIAL_COPY, see:
// https://github.com/giampaolo/psutil/issues/875
psutil_convert_winerr(GetLastError(), "ReadProcessMemory");
goto error;
}
// read process parameters
if (!ReadProcessMemory(hProcess,
peb.ProcessParameters,
&procParameters,
sizeof(procParameters),
NULL))
{
// May fail with ERROR_PARTIAL_COPY, see:
// https://github.com/giampaolo/psutil/issues/875
psutil_convert_winerr(GetLastError(), "ReadProcessMemory");
goto error;
}
switch (kind) {
case KIND_CMDLINE:
src = procParameters.CommandLine.Buffer;
size = procParameters.CommandLine.Length;
break;
case KIND_CWD:
src = procParameters.CurrentDirectoryPath.Buffer;
size = procParameters.CurrentDirectoryPath.Length;
break;
case KIND_ENVIRON:
src = procParameters.env;
break;
}
}
if (kind == KIND_ENVIRON) {
#ifndef _WIN64
if (weAreWow64 && !theyAreWow64) {
AccessDenied("can't query 64-bit process in 32-bit-WoW mode");
goto error;
}
else
#endif
if (psutil_get_process_region_size(hProcess, src, &size) != 0)
goto error;
}
buffer = calloc(size + 2, 1);
if (buffer == NULL) {
PyErr_NoMemory();
goto error;
}
#ifndef _WIN64
if (weAreWow64 && !theyAreWow64) {
status = NtWow64ReadVirtualMemory64(
hProcess,
src64,
buffer,
size,
NULL);
if (!NT_SUCCESS(status)) {
// psutil_convert_ntstatus_err(status, "NtWow64ReadVirtualMemory64");
psutil_giveup_with_ad(status, "NtWow64ReadVirtualMemory64");
goto error;
}
} else
#endif
if (!ReadProcessMemory(hProcess, src, buffer, size, NULL)) {
// May fail with ERROR_PARTIAL_COPY, see:
// https://github.com/giampaolo/psutil/issues/875
psutil_convert_winerr(GetLastError(), "ReadProcessMemory");
goto error;
}
CloseHandle(hProcess);
*pdata = buffer;
*psize = size;
return 0;
error:
if (hProcess != NULL)
CloseHandle(hProcess);
if (buffer != NULL)
free(buffer);
return -1;
}
/*
* Get process cmdline by using NtQueryInformationProcess. This is a
* method alternative to PEB which is less likely to result in
* AccessDenied. Requires Windows 8.1+.
*/
static int
psutil_cmdline_query_proc(DWORD pid, WCHAR **pdata, SIZE_T *psize) {
HANDLE hProcess = NULL;
ULONG bufLen = 0;
NTSTATUS status;
char * buffer = NULL;
WCHAR * bufWchar = NULL;
PUNICODE_STRING tmp = NULL;
size_t size;
int ProcessCommandLineInformation = 60;
if (PSUTIL_WINVER < PSUTIL_WINDOWS_8_1) {
PyErr_SetString(
PyExc_RuntimeError, "requires Windows 8.1+");
goto error;
}
hProcess = psutil_handle_from_pid(pid, PROCESS_QUERY_LIMITED_INFORMATION);
if (hProcess == NULL)
goto error;
// get the right buf size
status = NtQueryInformationProcess(
hProcess,
ProcessCommandLineInformation,
NULL,
0,
&bufLen);
// https://github.com/giampaolo/psutil/issues/1501
if (status == STATUS_NOT_FOUND) {
AccessDenied("NtQueryInformationProcess(ProcessBasicInformation) -> "
"STATUS_NOT_FOUND");
goto error;
}
if (status != STATUS_BUFFER_OVERFLOW && \
status != STATUS_BUFFER_TOO_SMALL && \
status != STATUS_INFO_LENGTH_MISMATCH) {
psutil_SetFromNTStatusErr(
status, "NtQueryInformationProcess(ProcessBasicInformation)");
goto error;
}
// allocate memory
buffer = calloc(bufLen, 1);
if (buffer == NULL) {
PyErr_NoMemory();
goto error;
}
// get the cmdline
status = NtQueryInformationProcess(
hProcess,
ProcessCommandLineInformation,
buffer,
bufLen,
&bufLen
);
if (!NT_SUCCESS(status)) {
psutil_SetFromNTStatusErr(
status, "NtQueryInformationProcess(ProcessCommandLineInformation)");
goto error;
}
// build the string
tmp = (PUNICODE_STRING)buffer;
size = wcslen(tmp->Buffer) + 1;
bufWchar = (WCHAR *)calloc(size, sizeof(WCHAR));
if (bufWchar == NULL) {
PyErr_NoMemory();
goto error;
}
wcscpy_s(bufWchar, size, tmp->Buffer);
*pdata = bufWchar;
*psize = size * sizeof(WCHAR);
free(buffer);
CloseHandle(hProcess);
return 0;
error:
if (buffer != NULL)
free(buffer);
if (hProcess != NULL)
CloseHandle(hProcess);
return -1;
}
/*
* Return a Python list representing the arguments for the process
* with given pid or NULL on error.
*/
PyObject *
psutil_proc_cmdline(PyObject *self, PyObject *args, PyObject *kwdict) {
WCHAR *data = NULL;
LPWSTR *szArglist = NULL;
SIZE_T size;
int nArgs;
int i;
int func_ret;
DWORD pid;
int pid_return;
int use_peb;
// TODO: shouldn't this be decref-ed in case of error on
// PyArg_ParseTuple?
PyObject *py_usepeb = Py_True;
PyObject *py_retlist = NULL;
PyObject *py_unicode = NULL;
static char *keywords[] = {"pid", "use_peb", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kwdict, _Py_PARSE_PID "|O",
keywords, &pid, &py_usepeb))
{
return NULL;
}
if ((pid == 0) || (pid == 4))
return Py_BuildValue("[]");
pid_return = psutil_pid_is_running(pid);
if (pid_return == 0)
return NoSuchProcess("psutil_pid_is_running -> 0");
if (pid_return == -1)
return NULL;
use_peb = (py_usepeb == Py_True) ? 1 : 0;
/*
Reading the PEB to get the cmdline seem to be the best method if
somebody has tampered with the parameters after creating the process.
For instance, create a process as suspended, patch the command line
in its PEB and unfreeze it. It requires more privileges than
NtQueryInformationProcess though (the fallback):
- https://github.com/giampaolo/psutil/pull/1398
- https://blog.xpnsec.com/how-to-argue-like-cobalt-strike/
*/
if (use_peb == 1)
func_ret = psutil_get_process_data(pid, KIND_CMDLINE, &data, &size);
else
func_ret = psutil_cmdline_query_proc(pid, &data, &size);
if (func_ret != 0)
goto error;
// attempt to parse the command line using Win32 API
szArglist = CommandLineToArgvW(data, &nArgs);
if (szArglist == NULL) {
psutil_PyErr_SetFromOSErrnoWithSyscall("CommandLineToArgvW");
goto error;
}
// arglist parsed as array of UNICODE_STRING, so convert each to
// Python string object and add to arg list
py_retlist = PyList_New(nArgs);
if (py_retlist == NULL)
goto error;
for (i = 0; i < nArgs; i++) {
py_unicode = PyUnicode_FromWideChar(szArglist[i],
wcslen(szArglist[i]));
if (py_unicode == NULL)
goto error;
PyList_SetItem(py_retlist, i, py_unicode);
py_unicode = NULL;
}
LocalFree(szArglist);
free(data);
return py_retlist;
error:
if (szArglist != NULL)
LocalFree(szArglist);
if (data != NULL)
free(data);
Py_XDECREF(py_unicode);
Py_XDECREF(py_retlist);
return NULL;
}
PyObject *
psutil_proc_cwd(PyObject *self, PyObject *args) {
DWORD pid;
PyObject *ret = NULL;
WCHAR *data = NULL;
SIZE_T size;
int pid_return;
if (! PyArg_ParseTuple(args, _Py_PARSE_PID, &pid))
return NULL;
pid_return = psutil_pid_is_running(pid);
if (pid_return == 0)
return NoSuchProcess("psutil_pid_is_running -> 0");
if (pid_return == -1)
return NULL;
if (psutil_get_process_data(pid, KIND_CWD, &data, &size) != 0)
goto out;
// convert wchar array to a Python unicode string
ret = PyUnicode_FromWideChar(data, wcslen(data));
out:
if (data != NULL)
free(data);
return ret;
}
/*
* returns a Python string containing the environment variable data for the
* process with given pid or NULL on error.
*/
PyObject *
psutil_proc_environ(PyObject *self, PyObject *args) {
DWORD pid;
WCHAR *data = NULL;
SIZE_T size;
int pid_return;
PyObject *ret = NULL;
if (! PyArg_ParseTuple(args, _Py_PARSE_PID, &pid))
return NULL;
if ((pid == 0) || (pid == 4))
return Py_BuildValue("s", "");
pid_return = psutil_pid_is_running(pid);
if (pid_return == 0)
return NoSuchProcess("psutil_pid_is_running -> 0");
if (pid_return == -1)
return NULL;
if (psutil_get_process_data(pid, KIND_ENVIRON, &data, &size) != 0)
goto out;
// convert wchar array to a Python unicode string
ret = PyUnicode_FromWideChar(data, size / 2);
out:
if (data != NULL)
free(data);
return ret;
}
/*
* Given a process PID and a PSYSTEM_PROCESS_INFORMATION structure
* fills the structure with various process information in one shot
* by using NtQuerySystemInformation.
* We use this as a fallback when faster functions fail with access
* denied. This is slower because it iterates over all processes
* but it doesn't require any privilege (also work for PID 0).
* On success return 1, else 0 with Python exception already set.
*/
int
psutil_get_proc_info(DWORD pid, PSYSTEM_PROCESS_INFORMATION *retProcess,
PVOID *retBuffer) {
static ULONG initialBufferSize = 0x4000;
NTSTATUS status;
PVOID buffer;
ULONG bufferSize;
PSYSTEM_PROCESS_INFORMATION process;
bufferSize = initialBufferSize;
buffer = malloc(bufferSize);
if (buffer == NULL) {
PyErr_NoMemory();
goto error;
}
while (TRUE) {
status = NtQuerySystemInformation(
SystemProcessInformation,
buffer,
bufferSize,
&bufferSize);
if (status == STATUS_BUFFER_TOO_SMALL ||
status == STATUS_INFO_LENGTH_MISMATCH)
{
free(buffer);
buffer = malloc(bufferSize);
if (buffer == NULL) {
PyErr_NoMemory();
goto error;
}
}
else {
break;
}
}
if (! NT_SUCCESS(status)) {
psutil_SetFromNTStatusErr(
status, "NtQuerySystemInformation(SystemProcessInformation)");
goto error;
}
if (bufferSize <= 0x20000)
initialBufferSize = bufferSize;
process = PSUTIL_FIRST_PROCESS(buffer);
do {
if ((ULONG_PTR)process->UniqueProcessId == pid) {
*retProcess = process;
*retBuffer = buffer;
return 1;
}
} while ((process = PSUTIL_NEXT_PROCESS(process)));
NoSuchProcess("NtQuerySystemInformation (no PID found)");
goto error;
error:
if (buffer != NULL)
free(buffer);
return 0;
}
/*
* Get various process information by using NtQuerySystemInformation.
* We use this as a fallback when faster functions fail with access
* denied. This is slower because it iterates over all processes.
* Returned tuple includes the following process info:
*
* - num_threads()
* - ctx_switches()
* - num_handles() (fallback)
* - cpu_times() (fallback)
* - create_time() (fallback)
* - io_counters() (fallback)
* - memory_info() (fallback)
*/
PyObject *
psutil_proc_info(PyObject *self, PyObject *args) {
DWORD pid;
PSYSTEM_PROCESS_INFORMATION process;
PVOID buffer;
ULONG i;
ULONG ctx_switches = 0;
double user_time;
double kernel_time;
double create_time;
PyObject *py_retlist;
if (! PyArg_ParseTuple(args, _Py_PARSE_PID, &pid))
return NULL;
if (! psutil_get_proc_info(pid, &process, &buffer))
return NULL;
for (i = 0; i < process->NumberOfThreads; i++)
ctx_switches += process->Threads[i].ContextSwitches;
user_time = (double)process->UserTime.HighPart * HI_T + \
(double)process->UserTime.LowPart * LO_T;
kernel_time = (double)process->KernelTime.HighPart * HI_T + \
(double)process->KernelTime.LowPart * LO_T;
// Convert the LARGE_INTEGER union to a Unix time.
// It's the best I could find by googling and borrowing code here
// and there. The time returned has a precision of 1 second.
if (0 == pid || 4 == pid) {
// the python module will translate this into BOOT_TIME later
create_time = 0;
}
else {
create_time = psutil_LargeIntegerToUnixTime(process->CreateTime);
}
py_retlist = Py_BuildValue(
#if defined(_WIN64)
"kkdddkKKKKKK" "kKKKKKKKKK",
#else
"kkdddkKKKKKK" "kIIIIIIIII",
#endif
process->HandleCount, // num handles
ctx_switches, // num ctx switches
user_time, // cpu user time
kernel_time, // cpu kernel time
create_time, // create time
process->NumberOfThreads, // num threads
// IO counters
process->ReadOperationCount.QuadPart, // io rcount
process->WriteOperationCount.QuadPart, // io wcount
process->ReadTransferCount.QuadPart, // io rbytes
process->WriteTransferCount.QuadPart, // io wbytes
process->OtherOperationCount.QuadPart, // io others count
process->OtherTransferCount.QuadPart, // io others bytes
// memory
process->PageFaultCount, // num page faults
process->PeakWorkingSetSize, // peak wset
process->WorkingSetSize, // wset
process->QuotaPeakPagedPoolUsage, // peak paged pool
process->QuotaPagedPoolUsage, // paged pool
process->QuotaPeakNonPagedPoolUsage, // peak non paged pool
process->QuotaNonPagedPoolUsage, // non paged pool
process->PagefileUsage, // pagefile
process->PeakPagefileUsage, // peak pagefile
process->PrivatePageCount // private
);
free(buffer);
return py_retlist;
}
|