aboutsummaryrefslogtreecommitdiffstats
path: root/config/squidGuard/squidguard.inc
diff options
context:
space:
mode:
authordvserg <dv_serg@mail.ru>2011-02-17 06:15:45 +0300
committerdvserg <dv_serg@mail.ru>2011-02-17 06:15:45 +0300
commit8633628b5abe10a03528ee8d0f3da12451d5f9e4 (patch)
tree372a6ce792c6214e99e14222348385be7a386f9e /config/squidGuard/squidguard.inc
parent5793cd080d1ba0ad5cd7b16f2d6680ce61150afd (diff)
downloadpfsense-packages-8633628b5abe10a03528ee8d0f3da12451d5f9e4.tar.gz
pfsense-packages-8633628b5abe10a03528ee8d0f3da12451d5f9e4.tar.bz2
pfsense-packages-8633628b5abe10a03528ee8d0f3da12451d5f9e4.zip
squidGuard log changes
Diffstat (limited to 'config/squidGuard/squidguard.inc')
-rw-r--r--config/squidGuard/squidguard.inc136
1 files changed, 82 insertions, 54 deletions
diff --git a/config/squidGuard/squidguard.inc b/config/squidGuard/squidguard.inc
index fe903b39..c1680adb 100644
--- a/config/squidGuard/squidguard.inc
+++ b/config/squidGuard/squidguard.inc
@@ -1257,6 +1257,88 @@ function squidguard_adt_safesrch_add($rewrite_item)
return $rewrite_item;
}
+# log dump
+function squidguard_logdump($filename, $lnoffset, $lncount, $reverse)
+{
+ define('LOGSHOW_BUFSIZE', '65536');
+ $cnt = '';
+
+ if (file_exists($filename)) {
+ $fh = fopen($filename, "r");
+ if ($fh) {
+ $fsize = filesize($filename);
+
+ # take LOGSHOW_BUFSIZE bytes from end
+ if ($fsize > LOGSHOW_BUFSIZE)
+ fseek($fh, -LOGSHOW_BUFSIZE, SEEK_END);
+ $cnt = fread($fh, LOGSHOW_BUFSIZE);
+
+ fclose($fh);
+ }
+ }
+
+ $cnt = explode( "\n", $cnt );
+
+ # delete broken first element
+ array_shift($cnt);
+
+ # offset must be >= 0 and can't be > count($cnt)
+ $lnoffset = $lnoffset >= 0 ? $lnoffset : 0;
+ $lnoffset = ($lnoffset + $lncount) < count($cnt) ? $lnoffset : 0;
+
+ $pos = ($lncount + $lnoffset);
+
+ # take elements from end of array
+ $cnt = array_slice($cnt, -$pos, $lncount);
+
+ # reverse array order
+ if ($reverse) $cnt = array_reverse( $cnt );
+
+ return $cnt;
+}
+
+# dump SG log
+function squidguard_filterdump($lnoffset, $lncount, $reverse)
+{
+ $res = array();
+ $cont = squidguard_logdump(SQUIDGUARD_LOGDIR . '/squidGuard.log', &$lnoffset, $lncount, $reverse);
+
+ foreach($cont as $cn) {
+ $cn = explode(" ", trim($cn), 4);
+ $res[] = array( "{$cn[0]} {$cn[1]}", $cn[3] );
+ }
+
+ return $res;
+}
+
+# dump SG Gui log
+function squidguard_guidump($lnoffset, $lncount, $reverse)
+{
+ $res = array();
+ $cont = squidguard_logdump(SQUIDGUARD_LOGDIR . SQUIDGUARD_CONFLOGFILE, &$lnoffset, $lncount, $reverse);
+
+ foreach($cont as $cn) {
+ $cn = explode(" ", trim($cn), 4);
+ $res[] = array( "{$cn[0]} {$cn[1]}", $cn[3] );
+ }
+
+ return $res;
+}
+
+# dump SG blocked
+function squidguard_blockdump($lnoffset, $lncount, $reverse)
+{
+ $res = array();
+ $cont = squidguard_logdump(SQUIDGUARD_LOGDIR . '/' . SQUIDGUARD_LOGFILE, &$lnoffset, $lncount, $reverse);
+
+ foreach($cont as $cn) {
+ $cn = explode(" ", trim($cn), 9);
+ $res[] = array( "{$cn[0]} {$cn[1]}", $cn[5], $cn[4], "{$cn[3]} {$cn[6]} {$cn[7]} {$cn[8]}");
+ }
+
+ return $res;
+}
+
# get squid config list
function squidguard_squid_conflist( )
{
@@ -1283,60 +1365,6 @@ function squidguard_conflist( )
return $res;
}
-# get squidguard log report
-
-define('LOGSHOW_BUFSIZE', '16384');
-
-function squidguard_logrep( $filename, $lncount, $reverse )
-{
- $res = "";
-
- $lncount = $lncount ? $lncount : 50;
- $reverse = $reverse ? $reverse : false;
-
- if (file_exists($filename)) {
- $fh = fopen($filename, "r");
- if ($fh) {
- $fsize = filesize($filename);
- # take LOGSHOW_BUFSIZE bytes from end
- if ($fsize > LOGSHOW_BUFSIZE)
- fseek($fh, -LOGSHOW_BUFSIZE, SEEK_END);
- $cont = fread($fh, LOGSHOW_BUFSIZE);
- fclose($fh);
- }
-
- $cont = explode( "\n", $cont );
- $cont = array_slice($cont, -$lncount);
-
- if ($reverse) $cont = array_reverse( $cont );
-
- $res .= "<table class='tabcont' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
- $res .= "<tr><td nowrap class='listtopic' colspan='2'>Last {$lncount} entries</td></tr>\n";
- foreach($cont as $cn) {
- $cn = trim($cn);
- if ($cn) {
- $cn = explode(" ", $cn, 4);
-
- # split strings
- $p = 0;
- $pstep = 15;
- $str = $cn[3];
- $cn[3] = "";
- for ( $p = 0; $p < strlen($str); $p += $pstep ) {
- $s = substr( $str, $p, $pstep );
- if ( !$s ) break;
- $cn[3] .= $s . "<wbr/>";
- }
-
- $res .= "<tr><td nowrap class='listlr'>{$cn[0]} {$cn[1]}</td><td class='listr'>{$cn[3]}</td></tr>";
- }
- }
- $res .= "</table>";
- }
-
- return $res;
-}
-
# get blacklist list
function squidguard_blacklist_list()
{