Copyright (C) 2013-2015 Electric Sheep Fencing, LP All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* pfSense_MODULE: system */ ##|+PRIV ##|*IDENT=page-status-rrdgraphs ##|*NAME=Status: RRD Graphs page ##|*DESCR=Allow access to the 'Status: RRD Graphs' page. ##|*MATCH=status_rrd_graph.php* ##|-PRIV require("guiconfig.inc"); require_once("filter.inc"); require("shaper.inc"); require_once("rrd.inc"); unset($input_errors); /* if the rrd graphs are not enabled redirect to settings page */ if(! isset($config['rrd']['enable'])) { header("Location: status_rrd_graph_settings.php"); } $rrddbpath = "/var/db/rrd/"; chdir($rrddbpath); $databases = glob("*.rrd"); if ($_GET['cat']) { $curcat = htmlspecialchars($_GET['cat']); } else { if(! empty($config['rrd']['category'])) { $curcat = $config['rrd']['category']; } else { $curcat = "system"; } } if ($_GET['zone']) $curzone = $_GET['zone']; else $curzone = ''; if ($_GET['period']) { $curperiod = $_GET['period']; } else { if(! empty($config['rrd']['period'])) { $curperiod = $config['rrd']['period']; } else { $curperiod = "absolute"; } } if ($_GET['option']) { $curoption = $_GET['option']; } else { switch($curcat) { case "system": $curoption = "processor"; break; case "queues": $curoption = "queues"; break; case "queuedrops": $curoption = "queuedrops"; break; case "quality": foreach($databases as $database) { if(preg_match("/[-]quality\.rrd/i", $database)) { /* pick off the 1st database we find that matches the quality graph */ $name = explode("-", $database); $curoption = "$name[0]"; continue 2; } } case "wireless": foreach($databases as $database) { if(preg_match("/[-]wireless\.rrd/i", $database)) { /* pick off the 1st database we find that matches the wireless graph */ $name = explode("-", $database); $curoption = "$name[0]"; continue 2; } } case "cellular": foreach($databases as $database) { if(preg_match("/[-]cellular\.rrd/i", $database)) { /* pick off the 1st database we find that matches the celullar graph */ $name = explode("-", $database); $curoption = "$name[0]"; continue 2; } } case "vpnusers": foreach($databases as $database) { if(preg_match("/[-]vpnusers\.rrd/i", $database)) { /* pick off the 1st database we find that matches the VPN graphs */ $name = explode("-", $database); $curoption = "$name[0]"; continue 2; } } case "captiveportal": $curoption = "allgraphs"; break; case "ntpd": if(isset($config['ntpd']['statsgraph'])) { $curoption = "allgraphs"; } else { $curoption = "processor"; $curcat = "system"; } break; default: $curoption = "wan"; break; } } $now = time(); if($curcat == "custom") { if (is_numeric($_GET['start'])) { if($start < ($now - (3600 * 24 * 365 * 5))) { $start = $now - (8 * 3600); } $start = $_GET['start']; } else if ($_GET['start']) { $start = strtotime($_GET['start']); if ($start === FALSE || $start === -1) { $input_errors[] = gettext("Invalid start date/time:") . " '{$_GET['start']}'"; $start = $now - (8 * 3600); } } else { $start = $now - (8 * 3600); } } if (is_numeric($_GET['end'])) { $end = $_GET['end']; } else if ($_GET['end']) { $end = strtotime($_GET['end']); if ($end === FALSE || $end === -1) { $input_errors[] = gettext("Invalid end date/time:") . " '{$_GET['end']}'"; $end = $now; } } else { $end = $now; } /* this should never happen */ if($end < $start) { log_error("start $start is smaller than end $end"); $end = $now; } $seconds = $end - $start; $styles = array('inverse' => gettext('Inverse'), 'absolute' => gettext('Absolute')); // Set default and override later $curstyle = "inverse"; if ($_GET['style']) { foreach($styles as $style) if(strtoupper($style) == strtoupper($_GET['style'])) $curstyle = $_GET['style']; } else { if(! empty($config['rrd']['style'])) { $curstyle = $config['rrd']['style']; } else { $curstyle = "inverse"; } } /* sort names reverse so WAN comes first */ rsort($databases); /* these boilerplate databases are required for the other menu choices */ $dbheader = array("allgraphs-traffic.rrd", "allgraphs-quality.rrd", "allgraphs-wireless.rrd", "allgraphs-cellular.rrd", "allgraphs-vpnusers.rrd", "allgraphs-packets.rrd", "system-allgraphs.rrd", "system-throughput.rrd", "outbound-quality.rrd", "outbound-packets.rrd", "outbound-traffic.rrd"); /* additional menu choices for the custom tab */ $dbheader_custom = array("system-throughput.rrd"); foreach($databases as $database) { if(stristr($database, "-wireless")) { $wireless = true; } if(stristr($database, "-queues")) { $queues = true; } if(stristr($database, "-cellular") && !empty($config['ppps'])) { $cellular = true; } if(stristr($database, "-vpnusers")) { $vpnusers = true; } if(stristr($database, "captiveportal-") && is_array($config['captiveportal'])) { $captiveportal = true; } if(stristr($database, "ntpd") && isset($config['ntpd']['statsgraph'])) { $ntpd = true; } } /* append the existing array to the header */ $ui_databases = array_merge($dbheader, $databases); $custom_databases = array_merge($dbheader_custom, $databases); $graphs = array("eighthour", "day", "week", "month", "quarter", "year", "fouryear"); $periods = array("absolute" => gettext("Absolute Timespans"), "current" => gettext("Current Period"), "previous" => gettext("Previous Period")); $graph_length = array( "eighthour" => 28800, "day" => 86400, "week" => 604800, "month" => 2678400, "quarter" => 7948800, "year" => 31622400, "fouryear" => 126230400); $pgtitle = array(gettext("Status"),gettext("RRD Graphs")); $closehead = false; /* Load all CP zones */ if ($captiveportal && is_array($config['captiveportal'])) { $cp_zones_tab_array = array(); foreach($config['captiveportal'] as $cpkey => $cp) { if (!isset($cp['enable'])) continue; if ($curzone == '') { $tabactive = true; $curzone = $cpkey; } elseif ($curzone == $cpkey) { $tabactive = true; } else { $tabactive = false; } $cp_zones_tab_array[] = array($cp['zone'], $tabactive, "status_rrd_graph.php?cat=captiveportal&zone=$cpkey"); } } include("head.inc"); ?> "; $dates = array(); $dates['start'] = $start; $dates['end'] = $end; return $dates; } ?>
\n"; } ?> " /> \n"; } } else { foreach($graphs as $graph) { /* check which databases are valid for our category */ foreach($ui_databases as $curdatabase) { if(! preg_match("/($curcat)/i", $curdatabase)) continue; if (($curcat == "captiveportal") && !empty($curzone) && !preg_match("/captiveportal-{$curzone}/i", $curdatabase)) continue; $optionc = explode("-", $curdatabase); $search = array("-", ".rrd", $optionc); $replace = array(" :: ", "", $friendly); switch($curoption) { case "outbound": /* make sure we do not show the placeholder databases in the outbound view */ if((stristr($curdatabase, "outbound")) || (stristr($curdatabase, "allgraphs"))) { continue 2; } /* only show interfaces with a gateway */ $optionc = "$optionc[0]"; if(!interface_has_gateway($optionc)) { if(!isset($gateways_arr)) { if(preg_match("/quality/i", $curdatabase)) $gateways_arr = return_gateways_array(); else $gateways_arr = array(); } $found_gateway = false; foreach ($gateways_arr as $gw) { if ($gw['name'] == $optionc) { $found_gateway = true; break; } } if(!$found_gateway) { continue 2; } } if(! preg_match("/(^$optionc-|-$optionc\\.)/i", $curdatabase)) { continue 2; } break; case "allgraphs": /* make sure we do not show the placeholder databases in the all view */ if((stristr($curdatabase, "outbound")) || (stristr($curdatabase, "allgraphs"))) { continue 2; } break; default: /* just use the name here */ if(! preg_match("/(^$curoption-|-$curoption\\.)/i", $curdatabase)) { continue 2; } } if(in_array($curdatabase, $ui_databases)) { $id = "{$graph}-{$curoption}-{$curdatabase}"; $id = preg_replace('/\./', '_', $id); $dates = get_dates($curperiod, $graph); $start = $dates['start']; $end = $dates['end']; echo "\n"; } } } } ?>

"custom") { ?> \n"; echo "
\n"; echo "\"$prettydb\n"; echo "


\n"; echo "
\n"; echo "\"$prettydb\n"; echo "


\n"; echo "