summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_gateways_edit.php
blob: fd76a3de151a81dc813be95e2e2f66f122a320e3 (plain)
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
<?php 
/* $Id$ */
/*
	system_gateways_edit.php
	part of pfSense (http://pfsense.com)
	
	Copyright (C) 2007 Seth Mos <seth.mos@xs4all.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.
*/
/*
	pfSense_MODULE:	routing
*/

##|+PRIV
##|*IDENT=page-system-gateways-editgateway
##|*NAME=System: Gateways: Edit Gateway page
##|*DESCR=Allow access to the 'System: Gateways: Edit Gateway' page.
##|*MATCH=system_gateways_edit.php*
##|-PRIV

require("guiconfig.inc");
require("pkg-utils.inc");

$a_gateways = return_gateways_array();
$a_gateways_arr = array();
foreach($a_gateways as $gw) {
	$a_gateways_arr[] = $gw;
}
$a_gateways = $a_gateways_arr;

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

if (isset($_GET['dup'])) {
	$id = $_GET['dup'];
}

if (isset($id) && $a_gateways[$id]) {
	$pconfig['name'] = $a_gateways[$id]['name'];
	$pconfig['interface'] = $a_gateways[$id]['interface'];
	$pconfig['gateway'] = $a_gateways[$id]['gateway'];
	$pconfig['defaultgw'] = $a_gateways[$id]['defaultgw'];
	$pconfig['monitor'] = $a_gateways[$id]['monitor'];
	$pconfig['descr'] = $a_gateways[$id]['descr'];
	$pconfig['attribute'] = $a_gateways[$id]['attribute'];
}

if (isset($_GET['dup'])) {
	unset($id);
	unset($pconfig['attribute']);
}

if ($_POST) {

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

	/* input validation */
	$reqdfields = explode(" ", "interface name gateway");
	$reqdfieldsn = explode(",", "Interface,Name,Gateway");		
	
	do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
	
	if (! isset($_POST['name'])) {
		$input_errors[] = "A valid gateway name must be specified.";
	}
	if (! is_validaliasname($_POST['name'])) {
		$input_errors[] = "The gateway name must not contain invalid characters.";
	}
	/* skip system gateways which have been automatically added */
	if ($_POST['gateway'] && (!is_ipaddr($_POST['gateway'])) && ($pconfig['attribute'] != "system")) {
		$input_errors[] = "A valid gateway IP address must be specified.";
	}
	if ($_POST['gateway'] && (is_ipaddr($_POST['gateway'])) && ($pconfig['attribute'] != "system")) {
		if(! ip_in_subnet($_POST['gateway'], get_interface_subnet($interface))) {
			$input_errors[] = "The Address {$_POST['gateway']} does not lie in the interface subnet";                
		}
	}
	if ((($_POST['monitor'] <> "") && !is_ipaddr($_POST['monitor']))) {
		$input_errors[] = "A valid monitor IP address must be specified.";
	}

	if (isset($_POST['name'])) {
		/* check for overlaps */
		foreach ($a_gateways as $gateway) {
			if (isset($id) && ($a_gateways[$id]) && ($a_gateways[$id] === $gateway))
				continue;

			if (($gateway['name'] <> "") && (in_array($_POST['name'], $gateway))) {
				$input_errors[] = "The name \"{$_POST['name']}\" already exists.";
				break;
			}
			if (($gateway['gateway'] <> "") && (in_array($_POST['gateway'], $gateway))) {
				$input_errors[] = "The IP address \"{$_POST['gateway']}\" already exists.";
				break;
			}
			if (($gateway['monitor'] <> "") && (in_array($_POST['monitor'], $gateway))) {
				$input_errors[] = "The IP address \"{$_POST['monitor']}\" already exists.";
				break;
			}
		}
	}

	if (!$input_errors) {
		/* if we are processing a system gateway only save the monitorip */
		if($pconfig['attribute'] == "system") {
			$config['interfaces'][$_POST['interface']]['monitorip'] = $_POST['monitor'];
		}

		/* Manual gateways are handled differently */
		/* rebuild the array with the manual entries only */
		if (!is_array($config['gateways']['gateway_item']))
			$config['gateways']['gateway_item'] = array();

		$a_gateways = &$config['gateways']['gateway_item'];

		if ($pconfig['attribute'] != "system") {
			$gateway = array();
			$gateway['interface'] = $_POST['interface'];
			$gateway['name'] = $_POST['name'];
			$gateway['gateway'] = $_POST['gateway'];
			$gateway['descr'] = $_POST['descr'];
			$gateway['monitor'] = $_POST['monitor'];
			
			if ($_POST['defaultgw'] == "yes" or $_POST['defaultgw'] == "on") {
				$i = 0;
				foreach($a_gateways as $gw) {
					unset($config['gateways'][$i]['defaultgw']);
					$i++;
				}
				$gateway['defaultgw'] = true;
			} else {
				unset($gateway['defaultgw']);
			}

			/* when saving the manual gateway we use the attribute which has the corresponding id */
			$id = $pconfig['attribute'];
			if (isset($id) && $a_gateways[$id]) {
				$a_gateways[$id] = $gateway;
			} else {
				$a_gateways[] = $gateway;
			}
		}
		
		mark_subsystem_dirty('staticroutes');
		
		write_config();
		
		if($_REQUEST['isAjax']) {
			echo $_POST['name'];
			exit;
		}
		
		header("Location: system_gateways.php");
		exit;
	}
}

$pgtitle = array("System","Gateways","Edit gateway");
include("head.inc");

?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php include("fbegin.inc"); ?>
<?php if ($input_errors) print_input_errors($input_errors); ?>
            <form action="system_gateways_edit.php" method="post" name="iform" id="iform">
	<?php
	/* If this is a automatically added system gateway we need this var */
	if(($pconfig['attribute'] == "system") || is_numeric($pconfig['attribute'])) {
		echo "<input type='hidden' name='attribute' id='attribute' value='{$pconfig['attribute']}' >\n";
	}
	?>
              <table width="100%" border="0" cellpadding="6" cellspacing="0">
				<tr>
					<td colspan="2" valign="top" class="listtopic">Edit gateway</td>
				</tr>	
                <tr> 
                  <td width="22%" valign="top" class="vncellreq">Interface</td>
                  <td width="78%" class="vtable">
				  <select name="interface" class="formselect">
                      <?php $interfaces = get_configured_interface_with_descr(false, true);
					  foreach ($interfaces as $iface => $ifacename): ?>
                      <option value="<?=$iface;?>" <?php if (get_real_interface($iface) == $pconfig['interface']) echo " selected"; ?>> 
                      <?=htmlspecialchars($ifacename);?>
                      </option>
					iface = <?=$iface?> ;  pconfig = <?=$pconfig['interface']?>  ;  ifacename = <?=$ifacename?>
                      <?php 
						endforeach;
						if (is_package_installed("openbgpd") == 1) {
							echo "<option value=\"bgpd\"";
							if($pconfig['interface'] == "bgpd") 
								echo " selected";
							echo ">Use BGPD</option>";
						}
 					  ?>
                    </select> <br>
                    <span class="vexpl">Choose which interface this gateway applies to.</span></td>
                </tr>
                <tr>
                  <td width="22%" valign="top" class="vncellreq">Name</td>
                  <td width="78%" class="vtable"> 
                    <input name="name" type="text" class="formfld unknown" id="name" size="20" value="<?=htmlspecialchars($pconfig['name']);?>"> 
                    <br> <span class="vexpl">Gateway name</span></td>
                </tr>
		<tr>
                  <td width="22%" valign="top" class="vncellreq">Gateway</td>
                  <td width="78%" class="vtable"> 
                    <input name="gateway" type="text" class="formfld host" id="gateway" size="40" value="<?=htmlspecialchars($pconfig['gateway']);?>">
                    <br> <span class="vexpl">Gateway IP address</span></td>
                </tr>
		<tr>
		  <td width="22%" valign="top" class="vncell">Default Gateway</td>
		  <td width="78%" class="vtable">
			<input name="defaultgw" type="checkbox" id="defaultgw" value="yes" <?php if (isset($pconfig['defaultgw'])) echo "checked"; ?> onclick="enable_change(false)" />
			<strong>Default Gateway</strong><br />
			This will select the above gateway as the default gateway
		  </td>
		</tr>
		<tr>
		  <td width="22%" valign="top" class="vncell">Monitor IP</td>
		  <td width="78%" class="vtable">
			<input name="monitor" type="text" id="monitor" value="<?php echo ($pconfig['monitor']) ; ?>" />
			<strong>Alternative monitor IP</strong> <br />
			Enter a alternative address here to be used to monitor the link. This is used for the
			quality RRD graphs as well as the load balancer entries. Use this if the gateway does not respond
			to icmp requests.</strong>
			<br />
		  </td>
		</tr>
		<tr>
                  <td width="22%" valign="top" class="vncell">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">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 name="Submit" type="submit" class="formbtn" value="Save"> <input type="button" value="Cancel" class="formbtn"  onclick="history.back()">
                    <?php if (isset($id) && $a_gateways[$id]): ?>
                    <input name="id" type="hidden" value="<?=$id;?>">
                    <?php endif; ?>
                  </td>
                </tr>
              </table>
</form>
<?php include("fend.inc"); ?>
<script language="JavaScript">
	enable_change();
</script>
</body>
</html>
OpenPOWER on IntegriCloud