librenms/includes/functions.php

1501 lines
48 KiB
PHP
Raw Normal View History

<?php
/**
* Observium
*
* This file is part of Observium.
*
* @package observium
* @subpackage functions
* @author Adam Armstrong <adama@memetic.org>
* @copyright (C) 2006 - 2012 Adam Armstrong
*
*/
// Include from PEAR
include_once("Net/IPv4.php");
include_once("Net/IPv6.php");
// Observium Includes
2015-01-22 21:22:37 +00:00
include_once($config['install_dir'] . "/includes/dbFacile.php");
include_once($config['install_dir'] . "/includes/common.php");
include_once($config['install_dir'] . "/includes/datastore.inc.php");
include_once($config['install_dir'] . "/includes/billing.php");
include_once($config['install_dir'] . "/includes/cisco-entities.php");
include_once($config['install_dir'] . "/includes/syslog.php");
include_once($config['install_dir'] . "/includes/rewrites.php");
include_once($config['install_dir'] . "/includes/snmp.inc.php");
include_once($config['install_dir'] . "/includes/services.inc.php");
include_once($config['install_dir'] . "/includes/console_colour.php");
$console_color = new Console_Color2();
2015-07-13 18:10:26 +00:00
if ($config['alerts']['email']['enable']) {
include_once($config['install_dir'] . "/includes/phpmailer/class.phpmailer.php");
include_once($config['install_dir'] . "/includes/phpmailer/class.smtp.php");
}
2015-07-13 18:10:26 +00:00
function array_sort($array, $on, $order=SORT_ASC) {
$new_array = array();
$sortable_array = array();
if (count($array) > 0) {
foreach ($array as $k => $v) {
if (is_array($v)) {
foreach ($v as $k2 => $v2) {
if ($k2 == $on) {
$sortable_array[$k] = $v2;
}
}
2015-07-13 18:10:26 +00:00
}
else {
$sortable_array[$k] = $v;
}
}
switch ($order) {
2015-07-13 18:10:26 +00:00
case SORT_ASC:
asort($sortable_array);
break;
2015-07-13 18:10:26 +00:00
case SORT_DESC:
arsort($sortable_array);
break;
}
foreach ($sortable_array as $k => $v) {
$new_array[$k] = $array[$k];
}
}
return $new_array;
}
2015-07-13 18:10:26 +00:00
function mac_clean_to_readable($mac) {
$r = substr($mac, 0, 2);
$r .= ":".substr($mac, 2, 2);
$r .= ":".substr($mac, 4, 2);
$r .= ":".substr($mac, 6, 2);
$r .= ":".substr($mac, 8, 2);
$r .= ":".substr($mac, 10, 2);
2015-07-13 18:10:26 +00:00
return($r);
}
2015-07-13 18:10:26 +00:00
function only_alphanumeric($string) {
return preg_replace('/[^a-zA-Z0-9]/', '', $string);
}
2015-07-13 18:10:26 +00:00
function logfile($string) {
global $config;
2015-07-13 18:10:26 +00:00
$fd = fopen($config['log_file'],'a');
fputs($fd,$string . "\n");
fclose($fd);
}
2015-07-13 18:10:26 +00:00
function getHostOS($device){
global $config;
2015-07-13 18:10:26 +00:00
$sysDescr = snmp_get ($device, "SNMPv2-MIB::sysDescr.0", "-Ovq");
$sysObjectId = snmp_get ($device, "SNMPv2-MIB::sysObjectID.0", "-Ovqn");
d_echo("| $sysDescr | $sysObjectId | ");
2015-07-13 18:10:26 +00:00
$path = $config['install_dir'] . "/includes/discovery/os";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle)) {
if (preg_match("/.php$/", $file)) {
include($config['install_dir'] . "/includes/discovery/os/" . $file);
}
}
2015-07-13 18:10:26 +00:00
closedir($dir_handle);
2015-07-13 18:10:26 +00:00
if ($os) {
return $os;
}
else {
return "generic";
}
}
2015-07-13 18:10:26 +00:00
function percent_colour($perc) {
$r = min(255, 5 * ($perc - 25));
$b = max(0, 255 - (5 * ($perc + 25)));
2015-07-13 18:10:26 +00:00
return sprintf('#%02x%02x%02x', $r, $b, $b);
}
2015-07-13 18:10:26 +00:00
// Returns the last in/out errors value in RRD
function interface_errors($rrd_file, $period = '-1d') {
global $config;
$errors = array();
$cmd = $config['rrdtool']." fetch -s $period -e -300s $rrd_file AVERAGE | grep : | cut -d\" \" -f 4,5";
$data = trim(shell_exec($cmd));
$in_errors = 0;
$out_errors = 0;
foreach (explode("\n", $data) as $entry) {
list($in, $out) = explode(" ", $entry);
$in_errors += ($in * 300);
$out_errors += ($out * 300);
}
$errors['in'] = round($in_errors);
$errors['out'] = round($out_errors);
2015-07-13 18:10:26 +00:00
return $errors;
}
2015-07-13 18:10:26 +00:00
function getImage($device) {
return '<img src="' . getImageSrc($device) . '" />';
}
2015-07-13 18:10:26 +00:00
function getImageSrc($device) {
global $config;
return $config['base_url'] . '/images/os/' . getImageName($device) . '.png';
}
function getImageName($device, $use_database=true) {
2015-07-13 18:10:26 +00:00
global $config;
$device['os'] = strtolower($device['os']);
// fetch from the database
if ($use_database && !empty($device['icon']) && file_exists($config['html_dir'] . "/images/os/" . $device['icon'] . ".png")) {
return $device['icon'];
2015-07-13 18:10:26 +00:00
}
// linux specific handling, distro icons
if ($device['os'] == "linux") {
$features = strtolower(trim($device['features']));
list($distro) = explode(" ", $features);
if (file_exists($config['html_dir'] . "/images/os/$distro" . ".png")) {
return $distro;
2015-07-13 18:10:26 +00:00
}
}
// use the icon from os config
if (!empty($config['os'][$device['os']]['icon']) && file_exists($config['html_dir'] . "/images/os/" . $config['os'][$device['os']]['icon'] . ".png")) {
return $config['os'][$device['os']]['icon'];
}
// guess the icon has the same name as the os
if (file_exists($config['html_dir'] . '/images/os/' . $device['os'] . '.png')) {
return $device['os'];
}
// fallback to the generic icon
return 'generic';
}
2015-07-13 18:10:26 +00:00
function renamehost($id, $new, $source = 'console') {
global $config;
// FIXME does not check if destination exists!
$host = dbFetchCell("SELECT `hostname` FROM `devices` WHERE `device_id` = ?", array($id));
if (rename($config['rrd_dir']."/$host",$config['rrd_dir']."/$new") === TRUE) {
dbUpdate(array('hostname' => $new), 'devices', 'device_id=?', array($id));
log_event("Hostname changed -> $new ($source)", $id, 'system');
}
else {
echo "Renaming of $host failed\n";
log_event("Renaming of $host failed", $id, 'system');
}
}
2015-07-13 18:10:26 +00:00
function delete_device($id) {
global $config, $debug;
$ret = '';
$host = dbFetchCell("SELECT hostname FROM devices WHERE device_id = ?", array($id));
if( empty($host) ) {
return "No such host.";
}
// Remove IPv4/IPv6 addresses before removing ports as they depend on port_id
dbQuery("DELETE `ipv4_addresses` FROM `ipv4_addresses` INNER JOIN `ports` ON `ports`.`port_id`=`ipv4_addresses`.`port_id` WHERE `device_id`=?",array($id));
dbQuery("DELETE `ipv6_addresses` FROM `ipv6_addresses` INNER JOIN `ports` ON `ports`.`port_id`=`ipv6_addresses`.`port_id` WHERE `device_id`=?",array($id));
foreach (dbFetch("SELECT * FROM `ports` WHERE `device_id` = ?", array($id)) as $int_data) {
$int_if = $int_data['ifDescr'];
$int_id = $int_data['port_id'];
delete_port($int_id);
$ret .= "Removed interface $int_id ($int_if)\n";
}
$fields = array('device_id','host');
foreach( $fields as $field ) {
foreach( dbFetch("SELECT table_name FROM information_schema.columns WHERE table_schema = ? AND column_name = ?",array($config['db_name'],$field)) as $table ) {
$table = $table['table_name'];
$entries = (int) dbDelete($table, "`$field` = ?", array($id));
if( $entries > 0 && $debug === true ) {
$ret .= "$field@$table = #$entries\n";
}
}
2015-07-13 18:10:26 +00:00
}
$ex = shell_exec("bash -c '( [ ! -d ".trim($config['rrd_dir'])."/".$host." ] || rm -vrf ".trim($config['rrd_dir'])."/".$host." 2>&1 ) && echo -n OK'");
$tmp = explode("\n",$ex);
if( $tmp[sizeof($tmp)-1] != "OK" ) {
$ret .= "Could not remove files:\n$ex\n";
}
$ret .= "Removed device $host\n";
log_event("Device $host has been removed", 0, 'system');
2015-07-13 18:10:26 +00:00
return $ret;
}
function addHost($host, $snmpver, $port = '161', $transport = 'udp', $quiet = '0', $poller_group = '0', $force_add = '0', $port_assoc_mode = 'ifIndex') {
2015-07-13 18:10:26 +00:00
global $config;
2015-07-13 18:10:26 +00:00
list($hostshort) = explode(".", $host);
// Test Database Exists
2015-10-25 21:23:06 +00:00
if (host_exists($host) === false) {
// Valid port assoc mode
if (! is_valid_port_assoc_mode ($port_assoc_mode)) {
if ($quiet == 0) {
print_error ("Invalid port association_mode '$port_assoc_mode'. Valid modes are: " . join (', ', get_port_assoc_modes ()));
return 0;
}
}
if ($config['addhost_alwayscheckip'] === TRUE) {
$ip = gethostbyname($host);
} else {
$ip = $host;
}
if (ip_exists($ip) === false) {
2015-07-13 18:10:26 +00:00
// Test reachability
$address_family = snmpTransportToAddressFamily($transport);
2015-09-22 13:27:36 +00:00
if ($force_add == 1 || isPingable($host, $address_family)) {
2015-07-13 18:10:26 +00:00
if (empty($snmpver)) {
// Try SNMPv2c
$snmpver = 'v2c';
$ret = addHost($host, $snmpver, $port, $transport, $quiet, $poller_group, $force_add, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
if (!$ret) {
//Try SNMPv3
$snmpver = 'v3';
$ret = addHost($host, $snmpver, $port, $transport, $quiet, $poller_group, $force_add, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
if (!$ret) {
// Try SNMPv1
$snmpver = 'v1';
return addHost($host, $snmpver, $port, $transport, $quiet, $poller_group, $force_add, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
}
else {
return $ret;
}
}
else {
return $ret;
}
}
if ($snmpver === "v3") {
// Try each set of parameters from config
foreach ($config['snmp']['v3'] as $v3) {
$device = deviceArray($host, NULL, $snmpver, $port, $transport, $v3, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
if($quiet == '0') { print_message("Trying v3 parameters " . $v3['authname'] . "/" . $v3['authlevel'] . " ... "); }
if ($force_add == 1 || isSNMPable($device)) {
$snmphost = snmp_get($device, "sysName.0", "-Oqv", "SNMPv2-MIB");
if (empty($snmphost) or ($snmphost == $host || $hostshort = $host)) {
$device_id = createHost ($host, NULL, $snmpver, $port, $transport, $v3, $poller_group, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
return $device_id;
}
else {
if($quiet == '0') {
print_error("Given hostname does not match SNMP-read hostname ($snmphost)!");
}
}
}
else {
if($quiet == '0') {
print_error("No reply on credentials " . $v3['authname'] . "/" . $v3['authlevel'] . " using $snmpver");
}
}
}
}
elseif ($snmpver === "v2c" or $snmpver === "v1") {
// try each community from config
foreach ($config['snmp']['community'] as $community) {
$device = deviceArray($host, $community, $snmpver, $port, $transport, NULL, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
if($quiet == '0') {
print_message("Trying community $community ...");
}
if ($force_add == 1 || isSNMPable($device)) {
$snmphost = snmp_get($device, "sysName.0", "-Oqv", "SNMPv2-MIB");
if (empty($snmphost) || ($snmphost && ($snmphost == $host || $hostshort = $host))) {
$device_id = createHost ($host, $community, $snmpver, $port, $transport,array(),$poller_group, $port_assoc_mode);
2015-07-13 18:10:26 +00:00
return $device_id;
}
else {
if($quiet == '0') {
print_error("Given hostname does not match SNMP-read hostname ($snmphost)!");
}
}
}
else {
if($quiet == '0') {
print_error("No reply on community $community using $snmpver");
}
}
}
}
else {
if($quiet == '0') {
print_error("Unsupported SNMP Version \"$snmpver\".");
}
}
if (!$device_id) {
// Failed SNMP
if($quiet == '0') {
print_error("Could not reach $host with given SNMP community using $snmpver");
}
}
}
2015-07-13 18:10:26 +00:00
else {
// failed Reachability
if($quiet == '0') {
print_error("Could not ping $host");
}
}
}
2015-07-13 18:10:26 +00:00
else {
if ($quiet == 0) {
print_error("Already have host with this IP $host");
}
}
2015-07-13 18:10:26 +00:00
}
else {
// found in database
if($quiet == '0') {
print_error("Already got host $host");
}
}
2015-07-13 18:10:26 +00:00
return 0;
}
2015-07-13 18:10:26 +00:00
function scanUDP($host, $port, $timeout) {
$handle = fsockopen($host, $port, $errno, $errstr, 2);
socket_set_timeout ($handle, $timeout);
$write = fwrite($handle,"\x00");
if (!$write) {
next;
}
$startTime = time();
$endTime = time();
$timeDiff = $endTime - $startTime;
if ($timeDiff >= $timeout) {
fclose($handle);
return 1;
}
else {
fclose($handle);
return 0;
}
}
function deviceArray($host, $community, $snmpver, $port = 161, $transport = 'udp', $v3, $port_assoc_mode = 'ifIndex') {
2015-07-13 18:10:26 +00:00
$device = array();
$device['hostname'] = $host;
$device['port'] = $port;
$device['transport'] = $transport;
/* Get port_assoc_mode id if neccessary
* We can work with names of IDs here */
if (! is_int ($port_assoc_mode))
$port_assoc_mode = get_port_assoc_mode_id ($port_assoc_mode);
$device['port_association_mode'] = $port_assoc_mode;
2015-07-13 18:10:26 +00:00
$device['snmpver'] = $snmpver;
if ($snmpver === "v2c" or $snmpver === "v1") {
$device['community'] = $community;
}
elseif ($snmpver === "v3") {
$device['authlevel'] = $v3['authlevel'];
$device['authname'] = $v3['authname'];
$device['authpass'] = $v3['authpass'];
$device['authalgo'] = $v3['authalgo'];
$device['cryptopass'] = $v3['cryptopass'];
$device['cryptoalgo'] = $v3['cryptoalgo'];
}
return $device;
}
2015-07-13 18:10:26 +00:00
function netmask2cidr($netmask) {
$addr = Net_IPv4::parseAddress("1.2.3.4/$netmask");
return $addr->bitmask;
}
2015-07-13 18:10:26 +00:00
function cidr2netmask($netmask) {
return (long2ip(ip2long("255.255.255.255") << (32-$netmask)));
}
2015-07-13 18:10:26 +00:00
function formatUptime($diff, $format="long") {
$yearsDiff = floor($diff/31536000);
$diff -= $yearsDiff*31536000;
$daysDiff = floor($diff/86400);
$diff -= $daysDiff*86400;
$hrsDiff = floor($diff/60/60);
$diff -= $hrsDiff*60*60;
$minsDiff = floor($diff/60);
$diff -= $minsDiff*60;
$secsDiff = $diff;
$uptime = "";
if ($format == "short") {
if ($yearsDiff > '0') {
$uptime .= $yearsDiff . "y ";
}
if ($daysDiff > '0') {
$uptime .= $daysDiff . "d ";
}
if ($hrsDiff > '0') {
$uptime .= $hrsDiff . "h ";
}
if ($minsDiff > '0') {
$uptime .= $minsDiff . "m ";
}
if ($secsDiff > '0') {
$uptime .= $secsDiff . "s ";
}
}
else {
if ($yearsDiff > '0') {
$uptime .= $yearsDiff . " years, ";
}
if ($daysDiff > '0') {
$uptime .= $daysDiff . " day" . ($daysDiff != 1 ? 's' : '') . ", ";
}
if ($hrsDiff > '0') {
$uptime .= $hrsDiff . "h ";
}
if ($minsDiff > '0') {
$uptime .= $minsDiff . "m ";
}
if ($secsDiff > '0') {
$uptime .= $secsDiff . "s ";
}
}
return trim($uptime);
}
2015-07-13 18:10:26 +00:00
function isSNMPable($device) {
global $config;
$pos = snmp_get($device, "sysObjectID.0", "-Oqv", "SNMPv2-MIB");
if(empty($pos)) {
// Support for Hikvision
$pos = snmp_get($device, "SNMPv2-SMI::enterprises.39165.1.1.0", "-Oqv", "SNMPv2-MIB");
}
if ($pos === '' || $pos === false) {
return false;
}
else {
return true;
}
}
2015-09-24 00:07:15 +00:00
/**
* Check if the given host responds to ICMP echo requests ("pings").
*
* @param string $hostname The hostname or IP address to send ping requests to.
* @param int $address_family The address family (AF_INET for IPv4 or AF_INET6 for IPv6) to use. Defaults to IPv4. Will *not* be autodetected for IP addresses, so it has to be set to AF_INET6 when pinging an IPv6 address or an IPv6-only host.
2015-10-17 19:11:21 +00:00
* @param array $attribs The device attributes
2015-09-24 00:07:15 +00:00
*
* @return bool TRUE if the host responded to at least one ping request, FALSE otherwise.
*/
2015-10-17 19:11:21 +00:00
function isPingable($hostname, $address_family = AF_INET, $attribs = array()) {
2015-07-13 18:10:26 +00:00
global $config;
2015-10-13 22:46:36 +00:00
$response = array();
if (can_ping_device($attribs) === true) {
$fping_params = '';
if(is_numeric($config['fping_options']['retries']) || $config['fping_options']['retries'] > 1) {
$fping_params .= ' -r ' . $config['fping_options']['retries'];
}
if(is_numeric($config['fping_options']['timeout']) || $config['fping_options']['timeout'] > 1) {
$fping_params .= ' -t ' . $config['fping_options']['timeout'];
}
if(is_numeric($config['fping_options']['count']) || $config['fping_options']['count'] > 0) {
$fping_params .= ' -c ' . $config['fping_options']['count'];
}
if(is_numeric($config['fping_options']['millisec']) || $config['fping_options']['millisec'] > 0) {
$fping_params .= ' -p ' . $config['fping_options']['millisec'];
}
$status = fping($hostname,$fping_params,$address_family);
if ($status['loss'] == 100) {
$response['result'] = FALSE;
}
else {
$response['result'] = TRUE;
}
if (is_numeric($status['avg'])) {
$response['last_ping_timetaken'] = $status['avg'];
}
$response['db'] = $status;
2015-07-13 18:10:26 +00:00
}
else {
$response['result'] = true;
$response['last_ping_timetaken'] = 0;
2015-07-13 18:10:26 +00:00
}
return($response);
}
2015-07-13 18:10:26 +00:00
function is_odd($number) {
return $number & 1; // 0 = even, 1 = odd
}
2015-07-13 18:10:26 +00:00
function getpollergroup($poller_group='0') {
//Is poller group an integer
if (is_int($poller_group) || ctype_digit($poller_group)) {
return $poller_group;
}
else {
//Check if it contains a comma
if (strpos($poller_group,',')!== FALSE) {
//If it has a comma use the first element as the poller group
$poller_group_array=explode(',',$poller_group);
return getpollergroup($poller_group_array[0]);
}
else {
if ($config['distributed_poller_group']) {
//If not use the poller's group from the config
return getpollergroup($config['distributed_poller_group']);
}
else {
//If all else fails use default
return '0';
}
}
}
}
function createHost($host, $community = NULL, $snmpver, $port = 161, $transport = 'udp', $v3 = array(), $poller_group='0', $port_assoc_mode = 'ifIndex') {
2015-07-13 18:10:26 +00:00
global $config;
$host = trim(strtolower($host));
$poller_group=getpollergroup($poller_group);
/* Get port_assoc_mode id if neccessary
* We can work with names of IDs here */
if (! is_int ($port_assoc_mode))
$port_assoc_mode = get_port_assoc_mode_id ($port_assoc_mode);
2015-07-13 18:10:26 +00:00
$device = array('hostname' => $host,
'sysName' => $host,
'community' => $community,
'port' => $port,
'transport' => $transport,
'status' => '1',
'snmpver' => $snmpver,
2015-08-11 11:38:05 +00:00
'poller_group' => $poller_group,
'status_reason' => '',
'port_association_mode' => $port_assoc_mode,
2015-07-13 18:10:26 +00:00
);
2015-07-13 18:10:26 +00:00
$device = array_merge($device, $v3);
2015-07-13 18:10:26 +00:00
$device['os'] = getHostOS($device);
2015-07-13 18:10:26 +00:00
if ($device['os']) {
2015-10-25 21:23:06 +00:00
if (host_exists($host) === false) {
$device_id = dbInsert($device, 'devices');
if ($device_id) {
2016-01-17 16:47:26 +00:00
oxidized_reload_nodes();
return($device_id);
}
else {
return false;
}
2015-07-13 18:10:26 +00:00
}
else {
return false;
2015-07-13 18:10:26 +00:00
}
}
2015-07-13 18:10:26 +00:00
else {
return FALSE;
}
}
2015-07-13 18:10:26 +00:00
function isDomainResolves($domain) {
return (gethostbyname($domain) != $domain || count(dns_get_record($domain)) != 0);
}
2015-07-13 18:10:26 +00:00
function hoststatus($id) {
return dbFetchCell("SELECT `status` FROM `devices` WHERE `device_id` = ?", array($id));
}
2015-07-13 18:10:26 +00:00
function match_network($nets, $ip, $first=false) {
$return = false;
if (!is_array ($nets)) $nets = array ($nets);
foreach ($nets as $net) {
$rev = (preg_match ("/^\!/", $net)) ? true : false;
$net = preg_replace ("/^\!/", "", $net);
$ip_arr = explode('/', $net);
$net_long = ip2long($ip_arr[0]);
$x = ip2long($ip_arr[1]);
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
$ip_long = ip2long($ip);
if ($rev) {
if (($ip_long & $mask) == ($net_long & $mask)) {
return false;
}
}
else {
if (($ip_long & $mask) == ($net_long & $mask)) {
$return = true;
}
if ($first && $return) {
return true;
}
}
}
return $return;
}
2015-07-13 18:10:26 +00:00
function snmp2ipv6($ipv6_snmp) {
$ipv6 = explode('.',$ipv6_snmp);
$ipv6_2 = array();
2015-07-13 18:10:26 +00:00
# Workaround stupid Microsoft bug in Windows 2008 -- this is fixed length!
# < fenestro> "because whoever implemented this mib for Microsoft was ignorant of RFC 2578 section 7.7 (2)"
if (count($ipv6) == 17 && $ipv6[0] == 16) {
array_shift($ipv6);
}
2015-07-13 18:10:26 +00:00
for ($i = 0;$i <= 15;$i++) {
$ipv6[$i] = zeropad(dechex($ipv6[$i]));
}
for ($i = 0;$i <= 15;$i+=2) {
$ipv6_2[] = $ipv6[$i] . $ipv6[$i+1];
}
2015-07-13 18:10:26 +00:00
return implode(':',$ipv6_2);
}
2015-07-13 18:10:26 +00:00
function ipv62snmp($ipv6) {
$ipv6_split = array();
$ipv6_ex = explode(':',Net_IPv6::uncompress($ipv6));
for ($i = 0;$i < 8;$i++) {
$ipv6_ex[$i] = zeropad($ipv6_ex[$i],4);
}
$ipv6_ip = implode('',$ipv6_ex);
for ($i = 0;$i < 32;$i+=2) $ipv6_split[] = hexdec(substr($ipv6_ip,$i,2));
2015-07-13 18:10:26 +00:00
return implode('.',$ipv6_split);
}
2015-07-13 18:10:26 +00:00
function get_astext($asn) {
global $config,$cache;
if (isset($config['astext'][$asn])) {
return $config['astext'][$asn];
}
else {
if (isset($cache['astext'][$asn])) {
return $cache['astext'][$asn];
}
else {
$result = dns_get_record("AS$asn.asn.cymru.com",DNS_TXT);
$txt = explode('|',$result[0]['txt']);
$result = trim(str_replace('"', '', $txt[4]));
$cache['astext'][$asn] = $result;
return $result;
}
}
}
# Use this function to write to the eventlog table
2015-07-13 18:10:26 +00:00
function log_event($text, $device = NULL, $type = NULL, $reference = NULL) {
if (!is_array($device)) {
$device = device_by_id_cache($device);
}
$insert = array('host' => ($device['device_id'] ? $device['device_id'] : 0),
2015-07-13 18:10:26 +00:00
'reference' => ($reference ? $reference : "NULL"),
'type' => ($type ? $type : "NULL"),
'datetime' => array("NOW()"),
'message' => $text);
2015-07-13 18:10:26 +00:00
dbInsert($insert, 'eventlog');
}
// Parse string with emails. Return array with email (as key) and name (as value)
2015-07-13 18:10:26 +00:00
function parse_email($emails) {
$result = array();
$regex = '/^[\"\']?([^\"\']+)[\"\']?\s{0,}<([^@]+@[^>]+)>$/';
if (is_string($emails)) {
$emails = preg_split('/[,;]\s{0,}/', $emails);
foreach ($emails as $email) {
if (preg_match($regex, $email, $out, PREG_OFFSET_CAPTURE)) {
$result[$out[2][0]] = $out[1][0];
}
else {
if (strpos($email, "@")) {
$result[$email] = NULL;
}
}
}
}
else {
// Return FALSE if input not string
return FALSE;
}
return $result;
}
function send_mail($emails,$subject,$message,$html=false) {
2015-07-13 18:10:26 +00:00
global $config;
if( is_array($emails) || ($emails = parse_email($emails)) ) {
if( !class_exists("PHPMailer",false) )
include_once($config['install_dir'] . "/includes/phpmailer/class.phpmailer.php");
$mail = new PHPMailer();
$mail->Hostname = php_uname('n');
if (empty($config['email_from']))
$config['email_from'] = '"' . $config['project_name'] . '" <' . $config['email_user'] . '@'.$mail->Hostname.'>';
foreach (parse_email($config['email_from']) as $from => $from_name)
$mail->setFrom($from, $from_name);
foreach ($emails as $email => $email_name)
$mail->addAddress($email, $email_name);
$mail->Subject = $subject;
$mail->XMailer = $config['project_name_version'];
$mail->CharSet = 'utf-8';
$mail->WordWrap = 76;
$mail->Body = $message;
if( $html )
$mail->isHTML(true);
switch (strtolower(trim($config['email_backend']))) {
case 'sendmail':
$mail->Mailer = 'sendmail';
$mail->Sendmail = $config['email_sendmail_path'];
break;
case 'smtp':
$mail->isSMTP();
$mail->Host = $config['email_smtp_host'];
$mail->Timeout = $config['email_smtp_timeout'];
$mail->SMTPAuth = $config['email_smtp_auth'];
$mail->SMTPSecure = $config['email_smtp_secure'];
$mail->Port = $config['email_smtp_port'];
$mail->Username = $config['email_smtp_username'];
$mail->Password = $config['email_smtp_password'];
$mail->SMTPDebug = false;
break;
default:
$mail->Mailer = 'mail';
break;
}
return $mail->send() ? true : $mail->ErrorInfo;
}
}
2015-07-13 18:10:26 +00:00
function formatCiscoHardware(&$device, $short = false) {
if ($device['os'] == "ios") {
if ($device['hardware']) {
if (preg_match("/^WS-C([A-Za-z0-9]+).*/", $device['hardware'], $matches)) {
if (!$short) {
$device['hardware'] = "Cisco " . $matches[1] . " (" . $device['hardware'] . ")";
}
else {
$device['hardware'] = "Cisco " . $matches[1];
}
}
elseif (preg_match("/^CISCO([0-9]+)$/", $device['hardware'], $matches)) {
$device['hardware'] = "Cisco " . $matches[1];
}
}
2015-07-13 18:10:26 +00:00
else {
if (preg_match("/Cisco IOS Software, C([A-Za-z0-9]+) Software.*/", $device['sysDescr'], $matches)) {
$device['hardware'] = "Cisco " . $matches[1];
}
elseif (preg_match("/Cisco IOS Software, ([0-9]+) Software.*/", $device['sysDescr'], $matches)) {
$device['hardware'] = "Cisco " . $matches[1];
}
}
2015-07-13 18:10:26 +00:00
}
}
# from http://ditio.net/2008/11/04/php-string-to-hex-and-hex-to-string-functions/
2015-07-13 18:10:26 +00:00
function hex2str($hex) {
$string='';
2015-07-13 18:10:26 +00:00
for ($i = 0; $i < strlen($hex)-1; $i+=2) {
$string .= chr(hexdec($hex[$i].$hex[$i+1]));
}
2015-07-13 18:10:26 +00:00
return $string;
}
# Convert an SNMP hex string to regular string
2015-07-13 18:10:26 +00:00
function snmp_hexstring($hex) {
return hex2str(str_replace(' ','',str_replace(' 00','',$hex)));
}
# Check if the supplied string is an SNMP hex string
2015-07-13 18:10:26 +00:00
function isHexString($str) {
return preg_match("/^[a-f0-9][a-f0-9]( [a-f0-9][a-f0-9])*$/is",trim($str));
}
# Include all .inc.php files in $dir
2015-07-13 18:10:26 +00:00
function include_dir($dir, $regex = "") {
global $device, $config, $valid;
2015-07-13 18:10:26 +00:00
if ($regex == "") {
$regex = "/\.inc\.php$/";
}
2015-07-13 18:10:26 +00:00
if ($handle = opendir($config['install_dir'] . '/' . $dir)) {
while (false !== ($file = readdir($handle))) {
if (filetype($config['install_dir'] . '/' . $dir . '/' . $file) == 'file' && preg_match($regex, $file)) {
d_echo("Including: " . $config['install_dir'] . '/' . $dir . '/' . $file . "\n");
2015-07-13 18:10:26 +00:00
include($config['install_dir'] . '/' . $dir . '/' . $file);
}
}
2015-07-13 18:10:26 +00:00
closedir($handle);
}
}
2015-07-13 18:10:26 +00:00
function is_port_valid($port, $device) {
global $config;
2015-07-13 18:10:26 +00:00
if (strstr($port['ifDescr'], "irtual")) {
$valid = 0;
2015-07-13 18:10:26 +00:00
}
else {
$valid = 1;
$if = strtolower($port['ifDescr']);
$fringe = $config['bad_if'];
if( is_array($config['os'][$device['os']]['bad_if']) ) {
$fringe = array_merge($config['bad_if'],$config['os'][$device['os']]['bad_if']);
}
foreach ($fringe as $bi) {
if (strstr($if, $bi)) {
$valid = 0;
d_echo("ignored : $bi : $if");
2015-07-13 18:10:26 +00:00
}
}
2015-07-13 18:10:26 +00:00
if (is_array($config['bad_if_regexp'])) {
$fringe = $config['bad_if_regexp'];
if( is_array($config['os'][$device['os']]['bad_if_regexp']) ) {
$fringe = array_merge($config['bad_if_regexp'],$config['os'][$device['os']]['bad_if_regexp']);
}
foreach ($fringe as $bi) {
if (preg_match($bi ."i", $if)) {
$valid = 0;
d_echo("ignored : $bi : ".$if);
2015-07-13 18:10:26 +00:00
}
}
}
if (is_array($config['bad_iftype'])) {
$fringe = $config['bad_iftype'];
if( is_array($config['os'][$device['os']]['bad_iftype']) ) {
$fringe = array_merge($config['bad_iftype'],$config['os'][$device['os']]['bad_iftype']);
}
foreach ($fringe as $bi) {
if (strstr($port['ifType'], $bi)) {
$valid = 0;
d_echo("ignored ifType : ".$port['ifType']." (matched: ".$bi." )");
2015-07-13 18:10:26 +00:00
}
}
}
if (empty($port['ifDescr']) && !$config['os'][$device['os']]['empty_ifdescr']) {
2015-07-13 18:10:26 +00:00
$valid = 0;
}
if ($device['os'] == "catos" && strstr($if, "vlan")) {
$valid = 0;
}
if ($device['os'] == "dlink") {
$valid = 1;
}
}
2015-07-13 18:10:26 +00:00
return $valid;
}
2015-07-13 18:10:26 +00:00
function scan_new_plugins() {
global $config;
2015-07-13 18:10:26 +00:00
$installed = 0; // Track how many plugins we install.
if(file_exists($config['plugin_dir'])) {
$plugin_files = scandir($config['plugin_dir']);
foreach($plugin_files as $name) {
if(is_dir($config['plugin_dir'].'/'.$name)) {
if($name != '.' && $name != '..') {
if(is_file($config['plugin_dir'].'/'.$name.'/'.$name.'.php') && is_file($config['plugin_dir'].'/'.$name.'/'.$name.'.inc.php')) {
$plugin_id = dbFetchRow("SELECT `plugin_id` FROM `plugins` WHERE `plugin_name` = '$name'");
if(empty($plugin_id)) {
if(dbInsert(array('plugin_name' => $name, 'plugin_active' => '0'), 'plugins')) {
$installed++;
}
}
}
}
2014-02-25 12:51:07 +00:00
}
}
}
2015-07-13 18:10:26 +00:00
return( $installed );
2014-02-25 12:51:07 +00:00
}
2015-07-13 18:10:26 +00:00
function validate_device_id($id) {
2014-06-24 15:14:42 +00:00
2015-07-13 18:10:26 +00:00
global $config;
if(empty($id) || !is_numeric($id)) {
$return = false;
}
else {
$device_id = dbFetchCell("SELECT `device_id` FROM `devices` WHERE `device_id` = ?", array($id));
if($device_id == $id) {
$return = true;
}
else {
$return = false;
}
}
return($return);
2014-06-24 15:14:42 +00:00
}
2014-09-17 20:03:02 +00:00
2014-10-07 10:29:54 +00:00
// The original source of this code is from Stackoverflow (www.stackoverflow.com).
// http://stackoverflow.com/questions/6054033/pretty-printing-json-with-php
// Answer provided by stewe (http://stackoverflow.com/users/3202187/ulk200
if (!defined('JSON_UNESCAPED_SLASHES'))
define('JSON_UNESCAPED_SLASHES', 64);
if (!defined('JSON_PRETTY_PRINT'))
define('JSON_PRETTY_PRINT', 128);
if (!defined('JSON_UNESCAPED_UNICODE'))
define('JSON_UNESCAPED_UNICODE', 256);
2015-07-13 18:10:26 +00:00
function _json_encode($data, $options = 448) {
if (version_compare(PHP_VERSION, '5.4', '>=')) {
return json_encode($data, $options);
}
else {
2015-07-13 18:10:26 +00:00
return _json_format(json_encode($data), $options);
}
}
2015-07-13 18:10:26 +00:00
function _json_format($json, $options = 448) {
$prettyPrint = (bool) ($options & JSON_PRETTY_PRINT);
$unescapeUnicode = (bool) ($options & JSON_UNESCAPED_UNICODE);
$unescapeSlashes = (bool) ($options & JSON_UNESCAPED_SLASHES);
2015-07-13 18:10:26 +00:00
if (!$prettyPrint && !$unescapeUnicode && !$unescapeSlashes) {
return $json;
}
$result = '';
$pos = 0;
$strLen = strlen($json);
$indentStr = ' ';
$newLine = "\n";
$outOfQuotes = true;
$buffer = '';
$noescape = true;
2015-07-13 18:10:26 +00:00
for ($i = 0; $i < $strLen; $i++) {
// Grab the next character in the string
$char = substr($json, $i, 1);
// Are we inside a quoted string?
2015-07-13 18:10:26 +00:00
if ('"' === $char && $noescape) {
$outOfQuotes = !$outOfQuotes;
}
2015-07-13 18:10:26 +00:00
if (!$outOfQuotes) {
$buffer .= $char;
$noescape = '\\' === $char ? !$noescape : true;
continue;
}
2015-07-13 18:10:26 +00:00
elseif ('' !== $buffer) {
if ($unescapeSlashes) {
$buffer = str_replace('\\/', '/', $buffer);
}
2015-07-13 18:10:26 +00:00
if ($unescapeUnicode && function_exists('mb_convert_encoding')) {
// http://stackoverflow.com/questions/2934563/how-to-decode-unicode-escape-sequences-like-u00ed-to-proper-utf-8-encoded-cha
$buffer = preg_replace_callback('/\\\\u([0-9a-f]{4})/i',
2015-07-13 18:10:26 +00:00
function ($match) {
return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
}, $buffer);
}
$result .= $buffer . $char;
$buffer = '';
continue;
}
2015-07-13 18:10:26 +00:00
elseif(false !== strpos(" \t\r\n", $char)) {
continue;
}
2015-07-13 18:10:26 +00:00
if (':' === $char) {
// Add a space after the : character
$char .= ' ';
}
2015-07-13 18:10:26 +00:00
elseif (('}' === $char || ']' === $char)) {
$pos--;
$prevChar = substr($json, $i - 1, 1);
2015-07-13 18:10:26 +00:00
if ('{' !== $prevChar && '[' !== $prevChar) {
// If this character is the end of an element,
// output a new line and indent the next line
$result .= $newLine;
2015-07-13 18:10:26 +00:00
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
}
2015-07-13 18:10:26 +00:00
else {
// Collapse empty {} and []
$result = rtrim($result) . "\n\n" . $indentStr;
}
}
$result .= $char;
// If the last character was the beginning of an element,
// output a new line and indent the next line
2015-07-13 18:10:26 +00:00
if (',' === $char || '{' === $char || '[' === $char) {
$result .= $newLine;
2015-07-13 18:10:26 +00:00
if ('{' === $char || '[' === $char) {
$pos++;
}
2015-07-13 18:10:26 +00:00
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
}
}
// If buffer not empty after formating we have an unclosed quote
2015-07-13 18:10:26 +00:00
if (strlen($buffer) > 0) {
//json is incorrectly formatted
$result = false;
}
return $result;
}
2014-11-30 17:49:52 +00:00
function convert_delay($delay) {
$delay = preg_replace('/\s/','',$delay);
if(strstr($delay, 'm',TRUE)) {
$delay_sec = $delay * 60;
2015-07-13 18:10:26 +00:00
}
elseif(strstr($delay, 'h',TRUE)) {
2014-11-30 17:49:52 +00:00
$delay_sec = $delay * 3600;
2015-07-13 18:10:26 +00:00
}
elseif(strstr($delay, 'd',TRUE)) {
2014-11-30 17:49:52 +00:00
$delay_sec = $delay * 86400;
2015-07-13 18:10:26 +00:00
}
elseif(is_numeric($delay)) {
2014-11-30 17:49:52 +00:00
$delay_sec = $delay;
2015-07-13 18:10:26 +00:00
}
else {
$delay_sec = 300;
2014-11-30 17:49:52 +00:00
}
return($delay_sec);
}
function guidv4($data) {
// http://stackoverflow.com/questions/2040240/php-function-to-generate-v4-uuid#15875555
// From: Jack http://stackoverflow.com/users/1338292/ja%CD%A2ck
assert(strlen($data) == 16);
$data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
$data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}
2015-07-13 18:10:26 +00:00
function set_curl_proxy($post) {
2015-04-13 09:51:16 +00:00
global $config;
if (isset($_ENV['https_proxy'])) {
2015-07-13 18:10:26 +00:00
$tmp = rtrim($_ENV['https_proxy'], "/");
$proxystr = str_replace(array("http://", "https://"), "", $tmp);
$config['callback_proxy'] = $proxystr;
echo "Setting proxy to ".$proxystr." (from https_proxy=".$_ENV['https_proxy'].")\n";
2015-04-13 09:51:16 +00:00
}
if (isset($config['callback_proxy'])) {
2015-07-13 18:10:26 +00:00
echo "Using ".$config['callback_proxy']." as proxy\n";
curl_setopt($post, CURLOPT_PROXY, $config['callback_proxy']);
2015-04-13 09:51:16 +00:00
}
}
function target_to_id($target) {
if( $target[0].$target[1] == "g:" ) {
$target = "g".dbFetchCell('SELECT id FROM device_groups WHERE name = ?',array(substr($target,2)));
2015-07-13 18:10:26 +00:00
}
else {
$target = dbFetchCell('SELECT device_id FROM devices WHERE hostname = ?',array($target));
}
return $target;
}
function id_to_target($id) {
if( $id[0] == "g" ) {
$id = 'g:'.dbFetchCell("SELECT name FROM device_groups WHERE id = ?",array(substr($id,1)));
2015-07-13 18:10:26 +00:00
}
else {
$id = dbFetchCell("SELECT hostname FROM devices WHERE device_id = ?",array($id));
}
return $id;
}
function first_oid_match($device, $list) {
foreach ($list as $item) {
2015-07-13 18:10:26 +00:00
$tmp = trim(snmp_get($device, $item, "-Ovq"), '" ');
if (!empty($tmp)) {
return $tmp;
}
}
}
2015-06-03 14:41:10 +00:00
function hex_to_ip($hex) {
$return = "";
if (filter_var($hex, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === FALSE && filter_var($hex, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === FALSE) {
$hex_exp = explode(' ', $hex);
foreach ($hex_exp as $item) {
if (!empty($item) && $item != "\"") {
$return .= hexdec($item).'.';
}
}
$return = substr($return, 0, -1);
2015-07-13 18:10:26 +00:00
}
else {
2015-06-09 14:19:06 +00:00
$return = $hex;
2015-06-03 14:41:10 +00:00
}
return $return;
}
function fix_integer_value($value) {
if ($value < 0) {
$return = 4294967296+$value;
2015-07-13 18:10:26 +00:00
}
else {
$return = $value;
}
return $return;
}
function ip_exists($ip) {
// Function to check if an IP exists in the DB already
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== FALSE) {
if (!dbFetchRow("SELECT `ipv6_address_id` FROM `ipv6_addresses` WHERE `ipv6_address` = ? OR `ipv6_compressed` = ?", array($ip,$ip))) {
return false;
}
2015-07-13 18:10:26 +00:00
}
elseif (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== FALSE) {
if (!dbFetchRow("SELECT `ipv4_address_id` FROM `ipv4_addresses` WHERE `ipv4_address` = ?", array($ip))) {
return false;
}
2015-07-13 18:10:26 +00:00
}
else {
return false;
}
return true;
}
function fping($host,$params,$address_family = AF_INET) {
global $config;
2015-06-22 22:02:11 +00:00
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w")
);
// Default to AF_INET (IPv4)
$fping_path = $config['fping'];
if ($address_family == AF_INET6) {
$fping_path = $config['fping6'];
}
$process = proc_open($fping_path . ' -e -q ' .$params . ' ' .$host.' 2>&1', $descriptorspec, $pipes);
2015-06-22 22:02:11 +00:00
$read = '';
2015-06-22 22:02:11 +00:00
if (is_resource($process)) {
2015-07-13 18:10:26 +00:00
fclose($pipes[0]);
2015-07-13 18:10:26 +00:00
while (!feof($pipes[1])) {
$read .= fgets($pipes[1], 1024);
}
fclose($pipes[1]);
proc_close($process);
2015-06-22 22:02:11 +00:00
}
preg_match('/[0-9]+\/[0-9]+\/[0-9]+%/', $read, $loss_tmp);
preg_match('/[0-9\.]+\/[0-9\.]+\/[0-9\.]*$/', $read, $latency);
$loss = preg_replace("/%/","",$loss_tmp[0]);
list($xmt,$rcv,$loss) = preg_split("/\//", $loss);
2015-06-23 08:48:36 +00:00
list($min,$avg,$max) = preg_split("/\//", $latency[0]);
if ($loss < 0) {
$xmt = 1;
$rcv = 1;
$loss = 100;
}
$response = array('xmt'=>$xmt,'rcv'=>$rcv,'loss'=>$loss,'min'=>$min,'max'=>$max,'avg'=>$avg);
return $response;
}
2015-07-20 14:10:56 +00:00
function function_check($function) {
return function_exists($function);
}
function force_influx_data($data) {
/*
* It is not trivial to detect if something is a float or an integer, and
* therefore may cause breakages on inserts.
* Just setting every number to a float gets around this, but may introduce
* inefficiencies.
* I've left the detection statement in there for a possible change in future,
* but currently everything just gets set to a float.
*/
if (is_numeric($data)) {
// If it is an Integer
if (ctype_digit($data)) {
return floatval($data);
// Else it is a float
2016-04-19 10:45:03 +00:00
}
else {
return floatval($data);
}
}
else {
return $data;
2015-08-17 14:31:21 +00:00
}
2015-08-17 14:31:21 +00:00
}// end force_influx_data
2015-10-26 11:08:19 +00:00
/**
* Try to determine the address family (IPv4 or IPv6) associated with an SNMP
* transport specifier (like "udp", "udp6", etc.).
*
* @param string $transport The SNMP transport specifier, for example "udp",
* "udp6", "tcp", or "tcp6". See `man snmpcmd`,
* section "Agent Specification" for a full list.
*
* @return int The address family associated with the given transport
* specifier: AF_INET for IPv4 (or local connections not associated
* with an IP stack), AF_INET6 for IPv6.
*/
function snmpTransportToAddressFamily($transport) {
if (!isset($transport)) {
$transport = 'udp';
}
$ipv6_snmp_transport_specifiers = array('udp6', 'udpv6', 'udpipv6', 'tcp6', 'tcpv6', 'tcpipv6');
if (in_array($transport, $ipv6_snmp_transport_specifiers)) {
return AF_INET6;
}
else {
return AF_INET;
}
}
/**
* Checks if the $hostname provided exists in the DB already
*
* @param string $hostname The hostname to check for
*
* @return bool true if hostname already exists
* false if hostname doesn't exist
**/
2015-10-25 21:23:06 +00:00
function host_exists($hostname) {
$count = dbFetchCell("SELECT COUNT(*) FROM `devices` WHERE `hostname` = ?", array($hostname));
if ($count > 0) {
return true;
}
else {
return false;
}
}
/**
* Check the innodb buffer size
*
* @return array including the current set size and the currently used buffer
**/
function innodb_buffer_check() {
$pool['size'] = dbFetchCell('SELECT @@innodb_buffer_pool_size');
// The following query is from the excellent mysqltuner.pl by Major Hayden https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl
$pool['used'] = dbFetchCell('SELECT SUM(DATA_LENGTH+INDEX_LENGTH) FROM information_schema.TABLES WHERE TABLE_SCHEMA NOT IN ("information_schema", "performance_schema", "mysql") AND ENGINE = "InnoDB" GROUP BY ENGINE ORDER BY ENGINE ASC');
return $pool;
}
/**
* Print warning about InnoDB buffer size
*
* @param array $innodb_buffer An array that contains the used and current size
*
* @return string $output
**/
function warn_innodb_buffer($innodb_buffer) {
$output = 'InnoDB Buffersize too small.'.PHP_EOL;
$output .= 'Current size: '.($innodb_buffer['size'] / 1024 / 1024).' MiB'.PHP_EOL;
$output .= 'Minimum Required: '.($innodb_buffer['used'] / 1024 / 1024).' MiB'.PHP_EOL;
$output .= 'To ensure integrity, we\'re not going to pull any updates until the buffersize has been adjusted.'.PHP_EOL;
$output .= 'Config proposal: "innodb_buffer_pool_size = '.pow(2,ceil(log(($innodb_buffer['used'] / 1024 / 1024),2))).'M"'.PHP_EOL;
return $output;
}
2016-01-17 16:47:26 +00:00
function oxidized_reload_nodes() {
global $config;
if ($config['oxidized']['enabled'] === TRUE && $config['oxidized']['reload_nodes'] === TRUE && isset($config['oxidized']['url'])) {
2016-02-05 22:29:42 +00:00
$oxidized_reload_url = $config['oxidized']['url'] . '/reload?format=json';
2016-01-17 16:47:26 +00:00
$ch = curl_init($oxidized_reload_url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_exec($ch);
curl_close($ch);
}
}
/**
* Perform DNS lookup
*
* @param array $device Device array from database
* @param string $type The type of record to lookup
*
* @return string ip
*
**/
2016-01-18 12:54:25 +00:00
function dnslookup($device,$type=false,$return=false) {
2016-01-18 00:04:30 +00:00
if (filter_var($device['hostname'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) == true || filter_var($device['hostname'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) == truee) {
return '';
}
if (empty($type)) {
// We are going to use the transport to work out the record type
if ($device['transport'] == 'udp6' || $device['transport'] == 'tcp6') {
$type = DNS_AAAA;
$return = 'ipv6';
}
else {
$type = DNS_A;
$return = 'ip';
}
}
2016-01-18 12:54:25 +00:00
if (empty($return)) {
return '';
}
$record = dns_get_record($device['hostname'],$type);
return $record[0][$return];
}//end dnslookup
/**
* Reursive Filter Iterator to iterate directories and locate .rrd files.
*
* @method boolean isDir()
*
**/
2016-02-01 23:46:28 +00:00
class RRDRecursiveFilterIterator extends \RecursiveFilterIterator {
public function accept() {
$filename = $this->current()->getFilename();
if ($filename[0] === '.') {
// Ignore hidden files and directories
return false;
}
if ($this->isDir()) {
// We want to search into directories
return true;
}
// Matches files with .rrd in the filename.
// We are only searching rrd folder, but there could be other files and we don't want to cause a stink.
return strpos($filename, '.rrd') !== false;
}
}
/**
* Run rrdtool info on a file path
*
* @param string $path Path to pass to rrdtool info
* @param string $stdOutput Variable to recieve the output of STDOUT
* @param string $stdError Variable to recieve the output of STDERR
*
* @return int exit code
*
**/
function rrdtest($path, &$stdOutput, &$stdError) {
2016-02-01 23:46:28 +00:00
global $config;
//rrdtool info <escaped rrd path>
$command = $config['rrdtool'].' info '.escapeshellarg($path);
$process = proc_open(
$command,
array (
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('pipe', 'w'),
),
$pipes
);
if (!is_resource($process)) {
throw new \RuntimeException('Could not create a valid process');
}
$status = proc_get_status($process);
while($status['running']) {
2016-02-02 11:36:49 +00:00
usleep(2000); // Sleep 2000 microseconds or 2 milliseconds
$status = proc_get_status($process);
}
$stdOutput = stream_get_contents($pipes[1]);
$stdError = stream_get_contents($pipes[2]);
proc_close($process);
return $status['exitcode'];
}
2016-02-26 22:40:34 +00:00
function create_state_index($state_name) {
2016-03-09 21:13:57 +00:00
if (dbFetchRow('SELECT * FROM state_indexes WHERE state_name = ?', array($state_name)) !== true) {
$insert = array('state_name' => $state_name);
return dbInsert($insert, 'state_indexes');
}
2016-02-26 22:40:34 +00:00
}
function create_sensor_to_state_index($device, $state_name, $index)
{
$sensor_entry = dbFetchRow('SELECT sensor_id FROM `sensors` WHERE `sensor_class` = ? AND `device_id` = ? AND `sensor_type` = ? AND `sensor_index` = ?', array(
'state',
$device['device_id'],
$state_name,
$index
));
$state_indexes_entry = dbFetchRow('SELECT state_index_id FROM `state_indexes` WHERE `state_name` = ?', array(
$state_name
));
if (!empty($sensor_entry['sensor_id']) && !empty($state_indexes_entry['state_index_id'])) {
$insert = array(
'sensor_id' => $sensor_entry['sensor_id'],
'state_index_id' => $state_indexes_entry['state_index_id'],
);
foreach($insert as $key => $val_check) {
if (!isset($val_check)) {
unset($insert[$key]);
}
}
2016-02-26 22:56:54 +00:00
dbInsert($insert, 'sensors_to_state_indexes');
2016-02-26 22:40:34 +00:00
}
}