firewall_nat_npt_edit.php 13.1 KB
Newer Older
1
<?php
Ad Schellevis's avatar
Ad Schellevis committed
2
/*
3
	Copyright (C) 2014 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5
	Copyright (C) 2011 Seth Mos <seth.mos@dds.nl>.
	All rights reserved.
6

Ad Schellevis's avatar
Ad Schellevis committed
7 8
	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:
9

Ad Schellevis's avatar
Ad Schellevis committed
10 11
	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.
12

Ad Schellevis's avatar
Ad Schellevis committed
13 14 15
	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.
16

Ad Schellevis's avatar
Ad Schellevis committed
17 18 19 20 21 22 23 24 25 26 27 28
	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.
*/

29 30
require_once("guiconfig.inc");
require_once("interfaces.inc");
31
require_once("pfsense-utils.inc");
32

Ad Schellevis's avatar
Ad Schellevis committed
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
function natnptcmp($a, $b) {
	return ipcmp($a['external'], $b['external']);
}

function nat_npt_rules_sort() {
        global $g, $config;

        if (!is_array($config['nat']['npt']))
                return;


        usort($config['nat']['npt'], "natnptcmp");
}

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

$ifdisp = get_configured_interface_with_descr();
foreach ($ifdisp as $kif => $kdescr) {
        $specialsrcdst[] = "{$kif}";
        $specialsrcdst[] = "{$kif}ip";
}

if (!is_array($config['nat']['npt'])) {
	$config['nat']['npt'] = array();
}
$a_npt = &$config['nat']['npt'];

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

if (isset($id) && $a_npt[$id]) {
	$pconfig['disabled'] = isset($a_npt[$id]['disabled']);

	address_to_pconfig($a_npt[$id]['source'], $pconfig['src'],
                $pconfig['srcmask'], $pconfig['srcnot'],
		$pconfig['srcbeginport'], $pconfig['srcendport']);

        address_to_pconfig($a_npt[$id]['destination'], $pconfig['dst'],
                $pconfig['dstmask'], $pconfig['dstnot'],
		$pconfig['dstbeginport'], $pconfig['dstendport']);

	$pconfig['interface'] = $a_npt[$id]['interface'];
	if (!$pconfig['interface'])
		$pconfig['interface'] = "wan";

	$pconfig['external'] = $a_npt[$id]['external'];
	$pconfig['descr'] = $a_npt[$id]['descr'];
} else
	$pconfig['interface'] = "wan";


if ($_POST) {
87

Ad Schellevis's avatar
Ad Schellevis committed
88 89 90 91 92 93 94 95 96 97
	unset($input_errors);
	$pconfig = $_POST;

	/* input validation */
	$reqdfields = explode(" ", "interface");
	$reqdfieldsn = array(gettext("Interface"));
        $reqdfields[] = "src";
        $reqdfieldsn[] = gettext("Source prefix");
        $reqdfields[] = "dst";
        $reqdfieldsn[] = gettext("Destination prefix");
98

Ad Schellevis's avatar
Ad Schellevis committed
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
	do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

	if (!$input_errors) {
		$natent = array();

		$natent['disabled'] = isset($_POST['disabled']) ? true:false;
		$natent['descr'] = $_POST['descr'];
		$natent['interface'] = $_POST['interface'];

	if ($_POST['src'])
		$_POST['src'] = trim($_POST['src']);
	if ($_POST['dst'])
		$_POST['dst'] = trim($_POST['dst']);

		pconfig_to_address($natent['source'], $_POST['src'],
                        $_POST['srcmask'], $_POST['srcnot']);

                pconfig_to_address($natent['destination'], $_POST['dst'],
                        $_POST['dstmask'], $_POST['dstnot']);

		if (isset($id) && $a_npt[$id])
			$a_npt[$id] = $natent;
		else
			$a_npt[] = $natent;
		nat_npt_rules_sort();

		if (write_config())
			mark_subsystem_dirty('natconf');

		header("Location: firewall_nat_npt.php");
		exit;
	}
}

$pgtitle = array(gettext("Firewall"),gettext("NAT"),gettext("NPt"),gettext("Edit"));
include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
138 139 140 141 142 143 144 145
<body>
	<?php include("fbegin.inc"); ?>
	<script type="text/javascript" src="/javascript/suggestions.js"></script>
	<script type="text/javascript" src="/javascript/autosuggest.js"></script>

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

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

			<div class="row">
148
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
149

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

				<div class="content-box">

                        <form action="firewall_nat_npt_edit.php" method="post" name="iform" id="iform">
					<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
156 157 158 159


									<tr>
										<td colspan="2" valign="top" class="listtopic"><?=gettext("Edit NAT NPt entry"); ?></td>
160
									</tr>
Ad Schellevis's avatar
Ad Schellevis committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
							<tr>
					                        <td width="22%" valign="top" class="vncellreq"><?=gettext("Disabled"); ?></td>
					                        <td width="78%" class="vtable">
					                                <input name="disabled" type="checkbox" id="disabled" value="yes" <?php if ($pconfig['disabled']) echo "checked=\"checked\""; ?> />
					                                <strong><?=gettext("Disable this rule"); ?></strong><br />
					                                <span class="vexpl"><?=gettext("Set this option to disable this rule without removing it from the list."); ?></span>
					                        </td>
							</tr>
							<tr>
								  <td width="22%" valign="top" class="vncellreq"><?=gettext("Interface"); ?></td>
								  <td width="78%" class="vtable">
									<select name="interface" class="formselect">
										<?php
										foreach ($ifdisp as $if => $ifdesc)
											if(have_ruleint_access($if))
												$interfaces[$if] = $ifdesc;
177

178
										if (isset($config['l2tp']['mode']) && $config['l2tp']['mode'] == "server")
Ad Schellevis's avatar
Ad Schellevis committed
179 180
											if(have_ruleint_access("l2tp"))
												$interfaces['l2tp'] = "L2TP VPN";
181

182
										if (isset($config['pptpd']['mode']) && $config['pptpd']['mode'] == "server")
Ad Schellevis's avatar
Ad Schellevis committed
183 184
											if(have_ruleint_access("pptp"))
												$interfaces['pptp'] = "PPTP VPN";
185

186
										if (isset($config['pppoe']['mode']) && $config['pppoe']['mode'] == "server")
Ad Schellevis's avatar
Ad Schellevis committed
187 188
											if(have_ruleint_access("pppoe"))
												$interfaces['pppoe'] = "PPPoE VPN";
189

Ad Schellevis's avatar
Ad Schellevis committed
190 191 192 193
										/* add ipsec interfaces */
										if (isset($config['ipsec']['enable']) || isset($config['ipsec']['mobileclients']['enable']))
											if(have_ruleint_access("enc0"))
												$interfaces["enc0"] = "IPsec";
194

Ad Schellevis's avatar
Ad Schellevis committed
195 196 197
										/* add openvpn/tun interfaces */
										if  ($config['openvpn']["openvpn-server"] || $config['openvpn']["openvpn-client"])
											$interfaces["openvpn"] = "OpenVPN";
198 199

										foreach ($interfaces as $iface => $ifacename):
Ad Schellevis's avatar
Ad Schellevis committed
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
										?>
										<option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected=\"selected\""; ?>>
										<?=htmlspecialchars($ifacename);?>
										</option>
										<?php endforeach; ?>
									</select><br />
								  <span class="vexpl"><?=gettext("Choose which interface this rule applies to"); ?>.<br />
								  <?=gettext("Hint: in most cases, you'll want to use WAN here"); ?>.</span></td>
							</tr>
							<tr>
					                        <td width="22%" valign="top" class="vncellreq"><?=gettext("Internal IPv6 Prefix"); ?></td>
					                        <td width="78%" class="vtable">
					                                <input name="srcnot" type="checkbox" id="srcnot" value="yes" <?php if ($pconfig['srcnot']) echo "checked=\"checked\""; ?> />
					                                <strong><?=gettext("not"); ?></strong>
					                                <br />
					                                <?=gettext("Use this option to invert the sense of the match."); ?>
					                                <br />
					                                <br />
					                                <table border="0" cellspacing="0" cellpadding="0" summary="internal">
					                                        <tr>
					                                                <td><?=gettext("Address:"); ?>&nbsp;&nbsp;</td>
					                                                <td>
222 223 224
													<table>
													<tr>
														<td width="348px">
225
							                                                        <input name="src" type="text" class="formfldalias" id="src" size="20" value="<?php if (!is_specialnet($pconfig['src'])) echo htmlspecialchars($pconfig['src']);?>" />
226 227 228
													</td>
													<td>
														<select name="srcmask" class="selectpicker" id="srcmask" data-width="auto">
229 230 231 232 233 234 235
																						<?php for ($i = 128; $i > 0; $i--): ?>
									                                                        <option value="<?=$i;?>" <?php if ($i == $pconfig['srcmask']) echo "selected=\"selected\""; ?>><?=$i;?></option>
																						<?php endfor; ?>
							                                                        </select>
							                                                    </td>
							                                                </tr>
							                                            </table>
Ad Schellevis's avatar
Ad Schellevis committed
236 237 238 239
					                                                </td>
					                                        </tr>
					                                </table>
								<br />
240 241
					                     <span class="vexpl"><?=gettext("Enter the internal (LAN) ULA IPv6 Prefix for the Network Prefix translation. The prefix size specified for the internal IPv6 prefix will be applied to the
					external prefix.");
Ad Schellevis's avatar
Ad Schellevis committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
					?></span>
								</td>
					                </tr>
							<tr>
					                        <td width="22%" valign="top" class="vncellreq"><?=gettext("Destination IPv6 Prefix"); ?></td>
					                        <td width="78%" class="vtable">
					                                <input name="dstnot" type="checkbox" id="dstnot" value="yes" <?php if ($pconfig['dstnot']) echo "checked=\"checked\""; ?> />
					                                <strong><?=gettext("not"); ?></strong>
					                                        <br />
					                                <?=gettext("Use this option to invert the sense of the match."); ?>
					                                        <br />
					                                        <br />
					                                <table border="0" cellspacing="0" cellpadding="0" summary="destination">
					                                        <tr>
					                                                <td><?=gettext("Address:"); ?>&nbsp;&nbsp;</td>
					                                                <td>
258 259 260 261 262 263 264
													<table>
														<tr>
															<td width="348px">
															<input name="dst" type="text" class="formfldalias" id="dst" size="20" value="<?php if (!is_specialnet($pconfig['dst'])) echo htmlspecialchars($pconfig['dst']);?>" />
														</td>
														<td>
															<select name="dstmask" class="selectpicker" id="dstmask" data-width="auto">
265 266 267 268 269
																						<?php
									                                                        for ($i = 128; $i > 0; $i--): ?>
							                                                                <option value="<?=$i;?>" <?php if ($i == $pconfig['dstmask']) echo "selected=\"selected\""; ?>><?=$i;?></option>
																						<?php endfor; ?>
								                                                        </select>
270 271
															</td>
													</tr>
272
					                                                        </table>
Ad Schellevis's avatar
Ad Schellevis committed
273 274 275 276 277 278 279
					                                                </td>
					                                        </tr>
					                                </table>
								<br />
					                     <span class="vexpl"><?=gettext("Enter the Global Unicast routable IPv6 prefix here"); ?><br /></span>
					                     </td>
					                </tr>
280
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
281
					                  <td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
282
					                  <td width="78%" class="vtable">
Ad Schellevis's avatar
Ad Schellevis committed
283 284 285 286
					                    <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>
287
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
288
					                  <td width="22%" valign="top">&nbsp;</td>
289
					                  <td width="78%">
Ad Schellevis's avatar
Ad Schellevis committed
290 291 292 293 294 295 296 297
					                    <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='<?=$referer;?>'" />
					                    <?php if (isset($id) && $a_npt[$id]): ?>
					                    <input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
					                    <?php endif; ?>
					                  </td>
					                </tr>
					              </table>
298
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
299 300 301 302 303
                        </form>
			    </section>
			</div>
		</div>
	</section>
304 305

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