Project

General

Profile

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

    
27
##|+PRIV
28
##|*IDENT=page-interfaces-assignnetworkports
29
##|*NAME=Interfaces: Interface Assignments
30
##|*DESCR=Allow access to the 'Interfaces: Interface Assignments' page.
31
##|*MATCH=interfaces_assign.php*
32
##|-PRIV
33

    
34
//$timealla = microtime(true);
35

    
36
$pgtitle = array(gettext("Interfaces"), gettext("Interface Assignments"));
37
$shortcut_section = "interfaces";
38

    
39
require_once("guiconfig.inc");
40
require_once("functions.inc");
41
require_once("filter.inc");
42
require_once("shaper.inc");
43
require_once("ipsec.inc");
44
require_once("vpn.inc");
45
require_once("captiveportal.inc");
46
require_once("rrd.inc");
47
require_once("interfaces_fast.inc");
48

    
49
global $friendlyifnames;
50

    
51
/*moved most gettext calls to here, we really don't want to be repeatedly calling gettext() within loops if it can be avoided.*/
52
$gettextArray = array('add'=>gettext('Add'),'addif'=>gettext('Add interface'),'delete'=>gettext('Delete'),'deleteif'=>gettext('Delete interface'),'edit'=>gettext('Edit'),'on'=>gettext('on'));
53

    
54
/*
55
	In this file, "port" refers to the physical port name,
56
	while "interface" refers to LAN, WAN, or OPTn.
57
*/
58

    
59
/* get list without VLAN interfaces */
60
$portlist = get_interface_list();
61

    
62
/*another *_fast function from interfaces_fast.inc. These functions are basically the same as the
63
ones they're named after, except they (usually) take an array and (always) return an array. This means that they only
64
need to be called once per script run, the returned array contains all the data necessary for repeated use */
65
$friendlyifnames = convert_real_interface_to_friendly_interface_name_fast();
66

    
67
/* add wireless clone interfaces */
68
if (is_array($config['wireless']['clone']) && count($config['wireless']['clone'])) {
69
	foreach ($config['wireless']['clone'] as $clone) {
70
		$portlist[$clone['cloneif']] = $clone;
71
		$portlist[$clone['cloneif']]['iswlclone'] = true;
72
	}
73
}
74

    
75
/* add VLAN interfaces */
76
if (is_array($config['vlans']['vlan']) && count($config['vlans']['vlan'])) {
77
	//$timea = microtime(true);
78
	foreach ($config['vlans']['vlan'] as $vlan) {
79
		$portlist[$vlan['vlanif']] = $vlan;
80
		$portlist[$vlan['vlanif']]['isvlan'] = true;
81
	}
82
}
83

    
84
/* add Bridge interfaces */
85
if (is_array($config['bridges']['bridged']) && count($config['bridges']['bridged'])) {
86
	foreach ($config['bridges']['bridged'] as $bridge) {
87
		$portlist[$bridge['bridgeif']] = $bridge;
88
		$portlist[$bridge['bridgeif']]['isbridge'] = true;
89
	}
90
}
91

    
92
/* add GIF interfaces */
93
if (is_array($config['gifs']['gif']) && count($config['gifs']['gif'])) {
94
	foreach ($config['gifs']['gif'] as $gif) {
95
		$portlist[$gif['gifif']] = $gif;
96
		$portlist[$gif['gifif']]['isgif'] = true;
97
	}
98
}
99

    
100
/* add GRE interfaces */
101
if (is_array($config['gres']['gre']) && count($config['gres']['gre'])) {
102
	foreach ($config['gres']['gre'] as $gre) {
103
		$portlist[$gre['greif']] = $gre;
104
		$portlist[$gre['greif']]['isgre'] = true;
105
	}
106
}
107

    
108
/* add LAGG interfaces */
109
if (is_array($config['laggs']['lagg']) && count($config['laggs']['lagg'])) {
110
	foreach ($config['laggs']['lagg'] as $lagg) {
111
		$portlist[$lagg['laggif']] = $lagg;
112
		$portlist[$lagg['laggif']]['islagg'] = true;
113
		/* LAGG members cannot be assigned */
114
		$lagifs = explode(',', $lagg['members']);
115
		foreach ($lagifs as $lagif) {
116
			if (isset($portlist[$lagif])) {
117
				unset($portlist[$lagif]);
118
			}
119
		}
120
	}
121
}
122

    
123
/* add QinQ interfaces */
124
if (is_array($config['qinqs']['qinqentry']) && count($config['qinqs']['qinqentry'])) {
125
	foreach ($config['qinqs']['qinqentry'] as $qinq) {
126
		$portlist["{$qinq['vlanif']}"]['descr'] = "VLAN {$qinq['tag']} on {$qinq['if']}";
127
		$portlist["{$qinq['vlanif']}"]['isqinq'] = true;
128
		/* QinQ members */
129
		$qinqifs = explode(' ', $qinq['members']);
130
		foreach ($qinqifs as $qinqif) {
131
			$portlist["{$qinq['vlanif']}_{$qinqif}"]['descr'] = "QinQ {$qinqif} on VLAN {$qinq['tag']} on {$qinq['if']}";
132
			$portlist["{$qinq['vlanif']}_{$qinqif}"]['isqinq'] = true;
133
		}
134
	}
135
}
136

    
137
/* add PPP interfaces */
138
if (is_array($config['ppps']['ppp']) && count($config['ppps']['ppp'])) {
139
	foreach ($config['ppps']['ppp'] as $pppid => $ppp) {
140
		$portname = $ppp['if'];
141
		$portlist[$portname] = $ppp;
142
		$portlist[$portname]['isppp'] = true;
143
		$ports_base = basename($ppp['ports']);
144
		if (isset($ppp['descr'])) {
145
			$portlist[$portname]['descr'] = strtoupper($ppp['if']). "({$ports_base}) - {$ppp['descr']}";
146
		} else if (isset($ppp['username'])) {
147
			$portlist[$portname]['descr'] = strtoupper($ppp['if']). "({$ports_base}) - {$ppp['username']}";
148
		} else {
149
			$portlist[$portname]['descr'] = strtoupper($ppp['if']). "({$ports_base})";
150
		}
151
	}
152
}
153

    
154
$ovpn_descrs = array();
155
if (is_array($config['openvpn'])) {
156
	if (is_array($config['openvpn']['openvpn-server'])) {
157
		foreach ($config['openvpn']['openvpn-server'] as $s) {
158
			$portname = "ovpns{$s['vpnid']}";
159
			$portlist[$portname] = $s;
160
			$ovpn_descrs[$s['vpnid']] = $s['description'];
161
		}
162
	}
163
	if (is_array($config['openvpn']['openvpn-client'])) {
164
		foreach ($config['openvpn']['openvpn-client'] as $c) {
165
			$portname = "ovpnc{$c['vpnid']}";
166
			$portlist[$portname] = $c;
167
			$ovpn_descrs[$c['vpnid']] = $c['description'];
168
		}
169
	}
170
}
171

    
172
global $ipsec_descrs;
173
$ipsec_descrs = interface_ipsec_vti_list_all();
174
foreach ($ipsec_descrs as $ifname => $ifdescr) {
175
	$portlist[$ifname] = array('descr' => $ifdescr);
176
}
177

    
178

    
179
$ifdescrs = interface_assign_description_fast($portlist,$friendlyifnames);
180

    
181
if (isset($_REQUEST['add']) && isset($_REQUEST['if_add'])) {
182
	/* Be sure this port is not being used */
183
	$portused = false;
184
	foreach ($config['interfaces'] as $ifname => $ifdata) {
185
		if ($ifdata['if'] == $_REQUEST['if_add']) {
186
			$portused = true;
187
			break;
188
		}
189
	}
190

    
191
	if ($portused === false) {
192
		/* find next free optional interface number */
193
		if (!$config['interfaces']['lan']) {
194
			$newifname = gettext("lan");
195
			$descr = gettext("LAN");
196
		} else {
197
			for ($i = 1; $i <= count($config['interfaces']); $i++) {
198
				if (!$config['interfaces']["opt{$i}"]) {
199
					break;
200
				}
201
			}
202
			$newifname = 'opt' . $i;
203
			$descr = "OPT" . $i;
204
		}
205

    
206
		$config['interfaces'][$newifname] = array();
207
		$config['interfaces'][$newifname]['descr'] = $descr;
208
		$config['interfaces'][$newifname]['if'] = $_POST['if_add'];
209
		if (preg_match($g['wireless_regex'], $_POST['if_add'])) {
210
			$config['interfaces'][$newifname]['wireless'] = array();
211
			interface_sync_wireless_clones($config['interfaces'][$newifname], false);
212
		}
213

    
214

    
215
		uksort($config['interfaces'], "compare_interface_friendly_names");
216

    
217
		/* XXX: Do not remove this. */
218
		unlink_if_exists("{$g['tmp_path']}/config.cache");
219

    
220
		write_config();
221

    
222
		$action_msg = gettext("Interface has been added.");
223
		$class = "success";
224
	}
225

    
226
} else if (isset($_POST['apply'])) {
227
	if (file_exists("/var/run/interface_mismatch_reboot_needed")) {
228
		system_reboot();
229
		$rebootingnow = true;
230
	} else {
231
		write_config();
232

    
233
		$changes_applied = true;
234
		$retval = 0;
235
		$retval |= filter_configure();
236
	}
237

    
238
} else if (isset($_POST['Submit'])) {
239

    
240
	unset($input_errors);
241

    
242
	/* input validation */
243

    
244
	/* Build a list of the port names so we can see how the interfaces map */
245
	$portifmap = array();
246
	foreach ($portlist as $portname => $portinfo) {
247
		$portifmap[$portname] = array();
248
	}
249

    
250
	/* Go through the list of ports selected by the user,
251
	build a list of port-to-interface mappings in portifmap */
252
	foreach ($_POST as $ifname => $ifport) {
253
		if (($ifname == 'lan') || ($ifname == 'wan') || (substr($ifname, 0, 3) == 'opt')) {
254
			$portifmap[$ifport][] = strtoupper($ifname);
255
		}
256
	}
257

    
258
	/* Deliver error message for any port with more than one assignment */
259
	foreach ($portifmap as $portname => $ifnames) {
260
		if (count($ifnames) > 1) {
261
			$errstr = sprintf(gettext('Port %1$s '.
262
				' was assigned to %2$s' .
263
				' interfaces:'), $portname, count($ifnames));
264

    
265
			foreach ($portifmap[$portname] as $ifn) {
266
				$errstr .= " " . convert_friendly_interface_to_friendly_descr(strtolower($ifn)) . " (" . $ifn . ")";
267
			}
268

    
269
			$input_errors[] = $errstr;
270
		} else if (count($ifnames) == 1 && preg_match('/^bridge[0-9]/', $portname) && is_array($config['bridges']['bridged']) && count($config['bridges']['bridged'])) {
271
			foreach ($config['bridges']['bridged'] as $bridge) {
272
				if ($bridge['bridgeif'] != $portname) {
273
					continue;
274
				}
275

    
276
				$members = explode(",", strtoupper($bridge['members']));
277
				foreach ($members as $member) {
278
					if ($member == $ifnames[0]) {
279
						$input_errors[] = sprintf(gettext('Cannot set port %1$s to interface %2$s because this interface is a member of %3$s.'), $portname, $member, $portname);
280
						break;
281
					}
282
				}
283
			}
284
		}
285
	}
286

    
287
	if (is_array($config['vlans']['vlan'])) {
288
		foreach ($config['vlans']['vlan'] as $vlan) {
289
			if (does_interface_exist($vlan['if']) == false) {
290
				$input_errors[] = sprintf(gettext('Vlan parent interface %1$s does not exist anymore so vlan id %2$s cannot be created please fix the issue before continuing.'), $vlan['if'], $vlan['tag']);
291
			}
292
		}
293
	}
294

    
295
	if (!$input_errors) {
296
		/* No errors detected, so update the config */
297
		foreach ($_POST as $ifname => $ifport) {
298

    
299
			if (($ifname == 'lan') || ($ifname == 'wan') || (substr($ifname, 0, 3) == 'opt')) {
300

    
301
				if (!is_array($ifport)) {
302
					$reloadif = false;
303
					if (!empty($config['interfaces'][$ifname]['if']) && $config['interfaces'][$ifname]['if'] <> $ifport) {
304
						interface_bring_down($ifname);
305
						/* Mark this to be reconfigured in any case. */
306
						$reloadif = true;
307
					}
308
					$config['interfaces'][$ifname]['if'] = $ifport;
309
					if (isset($portlist[$ifport]['isppp'])) {
310
						$config['interfaces'][$ifname]['ipaddr'] = $portlist[$ifport]['type'];
311
					}
312

    
313
					if (substr($ifport, 0, 3) == 'gre' || substr($ifport, 0, 3) == 'gif') {
314
						unset($config['interfaces'][$ifname]['ipaddr']);
315
						unset($config['interfaces'][$ifname]['subnet']);
316
						unset($config['interfaces'][$ifname]['ipaddrv6']);
317
						unset($config['interfaces'][$ifname]['subnetv6']);
318
					}
319

    
320
					/* check for wireless interfaces, set or clear ['wireless'] */
321
					if (preg_match($g['wireless_regex'], $ifport)) {
322
						if (!is_array($config['interfaces'][$ifname]['wireless'])) {
323
							$config['interfaces'][$ifname]['wireless'] = array();
324
						}
325
					} else {
326
						unset($config['interfaces'][$ifname]['wireless']);
327
					}
328

    
329
					/* make sure there is a descr for all interfaces */
330
					if (!isset($config['interfaces'][$ifname]['descr'])) {
331
						$config['interfaces'][$ifname]['descr'] = strtoupper($ifname);
332
					}
333

    
334
					if ($reloadif == true) {
335
						if (preg_match($g['wireless_regex'], $ifport)) {
336
							interface_sync_wireless_clones($config['interfaces'][$ifname], false);
337
						}
338
						/* Reload all for the interface. */
339
						interface_configure($ifname, true);
340
					}
341
				}
342
			}
343
		}
344
		write_config();
345

    
346
		enable_rrd_graphing();
347
	}
348
} else {
349
	unset($delbtn);
350
	if (!empty($_POST['del'])) {
351
		$delbtn = key($_POST['del']);
352
	}
353

    
354
	if (isset($delbtn)) {
355
		$id = $delbtn;
356

    
357
		if (link_interface_to_group($id)) {
358
			$input_errors[] = gettext("The interface is part of a group. Please remove it from the group to continue");
359
		} else if (link_interface_to_bridge($id)) {
360
			$input_errors[] = gettext("The interface is part of a bridge. Please remove it from the bridge to continue");
361
		} else if (link_interface_to_gre($id)) {
362
			$input_errors[] = gettext("The interface is part of a gre tunnel. Please delete the tunnel to continue");
363
		} else if (link_interface_to_gif($id)) {
364
			$input_errors[] = gettext("The interface is part of a gif tunnel. Please delete the tunnel to continue");
365
		} else if (interface_has_queue($id)) {
366
			$input_errors[] = gettext("The interface has a traffic shaper queue configured.\nPlease remove all queues on the interface to continue.");
367
		} else {
368
			unset($config['interfaces'][$id]['enable']);
369
			$realid = get_real_interface($id);
370
			interface_bring_down($id);   /* down the interface */
371

    
372
			unset($config['interfaces'][$id]);	/* delete the specified OPTn or LAN*/
373

    
374
			if (is_array($config['dhcpd']) && is_array($config['dhcpd'][$id])) {
375
				unset($config['dhcpd'][$id]);
376
				services_dhcpd_configure('inet');
377
			}
378

    
379
			if (is_array($config['dhcpdv6']) && is_array($config['dhcpdv6'][$id])) {
380
				unset($config['dhcpdv6'][$id]);
381
				services_dhcpd_configure('inet6');
382
			}
383

    
384
			if (count($config['filter']['rule']) > 0) {
385
				foreach ($config['filter']['rule'] as $x => $rule) {
386
					if ($rule['interface'] == $id) {
387
						unset($config['filter']['rule'][$x]);
388
					}
389
				}
390
			}
391
			if (is_array($config['nat']['rule']) && count($config['nat']['rule']) > 0) {
392
				foreach ($config['nat']['rule'] as $x => $rule) {
393
					if ($rule['interface'] == $id) {
394
						unset($config['nat']['rule'][$x]['interface']);
395
					}
396
				}
397
			}
398

    
399
			write_config();
400

    
401
			/* If we are in firewall/routing mode (not single interface)
402
			 * then ensure that we are not running DHCP on the wan which
403
			 * will make a lot of ISP's unhappy.
404
			 */
405
			if ($config['interfaces']['lan'] && $config['dhcpd']['wan']) {
406
				unset($config['dhcpd']['wan']);
407
			}
408

    
409
			link_interface_to_vlans($realid, "update");
410

    
411
			$action_msg = gettext("Interface has been deleted.");
412
			$class = "success";
413
		}
414
	}
415
}
416

    
417
/* Create a list of unused ports */
418
$unused_portlist = array();
419
$portArray = array_keys($portlist);
420

    
421
$ifaceArray = array_column($config['interfaces'],'if');
422
$unused = array_diff($portArray,$ifaceArray);
423
$unused = array_flip($unused);
424
$unused_portlist = array_intersect_key($portlist,$unused);//*/
425
unset($unused,$portArray,$ifaceArray);
426

    
427
include("head.inc");
428

    
429
if (file_exists("/var/run/interface_mismatch_reboot_needed")) {
430
	if ($_POST) {
431
		if ($rebootingnow) {
432
			$action_msg = gettext("The system is now rebooting. Please wait.");
433
			$class = "success";
434
		} else {
435
			$applymsg = gettext("Reboot is needed. Please apply the settings in order to reboot.");
436
			$class = "warning";
437
		}
438
	} else {
439
		$action_msg = gettext("Interface mismatch detected. Please resolve the mismatch, save and then click 'Apply Changes'. The firewall will reboot afterwards.");
440
		$class = "warning";
441
	}
442
}
443

    
444
if (file_exists("/tmp/reload_interfaces")) {
445
	echo "<p>\n";
446
	print_apply_box(gettext("The interface configuration has been changed.") . "<br />" . gettext("The changes must be applied for them to take effect."));
447
	echo "<br /></p>\n";
448
} elseif ($applymsg) {
449
	print_apply_box($applymsg);
450
} elseif ($action_msg) {
451
	print_info_box($action_msg, $class);
452
} elseif ($changes_applied) {
453
	print_apply_result_box($retval);
454
}
455

    
456
pfSense_handle_custom_code("/usr/local/pkg/interfaces_assign/pre_input_errors");
457

    
458
if ($input_errors) {
459
	print_input_errors($input_errors);
460
}
461

    
462
$tab_array = array();
463
$tab_array[] = array(gettext("Interface Assignments"), true, "interfaces_assign.php");
464
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
465
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
466
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
467
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
468
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
469
$tab_array[] = array(gettext("GREs"), false, "interfaces_gre.php");
470
$tab_array[] = array(gettext("GIFs"), false, "interfaces_gif.php");
471
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
472
$tab_array[] = array(gettext("LAGGs"), false, "interfaces_lagg.php");
473
display_top_tabs($tab_array);
474

    
475
/*Generate the port select box only once.
476
Not indenting the HTML to produce smaller code
477
and faster page load times */
478

    
479
$portselect='';
480
foreach ($portlist as $portname => $portinfo) {
481
	$portselect.='<option value="'.$portname.'"';
482
	$portselect.=">".$ifdescrs[$portname]."</option>\n";
483
}
484

    
485
?>
486
<form action="interfaces_assign.php" method="post">
487
	<div class="table-responsive">
488
	<table class="table table-striped table-hover">
489
	<thead>
490
		<tr>
491
			<th><?=gettext("Interface")?></th>
492
			<th><?=gettext("Network port")?></th>
493
			<th>&nbsp;</th>
494
		</tr>
495
	</thead>
496
	<tbody>
497
<?php
498
	$i=0;
499
	foreach ($config['interfaces'] as $ifname => $iface):
500
		if ($iface['descr']) {
501
			$ifdescr = $iface['descr'];
502
		} else {
503
			$ifdescr = strtoupper($ifname);
504
		}
505
?>
506
		<tr>
507
			<td><a href="/interfaces.php?if=<?=$ifname?>"><?=$ifdescr?></a></td>
508
			<td>
509
				<select name="<?=$ifname?>" id="<?=$ifname?>" class="form-control">
510
<?php
511
/*port select menu generation loop replaced with pre-prepared select menu to reduce page generation time */
512
echo str_replace('value="'.$iface['if'].'">','value="'.$iface['if'].'" selected>',$portselect);
513
?>
514
				</select>
515
			</td>
516
			<td>
517
<?php if ($ifname != 'wan'):?>
518
				<button type="submit" name="del[<?=$ifname?>]" class="btn btn-danger btn-sm" title="<?=$gettextArray['deleteif']?>">
519
					<i class="fa fa-trash icon-embed-btn"></i>
520
					<?=$gettextArray["delete"]?>
521
				</button>
522
<?php endif;?>
523
			</td>
524
		</tr>
525
<?php $i++;
526
endforeach;
527
	if (count($config['interfaces']) < count($portlist)):
528
?>
529
		<tr>
530
			<th>
531
				<?=gettext("Available network ports:")?>
532
			</th>
533
			<td>
534
				<select name="if_add" id="if_add" class="form-control">
535
<?php
536
/* HTML not indented to save on transmission/render time */
537
foreach ($unused_portlist as $portname => $portinfo):?>
538
<option value="<?=$portname?>" <?=($portname == $iface['if']) ? ' selected': ''?>><?=$ifdescrs[$portname]?></option>
539
<?php endforeach;
540
?>
541
				</select>
542
			</td>
543
			<td>
544
				<button type="submit" name="add" title="<?=gettext("Add selected interface")?>" value="add interface" class="btn btn-success btn-sm" >
545
					<i class="fa fa-plus icon-embed-btn"></i>
546
					<?=$gettextArray["add"]?>
547
				</button>
548
			</td>
549
		</tr>
550
<?php endif;?>
551
		</tbody>
552
	</table>
553
	</div>
554

    
555
	<button name="Submit" type="submit" class="btn btn-primary" value="<?=gettext('Save')?>"><i class="fa fa-save icon-embed-btn"></i><?=gettext('Save')?></button>
556
</form>
557
<br />
558

    
559
<?php
560
print_info_box(gettext("Interfaces that are configured as members of a lagg(4) interface will not be shown.") .
561
    '<br/><br/>' .
562
    gettext("Wireless interfaces must be created on the Wireless tab before they can be assigned."), 'info', false);
563
?>
564

    
565
<?php include("foot.inc")?>
(72-72/235)