2012-06-15 15:47:28 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Hans Leidekker for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define COBJMACROS
|
2012-06-19 10:21:47 +02:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2012-06-15 15:47:28 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wbemcli.h"
|
2012-06-25 11:20:09 +02:00
|
|
|
#include "winsock2.h"
|
|
|
|
#include "iphlpapi.h"
|
2012-06-18 09:32:02 +02:00
|
|
|
#include "tlhelp32.h"
|
2012-06-22 09:23:36 +02:00
|
|
|
#include "initguid.h"
|
|
|
|
#include "d3d10.h"
|
2012-06-26 16:03:10 +02:00
|
|
|
#include "winternl.h"
|
2012-06-15 15:47:28 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wbemprox_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
|
|
|
|
|
|
|
|
static const WCHAR class_biosW[] =
|
|
|
|
{'W','i','n','3','2','_','B','I','O','S',0};
|
2012-06-19 10:20:22 +02:00
|
|
|
static const WCHAR class_compsysW[] =
|
|
|
|
{'W','i','n','3','2','_','C','o','m','p','u','t','e','r','S','y','s','t','e','m',0};
|
2012-06-26 16:03:10 +02:00
|
|
|
static const WCHAR class_networkadapterW[] =
|
|
|
|
{'W','i','n','3','2','_','N','e','t','w','o','r','k','A','d','a','p','t','e','r',0};
|
2012-06-19 10:21:47 +02:00
|
|
|
static const WCHAR class_osW[] =
|
|
|
|
{'W','i','n','3','2','_','O','p','e','r','a','t','i','n','g','S','y','s','t','e','m',0};
|
2012-06-18 09:32:02 +02:00
|
|
|
static const WCHAR class_processW[] =
|
|
|
|
{'W','i','n','3','2','_','P','r','o','c','e','s','s',0};
|
2012-06-19 10:20:42 +02:00
|
|
|
static const WCHAR class_processorW[] =
|
|
|
|
{'W','i','n','3','2','_','P','r','o','c','e','s','s','o','r',0};
|
2012-06-22 09:23:36 +02:00
|
|
|
static const WCHAR class_videocontrollerW[] =
|
|
|
|
{'W','i','n','3','2','_','V','i','d','e','o','C','o','n','t','r','o','l','l','e','r',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
|
2012-06-22 09:23:36 +02:00
|
|
|
static const WCHAR prop_adapterramW[] =
|
|
|
|
{'A','d','a','p','t','e','r','R','A','M',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
static const WCHAR prop_captionW[] =
|
|
|
|
{'C','a','p','t','i','o','n',0};
|
2012-06-20 12:07:02 +02:00
|
|
|
static const WCHAR prop_commandlineW[] =
|
|
|
|
{'C','o','m','m','a','n','d','L','i','n','e',0};
|
2012-06-26 16:03:32 +02:00
|
|
|
static const WCHAR prop_cpustatusW[] =
|
|
|
|
{'C','p','u','S','t','a','t','u','s',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
static const WCHAR prop_descriptionW[] =
|
|
|
|
{'D','e','s','c','r','i','p','t','i','o','n',0};
|
2012-06-22 09:23:36 +02:00
|
|
|
static const WCHAR prop_deviceidW[] =
|
|
|
|
{'D','e','v','i','c','e','I','d',0};
|
2012-06-20 12:06:17 +02:00
|
|
|
static const WCHAR prop_handleW[] =
|
|
|
|
{'H','a','n','d','l','e',0};
|
2012-06-25 11:20:09 +02:00
|
|
|
static const WCHAR prop_interfaceindexW[] =
|
|
|
|
{'I','n','t','e','r','f','a','c','e','I','n','d','e','x',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
static const WCHAR prop_manufacturerW[] =
|
|
|
|
{'M','a','n','u','f','a','c','t','u','r','e','r',0};
|
2012-06-19 10:20:22 +02:00
|
|
|
static const WCHAR prop_modelW[] =
|
|
|
|
{'M','o','d','e','l',0};
|
2012-06-25 11:20:09 +02:00
|
|
|
static const WCHAR prop_netconnectionstatusW[] =
|
|
|
|
{'N','e','t','C','o','n','n','e','c','t','i','o','n','S','t','a','t','u','s',0};
|
2012-06-26 16:03:10 +02:00
|
|
|
static const WCHAR prop_numlogicalprocessorsW[] =
|
|
|
|
{'N','u','m','b','e','r','O','f','L','o','g','i','c','a','l','P','r','o','c','e','s','s','o','r','s',0};
|
|
|
|
static const WCHAR prop_numprocessorsW[] =
|
|
|
|
{'N','u','m','b','e','r','O','f','P','r','o','c','e','s','s','o','r','s',0};
|
2012-06-19 10:21:47 +02:00
|
|
|
static const WCHAR prop_osarchitectureW[] =
|
|
|
|
{'O','S','A','r','c','h','i','t','e','c','t','u','r','e',0};
|
2012-06-26 16:02:41 +02:00
|
|
|
static const WCHAR prop_oslanguageW[] =
|
|
|
|
{'O','S','L','a','n','g','u','a','g','e',0};
|
2012-06-18 09:32:02 +02:00
|
|
|
static const WCHAR prop_pprocessidW[] =
|
|
|
|
{'P','a','r','e','n','t','P','r','o','c','e','s','s','I','D',0};
|
|
|
|
static const WCHAR prop_processidW[] =
|
|
|
|
{'P','r','o','c','e','s','s','I','D',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
static const WCHAR prop_releasedateW[] =
|
|
|
|
{'R','e','l','e','a','s','e','D','a','t','e',0};
|
|
|
|
static const WCHAR prop_serialnumberW[] =
|
|
|
|
{'S','e','r','i','a','l','N','u','m','b','e','r',0};
|
2012-06-26 16:02:41 +02:00
|
|
|
static const WCHAR prop_systemdirectoryW[] =
|
|
|
|
{'S','y','s','t','e','m','D','i','r','e','c','t','o','r','y',0};
|
2012-06-18 09:32:02 +02:00
|
|
|
static const WCHAR prop_threadcountW[] =
|
|
|
|
{'T','h','r','e','a','d','C','o','u','n','t',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
|
|
|
|
static const struct column col_bios[] =
|
|
|
|
{
|
|
|
|
{ prop_descriptionW, CIM_STRING },
|
|
|
|
{ prop_manufacturerW, CIM_STRING },
|
|
|
|
{ prop_releasedateW, CIM_DATETIME },
|
|
|
|
{ prop_serialnumberW, CIM_STRING }
|
|
|
|
};
|
2012-06-19 10:20:22 +02:00
|
|
|
static const struct column col_compsys[] =
|
|
|
|
{
|
2012-06-26 16:03:10 +02:00
|
|
|
{ prop_descriptionW, CIM_STRING },
|
|
|
|
{ prop_manufacturerW, CIM_STRING },
|
|
|
|
{ prop_modelW, CIM_STRING },
|
|
|
|
{ prop_numlogicalprocessorsW, CIM_UINT32 },
|
|
|
|
{ prop_numprocessorsW, CIM_UINT32 }
|
2012-06-19 10:20:22 +02:00
|
|
|
};
|
2012-06-25 11:20:09 +02:00
|
|
|
static const struct column col_networkadapter[] =
|
|
|
|
{
|
|
|
|
{ prop_deviceidW, CIM_STRING|COL_FLAG_DYNAMIC|COL_FLAG_KEY },
|
|
|
|
{ prop_interfaceindexW, CIM_SINT32 },
|
|
|
|
{ prop_netconnectionstatusW, CIM_UINT16 }
|
|
|
|
};
|
2012-06-19 10:21:47 +02:00
|
|
|
static const struct column col_os[] =
|
|
|
|
{
|
2012-06-26 16:02:41 +02:00
|
|
|
{ prop_captionW, CIM_STRING },
|
|
|
|
{ prop_osarchitectureW, CIM_STRING },
|
|
|
|
{ prop_oslanguageW, CIM_UINT32 },
|
|
|
|
{ prop_systemdirectoryW, CIM_STRING }
|
2012-06-19 10:21:47 +02:00
|
|
|
};
|
2012-06-18 09:32:02 +02:00
|
|
|
static const struct column col_process[] =
|
|
|
|
{
|
2012-06-19 10:21:12 +02:00
|
|
|
{ prop_captionW, CIM_STRING|COL_FLAG_DYNAMIC },
|
2012-06-20 12:07:02 +02:00
|
|
|
{ prop_commandlineW, CIM_STRING|COL_FLAG_DYNAMIC },
|
2012-06-19 10:21:12 +02:00
|
|
|
{ prop_descriptionW, CIM_STRING|COL_FLAG_DYNAMIC },
|
2012-06-20 12:06:17 +02:00
|
|
|
{ prop_handleW, CIM_STRING|COL_FLAG_DYNAMIC|COL_FLAG_KEY },
|
2012-06-18 09:32:02 +02:00
|
|
|
{ prop_pprocessidW, CIM_UINT32 },
|
|
|
|
{ prop_processidW, CIM_UINT32 },
|
|
|
|
{ prop_threadcountW, CIM_UINT32 }
|
|
|
|
};
|
2012-06-19 10:20:42 +02:00
|
|
|
static const struct column col_processor[] =
|
|
|
|
{
|
2012-06-26 16:03:32 +02:00
|
|
|
{ prop_cpustatusW, CIM_UINT16 },
|
|
|
|
{ prop_deviceidW, CIM_STRING|COL_FLAG_DYNAMIC|COL_FLAG_KEY },
|
2012-06-19 10:20:42 +02:00
|
|
|
{ prop_manufacturerW, CIM_STRING }
|
|
|
|
};
|
2012-06-22 09:23:36 +02:00
|
|
|
static const struct column col_videocontroller[] =
|
|
|
|
{
|
|
|
|
{ prop_adapterramW, CIM_UINT32 },
|
|
|
|
{ prop_deviceidW, CIM_STRING|COL_FLAG_KEY }
|
|
|
|
};
|
2012-06-15 15:47:28 +02:00
|
|
|
|
|
|
|
static const WCHAR bios_descriptionW[] =
|
|
|
|
{'D','e','f','a','u','l','t',' ','S','y','s','t','e','m',' ','B','I','O','S',0};
|
|
|
|
static const WCHAR bios_manufacturerW[] =
|
|
|
|
{'T','h','e',' ','W','i','n','e',' ','P','r','o','j','e','c','t',0};
|
|
|
|
static const WCHAR bios_releasedateW[] =
|
|
|
|
{'2','0','1','2','0','6','0','8','0','0','0','0','0','0','.','0','0','0','0','0','0','+','0','0','0',0};
|
|
|
|
static const WCHAR bios_serialnumberW[] =
|
|
|
|
{'0',0};
|
2012-06-19 10:20:22 +02:00
|
|
|
static const WCHAR compsys_descriptionW[] =
|
|
|
|
{'A','T','/','A','T',' ','C','O','M','P','A','T','I','B','L','E',0};
|
|
|
|
static const WCHAR compsys_manufacturerW[] =
|
|
|
|
{'T','h','e',' ','W','i','n','e',' ','P','r','o','j','e','c','t',0};
|
|
|
|
static const WCHAR compsys_modelW[] =
|
|
|
|
{'W','i','n','e',0};
|
2012-06-19 10:21:47 +02:00
|
|
|
static const WCHAR os_captionW[] =
|
|
|
|
{'W','i','n','e',0};
|
|
|
|
static const WCHAR os_32bitW[] =
|
|
|
|
{'3','2','-','b','i','t',0};
|
|
|
|
static const WCHAR os_64bitW[] =
|
|
|
|
{'6','4','-','b','i','t',0};
|
2012-06-19 10:20:42 +02:00
|
|
|
static const WCHAR processor_manufacturerW[] =
|
|
|
|
{'G','e','n','u','i','n','e','I','n','t','e','l',0};
|
2012-06-22 09:23:36 +02:00
|
|
|
static const WCHAR videocontroller_deviceidW[] =
|
|
|
|
{'V','i','d','e','o','C','o','n','t','r','o','l','l','e','r','1',0};
|
2012-06-15 15:47:28 +02:00
|
|
|
|
|
|
|
#include "pshpack1.h"
|
|
|
|
struct record_bios
|
|
|
|
{
|
|
|
|
const WCHAR *description;
|
|
|
|
const WCHAR *manufacturer;
|
|
|
|
const WCHAR *releasedate;
|
|
|
|
const WCHAR *serialnumber;
|
|
|
|
};
|
2012-06-19 10:20:22 +02:00
|
|
|
struct record_computersystem
|
|
|
|
{
|
|
|
|
const WCHAR *description;
|
|
|
|
const WCHAR *manufacturer;
|
|
|
|
const WCHAR *model;
|
2012-06-26 16:03:10 +02:00
|
|
|
UINT32 num_logical_processors;
|
|
|
|
UINT32 num_processors;
|
2012-06-19 10:20:22 +02:00
|
|
|
};
|
2012-06-25 11:20:09 +02:00
|
|
|
struct record_networkadapter
|
|
|
|
{
|
|
|
|
const WCHAR *device_id;
|
|
|
|
INT32 interface_index;
|
|
|
|
UINT16 netconnection_status;
|
|
|
|
};
|
2012-06-19 10:21:47 +02:00
|
|
|
struct record_operatingsystem
|
|
|
|
{
|
|
|
|
const WCHAR *caption;
|
|
|
|
const WCHAR *osarchitecture;
|
2012-06-26 16:02:41 +02:00
|
|
|
UINT32 oslanguage;
|
|
|
|
const WCHAR *systemdirectory;
|
2012-06-19 10:21:47 +02:00
|
|
|
};
|
2012-06-18 09:32:02 +02:00
|
|
|
struct record_process
|
|
|
|
{
|
|
|
|
const WCHAR *caption;
|
2012-06-20 12:07:02 +02:00
|
|
|
const WCHAR *commandline;
|
2012-06-18 09:32:02 +02:00
|
|
|
const WCHAR *description;
|
2012-06-20 12:06:17 +02:00
|
|
|
const WCHAR *handle;
|
2012-06-18 09:32:02 +02:00
|
|
|
UINT32 pprocess_id;
|
|
|
|
UINT32 process_id;
|
|
|
|
UINT32 thread_count;
|
|
|
|
};
|
2012-06-19 10:20:42 +02:00
|
|
|
struct record_processor
|
|
|
|
{
|
2012-06-26 16:03:32 +02:00
|
|
|
UINT16 cpu_status;
|
|
|
|
const WCHAR *device_id;
|
2012-06-19 10:20:42 +02:00
|
|
|
const WCHAR *manufacturer;
|
|
|
|
};
|
2012-06-22 09:23:36 +02:00
|
|
|
struct record_videocontroller
|
|
|
|
{
|
|
|
|
UINT32 adapter_ram;
|
|
|
|
const WCHAR *device_id;
|
|
|
|
};
|
2012-06-15 15:47:28 +02:00
|
|
|
#include "poppack.h"
|
|
|
|
|
|
|
|
static const struct record_bios data_bios[] =
|
|
|
|
{
|
|
|
|
{ bios_descriptionW, bios_manufacturerW, bios_releasedateW, bios_serialnumberW }
|
|
|
|
};
|
|
|
|
|
2012-06-26 16:03:10 +02:00
|
|
|
static UINT get_processor_count(void)
|
|
|
|
{
|
|
|
|
SYSTEM_BASIC_INFORMATION info;
|
|
|
|
|
|
|
|
if (NtQuerySystemInformation( SystemBasicInformation, &info, sizeof(info), NULL )) return 1;
|
|
|
|
return info.NumberOfProcessors;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fill_compsys( struct table *table )
|
|
|
|
{
|
|
|
|
struct record_computersystem *rec;
|
|
|
|
|
|
|
|
if (!(table->data = heap_alloc( sizeof(*rec) ))) return;
|
|
|
|
|
|
|
|
rec = (struct record_computersystem *)table->data;
|
|
|
|
rec->description = compsys_descriptionW;
|
|
|
|
rec->manufacturer = compsys_manufacturerW;
|
|
|
|
rec->model = compsys_modelW;
|
|
|
|
rec->num_logical_processors = get_processor_count();
|
|
|
|
rec->num_processors = rec->num_logical_processors;
|
|
|
|
|
|
|
|
TRACE("created 1 row\n");
|
|
|
|
table->num_rows = 1;
|
|
|
|
}
|
|
|
|
|
2012-06-25 11:20:09 +02:00
|
|
|
static UINT16 get_connection_status( IF_OPER_STATUS status )
|
|
|
|
{
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case IfOperStatusDown:
|
|
|
|
return 0; /* Disconnected */
|
|
|
|
case IfOperStatusUp:
|
|
|
|
return 2; /* Connected */
|
|
|
|
default:
|
|
|
|
ERR("unhandled status %u\n", status);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fill_networkadapter( struct table *table )
|
|
|
|
{
|
|
|
|
static const WCHAR fmtW[] = {'%','u',0};
|
|
|
|
WCHAR device_id[11];
|
|
|
|
struct record_networkadapter *rec;
|
|
|
|
IP_ADAPTER_ADDRESSES *aa, *buffer;
|
|
|
|
UINT num_rows = 0, offset = 0;
|
|
|
|
DWORD size = 0, ret;
|
|
|
|
|
|
|
|
ret = GetAdaptersAddresses( AF_UNSPEC, 0, NULL, NULL, &size );
|
|
|
|
if (ret != ERROR_BUFFER_OVERFLOW) return;
|
|
|
|
|
|
|
|
if (!(buffer = heap_alloc( size ))) return;
|
|
|
|
if (GetAdaptersAddresses( AF_UNSPEC, 0, NULL, buffer, &size ))
|
|
|
|
{
|
|
|
|
heap_free( buffer );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (aa = buffer; aa; aa = aa->Next) num_rows++;
|
|
|
|
if (!(table->data = heap_alloc( sizeof(*rec) * num_rows )))
|
|
|
|
{
|
|
|
|
heap_free( buffer );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (aa = buffer; aa; aa = aa->Next)
|
|
|
|
{
|
|
|
|
rec = (struct record_networkadapter *)(table->data + offset);
|
|
|
|
sprintfW( device_id, fmtW, aa->u.s.IfIndex );
|
|
|
|
rec->device_id = heap_strdupW( device_id );
|
|
|
|
rec->interface_index = aa->u.s.IfIndex;
|
|
|
|
rec->netconnection_status = get_connection_status( aa->OperStatus );
|
|
|
|
offset += sizeof(*rec);
|
|
|
|
}
|
|
|
|
TRACE("created %u rows\n", num_rows);
|
|
|
|
table->num_rows = num_rows;
|
|
|
|
|
|
|
|
heap_free( buffer );
|
|
|
|
}
|
|
|
|
|
2012-06-20 12:07:02 +02:00
|
|
|
static WCHAR *get_cmdline( DWORD process_id )
|
|
|
|
{
|
|
|
|
if (process_id == GetCurrentProcessId()) return heap_strdupW( GetCommandLineW() );
|
|
|
|
return NULL; /* FIXME handle different process case */
|
|
|
|
}
|
|
|
|
|
2012-06-18 09:32:02 +02:00
|
|
|
static void fill_process( struct table *table )
|
|
|
|
{
|
2012-06-20 12:06:17 +02:00
|
|
|
static const WCHAR fmtW[] = {'%','u',0};
|
|
|
|
WCHAR handle[11];
|
2012-06-18 09:32:02 +02:00
|
|
|
struct record_process *rec;
|
|
|
|
PROCESSENTRY32W entry;
|
|
|
|
HANDLE snap;
|
|
|
|
UINT num_rows = 0, offset = 0, count = 8;
|
|
|
|
|
|
|
|
snap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
|
|
|
|
if (snap == INVALID_HANDLE_VALUE) return;
|
|
|
|
|
|
|
|
entry.dwSize = sizeof(entry);
|
|
|
|
if (!Process32FirstW( snap, &entry )) goto done;
|
|
|
|
if (!(table->data = heap_alloc( count * sizeof(*rec) ))) goto done;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (num_rows > count)
|
|
|
|
{
|
|
|
|
BYTE *data;
|
|
|
|
count *= 2;
|
|
|
|
if (!(data = heap_realloc( table->data, count * sizeof(*rec) ))) goto done;
|
|
|
|
table->data = data;
|
|
|
|
}
|
|
|
|
rec = (struct record_process *)(table->data + offset);
|
|
|
|
rec->caption = heap_strdupW( entry.szExeFile );
|
2012-06-20 12:07:02 +02:00
|
|
|
rec->commandline = get_cmdline( entry.th32ProcessID );
|
2012-06-18 09:32:02 +02:00
|
|
|
rec->description = heap_strdupW( entry.szExeFile );
|
2012-06-20 12:06:17 +02:00
|
|
|
sprintfW( handle, fmtW, entry.th32ProcessID );
|
|
|
|
rec->handle = heap_strdupW( handle );
|
2012-06-18 09:32:02 +02:00
|
|
|
rec->process_id = entry.th32ProcessID;
|
|
|
|
rec->pprocess_id = entry.th32ParentProcessID;
|
|
|
|
rec->thread_count = entry.cntThreads;
|
|
|
|
offset += sizeof(*rec);
|
|
|
|
num_rows++;
|
|
|
|
} while (Process32NextW( snap, &entry ));
|
|
|
|
|
|
|
|
TRACE("created %u rows\n", num_rows);
|
|
|
|
table->num_rows = num_rows;
|
|
|
|
|
|
|
|
done:
|
|
|
|
CloseHandle( snap );
|
|
|
|
}
|
|
|
|
|
2012-06-26 16:03:32 +02:00
|
|
|
static void fill_processor( struct table *table )
|
|
|
|
{
|
|
|
|
static const WCHAR fmtW[] = {'C','P','U','%','u',0};
|
|
|
|
WCHAR device_id[14];
|
|
|
|
struct record_processor *rec;
|
|
|
|
UINT i, offset = 0, count = get_processor_count();
|
|
|
|
|
|
|
|
if (!(table->data = heap_alloc( sizeof(*rec) * count ))) return;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
rec = (struct record_processor *)(table->data + offset);
|
|
|
|
rec->cpu_status = 1; /* CPU Enabled */
|
|
|
|
rec->manufacturer = processor_manufacturerW;
|
|
|
|
sprintfW( device_id, fmtW, i );
|
|
|
|
rec->device_id = heap_strdupW( device_id );
|
|
|
|
offset += sizeof(*rec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-19 10:21:47 +02:00
|
|
|
static void fill_os( struct table *table )
|
|
|
|
{
|
|
|
|
struct record_operatingsystem *rec;
|
2012-06-26 16:02:41 +02:00
|
|
|
WCHAR path[MAX_PATH];
|
2012-06-19 10:21:47 +02:00
|
|
|
SYSTEM_INFO info;
|
2012-06-26 16:02:41 +02:00
|
|
|
void *redir;
|
2012-06-19 10:21:47 +02:00
|
|
|
|
|
|
|
if (!(table->data = heap_alloc( sizeof(*rec) ))) return;
|
|
|
|
|
|
|
|
rec = (struct record_operatingsystem *)table->data;
|
|
|
|
rec->caption = os_captionW;
|
|
|
|
|
|
|
|
GetNativeSystemInfo( &info );
|
|
|
|
if (info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
|
|
|
|
rec->osarchitecture = os_64bitW;
|
|
|
|
else
|
|
|
|
rec->osarchitecture = os_32bitW;
|
|
|
|
|
2012-06-26 16:02:41 +02:00
|
|
|
rec->oslanguage = MAKELANGID( LANG_ENGLISH, SUBLANG_ENGLISH_US );
|
|
|
|
|
|
|
|
Wow64DisableWow64FsRedirection( &redir );
|
|
|
|
GetSystemDirectoryW( path, MAX_PATH );
|
|
|
|
Wow64RevertWow64FsRedirection( redir );
|
|
|
|
rec->systemdirectory = heap_strdupW( path );
|
|
|
|
|
2012-06-19 10:21:47 +02:00
|
|
|
TRACE("created 1 row\n");
|
|
|
|
table->num_rows = 1;
|
|
|
|
}
|
|
|
|
|
2012-06-22 09:23:36 +02:00
|
|
|
static void fill_videocontroller( struct table *table )
|
|
|
|
{
|
|
|
|
|
|
|
|
struct record_videocontroller *rec;
|
|
|
|
HRESULT hr;
|
|
|
|
IDXGIFactory *factory = NULL;
|
|
|
|
IDXGIAdapter *adapter = NULL;
|
|
|
|
DXGI_ADAPTER_DESC desc;
|
|
|
|
UINT vidmem = 512 * 1024 * 1024;
|
|
|
|
|
|
|
|
if (!(table->data = heap_alloc( sizeof(*rec) ))) return;
|
|
|
|
|
|
|
|
hr = CreateDXGIFactory( &IID_IDXGIFactory, (void **)&factory );
|
|
|
|
if (FAILED(hr)) goto done;
|
|
|
|
|
|
|
|
hr = IDXGIFactory_EnumAdapters( factory, 0, &adapter );
|
|
|
|
if (FAILED(hr)) goto done;
|
|
|
|
|
|
|
|
hr = IDXGIAdapter_GetDesc( adapter, &desc );
|
|
|
|
if (SUCCEEDED(hr)) vidmem = desc.DedicatedVideoMemory;
|
|
|
|
|
|
|
|
done:
|
|
|
|
rec = (struct record_videocontroller *)table->data;
|
|
|
|
rec->device_id = videocontroller_deviceidW;
|
|
|
|
rec->adapter_ram = vidmem;
|
|
|
|
|
|
|
|
TRACE("created 1 row\n");
|
|
|
|
table->num_rows = 1;
|
|
|
|
|
|
|
|
if (adapter) IDXGIAdapter_Release( adapter );
|
|
|
|
if (factory) IDXGIFactory_Release( factory );
|
|
|
|
}
|
|
|
|
|
2012-06-15 15:47:28 +02:00
|
|
|
static struct table classtable[] =
|
|
|
|
{
|
2012-06-18 09:32:02 +02:00
|
|
|
{ class_biosW, SIZEOF(col_bios), col_bios, SIZEOF(data_bios), (BYTE *)data_bios, NULL },
|
2012-06-26 16:03:10 +02:00
|
|
|
{ class_compsysW, SIZEOF(col_compsys), col_compsys, 0, NULL, fill_compsys },
|
2012-06-25 11:20:09 +02:00
|
|
|
{ class_networkadapterW, SIZEOF(col_networkadapter), col_networkadapter, 0, NULL, fill_networkadapter },
|
2012-06-19 10:21:47 +02:00
|
|
|
{ class_osW, SIZEOF(col_os), col_os, 0, NULL, fill_os },
|
2012-06-19 10:20:42 +02:00
|
|
|
{ class_processW, SIZEOF(col_process), col_process, 0, NULL, fill_process },
|
2012-06-26 16:03:32 +02:00
|
|
|
{ class_processorW, SIZEOF(col_processor), col_processor, 0, NULL, fill_processor },
|
2012-06-22 09:23:36 +02:00
|
|
|
{ class_videocontrollerW, SIZEOF(col_videocontroller), col_videocontroller, 0, NULL, fill_videocontroller }
|
2012-06-15 15:47:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct table *get_table( const WCHAR *name )
|
|
|
|
{
|
|
|
|
UINT i;
|
|
|
|
struct table *table = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < SIZEOF(classtable); i++)
|
|
|
|
{
|
|
|
|
if (!strcmpiW( classtable[i].name, name ))
|
|
|
|
{
|
|
|
|
table = &classtable[i];
|
2012-06-18 09:32:02 +02:00
|
|
|
if (table->fill && !table->data) table->fill( table );
|
2012-06-15 15:47:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return table;
|
|
|
|
}
|