• Franco Fichtner's avatar
    src: raise memory limit to 256MB for everyone · a0b1e854
    Franco Fichtner authored
    128M has some crash reports attached, but "modern" i386 systems
    have more RAM to spare, too.  Also remove two old expansions to
    64M, which are now restrictions, because when they were introduced
    the memory limit was 32M.  ;)
    a0b1e854
services_router_advertisements.php 16.1 KB
1 2 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
<?php

/*
	Copyright (C) 2014-2015 Deciso B.V.
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	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.
*/

require_once("guiconfig.inc");
require_once("services.inc");
require_once("interfaces.inc");

$if = $_GET['if'];
if ($_POST['if'])
	$if = $_POST['if'];

if (!$_GET['if'])
	$savemsg = "<p><b>" . gettext("The DHCPv6 Server can only be enabled on interfaces configured with static IP addresses") . ".</b></p>" .
		   "<p><b>" . gettext("Only interfaces configured with a static IP will be shown") . ".</b></p>";

$iflist = get_configured_interface_with_descr();

/* set the starting interface */
if (!$if || !isset($iflist[$if])) {
	foreach ($iflist as $ifent => $ifname) {
		$oc = $config['interfaces'][$ifent];
		if ((is_array($config['dhcpdv6'][$ifent]) && !isset($config['dhcpdv6'][$ifent]['enable']) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))) ||
			(!is_array($config['dhcpdv6'][$ifent]) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))))
			continue;
		$if = $ifent;
		break;
	}
}

if (is_array($config['dhcpdv6'][$if])) {
	/* RA specific */
	$pconfig['ramode'] = $config['dhcpdv6'][$if]['ramode'];
	$pconfig['rapriority'] = $config['dhcpdv6'][$if]['rapriority'];
	if($pconfig['rapriority'] == "")
		$pconfig['rapriority'] = "medium";
	$pconfig['rainterface'] = $config['dhcpdv6'][$if]['rainterface'];
	$pconfig['radomainsearchlist'] = $config['dhcpdv6'][$if]['radomainsearchlist'];
	list($pconfig['radns1'],$pconfig['radns2']) = $config['dhcpdv6'][$if]['radnsserver'];
	$pconfig['rasamednsasdhcp6'] = isset($config['dhcpdv6'][$if]['rasamednsasdhcp6']);

	$pconfig['subnets'] = $config['dhcpdv6'][$if]['subnets']['item'];
}
if (!is_array($pconfig['subnets']))
	$pconfig['subnets'] = array();

$advertise_modes = array("disabled" => "Disabled",
			 "router" => "Router Only",
			 "unmanaged" => "Unmanaged",
			 "managed" => "Managed",
			 "assist" => "Assisted");
$priority_modes = array("low" => "Low",
			"medium" => "Normal",
			"high" => "High");
$carplist = get_configured_carp_interface_list();

$subnets_help = gettext("Subnets are specified in CIDR format.  " .
			"Select the CIDR mask that pertains to each entry.  " .
			"/128 specifies a single IPv6 host; /64 specifies a normal IPv6 network; etc.  " .
			"If no subnets are specified here, the Router Advertisement (RA) Daemon will advertise to the subnet to which the router's interface is assigned.");

if ($_POST) {
	unset($input_errors);

	$pconfig = $_POST;

	/* input validation */

	$pconfig['subnets'] = array();
	for ($x = 0; $x < 5000; $x += 1) {
		$address = trim($_POST['subnet_address' . $x]);
		if ($address === "")
			continue;

		$bits = trim($_POST['subnet_bits' . $x]);
		if ($bits === "")
			$bits = "128";

		if (is_alias($address)) {
			$pconfig['subnets'][] = $address;
		} else {
			$pconfig['subnets'][] = $address . "/" . $bits;
			if (!is_ipaddrv6($address))
				$input_errors[] = sprintf(gettext("An invalid subnet or alias was specified. [%s/%s]"), $address, $bits);
		}
	}

	if (($_POST['radns1'] && !is_ipaddrv6($_POST['radns1'])) || ($_POST['radns2'] && !is_ipaddrv6($_POST['radns2'])))
		$input_errors[] = gettext("A valid IPv6 address must be specified for the primary/secondary DNS servers.");
	if ($_POST['radomainsearchlist']) {
		$domain_array=preg_split("/[ ;]+/",$_POST['radomainsearchlist']);
		foreach ($domain_array as $curdomain) {
			if (!is_domain($curdomain)) {
				$input_errors[] = gettext("A valid domain search list must be specified.");
				break;
			}
		}
	}

	if (!$input_errors) {
		if (!is_array($config['dhcpdv6'][$if]))
			$config['dhcpdv6'][$if] = array();

		$config['dhcpdv6'][$if]['ramode'] = $_POST['ramode'];
		$config['dhcpdv6'][$if]['rapriority'] = $_POST['rapriority'];
		$config['dhcpdv6'][$if]['rainterface'] = $_POST['rainterface'];

		$config['dhcpdv6'][$if]['radomainsearchlist'] = $_POST['radomainsearchlist'];
		unset($config['dhcpdv6'][$if]['radnsserver']);
		if ($_POST['radns1'])
			$config['dhcpdv6'][$if]['radnsserver'][] = $_POST['radns1'];
		if ($_POST['radns2'])
			$config['dhcpdv6'][$if]['radnsserver'][] = $_POST['radns2'];

		$config['dhcpdv6'][$if]['rasamednsasdhcp6'] = ($_POST['rasamednsasdhcp6']) ? true : false;

		if (count($pconfig['subnets'])) {
			$config['dhcpdv6'][$if]['subnets']['item'] = $pconfig['subnets'];
		} else {
			unset($config['dhcpdv6'][$if]['subnets']);
		}

		write_config();
		$retval = services_radvd_configure();
		$savemsg = get_std_save_message();
	}
}

$pgtitle = array(gettext("Services"),gettext("Router advertisements"));

include("head.inc");

?>

<body>
<?php include("fbegin.inc"); ?>

<script type="text/javascript" src="/javascript/row_helper.js">
</script>
<script type="text/javascript" src="/javascript/autosuggest.js">
</script>
<script type="text/javascript" src="/javascript/suggestions.js">
</script>
<script type="text/javascript">
//<![CDATA[
	rowname[0] = "subnet_address";
	rowtype[0] = "textbox";
	rowsize[0] = "30";
	rowname[1] = "subnet_bits";
	rowtype[1] = "select";
	rowsize[1] = "1";
	function add_alias_control() {
		var name = "subnet_address" + (totalrows - 1);
		obj = document.getElementById(name);
		obj.setAttribute('class', 'formfldalias');
		obj.setAttribute('autocomplete', 'off');
		objAlias[totalrows - 1] = new AutoSuggestControl(obj, new StateSuggestions(addressarray));
	}
//]]>
</script>

	<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); ?>
				<?php if (isset($savemsg)) print_info_box($savemsg); ?>

			    <section class="col-xs-12">

					<?php
						/* active tabs */
						$tab_array = array();
						$tabscounter = 0;
						$i = 0;
						foreach ($iflist as $ifent => $ifname) {
							$oc = $config['interfaces'][$ifent];
							if ((is_array($config['dhcpdv6'][$ifent]) && !isset($config['dhcpdv6'][$ifent]['enable']) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))) ||
								(!is_array($config['dhcpdv6'][$ifent]) && !(is_ipaddrv6($oc['ipaddrv6']) && (!is_linklocal($oc['ipaddrv6'])))))
								continue;
							if ($ifent == $if)
								$active = true;
							else
								$active = false;
							$tab_array[] = array($ifname, $active, "services_dhcpv6.php?if={$ifent}");
							$tabscounter++;
						}
						if ($tabscounter == 0) {
							echo "</td></tr></table></form>";
							include("foot.inc");
							echo "</body>";
							echo "</html>";
							exit;
						}
						display_top_tabs($tab_array);
					?>
					<?php
					$tab_array = array();
					$tab_array[] = array(gettext("DHCPv6 Server"),         false, "services_dhcpv6.php?if={$if}");
					$tab_array[] = array(gettext("Router Advertisements"), true,  "services_router_advertisements.php?if={$if}");
					display_top_tabs($tab_array);
					?>
					<div class="tab-content content-box col-xs-12">
						<form action="services_router_advertisements.php" method="post" name="iform" id="iform">
							<div class="table-responsive">
								<table class="table table-striped" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
									<tr>
									<td width="22%" valign="top" class="vncellreq"><?=gettext("Router Advertisements");?></td>
									<td width="78%" class="vtable">
										<select name="ramode" id="ramode">
											<?php foreach($advertise_modes as $name => $value) { ?>
											<option value="<?=$name ?>" <?php if ($pconfig['ramode'] == $name) echo "selected=\"selected\""; ?> > <?=$value ?></option>
											<?php } ?>
										</select><br />
									<strong><?php printf(gettext("Select the Operating Mode for the Router Advertisement (RA) Daemon."))?></strong>
									<?php printf(gettext("Use \"Router Only\" to only advertise this router, \"Unmanaged\" for Router Advertising with Stateless Autoconfig, \"Managed\" for assignment through (a) DHCPv6 Server, \"Assisted\" for DHCPv6 Server assignment combined with Stateless Autoconfig"));?>
									<?php printf(gettext("It is not required to activate this DHCPv6 server when set to \"Managed\", this can be another host on the network")); ?>
									</td>
									</tr>
									<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Router Priority");?></td>
									<td width="78%" class="vtable">
										<select name="rapriority" id="rapriority">
											<?php foreach($priority_modes as $name => $value) { ?>
											<option value="<?=$name ?>" <?php if ($pconfig['rapriority'] == $name) echo "selected=\"selected\""; ?> > <?=$value ?></option>
											<?php } ?>
										</select><br />
									<strong><?php printf(gettext("Select the Priority for the Router Advertisement (RA) Daemon."))?></strong>
									</td>
									</tr>
									<?php
										$carplistif = array();
										if(count($carplist) > 0) {
											foreach($carplist as $ifname => $vip) {
												if((preg_match("/^{$if}_/", $ifname)) && (is_ipaddrv6($vip)))
													$carplistif[$ifname] = $vip;
											}
										}
										if(count($carplistif) > 0) {
									?>
									<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("RA Interface");?></td>
									<td width="78%" class="vtable">
										<select name="rainterface" id="rainterface">
											<?php foreach($carplistif as $ifname => $vip) { ?>
											<option value="interface" <?php if ($pconfig['rainterface'] == "interface") echo "selected=\"selected\""; ?> > <?=strtoupper($if); ?></option>
											<option value="<?=$ifname ?>" <?php if ($pconfig['rainterface'] == $ifname) echo "selected=\"selected\""; ?> > <?="$ifname - $vip"; ?></option>
											<?php } ?>
										</select><br />
									<strong><?php printf(gettext("Select the Interface for the Router Advertisement (RA) Daemon."))?></strong>
									</td>
									</tr>
									<?php } ?>

									<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("RA Subnet(s)");?></td>
									<td width="78%" class="vtable">
										<div><?= htmlentities($subnets_help) ?></div>
										<table id="maintable" summary="subnets">
										<tbody>
						<?php
										$counter = 0;
										foreach ($pconfig['subnets'] as $subnet) {
											$address_name = "subnet_address" . $counter;
											$bits_name = "subnet_bits" . $counter;
											list($address, $subnet) = explode("/", $subnet);
						?>
											<tr>
												<td>
													<input autocomplete="off" name="<?= $address_name ?>" type="text" class="formfldalias" id="<?= $address_name ?>" size="30" value="<?= htmlentities($address) ?>" />
												</td>
												<td>
													<select name="<?= $bits_name ?>" class="formselect" id="<?= $bits_name ?>">
													<option value="">
													<?php for ($i = 128; $i >= 0; $i -= 1) { ?>
														<option value="<?= $i ?>" <?= ("$subnet" === "$i") ? "selected='selected'" : "" ?>><?= $i ?></option>
													<?php } ?>
													</select>
												</td>
												<td>
													<a onclick="removeRow(this); return false;" href="#" alt="" title="<?=gettext("remove this entry"); ?>"><span class="glyphicon glyphicon-remove"></span></a>
												</td>
											</tr>
						<?php
											$counter += 1;
										}
						?>
										<tr style="display:none"><td></td></tr>
										</tbody>
										</table>
										<script type="text/javascript">
										//<![CDATA[
											field_counter_js = 2;
											totalrows = <?= $counter ?>;
										//]]>
										</script>
										<div id="addrowbutton">
											<a onclick="javascript:addRowTo('maintable'); add_alias_control(); return false;" href="#" alt="" title="<?=gettext("add another entry"); ?>" ><!--
											--><span class="glyphicon glyphicon-plus"></span></a>
										</div>
									</td>
									</tr>

									<tr>
									<td colspan="2" class="list" height="12">&nbsp;</td>
									</tr>

									<tr>
									<td colspan="2" valign="top" class="listtopic">DNS</td>
									</tr>

									<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers");?></td>
									<td width="78%" class="vtable">
										<input name="radns1" type="text" class="formfld unknown" id="radns1" size="28" value="<?=htmlspecialchars($pconfig['radns1']);?>" /><br />
										<input name="radns2" type="text" class="formfld unknown" id="radns2" size="28" value="<?=htmlspecialchars($pconfig['radns2']);?>" /><br />
										<?=gettext("NOTE: leave blank to use the system default DNS servers - this interface's IP if DNS forwarder is enabled, otherwise the servers configured on the General page.");?>
									</td>
									</tr>

									<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Domain search list");?></td>
									<td width="78%" class="vtable">
										<input name="radomainsearchlist" type="text" class="formfld unknown" id="radomainsearchlist" size="28" value="<?=htmlspecialchars($pconfig['radomainsearchlist']);?>" /><br />
										<?=gettext("The RA server can optionally provide a domain search list. Use the semicolon character as separator");?>
									</td>
									</tr>

									<tr>
									<td width="22%" valign="top" class="vncell">&nbsp;</td>
									<td width="78%" class="vtable">
										<input id="rasamednsasdhcp6" name="rasamednsasdhcp6" type="checkbox" value="yes" <?php if ($pconfig['rasamednsasdhcp6']) { echo "checked='checked'"; } ?> />
										<strong><?= gettext("Use same settings as DHCPv6 server"); ?></strong>
									</td>
									</tr>

									<tr>
									<td width="22%" valign="top">&nbsp;</td>
									<td width="78%">
										<input name="if" type="hidden" value="<?=$if;?>" />
										<input name="Submit" type="submit" class="formbtn btn btn-primary" value="<?=gettext("Save");?>" />
									</td>
									</tr>
								</table>
							</div>
						</form>
					</div>
				</section>
			</div>
		</div>
	</section>


<script type="text/javascript">
//<![CDATA[
	jQuery(function ($) {
		var $rasamednsasdhcp6 = $("#rasamednsasdhcp6");
		var $triggered_checkboxes = $("#radns1, #radns2, #radomainsearchlist");
		if ($rasamednsasdhcp6.length !== 1) { return; }
		var onchange = function () {
			var checked = $rasamednsasdhcp6.is(":checked");
			if (checked) {
				$triggered_checkboxes.each(function () { this.disabled = true; });
			} else {
				$triggered_checkboxes.each(function () { this.disabled = false; });
			}
		};
		$rasamednsasdhcp6.bind("change", onchange);
		onchange();
	});

	var addressarray = <?= json_encode(get_alias_list("host", "network", "openvpn", "urltable")); ?>;
	var objAlias = [];
	function createAutoSuggest () {
		<?php for ($i = 0; $i < $counter; $i += 1) { ?>
			objAlias.push(new AutoSuggestControl(document.getElementById('subnet_address<?= $i ?>'), new StateSuggestions(addressarray)));
		<?php } ?>
		new AutoSuggestControl(document.getElementById('radns1'), new StateSuggestions(addressarray));
		new AutoSuggestControl(document.getElementById('radns2'), new StateSuggestions(addressarray));
	}
	setTimeout(createAutoSuggest, 500);
//]]>
</script>

<?php include("foot.inc"); ?>
</body>
</html>