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-2020 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
|
function delete_static_route($id) {
|
70
|
global $config, $a_routes, $changedesc_prefix, $a_gateways;
|
71
|
|
72
|
if (!isset($a_routes[$id])) {
|
73
|
return;
|
74
|
}
|
75
|
|
76
|
$targets = array();
|
77
|
if (is_alias($a_routes[$id]['network'])) {
|
78
|
foreach (filter_expand_alias_array($a_routes[$id]['network']) as
|
79
|
$tgt) {
|
80
|
if (is_ipaddrv4($tgt)) {
|
81
|
$tgt .= "/32";
|
82
|
} else if (is_ipaddrv6($tgt)) {
|
83
|
$tgt .= "/128";
|
84
|
}
|
85
|
if (!is_subnet($tgt)) {
|
86
|
continue;
|
87
|
}
|
88
|
$targets[] = $tgt;
|
89
|
}
|
90
|
} else {
|
91
|
$targets[] = $a_routes[$id]['network'];
|
92
|
}
|
93
|
|
94
|
foreach ($targets as $tgt) {
|
95
|
route_del($tgt);
|
96
|
}
|
97
|
|
98
|
unset($targets);
|
99
|
}
|
100
|
|
101
|
if ($_POST['act'] == "del") {
|
102
|
if ($a_routes[$_POST['id']]) {
|
103
|
$changedesc = $changedesc_prefix . sprintf(gettext("removed route to %s"), $a_routes[$_POST['id']]['network']);
|
104
|
delete_static_route($_POST['id']);
|
105
|
unset($a_routes[$_POST['id']]);
|
106
|
write_config($changedesc);
|
107
|
header("Location: system_routes.php");
|
108
|
exit;
|
109
|
}
|
110
|
}
|
111
|
|
112
|
if (isset($_POST['del_x'])) {
|
113
|
/* delete selected routes */
|
114
|
if (is_array($_POST['route']) && count($_POST['route'])) {
|
115
|
$deleted_routes = "";
|
116
|
foreach ($_POST['route'] as $routei) {
|
117
|
$deleted_routes .= " " . $a_routes[$routei]['network'];
|
118
|
delete_static_route($routei);
|
119
|
unset($a_routes[$routei]);
|
120
|
}
|
121
|
$changedesc = $changedesc_prefix . sprintf(gettext("removed route to%s"), $deleted_routes);
|
122
|
write_config($changedesc);
|
123
|
header("Location: system_routes.php");
|
124
|
exit;
|
125
|
}
|
126
|
|
127
|
}
|
128
|
|
129
|
if ($_POST['act'] == "toggle") {
|
130
|
if ($a_routes[$_POST['id']]) {
|
131
|
$do_update_config = true;
|
132
|
if (isset($a_routes[$_POST['id']]['disabled'])) {
|
133
|
// Do not enable a route whose gateway is disabled
|
134
|
if (isset($a_gateways[$a_routes[$_POST['id']]['gateway']]['disabled'])) {
|
135
|
$do_update_config = false;
|
136
|
$input_errors[] = $changedesc_prefix . sprintf(gettext("gateway is disabled, cannot enable route to %s"), $a_routes[$_POST['id']]['network']);
|
137
|
} else {
|
138
|
unset($a_routes[$_POST['id']]['disabled']);
|
139
|
$changedesc = $changedesc_prefix . sprintf(gettext("enabled route to %s"), $a_routes[$_POST['id']]['network']);
|
140
|
}
|
141
|
} else {
|
142
|
delete_static_route($_POST['id']);
|
143
|
$a_routes[$_POST['id']]['disabled'] = true;
|
144
|
$changedesc = $changedesc_prefix . sprintf(gettext("disabled route to %s"), $a_routes[$_POST['id']]['network']);
|
145
|
}
|
146
|
|
147
|
if ($do_update_config) {
|
148
|
if (write_config($changedesc)) {
|
149
|
mark_subsystem_dirty('staticroutes');
|
150
|
}
|
151
|
header("Location: system_routes.php");
|
152
|
exit;
|
153
|
}
|
154
|
}
|
155
|
}
|
156
|
|
157
|
if($_POST['save']) {
|
158
|
/* yuck - IE won't send value attributes for image buttons, while Mozilla does - so we use .x/.y to find move button clicks instead... */
|
159
|
unset($movebtn);
|
160
|
foreach ($_POST as $pn => $pd) {
|
161
|
if (preg_match("/move_(\d+)_x/", $pn, $matches)) {
|
162
|
$movebtn = $matches[1];
|
163
|
break;
|
164
|
}
|
165
|
}
|
166
|
/* move selected routes before this route */
|
167
|
if (isset($movebtn) && is_array($_POST['route']) && count($_POST['route'])) {
|
168
|
$a_routes_new = array();
|
169
|
|
170
|
/* copy all routes < $movebtn and not selected */
|
171
|
for ($i = 0; $i < $movebtn; $i++) {
|
172
|
if (!in_array($i, $_POST['route'])) {
|
173
|
$a_routes_new[] = $a_routes[$i];
|
174
|
}
|
175
|
}
|
176
|
|
177
|
/* copy all selected routes */
|
178
|
for ($i = 0; $i < count($a_routes); $i++) {
|
179
|
if ($i == $movebtn) {
|
180
|
continue;
|
181
|
}
|
182
|
if (in_array($i, $_POST['route'])) {
|
183
|
$a_routes_new[] = $a_routes[$i];
|
184
|
}
|
185
|
}
|
186
|
|
187
|
/* copy $movebtn route */
|
188
|
if ($movebtn < count($a_routes)) {
|
189
|
$a_routes_new[] = $a_routes[$movebtn];
|
190
|
}
|
191
|
|
192
|
/* copy all routes > $movebtn and not selected */
|
193
|
for ($i = $movebtn+1; $i < count($a_routes); $i++) {
|
194
|
if (!in_array($i, $_POST['route'])) {
|
195
|
$a_routes_new[] = $a_routes[$i];
|
196
|
}
|
197
|
}
|
198
|
if (count($a_routes_new) > 0) {
|
199
|
$a_routes = $a_routes_new;
|
200
|
}
|
201
|
|
202
|
if (write_config(gettext("Saved static routes configuration."))) {
|
203
|
mark_subsystem_dirty('staticroutes');
|
204
|
}
|
205
|
header("Location: system_routes.php");
|
206
|
exit;
|
207
|
}
|
208
|
}
|
209
|
|
210
|
$pgtitle = array(gettext("System"), gettext("Routing"), gettext("Static Routes"));
|
211
|
$pglinks = array("", "system_gateways.php", "@self");
|
212
|
$shortcut_section = "routing";
|
213
|
|
214
|
include("head.inc");
|
215
|
|
216
|
if ($input_errors) {
|
217
|
print_input_errors($input_errors);
|
218
|
}
|
219
|
if ($_POST['apply']) {
|
220
|
print_apply_result_box($retval);
|
221
|
}
|
222
|
if (is_subsystem_dirty('staticroutes')) {
|
223
|
print_apply_box(gettext("The static route configuration has been changed.") . "<br />" . gettext("The changes must be applied for them to take effect."));
|
224
|
}
|
225
|
|
226
|
$tab_array = array();
|
227
|
$tab_array[0] = array(gettext("Gateways"), false, "system_gateways.php");
|
228
|
$tab_array[1] = array(gettext("Static Routes"), true, "system_routes.php");
|
229
|
$tab_array[2] = array(gettext("Gateway Groups"), false, "system_gateway_groups.php");
|
230
|
display_top_tabs($tab_array);
|
231
|
|
232
|
?>
|
233
|
<div class="panel panel-default">
|
234
|
<div class="panel-heading"><h2 class="panel-title"><?=gettext('Static Routes')?></h2></div>
|
235
|
<div class="panel-body">
|
236
|
<div class="table-responsive">
|
237
|
<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
|
238
|
<thead>
|
239
|
<tr>
|
240
|
<th></th>
|
241
|
<th><?=gettext("Network")?></th>
|
242
|
<th><?=gettext("Gateway")?></th>
|
243
|
<th><?=gettext("Interface")?></th>
|
244
|
<th><?=gettext("Description")?></th>
|
245
|
<th><?=gettext("Actions")?></th>
|
246
|
</tr>
|
247
|
</thead>
|
248
|
<tbody>
|
249
|
<?php
|
250
|
foreach ($a_routes as $i => $route):
|
251
|
if (isset($a_gateways[$route['gateway']]['inactive'])) {
|
252
|
$icon = 'fa-times-circle-o';
|
253
|
$title = gettext("Route inactive, gateway interface is missing");
|
254
|
} elseif (isset($route['disabled'])) {
|
255
|
$icon = 'fa-ban';
|
256
|
$title = gettext("Route disabled");
|
257
|
} else {
|
258
|
$icon = 'fa-check-circle-o';
|
259
|
$title = gettext("Route enabled");
|
260
|
}
|
261
|
?>
|
262
|
<tr<?=($icon != 'fa-check-circle-o')? ' class="disabled"' : ''?>>
|
263
|
<td title="<?=$title?>"><i class="fa <?=$icon?>"></i></td>
|
264
|
<td>
|
265
|
<?=strtolower($route['network'])?>
|
266
|
</td>
|
267
|
<td>
|
268
|
<?=htmlentities($a_gateways[$route['gateway']]['name']) . " - " . htmlentities($a_gateways[$route['gateway']]['gateway'])?>
|
269
|
</td>
|
270
|
<td>
|
271
|
<?=convert_friendly_interface_to_friendly_descr($a_gateways[$route['gateway']]['friendlyiface'])?>
|
272
|
</td>
|
273
|
<td>
|
274
|
<?=htmlspecialchars($route['descr'])?>
|
275
|
</td>
|
276
|
<td>
|
277
|
<a href="system_routes_edit.php?id=<?=$i?>" class="fa fa-pencil" title="<?=gettext('Edit route')?>"></a>
|
278
|
|
279
|
<a href="system_routes_edit.php?dup=<?=$i?>" class="fa fa-clone" title="<?=gettext('Copy route')?>"></a>
|
280
|
|
281
|
<?php if (isset($route['disabled'])) {
|
282
|
?>
|
283
|
<a href="?act=toggle&id=<?=$i?>" class="fa fa-check-square-o" title="<?=gettext('Enable route')?>" usepost></a>
|
284
|
<?php } else {
|
285
|
?>
|
286
|
<a href="?act=toggle&id=<?=$i?>" class="fa fa-ban" title="<?=gettext('Disable route')?>" usepost></a>
|
287
|
<?php }
|
288
|
?>
|
289
|
<a href="system_routes.php?act=del&id=<?=$i?>" class="fa fa-trash" title="<?=gettext('Delete route')?>" usepost></a>
|
290
|
|
291
|
</td>
|
292
|
</tr>
|
293
|
<?php endforeach; ?>
|
294
|
</table>
|
295
|
</div>
|
296
|
</div>
|
297
|
</div>
|
298
|
|
299
|
<nav class="action-buttons">
|
300
|
<a href="system_routes_edit.php" role="button" class="btn btn-success btn-sm">
|
301
|
<i class="fa fa-plus icon-embed-btn"></i>
|
302
|
<?=gettext("Add")?>
|
303
|
</a>
|
304
|
</nav>
|
305
|
<div class="infoblock">
|
306
|
<?php
|
307
|
print_info_box(
|
308
|
sprintf(gettext('%1$s Route is inactive, gateway interface is missing'), '<br /><strong><i class="fa fa-times-circle-o"></i></strong>') .
|
309
|
sprintf(gettext('%1$s Route disabled'), '<br /><strong><i class="fa fa-ban"></i></strong>') .
|
310
|
sprintf(gettext('%1$s Route enabled'), '<br /><strong><i class="fa fa-check-circle-o"></i></strong>')
|
311
|
);
|
312
|
?>
|
313
|
</div>
|
314
|
<?php
|
315
|
|
316
|
include("foot.inc");
|