mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
572258e0c2
* breakout handling of suricata extend v. 1 returns * initial work for suricata 7.0.0 * add shared file for various Suricata related variables * update handling for new Suricata stuff * fix suricata rrd name bits * update suricata app page a bit * misc * add a new v2 suricata graph * more suricata v2 graphs * fix app data for suricata * more graph work * fix initial graphs * the page selector for suricata v2 * more cleanup for suricata stuff * add more graphs * add suricata_v2_pkt_drop.inc.php * add suricata_v2_error_delta.inc.php * add suricata app layer flows graph * add app layer tx * start work on bypassed * add flow bypass stuff * add suricata error stuff * add more graphs * more suricata v2 work * ... * add packets overview * cleanup suricata_packets_overview.inc.php * more work on the overview graphs * error delta is now per second * cleanup suricata_v2_app_layer_error_alloc.inc.php * add new flow proto stuff * add suricata_v2_flow_proto * add new overview graph * update v2 app layer flows graph * more v2 graph cleanup * suricata graph cleanup * suricata_dec_proto_overview now works * more graph work for suricata * more graph work * add another overview graph * snmp fix * add a new overview graph * add a new over view * more graph stuff * more memory graphs * tidy pages bit * more work on decoder stuff * more decoder work * decoder stuff done * cleanup suricata_packets_overview.inc.php * appl layer tx work * add app flow stuff * fix suricata_v2_decoder__event__ethernet.inc.php * fix suricata_v2_decoder__event__ipv4.inc.php * fix suricata_v2_decoder__event__ipv6.inc.php * add alloc error stuff * more error related work * more error stuff * start work on internal errors * add internal error graphs * parser error stuff done * more decoder work * decoder icmpv4 * more decoder work * ltnull done * mpls decoder stuff * nsh decoder work * decoder ppp done * more decoder work * more decoder work * more vlan work * vntag decoder stuff done * descr_len auto set for generic stats * ipv6 decoder stuff done * style fix * style fix * more style cleanup * more suricata graph work * fix require usage * tweak drop info a bit * add some checks for for with suricata 7.0.4 * more suricata tweaks * fix sagan instance handling * another minor fix * fix improper munging * rever something accidentally added to this repo * add linux_suricata-v2.snmprex * rename the metrics for instances from instance_ to instances_ * add linux_suricata-v2.json test data * style fix * minor munging tweak * style cleanup * some app data fixes * remove a typo from test data * add deleted_at and make sure discovered is numeric and not a string 1 * derp... json fix * remove something accidentally added * fix a small erorr in the test data * add a missing variable to the test data * try another tweak for suricata json test stuff * derp... fix a type in the suricata poller * revert a test data change * re-order some the metrics in the test * some more metric re-ordering * add a missing status * remove something that was accidentally added to this branch instead of another * strcmp cleanup * style fix
261 lines
12 KiB
PHP
261 lines
12 KiB
PHP
<?php
|
|
|
|
use LibreNMS\Config;
|
|
use LibreNMS\Exceptions\JsonAppException;
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$name = 'suricata';
|
|
try {
|
|
$suricata = json_app_get($device, 'suricata-stats');
|
|
} catch (JsonAppException $e) {
|
|
echo PHP_EOL . $name . ':' . $e->getCode() . ':' . $e->getMessage() . PHP_EOL;
|
|
update_application($app, $e->getCode() . ':' . $e->getMessage(), []); // Set empty metrics and error message
|
|
|
|
return;
|
|
}
|
|
|
|
// grab the alert here as it is the global one
|
|
$metrics = ['alert' => $suricata['alert']];
|
|
|
|
// Used by both.
|
|
$instances = [];
|
|
$old_data = $app->data;
|
|
$new_data = [];
|
|
|
|
if ($suricata['version'] == 1) {
|
|
$new_data['version'] = 1;
|
|
|
|
$rrd_def = RrdDefinition::make()
|
|
->addDataset('af_dcerpc_tcp', 'DERIVE', 0)
|
|
->addDataset('af_dcerpc_udp', 'DERIVE', 0)
|
|
->addDataset('af_dhcp', 'DERIVE', 0)
|
|
->addDataset('af_dns_tcp', 'DERIVE', 0)
|
|
->addDataset('af_dns_udp', 'DERIVE', 0)
|
|
->addDataset('af_failed_tcp', 'DERIVE', 0)
|
|
->addDataset('af_failed_udp', 'DERIVE', 0)
|
|
->addDataset('af_ftp', 'DERIVE', 0)
|
|
->addDataset('af_ftp_data', 'DERIVE', 0)
|
|
->addDataset('af_http', 'DERIVE', 0)
|
|
->addDataset('af_ikev2', 'DERIVE', 0)
|
|
->addDataset('af_imap', 'DERIVE', 0)
|
|
->addDataset('af_krb5_tcp', 'DERIVE', 0)
|
|
->addDataset('af_krb5_udp', 'DERIVE', 0)
|
|
->addDataset('af_mqtt', 'DERIVE', 0)
|
|
->addDataset('af_nfs_tcp', 'DERIVE', 0)
|
|
->addDataset('af_nfs_udp', 'DERIVE', 0)
|
|
->addDataset('af_ntp', 'DERIVE', 0)
|
|
->addDataset('af_rdp', 'DERIVE', 0)
|
|
->addDataset('af_rfb', 'DERIVE', 0)
|
|
->addDataset('af_sip', 'DERIVE', 0)
|
|
->addDataset('af_smb', 'DERIVE', 0)
|
|
->addDataset('af_smtp', 'DERIVE', 0)
|
|
->addDataset('af_snmp', 'DERIVE', 0)
|
|
->addDataset('af_ssh', 'DERIVE', 0)
|
|
->addDataset('af_tftp', 'DERIVE', 0)
|
|
->addDataset('af_tls', 'DERIVE', 0)
|
|
->addDataset('alert', 'GAUGE', 0)
|
|
->addDataset('at_dcerpc_tcp', 'DERIVE', 0)
|
|
->addDataset('at_dcerpc_udp', 'DERIVE', 0)
|
|
->addDataset('at_dhcp', 'DERIVE', 0)
|
|
->addDataset('at_dns_tcp', 'DERIVE', 0)
|
|
->addDataset('at_dns_udp', 'DERIVE', 0)
|
|
->addDataset('at_ftp', 'DERIVE', 0)
|
|
->addDataset('at_ftp_data', 'DERIVE', 0)
|
|
->addDataset('at_http', 'DERIVE', 0)
|
|
->addDataset('at_ikev2', 'DERIVE', 0)
|
|
->addDataset('at_imap', 'DERIVE', 0)
|
|
->addDataset('at_krb5_tcp', 'DERIVE', 0)
|
|
->addDataset('at_krb5_udp', 'DERIVE', 0)
|
|
->addDataset('at_mqtt', 'DERIVE', 0)
|
|
->addDataset('at_nfs_tcp', 'DERIVE', 0)
|
|
->addDataset('at_nfs_udp', 'DERIVE', 0)
|
|
->addDataset('at_ntp', 'DERIVE', 0)
|
|
->addDataset('at_rdp', 'DERIVE', 0)
|
|
->addDataset('at_rfb', 'DERIVE', 0)
|
|
->addDataset('at_sip', 'DERIVE', 0)
|
|
->addDataset('at_smb', 'DERIVE', 0)
|
|
->addDataset('at_smtp', 'DERIVE', 0)
|
|
->addDataset('at_snmp', 'DERIVE', 0)
|
|
->addDataset('at_ssh', 'DERIVE', 0)
|
|
->addDataset('at_tftp', 'DERIVE', 0)
|
|
->addDataset('at_tls', 'DERIVE', 0)
|
|
->addDataset('bytes', 'DERIVE', 0)
|
|
->addDataset('dec_avg_pkt_size', 'DERIVE', 0)
|
|
->addDataset('dec_chdlc', 'DERIVE', 0)
|
|
->addDataset('dec_ethernet', 'DERIVE', 0)
|
|
->addDataset('dec_geneve', 'DERIVE', 0)
|
|
->addDataset('dec_ieee8021ah', 'DERIVE', 0)
|
|
->addDataset('dec_invalid', 'DERIVE', 0)
|
|
->addDataset('dec_ipv4', 'DERIVE', 0)
|
|
->addDataset('dec_ipv4_in_ipv6', 'DERIVE', 0)
|
|
->addDataset('dec_ipv6', 'DERIVE', 0)
|
|
->addDataset('dec_max_pkt_size', 'DERIVE', 0)
|
|
->addDataset('dec_mpls', 'DERIVE', 0)
|
|
->addDataset('dec_mx_mac_addrs_d', 'DERIVE', 0)
|
|
->addDataset('dec_mx_mac_addrs_s', 'DERIVE', 0)
|
|
->addDataset('dec_packets', 'DERIVE', 0)
|
|
->addDataset('dec_ppp', 'DERIVE', 0)
|
|
->addDataset('dec_pppoe', 'DERIVE', 0)
|
|
->addDataset('dec_raw', 'DERIVE', 0)
|
|
->addDataset('dec_sctp', 'DERIVE', 0)
|
|
->addDataset('dec_sll', 'DERIVE', 0)
|
|
->addDataset('dec_tcp', 'DERIVE', 0)
|
|
->addDataset('dec_teredo', 'DERIVE', 0)
|
|
->addDataset('dec_too_many_layer', 'DERIVE', 0)
|
|
->addDataset('dec_udp', 'DERIVE', 0)
|
|
->addDataset('dec_vlan', 'DERIVE', 0)
|
|
->addDataset('dec_vlan_qinq', 'DERIVE', 0)
|
|
->addDataset('dec_vntag', 'DERIVE', 0)
|
|
->addDataset('dec_vxlan', 'DERIVE', 0)
|
|
->addDataset('drop_percent', 'GAUGE', 0)
|
|
->addDataset('dropped', 'DERIVE', 0)
|
|
->addDataset('error_percent', 'GAUGE', 0)
|
|
->addDataset('errors', 'DERIVE', 0)
|
|
->addDataset('f_icmpv4', 'DERIVE', 0)
|
|
->addDataset('f_icmpv6', 'DERIVE', 0)
|
|
->addDataset('f_memuse', 'GAUGE', 0)
|
|
->addDataset('f_tcp', 'DERIVE', 0)
|
|
->addDataset('f_udp', 'DERIVE', 0)
|
|
->addDataset('ftp_memuse', 'GAUGE', 0)
|
|
->addDataset('http_memuse', 'GAUGE', 0)
|
|
->addDataset('ifdrop_percent', 'GAUGE', 0)
|
|
->addDataset('ifdropped', 'DERIVE', 0)
|
|
->addDataset('packets', 'DERIVE', 0)
|
|
->addDataset('tcp_memuse', 'GAUGE', 0)
|
|
->addDataset('tcp_reass_memuse', 'GAUGE', 0)
|
|
->addDataset('uptime', 'GAUGE', 0);
|
|
|
|
// keys that need to by migrated from the instance to the
|
|
$instance_keys = [
|
|
'af_dcerpc_tcp', 'af_dcerpc_udp', 'af_dhcp', 'af_dns_tcp', 'af_dns_udp', 'af_failed_tcp', 'af_failed_udp', 'af_ftp',
|
|
'af_ftp_data', 'af_http', 'af_ikev2', 'af_imap', 'af_krb5_tcp', 'af_krb5_udp', 'af_mqtt', 'af_nfs_tcp', 'af_nfs_udp',
|
|
'af_ntp', 'af_rdp', 'af_rfb', 'af_sip', 'af_smb', 'af_smtp', 'af_snmp', 'af_ssh', 'af_tftp', 'af_tls', 'alert',
|
|
'at_dcerpc_tcp', 'at_dcerpc_udp', 'at_dhcp', 'at_dns_tcp', 'at_dns_udp', 'at_ftp', 'at_ftp_data', 'at_http', 'at_ikev2',
|
|
'at_imap', 'at_krb5_tcp', 'at_krb5_udp', 'at_mqtt', 'at_nfs_tcp', 'at_nfs_udp', 'at_ntp', 'at_rdp', 'at_rfb', 'at_sip',
|
|
'at_smb', 'at_smtp', 'at_snmp', 'at_ssh', 'at_tftp', 'at_tls', 'bytes', 'dec_avg_pkt_size', 'dec_chdlc', 'dec_ethernet',
|
|
'dec_geneve', 'dec_ieee8021ah', 'dec_invalid', 'dec_ipv4', 'dec_ipv4_in_ipv6', 'dec_ipv6', 'dec_max_pkt_size', 'dec_mpls',
|
|
'dec_mx_mac_addrs_d', 'dec_mx_mac_addrs_s', 'dec_packets', 'dec_ppp', 'dec_pppoe', 'dec_raw', 'dec_sctp', 'dec_sll',
|
|
'dec_tcp', 'dec_teredo', 'dec_too_many_layer', 'dec_udp', 'dec_vlan', 'dec_vlan_qinq', 'dec_vntag', 'dec_vxlan',
|
|
'drop_delta', 'drop_percent', 'dropped', 'error_delta', 'error_percent', 'errors', 'f_icmpv4', 'f_icmpv6', 'f_memuse',
|
|
'f_tcp', 'f_udp', 'ftp_memuse', 'http_memuse', 'ifdrop_delta', 'ifdrop_percent', 'ifdropped', 'packet_delta', 'packets',
|
|
'tcp_memuse', 'tcp_reass_memuse', 'uptime',
|
|
];
|
|
|
|
// keys to add to the RRD field
|
|
$field_keys = [
|
|
'af_dcerpc_tcp', 'af_dcerpc_udp', 'af_dhcp', 'af_dns_tcp', 'af_dns_udp', 'af_failed_tcp', 'af_failed_udp', 'af_ftp',
|
|
'af_ftp_data', 'af_http', 'af_ikev2', 'af_imap', 'af_krb5_tcp', 'af_krb5_udp', 'af_mqtt', 'af_nfs_tcp', 'af_nfs_udp',
|
|
'af_ntp', 'af_rdp', 'af_rfb', 'af_sip', 'af_smb', 'af_smtp', 'af_snmp', 'af_ssh', 'af_tftp', 'af_tls', 'alert',
|
|
'at_dcerpc_tcp', 'at_dcerpc_udp', 'at_dhcp', 'at_dns_tcp', 'at_dns_udp', 'at_ftp', 'at_ftp_data', 'at_http', 'at_ikev2',
|
|
'at_imap', 'at_krb5_tcp', 'at_krb5_udp', 'at_mqtt', 'at_nfs_tcp', 'at_nfs_udp', 'at_ntp', 'at_rdp', 'at_rfb', 'at_sip',
|
|
'at_smb', 'at_smtp', 'at_snmp', 'at_ssh', 'at_tftp', 'at_tls', 'bytes', 'dec_avg_pkt_size', 'dec_chdlc', 'dec_ethernet',
|
|
'dec_geneve', 'dec_ieee8021ah', 'dec_invalid', 'dec_ipv4', 'dec_ipv4_in_ipv6', 'dec_ipv6', 'dec_max_pkt_size', 'dec_mpls',
|
|
'dec_mx_mac_addrs_d', 'dec_mx_mac_addrs_s', 'dec_packets', 'dec_ppp', 'dec_pppoe', 'dec_raw', 'dec_sctp', 'dec_sll',
|
|
'dec_tcp', 'dec_teredo', 'dec_too_many_layer', 'dec_udp', 'dec_vlan', 'dec_vlan_qinq', 'dec_vntag', 'dec_vxlan',
|
|
'drop_percent', 'dropped', 'error_percent', 'errors', 'f_icmpv4', 'f_icmpv6', 'f_memuse',
|
|
'f_tcp', 'f_udp', 'ftp_memuse', 'http_memuse', 'ifdrop_percent', 'ifdropped', 'packets',
|
|
'tcp_memuse', 'tcp_reass_memuse', 'uptime',
|
|
];
|
|
|
|
// process each instance
|
|
foreach ($suricata['data'] as $instance => $stats) {
|
|
if ($instance == '.total') {
|
|
$rrd_name = ['app', $name, $app->app_id];
|
|
} else {
|
|
$rrd_name = ['app', $name, $app->app_id, $instance];
|
|
$instances[] = $instance;
|
|
}
|
|
|
|
foreach ($instance_keys as $metric_key) {
|
|
$metrics[$instance . '_' . $metric_key] = $stats[$metric_key];
|
|
}
|
|
|
|
$fields = [];
|
|
foreach ($field_keys as $field_key) {
|
|
$fields[$field_key] = $stats[$field_key];
|
|
}
|
|
|
|
$tags = ['name' => $name, 'app_id' => $app->app_id, 'rrd_def' => $rrd_def, 'rrd_name' => $rrd_name];
|
|
data_update($device, 'app', $tags, $fields);
|
|
}
|
|
} elseif ($suricata['version'] == 2) {
|
|
$new_data['version'] = 2;
|
|
|
|
// Nothing here is used by version 1.
|
|
include Config::get('install_dir') . '/includes/suricata-shared.php';
|
|
|
|
$counter_rrd_def = RrdDefinition::make()
|
|
->addDataset('data', 'DERIVE', 0);
|
|
|
|
$gauge_rrd_def = RrdDefinition::make()
|
|
->addDataset('data', 'GAUGE', 0);
|
|
|
|
foreach ($suricata['data']['totals'] as $stat => $value) {
|
|
// If this is defined, it not something we understand.
|
|
if (isset($suricata_stat_keys[$stat])) {
|
|
$rrd_name = ['app', $name, $app->app_id, 'totals___' . $stat];
|
|
$fields = ['data' => $value];
|
|
|
|
$metrics['totals_' . $stat] = $value;
|
|
|
|
// Check if it is a gauge or counter
|
|
if (isset($suricata_stat_gauges[$stat])) {
|
|
$tags = ['name' => $name, 'app_id' => $app->app_id, 'rrd_def' => $gauge_rrd_def, 'rrd_name' => $rrd_name];
|
|
data_update($device, 'app', $tags, $fields);
|
|
} else {
|
|
$tags = ['name' => $name, 'app_id' => $app->app_id, 'rrd_def' => $counter_rrd_def, 'rrd_name' => $rrd_name];
|
|
data_update($device, 'app', $tags, $fields);
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($suricata['data']['instances'] as $instance => $instance_stats) {
|
|
$instances[] = $instance;
|
|
|
|
foreach ($instance_stats as $stat => $value) {
|
|
// If this is defined, it not something we understand.
|
|
if (isset($suricata_stat_keys[$stat])) {
|
|
$rrd_name = ['app', $name, $app->app_id, 'instance_' . $instance . '___' . $stat];
|
|
$fields = ['data' => $value];
|
|
|
|
$metrics['instances_' . $instance . '_' . $stat] = $value;
|
|
|
|
// Check if it is a gauge or counter
|
|
if (isset($suricata_stat_gauges[$stat])) {
|
|
$tags = ['name' => $name, 'app_id' => $app->app_id, 'rrd_def' => $gauge_rrd_def, 'rrd_name' => $rrd_name];
|
|
data_update($device, 'app', $tags, $fields);
|
|
} else {
|
|
$tags = ['name' => $name, 'app_id' => $app->app_id, 'rrd_def' => $counter_rrd_def, 'rrd_name' => $rrd_name];
|
|
data_update($device, 'app', $tags, $fields);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
echo PHP_EOL . $name . ': ' . $suricata['version'] . ' is not a supported extend version' . PHP_EOL;
|
|
|
|
return;
|
|
}
|
|
|
|
// check for added or removed instances
|
|
$old_instances = $old_data['instances'] ?? [];
|
|
$added_instances = array_diff($instances, $old_instances);
|
|
$removed_instances = array_diff($old_instances, $instances);
|
|
$new_data['instances'] = $instances;
|
|
|
|
// if we have any source instances, save and log
|
|
if (count($added_instances) > 0 || count($removed_instances) > 0) {
|
|
$app->data = ['instances' => $instances];
|
|
$log_message = 'Suricata Instance Change:';
|
|
$log_message .= count($added_instances) > 0 ? ' Added ' . implode(',', $added_instances) : '';
|
|
$log_message .= count($removed_instances) > 0 ? ' Removed ' . implode(',', $added_instances) : '';
|
|
log_event($log_message, $device, 'application');
|
|
}
|
|
|
|
$app->data = $new_data;
|
|
|
|
//
|
|
// all done so update the app metrics
|
|
//
|
|
update_application($app, 'OK', $metrics);
|