Commit 8714dfca authored by Ad Schellevis's avatar Ad Schellevis

(legacy) cleanup/refactor status_openvpn.php

parent 4b77fe1c
...@@ -28,35 +28,14 @@ ...@@ -28,35 +28,14 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
require_once("guiconfig.inc"); require_once("guiconfig.inc");
require_once("openvpn.inc"); require_once("openvpn.inc");
require_once("services.inc"); require_once("services.inc");
require_once("interfaces.inc"); require_once("interfaces.inc");
$pgtitle = array(gettext("Status"), gettext("OpenVPN"));
$shortcut_section = "openvpn";
/* 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) { function kill_client($port, $remipp) {
global $g; global $g;
//$tcpsrv = "tcp://127.0.0.1:{$port}";
$tcpsrv = "unix:///var/etc/openvpn/{$port}.sock"; $tcpsrv = "unix:///var/etc/openvpn/{$port}.sock";
$errval; $errval;
$errstr; $errstr;
...@@ -87,9 +66,32 @@ function kill_client($port, $remipp) { ...@@ -87,9 +66,32 @@ function kill_client($port, $remipp) {
return $killed; return $killed;
} }
$pgtitle = array(gettext("Status"), gettext("OpenVPN"));
$shortcut_section = "openvpn";
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$vpnid = 0;
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (isset($_POST['action']) && $_POST['action'] == 'kill') {
$port = escapeshellarg($_POST['port']);
$remipp = escapeshellarg($_POST['remipp']);
if (!empty($port) and !empty($remipp)) {
$retval = kill_client($port, $remipp);
echo htmlentities("|{$port}|{$remipp}|{$retval}|");
} else {
echo gettext("invalid input");
}
exit;
}
}
$servers = openvpn_get_active_servers(); $servers = openvpn_get_active_servers();
legacy_html_escape_form_data($servers);
$sk_servers = openvpn_get_active_servers("p2p"); $sk_servers = openvpn_get_active_servers("p2p");
legacy_html_escape_form_data($sk_servers);
$clients = openvpn_get_active_clients(); $clients = openvpn_get_active_clients();
legacy_html_escape_form_data($clients);
include("head.inc"); ?> include("head.inc"); ?>
...@@ -99,326 +101,211 @@ include("head.inc"); ?> ...@@ -99,326 +101,211 @@ include("head.inc"); ?>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
function killClient(mport, remipp) { $( document ).ready(function() {
var busy = function(index,icon) { // link kill buttons
jQuery(icon).bind("onclick",""); $(".act_kill_client").click(function(){
jQuery(icon).attr('src',jQuery(icon).attr('src').replace("\.gif", "_d.gif")); var port = $(this).attr("data-client-port");
jQuery(icon).css("cursor","wait"); var ip = $(this).attr("data-client-ip");
} $.post(window.location, {action: 'kill', port:port,remipp:ip}, function(data) {
location.reload();
jQuery('img[name="i:' + mport + ":" + remipp + '"]').each(busy); });
});
jQuery.ajax( // link show/hide routes
"<?=$_SERVER['SCRIPT_NAME'];?>" + $(".act_show_routes").click(function(){
"?action=kill&port=" + mport + "&remipp=" + remipp, $("*[for='" + $(this).attr('id') + "']").toggleClass("hidden show");
{ type: "get", complete: killComplete } });
);
} // minimize all buttons, some pf the buttons come from the shared service
// functions, which outputs large buttons.
function killComplete(req) { $(".btn").each(function(){
var values = req.responseText.split("|"); $(this).addClass("btn-xs");
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> </script>
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<section class="col-xs-12"> <section class="col-xs-12">
<div class="content-box"> <header class="content-box-head container-fluid"> <h3><?=gettext("OpenVPN Status");?></h3>
<header class="content-box-head container-fluid">
<h3>OpenVPN Status</h3>
</header> </header>
<div class="content-box-main col-xs-12"> <div class="content-box-main col-xs-12">
<form action="status_openvpn.php" method="get" name="iform"> <form action="status_openvpn.php" method="get" name="iform">
<div class="table-responsive">
<table class="table table-striped">
<?php $i = 0; ?> <?php $i = 0; ?>
<?php foreach ($servers as $server): ?> <?php foreach ($servers as $server): ?>
<div class="table-responsive">
<table class="table table-striped table-sort sortable __nomb">
<tr> <tr>
<td colspan="6" class="listtopic"> <td colspan="8" class="listtopic">
<?=$server['name'];?> <?=gettext("Client connections"); ?> <b><?=$server['name'];?> <?=gettext("Client connections"); ?></b>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td><?=gettext("Common Name"); ?></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"> <td><?=gettext("Real Address"); ?></td>
<tr> <td><?=gettext("Virtual Address"); ?></td>
<td class="listhdrr"><?=gettext("Common Name"); ?></td> <td><?=gettext("Connected Since"); ?></td>
<td class="listhdrr"><?=gettext("Real Address"); ?></td> <td><?=gettext("Bytes Sent"); ?></td>
<td class="listhdrr"><?=gettext("Virtual Address"); ?></td> <td><?=gettext("Bytes Received"); ?></td>
<td class="listhdrr"><?=gettext("Connected Since"); ?></td> <td></td>
<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td> <td></td>
<td class="listhdrr"><?=gettext("Bytes Received"); ?></td>
</tr> </tr>
<?php foreach ($server['conns'] as $conn): ?> <?php foreach ($server['conns'] as $conn): ?>
<tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>"> <tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>">
<td class="listlr"> <td><?=$conn['common_name'];?></td>
<?=$conn['common_name'];?> <td><?=$conn['remote_host'];?></td>
</td> <td><?=$conn['virtual_addr'];?></td>
<td class="listr"> <td><?=$conn['connect_time'];?></td>
<?=$conn['remote_host'];?> <td><?=format_bytes($conn['bytes_sent']);?></td>
</td> <td><?=format_bytes($conn['bytes_recv']);?></td>
<td class="listr"> <td></td>
<?=$conn['virtual_addr'];?> <td>
</td> <a data-client-port="<?=$server['mgmt'];?>"
<td class="listr"> data-client-ip="<?=$conn['remote_host'];?>"
<?=$conn['connect_time'];?> title="<?=gettext("Kill client connection from"). " ". $conn['remote_host'] ; ?>"
</td> class="act_kill_client btn btn-default">
<td class="listr"> <span class="glyphicon glyphicon-remove"></span>
<?=format_bytes($conn['bytes_sent']);?> </a>
</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> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
<tfoot>
<tr>
<td colspan="2" class="list" height="12">
<table>
<tr> <tr>
<td><?php $ssvc = find_service_by_openvpn_vpnid($server['vpnid']); ?> <td colspan="2">
<?php $ssvc = find_service_by_openvpn_vpnid($server['vpnid']); ?>
<?= get_service_status_icon($ssvc, true, true); ?> <?= get_service_status_icon($ssvc, true, true); ?>
<?= get_service_control_links($ssvc, true); ?></td> <?= get_service_control_links($ssvc, true); ?>
</tr>
</table>
</td>
<td colspan="4" class="list" height="12">&nbsp;</td>
</tr>
</tfoot>
</table>
</td> </td>
<td colspan="6">&nbsp;</td>
</tr> </tr>
</table> <?php if (isset($server['routes']) && count($server['routes'])): ?>
<?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.") ?>
</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> <tr>
<td colspan="6" class="listtopic"> <td colspan="8">
<button class="btn btn-default act_show_routes" type="button" id="showroutes_<?=$i?>"><i class="fa fa-info"></i>
<?php echo gettext("Show/Hide Routing Table"); ?>
</button>
<div class="hidden" for="showroutes_<?=$i?>">
<small>
<?=$server['name'];?> <?=gettext("Routing Table"); ?> <?=$server['name'];?> <?=gettext("Routing Table"); ?>
</td> </small>
</tr> <table class="table table-striped table-bordered">
<tr> <thead>
<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> <tr>
<td class="listhdrr"><?=gettext("Common Name"); ?></td> <th><?=gettext("Common Name"); ?></th>
<td class="listhdrr"><?=gettext("Real Address"); ?></td> <th><?=gettext("Real Address"); ?></th>
<td class="listhdrr"><?=gettext("Target Network"); ?></td> <th><?=gettext("Target Network"); ?></th>
<td class="listhdrr"><?=gettext("Last Used"); ?></td> <th><?=gettext("Last Used"); ?></th>
</tr> </tr>
</thead>
<tbody>
<?php foreach ($server['routes'] as $conn): ?> <?php foreach ($server['routes'] as $conn): ?>
<tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>"> <tr id="<?php echo "r:{$server['mgmt']}:{$conn['remote_host']}"; ?>">
<td class="listlr"> <td><?=$conn['common_name'];?></td>
<?=$conn['common_name'];?> <td><?=$conn['remote_host'];?></td>
</td> <td><?=$conn['virtual_addr'];?></td>
<td class="listr"> <td><?=$conn['last_time'];?></td>
<?=$conn['remote_host'];?>
</td>
<td class="listr">
<?=$conn['virtual_addr'];?>
</td>
<td class="listr">
<?=$conn['last_time'];?>
</td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
<tfoot> <tfoot>
<tr> <tr>
<td colspan="6" class="list" height="12"><?= gettext("An IP address followed by C indicates a host currently connected through the VPN.") ?></td> <td colspan="6"><?= gettext("An IP address followed by C indicates a host currently connected through the VPN.") ?></td>
</tr> </tr>
</tfoot> </tfoot>
</tbody>
</table> </table>
</div>
</td> </td>
</tr> </tr>
</table>
<?php endif; ?> <?php endif; ?>
<?php $i++; ?> <?php $i++; ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php if (!empty($sk_servers)) { ?> <?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> <tr>
<td colspan="6" class="listtopic"> <td colspan="8" class="listtopic">
<?=gettext("Peer to Peer Server Instance Statistics"); ?> <b><?=gettext("Peer to Peer Server Instance Statistics"); ?></b>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td><?=gettext("Name"); ?></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"> <td><?=gettext("Remote Host"); ?></td>
<tr> <td><?=gettext("Virtual Addr"); ?></td>
<td class="listhdrr"><?=gettext("Name"); ?></td> <td><?=gettext("Connected Since"); ?></td>
<td class="listhdrr"><?=gettext("Status"); ?></td> <td><?=gettext("Bytes Sent"); ?></td>
<td class="listhdrr"><?=gettext("Connected Since"); ?></td> <td><?=gettext("Bytes Received"); ?></td>
<td class="listhdrr"><?=gettext("Virtual Addr"); ?></td> <td><?=gettext("Status"); ?></td>
<td class="listhdrr"><?=gettext("Remote Host"); ?></td> <td></td>
<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td>
<td class="listhdrr"><?=gettext("Bytes Rcvd"); ?></td>
<td class="listhdrr"><?=gettext("Service"); ?></td>
</tr> </tr>
<?php foreach ($sk_servers as $sk_server): ?> <?php foreach ($sk_servers as $sk_server): ?>
<tr id="<?php echo "r:{$sk_server['port']}:{$sk_server['vpnid']}"; ?>"> <tr id="<?php echo "r:{$sk_server['port']}:{$sk_server['vpnid']}"; ?>">
<td class="listlr"> <td><?=$sk_server['name'];?></td>
<?=$sk_server['name'];?> <td><?=$sk_server['remote_host'];?></td>
</td> <td><?=$sk_server['virtual_addr'];?></td>
<td class="listr"> <td><?=$sk_server['connect_time'];?></td>
<?=$sk_server['status'];?> <td><?=format_bytes($sk_server['bytes_sent']);?></td>
</td> <td><?=format_bytes($sk_server['bytes_recv']);?></td>
<td class="listr"> <td><?=$sk_server['status'];?></td>
<?=$sk_server['connect_time'];?> <td>
</td> <div>
<td class="listr"> <?php $ssvc = find_service_by_openvpn_vpnid($sk_server['vpnid']); ?>
<?=$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_status_icon($ssvc, false, true); ?>
<?= get_service_control_links($ssvc, true); ?></td> <?= get_service_control_links($ssvc, true); ?>
</tr> </div>
</table>
</td> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</table>
</td>
</tr>
</table>
<?php <?php
} ?> } ?>
<?php if (!empty($clients)) { ?> <?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> <tr>
<td colspan="6" class="listtopic"> <tr>
<?=gettext("Client Instance Statistics"); ?> <td colspan="8" class="listtopic">
<b><?=gettext("Client Instance Statistics"); ?><b>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td><?=gettext("Name"); ?></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"> <td><?=gettext("Connected Since"); ?></td>
<tr> <td><?=gettext("Virtual Addr"); ?></td>
<td class="listhdrr"><?=gettext("Name"); ?></td> <td><?=gettext("Remote Host"); ?></td>
<td class="listhdrr"><?=gettext("Status"); ?></td> <td><?=gettext("Bytes Sent"); ?></td>
<td class="listhdrr"><?=gettext("Connected Since"); ?></td> <td><?=gettext("Bytes Rcvd"); ?></td>
<td class="listhdrr"><?=gettext("Virtual Addr"); ?></td> <td><?=gettext("Status"); ?></td>
<td class="listhdrr"><?=gettext("Remote Host"); ?></td> <td></td>
<td class="listhdrr"><?=gettext("Bytes Sent"); ?></td>
<td class="listhdrr"><?=gettext("Bytes Rcvd"); ?></td>
<td class="listhdrr"><?=gettext("Service"); ?></td>
</tr> </tr>
<?php foreach ($clients as $client): ?> <?php foreach ($clients as $client): ?>
<tr id="<?php echo "r:{$client['port']}:{$client['vpnid']}"; ?>"> <tr id="<?php echo "r:{$client['port']}:{$client['vpnid']}"; ?>">
<td class="listlr"> <td><?=$client['name'];?></td>
<?=$client['name'];?> <td><?=$client['connect_time'];?></td>
</td> <td><?=$client['virtual_addr'];?></td>
<td class="listr"> <td><?=$client['remote_host'];?></td>
<?=$client['status'];?> <td><?=format_bytes($client['bytes_sent']);?></td>
</td> <td><?=format_bytes($client['bytes_recv']);?></td>
<td class="listr"> <td><?=$client['status'];?></td>
<?=$client['connect_time'];?> <td>
</td> <div>
<td class="listr"> <?php $ssvc = find_service_by_openvpn_vpnid($client['vpnid']); ?>
<?=$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_status_icon($ssvc, false, true); ?>
<?= get_service_control_links($ssvc, true); ?></td> <?= get_service_control_links($ssvc, true); ?>
</tr> </div>
</table>
</td> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</table> </table>
</td>
</tr>
</table>
</div> </div>
<?php <?php
} }
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.");
}
if ((empty($clients)) && (empty($servers)) && (empty($sk_servers))) { if ((empty($clients)) && (empty($servers)) && (empty($sk_servers))) {
echo gettext("No OpenVPN instance defined"); echo gettext("No OpenVPN instance defined");
} }
?> ?>
</form> </form>
</div> </div>
</div>
</section> </section>
</div> </div>
</div> </div>
</section> </section>
<script type="text/javascript">
//<![CDATA[
function show_routes(id, buttonid) {
document.getElementById(buttonid).innerHTML='';
aodiv = document.getElementById(id);
aodiv.style.display = "block";
}
//]]>
</script>
<?php include("foot.inc"); ?> <?php include("foot.inc"); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment