system_gateways_edit.php 42.8 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
    Copyright (C) 2014-2015 Deciso B.V.
    Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>
    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.
Ad Schellevis's avatar
Ad Schellevis committed
28 29
*/

30
require_once("guiconfig.inc");
31
require_once("services.inc");
32
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33 34 35

$a_gateways = return_gateways_array(true, false, true);
$a_gateways_arr = array();
36 37
foreach ($a_gateways as $gw) {
    $a_gateways_arr[] = $gw;
Ad Schellevis's avatar
Ad Schellevis committed
38 39 40 41 42
}
$a_gateways = $a_gateways_arr;
$apinger_default = return_apinger_defaults();


43 44 45 46 47
// form processing
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    $pconfig = $_POST;
    if (isset($pconfig['id']) && isset($a_gateways[$pconfig['id']])) {
        $id = $pconfig['id'];
48
    }
49
    $input_errors = array();
50 51 52 53 54

    /* input validation */
    $reqdfields = explode(" ", "name interface");
    $reqdfieldsn = array(gettext("Name"), gettext("Interface"));

55
    do_input_validation($pconfig, $reqdfields, $reqdfieldsn, $input_errors);
56

57
    if (!isset($pconfig['name'])) {
58
        $input_errors[] = gettext("A valid gateway name must be specified.");
59
    }
60
    if (!is_validaliasname($pconfig['name'])) {
61 62 63
        $input_errors[] = gettext("The gateway name must not contain invalid characters.");
    }
    /* skip system gateways which have been automatically added */
64 65
    if (!empty($pconfig['gateway']) && !is_ipaddr($pconfig['gateway']) &&
        $pconfig['attribute'] !== "system" && $pconfig['gateway'] != "dynamic"
66
        ) {
67 68 69
        $input_errors[] = gettext("A valid gateway IP address must be specified.");
    }

70 71 72 73
    if (!empty($pconfig['gateway']) && (is_ipaddr($pconfig['gateway'])) && !isset($_REQUEST['isAjax'])) {
        if (is_ipaddrv4($pconfig['gateway'])) {
            $parent_ip = get_interface_ip($pconfig['interface']);
            $parent_sn = get_interface_subnet($pconfig['interface']);
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
            if (empty($parent_ip) || empty($parent_sn)) {
                $input_errors[] = gettext("Cannot add IPv4 Gateway Address because no IPv4 address could be found on the interface.");
            } else {
                $subnets = array(gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn);
                $vips = link_interface_to_vips($_POST['interface']);
                if (is_array($vips)) {
                    foreach ($vips as $vip) {
                        if (!is_ipaddrv4($vip['subnet'])) {
                            continue;
                        }
                        $subnets[] = gen_subnet($vip['subnet'], $vip['subnet_bits']) . "/" . $vip['subnet_bits'];
                    }
                }

                $found = false;
                foreach ($subnets as $subnet) {
90
                    if (ip_in_subnet($pconfig['gateway'], $subnet)) {
91 92 93 94 95
                        $found = true;
                        break;
                    }
                }

96 97
                if (!$found) {
                    $input_errors[] = sprintf(gettext("The gateway address %1\$s does not lie within one of the chosen interface's subnets."), $pconfig['gateway']);
98 99
                }
            }
100
        } elseif (is_ipaddrv6($pconfig['gateway'])) {
101
            /* do not do a subnet match on a link local address, it's valid */
102 103 104
            if (!is_linklocal($pconfig['gateway'])) {
                $parent_ip = get_interface_ipv6($pconfig['interface']);
                $parent_sn = get_interface_subnetv6($pconfig['interface']);
105 106 107 108
                if (empty($parent_ip) || empty($parent_sn)) {
                    $input_errors[] = gettext("Cannot add IPv6 Gateway Address because no IPv6 address could be found on the interface.");
                } else {
                    $subnets = array(gen_subnetv6($parent_ip, $parent_sn) . "/" . $parent_sn);
109
                    $vips = link_interface_to_vips($pconfig['interface']);
110 111 112 113 114 115 116 117 118 119 120
                    if (is_array($vips)) {
                        foreach ($vips as $vip) {
                            if (!is_ipaddrv6($vip['subnet'])) {
                                continue;
                            }
                            $subnets[] = gen_subnetv6($vip['subnet'], $vip['subnet_bits']) . "/" . $vip['subnet_bits'];
                        }
                    }

                    $found = false;
                    foreach ($subnets as $subnet) {
121
                        if (ip_in_subnet($pconfig['gateway'], $subnet)) {
122 123 124 125 126
                            $found = true;
                            break;
                        }
                    }

127 128
                    if (!$found) {
                        $input_errors[] = sprintf(gettext("The gateway address %1\$s does not lie within one of the chosen interface's subnets."), $pconfig['gateway']);
129 130 131 132 133
                    }
                }
            }
        }

134 135
        if (!empty($config['interfaces'][$pconfig['interface']]['ipaddr'])) {
            if (is_ipaddr($config['interfaces'][$pconfig['interface']]['ipaddr']) && (empty($pconfig['gateway']) || $pconfig['gateway'] == "dynamic")) {
136 137 138
                $input_errors[] = gettext("Dynamic gateway values cannot be specified for interfaces with a static IPv4 configuration.");
            }
        }
139 140
        if (!empty($config['interfaces'][$pconfig['interface']]['ipaddrv6'])) {
            if (is_ipaddr($config['interfaces'][$pconfig['interface']]['ipaddrv6']) && (empty($pconfig['gateway']) || $pconfig['gateway'] == "dynamic")) {
141 142 143 144
                $input_errors[] = gettext("Dynamic gateway values cannot be specified for interfaces with a static IPv6 configuration.");
            }
        }
    }
145
    if (($pconfig['monitor'] <> "") && !is_ipaddr($pconfig['monitor']) && $pconfig['monitor'] != "dynamic") {
146 147 148
        $input_errors[] = gettext("A valid monitor IP address must be specified.");
    }
    /* only allow correct IPv4 and IPv6 gateway addresses */
149 150 151
    if (!empty($pconfig['gateway']) && is_ipaddr($pconfig['gateway']) && $pconfig['gateway'] != "dynamic") {
        if (is_ipaddrv6($pconfig['gateway']) && ($pconfig['ipprotocol'] == "inet")) {
            $input_errors[] = gettext("The IPv6 gateway address '{$pconfig['gateway']}' can not be used as a IPv4 gateway'.");
152
        }
153 154
        if (is_ipaddrv4($pconfig['gateway']) && ($pconfig['ipprotocol'] == "inet6")) {
            $input_errors[] = gettext("The IPv4 gateway address '{$pconfig['gateway']}' can not be used as a IPv6 gateway'.");
155 156 157
        }
    }
    /* only allow correct IPv4 and IPv6 monitor addresses */
158 159 160
    if ( !empty($_POST['monitor']) && is_ipaddr($pconfig['monitor']) && $pconfig['monitor'] != "dynamic") {
        if (is_ipaddrv6($pconfig['monitor']) && ($pconfig['ipprotocol'] == "inet")) {
            $input_errors[] = gettext("The IPv6 monitor address '{$pconfig['monitor']}' can not be used on a IPv4 gateway'.");
161
        }
162 163
        if (is_ipaddrv4($pconfig['monitor']) && ($pconfig['ipprotocol'] == "inet6")) {
            $input_errors[] = gettext("The IPv4 monitor address '{$pconfig['monitor']}' can not be used on a IPv6 gateway'.");
164 165 166
        }
    }

167
    if (isset($pconfig['name'])) {
168 169
        /* check for overlaps */
        foreach ($a_gateways as $gateway) {
170 171
            if (isset($id) && $a_gateways[$id] === $gateway) {
                if ($gateway['name'] != $pconfig['name']) {
172 173 174 175
                    $input_errors[] = gettext("Changing name on a gateway is not allowed.");
                }
                continue;
            }
176 177 178
            if (!empty($pconfig['name'])) {
                if (!empty($gateway['name']) && $pconfig['name'] == $gateway['name'] && $gateway['attribute'] !== "system") {
                    $input_errors[] = sprintf(gettext('The gateway name "%s" already exists.'), $pconfig['name']);
179 180 181
                    break;
                }
            }
182 183 184
            if (is_ipaddr($pconfig['gateway'])) {
                if (!empty($gateway['name']) && $pconfig['gateway'] == $gateway['gateway'] && $gateway['attribute'] !== "system") {
                    $input_errors[] = sprintf(gettext('The gateway IP address "%s" already exists.'), $pconfig['gateway']);
185 186 187
                    break;
                }
            }
188 189 190
            if (is_ipaddr($pconfig['monitor'])) {
                if (!empty($gateway['monitor']) && $pconfig['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.'), $pconfig['monitor']);
191 192 193 194 195 196 197
                    break;
                }
            }
        }
    }

    /* input validation of apinger advanced parameters */
198 199
    if (!empty($pconfig['latencylow'])) {
        if (!is_numeric($pconfig['latencylow'])) {
200
            $input_errors[] = gettext("The low latency threshold needs to be a numeric value.");
201 202
        } elseif ($pconfig['latencylow'] < 1) {
            $input_errors[] = gettext("The low latency threshold needs to be positive.");
203 204 205
        }
    }

206 207
    if (!empty($pconfig['latencyhigh'])) {
        if (!is_numeric($pconfig['latencyhigh'])) {
208
            $input_errors[] = gettext("The high latency threshold needs to be a numeric value.");
209 210
        } elseif ($_POST['latencyhigh'] < 1) {
            $input_errors[] = gettext("The high latency threshold needs to be positive.");
211 212 213
        }
    }

214 215
    if (!empty($pconfig['losslow'])) {
        if (!is_numeric($_POST['losslow'])) {
216
            $input_errors[] = gettext("The low Packet Loss threshold needs to be a numeric value.");
217 218 219 220
        } elseif ($pconfig['losslow'] < 1) {
            $input_errors[] = gettext("The low Packet Loss threshold needs to be positive.");
        } elseif ($pconfig['losslow'] >= 100) {
            $input_errors[] = gettext("The low Packet Loss threshold needs to be less than 100.");
221 222 223
        }
    }

224 225
    if (!empty($pconfig['losshigh'])) {
        if (!is_numeric($pconfig['losshigh'])) {
226
            $input_errors[] = gettext("The high Packet Loss threshold needs to be a numeric value.");
227 228 229 230
        } elseif ($pconfig['losshigh'] < 1) {
            $input_errors[] = gettext("The high Packet Loss threshold needs to be positive.");
        } elseif ($pconfig['losshigh'] > 100) {
            $input_errors[] = gettext("The high Packet Loss threshold needs to be 100 or less.");
231 232 233
        }
    }

234 235 236 237 238
    if (!empty($pconfig['latencylow']) && !empty($pconfig['latencyhigh'])) {
        if (is_numeric($pconfig['latencylow']) && is_numeric($pconfig['latencyhigh']) &&
            $pconfig['latencylow'] > $pconfig['latencyhigh']
           ) {
            $input_errors[] = gettext("The high latency threshold needs to be higher than the low latency threshold");
239
        }
240 241 242
    } elseif (!empty($pconfig['latencylow'])) {
        if (is_numeric($pconfig['latencylow']) && $pconfig['latencylow'] > $apinger_default['latencyhigh']) {
            $input_errors[] = gettext(sprintf("The low latency threshold needs to be less than the default high latency threshold (%d)", $apinger_default['latencyhigh']));
243
        }
244 245 246
    } elseif (!empty($pconfig['latencyhigh'])) {
        if (is_numeric($_POST['latencyhigh']) && $_POST['latencyhigh'] < $apinger_default['latencylow']) {
            $input_errors[] = gettext(sprintf("The high latency threshold needs to be higher than the default low latency threshold (%d)", $apinger_default['latencylow']));
247 248 249
        }
    }

250 251 252
    if (!empty($pconfig['losslow']) && !empty($pconfig['losshigh'])) {
        if (is_numeric($pconfig['losslow']) && is_numeric($pconfig['losshigh']) && $pconfig['losslow'] > $pconfig['losshigh']) {
            $input_errors[] = gettext("The high Packet Loss threshold needs to be higher than the low Packet Loss threshold");
253
        }
254 255 256
    } elseif (!empty($pconfig['losslow'])) {
        if (is_numeric($pconfig['losslow']) && $pconfig['losslow'] > $apinger_default['losshigh']) {
            $input_errors[] = gettext(sprintf("The low Packet Loss threshold needs to be less than the default high Packet Loss threshold (%d)", $apinger_default['losshigh']));
257
        }
258 259 260
    } elseif (!empty($pconfig['losshigh'])) {
        if (is_numeric($pconfig['losshigh']) && $pconfig['losshigh'] < $apinger_default['losslow']) {
            $input_errors[] = gettext(sprintf("The high Packet Loss threshold needs to be higher than the default low Packet Loss threshold (%d)", $apinger_default['losslow']));
261 262 263
        }
    }

264 265
    if (!empty($pconfig['interval'])) {
        if (!is_numeric($pconfig['interval'])) {
266
            $input_errors[] = gettext("The probe interval needs to be a numeric value.");
267 268
        } elseif ($pconfig['interval'] < 1) {
            $input_errors[] = gettext("The probe interval needs to be positive.");
269 270 271
        }
    }

272 273
    if (!empty($pconfig['down'])) {
        if (! is_numeric($pconfig['down'])) {
274
            $input_errors[] = gettext("The down time setting needs to be a numeric value.");
275 276
        } elseif ($pconfig['down'] < 1) {
            $input_errors[] = gettext("The down time setting needs to be positive.");
277 278 279
        }
    }

280 281 282
    if (!empty($pconfig['interval']) && !empty($pconfig['down'])) {
        if ((is_numeric($pconfig['interval'])) && (is_numeric($pconfig['down'])) && $pconfig['interval'] > $pconfig['down']) {
            $input_errors[] = gettext("The probe interval needs to be less than the down time setting.");
283
        }
284 285 286
    } elseif (!empty($pconfig['interval'])) {
        if (is_numeric($pconfig['interval']) && $pconfig['interval'] > $apinger_default['down']) {
            $input_errors[] = gettext(sprintf("The probe interval needs to be less than the default down time setting (%d)", $apinger_default['down']));
287
        }
288 289 290
    } elseif (!empty($pconfig['down'])) {
        if (is_numeric($pconfig['down']) && $pconfig['down'] < $apinger_default['interval']) {
            $input_errors[] = gettext(sprintf("The down time setting needs to be higher than the default probe interval (%d)", $apinger_default['interval']));
291 292 293
        }
    }

294 295
    if (!empty($pconfig['avg_delay_samples'])) {
        if (!is_numeric($pconfig['avg_delay_samples'])) {
296
            $input_errors[] = gettext("The average delay replies qty needs to be a numeric value.");
297 298
        } elseif ($pconfig['avg_delay_samples'] < 1) {
            $input_errors[] = gettext("The average delay replies qty needs to be positive.");
299 300 301
        }
    }

302 303
    if (!empty($pconfig['avg_loss_samples'])) {
        if (!is_numeric($_POST['avg_loss_samples'])) {
304
            $input_errors[] = gettext("The average packet loss probes qty needs to be a numeric value.");
305 306
        } elseif ($pconfig['avg_loss_samples'] < 1) {
            $input_errors[] = gettext("The average packet loss probes qty needs to be positive.");
307 308 309
        }
    }

310 311
    if (!empty($pconfig['avg_loss_delay_samples'])) {
        if (!is_numeric($pconfig['avg_loss_delay_samples'])) {
312
            $input_errors[] = gettext("The lost probe delay needs to be a numeric value.");
313 314
        } elseif ($pconfig['avg_loss_delay_samples'] < 1) {
            $input_errors[] = gettext("The lost probe delay needs to be positive.");
315 316 317
        }
    }

318 319 320 321 322 323 324 325 326 327
    if (count($input_errors) == 0) {
        if (!isset($config['gateways']) || !is_array($config['gateways'])) {
            $config['gateways'] = array();
        }

        if (!isset($config['gateways']['gateway_item']) || !is_array($config['gateways']['gateway_item'])) {
            $config['gateways']['gateway_item'] = array();
        }
        // A result of obfuscating the list of gateways is that over here we need to map things back that should
        // be aligned with the configuration. Not going to fix this now.
328
        if (isset($a_gateways[$id]['attribute']) && is_numeric($a_gateways[$id]['attribute']) ) {
329 330 331 332
            $realid = $a_gateways[$id]['attribute'];
        }

        $a_gateway_item = &$config['gateways']['gateway_item'];
333 334 335
        $reloadif = "";
        $gateway = array();

336
        if (empty($pconfig['interface'])) {
337 338
            $gateway['interface'] = $pconfig['friendlyiface'];
        } else {
339
            $gateway['interface'] = $pconfig['interface'];
340
        }
341 342
        if (is_ipaddr($pconfig['gateway'])) {
            $gateway['gateway'] = $pconfig['gateway'];
343 344 345
        } else {
            $gateway['gateway'] = "dynamic";
        }
346 347 348 349 350 351
        $gateway['name'] = $pconfig['name'];
        $gateway['weight'] = $pconfig['weight'];
        $gateway['ipprotocol'] = $pconfig['ipprotocol'];
        $gateway['interval'] = $pconfig['interval'];
        $gateway['descr'] = $pconfig['descr'];
        $gateway['avg_delay_samples'] = $pconfig['avg_delay_samples'];
352

353
        if ($pconfig['avg_delay_samples_calculated'] == "yes" || $pconfig['avg_delay_samples_calculated'] == "on") {
354 355
            $gateway['avg_delay_samples_calculated'] = true;
        }
356 357
        $gateway['avg_loss_samples'] = $pconfig['avg_loss_samples'];
        if ($pconfig['avg_loss_samples_calculated'] == "yes" || $pconfig['avg_loss_samples_calculated'] == "on") {
358 359
            $gateway['avg_loss_samples_calculated'] = true;
        }
360 361
        $gateway['avg_loss_delay_samples'] = $pconfig['avg_loss_delay_samples'];
        if ($pconfig['avg_loss_delay_samples_calculated'] == "yes" || $pconfig['avg_loss_delay_samples_calculated'] == "on") {
362 363 364
            $gateway['avg_loss_delay_samples_calculated'] = true;
        }

365
        if ($pconfig['monitor_disable'] == "yes") {
366 367
            $gateway['monitor_disable'] = true;
        }
368
        if ($pconfig['force_down'] == "yes") {
369 370
            $gateway['force_down'] = true;
        }
371 372
        if (is_ipaddr($pconfig['monitor'])) {
            $gateway['monitor'] = $pconfig['monitor'];
373 374 375
        }

        /* NOTE: If monitor ip is changed need to cleanup the old static route */
376 377
        if (isset($realid) && $pconfig['monitor'] != "dynamic" && !empty($a_gateway_item[$realid]) && is_ipaddr($a_gateway_item[$realid]['monitor']) &&
            $pconfig['monitor'] != $a_gateway_item[$realid]['monitor'] && $gateway['gateway'] != $a_gateway_item[$realid]['monitor']) {
378 379 380 381 382 383 384
            if (is_ipaddrv4($a_gateway_item[$realid]['monitor'])) {
                mwexec("/sbin/route delete " . escapeshellarg($a_gateway_item[$realid]['monitor']));
            } else {
                mwexec("/sbin/route delete -inet6 " . escapeshellarg($a_gateway_item[$realid]['monitor']));
            }
        }

385
        if ($pconfig['defaultgw'] == "yes" || $pconfig['defaultgw'] == "on") {
386 387 388 389 390
            $i = 0;
            /* remove the default gateway bits for all gateways with the same address family */
            foreach ($a_gateway_item as $gw) {
                if ($gateway['ipprotocol'] == $gw['ipprotocol']) {
                    unset($config['gateways']['gateway_item'][$i]['defaultgw']);
391
                    if ($gw['interface'] != $pconfig['interface'] && $gw['defaultgw']) {
392 393 394 395 396 397 398 399
                        $reloadif = $gw['interface'];
                    }
                }
                $i++;
            }
            $gateway['defaultgw'] = true;
        }

400 401 402 403
        foreach (array('latencylow', 'latencyhigh', 'losslow', 'losshigh', 'down') as $fieldname) {
            if (!empty($pconfig[$fieldname])) {
                $gateway[$fieldname] = $pconfig[$fieldname];
            }
404 405 406 407 408 409 410 411
        }
        if (isset($_POST['disabled'])) {
            $gateway['disabled'] = true;
        } else {
            unset($gateway['disabled']);
        }

        /* when saving the manual gateway we use the attribute which has the corresponding id */
412
        if (isset($realid)) {
413 414 415 416 417 418 419 420 421
            $a_gateway_item[$realid] = $gateway;
        } else {
            $a_gateway_item[] = $gateway;
        }

        mark_subsystem_dirty('staticroutes');

        write_config();

422 423
        if (!empty($_REQUEST['isAjax'])) {
            echo $pconfig['name'];
424 425 426 427 428 429 430 431
            exit;
        } elseif (!empty($reloadif)) {
            configd_run("interface reconfigure {$reloadif}");
        }

        header("Location: system_gateways.php");
        exit;
    } else {
432
        if (!empty($_REQUEST['isAjax'])) {
433 434 435 436 437 438 439 440
            header("HTTP/1.0 500 Internal Server Error");
            header("Content-type: text/plain");
            foreach ($input_errors as $error) {
                echo("$error\n");
            }
            exit;
        }

441
        if (!empty($pconfig['interface'])) {
442 443 444
            $pconfig['friendlyiface'] = $_POST['interface'];
        }
    }
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
} elseif ($_SERVER['REQUEST_METHOD'] === 'GET') {
    // retrieve form data
    if (isset($_GET['id']) && isset($a_gateways[$_GET['id']])) {
        $id = $_GET['id'];
        $configId = $id;
    } elseif (isset($_GET['dup']) && isset($a_gateways[$_GET['dup']])) {
        $configId = $_GET['dup'];
    }
    // set config details
    $pconfig = array();
    $pconfig['attribute'] = null;
    $pconfig['monitor_disable'] = true;

    // load data from config
    $copy_fields = array(
      'name', 'weight', 'interval', 'avg_delay_samples', 'avg_loss_samples', 'avg_loss_delay_samples',
      'interface', 'friendlyiface', 'ipprotocol', 'gateway', 'latencylow', 'latencyhigh', 'losslow', 'losshigh',
      'down', 'monitor', 'descr', 'avg_delay_samples_calculated', 'avg_loss_samples_calculated',
      'avg_loss_delay_samples_calculated', 'monitor_disable', 'dynamic', 'defaultgw', 'force_down', 'disabled'
    );
    foreach ($copy_fields as $fieldname) {
        if (isset($configId) && isset($a_gateways[$configId][$fieldname])) {
            $pconfig[$fieldname] = $a_gateways[$configId][$fieldname];
468
        } elseif (empty($pconfig[$fieldname]) || isset($configId)) {
469 470 471 472 473 474
            $pconfig[$fieldname] = null;
        }
    }
    if (isset($id) && isset($a_gateways[$configId]['attribute'])) {
        $pconfig['attribute'] = $a_gateways[$configId]['attribute'];
    }
Ad Schellevis's avatar
Ad Schellevis committed
475 476
}

477 478
legacy_html_escape_form_data($a_gateways);
legacy_html_escape_form_data($pconfig);
Ad Schellevis's avatar
Ad Schellevis committed
479

480
$service_hook = 'apinger';
481

Ad Schellevis's avatar
Ad Schellevis committed
482 483 484 485
include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
486
<body>
Ad Schellevis's avatar
Ad Schellevis committed
487 488 489
<?php include("fbegin.inc"); ?>
<script type="text/javascript">
//<![CDATA[
490 491 492 493 494 495 496
function recalc_value(object, min, max) {
    if (object.val() != "") {
        object.val(Math.round(object.val()));     // Round to integer
        if (object.val() < min)  object.val(min); // Min Value
        if (object.val() > max)  object.val(max); // Max Value
        if (isNaN(object.val())) object.val('');  // Empty Value
    }
Ad Schellevis's avatar
Ad Schellevis committed
497 498
}

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
function calculated_change() {
  // How many replies should be used to compute average delay
  // for controlling "delay" alarms.
  // Calculate a reasonable value based on gateway probe interval and RRD 1 minute average graph step size (60).
  if ($('#avg_delay_samples_calculated').prop('checked') && ( $('#interval').val() > 0)) {
      $('#avg_delay_samples').val(60 * (1/6) / Math.pow($('#interval').val(), 0.333));  // Calculate
  }
  recalc_value($('#avg_delay_samples'), 1, 100);

  // How many probes should be used to compute average loss.
  // Calculate a reasonable value based on gateway probe interval and RRD 1 minute average graph step size (60).
  if ($('#avg_loss_samples_calculated').prop('checked') && ( $('#interval').val() > 0)) {
      $('#avg_loss_samples').val(60 / $('#interval').val());  // Calculate
  }
  recalc_value($('#avg_loss_samples'), 1, 1000);

  // The delay (in samples) after which loss is computed
  // without this delays larger than interval would be treated as loss.
  // Calculate a reasonable value based on gateway probe interval and RRD 1 minute average graph step size (60).
  if ($('#avg_loss_delay_samples_calculated').prop('checked') && ( $('#interval').val() > 0)) {
      $('#avg_loss_delay_samples').val(60 * (1/3) / $('#interval').val());  // Calculate
  }
  recalc_value($('#avg_loss_delay_samples'), 1, 200);
Ad Schellevis's avatar
Ad Schellevis committed
522 523 524
}


525 526 527 528 529 530
$( document ).ready(function() {
    // unhide advanced
    $("#btn_advanced").click(function(event){
        event.preventDefault();
        $(".advanced").toggleClass('hidden visible');
    });
Ad Schellevis's avatar
Ad Schellevis committed
531

532 533 534 535 536 537 538 539
    // (un)hide advanced on form load when any advanced setting is provided
<?php
  if ((!empty($pconfig['latencylow']) || !empty($pconfig['latencyhigh']) || !empty($pconfig['losslow']) || !empty($pconfig['losshigh']) || (isset($pconfig['weight']) && $pconfig['weight'] > 1) || (!empty($pconfig['interval']) && ($pconfig['interval'] > $apinger_default['interval'])) || (!empty($pconfig['down']) && !($pconfig['down'] == $apinger_default['down'])))): ?>
    $("#btn_advanced").click();
<?php
  endif;?>

});
Ad Schellevis's avatar
Ad Schellevis committed
540 541 542
//]]>
</script>

543 544 545 546 547
<section class="page-content-main">
  <div class="container-fluid">
    <div class="row">
<?php if (isset($input_errors) && count($input_errors) > 0) {
    print_input_errors($input_errors);
548
} ?>
549
      <section class="col-xs-12">
550
        <div class="content-box  table-responsive">
551 552 553 554 555 556 557 558 559 560 561 562
            <form action="system_gateways_edit.php" method="post" name="iform" id="iform">
<?php
            if ($pconfig['attribute'] == "system" || is_numeric($pconfig['attribute'])):?>
              <input type='hidden' name='attribute' id='attribute' value="<?=$pconfig['attribute'];?>"/>
<?php
            endif;?>
              <input type='hidden' name='friendlyiface' id='friendlyiface' value="<?=$pconfig['friendlyiface'];?>"/>
              <table class="table table-striped">
                <tr>
                  <td width="22%"><?=gettext("Edit gateway");?></td>
                  <td  width="78%" align="right">
                    <small><?=gettext("full help"); ?> </small>
Ad Schellevis's avatar
Ad Schellevis committed
563
                    <i class="fa fa-toggle-off text-danger"  style="cursor: pointer;" id="show_all_help_page" type="button"></i>
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_disabled" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Disabled"); ?></td>
                  <td>
                    <input name="disabled" type="checkbox" id="disabled" value="yes" <?= !empty($pconfig['disabled']) ? "checked=\"checked\"" : ""; ?> />
                    <div class="hidden" for="help_for_disabled">
                      <strong><?=gettext("Disable this gateway");?></strong><br />
                      <?=gettext("Set this option to disable this gateway without removing it from the list.");?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_interface" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Interface"); ?></td>
                  <td>
                    <select name='interface' class="selectpicker" data-style="btn-default" data-live-search="true">
<?php
                    foreach (get_configured_interface_with_descr(false, true) as $iface => $ifacename):?>
                      <option value="<?=$iface;?>" <?=$iface == $pconfig['friendlyiface'] ? "selected='selected'" : "";?>>
                        <?=$ifacename;?>
                      </option>
<?php
                      endforeach;?>
                    </select>
                      <div class="hidden" for="help_for_interface">
                        <?=gettext("Choose which interface this gateway applies to."); ?>
                      </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_ipprotocol" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Address Family"); ?></td>
                  <td>
                    <select name='ipprotocol' class="selectpicker" data-style="btn-default" >
                      <option value="inet" <?=$pconfig['ipprotocol'] == 'inet' ? "selected='selected'" : "";?>>
                          <?=gettext("IPv4");?>
                      </option>
                      <option value="inet6" <?=$pconfig['ipprotocol'] == 'inet6'? "selected='selected'" : "";?>>
                          <?=gettext("IPv6");?>
                      </option>
                    </select>
                    <div class="hidden" for="help_for_ipprotocol">
                        <?=gettext("Choose the Internet Protocol this gateway uses."); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_name" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Name"); ?></td>
                  <td>
                    <input name="name" type="text" size="20" value="<?=$pconfig['name'];?>" />
                    <div class="hidden" for="help_for_name">
                      <?=gettext("Gateway name"); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_gateway" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Gateway"); ?></td>
                  <td>
                    <input name="gateway" type="text" size="28" value="<?=!empty($pconfig['dynamic']) ? "dynamic" : $pconfig['gateway'];?>"/>
                    <div class="hidden" for="help_for_gateway">
                      <?=gettext("Gateway IP address"); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_defaultgw" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Default Gateway"); ?></td>
                  <td>
                    <input name="defaultgw" type="checkbox" value="yes" <?=!empty($pconfig['defaultgw']) ? "checked=\"checked\"" : "";?> />
                    <div class="hidden" for="help_for_defaultgw">
                      <?=gettext("This will select the above gateway as the default gateway"); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_monitor_disable" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Disable Gateway Monitoring"); ?></td>
                  <td>
639
                    <input name="monitor_disable" type="checkbox" value="yes" <?=!empty($pconfig['monitor_disable']) ? "checked=\"checked\"" : "";?>/>
640 641 642 643 644 645 646 647 648 649 650 651
                    <div class="hidden" for="help_for_monitor_disable">
                      <?=gettext("This will consider this gateway as always being up"); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_monitor" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Monitor IP"); ?></td>
                  <td>
                      <input name="monitor" type="text" value="<?=$pconfig['gateway'] == $pconfig['monitor'] ? "" : $pconfig['monitor'] ;?>" size="28" />
                      <div class="hidden" for="help_for_monitor">
                        <strong><?=gettext("Alternative monitor IP"); ?></strong> <br />
                        <?=gettext("Enter an alternative address here to be used to monitor the link. This is used for the " .
652 653
                                                "quality RRD graphs as well as the load balancer entries. Use this if the gateway does not respond " .
                                                "to ICMP echo requests (pings)"); ?>.
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
                      </div>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_force_down" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Mark Gateway as Down"); ?></td>
                  <td>
                    <input name="force_down" type="checkbox" value="yes" <?=!empty($pconfig['force_down']) ? "checked=\"checked\"" : "";?>/>
                    <div class="hidden" for="help_for_force_down">
                      <strong><?=gettext("Mark Gateway as Down"); ?></strong><br />
                      <?=gettext("This will force this gateway to be considered Down"); ?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced visible">
                  <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Advanced");?></td>
                  <td>
                    <input type="button" id="btn_advanced" value="Advanced" class="btn btn-default btn-xs"/><?=gettext(" - Show advanced option"); ?>
                  </td>
                </tr>
                <tr class="advanced hidden">
                    <td colspan="2"> <b><?=gettext("Advanced");?> </b> </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_weight" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Weight");?></td>
                  <td>
                    <select name="weight" class="selectpicker" data-width="auto">
<?php
                    for ($i = 1; $i < 6; $i++):?>
                      <option value="<?=$i;?>" <?=$pconfig['weight'] == $i ? "selected='selected'" : "";?> >
                        <?=$i;?>
                      </option>
<?php
                    endfor;?>
                    </select>
                    <div class="hidden" for="help_for_weight">
                      <?=gettext("Weight for this gateway when used in a Gateway Group.");?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_latency" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Latency thresholds");?></td>
                  <td>
                    <table class="table table-condensed">
                        <thead>
                            <tr>
                              <th><?=gettext("From");?></th>
                              <th><?=gettext("To");?></th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                              <td>
                                <input name="latencylow" type="text" value="<?=$pconfig['latencylow'];?>" />
                              </td>
                              <td>
                                <input name="latencyhigh" type="text" value="<?=$pconfig['latencyhigh'];?>" />
                              </td>
                            </tr>
                        </tbody>
                    </table>
                    <div class="hidden" for="help_for_latency">
                        <?=gettext(sprintf("Low and high thresholds for latency in milliseconds. Default is %d/%d.", $apinger_default['latencylow'], $apinger_default['latencyhigh']));?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_loss" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Packet Loss thresholds");?></td>
                  <td>
                    <table class="table table-condensed">
                        <thead>
                            <tr>
                              <th><?=gettext("From");?></th>
                              <th><?=gettext("To");?></th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                              <td>
                                <input name="losslow" type="text" value="<?=$pconfig['losslow'];?>" />
                              </td>
                              <td>
                                <input name="losshigh" type="text" value="<?=$pconfig['losshigh'];?>" />
                              </td>
                            </tr>
                        </tbody>
                    </table>
                    <div class="hidden" for="help_for_loss">
                      <?=gettext(sprintf("Low and high thresholds for packet loss in %%. Default is %d/%d.", $apinger_default['losslow'], $apinger_default['losshigh']));?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_interval" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Probe Interval");?></td>
                  <td>
                    <input name="interval" id="interval" type="text" value="<?=$pconfig['interval'];?>" onclick="calculated_change()" />
                    <div class="hidden" for="help_for_interval">
                      <?=gettext(sprintf("How often that an ICMP probe will be sent in seconds. Default is %d.", $apinger_default['interval']));?><br /><br />
                      <?=gettext("NOTE: The quality graph is averaged over seconds, not intervals, so as the probe interval is increased the accuracy of the quality graph is decreased.");?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_down" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Down");?></td>
                  <td>
                    <input name="down" type="text" value="<?=$pconfig['down'];?>" />
                    <div class="hidden" for="help_for_down">
                      <?=gettext(sprintf("The number of seconds of failed probes before the alarm will fire. Default is %d.", $apinger_default['down']));?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_avg_delay_samples" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Avg Delay Replies Qty");?></td>
                  <td>
767
                    <input name="avg_delay_samples" id="avg_delay_samples" type="text" value="<?=$pconfig['avg_delay_samples'];?>" onchange="calculated_change()"  />
768 769 770 771 772 773 774 775 776 777
                    <input name="avg_delay_samples_calculated" type="checkbox" id="avg_delay_samples_calculated" value="yes" <?=!empty($pconfig['avg_delay_samples_calculated']) ? "checked=\"checked\"" : "";?> onclick="calculated_change()" />
                    <?=gettext("Use calculated value."); ?>
                    <div class="hidden" for="help_for_avg_delay_samples">
                      <?=gettext(sprintf("How many replies should be used to compute average delay for controlling \"delay\" alarms?  Default is %d.", $apinger_default['avg_delay_samples']));?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_avg_loss_samples" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Avg Packet Loss Probes Qty");?></td>
                  <td>
778
                    <input name="avg_loss_samples" type="text" id="avg_loss_samples" value="<?=$pconfig['avg_loss_samples'];?>" onchange="calculated_change()" />
779 780 781 782
                    <input name="avg_loss_samples_calculated" type="checkbox" id="avg_loss_samples_calculated" value="yes" <?= !empty($pconfig['avg_loss_samples_calculated']) ? "checked=\"checked\"" : "";?> onclick="calculated_change()" />
                    <?=gettext("Use calculated value."); ?>

                    <div class="hidden" for="help_for_avg_loss_samples">
Ad Schellevis's avatar
Ad Schellevis committed
783
                      <?=gettext(sprintf("How many probes should be used to compute average packet loss?  Default is %d.", $apinger_default['avg_loss_samples']));?>
784 785 786 787 788 789
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td><a id="help_for_avg_loss_delay_samples" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Lost Probe Delay");?></td>
                  <td>
790
                    <input name="avg_loss_delay_samples" type="text" id="avg_loss_delay_samples" value="<?=$pconfig['avg_loss_delay_samples'];?>" onchange="calculated_change()"  />
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
                    <input name="avg_loss_delay_samples_calculated" type="checkbox" id="avg_loss_delay_samples_calculated" value="yes" <?= !empty($pconfig['avg_loss_delay_samples_calculated']) ? "checked=\"checked\"" : "";?> onclick="calculated_change()" />
                    <?=gettext("Use calculated value."); ?>

                    <div class="hidden" for="help_for_avg_loss_delay_samples">
                      <?=gettext(sprintf("The delay (in qty of probe samples) after which loss is computed.  Without this, delays longer than the probe interval would be treated as packet loss.  Default is %d.", $apinger_default['avg_loss_delay_samples']));?>
                    </div>
                  </td>
                </tr>
                <tr class="advanced hidden">
                  <td></td>
                  <td>
                    <small>
                      <?= gettext("The probe interval must be less than the down time, otherwise the gateway will seem to go down then come up again at the next probe."); ?><br /><br />
                      <?= gettext("The down time defines the length of time before the gateway is marked as down, but the accuracy is controlled by the probe interval. For example, if your down time is 40 seconds but on a 30 second probe interval, only one probe would have to fail before the gateway is marked down at the 40 second mark. By default, the gateway is considered down after 10 seconds, and the probe interval is 1 second, so 10 probes would have to fail before the gateway is marked down."); ?><br />
                    </small>
                  </td>
                </tr>
                <tr>
                  <td><a id="help_for_descr" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Description"); ?></td>
                  <td>
                    <input name="descr" type="text" value="<?=$pconfig['descr'];?>" />
                    <div class="hidden" for="help_for_descr">
                      <?=gettext("You may enter a description here for your reference (not parsed)"); ?>
                    </div>
                  </td>
                </tr>
                <tr>
                  <td>&nbsp;</td>
                  <td>
                    <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" />
                    <input type="button" class="btn btn-default" value="<?=gettext("Cancel");?>"
                           onclick="window.location.href='<?=isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/system_gateways.php';?>'" />
<?php
                    if (isset($id)) :?>
                    <input name="id" type="hidden" value="<?=$id;?>" />
<?php
                    endif; ?>
                  </td>
                </tr>
              </table>
            </form>
          </div>
        </div>
      </section>
    </div>
  </div>
</section>
Ad Schellevis's avatar
Ad Schellevis committed
838

839
<?php include("foot.inc");