status_openvpn.php 14.3 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
5 6 7 8
	Copyright (C) 2010 Jim Pingle
	Copyright (C) 2008 Shrew Soft Inc.
	Copyright (C) 2005 Scott Ullrich, Colin Smith
	All rights reserved.
Ad Schellevis's avatar
Ad Schellevis committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

	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.
*/

32
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33
require_once("openvpn.inc");
34
require_once("services.inc");
35
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
36

37 38 39
$pgtitle = array(gettext("Status"), gettext("OpenVPN"));
$shortcut_section = "openvpn";

Ad Schellevis's avatar
Ad Schellevis committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/* Handle AJAX */
if($_GET['action']) {
	if($_GET['action'] == "kill") {
		$port  = $_GET['port'];
		$remipp  = $_GET['remipp'];
		if (!empty($port) and !empty($remipp)) {
			$retval = kill_client($port, $remipp);
			echo htmlentities("|{$port}|{$remipp}|{$retval}|");
		} else {
			echo gettext("invalid input");
		}
		exit;
	}
}


function kill_client($port, $remipp) {
	global $g;

	//$tcpsrv = "tcp://127.0.0.1:{$port}";
60
	$tcpsrv = "unix:///var/etc/openvpn/{$port}.sock";
Ad Schellevis's avatar
Ad Schellevis committed
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
	$errval;
	$errstr;

	/* open a tcp connection to the management port of each server */
	$fp = @stream_socket_client($tcpsrv, $errval, $errstr, 1);
	$killed = -1;
	if ($fp) {
		stream_set_timeout($fp, 1);
		fputs($fp, "kill {$remipp}\n");
		while (!feof($fp)) {
			$line = fgets($fp, 1024);

			$info = stream_get_meta_data($fp);
			if ($info['timed_out'])
				break;

			/* parse header list line */
			if (strpos($line, "INFO:") !== false)
				continue;
			if (strpos($line, "SUCCESS") !== false) {
				$killed = 0;
			}
			break;
		}
		fclose($fp);
	}
	return $killed;
}

$servers = openvpn_get_active_servers();
$sk_servers = openvpn_get_active_servers("p2p");
$clients = openvpn_get_active_clients();

include("head.inc"); ?>

96 97

<body>
Ad Schellevis's avatar
Ad Schellevis committed
98
<?php include("fbegin.inc"); ?>
99

Ad Schellevis's avatar
Ad Schellevis committed
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
<script type="text/javascript">
//<![CDATA[
	function killClient(mport, remipp) {
		var busy = function(index,icon) {
			jQuery(icon).bind("onclick","");
			jQuery(icon).attr('src',jQuery(icon).attr('src').replace("\.gif", "_d.gif"));
			jQuery(icon).css("cursor","wait");
		}

		jQuery('img[name="i:' + mport + ":" + remipp + '"]').each(busy);

		jQuery.ajax(
			"<?=$_SERVER['SCRIPT_NAME'];?>" +
				"?action=kill&port=" + mport + "&remipp=" + remipp,
			{ type: "get", complete: killComplete }
		);
	}

	function killComplete(req) {
		var values = req.responseText.split("|");
		if(values[3] != "0") {
			alert('<?=gettext("An error occurred.");?>' + ' (' + values[3] + ')');
			return;
		}

		jQuery('tr[name="r:' + values[1] + ":" + values[2] + '"]').each(
			function(index,row) { jQuery(row).fadeOut(1000); }
		);
	}
//]]>
</script>

132

133 134
<section class="page-content-main">
	<div class="container-fluid">
135

136
        <div class="row">
137

138 139
            <section class="col-xs-12">
                <div class="content-box">
Ad Schellevis's avatar
Ad Schellevis committed
140
	                <header class="content-box-head container-fluid">
141
				        <h3>OpenVPN Status</h3>
142
				    </header>
143

144 145
				    <div class="content-box-main col-xs-12">
					    <form action="status_openvpn.php" method="get" name="iform">
146 147


148 149
							<?php $i = 0; ?>
							<?php foreach ($servers as $server): ?>
150
							<div class="table-responsive">
Ad Schellevis's avatar
Ad Schellevis committed
151
							<table class="table table-striped table-sort sortable __nomb">
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
								<tr>
									<td colspan="6" class="listtopic">
										<?=$server['name'];?> <?=gettext("Client connections"); ?>
									</td>
								</tr>
								<tr>
									<td>
										<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0" summary="connections">
										<tr>
											<td class="listhdrr"><?=gettext("Common Name"); ?></td>
											<td class="listhdrr"><?=gettext("Real Address"); ?></td>
											<td class="listhdrr"><?=gettext("Virtual Address"); ?></td>
											<td class="listhdrr"><?=gettext("Connected Since"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Received"); ?></td>
										</tr>
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
										<?php foreach ($server['conns'] as $conn): ?>
										<tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>">
											<td class="listlr">
												<?=$conn['common_name'];?>
											</td>
											<td class="listr">
												<?=$conn['remote_host'];?>
											</td>
											<td class="listr">
												<?=$conn['virtual_addr'];?>
											</td>
											<td class="listr">
												<?=$conn['connect_time'];?>
											</td>
											<td class="listr">
												<?=format_bytes($conn['bytes_sent']);?>
											</td>
											<td class="listr">
												<?=format_bytes($conn['bytes_recv']);?>
											</td>
											<td class="list">
												<img src="/themes/<?php echo $g['theme']; ?>/images/icons/icon_x.gif" height="17" width="17" border="0"
												   onclick="killClient('<?php echo $server['mgmt']; ?>', '<?php echo $conn['remote_host']; ?>');" style="cursor:pointer;"
												   id="<?php echo "i:{$server['mgmt']}:{$conn['remote_host']}"; ?>"
												   title="<?php echo gettext("Kill client connection from") . " " . $conn['remote_host']; ?>" alt="delete" />
											</td>
										</tr>
196

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
										<?php endforeach; ?>
										<tfoot>
										<tr>
											<td colspan="2" class="list" height="12">
											<table>
											<tr>
											<td><?php $ssvc = find_service_by_openvpn_vpnid($server['vpnid']); ?>
											<?= get_service_status_icon($ssvc, true, true); ?>
											<?= get_service_control_links($ssvc, true); ?></td>
											</tr>
											</table>
											</td>
											<td colspan="4" class="list" height="12">&nbsp;</td>
										</tr>
										</tfoot>
									</table>
									</td>
								</tr>
							</table>
							<?php if (is_array($server['routes']) && count($server['routes'])): ?>
							<div id="shroutebut-<?= $i ?>">
							<input type="button" onClick="show_routes('tabroute-<?= $i ?>','shroutebut-<?= $i ?>')" value="<?php echo gettext("Show Routing Table"); ?>" /> - <?= gettext("Display OpenVPN's internal routing table for this server.") ?>
219

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
							</div>
							<table style="display: none; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" width="100%" border="0" cellpadding="0" cellspacing="0" id="tabroute-<?= $i ?>" summary="routing table">
								<tr>
									<td colspan="6" class="listtopic">
										<?=$server['name'];?> <?=gettext("Routing Table"); ?>
									</td>
								</tr>
								<tr>
									<td>
										<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0" summary="results">
										<tr>
											<td class="listhdrr"><?=gettext("Common Name"); ?></td>
											<td class="listhdrr"><?=gettext("Real Address"); ?></td>
											<td class="listhdrr"><?=gettext("Target Network"); ?></td>
											<td class="listhdrr"><?=gettext("Last Used"); ?></td>
										</tr>
236

237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
										<?php foreach ($server['routes'] as $conn): ?>
										<tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>">
											<td class="listlr">
												<?=$conn['common_name'];?>
											</td>
											<td class="listr">
												<?=$conn['remote_host'];?>
											</td>
											<td class="listr">
												<?=$conn['virtual_addr'];?>
											</td>
											<td class="listr">
												<?=$conn['last_time'];?>
											</td>
										</tr>
252

253 254 255 256 257 258 259 260 261 262 263
										<?php endforeach; ?>
										<tfoot>
										<tr>
											<td colspan="6" class="list" height="12"><?= gettext("An IP address followed by C indicates a host currently connected through the VPN.") ?></td>
										</tr>
										</tfoot>
									</table>
									</td>
								</tr>
							</table>
							<?php endif; ?>
264

265 266
							<?php $i++; ?>
							<?php endforeach; ?>
267 268


269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
							<?php if (!empty($sk_servers)) { ?>
							<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" width="100%" border="0" cellpadding="0" cellspacing="0" summary="peer to peer stats">
								<tr>
									<td colspan="6" class="listtopic">
										<?=gettext("Peer to Peer Server Instance Statistics"); ?>
									</td>
								</tr>
								<tr>
									<td>
										<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0" summary="results">
										<tr>
											<td class="listhdrr"><?=gettext("Name"); ?></td>
											<td class="listhdrr"><?=gettext("Status"); ?></td>
											<td class="listhdrr"><?=gettext("Connected Since"); ?></td>
											<td class="listhdrr"><?=gettext("Virtual Addr"); ?></td>
											<td class="listhdrr"><?=gettext("Remote Host"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Rcvd"); ?></td>
											<td class="listhdrr"><?=gettext("Service"); ?></td>
										</tr>
289

290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
							<?php foreach ($sk_servers as $sk_server): ?>
										<tr id="<?php echo "r:{$sk_server['port']}:{$sk_server['vpnid']}"; ?>">
											<td class="listlr">
												<?=$sk_server['name'];?>
											</td>
											<td class="listr">
												<?=$sk_server['status'];?>
											</td>
											<td class="listr">
												<?=$sk_server['connect_time'];?>
											</td>
											<td class="listr">
												<?=$sk_server['virtual_addr'];?>
											</td>
											<td class="listr">
												<?=$sk_server['remote_host'];?>
											</td>
											<td class="listr">
												<?=format_bytes($sk_server['bytes_sent']);?>
											</td>
											<td class="listr">
												<?=format_bytes($sk_server['bytes_recv']);?>
											</td>
											<td class="listr">
											<table>
											<tr>
											<td><?php $ssvc = find_service_by_openvpn_vpnid($sk_server['vpnid']); ?>
											<?= get_service_status_icon($ssvc, false, true); ?>
											<?= get_service_control_links($ssvc, true); ?></td>
											</tr>
											</table>
											</td>
										</tr>
							<?php endforeach; ?>
										</table>
									</td>
								</tr>
							</table>
328

329 330
							<?php
							} ?>
331

332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
							<?php if (!empty($clients)) { ?>
							<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" width="100%" border="0" cellpadding="0" cellspacing="0" summary="client stats">
								<tr>
									<td colspan="6" class="listtopic">
										<?=gettext("Client Instance Statistics"); ?>
									</td>
								</tr>
								<tr>
									<td>
										<table style="padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px" class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0" summary="results">
										<tr>
											<td class="listhdrr"><?=gettext("Name"); ?></td>
											<td class="listhdrr"><?=gettext("Status"); ?></td>
											<td class="listhdrr"><?=gettext("Connected Since"); ?></td>
											<td class="listhdrr"><?=gettext("Virtual Addr"); ?></td>
											<td class="listhdrr"><?=gettext("Remote Host"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td>
											<td class="listhdrr"><?=gettext("Bytes Rcvd"); ?></td>
											<td class="listhdrr"><?=gettext("Service"); ?></td>
										</tr>
352

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
							<?php foreach ($clients as $client): ?>
										<tr id="<?php echo "r:{$client['port']}:{$client['vpnid']}"; ?>">
											<td class="listlr">
												<?=$client['name'];?>
											</td>
											<td class="listr">
												<?=$client['status'];?>
											</td>
											<td class="listr">
												<?=$client['connect_time'];?>
											</td>
											<td class="listr">
												<?=$client['virtual_addr'];?>
											</td>
											<td class="listr">
												<?=$client['remote_host'];?>
											</td>
											<td class="listr">
												<?=format_bytes($client['bytes_sent']);?>
											</td>
											<td class="listr">
												<?=format_bytes($client['bytes_recv']);?>
											</td>
											<td class="listr" height="12">
											<table>
											<tr>
											<td><?php $ssvc = find_service_by_openvpn_vpnid($client['vpnid']); ?>
											<?= get_service_status_icon($ssvc, false, true); ?>
											<?= get_service_control_links($ssvc, true); ?></td>
											</tr>
											</table>
											</td>
										</tr>
							<?php endforeach; ?>
										</table>
									</td>
								</tr>
							</table>
							</div>
392 393

							<?php
394
							}
395

396 397 398
							if ($DisplayNote) {
								echo "<br /><b>" . gettext("NOTE") . ":</b> " . gettext("If you have custom options that override the management features of OpenVPN on a client or server, they will cause that OpenVPN instance to not work correctly with this status page.");
							}
399

400 401 402 403
							if ((empty($clients)) && (empty($servers)) && (empty($sk_servers))) {
								echo gettext("No OpenVPN instance defined");
							}
							?>
404

405 406 407 408 409 410 411 412
					    </form>
				    </div>
                </div>
            </section>
        </div>
	</div>
</section>

413

Ad Schellevis's avatar
Ad Schellevis committed
414 415 416 417 418 419 420 421
<script type="text/javascript">
//<![CDATA[
function show_routes(id, buttonid) {
	document.getElementById(buttonid).innerHTML='';
	aodiv = document.getElementById(id);
	aodiv.style.display = "block";
}
//]]>
422
</script>
423

424
<?php include("foot.inc"); ?>