system_routes_edit.php 18.5 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	Copyright (C) 2010 Scott Ullrich
	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.
*/

require_once("guiconfig.inc");
require_once("filter.inc");
33
require_once("interfaces.inc");
34
require_once("pfsense-utils.inc");
Ad Schellevis's avatar
Ad Schellevis committed
35 36 37

$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/system_routes.php');

38
if (!is_array($config['staticroutes'])) {
39
    $config['staticroutes'] = array();
40 41 42
}

if (!is_array($config['staticroutes']['route'])) {
43
    $config['staticroutes']['route'] = array();
44
}
Ad Schellevis's avatar
Ad Schellevis committed
45 46 47 48

$a_routes = &$config['staticroutes']['route'];
$a_gateways = return_gateways_array(true, true);

49 50 51 52 53 54
if (is_numericint($_GET['id'])) {
    $id = $_GET['id'];
}
if (isset($_POST['id']) && is_numericint($_POST['id'])) {
    $id = $_POST['id'];
}
Ad Schellevis's avatar
Ad Schellevis committed
55

56 57 58
if (isset($_GET['dup']) && is_numericint($_GET['dup'])) {
    $id = $_GET['dup'];
}
Ad Schellevis's avatar
Ad Schellevis committed
59 60

if (isset($id) && $a_routes[$id]) {
61 62 63 64 65
    list($pconfig['network'],$pconfig['network_subnet']) =
        explode('/', $a_routes[$id]['network']);
    $pconfig['gateway'] = $a_routes[$id]['gateway'];
    $pconfig['descr'] = $a_routes[$id]['descr'];
    $pconfig['disabled'] = isset($a_routes[$id]['disabled']);
Ad Schellevis's avatar
Ad Schellevis committed
66 67
}

68 69 70
if (isset($_GET['dup']) && is_numericint($_GET['dup'])) {
    unset($id);
}
Ad Schellevis's avatar
Ad Schellevis committed
71 72

if ($_POST) {
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
    global $aliastable;

    unset($input_errors);
    $pconfig = $_POST;

    /* input validation */
    $reqdfields = explode(" ", "network network_subnet gateway");
    $reqdfieldsn = explode(
        ",",
        gettext("Destination network") . "," .
        gettext("Destination network bit count") . "," .
        gettext("Gateway")
    );

    do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

    if (($_POST['network'] && !is_ipaddr($_POST['network']) && !is_alias($_POST['network']))) {
        $input_errors[] = gettext("A valid IPv4 or IPv6 destination network must be specified.");
    }
    if (($_POST['network_subnet'] && !is_numeric($_POST['network_subnet']))) {
        $input_errors[] = gettext("A valid destination network bit count must be specified.");
    }
    if (($_POST['gateway']) && is_ipaddr($_POST['network'])) {
        if (!isset($a_gateways[$_POST['gateway']])) {
            $input_errors[] = gettext("A valid gateway must be specified.");
        }
        if (!validate_address_family($_POST['network'], lookup_gateway_ip_by_name($_POST['gateway']))) {
            $input_errors[] = gettext("The gateway '{$a_gateways[$_POST['gateway']]['gateway']}' is a different Address Family as network '{$_POST['network']}'.");
        }
    }

    /* check for overlaps */
    $current_targets = get_staticroutes(true);
    $new_targets = array();
    if (is_ipaddrv6($_POST['network'])) {
        $osn = gen_subnetv6($_POST['network'], $_POST['network_subnet']) . "/" . $_POST['network_subnet'];
        $new_targets[] = $osn;
    }
    if (is_ipaddrv4($_POST['network'])) {
        if ($_POST['network_subnet'] > 32) {
            $input_errors[] = gettext("A IPv4 subnet can not be over 32 bits.");
        } else {
            $osn = gen_subnet($_POST['network'], $_POST['network_subnet']) . "/" . $_POST['network_subnet'];
            $new_targets[] = $osn;
        }
    } elseif (is_alias($_POST['network'])) {
        $osn = $_POST['network'];
        foreach (preg_split('/\s+/', $aliastable[$osn]) as $tgt) {
            if (is_ipaddrv4($tgt)) {
                $tgt .= "/32";
            }
            if (is_ipaddrv6($tgt)) {
                $tgt .= "/128";
            }
            if (!is_subnet($tgt)) {
                continue;
            }
            if (!is_subnetv6($tgt)) {
                continue;
            }
            $new_targets[] = $tgt;
        }
    }
    if (!isset($id)) {
        $id = count($a_routes);
    }
    $oroute = $a_routes[$id];
    $old_targets = array();
    if (!empty($oroute)) {
        if (is_alias($oroute['network'])) {
            foreach (filter_expand_alias_array($oroute['network']) as $tgt) {
                if (is_ipaddrv4($tgt)) {
                    $tgt .= "/32";
                } elseif (is_ipaddrv6($tgt)) {
                    $tgt .= "/128";
                }
                if (!is_subnet($tgt)) {
                    continue;
                }
                $old_targets[] = $tgt;
            }
        } else {
            $old_targets[] = $oroute['network'];
        }
    }

    $overlaps = array_intersect($current_targets, $new_targets);
    $overlaps = array_diff($overlaps, $old_targets);
    if (count($overlaps)) {
        $input_errors[] = gettext("A route to these destination networks already exists") . ": " . implode(", ", $overlaps);
    }

    if (is_array($config['interfaces'])) {
        foreach ($config['interfaces'] as $if) {
            if (is_ipaddrv4($_POST['network'])
                && isset($if['ipaddr']) && isset($if['subnet'])
                && is_ipaddrv4($if['ipaddr']) && is_numeric($if['subnet'])
                && ($_POST['network_subnet'] == $if['subnet'])
                && (gen_subnet($_POST['network'], $_POST['network_subnet']) == gen_subnet($if['ipaddr'], $if['subnet']))) {
                    $input_errors[] = sprintf(gettext("This network conflicts with address configured on interface %s."), $if['descr']);
            } elseif (is_ipaddrv6($_POST['network'])
                && isset($if['ipaddrv6']) && isset($if['subnetv6'])
                && is_ipaddrv6($if['ipaddrv6']) && is_numeric($if['subnetv6'])
                && ($_POST['network_subnet'] == $if['subnetv6'])
                && (gen_subnetv6($_POST['network'], $_POST['network_subnet']) == gen_subnetv6($if['ipaddrv6'], $if['subnetv6']))) {
                    $input_errors[] = sprintf(gettext("This network conflicts with address configured on interface %s."), $if['descr']);
            }
        }
    }

    if (!$input_errors) {
        $route = array();
        $route['network'] = $osn;
        $route['gateway'] = $_POST['gateway'];
        $route['descr'] = $_POST['descr'];
        if ($_POST['disabled']) {
            $route['disabled'] = true;
        } else {
            unset($route['disabled']);
        }

        if (file_exists('/tmp/.system_routes.apply')) {
            $toapplylist = unserialize(file_get_contents('/tmp/.system_routes.apply'));
        } else {
            $toapplylist = array();
        }
        $a_routes[$id] = $route;

        if (!empty($oroute)) {
            $delete_targets = array_diff($old_targets, $new_targets);
            if (count($delete_targets)) {
                foreach ($delete_targets as $dts) {
                    if (is_ipaddrv6($dts)) {
                        $family = '-inet6';
                    }
                    $toapplylist[] = "/sbin/route delete {$family} {$dts}";
                }
            }
        }
        file_put_contents('/tmp/.system_routes.apply', serialize($toapplylist));

        mark_subsystem_dirty('staticroutes');

        write_config();

        header("Location: system_routes.php");
        exit;
    }
Ad Schellevis's avatar
Ad Schellevis committed
221 222 223 224 225 226 227
}

$pgtitle = array(gettext("System"),gettext("Static Routes"),gettext("Edit route"));
$shortcut_section = "routing";
include("head.inc");
?>

Ad Schellevis's avatar
Ad Schellevis committed
228 229 230 231
<body>
	<script type="text/javascript" src="/javascript/jquery.ipv4v6ify.js"></script>
	<script type="text/javascript" src="/javascript/autosuggest.js"></script>
	<script type="text/javascript" src="/javascript/suggestions.js"></script>
232

Ad Schellevis's avatar
Ad Schellevis committed
233 234 235 236 237
	<?php include("fbegin.inc"); ?>

	<section class="page-content-main">

		<div class="container-fluid">
238 239

			<div class="row">
240
				<?php if (isset($input_errors) && count($input_errors) > 0) {
241 242
                    print_input_errors($input_errors);
} ?>
243

Ad Schellevis's avatar
Ad Schellevis committed
244
			    <section class="col-xs-12">
245 246 247 248 249 250 251

				<div class="content-box">

                        <form action="system_routes_edit.php" method="post" name="iform" id="iform">

				<div class="table-responsive">
					<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
252 253 254 255 256 257
									<tr>
										<td colspan="2" valign="top" class="listtopic"><?=gettext("Edit route entry"); ?></td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Destination network"); ?></td>
										<td width="78%" class="vtable">
258 259 260 261 262 263 264
											<table>
												<tr>
													<td width="348px">
														<input name="network" type="text" class="formfldalias ipv4v6" id="network" size="20" value="<?=htmlspecialchars($pconfig['network']);?>" />
													</td>
													<td>
														<select name="network_subnet" class="selectpicker ipv4v6" id="network_subnet" data-width="auto">
265 266 267 268 269
														<?php for ($i = 128; $i >= 1; $i--) :
?>
															<option value="<?=$i;?>" <?php if ($i == $pconfig['network_subnet']) {
                                                                echo "selected=\"selected\"";
} ?>>
270 271
																<?=$i;?>
															</option>
272 273
														<?php
endfor; ?>
274 275 276 277
														</select>
													</td>
												</tr>
											</table>
Ad Schellevis's avatar
Ad Schellevis committed
278 279 280 281 282 283
											<br /><span class="vexpl"><?=gettext("Destination network for this static route"); ?></span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Gateway"); ?></td>
										<td width="78%" class="vtable">
284
											<select name="gateway" id="gateway" class="selectpicker">
Ad Schellevis's avatar
Ad Schellevis committed
285
											<?php
286 287 288 289 290 291
                                            foreach ($a_gateways as $gateway) {
                                                ?>
                                                <option value="<?=$gateway['name'];?>" <?php if ($gateway['name'] == $pconfig['gateway']) {
                                                    echo "selected=\"selected\"";
} ?>>
                                                    <?=htmlspecialchars($gateway['name']) . " - " . htmlspecialchars($gateway['gateway']);?>
292 293
													</option>
													<?php
294 295
                                            }
                                            ?>
Ad Schellevis's avatar
Ad Schellevis committed
296 297
											</select> <br />
											<div id='addgwbox'>
298 299
												<?=gettext("Choose which gateway this route applies to or");
?> <a onclick="show_add_gateway();" href="#"><?=gettext("add a new one.");?></a>
Ad Schellevis's avatar
Ad Schellevis committed
300 301 302 303 304 305
											</div>
											<div id='notebox'>
											</div>
											<div style="display:none" id="status">
											</div>
											<div style="display:none" id="addgateway">
306 307
															<table class="table table-striped"  summary="addgateway">
																<tbody>
Ad Schellevis's avatar
Ad Schellevis committed
308
																<tr>
309
																	<td colspan="2" valign="top" class="listtopic"><b><?=gettext("Add new gateway:"); ?></b></td>
Ad Schellevis's avatar
Ad Schellevis committed
310 311
																</tr>
																<tr>
312
																	<td width="22%"><?=gettext("Default gateway:"); ?></td><td with="78%"><input class="form-control" type="checkbox" id="defaultgw" name="defaultgw" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
313 314
																</tr>
																<tr>
315 316
																	<td width="22%"><?=gettext("Interface:"); ?></td>
																	<td with="78%">
317
																		<select name="addinterfacegw" id="addinterfacegw" class="selectpicker">
Ad Schellevis's avatar
Ad Schellevis committed
318
																		<?php $gwifs = get_configured_interface_with_descr();
319 320 321 322
                                                                        foreach ($gwifs as $fif => $dif) {
                                                                            echo "<option value=\"{$fif}\">{$dif}</option>\n";
                                                                        }
                                                                        ?>
Ad Schellevis's avatar
Ad Schellevis committed
323 324 325 326
																		</select>
																	</td>
																</tr>
																<tr>
327
																	<td with="22%"><?=gettext("Gateway Name:"); ?></td><td with="78%"><input class="form-control" id="name" name="name" value="GW" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
328 329
																</tr>
																<tr>
330
																	<td with="22%"><?=gettext("Gateway IP:"); ?></td><td with="78%"><input class="form-control" id="gatewayip" name="gatewayip" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
331 332
																</tr>
																<tr>
333
																	<td with="22%"><?=gettext("Description:"); ?></td><td with="78%"><input class="form-control" id="gatewaydescr" name="gatewaydescr" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
334 335
																</tr>
																<tr>
336 337
																	<td with="22%"></td>
																	<td with="78%">
Ad Schellevis's avatar
Ad Schellevis committed
338 339
																		<div id='savebuttondiv'>
																			<input type="hidden" name="addrtype" id="addrtype" value="IPv4" />
340 341
																			<input class="btn btn-primary" id="gwsave" type="button" value="<?=gettext("Save Gateway"); ?>" onclick='hide_add_gatewaysave();' />
																			<input class="btn btn-default" id="gwcancel" type="button" value="<?=gettext("Cancel"); ?>" onclick='hide_add_gateway();' />
Ad Schellevis's avatar
Ad Schellevis committed
342 343 344
																		</div>
																	</td>
																</tr>
345
																</tbody>
Ad Schellevis's avatar
Ad Schellevis committed
346 347 348 349 350 351 352
															</table>
											</div>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Disabled");?></td>
										<td width="78%" class="vtable">
353 354 355
											<input name="disabled" type="checkbox" id="disabled" value="yes" <?php if ($pconfig['disabled']) {
                                                echo "checked=\"checked\"";
} ?> />
Ad Schellevis's avatar
Ad Schellevis committed
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
											<strong><?=gettext("Disable this static route");?></strong><br />
											<span class="vexpl"><?=gettext("Set this option to disable this static route without removing it from the list.");?></span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
										<td width="78%" class="vtable">
											<input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>" />
											<br /><span class="vexpl"><?=gettext("You may enter a description here for your reference (not parsed)."); ?></span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top">&nbsp;</td>
										<td width="78%">
											<input id="save" name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" />
371 372 373 374
											<input id="cancel" type="button" class="btn btn-default" value="<?=gettext("Cancel");
?>" onclick="window.location.href='<?=$referer;?>'" />
											<?php if (isset($id) && $a_routes[$id]) :
?>
Ad Schellevis's avatar
Ad Schellevis committed
375
												<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
376 377
											<?php
endif; ?>
Ad Schellevis's avatar
Ad Schellevis committed
378 379 380
										</td>
									</tr>
								</table>
381
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
382
                        </form>
383
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
384 385 386 387
			    </section>
			</div>
		</div>
	</section>
388

Ad Schellevis's avatar
Ad Schellevis committed
389 390 391 392 393 394 395
	<script type="text/javascript">
	//<![CDATA[
		var gatewayip;
		var name;
		function show_add_gateway() {
			document.getElementById("addgateway").style.display = '';
			document.getElementById("addgwbox").style.display = 'none';
396 397
			//document.getElementById("gateway").style.display = 'none';
			jQuery('#gateway').selectpicker('hide');
Ad Schellevis's avatar
Ad Schellevis committed
398 399 400 401
			document.getElementById("save").style.display = 'none';
			document.getElementById("cancel").style.display = 'none';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
402
			//jQuery('.selectpicker').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
403 404 405 406 407
			jQuery('#notebox').html("");
		}
		function hide_add_gateway() {
			document.getElementById("addgateway").style.display = 'none';
			document.getElementById("addgwbox").style.display = '';
408 409
			//document.getElementById("gateway").style.display = '';
			jQuery('#gateway').selectpicker('show');
Ad Schellevis's avatar
Ad Schellevis committed
410 411 412 413
			document.getElementById("save").style.display = '';
			document.getElementById("cancel").style.display = '';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
414
			//jQuery('.selectpicker').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
415 416
		}
		function hide_add_gatewaysave() {
Ad Schellevis's avatar
Ad Schellevis committed
417
			document.getElementById("addgateway").style.display = 'none';
Ad Schellevis's avatar
Ad Schellevis committed
418 419 420 421 422 423 424 425 426 427 428 429 430
			var iface = jQuery('#addinterfacegw').val();
			name = jQuery('#name').val();
			var descr = jQuery('#gatewaydescr').val();
			gatewayip = jQuery('#gatewayip').val();
			addrtype = jQuery('#addrtype').val();
			var defaultgw = '';
			if (jQuery('#defaultgw').checked)
				defaultgw = 'yes';
			var url = "system_gateways_edit.php";
			var pars = 'isAjax=true&defaultgw=' + escape(defaultgw) + '&interface=' + escape(iface) + '&name=' + escape(name) + '&descr=' + escape(descr) + '&gateway=' + escape(gatewayip) + '&type=' + escape(addrtype);
			jQuery.ajax(
				url,
			{
431
					type: 'post',
Ad Schellevis's avatar
Ad Schellevis committed
432 433
					data: pars,
					error: report_failure,
434
					success: save_callback
Ad Schellevis's avatar
Ad Schellevis committed
435 436 437 438 439 440 441 442 443 444
			});
		}
		function addOption(selectbox,text,value)
		{
			var optn = document.createElement("OPTION");
			optn.text = text;
			optn.value = value;
			selectbox.append(optn);
			selectbox.prop('selectedIndex',selectbox.children('option').length-1);
			jQuery('#notebox').html("<p><strong><?=gettext("NOTE:");?><\/strong> <?php printf(gettext("You can manage Gateways %shere%s."), "<a target='_blank' href='system_gateways.php'>", "<\/a>");?> <\/strong><\/p>");
445
			jQuery('.selectpicker').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
446 447 448
		}
		function report_failure() {
			alert("<?=gettext("Sorry, we could not create your gateway at this time."); ?>");
Ad Schellevis's avatar
Ad Schellevis committed
449 450
			hide_add_gateway();
		}
451
		function save_callback(response) {
Ad Schellevis's avatar
Ad Schellevis committed
452 453 454
			if (response) {
				document.getElementById("addgateway").style.display = 'none';
				hide_add_gateway();
455 456
				var gwtext = escape(name) + " - " + gatewayip;
				addOption(jQuery('#gateway'), gwtext, name);
457
				jQuery('.selectpicker').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
458 459 460 461 462 463 464 465
			} else {
				report_failure();
			}
		}
		var addressarray = <?= json_encode(get_alias_list(array("host", "network"))) ?>;
		var oTextbox1 = new AutoSuggestControl(document.getElementById("network"), new StateSuggestions(addressarray));
	//]]>
	</script>
466
<?php include("foot.inc");