PROCESS.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:11k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1993  Microsoft Corporation
  3. Module Name:
  4.     process.c
  5. Abstract:
  6.     This code provides access to the task list.
  7. Author:
  8.     Wesley Witt (wesw) 16-June-1993
  9. Environment:
  10.     User Mode
  11. --*/
  12. #include <windows.h>
  13. #include <winperf.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <stdlib.h>
  17. #include "drwatson.h"
  18. #include "proto.h"
  19. #include "messages.h"
  20. //
  21. // task list structure returned from GetTaskList()
  22. //
  23. typedef struct _TASK_LIST {
  24.     DWORD   dwProcessId;
  25.     char    ProcessName[MAX_PATH];
  26. } TASK_LIST, *PTASK_LIST;
  27. //
  28. // defines
  29. //
  30. #define INITIAL_SIZE        51200
  31. #define EXTEND_SIZE         25600
  32. #define REGKEY_PERF         "software\microsoft\windows nt\currentversion\perflib"
  33. #define REGSUBKEY_COUNTERS  "Counters"
  34. #define PROCESS_COUNTER     "process"
  35. #define PROCESSID_COUNTER   "id process"
  36. #define UNKNOWN_TASK        "unknown"
  37. //
  38. // prototypes
  39. //
  40. PTASK_LIST GetTaskList( LPLONG pNumTasks );
  41. void
  42. LogTaskList( void )
  43. /*++
  44. Routine Description:
  45.     This function gets the current task list and logs the process id &
  46.     process name to the log file.
  47. Arguments:
  48.     None.
  49. Return Value:
  50.     None.
  51. --*/
  52. {
  53.     PTASK_LIST   pTask;
  54.     PTASK_LIST   pTaskBegin;
  55.     LONG         NumTasks;
  56.     lprintf( MSG_TASK_LIST );
  57.     pTask = pTaskBegin = GetTaskList( &NumTasks );
  58.     if (pTask == NULL) {
  59.         printf( "ERROR: could not get the task listn" );
  60.     }
  61.     while (NumTasks--) {
  62.         lprintfs("%4d %srn",pTask->dwProcessId, pTask->ProcessName );
  63.         pTask++;
  64.     }
  65.     lprintfs( "rn" );
  66.     free( pTaskBegin );
  67. }
  68. void
  69. GetTaskName( ULONG pid, char *szTaskName, LPDWORD pdwSize )
  70. /*++
  71. Routine Description:
  72.     Gets the task name for a given process id.
  73. Arguments:
  74.     pid              - Process id to look for.
  75.     szTaskName       - Buffer to put the task name into.
  76.     lpdwSize         - Pointer to a dword.  On entry it contains the
  77.                        size of the szTaskName buffer.  On exit it contains
  78.                        the number of characters in the buffer.
  79. Return Value:
  80.     None.
  81. --*/
  82. {
  83.     PTASK_LIST   pTask;
  84.     PTASK_LIST   pTaskBegin;
  85.     LONG         NumTasks;
  86.     pTask = pTaskBegin = GetTaskList( &NumTasks );
  87.     if (pTask == NULL) {
  88.         if (szTaskName) {
  89.             strncpy( szTaskName, "unknown", *pdwSize );
  90.         }
  91.         *pdwSize = min( 7, *pdwSize );
  92.     } else {
  93.         while (NumTasks--) {
  94.             if (pTask->dwProcessId == pid) {
  95.                 if (szTaskName) {
  96.                     strncpy( szTaskName, pTask->ProcessName, *pdwSize );
  97.                 }
  98.                 *pdwSize = min( strlen(pTask->ProcessName), *pdwSize );
  99.                 break;
  100.             }
  101.             pTask++;
  102.         }
  103.         if (NumTasks < 0) {
  104.             if (szTaskName) {
  105.                 strncpy( szTaskName, "<exited>", *pdwSize );
  106.             }
  107.             *pdwSize = min( 8, *pdwSize );
  108.         }
  109.         free( pTaskBegin );
  110.     }
  111. }
  112. PTASK_LIST
  113. GetTaskList( LPLONG pNumTasks )
  114. /*++
  115. Routine Description:
  116.     Provides an API for getting a list of tasks running at the time of the
  117.     API call.  This function uses the registry performance data to get the
  118.     task list and is therefor straight WIN32 calls that anyone can call.
  119. Arguments:
  120.     pNumTasks      - pointer to a dword that will be set to the
  121.                        number of tasks returned.
  122. Return Value:
  123.     PTASK_LIST       - pointer to an array of TASK_LIST records.
  124. --*/
  125. {
  126.     DWORD                        rc;
  127.     HKEY                         hKeyNames;
  128.     DWORD                        dwType;
  129.     DWORD                        dwSize;
  130.     LPBYTE                       buf = NULL;
  131.     char                         szSubKey[1024];
  132.     LANGID                       lid;
  133.     LPSTR                        p;
  134.     LPSTR                        p2;
  135.     PPERF_DATA_BLOCK             pPerf;
  136.     PPERF_OBJECT_TYPE            pObj;
  137.     PPERF_INSTANCE_DEFINITION    pInst;
  138.     PPERF_COUNTER_BLOCK          pCounter;
  139.     PPERF_COUNTER_DEFINITION     pCounterDef;
  140.     DWORD                        i;
  141.     DWORD                        dwProcessIdTitle;
  142.     DWORD                        dwProcessIdCounter;
  143.     PTASK_LIST                   pTask;
  144.     PTASK_LIST                   pTaskReturn = NULL;
  145.     char                         szProcessName[MAX_PATH];
  146.     //
  147.     // set the number of tasks to zero until we get some
  148.     //
  149.     *pNumTasks = 0;
  150.     //
  151.     // Look for the list of counters.  Always use the neutral
  152.     // English version, regardless of the local language.  We
  153.     // are looking for some particular keys, and we are always
  154.     // going to do our looking in English.  We are not going
  155.     // to show the user the counter names, so there is no need
  156.     // to go find the corresponding name in the local language.
  157.     //
  158.     lid = MAKELANGID( LANG_ENGLISH, SUBLANG_NEUTRAL );
  159.     sprintf( szSubKey, "%s\%03x", REGKEY_PERF, lid );
  160.     rc = RegOpenKeyEx( HKEY_LOCAL_MACHINE,
  161.                        szSubKey,
  162.                        0,
  163.                        KEY_READ,
  164.                        &hKeyNames
  165.                      );
  166.     if (rc != ERROR_SUCCESS) {
  167.         goto exit;
  168.     }
  169.     //
  170.     // get the buffer size for the counter names
  171.     //
  172.     rc = RegQueryValueEx( hKeyNames,
  173.                           REGSUBKEY_COUNTERS,
  174.                           NULL,
  175.                           &dwType,
  176.                           NULL,
  177.                           &dwSize
  178.                         );
  179.     if (rc != ERROR_SUCCESS) {
  180.         goto exit;
  181.     }
  182.     //
  183.     // allocate the counter names buffer
  184.     //
  185.     buf = (LPBYTE) malloc( dwSize );
  186.     if (buf == NULL) {
  187.         goto exit;
  188.     }
  189.     memset( buf, 0, dwSize );
  190.     //
  191.     // read the counter names from the registry
  192.     //
  193.     rc = RegQueryValueEx( hKeyNames,
  194.                           REGSUBKEY_COUNTERS,
  195.                           NULL,
  196.                           &dwType,
  197.                           buf,
  198.                           &dwSize
  199.                         );
  200.     if (rc != ERROR_SUCCESS) {
  201.         goto exit;
  202.     }
  203.     //
  204.     // now loop thru the counter names looking for the following counters:
  205.     //
  206.     //      1.  "Process"           process name
  207.     //      2.  "ID Process"        process id
  208.     //
  209.     // the buffer contains multiple null terminated strings and then
  210.     // finally null terminated at the end.  the strings are in pairs of
  211.     // counter number and counter name.
  212.     //
  213.     p = buf;
  214.     while (*p) {
  215.         if (_stricmp(p, PROCESS_COUNTER) == 0) {
  216.             //
  217.             // look backwards for the counter number
  218.             //
  219.             for( p2=p-2; isdigit(*p2); p2--) ;
  220.             strcpy( szSubKey, p2+1 );
  221.         }
  222.         else
  223.         if (_stricmp(p, PROCESSID_COUNTER) == 0) {
  224.             //
  225.             // look backwards for the counter number
  226.             //
  227.             for( p2=p-2; isdigit(*p2); p2--) ;
  228.             dwProcessIdTitle = atol( p2+1 );
  229.         }
  230.         //
  231.         // next string
  232.         //
  233.         p += (strlen(p) + 1);
  234.     }
  235.     //
  236.     // free the counter names buffer
  237.     //
  238.     free( buf );
  239.     //
  240.     // allocate the initial buffer for the performance data
  241.     //
  242.     dwSize = INITIAL_SIZE;
  243.     buf = malloc( dwSize );
  244.     if (buf == NULL) {
  245.         goto exit;
  246.     }
  247.     memset( buf, 0, dwSize );
  248.     while (TRUE) {
  249.         rc = RegQueryValueEx( HKEY_PERFORMANCE_DATA,
  250.                               szSubKey,
  251.                               NULL,
  252.                               &dwType,
  253.                               buf,
  254.                               &dwSize
  255.                             );
  256.         pPerf = (PPERF_DATA_BLOCK) buf;
  257.         //
  258.         // check for success and valid perf data block signature
  259.         //
  260.         if ((rc == ERROR_SUCCESS) &&
  261.             (dwSize > 0) &&
  262.             (pPerf)->Signature[0] == (WCHAR)'P' &&
  263.             (pPerf)->Signature[1] == (WCHAR)'E' &&
  264.             (pPerf)->Signature[2] == (WCHAR)'R' &&
  265.             (pPerf)->Signature[3] == (WCHAR)'F' ) {
  266.             break;
  267.         }
  268.         //
  269.         // if buffer is not big enough, reallocate and try again
  270.         //
  271.         if (rc == ERROR_MORE_DATA) {
  272.             dwSize += EXTEND_SIZE;
  273.             buf = realloc( buf, dwSize );
  274.             memset( buf, 0, dwSize );
  275.         }
  276.         else {
  277.             goto exit;
  278.         }
  279.     }
  280.     //
  281.     // set the perf_object_type pointer
  282.     //
  283.     pObj = (PPERF_OBJECT_TYPE) ((DWORD)pPerf + pPerf->HeaderLength);
  284.     //
  285.     // loop thru the performance counter definition records looking
  286.     // for the process id counter and then save its offset
  287.     //
  288.     pCounterDef = (PPERF_COUNTER_DEFINITION) ((DWORD)pObj + pObj->HeaderLength);
  289.     for (i=0; i<(DWORD)pObj->NumCounters; i++) {
  290.         if (pCounterDef->CounterNameTitleIndex == dwProcessIdTitle) {
  291.             dwProcessIdCounter = pCounterDef->CounterOffset;
  292.             break;
  293.         }
  294.         pCounterDef++;
  295.     }
  296.     //
  297.     // allocate a buffer for the returned task list
  298.     //
  299.     dwSize = pObj->NumInstances * sizeof(TASK_LIST);
  300.     pTask = pTaskReturn = (PTASK_LIST) malloc( dwSize );
  301.     if (pTask == NULL) {
  302.         goto exit;
  303.     }
  304.     memset( pTask, 0, dwSize);
  305.     //
  306.     // loop thru the performance instance data extracting each process name
  307.     // and process id
  308.     //
  309.     *pNumTasks = pObj->NumInstances;
  310.     pInst = (PPERF_INSTANCE_DEFINITION) ((DWORD)pObj + pObj->DefinitionLength);
  311.     for (i=0; i<(DWORD)pObj->NumInstances; i++) {
  312.         //
  313.         // pointer to the process name
  314.         //
  315.         p = (LPSTR) ((DWORD)pInst + pInst->NameOffset);
  316.         //
  317.         // convert it to ascii
  318.         //
  319.         rc = WideCharToMultiByte( CP_ACP,
  320.                                   0,
  321.                                   (LPCWSTR)p,
  322.                                   -1,
  323.                                   szProcessName,
  324.                                   sizeof(szProcessName),
  325.                                   NULL,
  326.                                   NULL
  327.                                 );
  328.         if (!rc) {
  329.             //
  330.             // if we cant convert the string then use a bogus value
  331.             //
  332.             strcpy( pTask->ProcessName, UNKNOWN_TASK );
  333.         }
  334.         if (strlen(szProcessName)+4 <= sizeof(pTask->ProcessName)) {
  335.             strcpy( pTask->ProcessName, szProcessName );
  336.             strcat( pTask->ProcessName, ".exe" );
  337.         }
  338.         //
  339.         // get the process id
  340.         //
  341.         pCounter = (PPERF_COUNTER_BLOCK) ((DWORD)pInst + pInst->ByteLength);
  342.         pTask->dwProcessId = *((LPDWORD) ((DWORD)pCounter + dwProcessIdCounter));
  343.         //
  344.         // next process
  345.         //
  346.         pTask++;
  347.         pInst = (PPERF_INSTANCE_DEFINITION) ((DWORD)pCounter + pCounter->ByteLength);
  348.     }
  349. exit:
  350.     if (buf) {
  351.         free( buf );
  352.     }
  353.     RegCloseKey( hKeyNames );
  354.     return pTaskReturn;
  355. }