. 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: routing */ ##|+PRIV ##|*IDENT=page-system-gateways-editgateway ##|*NAME=System: Gateways: Edit Gateway page ##|*DESCR=Allow access to the 'System: Gateways: Edit Gateway' page. ##|*MATCH=system_gateways_edit.php* ##|-PRIV require("guiconfig.inc"); require("pkg-utils.inc"); $a_gateways = return_gateways_array(true); $a_gateways_arr = array(); foreach($a_gateways as $gw) { $a_gateways_arr[] = $gw; } $a_gateways = $a_gateways_arr; if (!is_array($config['gateways']['gateway_item'])) $config['gateways']['gateway_item'] = array(); $a_gateway_item = &$config['gateways']['gateway_item']; $id = $_GET['id']; if (isset($_POST['id'])) $id = $_POST['id']; if (isset($_GET['dup'])) { $id = $_GET['dup']; } if (isset($id) && $a_gateways[$id]) { $pconfig = array(); $pconfig['name'] = $a_gateways[$id]['name']; $pconfig['weight'] = $a_gateways[$id]['weight']; $pconfig['interface'] = $a_gateways[$id]['interface']; $pconfig['friendlyiface'] = $a_gateways[$id]['friendlyiface']; if (isset($a_gateways[$id]['dynamic'])) $pconfig['dynamic'] = true; $pconfig['gateway'] = $a_gateways[$id]['gateway']; $pconfig['defaultgw'] = isset($a_gateways[$id]['defaultgw']); $pconfig['latencylow'] = $a_gateway_item[$id]['latencylow']; $pconfig['latencyhigh'] = $a_gateway_item[$id]['latencyhigh']; $pconfig['losslow'] = $a_gateway_item[$id]['losslow']; $pconfig['losshigh'] = $a_gateway_item[$id]['losshigh']; $pconfig['down'] = $a_gateway_item[$id]['down']; $pconfig['monitor'] = $a_gateways[$id]['monitor']; $pconfig['descr'] = $a_gateways[$id]['descr']; $pconfig['attribute'] = $a_gateways[$id]['attribute']; } if (isset($_GET['dup'])) { unset($id); unset($pconfig['attribute']); } if ($_POST) { unset($input_errors); /* input validation */ $reqdfields = explode(" ", "name interface"); $reqdfieldsn = array(gettext("Name"), gettext("Interface")); do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); if (! isset($_POST['name'])) { $input_errors[] = "A valid gateway name must be specified."; } if (! is_validaliasname($_POST['name'])) { $input_errors[] = gettext("The gateway name must not contain invalid characters."); } /* skip system gateways which have been automatically added */ if (($_POST['gateway'] && (!is_ipaddr($_POST['gateway'])) && ($_POST['attribute'] != "system")) && ($_POST['gateway'] != "dynamic")) { $input_errors[] = gettext("A valid gateway IP address must be specified."); } if ($_POST['gateway'] && (is_ipaddr($_POST['gateway'])) && !$_REQUEST['isAjax']) { if (!empty($config['interfaces'][$_POST['interface']]['ipaddr'])) { if (is_ipaddr($config['interfaces'][$_POST['interface']]['ipaddr']) && (empty($_POST['gateway']) || $_POST['gateway'] == "dynamic")) $input_errors[] = gettext("Dynamic gateway values cannot be specified for interfaces with a static ip configuration."); } $parent_ip = get_interface_ip($_POST['interface']); if (is_ipaddr($parent_ip)) { $parent_sn = get_interface_subnet($_POST['interface']); if(!ip_in_subnet($_POST['gateway'], gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn) && !ip_in_interface_alias_subnet($_POST['interface'], $_POST['gateway'])) { $input_errors[] = sprintf(gettext("The gateway address %s does not lie within the chosen interface's subnet."), $_POST['gateway']); } } } if (($_POST['monitor'] <> "") && !is_ipaddr($_POST['monitor']) && $_POST['monitor'] != "dynamic") { $input_errors[] = gettext("A valid monitor IP address must be specified."); } if (isset($_POST['name'])) { /* check for overlaps */ foreach ($a_gateways as $gateway) { if (isset($id) && ($a_gateways[$id]) && ($a_gateways[$id] === $gateway)) { if ($gateway['name'] != $_POST['name']) $input_errors[] = gettext("Changing name on a gateway is not allowed."); continue; } if($_POST['name'] <> "") { if (($gateway['name'] <> "") && ($_POST['name'] == $gateway['name']) && ($gateway['attribute'] != "system")) { $input_errors[] = sprintf(gettext('The gateway name "%s" already exists.'), $_POST['name']); break; } } if(is_ipaddr($_POST['gateway'])) { if (($gateway['gateway'] <> "") && ($_POST['gateway'] == $gateway['gateway']) && ($gateway['attribute'] != "system")) { $input_errors[] = sprintf(gettext('The gateway IP address "%s" already exists.'), $_POST['gateway']); break; } } if(is_ipaddr($_POST['monitor'])) { if (($gateway['monitor'] <> "") && ($_POST['monitor'] == $gateway['monitor']) && ($gateway['attribute'] != "system")) { $input_errors[] = sprintf(gettext('The monitor IP address "%s" is already in use. You must choose a different monitor IP.'), $_POST['monitor']); break; } } } } /* input validation */ if($_POST['latencylow']) { if (! is_numeric($_POST['latencylow'])) { $input_errors[] = gettext("The low latency watermark needs to be a numeric value."); } } if($_POST['latencyhigh']) { if (! is_numeric($_POST['latencyhigh'])) { $input_errors[] = gettext("The high latency watermark needs to be a numeric value."); } } if($_POST['losslow']) { if (! is_numeric($_POST['losslow'])) { $input_errors[] = gettext("The low loss watermark needs to be a numeric value."); } } if($_POST['losshigh']) { if (! is_numeric($_POST['losshigh'])) { $input_errors[] = gettext("The high loss watermark needs to be a numeric value."); } } if(($_POST['latencylow']) && ($_POST['latencyhigh'])){ if(($_POST['latencylow'] > $_POST['latencyhigh'])) { $input_errors[] = gettext("The High latency watermark needs to be higher then the low latency watermark"); } } if(($_POST['losslow']) && ($_POST['losshigh'])){ if($_POST['losslow'] > $_POST['losshigh']) { $input_errors[] = gettext("The High packet loss watermark needs to be higher then the low packet loss watermark"); } } if($_POST['down']) { if (! is_numeric($_POST['down']) || $_POST['down'] < 1) { $input_errors[] = gettext("The low latency watermark needs to be a numeric value."); } } if (!$input_errors) { if (!($_POST['weight'] > 1 || $_POST['latencylow'] || $_POST['latencyhigh'] || $_POST['losslow'] || $_POST['losshigh'] || $_POST['down'] || $_POST['defaultgw'] || is_ipaddr($_POST['monitor']) || is_ipaddr($_POST['gateway']))) { /* Delete from config if gw is dynamic and user is not saving any additional gateway data that system doesn't know */ if (isset($id) && $a_gateway_item[$id]) unset($a_gateway_item[$id]); write_config(); header("Location: system_gateways.php"); exit; } $reloadif = ""; $gateway = array(); if (empty($_POST['interface'])) $gateway['interface'] = $pconfig['friendlyiface']; else $gateway['interface'] = $_POST['interface']; if (is_ipaddr($_POST['gateway'])) $gateway['gateway'] = $_POST['gateway']; else $gateway['gateway'] = "dynamic"; $gateway['name'] = $_POST['name']; $gateway['weight'] = $_POST['weight']; $gateway['descr'] = $_POST['descr']; if (is_ipaddr($_POST['monitor'])) $gateway['monitor'] = $_POST['monitor']; if ($_POST['defaultgw'] == "yes" || $_POST['defaultgw'] == "on") { $i = 0; foreach($a_gateway_item as $gw) { unset($config['gateways']['gateway_item'][$i]['defaultgw']); if ($gw['interface'] != $_POST['interface'] && $gw['defaultgw']) $reloadif = $gw['interface']; $i++; } $gateway['defaultgw'] = true; } if ($_POST['latencylow']) $gateway['latencylow'] = $_POST['latencylow']; if ($_POST['latencyhigh']) $gateway['latencyhigh'] = $_POST['latencyhigh']; if ($_POST['losslow']) $gateway['losslow'] = $_POST['losslow']; if ($_POST['losshigh']) $gateway['losshigh'] = $_POST['losshigh']; if ($_POST['down']) $gateway['down'] = $_POST['down']; /* when saving the manual gateway we use the attribute which has the corresponding id */ if (isset($id) && $a_gateway_item[$id]) $a_gateway_item[$id] = $gateway; else $a_gateway_item[] = $gateway; mark_subsystem_dirty('staticroutes'); write_config(); if($_REQUEST['isAjax']) { echo $_POST['name']; exit; } else if (!empty($reloadif)) send_event("interface reconfigure {$reloadif}"); header("Location: system_gateways.php"); exit; } else { $pconfig = $_POST; if (empty($_POST['friendlyiface'])) $pconfig['friendlyiface'] = $_POST['interface']; } } $pgtitle = array(gettext("System"),gettext("Gateways"),gettext("Edit gateway")); $statusurl = "status_gateways.php"; include("head.inc"); ?>
\n"; } echo "\n"; ?>


">
/>

.
1)) echo "style='display:none'"; ?>> - Show advanced option
>






.
  "> " class="formbtn" onclick="history.back()">