Project

General

Profile

Download (6.36 KB) Statistics
| Branch: | Tag: | Revision:
1 5b237745 Scott Ullrich
<?php
2
/*
3
	diag_ping.php
4
*/
5 fd9ebcd5 Stephen Beaver
/* ====================================================================
6 214e79b0 Stephen Beaver
 *	Copyright (c)  2004-2015  Electric Sheep Fencing, LLC. All rights reserved.
7
 *	Copyright (c)  2003-2005 Bob Zoller (bob@kludgebox.com) and Manuel Kasper <mk@neon1.net>
8 9da2cf1c Stephen Beaver
 *
9 c9df279d Stephen Beaver
 *  Some or all of this file is based on the m0n0wall project which is
10 9da2cf1c Stephen Beaver
 *  Copyright (c)  2004 Manuel Kasper (BSD 2 clause)
11 fd9ebcd5 Stephen Beaver
 *
12 214e79b0 Stephen Beaver
 *	Redistribution and use in source and binary forms, with or without modification,
13
 *	are permitted provided that the following conditions are met:
14 fd9ebcd5 Stephen Beaver
 *
15 214e79b0 Stephen Beaver
 *	1. Redistributions of source code must retain the above copyright notice,
16
 *		this list of conditions and the following disclaimer.
17 fd9ebcd5 Stephen Beaver
 *
18 214e79b0 Stephen Beaver
 *	2. Redistributions in binary form must reproduce the above copyright
19
 *		notice, this list of conditions and the following disclaimer in
20
 *		the documentation and/or other materials provided with the
21
 *		distribution.
22 fd9ebcd5 Stephen Beaver
 *
23 214e79b0 Stephen Beaver
 *	3. All advertising materials mentioning features or use of this software
24
 *		must display the following acknowledgment:
25
 *		"This product includes software developed by the pfSense Project
26
 *		 for use in the pfSense software distribution. (http://www.pfsense.org/).
27 fd9ebcd5 Stephen Beaver
 *
28 214e79b0 Stephen Beaver
 *	4. The names "pfSense" and "pfSense Project" must not be used to
29
 *		 endorse or promote products derived from this software without
30
 *		 prior written permission. For written permission, please contact
31
 *		 coreteam@pfsense.org.
32 fd9ebcd5 Stephen Beaver
 *
33 214e79b0 Stephen Beaver
 *	5. Products derived from this software may not be called "pfSense"
34
 *		nor may "pfSense" appear in their names without prior written
35
 *		permission of the Electric Sheep Fencing, LLC.
36 fd9ebcd5 Stephen Beaver
 *
37 214e79b0 Stephen Beaver
 *	6. Redistributions of any form whatsoever must retain the following
38
 *		acknowledgment:
39 fd9ebcd5 Stephen Beaver
 *
40 214e79b0 Stephen Beaver
 *	"This product includes software developed by the pfSense Project
41
 *	for use in the pfSense software distribution (http://www.pfsense.org/).
42 0da0d43e Phil Davis
 *
43 214e79b0 Stephen Beaver
 *	THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
44
 *	EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45
 *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
46
 *	PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
47
 *	ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48
 *	SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
49
 *	NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50
 *	LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51
 *	HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
52
 *	STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53
 *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
54
 *	OF THE POSSIBILITY OF SUCH DAMAGE.
55 fd9ebcd5 Stephen Beaver
 *
56 214e79b0 Stephen Beaver
 *	====================================================================
57 fd9ebcd5 Stephen Beaver
 *
58
 */
59 5b237745 Scott Ullrich
60 3c98b3f7 jim-p
/*
61 8bea9639 Seth Mos
	pfSense_BUILDER_BINARIES:	/sbin/ping /sbin/ping6
62 45d6ada5 Sjon Hortensius
	pfSense_MODULE: routing
63 13d193c2 Scott Ullrich
*/
64
65 6b07c15a Matthew Grooms
##|+PRIV
66
##|*IDENT=page-diagnostics-ping
67 5230f468 jim-p
##|*NAME=Diagnostics: Ping
68 6b07c15a Matthew Grooms
##|*DESCR=Allow access to the 'Diagnostics: Ping' page.
69
##|*MATCH=diag_ping.php*
70
##|-PRIV
71
72 0d56c06b jim-p
$allowautocomplete = true;
73 36678039 Carlos Eduardo Ramos
$pgtitle = array(gettext("Diagnostics"), gettext("Ping"));
74 53483463 jim-p
require_once("guiconfig.inc");
75
76 5b237745 Scott Ullrich
define('MAX_COUNT', 10);
77
define('DEFAULT_COUNT', 3);
78 ed69a496 jim-p
$do_ping = false;
79
$host = '';
80
$count = DEFAULT_COUNT;
81 5b237745 Scott Ullrich
82 45d6ada5 Sjon Hortensius
function create_sourceaddresslist() {
83 214e79b0 Stephen Beaver
	$sourceips = get_possible_traffic_source_addresses(true);
84 45d6ada5 Sjon Hortensius
85 214e79b0 Stephen Beaver
	$list = array("" => 'Default');
86
87
	foreach ($sourceips as $sipvalue => $sipname) {
88
		$list[$sipvalue] = $sipname;
89
	}
90 45d6ada5 Sjon Hortensius
91
	return $list;
92
}
93
94 b8cc74ed sullrich
if ($_POST || $_REQUEST['host']) {
95 5b237745 Scott Ullrich
	unset($input_errors);
96
	unset($do_ping);
97
98
	/* input validation */
99
	$reqdfields = explode(" ", "host count");
100 699737d9 Phil Davis
	$reqdfieldsn = array(gettext("Host"), gettext("Count"));
101 1e9b4611 Renato Botelho
	do_input_validation($_REQUEST, $reqdfields, $reqdfieldsn, $input_errors);
102 5b237745 Scott Ullrich
103 b8cc74ed sullrich
	if (($_REQUEST['count'] < 1) || ($_REQUEST['count'] > MAX_COUNT)) {
104 4a5430e3 cadu
		$input_errors[] = sprintf(gettext("Count must be between 1 and %s"), MAX_COUNT);
105 5b237745 Scott Ullrich
	}
106
107 4f3bb062 jim-p
	$host = trim($_REQUEST['host']);
108
	$ipproto = $_REQUEST['ipproto'];
109 5f601060 Phil Davis
	if (($ipproto == "ipv4") && is_ipaddrv6($host)) {
110 4f3bb062 jim-p
		$input_errors[] = gettext("When using IPv4, the target host must be an IPv4 address or hostname.");
111 5f601060 Phil Davis
	}
112
	if (($ipproto == "ipv6") && is_ipaddrv4($host)) {
113 4f3bb062 jim-p
		$input_errors[] = gettext("When using IPv6, the target host must be an IPv6 address or hostname.");
114 5f601060 Phil Davis
	}
115 4f3bb062 jim-p
116 5b237745 Scott Ullrich
	if (!$input_errors) {
117 ed69a496 jim-p
		if ($_POST) {
118
			$do_ping = true;
119
		}
120 947141fd Phil Davis
		if (isset($_REQUEST['sourceip'])) {
121 5e1cfe9e heper
			$sourceip = $_REQUEST['sourceip'];
122
		}
123
		$count = $_REQUEST['count'];
124 699737d9 Phil Davis
		if (preg_match('/[^0-9]/', $count)) {
125 3a134b53 Erik Fonnesbeck
			$count = DEFAULT_COUNT;
126 5f601060 Phil Davis
		}
127 5b237745 Scott Ullrich
	}
128
}
129 45d6ada5 Sjon Hortensius
130 288a2a0f Phil Davis
if ($do_ping) {
131 f1a9b09d Colin Fleming
?>
132 45d6ada5 Sjon Hortensius
	<script type="text/javascript">
133
	//<![CDATA[
134 947141fd Phil Davis
	window.onload=function() {
135 45d6ada5 Sjon Hortensius
		document.getElementById("pingCaptured").wrap='off';
136
	}
137
	//]]>
138
	</script>
139 f1a9b09d Colin Fleming
<?php
140 45d6ada5 Sjon Hortensius
	$ifscope = '';
141
	$command = "/sbin/ping";
142
	if ($ipproto == "ipv6") {
143
		$command .= "6";
144
		$ifaddr = is_ipaddr($sourceip) ? $sourceip : get_interface_ipv6($sourceip);
145 947141fd Phil Davis
		if (is_linklocal($ifaddr)) {
146 45d6ada5 Sjon Hortensius
			$ifscope = get_ll_scope($ifaddr);
147 947141fd Phil Davis
		}
148 45d6ada5 Sjon Hortensius
	} else {
149
		$ifaddr = is_ipaddr($sourceip) ? $sourceip : get_interface_ip($sourceip);
150
	}
151
152
	if ($ifaddr && (is_ipaddr($host) || is_hostname($host))) {
153
		$srcip = "-S" . escapeshellarg($ifaddr);
154 947141fd Phil Davis
		if (is_linklocal($host) && !strstr($host, "%") && !empty($ifscope)) {
155 45d6ada5 Sjon Hortensius
			$host .= "%{$ifscope}";
156 947141fd Phil Davis
		}
157 3c98b3f7 jim-p
	}
158 45d6ada5 Sjon Hortensius
159
	$cmd = "{$command} {$srcip} -c" . escapeshellarg($count) . " " . escapeshellarg($host);
160
	//echo "Ping command: {$cmd}\n";
161
	$result = shell_exec($cmd);
162
163 947141fd Phil Davis
	if (empty($result)) {
164 45d6ada5 Sjon Hortensius
		$input_errors[] = "Host \"" . $host . "\" did not respond or could not be resolved.";
165 947141fd Phil Davis
	}
166 45d6ada5 Sjon Hortensius
167
}
168
169
include('head.inc');
170
171 947141fd Phil Davis
if ($input_errors) {
172 45d6ada5 Sjon Hortensius
	print_input_errors($input_errors);
173 947141fd Phil Davis
}
174 45d6ada5 Sjon Hortensius
175 38e06c66 Sjon Hortensius
$form = new Form('Ping');
176 45d6ada5 Sjon Hortensius
177
$section = new Form_Section('Ping');
178
179
$section->addInput(new Form_Input(
180
	'host',
181
	'Hostname',
182
	'text',
183
	$host,
184
	['placeholder' => 'Hostname to ping']
185
));
186
187 214e79b0 Stephen Beaver
$section->addInput(new Form_Select(
188 45d6ada5 Sjon Hortensius
	'ipproto',
189 214e79b0 Stephen Beaver
	'IP Protocol',
190
	$ipproto,
191
	['ipv4' => 'IPv4', 'ipv6' => 'IPv6']
192
));
193 45d6ada5 Sjon Hortensius
194
$section->addInput(new Form_Select(
195
	'sourceip',
196
	'Source address',
197 3f91d34e Stephen Beaver
	$sourceip,
198 45d6ada5 Sjon Hortensius
	create_sourceaddresslist()
199
))->setHelp('Select source address for the ping');
200
201
$section->addInput(new Form_Select(
202
	'count',
203
	'Maximum number of pings',
204
	$count,
205
	array_combine(range(1, MAX_COUNT), range(1, MAX_COUNT))
206 0da0d43e Phil Davis
))->setHelp('Select the maximum number of pings');
207 45d6ada5 Sjon Hortensius
208
$form->add($section);
209
print $form;
210
211 288a2a0f Phil Davis
if ($do_ping && !empty($result) && !$input_errors) {
212 45d6ada5 Sjon Hortensius
?>
213
	<div class="panel panel-default">
214
		<div class="panel-heading">
215
			<h2 class="panel-title">Results</h2>
216
		</div>
217
218
		<div class="panel-body">
219
			<pre><?= $result ?></pre>
220
		</div>
221
	</div>
222
<?php
223
}
224
225
include('foot.inc');