Fix coding style part 2

This commit is contained in:
Job Snijders
2015-07-15 11:04:22 +02:00
parent ad9590df9b
commit d8693f05ae
733 changed files with 37338 additions and 33926 deletions
+123 -140
View File
@@ -1,160 +1,143 @@
<?php
// FIXME : dbFacile !
if ($config['enable_vrfs']) {
if ($device['os_group'] == 'cisco' || $device['os_group'] == 'junos' || $device['os'] == 'ironware') {
unset($vrf_count);
if ($config['enable_vrfs'])
{
if ($device['os_group'] == "cisco" || $device['os_group'] == "junos" || $device['os'] == "ironware")
{
unset($vrf_count);
echo 'VRFs : ';
echo("VRFs : ");
/*
There are 2 MIBs for VPNs : MPLS-VPN-MIB (oldest) and MPLS-L3VPN-STD-MIB (newest)
Unfortunately, there is no simple way to find out which one to use, unless we reference
all the possible devices and check what they support.
Therefore we start testing the MPLS-L3VPN-STD-MIB that is prefered if available.
*/
/*
There are 2 MIBs for VPNs : MPLS-VPN-MIB (oldest) and MPLS-L3VPN-STD-MIB (newest)
Unfortunately, there is no simple way to find out which one to use, unless we reference
all the possible devices and check what they support.
Therefore we start testing the MPLS-L3VPN-STD-MIB that is prefered if available.
*/
// Grab all the info first, then use it in the code.
// It removes load on the device and makes things much faster
$rds = snmp_walk($device, 'mplsL3VpnVrfRD', '-Osqn', 'MPLS-L3VPN-STD-MIB', null);
// Grab all the info first, then use it in the code.
// It removes load on the device and makes things much faster
if (empty($rds)) {
$rds = snmp_walk($device, 'mplsVpnVrfRouteDistinguisher', '-Osqn', 'MPLS-VPN-MIB', null);
$vpnmib = 'MPLS-VPN-MIB';
$rds = str_replace('.1.3.6.1.3.118.1.2.2.1.3.', '', $rds);
$rds = snmp_walk($device, "mplsL3VpnVrfRD", "-Osqn", "MPLS-L3VPN-STD-MIB", NULL);
if (empty($rds))
{
$rds = snmp_walk($device, "mplsVpnVrfRouteDistinguisher", "-Osqn", "MPLS-VPN-MIB", NULL);
$vpnmib = "MPLS-VPN-MIB";
$rds = str_replace(".1.3.6.1.3.118.1.2.2.1.3.", "", $rds);
$descrs_oid = ".1.3.6.1.3.118.1.2.2.1.2";
$ports_oid = ".1.3.6.1.3.118.1.2.1.1.2";
}
else
{
$vpnmib = "MPLS-L3VPN-STD-MIB";
$rds = str_replace(".1.3.6.1.2.1.10.166.11.1.2.2.1.4.", "", $rds);
$descrs_oid = ".1.3.6.1.2.1.10.166.11.1.2.2.1.3";
$ports_oid = ".1.3.6.1.2.1.10.166.11.1.2.1.1.2";
}
if ($debug)
{
echo("\n[DEBUG]\nUsing $vpnmib\n[/DEBUG]\n");
echo("\n[DEBUG OIDS]\n$rds\n[/DEBUG]\n");
}
$rds = trim($rds);
$descrs = snmp_walk($device, $descrs_oid, "-Osqn", $vpnmib, NULL);
$ports = snmp_walk($device, $ports_oid, "-Osqn", $vpnmib, NULL);
$descrs = trim(str_replace("$descrs_oid.", "", $descrs));
$ports = trim(str_replace("$ports_oid.", "", $ports));
$descr_table = array();
$port_table = array();
foreach (explode("\n", $descrs) as $descr)
{
$t = explode(" ", $descr, 2);
$descr_table[$t[0]] = $t[1];
}
foreach (explode("\n", $ports) as $port)
{
$t = explode(" ", $port);
$dotpos = strrpos($t[0], ".");
$vrf_oid = substr($t[0], 0, $dotpos);
$port_id = substr($t[0], $dotpos+1);
if (empty($port_table[$vrf_oid])) { $port_table[$vrf_oid][0] = $port_id; }
else {array_push($port_table[$vrf_oid], $port_id);}
}
foreach (explode("\n", $rds) as $oid)
{
echo "\n";
if ($oid)
{
// 8.49.53.48.56.58.49.48.48 "1508:100"
// First digit gives number of chars in VRF Name, then it's ASCII
list($vrf_oid, $vrf_rd) = explode(" ", $oid);
$oid_values = explode(".", $vrf_oid);
$vrf_name = "";
for ($i = 1; $i <= $oid_values[0]; $i++) {$vrf_name .= chr($oid_values[$i]);}
echo "\n [VRF $vrf_name] OID - $vrf_oid";
echo "\n [VRF $vrf_name] RD - $vrf_rd";
echo "\n [VRF $vrf_name] DESC - ".$descr_table[$vrf_oid];
if (dbFetchCell("SELECT COUNT(*) FROM vrfs WHERE device_id = ? AND `vrf_oid`=?",array($device['device_id'],$vrf_oid)))
{
dbUpdate(array('mplsVpnVrfDescription' => $descr_table[$vrf_oid], 'mplsVpnVrfRouteDistinguisher' => $vrf_rd), 'vrfs', 'device_id=? AND vrf_oid=?',array($device['device_id'],$vrf_oid));
$descrs_oid = '.1.3.6.1.3.118.1.2.2.1.2';
$ports_oid = '.1.3.6.1.3.118.1.2.1.1.2';
}
else
{
dbInsert(array('vrf_oid' => $vrf_oid, 'vrf_name' => $vrf_name, 'mplsVpnVrfRouteDistinguisher' => $vrf_rd,'mplsVpnVrfDescription' => $descr_table[$vrf_oid], 'device_id' => $device['device_id']), 'vrfs');
else {
$vpnmib = 'MPLS-L3VPN-STD-MIB';
$rds = str_replace('.1.3.6.1.2.1.10.166.11.1.2.2.1.4.', '', $rds);
$descrs_oid = '.1.3.6.1.2.1.10.166.11.1.2.2.1.3';
$ports_oid = '.1.3.6.1.2.1.10.166.11.1.2.1.1.2';
}
$vrf_id = dbFetchCell("SELECT vrf_id FROM vrfs WHERE device_id = ? AND `vrf_oid`=?",array($device['device_id'],$vrf_oid));
$valid_vrf[$vrf_id] = 1;
echo "\n [VRF $vrf_name] PORTS - ";
foreach ($port_table[$vrf_oid] as $if_id)
{
$interface = dbFetchRow("SELECT * FROM `ports` WHERE `device_id` = ? AND `ifIndex` = ?",array($device['device_id'],$if_id));
echo(makeshortif($interface['ifDescr']) . " ");
dbUpdate(array('ifVrf' => $vrf_id), 'ports', 'port_id=?',array($interface['port_id']));
$if = $interface['port_id'];
$valid_vrf_if[$vrf_id][$if] = 1;
if ($debug) {
echo "\n[DEBUG]\nUsing $vpnmib\n[/DEBUG]\n";
echo "\n[DEBUG OIDS]\n$rds\n[/DEBUG]\n";
}
}
}
echo "\n";
$rds = trim($rds);
$sql = "SELECT * FROM ports WHERE device_id = '" . $device['device_id'] . "'";
foreach (dbFetchRows($sql) as $row)
{
$if = $row['port_id'];
$vrf_id = $row['ifVrf'];
if ($row['ifVrf'])
{
if (!$valid_vrf_if[$vrf_id][$if])
{
echo("-");
dbUpdate(array('ifVrf' => 'NULL'), 'ports', 'port_id=?',array($if));
$descrs = snmp_walk($device, $descrs_oid, '-Osqn', $vpnmib, null);
$ports = snmp_walk($device, $ports_oid, '-Osqn', $vpnmib, null);
$descrs = trim(str_replace("$descrs_oid.", '', $descrs));
$ports = trim(str_replace("$ports_oid.", '', $ports));
$descr_table = array();
$port_table = array();
foreach (explode("\n", $descrs) as $descr) {
$t = explode(' ', $descr, 2);
$descr_table[$t[0]] = $t[1];
}
else
{
echo(".");
foreach (explode("\n", $ports) as $port) {
$t = explode(' ', $port);
$dotpos = strrpos($t[0], '.');
$vrf_oid = substr($t[0], 0, $dotpos);
$port_id = substr($t[0], ($dotpos + 1));
if (empty($port_table[$vrf_oid])) {
$port_table[$vrf_oid][0] = $port_id;
}
else {
array_push($port_table[$vrf_oid], $port_id);
}
}
}
}
$sql = "SELECT * FROM vrfs WHERE device_id = '" . $device['device_id'] . "'";
foreach (dbFetchRows($sql) as $row)
{
$vrf_id = $row['vrf_id'];
if (!$valid_vrf[$vrf_id])
{
echo("-");
dbDelete('vrfs', '`vrf_id` = ?', array($vrf_id));
}
else
{
echo(".");
}
}
foreach (explode("\n", $rds) as $oid) {
echo "\n";
if ($oid) {
// 8.49.53.48.56.58.49.48.48 "1508:100"
// First digit gives number of chars in VRF Name, then it's ASCII
list($vrf_oid, $vrf_rd) = explode(' ', $oid);
$oid_values = explode('.', $vrf_oid);
$vrf_name = '';
for ($i = 1; $i <= $oid_values[0]; $i++) {
$vrf_name .= chr($oid_values[$i]);
}
unset($valid_vrf_if);
unset($valid_vrf);
echo "\n [VRF $vrf_name] OID - $vrf_oid";
echo "\n [VRF $vrf_name] RD - $vrf_rd";
echo "\n [VRF $vrf_name] DESC - ".$descr_table[$vrf_oid];
echo("\n");
} # cisco/junos/ironware
} # enable_vrfs
if (dbFetchCell('SELECT COUNT(*) FROM vrfs WHERE device_id = ? AND `vrf_oid`=?', array($device['device_id'], $vrf_oid))) {
dbUpdate(array('mplsVpnVrfDescription' => $descr_table[$vrf_oid], 'mplsVpnVrfRouteDistinguisher' => $vrf_rd), 'vrfs', 'device_id=? AND vrf_oid=?', array($device['device_id'], $vrf_oid));
}
else {
dbInsert(array('vrf_oid' => $vrf_oid, 'vrf_name' => $vrf_name, 'mplsVpnVrfRouteDistinguisher' => $vrf_rd, 'mplsVpnVrfDescription' => $descr_table[$vrf_oid], 'device_id' => $device['device_id']), 'vrfs');
}
?>
$vrf_id = dbFetchCell('SELECT vrf_id FROM vrfs WHERE device_id = ? AND `vrf_oid`=?', array($device['device_id'], $vrf_oid));
$valid_vrf[$vrf_id] = 1;
echo "\n [VRF $vrf_name] PORTS - ";
foreach ($port_table[$vrf_oid] as $if_id) {
$interface = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifIndex` = ?', array($device['device_id'], $if_id));
echo makeshortif($interface['ifDescr']).' ';
dbUpdate(array('ifVrf' => $vrf_id), 'ports', 'port_id=?', array($interface['port_id']));
$if = $interface['port_id'];
$valid_vrf_if[$vrf_id][$if] = 1;
}
}//end if
}//end foreach
echo "\n";
$sql = "SELECT * FROM ports WHERE device_id = '".$device['device_id']."'";
foreach (dbFetchRows($sql) as $row) {
$if = $row['port_id'];
$vrf_id = $row['ifVrf'];
if ($row['ifVrf']) {
if (!$valid_vrf_if[$vrf_id][$if]) {
echo '-';
dbUpdate(array('ifVrf' => 'NULL'), 'ports', 'port_id=?', array($if));
}
else {
echo '.';
}
}
}
$sql = "SELECT * FROM vrfs WHERE device_id = '".$device['device_id']."'";
foreach (dbFetchRows($sql) as $row) {
$vrf_id = $row['vrf_id'];
if (!$valid_vrf[$vrf_id]) {
echo '-';
dbDelete('vrfs', '`vrf_id` = ?', array($vrf_id));
}
else {
echo '.';
}
}
unset($valid_vrf_if);
unset($valid_vrf);
echo "\n";
} //end if
} //end if