2006-07-04 16:07:08 +02:00
|
|
|
/* Class to manage the Windows Management Instrumentation(WMI).
|
|
|
|
It depends on disphelper library (http://disphelper.sourceforge.net)
|
|
|
|
|
|
|
|
Copyright (C) 2006 Artica ST.
|
|
|
|
Written by Esteban Sanchez.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MAB02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pandora_wmi.h"
|
|
|
|
#include "../pandora_strutils.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cctype>
|
2007-08-29 16:30:09 +02:00
|
|
|
#include <sstream>
|
2008-06-13 12:32:47 +02:00
|
|
|
#include <ctime>
|
2006-07-04 16:07:08 +02:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Pandora_Wmi;
|
|
|
|
|
|
|
|
static LPWSTR
|
|
|
|
getWmiStr (LPCWSTR computer) {
|
|
|
|
static WCHAR wmi_str [256];
|
|
|
|
|
|
|
|
wcscpy (wmi_str, L"winmgmts:{impersonationLevel=impersonate}!\\\\");
|
|
|
|
|
|
|
|
if (computer) {
|
2007-08-29 16:30:09 +02:00
|
|
|
wcsncat (wmi_str, computer, 128);
|
2006-07-04 16:07:08 +02:00
|
|
|
} else {
|
2007-08-29 16:30:09 +02:00
|
|
|
wcscat (wmi_str, L".");
|
|
|
|
}
|
2006-07-04 16:07:08 +02:00
|
|
|
|
|
|
|
wcscat (wmi_str, L"\\root\\cimv2");
|
|
|
|
|
|
|
|
return wmi_str;
|
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Check if a process is running.
|
|
|
|
*
|
|
|
|
* @param process_name Name of the process with extension.
|
|
|
|
*
|
|
|
|
* @return Number of instances of the process running.
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
int
|
|
|
|
Pandora_Wmi::isProcessRunning (string process_name) {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
|
|
|
string name;
|
|
|
|
int result = 0;
|
2007-08-29 16:30:09 +02:00
|
|
|
string query;
|
|
|
|
|
|
|
|
query = "SELECT * FROM Win32_Process WHERE Name=\"" + process_name + "\"";
|
2007-09-11 18:47:26 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
try {
|
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%T)",
|
|
|
|
query.c_str ()));
|
|
|
|
|
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
|
|
|
result++;
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("isProcessRunning error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Check if a Windows service is running.
|
|
|
|
*
|
|
|
|
* @param service_name Internal name of the service to check.
|
|
|
|
*
|
|
|
|
* @retval 1 The service is running
|
|
|
|
* @retval 0 The service is stopped
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
int
|
|
|
|
Pandora_Wmi::isServiceRunning (string service_name) {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
string query;
|
|
|
|
char *state;
|
2007-09-11 18:47:26 +02:00
|
|
|
string str_state;
|
2007-08-29 16:30:09 +02:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
query = "SELECT * FROM Win32_Service WHERE Name = \"" + service_name + "\"";
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
try {
|
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%T)",
|
|
|
|
query.c_str ()));
|
|
|
|
|
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
|
|
|
dhGetValue (L"%s", &state, quickfix,
|
|
|
|
L".State");
|
2007-09-11 18:47:26 +02:00
|
|
|
str_state = state;
|
|
|
|
retval = (str_state == "Running") ? 1 : 0;
|
2007-08-29 16:30:09 +02:00
|
|
|
dhFreeString (state);
|
2007-09-11 18:47:26 +02:00
|
|
|
|
2007-08-29 16:30:09 +02:00
|
|
|
return retval;
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("isServiceRunning error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-05 10:46:51 +02:00
|
|
|
return 0;
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the free space in a logical disk drive.
|
|
|
|
*
|
2007-08-29 16:30:09 +02:00
|
|
|
* @param disk_id Disk drive letter (C: for example).
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
*
|
|
|
|
* @return Free space amount in MB.
|
2006-08-31 14:42:36 +02:00
|
|
|
*
|
|
|
|
* @exception Pandora_Wmi_Exception Throwd if an error occured when reading
|
|
|
|
* from WMI database.
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
*/
|
2006-11-24 12:46:31 +01:00
|
|
|
unsigned long
|
2006-07-11 11:41:22 +02:00
|
|
|
Pandora_Wmi::getDiskFreeSpace (string disk_id) {
|
2006-11-27 12:59:52 +01:00
|
|
|
CDhInitialize init;
|
|
|
|
CDispPtr wmi_svc, quickfixes;
|
|
|
|
unsigned long long space = 0;
|
2007-09-05 18:22:26 +02:00
|
|
|
string space_str;
|
2007-08-24 13:48:23 +02:00
|
|
|
string query;
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2007-09-05 18:22:26 +02:00
|
|
|
query = "SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID = \"" + disk_id + "\"";
|
|
|
|
|
|
|
|
struct QFix {
|
|
|
|
CDhStringA free_space;
|
|
|
|
};
|
|
|
|
|
2006-07-11 11:41:22 +02:00
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-11 11:41:22 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%T)",
|
|
|
|
query.c_str ()));
|
|
|
|
|
2006-07-11 11:41:22 +02:00
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-09-05 18:22:26 +02:00
|
|
|
QFix fix = { 0 };
|
|
|
|
dhGetValue (L"%s", &fix.free_space, quickfix,
|
2007-08-24 13:48:23 +02:00
|
|
|
L".FreeSpace");
|
2007-09-05 18:22:26 +02:00
|
|
|
|
|
|
|
if (fix.free_space == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
space_str = fix.free_space;
|
|
|
|
dhFreeString (name);
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
space = Pandora_Strutils::strtoulong (space_str);
|
|
|
|
} catch (Pandora_Exception e) {
|
|
|
|
throw Pandora_Wmi_Exception ();
|
|
|
|
}
|
2007-09-11 18:47:26 +02:00
|
|
|
|
2007-08-24 13:48:23 +02:00
|
|
|
return space / 1024 / 1024;
|
2006-07-11 11:41:22 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-13 12:38:32 +02:00
|
|
|
pandoraLog ("getDiskFreeSpace error. %s", errstr.c_str ());
|
2006-07-11 11:41:22 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
throw Pandora_Wmi_Exception ();
|
2006-07-11 11:41:22 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the CPU usage percentage in the last minutes.
|
|
|
|
*
|
|
|
|
* @param cpu_id CPU identifier.
|
|
|
|
*
|
|
|
|
* @return The usage percentage of the CPU.
|
2006-08-31 14:42:36 +02:00
|
|
|
*
|
2007-09-05 18:22:26 +02:00
|
|
|
* @exception Pandora_Wmi_Exception Throwed if an error occured when reading
|
2006-08-31 14:42:36 +02:00
|
|
|
* from WMI database.
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
*/
|
2006-07-12 11:15:00 +02:00
|
|
|
int
|
|
|
|
Pandora_Wmi::getCpuUsagePercentage (int cpu_id) {
|
|
|
|
CDhInitialize init;
|
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
string query;
|
|
|
|
long load_percentage;
|
|
|
|
std::ostringstream stm;
|
|
|
|
|
|
|
|
stm << cpu_id;
|
|
|
|
query = "SELECT * FROM Win32_Processor WHERE DeviceID = \"CPU" + stm.str () + "\"";
|
|
|
|
|
2006-07-12 11:15:00 +02:00
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-12 11:15:00 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%T)",
|
|
|
|
query.c_str ()));
|
|
|
|
|
2006-07-12 11:15:00 +02:00
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%d", &load_percentage, quickfix,
|
|
|
|
L".LoadPercentage");
|
|
|
|
|
|
|
|
return load_percentage;
|
2006-07-12 11:15:00 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-13 12:38:32 +02:00
|
|
|
pandoraLog ("getCpuUsagePercentage error. %s", errstr.c_str ());
|
2006-07-12 11:15:00 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
throw Pandora_Wmi_Exception ();
|
2006-07-12 11:15:00 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the amount of free memory in the system
|
|
|
|
*
|
|
|
|
* @return The amount of free memory in MB.
|
2006-08-31 14:42:36 +02:00
|
|
|
* @exception Pandora_Wmi_Exception Throwd if an error occured when reading
|
|
|
|
* from WMI database.
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
*/
|
2006-07-13 12:38:32 +02:00
|
|
|
long
|
|
|
|
Pandora_Wmi::getFreememory () {
|
|
|
|
CDhInitialize init;
|
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
long free_memory;
|
2006-07-13 12:38:32 +02:00
|
|
|
|
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-13 12:38:32 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%S)",
|
|
|
|
L"SELECT * FROM Win32_PerfRawData_PerfOS_Memory "));
|
|
|
|
|
2006-07-13 12:38:32 +02:00
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%d", &free_memory, quickfix,
|
|
|
|
L".AvailableMBytes");
|
|
|
|
|
|
|
|
return free_memory;
|
2006-07-13 12:38:32 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
|
|
|
pandoraLog ("getFreememory error. %s", errstr.c_str ());
|
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
throw Pandora_Wmi_Exception ();
|
2006-07-13 12:38:32 +02:00
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the name of the operating system.
|
|
|
|
*
|
|
|
|
* @return The name of the operating system.
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
string
|
|
|
|
Pandora_Wmi::getOSName () {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
char *name = NULL;
|
2006-07-04 16:07:08 +02:00
|
|
|
string ret;
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-04 16:07:08 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%S)",
|
|
|
|
L"SELECT * FROM Win32_OperatingSystem "));
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%s", &name, quickfix,
|
|
|
|
L".Caption");
|
2007-09-05 18:22:26 +02:00
|
|
|
|
2007-08-29 16:30:09 +02:00
|
|
|
ret = name;
|
|
|
|
dhFreeString (name);
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("getOSName error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the version of the operating system.
|
|
|
|
*
|
|
|
|
* @return The version of the operaing system.
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
string
|
|
|
|
Pandora_Wmi::getOSVersion () {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
char *version = NULL;
|
2006-07-04 16:07:08 +02:00
|
|
|
string ret;
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-04 16:07:08 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%S)",
|
|
|
|
L"SELECT * FROM Win32_OperatingSystem "));
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%s", &version, quickfix,
|
|
|
|
L".CSDVersion");
|
|
|
|
|
|
|
|
ret = version;
|
|
|
|
dhFreeString (version);
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("getOSVersion error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the build of the operating system.
|
|
|
|
*
|
|
|
|
* @return The build of the operating system.
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
string
|
|
|
|
Pandora_Wmi::getOSBuild () {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
char *build = NULL;
|
2006-07-04 16:07:08 +02:00
|
|
|
string ret;
|
2007-08-29 16:30:09 +02:00
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-04 16:07:08 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%S)",
|
|
|
|
L"SELECT * FROM Win32_OperatingSystem "));
|
2006-07-04 16:07:08 +02:00
|
|
|
|
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%s", &build, quickfix,
|
|
|
|
L".Version");
|
2006-07-04 16:07:08 +02:00
|
|
|
|
2007-08-29 16:30:09 +02:00
|
|
|
ret = build;
|
|
|
|
dhFreeString (build);
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("getOSBuild error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-08-15 Esteban Sanchez <estebans@artica.es>
* autogen.sh, configure.in, Makefile.am, Doxyfile.in: Added to
repository. They are used to generate documentation, not to compile.
* main.cc: Added some comments. Style correction.
* pandora.[cc,h]: Added documentation comments. Changed visibility of
some attributes.
* pandora_agent_conf.[cc,h]: Added to Pandora namespace. Added
documentation comments.
* pandora_windows_service.[cc,h], pandora_strutils.[cc,h],
windows/pandora_windows_infp.[cc,h], ssh/pandora_ssh_test.[cc,h]:
Added documentation comments.
* ssh/pandora_ssh_client.[cc,h]:Added documentation comments. Removed
old method to connect with user and password. Style correction.
* misc/pandora_file.[cc,h]: Added documentation comments. Renamed some
parameters.
* modules/pandora_module.[cc,h]: Added documentation comments. Put a
name to the enumerators. Added a new class to agroupate all exceptions
produced by Pandora_Module child class objects. Changed visibility of
some attributes. Added some new methods and renamed others.
* modules/pandora_module_cpuusage.[cc,h],
modules/pandora_module_exec.[cc,h],
modules/pandora_module_freememory.[cc,h],
modules/pandora_module_freedisk.[cc,h], modules/pandora_module_proc.[cc,h],
modules/pandora_module_service.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes.
* modules/pandora_module_list.[cc,h]: Added documentation comments.
Some changes to adapt the objects to the Pandora_Module changes. Added
to Pandora_Modules namespace.
* windows/pandora_windows_wmi.[cc,h]: Added documentation comments.
Renamed Pandora_Wmi_Error to Pandora_Wmi_Exception.
* windows_service.[cc,h]: Added documentation comments. Changed
visibility of some attributes. Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@150 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-08-25 15:02:03 +02:00
|
|
|
/**
|
|
|
|
* Get the system name of the operating system.
|
|
|
|
*
|
|
|
|
* @return The system name of the operating system.
|
|
|
|
*/
|
2006-07-04 16:07:08 +02:00
|
|
|
string
|
|
|
|
Pandora_Wmi::getSystemName () {
|
2007-08-29 16:30:09 +02:00
|
|
|
CDhInitialize init;
|
2006-07-04 16:07:08 +02:00
|
|
|
CDispPtr wmi_svc, quickfixes;
|
2007-08-29 16:30:09 +02:00
|
|
|
char *name = NULL;
|
2006-07-04 16:07:08 +02:00
|
|
|
string ret;
|
|
|
|
|
|
|
|
try {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
2006-07-04 16:07:08 +02:00
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
2007-08-29 16:30:09 +02:00
|
|
|
L".ExecQuery(%S)",
|
|
|
|
L"SELECT * FROM Win32_OperatingSystem "));
|
2006-07-04 16:07:08 +02:00
|
|
|
|
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2007-08-29 16:30:09 +02:00
|
|
|
dhGetValue (L"%s", &name, quickfix,
|
|
|
|
L".CSName");
|
2006-07-04 16:07:08 +02:00
|
|
|
|
2007-08-29 16:30:09 +02:00
|
|
|
ret = name;
|
|
|
|
dhFreeString (name);
|
|
|
|
|
2006-07-04 16:07:08 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
2006-07-05 16:02:05 +02:00
|
|
|
pandoraLog ("getSystemName error. %s", errstr.c_str ());
|
2006-07-04 16:07:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2008-06-13 12:32:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of events that match a given pattern.
|
|
|
|
*
|
|
|
|
* @return The list of events.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Pandora_Wmi::getEventList (string source, string type, string pattern, int interval, list<string> &event_list) {
|
|
|
|
CDhInitialize init;
|
|
|
|
CDispPtr wmi_svc, quickfixes;
|
|
|
|
char *value = NULL;
|
2008-07-09 14:46:22 +02:00
|
|
|
WCHAR *unicode_value;
|
2008-06-13 12:32:47 +02:00
|
|
|
string event, limit, message, query, timestamp;
|
2008-07-09 14:46:22 +02:00
|
|
|
char *encode;
|
|
|
|
|
|
|
|
limit = getTimestampLimit (interval);
|
|
|
|
if (limit.empty()) {
|
2008-06-13 12:32:47 +02:00
|
|
|
pandoraDebug ("Pandora_Wmi::getEventList: getTimestampLimit error");
|
2008-07-09 14:46:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-06-13 12:32:47 +02:00
|
|
|
// Build the WQL query
|
|
|
|
query = "SELECT * FROM Win32_NTLogEvent WHERE TimeWritten >= '" + limit + "'";
|
2008-07-09 14:46:22 +02:00
|
|
|
if (! source.empty()) {
|
|
|
|
query += " AND Logfile = '" + source + "'";
|
|
|
|
}
|
|
|
|
if (! type.empty()) {
|
|
|
|
query += " AND Type = '" + type + "'";
|
|
|
|
}
|
|
|
|
|
2008-06-13 12:32:47 +02:00
|
|
|
try {
|
|
|
|
dhCheck (dhGetObject (getWmiStr (L"."), NULL, &wmi_svc));
|
|
|
|
dhCheck (dhGetValue (L"%o", &quickfixes, wmi_svc,
|
|
|
|
L".ExecQuery(%s)",
|
|
|
|
query.c_str()));
|
|
|
|
|
|
|
|
FOR_EACH (quickfix, quickfixes, NULL) {
|
2008-07-09 14:46:22 +02:00
|
|
|
// Timestamp
|
2008-06-13 12:32:47 +02:00
|
|
|
dhGetValue (L"%s", &value, quickfix,
|
|
|
|
L".TimeWritten");
|
|
|
|
timestamp = value;
|
|
|
|
dhFreeString (value);
|
|
|
|
|
2008-07-09 14:46:22 +02:00
|
|
|
// Message
|
|
|
|
dhGetValue (L"%S", &unicode_value, quickfix,
|
2008-06-13 12:32:47 +02:00
|
|
|
L".Message");
|
2008-07-09 14:46:22 +02:00
|
|
|
value = Pandora_Strutils::strUnicodeToAnsi (unicode_value);
|
|
|
|
message = Pandora_Strutils::trim (value);
|
2008-06-13 12:32:47 +02:00
|
|
|
dhFreeString (value);
|
|
|
|
|
2008-07-09 14:46:22 +02:00
|
|
|
// LIKE is not always available, we have to filter ourselves
|
|
|
|
if (pattern.empty () || (message.find (pattern) != string::npos)) {
|
|
|
|
event = timestamp + " " + message;
|
|
|
|
event_list.push_back(event);
|
|
|
|
}
|
|
|
|
|
2008-06-13 12:32:47 +02:00
|
|
|
} NEXT_THROW (quickfix);
|
|
|
|
} catch (string errstr) {
|
|
|
|
pandoraDebug ("Pandora_Wmi::getEventList: error: %s", errstr.c_str ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the limit date (WMI format) for event searches.
|
|
|
|
*
|
|
|
|
* @return The timestamp in WMI format.
|
|
|
|
*/
|
|
|
|
string
|
|
|
|
Pandora_Wmi::getTimestampLimit (int interval) {
|
2008-07-09 14:46:22 +02:00
|
|
|
char limit_str[26], diff_sign;
|
|
|
|
time_t limit_time, limit_time_utc, limit_diff;
|
|
|
|
struct tm *limit_tm = NULL, *limit_tm_utc = NULL;
|
|
|
|
|
|
|
|
// Get current time
|
|
|
|
limit_time = time(0);
|
|
|
|
if (limit_time == (time_t)-1) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get UTC time
|
|
|
|
limit_tm_utc = gmtime (&limit_time);
|
|
|
|
limit_time_utc = mktime (limit_tm_utc);
|
|
|
|
|
|
|
|
// Calculate the difference in minutes
|
|
|
|
limit_diff = limit_time - limit_time_utc;
|
|
|
|
if (limit_diff >= 0) {
|
|
|
|
diff_sign = '+';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
diff_sign = '-';
|
|
|
|
}
|
|
|
|
limit_diff = abs(limit_diff);
|
|
|
|
limit_diff /= 60;
|
|
|
|
|
|
|
|
// Substract the agent interval
|
2008-07-30 17:27:14 +02:00
|
|
|
limit_time -= interval;
|
2008-07-09 14:46:22 +02:00
|
|
|
|
2008-07-24 09:56:14 +02:00
|
|
|
limit_tm = localtime (&limit_time);
|
2008-07-09 14:46:22 +02:00
|
|
|
if (limit_tm == NULL) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// WMI date format: yyyymmddHHMMSS.xxxxxx+UUU
|
|
|
|
snprintf (limit_str, 26, "%.4d%.2d%.2d%.2d%.2d%.2d.000000%c%.3d",
|
|
|
|
limit_tm->tm_year + 1900, limit_tm->tm_mon + 1,
|
|
|
|
limit_tm->tm_mday, limit_tm->tm_hour,
|
|
|
|
limit_tm->tm_min, limit_tm->tm_sec, diff_sign, limit_diff);
|
|
|
|
limit_str[25] = '\0';
|
|
|
|
|
|
|
|
return string (limit_str);
|
2008-06-13 12:32:47 +02:00
|
|
|
}
|
|
|
|
|
2008-07-09 14:46:22 +02:00
|
|
|
/**
|
2008-06-19 17:55:44 +02:00
|
|
|
* Converts a date in WMI format to SYSTEMTIME format.
|
2008-07-09 14:46:22 +02:00
|
|
|
*
|
|
|
|
* @param wmi_date Date in WMI format
|
|
|
|
* @param system_time Output system time variable
|
2008-06-13 12:32:47 +02:00
|
|
|
*/
|
2008-06-19 17:55:44 +02:00
|
|
|
void
|
2008-07-09 14:46:22 +02:00
|
|
|
Pandora_Wmi::convertWMIDate (string wmi_date, SYSTEMTIME *system_time)
|
|
|
|
{
|
|
|
|
system_time->wYear = atoi (wmi_date.substr (0, 4).c_str());
|
|
|
|
system_time->wMonth = atoi (wmi_date.substr (4, 2).c_str());
|
|
|
|
system_time->wDay = atoi (wmi_date.substr (6, 2).c_str());
|
|
|
|
system_time->wHour = atoi (wmi_date.substr (8, 2).c_str());
|
|
|
|
system_time->wMinute = atoi (wmi_date.substr (10, 2).c_str());
|
|
|
|
system_time->wSecond = atoi (wmi_date.substr (12, 2).c_str());
|
2008-06-13 12:32:47 +02:00
|
|
|
}
|