2019-02-13 14:56:10 +01:00
package PandoraFMS::DiscoveryServer ;
2020-03-16 23:52:20 +01:00
################################################################################
2019-02-13 14:56:10 +01:00
# Pandora FMS Discovery Server.
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Pandora FMS. the Flexible Monitoring System. http://www.pandorafms.org
2020-03-16 23:52:20 +01:00
################################################################################
2009-06-08 17:12:32 +02:00
# Copyright (c) 2005-2009 Artica Soluciones Tecnologicas S.L
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
#
# This program 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; version 2
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
use strict ;
use warnings ;
use threads ;
use threads::shared ;
use Thread::Semaphore ;
use IO::Socket::INET ;
2009-04-20 11:44:24 +02:00
use POSIX qw( strftime ceil ) ;
2014-04-22 11:22:08 +02:00
use JSON qw( decode_json encode_json ) ;
2014-05-08 07:12:08 +02:00
use Encode qw( encode_utf8 ) ;
2019-02-20 18:24:32 +01:00
use MIME::Base64 ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
2010-05-19 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/Config.pm,
lib/PandoraFMS/Server.pm, lib/PandoraFMS/NetworkServer.pm,
lib/PandoraFMS/GIS.pm, lib/PandoraFMS/WMIServer.pm,
lib/PandoraFMS/PluginServer.pm, lib/PandoraFMS/ProducerConsumerServer.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
bin/pandora_server, util/pandora_db.pl, util/gpx2pandora_agent_data.pl,
util/pandora_manage.pl, util/pandora_dbstress.pl: Added the default library path
used by RPM and DEB packages.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2755 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-05-19 18:59:00 +02:00
# Default lib dir for RPM and DEB packages
use lib '/usr/lib/perl5' ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
use PandoraFMS::Tools ;
use PandoraFMS::DB ;
use PandoraFMS::Core ;
use PandoraFMS::ProducerConsumerServer ;
2018-07-05 15:01:23 +02:00
use PandoraFMS::GIS ;
2017-03-13 11:13:45 +01:00
use PandoraFMS::Recon::Base ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Inherits from PandoraFMS::ProducerConsumerServer
our @ ISA = qw( PandoraFMS::ProducerConsumerServer ) ;
# Global variables
my @ TaskQueue : shared ;
my % PendingTasks : shared ;
2013-08-01 11:54:21 +02:00
my $ Sem : shared ;
my $ TaskSem : shared ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
2017-03-08 13:20:00 +01:00
# IDs from tconfig_os.
2019-04-10 20:40:03 +02:00
use constant {
2020-03-18 10:28:50 +01:00
OS_OTHER = > 10 ,
OS_ROUTER = > 17 ,
OS_SWITCH = > 18 ,
STEP_SCANNING = > 1 ,
STEP_AFT = > 2 ,
STEP_TRACEROUTE = > 3 ,
STEP_GATEWAY = > 4 ,
2020-03-18 19:31:58 +01:00
STEP_MONITORING = > 5 ,
2020-03-19 18:33:04 +01:00
STEP_PROCESSING = > 6 ,
2020-03-18 10:28:50 +01:00
STEP_STATISTICS = > 1 ,
STEP_APP_SCAN = > 2 ,
STEP_CUSTOM_QUERIES = > 3 ,
DISCOVERY_HOSTDEVICES = > 0 ,
DISCOVERY_HOSTDEVICES_CUSTOM = > 1 ,
DISCOVERY_CLOUD_AWS = > 2 ,
DISCOVERY_APP_VMWARE = > 3 ,
DISCOVERY_APP_MYSQL = > 4 ,
DISCOVERY_APP_ORACLE = > 5 ,
DISCOVERY_CLOUD_AWS_EC2 = > 6 ,
DISCOVERY_CLOUD_AWS_RDS = > 7 ,
DISCOVERY_CLOUD_AZURE_COMPUTE = > 8 ,
DISCOVERY_DEPLOY_AGENTS = > 9 ,
DISCOVERY_APP_SAP = > 10 ,
2020-03-25 18:02:58 +01:00
DISCOVERY_REVIEW = > 0 ,
2020-03-18 10:28:50 +01:00
DISCOVERY_STANDARD = > 1 ,
DISCOVERY_RESULTS = > 2 ,
2019-04-10 20:40:03 +02:00
} ;
2017-03-08 13:20:00 +01:00
2020-03-16 23:52:20 +01:00
################################################################################
2019-02-13 14:56:10 +01:00
# Discovery Server class constructor.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
sub new ($$$$$$) {
2020-03-18 10:28:50 +01:00
my ( $ class , $ config , $ dbh ) = @ _ ;
return undef unless ( defined ( $ config - > { 'reconserver' } ) && $ config - > { 'reconserver' } == 1 )
|| ( defined ( $ config - > { 'discoveryserver' } ) && $ config - > { 'discoveryserver' } == 1 ) ;
if ( ! - e $ config - > { 'nmap' } ) {
logger ( $ config , ' [E] ' . $ config - > { 'nmap' } . " needed by " . $ config - > { 'rb_product_name' } . " Discovery Server not found." , 1 ) ;
print_message ( $ config , ' [E] ' . $ config - > { 'nmap' } . " needed by " . $ config - > { 'rb_product_name' } . " Discovery Server not found." , 1 ) ;
return undef ;
}
# Initialize semaphores and queues
@ TaskQueue = ( ) ;
% PendingTasks = ( ) ;
$ Sem = Thread::Semaphore - > new ;
$ TaskSem = Thread::Semaphore - > new ( 0 ) ;
# Restart automatic recon tasks.
db_do ( $ dbh , 'UPDATE trecon_task SET utimestamp = 0 WHERE id_recon_server = ? AND status <> -1 AND interval_sweep > 0' ,
get_server_id ( $ dbh , $ config - > { 'servername' } , DISCOVERYSERVER ) ) ;
# Reset (but do not restart) manual recon tasks.
db_do ( $ dbh , 'UPDATE trecon_task SET status = -1 WHERE id_recon_server = ? AND status <> -1 AND interval_sweep = 0' ,
get_server_id ( $ dbh , $ config - > { 'servername' } , DISCOVERYSERVER ) ) ;
# Call the constructor of the parent class
my $ self = $ class - > SUPER:: new ( $ config , DISCOVERYSERVER , \ & PandoraFMS::DiscoveryServer:: data_producer , \ & PandoraFMS::DiscoveryServer:: data_consumer , $ dbh ) ;
bless $ self , $ class ;
return $ self ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Run.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
sub run ($) {
2020-03-18 10:28:50 +01:00
my $ self = shift ;
my $ pa_config = $ self - > getConfig ( ) ;
my $ dbh = $ self - > getDBH ( ) ;
print_message ( $ pa_config , " [*] Starting " . $ pa_config - > { 'rb_product_name' } . " Discovery Server." , 1 ) ;
my $ threads = $ pa_config - > { 'recon_threads' } ;
# Use hightest value
if ( $ pa_config - > { 'discovery_threads' } > $ pa_config - > { 'recon_threads' } ) {
$ threads = $ pa_config - > { 'discovery_threads' } ;
}
$ self - > setNumThreads ( $ threads ) ;
$ self - > SUPER:: run ( \ @ TaskQueue , \ % PendingTasks , $ Sem , $ TaskSem ) ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Data producer.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
sub data_producer ($) {
2020-03-18 10:28:50 +01:00
my $ self = shift ;
my ( $ pa_config , $ dbh ) = ( $ self - > getConfig ( ) , $ self - > getDBH ( ) ) ;
my @ tasks ;
my $ server_id = get_server_id ( $ dbh , $ pa_config - > { 'servername' } , $ self - > getServerType ( ) ) ;
return @ tasks unless defined ( $ server_id ) ;
# Manual tasks have interval_sweep = 0
# Manual tasks are "forced" like the other, setting the utimestamp to 1
# By default, after create a tasks it takes the utimestamp to 0
# Status -1 means "done".
my @ rows ;
if ( pandora_is_master ( $ pa_config ) == 0 ) {
@ rows = get_db_rows ( $ dbh , ' SELECT * FROM trecon_task
WHERE id_recon_server = ?
AND disabled = 0
AND ( ( utimestamp = 0 AND interval_sweep != 0 OR status = 1 )
OR ( status = - 1 AND interval_sweep > 0 AND ( utimestamp + interval_sweep ) < UNIX_TIMESTAMP ( ) ) ) ' , $ server_id ) ;
} else {
@ rows = get_db_rows ( $ dbh , ' SELECT * FROM trecon_task
WHERE ( id_recon_server = ? OR id_recon_server = ANY ( SELECT id_server FROM tserver WHERE status = 0 AND server_type = ? ) )
AND disabled = 0
AND ( ( utimestamp = 0 AND interval_sweep != 0 OR status = 1 )
OR ( status = - 1 AND interval_sweep > 0 AND ( utimestamp + interval_sweep ) < UNIX_TIMESTAMP ( ) ) ) ' , $ server_id , DISCOVERYSERVER ) ;
}
foreach my $ row ( @ rows ) {
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Update task status
update_recon_task ( $ dbh , $ row - > { 'id_rt' } , 1 ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
push ( @ tasks , $ row - > { 'id_rt' } ) ;
}
return @ tasks ;
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Data consumer.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
sub data_consumer ($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ task_id ) = @ _ ;
my ( $ pa_config , $ dbh ) = ( $ self - > getConfig ( ) , $ self - > getDBH ( ) ) ;
# Get server id.
my $ server_id = get_server_id ( $ dbh , $ pa_config - > { 'servername' } , $ self - > getServerType ( ) ) ;
# Get recon task data
my $ task = get_db_single_row ( $ dbh , 'SELECT * FROM trecon_task WHERE id_rt = ?' , $ task_id ) ;
return - 1 unless defined ( $ task ) ;
# Is it a recon script?
if ( defined ( $ task - > { 'id_recon_script' } ) && ( $ task - > { 'id_recon_script' } != 0 ) ) {
exec_recon_script ( $ pa_config , $ dbh , $ task ) ;
return ;
} else {
logger ( $ pa_config , 'Starting recon task for net ' . $ task - > { 'subnet' } . '.' , 10 ) ;
}
eval {
my @ subnets = split ( /,/ , safe_output ( $ task - > { 'subnet' } ) ) ;
my @ communities = split ( /,/ , safe_output ( $ task - > { 'snmp_community' } ) ) ;
my @ auth_strings = ( ) ;
if ( defined ( $ task - > { 'auth_strings' } ) ) {
@ auth_strings = split ( /,/ , safe_output ( $ task - > { 'auth_strings' } ) ) ;
}
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
my $ main_event = pandora_event ( $ pa_config , "[Discovery] Execution summary" , $ task - > { 'id_group' } , 0 , 0 , 0 , 0 , 'system' , 0 , $ dbh ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
my % cnf_extra ;
my $ r = enterprise_hook ( 'discovery_generate_extra_cnf' , [ $ pa_config , $ dbh , $ task , \ % cnf_extra ] ) ;
if ( defined ( $ r ) && $ r eq 'ERR' ) {
# Could not generate extra cnf, skip this task.
return ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
if ( $ task - > { 'type' } == DISCOVERY_APP_SAP ) {
# SAP TASK, retrieve license.
$ task - > { 'sap_license' } = pandora_get_config_value (
$ dbh ,
'sap_license'
) ;
# Retrieve credentials for task (optional).
if ( defined ( $ task - > { 'auth_strings' } )
&& $ task - > { 'auth_strings' } ne ''
) {
my $ key = credential_store_get_key (
$ pa_config ,
$ dbh ,
$ task - > { 'auth_strings' }
2019-04-10 20:40:03 +02:00
) ;
2020-03-18 10:28:50 +01:00
# Inside an eval, here it shouln't fail unless bad configured.
$ task - > { 'username' } = $ key - > { 'username' } ;
$ task - > { 'password' } = $ key - > { 'password' } ;
2019-04-10 23:16:18 +02:00
2020-03-18 10:28:50 +01:00
}
}
2019-07-23 13:01:50 +02:00
2020-03-18 10:28:50 +01:00
my $ recon = new PandoraFMS::Recon:: Base (
communities = > \ @ communities ,
dbh = > $ dbh ,
group_id = > $ task - > { 'id_group' } ,
id_os = > $ task - > { 'id_os' } ,
id_network_profile = > $ task - > { 'id_network_profile' } ,
os_detection = > $ task - > { 'os_detect' } ,
parent_detection = > $ task - > { 'parent_detection' } ,
parent_recursion = > $ task - > { 'parent_recursion' } ,
pa_config = > $ pa_config ,
recon_ports = > $ task - > { 'recon_ports' } ,
resolve_names = > $ task - > { 'resolve_names' } ,
snmp_auth_user = > $ task - > { 'snmp_auth_user' } ,
snmp_auth_pass = > $ task - > { 'snmp_auth_pass' } ,
snmp_auth_method = > $ task - > { 'snmp_auth_method' } ,
snmp_checks = > $ task - > { 'snmp_checks' } ,
snmp_enabled = > $ task - > { 'snmp_enabled' } ,
snmp_privacy_method = > $ task - > { 'snmp_privacy_method' } ,
snmp_privacy_pass = > $ task - > { 'snmp_privacy_pass' } ,
snmp_security_level = > $ task - > { 'snmp_security_level' } ,
snmp_timeout = > $ task - > { 'snmp_timeout' } ,
snmp_version = > $ task - > { 'snmp_version' } ,
subnets = > \ @ subnets ,
task_id = > $ task - > { 'id_rt' } ,
vlan_cache_enabled = > $ task - > { 'vlan_enabled' } ,
wmi_enabled = > $ task - > { 'wmi_enabled' } ,
auth_strings_array = > \ @ auth_strings ,
autoconfiguration_enabled = > $ task - > { 'autoconfiguration_enabled' } ,
main_event_id = > $ main_event ,
server_id = > $ server_id ,
% { $ pa_config } ,
task_data = > $ task ,
public_url = > PandoraFMS::Config:: pandora_get_tconfig_token ( $ dbh , 'public_url' , '' ) ,
% cnf_extra
) ;
2019-07-23 13:01:50 +02:00
2020-03-18 10:28:50 +01:00
$ recon - > scan ( ) ;
# Clean tmp file.
if ( defined ( $ cnf_extra { 'creds_file' } )
&& - f $ cnf_extra { 'creds_file' } ) {
unlink ( $ cnf_extra { 'creds_file' } ) ;
}
# Clean one shot tasks
if ( $ task - > { 'type' } eq DISCOVERY_DEPLOY_AGENTS ) {
db_delete_limit ( $ dbh , ' trecon_task ' , ' id_rt = ? ' , 1 , $ task - > { 'id_rt' } ) ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
} ;
if ( $@ ) {
logger (
$ pa_config ,
'Cannot execute Discovery task: ' . safe_output ( $ task - > { 'name' } ) . $@ ,
10
) ;
update_recon_task ( $ dbh , $ task_id , - 1 ) ;
return ;
}
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
# Update recon task status.
2020-03-16 23:52:20 +01:00
################################################################################
2009-04-16 20:19:39 +02:00
sub update_recon_task ($$$) {
2020-03-18 10:28:50 +01:00
my ( $ dbh , $ id_task , $ status ) = @ _ ;
db_do ( $ dbh , 'UPDATE trecon_task SET utimestamp = ?, status = ? WHERE id_rt = ?' , time ( ) , $ status , $ id_task ) ;
2011-08-13 04:38:36 +02:00
}
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
2020-03-16 23:52:20 +01:00
################################################################################
2010-10-15 15:00:25 +02:00
# Executes recon scripts
2020-03-16 23:52:20 +01:00
################################################################################
2010-10-15 15:00:25 +02:00
sub exec_recon_script ($$$) {
2020-03-18 10:28:50 +01:00
my ( $ pa_config , $ dbh , $ task ) = @ _ ;
# Get recon plugin data
my $ script = get_db_single_row ( $ dbh , 'SELECT * FROM trecon_script WHERE id_recon_script = ?' , $ task - > { 'id_recon_script' } ) ;
return - 1 unless defined ( $ script ) ;
logger ( $ pa_config , 'Executing recon script ' . safe_output ( $ script - > { 'name' } ) , 10 ) ;
my $ command = safe_output ( $ script - > { 'script' } ) ;
my $ macros = safe_output ( $ task - > { 'macros' } ) ;
# \r and \n should be escaped for decode_json().
$ macros =~ s/\n/\\n/g ;
$ macros =~ s/\r/\\r/g ;
my $ decoded_macros ;
if ( $ macros ) {
eval {
$ decoded_macros = decode_json ( encode_utf8 ( $ macros ) ) ;
} ;
}
my $ macros_parameters = '' ;
# Add module macros as parameter
if ( ref ( $ decoded_macros ) eq "HASH" ) {
# Convert the hash to a sorted array
my @ sorted_macros ;
while ( my ( $ i , $ m ) = each ( % { $ decoded_macros } ) ) {
$ sorted_macros [ $ i ] = $ m ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
# Remove the 0 position
shift @ sorted_macros ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
foreach my $ m ( @ sorted_macros ) {
$ macros_parameters = $ macros_parameters . ' "' . $ m - > { "value" } . '"' ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
}
my $ ent_script = 0 ;
2020-03-19 18:33:04 +01:00
my $ args = enterprise_hook (
'discovery_custom_recon_scripts' ,
[ $ pa_config , $ dbh , $ task , $ script ]
) ;
2020-03-18 10:28:50 +01:00
if ( ! $ args ) {
2020-03-19 18:33:04 +01:00
$ args = '"' . $ task - > { 'id_rt' } . '" ' ;
$ args . = '"' . $ task - > { 'id_group' } . '" ' ;
$ args . = $ macros_parameters ;
2020-03-18 10:28:50 +01:00
} else {
$ ent_script = 1 ;
}
if ( - x $ command ) {
my $ exec_output = `$command $args` ;
logger ( $ pa_config , "Execution output: \n" . $ exec_output , 10 ) ;
} else {
logger ( $ pa_config , "Cannot execute recon task command $command." , 10 ) ;
}
# Only update the timestamp in case something went wrong. The script should set the status.
db_do ( $ dbh , 'UPDATE trecon_task SET utimestamp = ? WHERE id_rt = ?' , time ( ) , $ task - > { 'id_rt' } ) ;
if ( $ ent_script == 1 ) {
enterprise_hook ( 'discovery_clean_custom_recon' , [ $ pa_config , $ dbh , $ task , $ script ] ) ;
}
logger ( $ pa_config , 'Done executing recon script ' . safe_output ( $ script - > { 'name' } ) , 10 ) ;
return 0 ;
2010-10-15 15:00:25 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Guess the OS using xprobe2 or nmap.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::guess_os($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ device ) = @ _ ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
$ DEVNULL = '/dev/null' if ( ! defined ( $ DEVNULL ) ) ;
$ DEVNULL = '/NUL' if ( $^O =~ /win/i && ! defined ( $ DEVNULL ) ) ;
2019-09-24 19:07:55 +02:00
2020-03-18 10:28:50 +01:00
# OS detection disabled. Use the device type.
if ( $ self - > { 'os_detection' } == 0 ) {
my $ device_type = $ self - > get_device_type ( $ device ) ;
return OS_OTHER unless defined ( $ device_type ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
return OS_ROUTER if ( $ device_type eq 'router' ) ;
return OS_SWITCH if ( $ device_type eq 'switch' ) ;
return OS_OTHER ;
}
# Use xprobe2 if available
if ( - x $ self - > { 'pa_config' } - > { 'xprobe2' } ) {
my $ return = `"$self->{pa_config}->{xprobe2}" $device 2>$DEVNULL` ;
if ( $? == 0 ) {
if ( $ return =~ /Running OS:(.*)/ ) {
return pandora_get_os ( $ self - > { 'dbh' } , $ 1 ) ;
}
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
}
# Use nmap by default
if ( - x $ self - > { 'pa_config' } - > { 'nmap' } ) {
my $ return = `"$self->{pa_config}->{nmap}" -F -O $device 2>$DEVNULL` ;
return OS_OTHER if ( $? != 0 ) ;
if ( $ return =~ /Aggressive OS guesses:\s*(.*)/ ) {
return pandora_get_os ( $ self - > { 'dbh' } , $ 1 ) ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
}
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
return OS_OTHER ;
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Returns the number of open ports from the given list.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::tcp_scan ($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ host ) = @ _ ;
2017-03-08 13:20:00 +01:00
2020-03-18 10:28:50 +01:00
my $ r = `"$self->{pa_config}->{nmap}" -p$self->{recon_ports} $host` ;
2019-09-24 19:07:55 +02:00
2020-03-18 10:28:50 +01:00
# Same as ""| grep open | wc -l" but multi-OS;
my $ open_ports = ( ) = $ r =~ /open/gm ;
2019-09-24 19:07:55 +02:00
2020-03-18 10:28:50 +01:00
return $ open_ports ;
2017-03-08 13:20:00 +01:00
}
2020-03-19 14:11:09 +01:00
################################################################################
# Verifies if a module will be normal.
################################################################################
sub PandoraFMS ::Recon::Base::test_module($$) {
my ( $ self , $ addr , $ module ) = @ _ ;
# Default values.
my $ test = {
% { $ module } ,
'ip_target' = > $ addr ,
} ;
if ( is_enabled ( $ module - > { '__module_component' } ) ) {
# Component. Translate some fields.
$ test - > { 'id_tipo_modulo' } = $ module - > { 'type' } ;
} else {
# Module.
$ test - > { 'id_tipo_modulo' } = $ module - > { 'id_modulo' } ;
}
my $ value ;
# 1. Try to retrieve value.
if ( $ test - > { 'id_tipo_modulo' } >= 15 && $ test - > { 'id_tipo_modulo' } <= 18 ) {
# SNMP
$ value = $ self - > call (
2020-03-25 18:02:58 +01:00
'snmp_get_value' ,
2020-03-19 14:11:09 +01:00
$ test - > { 'ip_target' } ,
$ test - > { 'snmp_oid' }
) ;
} elsif ( $ test - > { 'id_tipo_modulo' } == 6 ) {
# ICMP - alive - already tested.
$ value = 1 ;
} elsif ( $ test - > { 'id_tipo_modulo' } == 7 ) {
# ICMP - latency
$ value = pandora_ping_latency (
$ self - > { 'pa_config' } ,
$ test - > { 'ip_target' } ,
$ test - > { 'max_timeout' } ,
$ test - > { 'max_retries' } ,
) ;
} elsif ( ( $ test - > { 'id_tipo_modulo' } >= 1 && $ test - > { 'id_tipo_modulo' } <= 5 )
|| ( $ test - > { 'id_tipo_modulo' } >= 21 && $ test - > { 'id_tipo_modulo' } <= 23 )
&& is_enabled ( $ test - > { 'id_plugin' } )
) {
# Generic, plugins. (21-23 ASYNC)
# XXX TODO: Test plugins.
return 1 ;
} elsif ( $ test - > { 'id_tipo_modulo' } >= 34 && $ test - > { 'id_tipo_modulo' } <= 37 ) {
# Remote command.
# XXX TODO: Test remote commands.
return 1 ;
} elsif ( $ test - > { 'id_tipo_modulo' } >= 8 && $ test - > { 'id_tipo_modulo' } <= 11 ) {
# TCP
return 0 unless is_numeric ( $ test - > { 'tcp_port' } )
&& $ test - > { 'tcp_port' } > 0
&& $ test - > { 'tcp_port' } <= 65535 ;
my $ result ;
PandoraFMS::NetworkServer:: pandora_query_tcp (
$ self - > { 'pa_config' } ,
$ test - > { 'tcp_port' } ,
$ test - > { 'ip_target' } ,
\ $ result ,
\ $ value ,
$ test - > { 'tcp_send' } ,
$ test - > { 'tcp_rcv' } ,
$ test - > { 'id_tipo_modulo' } ,
$ test - > { 'max_timeout' } ,
$ test - > { 'max_retries' } ,
'<Discovery testing>' ,
) ;
# Result 0 is OK, 1 failed
return 0 unless defined ( $ result ) && $ result == 0 ;
return 0 unless defined ( $ value ) ;
}
# Invalid data (empty or not defined)
return 0 if is_empty ( $ value ) ;
# 2. Check if value matches type definition and fits thresholds.
if ( is_in_array ( [ 1 , 2 , 4 , 5 , 6 , 7 , 8 , 9 , 11 , 15 , 16 , 18 , 21 , 22 , 25 , 30 , 31 , 32 , 34 , 35 , 37 ] , $ test - > { 'id_tipo_modulo' } ) ) {
# Numeric.
return 0 unless is_numeric ( $ value ) ;
if ( ! is_enabled ( $ test - > { 'critical_inverse' } ) ) {
return 0 if $ value >= $ test - > { 'min_critical' } && $ value <= $ test - > { 'max_critical' } ;
} else {
return 0 if $ value < $ test - > { 'min_critical' } && $ value > $ test - > { 'max_critical' } ;
}
if ( is_in_array ( [ 2 , 6 , 9 , 18 , 21 , 31 , 35 ] , $ test - > { 'id_tipo_modulo' } ) ) {
# Boolean.
if ( ! is_enabled ( $ test - > { 'critical_inverse' } ) ) {
return 0 if $ value == 0 ;
} else {
return 0 if $ value != 0 ;
}
}
} else {
# String.
if ( ! is_enabled ( $ test - > { 'critical_inverse' } ) ) {
return 0 if ! is_empty ( $ test - > { 'str_critical' } ) && $ value =~ /$test->{'str_critical'}/ ;
} else {
return 0 if ! is_empty ( $ test - > { 'str_critical' } ) && $ value !~ /$test->{'str_critical'}/ ;
}
}
# Success.
return 1 ;
}
2020-03-25 18:02:58 +01:00
################################################################################
# Create interface modules for the given agent (if needed).
################################################################################
sub PandoraFMS ::Recon::Base::create_interface_modules($$) {
my ( $ self , $ device ) = @ _ ;
# Add interfaces to the agent if it responds to SNMP.
return unless ( $ self - > is_snmp_discovered ( $ device ) ) ;
my $ community = $ self - > get_community ( $ device ) ;
my @ output = $ self - > snmp_get_value_array ( $ device , $ PandoraFMS:: Recon:: Base:: IFINDEX ) ;
foreach my $ if_index ( @ output ) {
next unless ( $ if_index =~ /^[0-9]+$/ ) ;
# Check the status of the interface.
my $ if_status = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index" ) ;
next unless $ if_status == 1 ;
# Fill the module description with the IP and MAC addresses.
my $ mac = $ self - > get_if_mac ( $ device , $ if_index ) ;
my $ ip = $ self - > get_if_ip ( $ device , $ if_index ) ;
my $ if_desc = ( $ mac ne '' ? "MAC $mac " : '' ) . ( $ ip ne '' ? "IP $ip" : '' ) ;
# Get the name of the network interface.
my $ if_name = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFNAME.$if_index" ) ;
$ if_name = "if$if_index" unless defined ( $ if_name ) ;
$ if_name =~ s/"//g ;
$ if_name = clean_blank ( $ if_name ) ;
# Interface status module.
$ self - > call (
'add_module' ,
$ device ,
{
'id_tipo_modulo' = > 18 ,
'id_modulo' = > 2 ,
'name' = > $ if_name . "_ifOperStatus" ,
'descripcion' = > safe_input (
$ if_desc
) ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'task_data' } { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'task_data' } { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'task_data' } { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'task_data' } { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'task_data' } { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'task_data' } { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'task_data' } { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index"
}
) ;
# Incoming traffic module.
my $ if_hc_in_octets = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFHCINOCTECTS.$if_index" ) ;
if ( defined ( $ if_hc_in_octets ) ) {
# Use HC counters.
# ifHCInOctets
$ self - > call (
'add_module' ,
$ device ,
{
'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'name' = > $ if_name . "_ifHCInOctets" ,
'descripcion' = > safe_input (
'The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets.'
) ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'task_data' } { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'task_data' } { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'task_data' } { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'task_data' } { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'task_data' } { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'task_data' } { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'task_data' } { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFHCINOCTECTS.$if_index"
}
) ;
} else {
# Use 32b counters.
# ifInOctets
$ self - > call (
'add_module' ,
$ device ,
{
'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'name' = > $ if_name . "_ifInOctets" ,
'descripcion' = > safe_input (
'The total number of octets received on the interface, including framing characters.'
) ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'task_data' } { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'task_data' } { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'task_data' } { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'task_data' } { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'task_data' } { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'task_data' } { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'task_data' } { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFINOCTECTS.$if_index"
}
) ;
}
# Outgoing traffic module.
my $ if_hc_out_octets = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFHCOUTOCTECTS.$if_index" ) ;
if ( defined ( $ if_hc_out_octets ) ) {
# Use HC counters.
# ifHCOutOctets
$ self - > call (
'add_module' ,
$ device ,
{
'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'name' = > $ if_name . "_ifHCOutOctets" ,
'descripcion' = > safe_input (
'The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifOutOctets.'
) ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'task_data' } { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'task_data' } { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'task_data' } { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'task_data' } { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'task_data' } { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'task_data' } { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'task_data' } { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFHCOUTOCTECTS.$if_index"
}
) ;
} else {
# Use 32b counters.
# ifOutOctets
$ self - > call (
'add_module' ,
$ device ,
{
'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'name' = > $ if_name . "_ifOutOctets" ,
'descripcion' = > safe_input (
'The total number of octets received on the interface, including framing characters.'
) ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'task_data' } { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'task_data' } { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'task_data' } { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'task_data' } { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'task_data' } { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'task_data' } { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'task_data' } { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFOUTOCTECTS.$if_index"
}
) ;
}
}
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Create network profile modules for the given agent.
2020-03-16 23:52:20 +01:00
################################################################################
2020-03-19 14:11:09 +01:00
sub PandoraFMS ::Recon::Base::create_network_profile_modules($$) {
my ( $ self , $ device ) = @ _ ;
2020-03-18 10:28:50 +01:00
2020-03-25 18:02:58 +01:00
my @ template_ids = ( ) ;
2020-03-18 10:28:50 +01:00
2020-03-25 18:02:58 +01:00
if ( is_enabled ( $ self - > { 'task_data' } { 'auto_monitor' } ) ) {
# Apply PEN monitoring template (HW).
push @ template_ids , get_pen_templates ( $ self - > { 'dbh' } , $ self - > get_pen ( $ device ) ) ;
} else {
# Return if no specific templates are selected.
return if is_empty ( $ self - > { 'id_network_profile' } ) ;
}
2020-03-18 19:31:58 +01:00
2020-03-25 18:02:58 +01:00
push @ template_ids , split /,/ , $ self - > { 'id_network_profile' }
unless is_empty ( $ self - > { 'id_network_profile' } ) ;
2020-03-18 19:31:58 +01:00
2020-03-19 14:11:09 +01:00
my $ data = $ self - > { 'agents_found' } { $ device } ;
2020-03-18 10:28:50 +01:00
2020-03-25 18:02:58 +01:00
foreach my $ t_id ( @ template_ids ) {
2020-03-19 14:11:09 +01:00
# 1. Retrieve template info.
2020-03-25 18:02:58 +01:00
my $ template = get_nc_profile_advanced ( $ self - > { 'dbh' } , $ t_id ) ;
2020-03-18 10:28:50 +01:00
2020-03-19 14:11:09 +01:00
# 2. Verify Private Enterprise Number matches (PEN)
if ( defined ( $ template - > { 'pen' } ) ) {
my @ penes = split ( ',' , $ template - > { 'pen' } ) ;
2020-03-18 10:28:50 +01:00
2020-03-19 14:11:09 +01:00
next unless ( is_in_array ( \ @ penes , $ data - > { 'pen' } ) ) ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
2020-03-25 18:02:58 +01:00
# 3. Retrieve module list from target template.
2020-03-19 14:11:09 +01:00
my @ np_components = get_db_rows (
$ self - > { 'dbh' } ,
'SELECT * FROM tnetwork_profile_component WHERE id_np = ?' ,
$ t_id
2020-03-18 19:31:58 +01:00
) ;
2020-03-19 14:11:09 +01:00
foreach my $ np_component ( @ np_components ) {
2020-03-25 18:02:58 +01:00
# 4. Register each module (candidate). 'add_module' will test them.
2020-03-19 14:11:09 +01:00
my $ component = get_db_single_row (
$ self - > { 'dbh' } ,
'SELECT * FROM tnetwork_component WHERE id_nc = ?' ,
$ np_component - > { 'id_nc' }
) ;
$ component - > { 'name' } = safe_output ( $ component - > { 'name' } ) ;
if ( $ component - > { 'type' } >= 15 && $ component - > { 'type' } <= 18 ) {
$ component - > { 'snmp_community' } = safe_output ( $ self - > get_community ( $ device ) ) ;
$ component - > { 'tcp_send' } = $ self - > { 'snmp_version' } ;
$ component - > { 'custom_string_1' } = $ self - > { 'snmp_privacy_method' } ;
$ component - > { 'custom_string_2' } = $ self - > { 'snmp_privacy_pass' } ;
$ component - > { 'custom_string_3' } = $ self - > { 'snmp_security_level' } ;
$ component - > { 'plugin_parameter' } = $ self - > { 'snmp_auth_method' } ;
$ component - > { 'plugin_user' } = $ self - > { 'snmp_auth_user' } ;
$ component - > { 'plugin_pass' } = $ self - > { 'snmp_auth_pass' } ;
}
$ component - > { '__module_component' } = 1 ;
# 3. Try to register module into monitoring list.
$ self - > call ( 'add_module' , $ device , $ component ) ;
}
2020-03-18 10:28:50 +01:00
}
2020-03-19 14:11:09 +01:00
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
# Create agents and modules reported by Recon::Base.
################################################################################
sub PandoraFMS ::Recon::Base::report_scanned_agents($) {
2020-03-18 10:28:50 +01:00
my ( $ self ) = @ _ ;
2020-03-18 19:31:58 +01:00
my $ force_creation = 0 ;
2020-03-25 18:02:58 +01:00
if ( defined ( $ self - > { 'task_data' } { 'review_mode' } )
&& $ self - > { 'task_data' } { 'review_mode' } == DISCOVERY_STANDARD
2020-03-18 19:31:58 +01:00
) {
$ force_creation = 1 ;
}
#
# Creation
#
2020-03-25 18:02:58 +01:00
if ( defined ( $ self - > { 'task_data' } { 'review_mode' } )
&& $ self - > { 'task_data' } { 'review_mode' } == DISCOVERY_RESULTS
2020-03-18 10:28:50 +01:00
) {
# Load cache.
my @ rows = get_db_rows (
$ self - > { 'dbh' } ,
'SELECT * FROM tdiscovery_tmp_agents WHERE `id_rt`=?' ,
$ self - > { 'task_data' } { 'id_rt' }
) ;
2020-03-16 23:52:20 +01:00
2020-03-18 19:31:58 +01:00
my @ agents ;
my $ progress = 0 ;
my $ step = 100.00 / scalar @ rows ;
2020-03-18 10:28:50 +01:00
foreach my $ row ( @ rows ) {
2020-03-18 19:31:58 +01:00
$ progress += $ step ;
$ self - > call ( 'update_progress' , $ progress ) ;
2020-03-18 10:28:50 +01:00
my $ name = safe_output ( $ row - > { 'label' } ) ;
2020-03-23 19:09:22 +01:00
my $ checked = 0 ;
2020-03-18 10:28:50 +01:00
my $ data ;
eval {
local $ SIG { __DIE__ } ;
2020-03-18 19:31:58 +01:00
$ data = decode_json ( decode_base64 ( $ row - > { 'data' } ) ) ;
2020-03-18 10:28:50 +01:00
} ;
2020-03-18 19:31:58 +01:00
if ( $@ ) {
$ self - > call ( 'message' , "ERROR JSON: $@" , 3 ) ;
}
2020-03-18 10:28:50 +01:00
2020-03-23 19:09:22 +01:00
# Agent could be 'not checked' unless all modules are selected.
if ( ref ( $ data - > { 'modules' } ) eq 'HASH' ) {
my @ map = map {
my $ name = $ _ - > { 'name' } ;
$ name = $ _ - > { 'nombre' } if is_empty ( $ name ) ;
if ( is_enabled ( $ _ - > { 'checked' } )
&& $ name ne 'Host Alive'
) {
$ name ;
} else { }
} values % { $ data - > { 'modules' } } ;
$ checked = scalar @ map ;
}
$ checked = $ data - > { 'agent' } { 'checked' }
if $ checked < $ data - > { 'agent' } { 'checked' } ;
2020-03-18 19:31:58 +01:00
# Register target agent if enabled.
2020-03-23 19:09:22 +01:00
if ( is_enabled ( $ checked )
2020-03-18 19:31:58 +01:00
|| $ force_creation
) {
my $ parent_id ;
my $ os_id = $ self - > guess_os ( $ data - > { 'agent' } { 'direccion' } ) ;
$ self - > call ( 'message' , "Agent accepted: " . $ data - > { 'agent' } { 'nombre' } , 5 ) ;
# Agent creation.
my $ agent_id = $ data - > { 'agent' } { 'agent_id' } ;
2020-03-23 19:09:22 +01:00
my $ agent_learning ;
2020-03-18 19:31:58 +01:00
2020-03-23 19:09:22 +01:00
if ( defined ( $ agent_id ) && $ agent_id > 0 ) {
2020-03-19 18:33:04 +01:00
$ agent_learning = get_db_value (
$ self - > { 'dbh' } ,
'SELECT modo FROM tagente WHERE id_agente = ?' ,
$ agent_id
) ;
}
if ( ! defined ( $ agent_learning ) ) {
# Agent id does not exists or is invalid.
2020-03-23 19:09:22 +01:00
# Check if has been created by another process.
$ agent_id = get_db_value (
$ self - > { 'dbh' } ,
'SELECT id_agente FROM tagente WHERE nombre = ?' ,
safe_input ( $ data - > { 'agent' } - > { 'name' } )
2020-03-18 19:31:58 +01:00
) ;
2020-03-23 19:09:22 +01:00
if ( ! defined ( $ agent_id ) || $ agent_id <= 0 ) {
$ agent_id = pandora_create_agent (
$ self - > { 'pa_config' } , $ self - > { 'servername' } , $ data - > { 'agent' } { 'nombre' } ,
$ data - > { 'agent' } { 'direccion' } , $ self - > { 'task_data' } { 'group_id' } , $ parent_id ,
$ os_id , $ data - > { 'agent' } - > { 'description' } ,
$ data - > { 'agent' } { 'interval' } , $ self - > { 'dbh' } ,
$ data - > { 'agent' } { 'timezone_offset' }
) ;
$ agent_learning = 1 ;
} else {
# Read from effective agent_id.
$ agent_learning = get_db_value (
$ self - > { 'dbh' } ,
'SELECT modo FROM tagente WHERE id_agente = ?' ,
$ agent_id
) ;
}
2020-03-18 19:31:58 +01:00
$ data - > { 'agent' } { 'agent_id' } = $ agent_id ;
2020-03-23 19:09:22 +01:00
}
2020-03-25 18:02:58 +01:00
$ data - > { 'agent' } { 'modo' } = $ agent_learning ;
2020-03-18 19:31:58 +01:00
$ self - > call ( 'message' , "Agent id: " . $ data - > { 'agent' } { 'agent_id' } , 5 ) ;
# Create selected modules.
2020-03-19 14:11:09 +01:00
if ( ref ( $ data - > { 'modules' } ) eq "HASH" ) {
foreach my $ i ( keys % { $ data - > { 'modules' } } ) {
my $ module = $ data - > { 'modules' } { $ i } ;
2020-03-18 19:31:58 +01:00
2020-03-23 19:09:22 +01:00
$ module - > { 'name' } = $ module - > { 'nombre' } if is_empty ( $ module - > { 'name' } ) ;
2020-03-18 19:31:58 +01:00
# Do not create any modules if the agent is not in learning mode.
next unless ( $ agent_learning == 1 ) ;
# Host alive is always being created.
if ( $ module - > { 'name' } ne 'Host Alive' ) {
next unless ( is_enabled ( $ module - > { 'checked' } ) || $ force_creation ) ;
}
$ self - > call ( 'message' , "[$agent_id] Module: " . $ module - > { 'name' } , 5 ) ;
my $ agentmodule_id = $ module - > { 'agentmodule_id' } ;
2020-03-19 18:33:04 +01:00
if ( defined ( $ agentmodule_id ) && $ agentmodule_id > 0 ) {
$ agentmodule_id = get_db_value (
$ self - > { 'dbh' } ,
' SELECT id_agente_modulo FROM tagente_modulo
WHERE id_agente_modulo = ? AND nombre = ? ' ,
$ agentmodule_id ,
safe_input ( $ module - > { 'name' } )
) ;
}
if ( ! is_enabled ( $ agentmodule_id ) ) {
# Create.
2020-03-19 14:11:09 +01:00
2020-03-23 19:09:22 +01:00
# Delete unwanted fields.
delete $ module - > { 'agentmodule_id' } ;
delete $ module - > { 'checked' } ;
my $ id_tipo_modulo = $ module - > { 'id_tipo_modulo' } ;
$ id_tipo_modulo = get_module_id ( $ self - > { 'dbh' } , $ module - > { 'type' } )
if is_empty ( $ id_tipo_modulo ) ;
my $ description = safe_output ( $ module - > { 'description' } ) ;
$ description = '' if is_empty ( $ description ) ;
2020-03-19 14:11:09 +01:00
if ( is_enabled ( $ module - > { '__module_component' } ) ) {
# Module from network component.
2020-03-19 14:26:01 +01:00
delete $ module - > { '__module_component' } ;
2020-03-19 14:11:09 +01:00
$ agentmodule_id = pandora_create_module_from_network_component (
$ self - > { 'pa_config' } ,
2020-03-23 19:09:22 +01:00
# Send a copy, not original, because of 'deletes'
{
% { $ module } ,
'name' = > safe_input ( $ module - > { 'name' } ) ,
} ,
2020-03-19 14:11:09 +01:00
$ agent_id ,
$ self - > { 'dbh' }
) ;
2020-03-23 19:09:22 +01:00
# Restore.
$ module - > { '__module_component' } = 1 ;
2020-03-19 14:11:09 +01:00
} else {
# Create module - Direct.
2020-03-25 18:02:58 +01:00
my $ name = $ module - > { 'name' } ;
delete $ module - > { 'name' } ;
2020-03-19 14:11:09 +01:00
$ agentmodule_id = pandora_create_module_from_hash (
$ self - > { 'pa_config' } ,
{
2020-03-25 18:02:58 +01:00
% { $ module } ,
2020-03-23 19:09:22 +01:00
'id_tipo_modulo' = > $ id_tipo_modulo ,
2020-03-19 14:11:09 +01:00
'id_modulo' = > $ module - > { 'id_modulo' } ,
2020-03-25 18:02:58 +01:00
'nombre' = > safe_input ( $ name ) ,
2020-03-23 19:09:22 +01:00
'descripcion' = > safe_input ( $ description ) ,
2020-03-19 14:11:09 +01:00
'id_agente' = > $ agent_id ,
'ip_target' = > $ data - > { 'agent' } { 'direccion' }
} ,
$ self - > { 'dbh' }
) ;
2020-03-25 18:02:58 +01:00
$ module - > { 'name' } = $ name ;
2020-03-19 14:11:09 +01:00
}
2020-03-18 19:31:58 +01:00
2020-03-23 19:09:22 +01:00
# Restore.
$ module - > { 'checked' } = 1 ;
2020-03-18 19:31:58 +01:00
# Store.
2020-03-19 14:11:09 +01:00
$ data - > { 'modules' } { $ i } { 'agentmodule_id' } = $ agentmodule_id ;
2020-03-18 19:31:58 +01:00
$ self - > call (
'message' ,
"[$agent_id] Module: " . $ module - > { 'name' } . " ID: $agentmodule_id" ,
5
) ;
}
}
}
my $ encoded ;
eval {
local $ SIG { __DIE__ } ;
$ encoded = encode_base64 (
encode_json ( $ data )
) ;
} ;
2020-03-25 18:02:58 +01:00
push @ agents , $ data - > { 'agent' } ;
2020-03-18 19:31:58 +01:00
# Update.
2020-03-18 10:28:50 +01:00
db_do (
$ self - > { 'dbh' } ,
'UPDATE tdiscovery_tmp_agents SET `data` = ? '
. 'WHERE `id_rt` = ? AND `label` = ?' ,
$ encoded ,
$ self - > { 'task_data' } { 'id_rt' } ,
2020-03-18 19:31:58 +01:00
$ name
2020-03-18 10:28:50 +01:00
) ;
2020-03-18 19:31:58 +01:00
2020-03-18 10:28:50 +01:00
}
2020-03-18 19:31:58 +01:00
}
2020-03-25 18:02:58 +01:00
# Update parent relationships.
foreach my $ agent ( @ agents ) {
# Avoid processing if does not exist.
next unless ( defined ( $ agent - > { 'agent_id' } ) ) ;
# Avoid processing undefined parents.
next unless defined ( $ agent - > { 'parent' } ) ;
# Get parent id.
my $ parent = get_agent_from_addr ( $ self - > { 'dbh' } , $ agent - > { 'parent' } ) ;
if ( ! defined ( $ parent ) ) {
$ parent = get_agent_from_name ( $ self - > { 'dbh' } , $ agent - > { 'parent' } ) ;
}
next unless defined ( $ parent ) ;
# Is the agent in learning mode?
next unless ( $ agent - > { 'modo' } == 1 ) ;
# Connect the host to its parent.
db_do ( $ self - > { 'dbh' } ,
'UPDATE tagente SET id_parent=? WHERE id_agente=?' ,
$ parent - > { 'id_agente' } , $ agent - > { 'agent_id' }
) ;
}
# Connect agents.
my @ connections = get_db_rows (
$ self - > { 'dbh' } ,
'SELECT * FROM tdiscovery_tmp_connections WHERE id_rt = ?' ,
$ self - > { 'task_data' } { 'id_rt' }
) ;
foreach my $ cn ( @ connections ) {
$ self - > call ( 'connect_agents' ,
$ cn - > { 'dev_1' } ,
$ cn - > { 'if_1' } ,
$ cn - > { 'dev_2' } ,
$ cn - > { 'if_2' } ,
# Force creation if direct.
$ force_creation
) ;
}
2020-03-18 19:31:58 +01:00
# Data creation finished.
return ;
}
#
# Cleanup previous results.
#
2020-03-25 18:02:58 +01:00
$ self - > call ( 'message' , "Cleanup previous results" , 6 ) ;
2020-03-18 19:31:58 +01:00
db_do (
$ self - > { 'dbh' } ,
'DELETE FROM tdiscovery_tmp_agents '
. 'WHERE `id_rt` = ?' ,
$ self - > { 'task_data' } { 'id_rt' }
) ;
#
# Store and review.
#
2020-03-25 18:02:58 +01:00
$ self - > call ( 'message' , "Storing results" , 6 ) ;
2020-03-18 19:31:58 +01:00
my @ hosts = keys % { $ self - > { 'agents_found' } } ;
2020-03-19 18:33:04 +01:00
$ self - > { 'step' } = STEP_PROCESSING ;
2020-03-18 19:31:58 +01:00
my ( $ progress , $ step ) = ( 90 , 10.0 / scalar ( @ hosts ) ) ; # From 90% to 100%.
foreach my $ label ( keys % { $ self - > { 'agents_found' } } ) {
$ self - > call ( 'update_progress' , $ progress ) ;
$ progress += $ step ;
# Store temporally. Wait user approval.
my $ encoded ;
eval {
local $ SIG { __DIE__ } ;
$ encoded = encode_base64 (
encode_json ( $ self - > { 'agents_found' } - > { $ label } )
) ;
} ;
my $ id = get_db_value (
$ self - > { 'dbh' } ,
'SELECT id FROM tdiscovery_tmp_agents WHERE id_rt = ? AND label = ?' ,
$ self - > { 'task_data' } { 'id_rt' } ,
safe_input ( $ label )
) ;
if ( defined ( $ id ) ) {
# Already defined.
$ self - > { 'agents_found' } { $ label } { 'id' } = $ id ;
db_do (
2020-03-18 10:28:50 +01:00
$ self - > { 'dbh' } ,
2020-03-18 19:31:58 +01:00
'UPDATE tdiscovery_tmp_agents SET `data` = ? '
. 'WHERE `id_rt` = ? AND `label` = ?' ,
$ encoded ,
2020-03-18 10:28:50 +01:00
$ self - > { 'task_data' } { 'id_rt' } ,
2020-03-18 19:31:58 +01:00
safe_input ( $ label )
2020-03-18 10:28:50 +01:00
) ;
2020-03-18 19:31:58 +01:00
next ;
2020-03-16 23:52:20 +01:00
}
2020-03-18 19:31:58 +01:00
# Insert.
$ self - > { 'agents_found' } { $ label } { 'id' } = db_insert (
$ self - > { 'dbh' } ,
'id' ,
'INSERT INTO tdiscovery_tmp_agents (`id_rt`,`label`,`data`,`created`) '
. 'VALUES (?, ?, ?, now())' ,
$ self - > { 'task_data' } { 'id_rt' } ,
safe_input ( $ label ) ,
$ encoded
) ;
2020-03-18 10:28:50 +01:00
}
2020-03-25 18:02:58 +01:00
$ self - > call ( 'message' , "Completed" , 5 ) ;
2020-03-16 23:52:20 +01:00
}
2020-03-18 19:31:58 +01:00
################################################################################
# Apply monitoring templates selected to detected agents.
################################################################################
sub PandoraFMS ::Recon::Base::apply_monitoring($) {
my ( $ self ) = @ _ ;
my @ hosts = keys % { $ self - > { 'agents_found' } } ;
$ self - > { 'step' } = STEP_MONITORING ;
# From 80% to 90%.
my ( $ progress , $ step ) = ( 80 , 10.0 / scalar ( @ hosts ) ) ;
2020-03-25 18:02:58 +01:00
my ( $ partial , $ sub_step ) = ( 0 , 100 / scalar ( @ hosts ) ) ;
2020-03-18 19:31:58 +01:00
foreach my $ label ( keys % { $ self - > { 'agents_found' } } ) {
2020-03-25 18:02:58 +01:00
$ self - > { 'c_network_percent' } = $ partial ;
$ self - > { 'c_network_name' } = $ label ;
2020-03-18 19:31:58 +01:00
$ self - > call ( 'update_progress' , $ progress ) ;
$ progress += $ step ;
2020-03-25 18:02:58 +01:00
$ partial += $ sub_step ;
2020-03-19 14:11:09 +01:00
$ self - > call ( 'message' , "Checking modules for $label" , 5 ) ;
2020-03-25 18:02:58 +01:00
# Monitorization selected.
2020-03-19 14:11:09 +01:00
$ self - > call ( 'create_network_profile_modules' , $ label ) ;
2020-03-18 19:31:58 +01:00
2020-03-25 18:02:58 +01:00
# Monitorization - interfaces
$ self - > call ( 'create_interface_modules' , $ label ) ;
2020-03-18 19:31:58 +01:00
}
2020-03-25 18:02:58 +01:00
$ self - > { 'c_network_percent' } = 100 ;
$ self - > call ( 'update_progress' , $ progress ) ;
2020-03-18 19:31:58 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Connect the given devices in the Pandora FMS database.
2020-03-16 23:52:20 +01:00
################################################################################
2020-03-25 18:02:58 +01:00
sub PandoraFMS ::Recon::Base::connect_agents($$$$$;$) {
my ( $ self , $ dev_1 , $ if_1 , $ dev_2 , $ if_2 , $ force ) = @ _ ;
if ( $ self - > { 'task_data' } { 'review_mode' } == DISCOVERY_REVIEW
|| is_enabled ( $ force )
) {
# Store in tdiscovery_tmp_connections;
db_process_insert (
$ self - > { 'dbh' } ,
'id' ,
'tdiscovery_tmp_connections' ,
{
'id_rt' = > $ self - > { 'task_data' } { 'id_rt' } ,
'dev_1' = > $ dev_1 ,
'if_1' = > $ if_1 ,
'dev_2' = > $ dev_2 ,
'if_2' = > $ if_2 ,
}
) ;
return ;
}
2020-03-18 10:28:50 +01:00
# Get the agent for the first device.
my $ agent_1 = get_agent_from_addr ( $ self - > { 'dbh' } , $ dev_1 ) ;
if ( ! defined ( $ agent_1 ) ) {
$ agent_1 = get_agent_from_name ( $ self - > { 'dbh' } , $ dev_1 ) ;
}
return unless defined ( $ agent_1 ) ;
# Get the agent for the second device.
my $ agent_2 = get_agent_from_addr ( $ self - > { 'dbh' } , $ dev_2 ) ;
if ( ! defined ( $ agent_2 ) ) {
$ agent_2 = get_agent_from_name ( $ self - > { 'dbh' } , $ dev_2 ) ;
}
return unless defined ( $ agent_2 ) ;
# Use ping modules by default.
$ if_1 = 'Host Alive' if ( $ if_1 eq '' ) ;
$ if_2 = 'Host Alive' if ( $ if_2 eq '' ) ;
# Check whether the modules exists.
my $ module_name_1 = $ if_1 eq 'Host Alive' ? 'Host Alive' : "${if_1}_ifOperStatus" ;
my $ module_name_2 = $ if_2 eq 'Host Alive' ? 'Host Alive' : "${if_2}_ifOperStatus" ;
my $ module_id_1 = get_agent_module_id ( $ self - > { 'dbh' } , $ module_name_1 , $ agent_1 - > { 'id_agente' } ) ;
if ( $ module_id_1 <= 0 ) {
$ self - > call ( 'message' , "ERROR: Module " . safe_output ( $ module_name_1 ) . " does not exist for agent $dev_1." , 5 ) ;
return ;
}
my $ module_id_2 = get_agent_module_id ( $ self - > { 'dbh' } , $ module_name_2 , $ agent_2 - > { 'id_agente' } ) ;
if ( $ module_id_2 <= 0 ) {
$ self - > call ( 'message' , "ERROR: Module " . safe_output ( $ module_name_2 ) . " does not exist for agent $dev_2." , 5 ) ;
return ;
}
# Connect the modules if they are not already connected.
my $ connection_id = get_db_value ( $ self - > { 'dbh' } , 'SELECT id FROM tmodule_relationship WHERE (module_a = ? AND module_b = ? AND `type` = "direct") OR (module_b = ? AND module_a = ? AND `type` = "direct")' , $ module_id_1 , $ module_id_2 , $ module_id_1 , $ module_id_2 ) ;
if ( ! defined ( $ connection_id ) ) {
db_do ( $ self - > { 'dbh' } , 'INSERT INTO tmodule_relationship (`module_a`, `module_b`, `id_rt`) VALUES(?, ?, ?)' , $ module_id_1 , $ module_id_2 , $ self - > { 'task_id' } ) ;
}
2017-03-08 13:20:00 +01:00
}
2019-04-03 18:13:19 +02:00
2020-03-16 23:52:20 +01:00
################################################################################
2019-04-04 12:28:17 +02:00
# Create agents from db_scan. Uses DataServer methods.
2019-04-03 18:13:19 +02:00
# data = [
# 'agent_data' => {},
# 'module_data' => []
# ]
2020-03-16 23:52:20 +01:00
################################################################################
2019-04-03 18:13:19 +02:00
sub PandoraFMS ::Recon::Base::create_agents($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ data ) = @ _ ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
my $ pa_config = $ self - > { 'pa_config' } ;
my $ dbh = $ self - > { 'dbh' } ;
my $ server_id = $ self - > { 'server_id' } ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
return undef if ( ref ( $ data ) ne "ARRAY" ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
foreach my $ information ( @ { $ data } ) {
my $ agent = $ information - > { 'agent_data' } ;
my $ modules = $ information - > { 'module_data' } ;
my $ force_processing = 0 ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Search agent
my $ current_agent = PandoraFMS::Core:: locate_agent (
$ pa_config , $ dbh , $ agent - > { 'agent_name' }
) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
my $ parent_id ;
if ( defined ( $ agent - > { 'parent_agent_name' } ) ) {
$ parent_id = PandoraFMS::Core:: locate_agent (
$ pa_config , $ dbh , $ agent - > { 'parent_agent_name' }
) ;
if ( $ parent_id ) {
$ parent_id = $ parent_id - > { 'id_agente' } ;
}
}
my $ agent_id ;
my $ os_id = get_os_id ( $ dbh , $ agent - > { 'os' } ) ;
if ( $ os_id < 0 ) {
$ os_id = get_os_id ( $ dbh , 'Other' ) ;
}
if ( ! $ current_agent ) {
# Create agent.
$ agent_id = pandora_create_agent (
$ pa_config , $ pa_config - > { 'servername' } , $ agent - > { 'agent_name' } ,
$ agent - > { 'address' } , $ agent - > { 'id_group' } , $ parent_id ,
$ os_id , $ agent - > { 'description' } ,
$ agent - > { 'interval' } , $ dbh , $ agent - > { 'timezone_offset' }
) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
$ current_agent = $ parent_id = PandoraFMS::Core:: locate_agent (
$ pa_config , $ dbh , $ agent - > { 'agent_name' }
) ;
$ force_processing = 1 ;
} else {
$ agent_id = $ current_agent - > { 'id_agente' } ;
}
if ( ! defined ( $ agent_id ) ) {
return undef ;
2019-04-10 20:40:03 +02:00
}
2019-04-03 18:13:19 +02:00
2020-03-18 10:28:50 +01:00
if ( defined ( $ agent - > { 'address' } ) && $ agent - > { 'address' } ne '' ) {
pandora_add_agent_address (
$ pa_config , $ agent_id , $ agent - > { 'agent_name' } ,
$ agent - > { 'address' } , $ dbh
) ;
}
# Update agent information
pandora_update_agent (
$ pa_config , strftime ( "%Y-%m-%d %H:%M:%S" , localtime ( ) ) , $ agent_id ,
$ agent - > { 'os_version' } , $ agent - > { 'agent_version' } ,
$ agent - > { 'interval' } , $ dbh , undef , $ parent_id
) ;
# Add modules.
if ( ref ( $ modules ) eq "ARRAY" ) {
foreach my $ module ( @ { $ modules } ) {
next unless ref ( $ module ) eq 'HASH' ;
# Translate data structure to simulate XML parser return.
my % data_translated = map { $ _ = > [ $ module - > { $ _ } ] } keys % { $ module } ;
# Process modules.
PandoraFMS::DataServer:: process_module_data (
$ pa_config , \ % data_translated ,
$ server_id , $ current_agent ,
$ module - > { 'name' } , $ module - > { 'type' } ,
$ agent - > { 'interval' } ,
strftime ( "%Y/%m/%d %H:%M:%S" , localtime ( ) ) ,
$ dbh , $ force_processing
) ;
}
}
}
2019-04-03 18:13:19 +02:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Create an agent for the given device. Returns the ID of the new (or
# existing) agent, undef on error.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::create_agent($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ device ) = @ _ ;
# Clean name.
$ device = clean_blank ( $ device ) ;
# Resolve hostnames.
my $ host_name = ( ( $ self - > { 'resolve_names' } == 1 ) ? gethostbyaddr ( inet_aton ( $ device ) , AF_INET ) : $ device ) ;
# Fallback to device IP if host name could not be resolved.
$ host_name = $ device if ( ! defined ( $ host_name ) || $ host_name eq '' ) ;
my $ agent = locate_agent ( $ self - > { 'pa_config' } , $ self - > { 'dbh' } , $ host_name ) ;
my ( $ agent_id , $ agent_learning ) ;
if ( ! defined ( $ agent ) ) {
$ host_name = $ device unless defined ( $ host_name ) ;
# Guess the OS.
my $ id_os = $ self - > guess_os ( $ device ) ;
# Are we filtering hosts by OS?
return if ( $ self - > { 'id_os' } > 0 && $ id_os != $ self - > { 'id_os' } ) ;
# Are we filtering hosts by TCP port?
return if ( $ self - > { 'recon_ports' } ne '' && $ self - > tcp_scan ( $ device ) == 0 ) ;
my $ location = get_geoip_info ( $ self - > { 'pa_config' } , $ device ) ;
$ agent_id = pandora_create_agent (
$ self - > { 'pa_config' } , $ self - > { 'pa_config' } - > { 'servername' } ,
$ host_name , $ device , $ self - > { 'group_id' } , 0 , $ id_os ,
'' , 300 , $ self - > { 'dbh' } , undef , $ location - > { 'longitude' } ,
$ location - > { 'latitude' }
) ;
return undef unless defined ( $ agent_id ) and ( $ agent_id > 0 ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Autoconfigure agent
if ( defined ( $ self - > { 'autoconfiguration_enabled' } ) && $ self - > { 'autoconfiguration_enabled' } == 1 ) {
my $ agent_data = PandoraFMS::DB:: get_db_single_row ( $ self - > { 'dbh' } , 'SELECT * FROM tagente WHERE id_agente = ?' , $ agent_id ) ;
# Update agent configuration once, after create agent.
enterprise_hook ( 'autoconfigure_agent' , [ $ self - > { 'pa_config' } , $ host_name , $ agent_id , $ agent_data , $ self - > { 'dbh' } , 1 ] ) ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
if ( defined ( $ self - > { 'main_event_id' } ) ) {
my $ addresses_str = join ( ',' , safe_output ( $ self - > get_addresses ( $ device ) ) ) ;
pandora_extended_event (
$ self - > { 'pa_config' } , $ self - > { 'dbh' } , $ self - > { 'main_event_id' } ,
"[Discovery] New " . safe_output ( $ self - > get_device_type ( $ device ) ) . " found " . $ host_name . " (" . $ addresses_str . ") Agent $agent_id."
) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
}
$ agent_learning = 1 ;
# Create network profile modules for the agent
$ self - > create_network_profile_modules ( $ agent_id , $ device ) ;
}
else {
$ agent_id = $ agent - > { 'id_agente' } ;
$ agent_learning = $ agent - > { 'modo' } ;
}
# Do not create any modules if the agent is not in learning mode.
return unless ( $ agent_learning == 1 ) ;
# Add found IP addresses to the agent.
foreach my $ ip_addr ( $ self - > get_addresses ( $ device ) ) {
my $ addr_id = get_addr_id ( $ self - > { 'dbh' } , $ ip_addr ) ;
$ addr_id = add_address ( $ self - > { 'dbh' } , $ ip_addr ) unless ( $ addr_id > 0 ) ;
next unless ( $ addr_id > 0 ) ;
# Assign the new address to the agent
my $ agent_addr_id = get_agent_addr_id ( $ self - > { 'dbh' } , $ addr_id , $ agent_id ) ;
if ( $ agent_addr_id <= 0 ) {
db_do ( $ self - > { 'dbh' } , ' INSERT INTO taddress_agent ( `id_a` , `id_agent` )
VALUES ( ? , ? ) ' , $ addr_id , $ agent_id ) ;
}
}
# Create a ping module.
my $ module_id = get_agent_module_id ( $ self - > { 'dbh' } , "ping" , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 6 ,
'id_modulo' = > 2 ,
'nombre' = > "ping" ,
'descripcion' = > '' ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
}
# Add interfaces to the agent if it responds to SNMP.
return $ agent_id unless ( $ self - > is_snmp_discovered ( $ device ) ) ;
my $ community = $ self - > get_community ( $ device ) ;
my @ output = $ self - > snmp_get_value_array ( $ device , $ PandoraFMS:: Recon:: Base:: IFINDEX ) ;
foreach my $ if_index ( @ output ) {
next unless ( $ if_index =~ /^[0-9]+$/ ) ;
# Check the status of the interface.
2020-03-25 18:02:58 +01:00
if ( ! is_enabled ( $ self - > { 'all_ifaces' } ) ) {
2020-03-18 10:28:50 +01:00
my $ if_status = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index" ) ;
next unless $ if_status == 1 ;
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
# Fill the module description with the IP and MAC addresses.
my $ mac = $ self - > get_if_mac ( $ device , $ if_index ) ;
my $ ip = $ self - > get_if_ip ( $ device , $ if_index ) ;
my $ if_desc = ( $ mac ne '' ? "MAC $mac " : '' ) . ( $ ip ne '' ? "IP $ip" : '' ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Get the name of the network interface.
my $ if_name = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFNAME.$if_index" ) ;
$ if_name = "if$if_index" unless defined ( $ if_name ) ;
$ if_name =~ s/"//g ;
$ if_name = clean_blank ( $ if_name ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Check whether the module already exists.
my $ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ if_name . '_ifOperStatus' , $ agent_id ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
next if ( $ module_id > 0 && ! $ agent_learning ) ;
# Encode problematic characters.
$ if_desc = safe_input ( $ if_desc ) ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Interface status module.
$ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ if_name . '_ifOperStatus' , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 18 ,
'id_modulo' = > 2 ,
'nombre' = > safe_input ( $ if_name ) . "_ifOperStatus" ,
'descripcion' = > $ if_desc ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index"
) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
} else {
my % module = (
'descripcion' = > $ if_desc ,
'ip_target' = > $ device ,
'snmp_community' = > $ community ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
) ;
pandora_update_module_from_hash ( $ self - > { 'pa_config' } , \ % module , 'id_agente_modulo' , $ module_id , $ self - > { 'dbh' } ) ;
}
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
# Incoming traffic module.
my $ if_hc_in_octets = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFHCINOCTECTS.$if_index" ) ;
if ( defined ( $ if_hc_in_octets ) ) {
$ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ if_name . '_ifHCInOctets' , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'nombre' = > safe_input ( $ if_name ) . "_ifHCInOctets" ,
'descripcion' = > 'The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets.' ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFHCINOCTECTS.$if_index" ) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
} else {
my % module = (
'ip_target' = > $ device ,
'snmp_community' = > $ community ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
) ;
pandora_update_module_from_hash ( $ self - > { 'pa_config' } , \ % module , 'id_agente_modulo' , $ module_id , $ self - > { 'dbh' } ) ;
}
}
# ifInOctets
elsif ( defined ( $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFINOCTECTS.$if_index" ) ) ) {
$ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ if_name . '_ifInOctets' , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'nombre' = > safe_input ( $ if_name ) . "_ifInOctets" ,
'descripcion' = > 'The total number of octets received on the interface, including framing characters.' ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFINOCTECTS.$if_index" ) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
} else {
my % module = (
'ip_target' = > $ device ,
'snmp_community' = > $ community ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
) ;
pandora_update_module_from_hash ( $ self - > { 'pa_config' } , \ % module , 'id_agente_modulo' , $ module_id , $ self - > { 'dbh' } ) ;
}
}
2019-05-24 11:42:46 +02:00
2020-03-18 10:28:50 +01:00
# Outgoing traffic module.
my $ if_hc_out_octets = $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFHCOUTOCTECTS.$if_index" ) ;
if ( defined ( $ if_hc_out_octets ) ) {
$ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ if_name . '_ifHCOutOctets' , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'nombre' = > safe_input ( $ if_name ) . "_ifHCOutOctets" ,
'descripcion' = > 'The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifOutOctets.' ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFHCOUTOCTECTS.$if_index" ) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
} else {
my % module = (
'ip_target' = > $ device ,
'snmp_community' = > $ community ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
) ;
pandora_update_module_from_hash ( $ self - > { 'pa_config' } , \ % module , 'id_agente_modulo' , $ module_id , $ self - > { 'dbh' } ) ;
}
}
# ifOutOctets
elsif ( defined ( $ self - > snmp_get_value ( $ device , "$PandoraFMS::Recon::Base::IFOUTOCTECTS.$if_index" ) ) ) {
$ module_id = get_agent_module_id ( $ self - > { 'dbh' } , "${if_name}_ifOutOctets" , $ agent_id ) ;
if ( $ module_id <= 0 ) {
my % module = ( 'id_tipo_modulo' = > 16 ,
'id_modulo' = > 2 ,
'nombre' = > safe_input ( $ if_name ) . "_ifOutOctets" ,
'descripcion' = > 'The total number of octets received on the interface, including framing characters.' ,
'id_agente' = > $ agent_id ,
'ip_target' = > $ device ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
'snmp_community' = > $ community ,
'snmp_oid' = > "$PandoraFMS::Recon::Base::IFOUTOCTECTS.$if_index" ) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
} else {
my % module = (
'ip_target' = > $ device ,
'snmp_community' = > $ community ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'tcp_send' = > $ self - > { 'snmp_version' } ,
'custom_string_1' = > $ self - > { 'snmp_privacy_method' } ,
'custom_string_2' = > $ self - > { 'snmp_privacy_pass' } ,
'custom_string_3' = > $ self - > { 'snmp_security_level' } ,
'plugin_parameter' = > $ self - > { 'snmp_auth_method' } ,
'plugin_user' = > $ self - > { 'snmp_auth_user' } ,
'plugin_pass' = > $ self - > { 'snmp_auth_pass' } ,
) ;
pandora_update_module_from_hash ( $ self - > { 'pa_config' } , \ % module , 'id_agente_modulo' , $ module_id , $ self - > { 'dbh' } ) ;
}
2019-04-10 20:40:03 +02:00
}
2020-03-18 10:28:50 +01:00
}
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
return $ agent_id ;
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Delete already existing connections.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::delete_connections($) {
2020-03-18 10:28:50 +01:00
my ( $ self ) = @ _ ;
2017-03-08 13:20:00 +01:00
2020-03-18 10:28:50 +01:00
$ self - > call ( 'message' , "Deleting connections..." , 10 ) ;
db_do ( $ self - > { 'dbh' } , 'DELETE FROM tmodule_relationship WHERE id_rt=?' , $ self - > { 'task_id' } ) ;
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Print log messages.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::message($$$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ message , $ verbosity ) = @ _ ;
2019-04-10 20:40:03 +02:00
2020-03-18 10:28:50 +01:00
logger ( $ self - > { 'pa_config' } , "[Recon task " . $ self - > { 'task_id' } . "] $message" , $ verbosity ) ;
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Connect the given hosts to its parent.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::set_parent($$$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ host , $ parent ) = @ _ ;
2017-03-08 13:20:00 +01:00
2020-03-18 10:28:50 +01:00
return unless ( $ self - > { 'parent_detection' } == 1 ) ;
2017-03-08 13:20:00 +01:00
2020-03-25 18:02:58 +01:00
# Do not edit 'not scaned' agents.
return if is_empty ( $ self - > { 'agents_found' } { $ host } { 'agent' } ) ;
2017-03-08 13:20:00 +01:00
2020-03-25 18:02:58 +01:00
$ self - > { 'agents_found' } { $ host } { 'parent' } = $ parent ;
2017-03-08 13:20:00 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2019-02-13 14:56:10 +01:00
# Create a WMI module for the given agent.
2020-03-16 23:52:20 +01:00
################################################################################
2019-02-13 14:56:10 +01:00
sub PandoraFMS ::Recon::Base::wmi_module {
2020-03-18 10:28:50 +01:00
my ( $ self , $ agent_id , $ target , $ wmi_query , $ wmi_auth , $ column ,
$ module_name , $ module_description , $ module_type , $ unit ) = @ _ ;
# Check whether the module already exists.
my $ module_id = get_agent_module_id ( $ self - > { 'dbh' } , $ module_name , $ agent_id ) ;
return if ( $ module_id > 0 ) ;
my ( $ user , $ pass ) = ( $ wmi_auth ne '' ) ? split ( '%' , $ wmi_auth ) : ( undef , undef ) ;
my % module = (
'descripcion' = > safe_input ( $ module_description ) ,
'id_agente' = > $ agent_id ,
'id_modulo' = > 6 ,
'id_tipo_modulo' = > get_module_id ( $ self - > { 'dbh' } , $ module_type ) ,
'ip_target' = > $ target ,
'nombre' = > safe_input ( $ module_name ) ,
'plugin_pass' = > defined ( $ pass ) ? $ pass : '' ,
'plugin_user' = > defined ( $ user ) ? $ user : '' ,
'snmp_oid' = > $ wmi_query ,
'tcp_port' = > $ column ,
'unit' = > defined ( $ unit ) ? $ unit : ''
) ;
pandora_create_module_from_hash ( $ self - > { 'pa_config' } , \ % module , $ self - > { 'dbh' } ) ;
2019-02-13 14:56:10 +01:00
}
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-08 13:20:00 +01:00
# Update recon task status.
2020-03-16 23:52:20 +01:00
################################################################################
2017-03-13 11:13:45 +01:00
sub PandoraFMS ::Recon::Base::update_progress ($$) {
2020-03-18 10:28:50 +01:00
my ( $ self , $ progress ) = @ _ ;
my $ stats = { } ;
if ( defined ( $ self - > { 'summary' } ) && $ self - > { 'summary' } ne '' ) {
$ stats - > { 'summary' } = $ self - > { 'summary' } ;
}
$ stats - > { 'step' } = $ self - > { 'step' } ;
$ stats - > { 'c_network_name' } = $ self - > { 'c_network_name' } ;
$ stats - > { 'c_network_percent' } = $ self - > { 'c_network_percent' } ;
# Store progress, last contact and overall status.
db_do ( $ self - > { 'dbh' } , 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?' ,
time ( ) , $ progress , encode_json ( $ stats ) , $ self - > { 'task_id' } ) ;
2017-03-08 13:20:00 +01:00
}
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
1 ;
__END__