diag_logs_ipsec.php 4.02 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 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
	Copyright (C) 2004-2009 Scott Ullrich
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	All rights reserved.

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

31
require_once("guiconfig.inc");
32
require_once("vpn.inc");
33
require_once("services.inc");
34
require_once("system.inc");
35
require_once("interfaces.inc");
36

Ad Schellevis's avatar
Ad Schellevis committed
37

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
function return_clog($logfile, $tail, $withorig = true, $grepfor = "", $grepinvert = "", $grepreverse = false) {
	global $g, $config;
	$sor = (isset($config['syslog']['reverse']) || $grepreverse) ? "-r" : "";
	$logarr = "";
	$grepline = "  ";
	if(is_array($grepfor))
		$grepline .= " | /usr/bin/egrep " . escapeshellarg(implode("|", $grepfor));
	if(is_array($grepinvert))
		$grepline .= " | /usr/bin/egrep -v " . escapeshellarg(implode("|", $grepinvert));
	if($config['system']['disablesyslogclog']) {
		exec("cat " . escapeshellarg($logfile) . "{$grepline} | /usr/bin/tail {$sor} -n " . escapeshellarg($tail), $logarr);
	} else {
		exec("/usr/local/sbin/clog " . escapeshellarg($logfile) . "{$grepline}| grep -v \"CLOG\" | grep -v \"\033\" | /usr/bin/tail {$sor} -n " . escapeshellarg($tail), $logarr);
	}
	return($logarr);
}


56
$ipsec_logfile = '/var/log/ipsec.log';
Ad Schellevis's avatar
Ad Schellevis committed
57 58

$nentries = $config['syslog']['nentries'];
59
if (!$nentries) {
Ad Schellevis's avatar
Ad Schellevis committed
60
	$nentries = 50;
61
}
Ad Schellevis's avatar
Ad Schellevis committed
62

63
if ($_POST['clear']) {
Ad Schellevis's avatar
Ad Schellevis committed
64
	clear_log_file($ipsec_logfile);
65
}
Ad Schellevis's avatar
Ad Schellevis committed
66 67 68 69 70 71 72 73

$ipsec_logarr = return_clog($ipsec_logfile, $nentries);

$pgtitle = array(gettext("Status"),gettext("System logs"),gettext("IPsec VPN"));
$shortcut_section = "ipsec";
include("head.inc");

?>
74 75 76


<body>
Ad Schellevis's avatar
Ad Schellevis committed
77
<?php include("fbegin.inc"); ?>
78 79

	<section class="page-content-main">
80
		<div class="container-fluid">
81
			<div class="row">
82

83
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
84

85
			    <section class="col-xs-12">
86 87


88
					<? include('diag_logs_tabs.inc'); ?>
89 90 91 92 93 94 95


						<div class="tab-content content-box col-xs-12">
					    <div class="container-fluid">

							<p>  <?php printf(gettext("Last %s  IPsec log entries"),$nentries);?></p>

96
								 <div class="table-responsive">
97 98
									<table class="table table-striped table-sort">
										<?php
99 100 101 102 103 104 105 106 107 108
										foreach($ipsec_logarr as $logent){
											$logent = htmlspecialchars($logent);
											$logent = preg_split("/\s+/", $logent, 6);
											echo "<tr valign=\"top\">\n";
											$entry_date_time = htmlspecialchars(join(" ", array_slice($logent, 0, 3)));
											echo "<td class=\"listlr nowrap\">" . $entry_date_time  . "</td>\n";
											echo "<td class=\"listr\">" . $logent[4] . " " . $logent[5] . "</td>\n";
											echo "</tr>\n";
										}
										?>
109
									</table>
110
								 </div>
111

112 113 114
								<form action="diag_logs_ipsec.php" method="post">
									<input name="clear" type="submit" class="btn" value="<?= gettext("Clear log");?>" />
								</form>
115 116 117

						</div>
				    </div>
118
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
119
			</div>
120 121
		</div>
	</section>
122 123

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