2012-11-05 Vanessa Gil <vanessa.gil@artica.es>

* operation/reporting/reporting_xml.php: Moved functions
	to functions_xml.php
	* include/functions_xml.php: Added file.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7128 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2012-11-05 12:41:13 +00:00
parent e8cc98e827
commit cdabd8f2fd
3 changed files with 193 additions and 164 deletions

View File

@ -1,3 +1,9 @@
2012-11-05 Vanessa Gil <vanessa.gil@artica.es>
* operation/reporting/reporting_xml.php: Moved functions
to functions_xml.php
* include/functions_xml.php: Added file.
2012-11-05 Sergio Martin <sergio.martin@artica.es>
* include/functions_graph.php: Fixed a bug of the events/alerts/unwknown

View File

@ -0,0 +1,168 @@
<?php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation for 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.
include_once("include/functions_modules.php");
include_once("include/functions_events.php");
include_once ('include/functions_groups.php');
include_once ('include/functions_netflow.php');
//xml con los datos de un agente
function xml_file_agent_data ($agent_data = array(), $file_temp) {
$file = fopen($file_temp, 'a+');
$content_report = " <name>". $agent_data['nombre']."</name>\n";
$content_report .= " <description>". $agent_data['comentarios']."</description>\n";
$content_report .= " <main_ipaddress>".$agent_data['direccion']."</main_ipaddress>\n";
$content_report .= " <group>".$agent_data['id_grupo']."</group>\n";
$content_report .= " <interval>". $agent_data['intervalo']."</interval>\n";
$sql = "SELECT t1.description, t2.name
FROM tagent_custom_data t1, tagent_custom_fields t2
WHERE t1.id_agent=".$agent_data['id_agente']."
AND t1.id_field=t2.id_field";
$custom_fields = db_get_all_rows_sql($sql);
if ($custom_fields !== false) {
foreach ($custom_fields as $field) {
$field['name'] = io_safe_output($field['name']);
//remove blank
$field['name'] = preg_replace('/\s/', '_', $field['name']);
$content_report .= " <".$field['name'].">".$field['description']."</".$field['name'].">\n";
}
}
$content_report .= " <os_type>".$agent_data['id_os']."</os_type>\n";
$content_report .= " <parent>". agents_get_name ($agent_data['id_parent'])."</parent>\n";
$content_report .= " <extra_id>".$agent_data['id_extra']."</extra_id>\n";
$content_report .= " <disabled>".$agent_data['disabled']."</disabled>\n";
$result = fwrite($file, $content_report);
$position++;
fclose($file);
return $position;
}
//xml con los datos de módulos de un agente
function xml_file_agent_conf ($modules = array(), $file_temp, $position = 0, $id_agent) {
$file = fopen($file_temp, 'a+');
foreach ($modules as $module) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <name>".$module['nombre']."</name>\n";
$content_report .= " <id>".$module['id_agente_modulo']."</id>\n";
$content_report .= " <type>".$module['id_tipo_modulo']."</type>\n";
$content_report .= " <description>".$module['descripcion']."</description>\n";
$content_report .= " <extended_info>". $module['extended_info']."</extended_info>\n";
$content_report .= " <unit>". $module['unit']."</unit>\n";
$content_report .= " <max>". $module['max']."</max>\n";
$content_report .= " <min>".$module['min']."</min>\n";
$content_report .= " <interval>". $module['module_interval']."</interval>\n";
$content_report .= " <ff_interval>". $module['module_ff_interval']."</ff_interval>\n";
$content_report .= " <tcp_port>". $module['tcp_port']."</tcp_port>\n";
$content_report .= " <tcp_send>". $module['tcp_send']."</tcp_send>\n";
$content_report .= " <tcp_rcv>". $module['tcp_rcv']."</tcp_rcv>\n";
$content_report .= " <snmp_community>". $module['snmp_community']."</snmp_community>\n";
$content_report .= " <snmp_oid>".$module['snmp_oid']."</snmp_oid>\n";
$content_report .= " <ip>". $module['ip_target']."</ip>\n";
$content_report .= " <module_group>".$module['id_module_group']."</module_group>\n";
$content_report .= " <disabled>". $module['disabled']."</disabled>\n";
$content_report .= " <id_plugin>".$module['id_plugin']."</id_plugin>\n";
$content_report .= " <post_process>". $module['post_process']."</post_process>\n";
$content_report .= " <min_warning>". $module['min_warning']."</min_warning>\n";
$content_report .= " <max_warning>". $module['max_warning']."</max_warning>\n";
$content_report .= " <str_warning>". $module['str_warning']."</str_warning>\n";
$content_report .= " <min_critical>". $module['min_critical']."</min_critical>\n";
$content_report .= " <max_critical>".$module['max_critical']."</max_critical>\n";
$content_report .= " <str_critical>". $module['str_critical']."</str_critical>\n";
$content_report .= " <id_policy_module>". $module['id_policy_module']."</id_policy_module>\n";
$content_report .= " <wizard_level>".$module['wizard_level']."</wizard_level>\n";
$content_report .= " <critical_instructions>". $module['critical_instructions']."</critical_instructions>\n";
$content_report .= " <warning_instructions>". $module['warning_instructions']."</warning_instructions>\n";
$content_report .= " <unknown_instructions>".$module['unknown_instructions']."</unknown_instructions>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
// xml eventos
function xml_file_event ($events = array(), $file_temp, $position = 0, $id_agent) {
$file = fopen($file_temp, 'a+');
foreach ($events as $event) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <event>".$event['evento']."</event>\n";
$content_report .= " <event_type>".$event['event_type']."</event_type>\n";
$content_report .= " <criticity>".get_priority_name($event['criticity'])."</criticity>\n";
$content_report .= " <count>".$event['count_rep']."</count>\n";
$content_report .= " <timestamp>".$event['time2']."</timestamp>\n";
$content_report .= " <module_name>".modules_get_agentmodule_name ($event['id_agentmodule'])."</module_name>\n";
$content_report .= " <agent_name>".agents_get_name ($id_agent)."</agent_name>\n";
if ($event['estado'] == 0)
$status = __('New');
else if ($event['estado'] == 1)
$status = __('Validated');
else if ($event['estado'] == 2)
$status = __('In process');
else
$status = "";
$content_report .= " <event_status>".$status."</event_status>\n";
$content_report .= " <user_comment>".$event['user_comment']."</user_comment>\n";
$content_report .= " <tags>".$event['tags']."</tags>\n";
$content_report .= " <event_source>".$event['source']."</event_source>\n";
$content_report .= " <extra_id>".$event['id_extra']."</extra_id>\n";
$content_report .= " <user_validation>".$event['owner_user']."</user_validation>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
//xml graph
function xml_file_graph ($data_module = array(), $file_temp, $position = 0) {
$file = fopen($file_temp, 'a+');
foreach ($data_module as $data_m) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <timestamp>".date ('Y-m-d H:i:s', $data_m['utimestamp'])."</timestamp>\n";
$content_report .= " <utimestamp>".$data_m['utimestamp']."</utimestamp>\n";
$content_report .= " <data>".$data_m['datos']."</data>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
?>

View File

@ -17,6 +17,7 @@ include_once("include/functions_modules.php");
include_once("include/functions_events.php");
include_once ('include/functions_groups.php');
include_once ('include/functions_netflow.php');
include_once ('include/functions_xml.php');
enterprise_include_once ('include/functions_metaconsole.php');
function xml_array ($array, $buffer_file = array()) {
@ -56,150 +57,6 @@ function xml_array ($array, $buffer_file = array()) {
}
}
function write_xml_file_agent_data ($agent_data = array(), $file_temp) {
$file = fopen($file_temp, 'a+');
$content_report = " <name>". $agent_data['nombre']."</name>\n";
$content_report .= " <description>". $agent_data['comentarios']."</description>\n";
$content_report .= " <main_ipaddress>".$agent_data['direccion']."</main_ipaddress>\n";
$content_report .= " <group>".$agent_data['id_grupo']."</group>\n";
$content_report .= " <interval>". $agent_data['intervalo']."</interval>\n";
$sql = "SELECT t1.description, t2.name
FROM tagent_custom_data t1, tagent_custom_fields t2
WHERE t1.id_agent=".$agent_data['id_agente']."
AND t1.id_field=t2.id_field";
$custom_fields = db_get_all_rows_sql($sql);
if ($custom_fields !== false) {
foreach ($custom_fields as $field) {
$field['name'] = io_safe_output($field['name']);
//remove blank
$field['name'] = preg_replace('/\s/', '_', $field['name']);
$content_report .= " <".$field['name'].">".$field['description']."</".$field['name'].">\n";
}
}
$content_report .= " <os_type>".$agent_data['id_os']."</os_type>\n";
$content_report .= " <parent>". agents_get_name ($agent_data['id_parent'])."</parent>\n";
$content_report .= " <extra_id>".$agent_data['id_extra']."</extra_id>\n";
$content_report .= " <disabled>".$agent_data['disabled']."</disabled>\n";
$result = fwrite($file, $content_report);
$position++;
fclose($file);
return $position;
}
function write_xml_file_agent_conf ($modules = array(), $file_temp, $position = 0, $id_agent) {
$file = fopen($file_temp, 'a+');
foreach ($modules as $module) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <name>".$module['nombre']."</name>\n";
$content_report .= " <id>".$module['id_agente_modulo']."</id>\n";
$content_report .= " <type>".$module['id_tipo_modulo']."</type>\n";
$content_report .= " <description>".$module['descripcion']."</description>\n";
$content_report .= " <extended_info>". $module['extended_info']."</extended_info>\n";
$content_report .= " <unit>". $module['unit']."</unit>\n";
$content_report .= " <max>". $module['max']."</max>\n";
$content_report .= " <min>".$module['min']."</min>\n";
$content_report .= " <interval>". $module['module_interval']."</interval>\n";
$content_report .= " <ff_interval>". $module['module_ff_interval']."</ff_interval>\n";
$content_report .= " <tcp_port>". $module['tcp_port']."</tcp_port>\n";
$content_report .= " <tcp_send>". $module['tcp_send']."</tcp_send>\n";
$content_report .= " <tcp_rcv>". $module['tcp_rcv']."</tcp_rcv>\n";
$content_report .= " <snmp_community>". $module['snmp_community']."</snmp_community>\n";
$content_report .= " <snmp_oid>".$module['snmp_oid']."</snmp_oid>\n";
$content_report .= " <ip>". $module['ip_target']."</ip>\n";
$content_report .= " <module_group>".$module['id_module_group']."</module_group>\n";
$content_report .= " <disabled>". $module['disabled']."</disabled>\n";
$content_report .= " <id_plugin>".$module['id_plugin']."</id_plugin>\n";
$content_report .= " <post_process>". $module['post_process']."</post_process>\n";
$content_report .= " <min_warning>". $module['min_warning']."</min_warning>\n";
$content_report .= " <max_warning>". $module['max_warning']."</max_warning>\n";
$content_report .= " <str_warning>". $module['str_warning']."</str_warning>\n";
$content_report .= " <min_critical>". $module['min_critical']."</min_critical>\n";
$content_report .= " <max_critical>".$module['max_critical']."</max_critical>\n";
$content_report .= " <str_critical>". $module['str_critical']."</str_critical>\n";
$content_report .= " <id_policy_module>". $module['id_policy_module']."</id_policy_module>\n";
$content_report .= " <wizard_level>".$module['wizard_level']."</wizard_level>\n";
$content_report .= " <critical_instructions>". $module['critical_instructions']."</critical_instructions>\n";
$content_report .= " <warning_instructions>". $module['warning_instructions']."</warning_instructions>\n";
$content_report .= " <unknown_instructions>".$module['unknown_instructions']."</unknown_instructions>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
function write_xml_file_event ($events = array(), $file_temp, $position = 0, $id_agent) {
$file = fopen($file_temp, 'a+');
foreach ($events as $event) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <event>".$event['evento']."</event>\n";
$content_report .= " <event_type>".$event['event_type']."</event_type>\n";
$content_report .= " <criticity>".get_priority_name($event['criticity'])."</criticity>\n";
$content_report .= " <count>".$event['count_rep']."</count>\n";
$content_report .= " <timestamp>".$event['time2']."</timestamp>\n";
$content_report .= " <module_name>".modules_get_agentmodule_name ($event['id_agentmodule'])."</module_name>\n";
$content_report .= " <agent_name>".agents_get_name ($id_agent)."</agent_name>\n";
if ($event['estado'] == 0)
$status = __('New');
else if ($event['estado'] == 1)
$status = __('Validated');
else if ($event['estado'] == 2)
$status = __('In process');
else
$status = "";
$content_report .= " <event_status>".$status."</event_status>\n";
$content_report .= " <user_comment>".$event['user_comment']."</user_comment>\n";
$content_report .= " <tags>".$event['tags']."</tags>\n";
$content_report .= " <event_source>".$event['source']."</event_source>\n";
$content_report .= " <extra_id>".$event['id_extra']."</extra_id>\n";
$content_report .= " <user_validation>".$event['owner_user']."</user_validation>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
function write_xml_file_graph ($data_module = array(), $file_temp, $position = 0) {
$file = fopen($file_temp, 'a+');
foreach ($data_module as $data_m) {
$content_report = " <object id=\"$position\">\n";
$content_report .= " <timestamp>".date ('Y-m-d H:i:s', $data_m['utimestamp'])."</timestamp>\n";
$content_report .= " <utimestamp>".$data_m['utimestamp']."</utimestamp>\n";
$content_report .= " <data>".$data_m['datos']."</data>\n";
$content_report .= " </object>\n";
$result = fwrite($file, $content_report);
$position++;
}
fclose($file);
return $position;
}
// Login check
if (isset ($_GET["direct"])) {
@ -379,7 +236,6 @@ foreach ($contents as $content) {
case 1:
case 'simple_graph':
$data["module"] = io_safe_output_xml (db_get_value ('nombre', 'tagente_modulo', 'id_agente_modulo', $content['id_agent_module']));
$data["agent"] = io_safe_output_xml (modules_get_agentmodule_agent_name ($content['id_agent_module']));
@ -390,7 +246,6 @@ foreach ($contents as $content) {
$date_init = $date_end - $content['period'];
///
$temp_file = $config['attachment_store'] . '/simple_graph_' . $time.'_'.$content['id_rc'] . '.tmp';
$file = fopen ($temp_file, 'a+');
$buffer_file["objdata"] = $config['attachment_store'] . '/simple_graph_' . $time.'_'.$content['id_rc'] . '.tmp';
@ -415,7 +270,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end)";
$data_module = db_get_all_rows_sql($sql);
write_xml_file_graph ($data_module, $temp_file);
xml_file_graph ($data_module, $temp_file);
$file = fopen ($temp_file, 'a+');
$content_report = " </simple_graph>\n";
@ -434,7 +289,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit";
$data_module = db_get_all_rows_sql($sql);
$position = write_xml_file_graph ($data_module, $temp_file, $position);
$position = xml_file_graph ($data_module, $temp_file, $position);
$offset += $limit;
}
@ -480,7 +335,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end)";
$data_module = db_get_all_rows_sql($sql);
write_xml_file_graph ($data_module, $temp_file);
xml_file_graph ($data_module, $temp_file);
$file = fopen ($temp_file, 'a+');
$content_report = " </simple_baseline_graph>\n";
@ -499,7 +354,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit";
$data_module = db_get_all_rows_sql($sql);
$position = write_xml_file_graph ($data_module, $temp_file, $position);
$position = xml_file_graph ($data_module, $temp_file, $position);
$offset += $limit;
}
@ -562,7 +417,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end)";
$data_module = db_get_all_rows_sql($sql);
write_xml_file_graph ($data_module, $temp_file);
xml_file_graph ($data_module, $temp_file);
$file = fopen ($temp_file, 'a+');
$content_report = " </custom_graph>\n";
@ -580,7 +435,7 @@ foreach ($contents as $content) {
AND (utimestamp>=$date_init AND utimestamp<=$date_end) LIMIT $offset,$limit";
$data_module = db_get_all_rows_sql($sql);
$position = write_xml_file_graph ($data_module, $temp_file, $position);
$position = xml_file_graph ($data_module, $temp_file, $position);
$offset += $limit;
}
@ -750,7 +605,7 @@ foreach ($contents as $content) {
ORDER BY time2 DESC', $content['id_agent'], $datelimit, $date);
$events = db_get_all_rows_sql ($sql);
write_xml_file_event ($events, $temp_file,0, $content['id_agent']);
xml_file_event ($events, $temp_file,0, $content['id_agent']);
$file = fopen ($temp_file, 'a+');
$content_report = " </event_report_agent>\n";
@ -774,7 +629,7 @@ foreach ($contents as $content) {
$events = db_get_all_rows_sql ($sql);
$position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$position = xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$offset += $limit;
}
@ -883,7 +738,7 @@ foreach ($contents as $content) {
ORDER BY utimestamp ASC',
$datelimit, $report["datetime"], implode (",", $id_group));
$events = db_get_all_rows_sql($sql);
write_xml_file_event ($events, $temp_file, 0, $content['id_agent']);
xml_file_event ($events, $temp_file, 0, $content['id_agent']);
$file = fopen ($temp_file, 'a+');
$content_report = " </event_report_group>\n";
@ -905,7 +760,7 @@ foreach ($contents as $content) {
$events = db_get_all_rows_sql($sql);
$position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$position = xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$offset += $limit;
}
@ -955,7 +810,7 @@ foreach ($contents as $content) {
$events = db_get_all_rows_sql($sql);
write_xml_file_event ($events, $temp_file, 0, $content['id_agent']);
xml_file_event ($events, $temp_file, 0, $content['id_agent']);
$file = fopen ($temp_file, 'a+');
$content_report = " </event_report_module>\n";
@ -976,7 +831,7 @@ foreach ($contents as $content) {
$events = db_get_all_rows_sql($sql);
$position = write_xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$position = xml_file_event ($events, $temp_file, $position, $content['id_agent']);
$offset += $limit;
}
@ -1205,7 +1060,7 @@ foreach ($contents as $content) {
$result = fwrite($file, $content_report);
fclose($file);
write_xml_file_agent_data($agent_data, $temp_file, $agent_name);
xml_file_agent_data($agent_data, $temp_file, $agent_name);
$userGroups = users_get_groups($config['id_user'], 'AR', false);
if (empty($userGroups)) {
@ -1284,7 +1139,7 @@ foreach ($contents as $content) {
ORDER BY nombre";
$modules = db_get_all_rows_sql ($sql);
write_xml_file_agent_conf ($modules, $temp_file,0, $content['id_agent']);
xml_file_agent_conf ($modules, $temp_file,0, $content['id_agent']);
$file = fopen ($temp_file, 'a+');
$content_report = " </module_configuration>\n";
@ -1329,7 +1184,7 @@ foreach ($contents as $content) {
$modules = db_get_all_rows_sql ($sql);
$position = write_xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']);
$position = xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']);
$offset += $limit;
}
@ -1372,7 +1227,7 @@ foreach ($contents as $content) {
$content_report = " <object id=\"$i\">\n";
$content_report .= " <agent_data>\n";
$result = fwrite($file, $content_report);
write_xml_file_agent_data($agent, $temp_file);
xml_file_agent_data($agent, $temp_file);
$userGroups = users_get_groups($config['id_user'], 'AR', false);
if (empty($userGroups)) {
@ -1452,7 +1307,7 @@ foreach ($contents as $content) {
ORDER BY nombre";
$modules = db_get_all_rows_sql ($sql);
write_xml_file_agent_conf ($modules, $temp_file, 0, $content['id_agent']);
xml_file_agent_conf ($modules, $temp_file, 0, $content['id_agent']);
$file = fopen ($temp_file, 'a+');
$content_report = " </module_configuration>\n";
@ -1498,7 +1353,7 @@ foreach ($contents as $content) {
$modules = db_get_all_rows_sql ($sql);
$position = write_xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']);
$position = xml_file_agent_conf ($modules, $temp_file, $position, $content['id_agent']);
$offset += $limit;
}