Projet

Général

Profil

Télécharger (6,22 ko) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / www / diag_states_summary.php @ c245a846

1
<?php
2
/*
3
	diag_states_summary.php
4
	Copyright (C) 2010-2014 Jim Pingle
5

    
6
	Portions borrowed from diag_dump_states.php:
7
	Copyright (C) 2005-2009 Scott Ullrich
8
	Copyright (C) 2005 Colin Smith
9
	All rights reserved.
10

    
11
	Redistribution and use in source and binary forms, with or without
12
	modification, are permitted provided that the following conditions are met:
13

    
14
	1. Redistributions of source code must retain the above copyright notice,
15
	   this list of conditions and the following disclaimer.
16

    
17
	2. Redistributions in binary form must reproduce the above copyright
18
	   notice, this list of conditions and the following disclaimer in the
19
	   documentation and/or other materials provided with the distribution.
20

    
21
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
22
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
23
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
25
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
	POSSIBILITY OF SUCH DAMAGE.
31
*/
32

    
33
/*
34
	pfSense_BUILDER_BINARIES:	/sbin/pfctl
35
	pfSense_MODULE:	filter
36
*/
37

    
38
##|+PRIV
39
##|*IDENT=page-diagnostics-statessummary
40
##|*NAME=Diagnostics: States Summary page
41
##|*DESCR=Allow access to the 'Diagnostics: States Summary' page.
42
##|*MATCH=diag_states_summary.php*
43
##|-PRIV
44

    
45
exec("/sbin/pfctl -s state", $states);
46

    
47
$srcipinfo = array();
48
$dstipinfo = array();
49
$allipinfo = array();
50
$pairipinfo = array();
51

    
52
function addipinfo(&$iparr, $ip, $proto, $srcport, $dstport) {
53
	$iparr[$ip]['seen']++;
54
	$iparr[$ip]['protos'][$proto]['seen']++;
55
	if (!empty($srcport)) {
56
		$iparr[$ip]['protos'][$proto]['srcports'][$srcport]++;
57
	}
58
	if (!empty($dstport)) {
59
		$iparr[$ip]['protos'][$proto]['dstports'][$dstport]++;
60
	}
61
}
62

    
63
$row = 0;
64
if(count($states) > 0) {
65
	foreach($states as $line) {
66
		$line_split = preg_split("/\s+/", $line);
67
		$iface = array_shift($line_split);
68
		$proto = array_shift($line_split);
69
		$state = array_pop($line_split);
70
		$info  = implode(" ", $line_split);
71

    
72
		/* Handle NAT cases
73
			Replaces an external IP + NAT by the internal IP */
74
		if (strpos($info, ') ->') !== FALSE) {
75
			/* Outbound NAT */
76
			$info = preg_replace('/(\S+) \((\S+)\)/U', "$2", $info);
77
		} elseif (strpos($info, ') <-') !== FALSE) {
78
			/* Inbound NAT/Port Forward */
79
			$info = preg_replace('/(\S+) \((\S+)\)/U', "$1", $info);
80
		}
81

    
82
		/* break up info and extract $srcip and $dstip */
83
		$ends = preg_split("/\<?-\>?/", $info);
84

    
85
		if (strpos($info, '->') === FALSE) {
86
			$srcinfo = $ends[count($ends) - 1];
87
			$dstinfo = $ends[0];
88
		} else {
89
			$srcinfo = $ends[0];
90
			$dstinfo = $ends[count($ends) - 1];
91
		}
92

    
93
		/* Handle IPv6 */
94
		$parts = explode(":", $srcinfo);
95
		$partcount = count($parts);
96
		if ($partcount <= 2) {
97
			$srcip = trim($parts[0]);
98
			$srcport = trim($parts[1]);
99
		} else {
100
			preg_match("/([0-9a-f:]+)(\[([0-9]+)\])?/i", $srcinfo, $matches);
101
			$srcip = $matches[1];
102
			$srcport = trim($matches[3]);
103
		}
104

    
105
		$parts = explode(":", $dstinfo);
106
		$partcount = count($parts);
107
		if ($partcount <= 2) {
108
			$dstip = trim($parts[0]);
109
			$dstport = trim($parts[1]);
110
		} else {
111
			preg_match("/([0-9a-f:]+)(\[([0-9]+)\])?/i", $dstinfo, $matches);
112
			$dstip = $matches[1];
113
			$dstport = trim($matches[3]);
114
		}
115

    
116
		addipinfo($srcipinfo, $srcip, $proto, $srcport, $dstport);
117
		addipinfo($dstipinfo, $dstip, $proto, $srcport, $dstport);
118
		addipinfo($pairipinfo, "{$srcip} -> {$dstip}", $proto, $srcport, $dstport);
119

    
120
		addipinfo($allipinfo, $srcip, $proto, $srcport, $dstport);
121
		addipinfo($allipinfo, $dstip, $proto, $srcport, $dstport);
122

    
123
	}
124
}
125

    
126
function sort_by_ip($a, $b) {
127
	return ip2ulong($a) < ip2ulong($b) ? -1 : 1;
128
}
129

    
130
function build_port_info($portarr, $proto) {
131
	if (!$portarr)
132
		return '';
133
	$ports = array();
134
	asort($portarr);
135
	foreach (array_reverse($portarr, TRUE) as $port => $count) {
136
		$str = "";
137
		$service = getservbyport($port, strtolower($proto));
138
		$port = "{$proto}/{$port}";
139
		if ($service)
140
			$port = "{$port} ({$service})";
141
		$ports[] = "{$port}: {$count}";
142
	}
143
	return implode($ports, ', ');
144
}
145

    
146
function print_summary_table($label, $iparr, $sort = TRUE) { ?>
147

    
148
<h3><?php echo $label; ?></h3>
149
<table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0" summary="states summary">
150
	<tr>
151
		<td class="listhdrr"><?=gettext("IP");?></td>
152
		<td class="listhdrr"># <?=gettext("States");?></td>
153
		<td class="listhdrr"><?=gettext("Proto");?></td>
154
		<td class="listhdrr"># <?=gettext("States");?></td>
155
		<td class="listhdrr"><?=gettext("Src Ports");?></td>
156
		<td class="listhdrr"><?=gettext("Dst Ports");?></td>
157
	</tr>
158
<?php   if ($sort)
159
		uksort($iparr, "sort_by_ip");
160
	foreach($iparr as $ip => $ipinfo) { ?>
161
	<tr>
162
		<td class="vncell"><?php echo $ip; ?></td>
163
		<td class="vncell"><?php echo $ipinfo['seen']; ?></td>
164
		<td class="vncell">&nbsp;</td>
165
		<td class="vncell">&nbsp;</td>
166
		<td class="vncell">&nbsp;</td>
167
		<td class="vncell">&nbsp;</td>
168
	</tr>
169
	<?php foreach($ipinfo['protos'] as $proto => $protoinfo) { ?>
170
	<tr>
171
		<td class="list">&nbsp;</td>
172
		<td class="list">&nbsp;</td>
173
		<td class="listlr"><?php echo $proto; ?></td>
174
		<td class="listr" align="center"><?php echo $protoinfo['seen']; ?></td>
175
		<td class="listr" align="center"><span title="<?php echo build_port_info($protoinfo['srcports'], $proto); ?>"><?php echo count($protoinfo['srcports']); ?></span></td>
176
		<td class="listr" align="center"><span title="<?php echo build_port_info($protoinfo['dstports'], $proto); ?>"><?php echo count($protoinfo['dstports']); ?></span></td>
177
	</tr>
178
	<?php } ?>
179
<?php } ?>
180

    
181
</table>
182

    
183
<?php
184
}
185

    
186
$pgtitle = array(gettext("Diagnostics"),gettext("State Table Summary"));
187
require_once("guiconfig.inc");
188
include("head.inc");
189
echo "<body>";
190
include("fbegin.inc");
191

    
192

    
193
print_summary_table(gettext("By Source IP"), $srcipinfo);
194
print_summary_table(gettext("By Destination IP"), $dstipinfo);
195
print_summary_table(gettext("Total per IP"), $allipinfo);
196
print_summary_table(gettext("By IP Pair"), $pairipinfo, FALSE);
197
?>
198

    
199
<?php include("fend.inc"); ?>
200
</body>
201
</html>
(47-47/255)