Project

General

Profile

Download (8.79 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
 * system_routes.php
4
 *
5
 * part of pfSense (https://www.pfsense.org)
6
 * Copyright (c) 2004-2013 BSD Perimeter
7
 * Copyright (c) 2013-2016 Electric Sheep Fencing
8
 * Copyright (c) 2014-2022 Rubicon Communications, LLC (Netgate)
9
 * All rights reserved.
10
 *
11
 * originally based on m0n0wall (http://m0n0.ch/wall)
12
 * Copyright (c) 2003-2004 Manuel Kasper <mk@neon1.net>.
13
 * All rights reserved.
14
 *
15
 * Licensed under the Apache License, Version 2.0 (the "License");
16
 * you may not use this file except in compliance with the License.
17
 * You may obtain a copy of the License at
18
 *
19
 * http://www.apache.org/licenses/LICENSE-2.0
20
 *
21
 * Unless required by applicable law or agreed to in writing, software
22
 * distributed under the License is distributed on an "AS IS" BASIS,
23
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24
 * See the License for the specific language governing permissions and
25
 * limitations under the License.
26
 */
27

    
28
##|+PRIV
29
##|*IDENT=page-system-staticroutes
30
##|*NAME=System: Static Routes
31
##|*DESCR=Allow access to the 'System: Static Routes' page.
32
##|*MATCH=system_routes.php*
33
##|-PRIV
34

    
35
require_once("guiconfig.inc");
36
require_once("functions.inc");
37
require_once("filter.inc");
38
require_once("shaper.inc");
39

    
40
init_config_arr(array('staticroutes', 'route'));
41
$a_routes = &$config['staticroutes']['route'];
42
$a_gateways = return_gateways_array(true, true, true);
43
$changedesc_prefix = gettext("Static Routes") . ": ";
44
unset($input_errors);
45

    
46
if ($_POST['apply']) {
47
	$pconfig = $_POST;
48
	$retval = 0;
49

    
50
	if (file_exists("{$g['tmp_path']}/.system_routes.apply")) {
51
		$toapplylist = unserialize(file_get_contents("{$g['tmp_path']}/.system_routes.apply"));
52
		foreach ($toapplylist as $toapply) {
53
			mwexec("{$toapply}");
54
		}
55

    
56
		@unlink("{$g['tmp_path']}/.system_routes.apply");
57
	}
58

    
59
	$retval |= system_routing_configure();
60
	$retval |= filter_configure();
61
	/* reconfigure our gateway monitor */
62
	setup_gateways_monitor();
63

    
64
	if ($retval == 0) {
65
		clear_subsystem_dirty('staticroutes');
66
	}
67
}
68

    
69
if ($_POST['act'] == "del") {
70
	if ($a_routes[$_POST['id']]) {
71
		$changedesc = $changedesc_prefix . sprintf(gettext("removed route to %s"), $a_routes[$_POST['id']]['network']);
72
		delete_static_route($_POST['id'], true);
73
		unset($a_routes[$_POST['id']]);
74
		write_config($changedesc);
75
		mark_subsystem_dirty('staticroutes');
76
		header("Location: system_routes.php");
77
		exit;
78
	}
79
}
80

    
81
if (isset($_POST['del_x'])) {
82
	/* delete selected routes */
83
	if (is_array($_POST['route']) && count($_POST['route'])) {
84
		$deleted_routes = "";
85
		foreach ($_POST['route'] as $routei) {
86
			$deleted_routes .= " " . $a_routes[$routei]['network'];
87
			delete_static_route($routei, true);
88
			unset($a_routes[$routei]);
89
		}
90
		$changedesc = $changedesc_prefix . sprintf(gettext("removed route to%s"), $deleted_routes);
91
		write_config($changedesc);
92
		mark_subsystem_dirty('staticroutes');
93
		header("Location: system_routes.php");
94
		exit;
95
	}
96
}
97

    
98
if ($_POST['act'] == "toggle") {
99
	if ($a_routes[$_POST['id']]) {
100
		$do_update_config = true;
101
		if (isset($a_routes[$_POST['id']]['disabled'])) {
102
			// Do not enable a route whose gateway is disabled
103
			if (isset($a_gateways[$a_routes[$_POST['id']]['gateway']]['disabled'])) {
104
				$do_update_config = false;
105
				$input_errors[] = $changedesc_prefix . sprintf(gettext("gateway is disabled, cannot enable route to %s"), $a_routes[$_POST['id']]['network']);
106
			} else {
107
				unset($a_routes[$_POST['id']]['disabled']);
108
				$changedesc = $changedesc_prefix . sprintf(gettext("enabled route to %s"), $a_routes[$_POST['id']]['network']);
109
			}
110
		} else {
111
			delete_static_route($_POST['id']);
112
			$a_routes[$_POST['id']]['disabled'] = true;
113
			$changedesc = $changedesc_prefix . sprintf(gettext("disabled route to %s"), $a_routes[$_POST['id']]['network']);
114
		}
115

    
116
		if ($do_update_config) {
117
			if (write_config($changedesc)) {
118
				mark_subsystem_dirty('staticroutes');
119
			}
120
			header("Location: system_routes.php");
121
			exit;
122
		}
123
	}
124
}
125

    
126
if($_POST['save']) {
127
	/* yuck - IE won't send value attributes for image buttons, while Mozilla does - so we use .x/.y to find move button clicks instead... */
128
	unset($movebtn);
129
	foreach ($_POST as $pn => $pd) {
130
		if (preg_match("/move_(\d+)_x/", $pn, $matches)) {
131
			$movebtn = $matches[1];
132
			break;
133
		}
134
	}
135
	/* move selected routes before this route */
136
	if (isset($movebtn) && is_array($_POST['route']) && count($_POST['route'])) {
137
		$a_routes_new = array();
138

    
139
		/* copy all routes < $movebtn and not selected */
140
		for ($i = 0; $i < $movebtn; $i++) {
141
			if (!in_array($i, $_POST['route'])) {
142
				$a_routes_new[] = $a_routes[$i];
143
			}
144
		}
145

    
146
		/* copy all selected routes */
147
		for ($i = 0; $i < count($a_routes); $i++) {
148
			if ($i == $movebtn) {
149
				continue;
150
			}
151
			if (in_array($i, $_POST['route'])) {
152
				$a_routes_new[] = $a_routes[$i];
153
			}
154
		}
155

    
156
		/* copy $movebtn route */
157
		if ($movebtn < count($a_routes)) {
158
			$a_routes_new[] = $a_routes[$movebtn];
159
		}
160

    
161
		/* copy all routes > $movebtn and not selected */
162
		for ($i = $movebtn+1; $i < count($a_routes); $i++) {
163
			if (!in_array($i, $_POST['route'])) {
164
				$a_routes_new[] = $a_routes[$i];
165
			}
166
		}
167
		if (count($a_routes_new) > 0) {
168
			$a_routes = $a_routes_new;
169
		}
170

    
171
		if (write_config(gettext("Saved static routes configuration."))) {
172
			mark_subsystem_dirty('staticroutes');
173
		}
174
		header("Location: system_routes.php");
175
		exit;
176
	}
177
}
178

    
179
$pgtitle = array(gettext("System"), gettext("Routing"), gettext("Static Routes"));
180
$pglinks = array("", "system_gateways.php", "@self");
181
$shortcut_section = "routing";
182

    
183
include("head.inc");
184

    
185
if ($input_errors) {
186
	print_input_errors($input_errors);
187
}
188
if ($_POST['apply']) {
189
	print_apply_result_box($retval);
190
}
191
if (is_subsystem_dirty('staticroutes')) {
192
	print_apply_box(gettext("The static route configuration has been changed.") . "<br />" . gettext("The changes must be applied for them to take effect."));
193
}
194

    
195
$tab_array = array();
196
$tab_array[0] = array(gettext("Gateways"), false, "system_gateways.php");
197
$tab_array[1] = array(gettext("Static Routes"), true, "system_routes.php");
198
$tab_array[2] = array(gettext("Gateway Groups"), false, "system_gateway_groups.php");
199
display_top_tabs($tab_array);
200

    
201
?>
202
<div class="panel panel-default">
203
	<div class="panel-heading"><h2 class="panel-title"><?=gettext('Static Routes')?></h2></div>
204
	<div class="panel-body">
205
		<div class="table-responsive">
206
			<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
207
				<thead>
208
					<tr>
209
						<th></th>
210
						<th><?=gettext("Network")?></th>
211
						<th><?=gettext("Gateway")?></th>
212
						<th><?=gettext("Interface")?></th>
213
						<th><?=gettext("Description")?></th>
214
						<th><?=gettext("Actions")?></th>
215
					</tr>
216
				</thead>
217
				<tbody>
218
<?php
219
foreach ($a_routes as $i => $route):
220
	if (isset($a_gateways[$route['gateway']]['inactive'])) {
221
		$icon = 'fa-times-circle-o';
222
		$title = gettext("Route inactive, gateway interface is missing");
223
	} elseif (isset($route['disabled'])) {
224
		$icon = 'fa-ban';
225
		$title = gettext("Route disabled");
226
	} else {
227
		$icon = 'fa-check-circle-o';
228
		$title = gettext("Route enabled");
229
	}
230
?>
231
				<tr<?=($icon != 'fa-check-circle-o')? ' class="disabled"' : ''?>>
232
					<td title="<?=$title?>"><i class="fa <?=$icon?>"></i></td>
233
					<td>
234
						<?=strtolower($route['network'])?>
235
					</td>
236
					<td>
237
						<?=htmlentities($a_gateways[$route['gateway']]['name']) . " - " . htmlentities($a_gateways[$route['gateway']]['gateway'])?>
238
					</td>
239
					<td>
240
						<?=convert_friendly_interface_to_friendly_descr($a_gateways[$route['gateway']]['friendlyiface'])?>
241
					</td>
242
					<td>
243
						<?=htmlspecialchars($route['descr'])?>
244
					</td>
245
					<td>
246
						<a href="system_routes_edit.php?id=<?=$i?>" class="fa fa-pencil" title="<?=gettext('Edit route')?>"></a>
247

    
248
						<a href="system_routes_edit.php?dup=<?=$i?>" class="fa fa-clone" title="<?=gettext('Copy route')?>"></a>
249

    
250
				<?php if (isset($route['disabled'])) {
251
				?>
252
						<a href="?act=toggle&amp;id=<?=$i?>" class="fa fa-check-square-o" title="<?=gettext('Enable route')?>" usepost></a>
253
				<?php } else {
254
				?>
255
						<a href="?act=toggle&amp;id=<?=$i?>" class="fa fa-ban" title="<?=gettext('Disable route')?>" usepost></a>
256
				<?php }
257
				?>
258
						<a href="system_routes.php?act=del&amp;id=<?=$i?>" class="fa fa-trash" title="<?=gettext('Delete route')?>" usepost></a>
259

    
260
					</td>
261
				</tr>
262
<?php endforeach; ?>
263
			</table>
264
		</div>
265
	</div>
266
</div>
267

    
268
<nav class="action-buttons">
269
	<a href="system_routes_edit.php" role="button" class="btn btn-success btn-sm">
270
		<i class="fa fa-plus icon-embed-btn"></i>
271
		<?=gettext("Add")?>
272
	</a>
273
</nav>
274
<div class="infoblock">
275
<?php
276
print_info_box(
277
	sprintf(gettext('%1$s Route is inactive, gateway interface is missing'), '<br /><strong><i class="fa fa-times-circle-o"></i></strong>') .
278
	sprintf(gettext('%1$s Route disabled'), '<br /><strong><i class="fa fa-ban"></i></strong>') .
279
	sprintf(gettext('%1$s Route enabled'), '<br /><strong><i class="fa fa-check-circle-o"></i></strong>')
280
	);
281
?>
282
</div>
283
<?php
284

    
285
include("foot.inc");
(204-204/228)