load_balancer_virtual_server_edit.php 13 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
        Copyright (C) 2005-2008 Bill Marquette <bill.marquette@gmail.com>.
        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.
*/

30
require_once("guiconfig.inc");
31
require_once("services.inc");
32
require_once("vslb.inc");
33
require_once("interfaces.inc");
34

Ad Schellevis's avatar
Ad Schellevis committed
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

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

if (!is_array($config['load_balancer']['virtual_server'])) {
        $config['load_balancer']['virtual_server'] = array();
}
$a_vs = &$config['load_balancer']['virtual_server'];

if (is_numericint($_GET['id']))
	$id = $_GET['id'];
if (isset($_POST['id']) && is_numericint($_POST['id']))
	$id = $_POST['id'];

if (isset($id) && $a_vs[$id]) {
  $pconfig = $a_vs[$id];
} else {
  // Sane defaults
  $pconfig['mode'] = 'redirect';
}

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

	/* input validation */
  switch($pconfig['mode']) {
    case "redirect": {
62 63 64
	$reqdfields = explode(" ", "ipaddr name mode");
	$reqdfieldsn = array(gettext("IP Address"),gettext("Name"),gettext("Mode"));
	break;
Ad Schellevis's avatar
Ad Schellevis committed
65 66
    }
    case "relay": {
67 68
	$reqdfields = explode(" ", "ipaddr name mode relay_protocol");
	$reqdfieldsn = array(gettext("IP Address"),gettext("Name"),gettext("Relay Protocol"));
Ad Schellevis's avatar
Ad Schellevis committed
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
      break;
    }
  }

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

	for ($i=0; isset($config['load_balancer']['virtual_server'][$i]); $i++)
		if (($_POST['name'] == $config['load_balancer']['virtual_server'][$i]['name']) && ($i != $id))
			$input_errors[] = gettext("This virtual server name has already been used.  Virtual server names must be unique.");

	if (preg_match('/[ \/]/', $_POST['name']))
		$input_errors[] = gettext("You cannot use spaces or slashes in the 'name' field.");

	if ($_POST['port'] != "" && !is_portoralias($_POST['port']))
		$input_errors[] = gettext("The port must be an integer between 1 and 65535, a port alias, or left blank.");

	if (!is_ipaddroralias($_POST['ipaddr']) && !is_subnetv4($_POST['ipaddr']))
		$input_errors[] = sprintf(gettext("%s is not a valid IP address, IPv4 subnet, or alias."), $_POST['ipaddr']);
	else if (is_subnetv4($_POST['ipaddr']) && subnet_size($_POST['ipaddr']) > 64)
		$input_errors[] = sprintf(gettext("%s is a subnet containing more than 64 IP addresses."), $_POST['ipaddr']);

	if ((strtolower($_POST['relay_protocol']) == "dns") && !empty($_POST['sitedown']))
		$input_errors[] = gettext("You cannot select a Fall Back Pool when using the DNS relay protocol.");

	if (!$input_errors) {
		$vsent = array();
95 96

		if (isset($id) && $a_vs[$id]) {
Ad Schellevis's avatar
Ad Schellevis committed
97
			$vsent = $a_vs[$id];
98
		}
Ad Schellevis's avatar
Ad Schellevis committed
99

100 101 102 103 104 105 106 107
    $vsent['name'] = $_POST['name'];
    $vsent['descr'] = $_POST['descr'];
    $vsent['poolname'] = $_POST['poolname'];
    $vsent['port'] = $_POST['port'];
    $vsent['sitedown'] = $_POST['sitedown'];
    $vsent['ipaddr'] = $_POST['ipaddr'];
    $vsent['mode'] = $_POST['mode'];
    $vsent['relay_protocol'] = $_POST['relay_protocol'];
Ad Schellevis's avatar
Ad Schellevis committed
108 109 110 111 112 113 114 115 116 117

		if($_POST['sitedown'] == "")
			unset($vsent['sitedown']);

		if (isset($id) && $a_vs[$id]) {
			if ($a_vs[$id]['name'] != $_POST['name']) {
				/* Because the VS name changed, mark the old name for cleanup. */
				cleanup_lb_mark_anchor($a_vs[$id]['name']);
			}
			$a_vs[$id] = $vsent;
118
		} else {
Ad Schellevis's avatar
Ad Schellevis committed
119 120 121
			$a_vs[] = $vsent;
		}

122
		mark_subsystem_dirty('loadbalancer');
123
		write_config();
Ad Schellevis's avatar
Ad Schellevis committed
124 125 126 127 128
		header("Location: load_balancer_virtual_server.php");
		exit;
	}
}

129
$service_hook = 'relayd';
Ad Schellevis's avatar
Ad Schellevis committed
130 131 132 133 134

include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
135 136

<body>
Ad Schellevis's avatar
Ad Schellevis committed
137
<?php include("fbegin.inc"); ?>
138 139


Ad Schellevis's avatar
Ad Schellevis committed
140 141 142 143 144 145
	<script type="text/javascript" src="/javascript/autosuggest.js"></script>
	<script type="text/javascript" src="/javascript/suggestions.js"></script>

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

		<div class="container-fluid">
146 147 148

			<div class="row">

149
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
150

Ad Schellevis's avatar
Ad Schellevis committed
151
			    <section class="col-xs-12">
152 153 154 155 156 157 158

				<div class="content-box">

                        <form action="load_balancer_virtual_server_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
159 160 161 162
									<tr>
										<td colspan="3" valign="top" class="listtopic"><?=gettext("Edit Load Balancer - Virtual Server entry"); ?></td>
									</tr>
					                <tr align="left">
163
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Name"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
164
					                  <td width="78%" class="vtable" colspan="2">
165
					                    <input name="name" type="text" <?php if(isset($pconfig['name'])) echo "value=\"" . htmlspecialchars($pconfig['name']) . "\"";?> size="32" maxlength="32" />
Ad Schellevis's avatar
Ad Schellevis committed
166 167 168
					                  </td>
								</tr>
					                <tr align="left">
169
										<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
170
					                  <td width="78%" class="vtable" colspan="2">
171
					                    <input name="descr" type="text" <?php if(isset($pconfig['descr'])) echo "value=\"" . htmlspecialchars($pconfig['descr']) . "\"";?> size="64" />
Ad Schellevis's avatar
Ad Schellevis committed
172 173 174
					                  </td>
								</tr>
					                <tr align="left">
175
										<td width="22%" valign="top" class="vncellreq"><?=gettext("IP Address"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
176
					                  <td width="78%" class="vtable" colspan="2">
177
					                    <input class="formfldalias" id="ipaddr" name="ipaddr" type="text" <?php if(isset($pconfig['ipaddr'])) echo "value=\"" . htmlspecialchars($pconfig['ipaddr']) . "\"";?> size="39" maxlength="39" />
Ad Schellevis's avatar
Ad Schellevis committed
178 179 180 181 182 183 184 185 186 187 188
										<br /><?=gettext("This is normally the WAN IP address that you would like the server to listen on.  All connections to this IP and port will be forwarded to the pool cluster."); ?>
										<br /><?=gettext("You may also specify a host alias listed in Firewall -&gt; Aliases here."); ?>
										<script type="text/javascript">
										//<![CDATA[
											var host_aliases = <?= json_encode(get_alias_list(array("host", "network", "url", "urltable"))) ?>;
											var oTextbox1 = new AutoSuggestControl(document.getElementById("ipaddr"), new StateSuggestions(host_aliases));
										//]]>
										</script>
					                  </td>
								</tr>
					                <tr align="left">
189
										<td width="22%" valign="top" class="vncell"><?=gettext("Port"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
190
					                  <td width="78%" class="vtable" colspan="2">
191
					                    <input class="formfldalias" name="port" id="port" type="text" <?php if(isset($pconfig['port'])) echo "value=\"" . htmlspecialchars($pconfig['port']) . "\"";?> size="16" maxlength="16" />
Ad Schellevis's avatar
Ad Schellevis committed
192 193 194 195 196 197 198 199 200 201 202 203
										<br /><?=gettext("This is the port that the clients will connect to.  All connections to this port will be forwarded to the pool cluster."); ?>
										<br /><?=gettext("If left blank, listening ports from the pool will be used."); ?>
										<br /><?=gettext("You may also specify a port alias listed in Firewall -&gt; Aliases here."); ?>
										<script type="text/javascript">
										//<![CDATA[
											var port_aliases = <?= json_encode(get_alias_list(array("port", "url_ports", "urltable_ports"))) ?>;
											var oTextbox2 = new AutoSuggestControl(document.getElementById("port"), new StateSuggestions(port_aliases));
										//]]>
										</script>
					                  </td>
								</tr>
					                <tr align="left">
204
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Virtual Server Pool"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
										<td width="78%" class="vtable" colspan="2">
								<?php if(count($config['load_balancer']['lbpool']) == 0): ?>
									<b><?=gettext("NOTE:"); ?></b> <?=gettext("Please add a pool on the Pools tab to use this feature."); ?>
								<?php else: ?>
									<select id="poolname" name="poolname">
								<?php
									for ($i = 0; isset($config['load_balancer']['lbpool'][$i]); $i++) {
										$selected = "";
										if ( $config['load_balancer']['lbpool'][$i]['name'] == $pconfig['poolname'] )
											$selected = " selected=\"selected\"";
										echo "<option value=\"" . htmlspecialchars($config['load_balancer']['lbpool'][$i]['name']) . "\"{$selected}>{$config['load_balancer']['lbpool'][$i]['name']}</option>";
									}
								?>
									</select>
								<?php endif; ?>
									</td>
								</tr>
					                <tr align="left">
223
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Fall Back Pool"); ?></td>
Ad Schellevis's avatar
Ad Schellevis committed
224 225 226 227 228 229
										<td width="78%" class="vtable" colspan="2">
										<?php if(count($config['load_balancer']['lbpool']) == 0): ?>
											<b><?=gettext("NOTE:"); ?></b> <?=gettext("Please add a pool on the Pools tab to use this feature."); ?>
										<?php else: ?>
											<select id="sitedown" name="sitedown">
												<option value=""<?=htmlspecialchars($pconfig['sitedown']) == '' ? ' selected' : ''?>><?=gettext("none"); ?></option>
230 231 232 233 234
									<?php
										for ($i = 0; isset($config['load_balancer']['lbpool'][$i]); $i++) {
											$selected = "";
											if ( $config['load_balancer']['lbpool'][$i]['name'] == $pconfig['sitedown'] )
												$selected = " selected=\"selected\"";
Ad Schellevis's avatar
Ad Schellevis committed
235
											echo "<option value=\"" . htmlspecialchars($config['load_balancer']['lbpool'][$i]['name']) . "\"{$selected}>{$config['load_balancer']['lbpool'][$i]['name']}</option>";
236 237 238
										}
									?>
									</select>
Ad Schellevis's avatar
Ad Schellevis committed
239 240 241 242 243 244 245 246
									<br /><?=gettext("The server pool to which clients will be redirected if *ALL* servers in the Virtual Server Pool are offline."); ?>
									<br /><?=gettext("This option is NOT compatible with the DNS relay protocol."); ?>
									  <?php endif; ?>
					                  </td>
									</tr>
									<tr style="display:none;"><td><input type="hidden" name="mode" value="redirect_mode" /></td></tr>
					<!--
					                <tr align="left">
247
										<td width="22%" valign="top" class="vncellreq">Mode</td>
Ad Schellevis's avatar
Ad Schellevis committed
248 249 250
					                  <td width="78%" class="vtable" colspan="2">
					                    <input id="redirect_mode" type="radio" name="mode" value="redirect"<?=htmlspecialchars($pconfig['mode']) == 'redirect' ? ' checked="checked"': ''?> /> Redirect
					                    <input id="relay_mode" type="radio" name="mode" value="relay"<?=htmlspecialchars($pconfig['mode']) == 'relay' ? ' checked="checked"': ''?> /> Relay
251

Ad Schellevis's avatar
Ad Schellevis committed
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
					                  <br />
					                  </td>
									</tr>
					-->
							<tr id="relay" align="left">
								<td width="22%" valign="top" class="vncellreq"><?=gettext("Relay Protocol"); ?></td>
								<td width="78%" class="vtable" colspan="2">
								<select id="relay_protocol" name="relay_protocol">
								<?php
									$lb_def_protos = array("tcp", "dns");
									foreach ($lb_def_protos as $lb_proto) {
										$selected = "";
										if ( $pconfig['relay_protocol'] == $lb_proto )
											$selected = " selected=\"selected\"";
										echo "<option value=\"{$lb_proto}\"{$selected}>{$lb_proto}</option>";
									}
								?>
								</select>
								<br />
								</td>
							</tr>
					                <tr align="left">
					                  <td width="22%" valign="top">&nbsp;</td>
					                  <td align="left" valign="bottom" width="78%">
										<input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Submit"); ?>" />
										<input type="button" class="btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='<?=$referer;?>'" />
								<?php if (isset($id) && $a_vs[$id] && $_GET['act'] != 'dup'): ?>
									<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
								<?php endif; ?>
281
								</td>
Ad Schellevis's avatar
Ad Schellevis committed
282 283
								</tr>
							</table>
284 285 286
				</div>
				<span class="red"><strong><?=gettext("Note:"); ?></strong></span> <?=gettext("Don't forget to add a firewall rule for the virtual server/pool after you're finished setting it up."); ?>

Ad Schellevis's avatar
Ad Schellevis committed
287
                        </form>
288
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
289 290 291 292 293
			    </section>
			</div>
		</div>
	</section>

294 295

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