1 |
b5b351be
|
Scott Ullrich
|
#!/usr/local/bin/php
|
2 |
aa280d10
|
Bill Marquette
|
<?php
|
3 |
b46bfcf5
|
Bill Marquette
|
/* $Id$ */
|
4 |
aa280d10
|
Bill Marquette
|
/*
|
5 |
|
|
status_queues.php
|
6 |
8dc950ac
|
Scott Ullrich
|
Part of the pfSense project
|
7 |
aa280d10
|
Bill Marquette
|
Copyright (C) 2004, 2005 Scott Ullrich
|
8 |
|
|
All rights reserved.
|
9 |
|
|
|
10 |
|
|
Redistribution and use in source and binary forms, with or without
|
11 |
|
|
modification, are permitted provided that the following conditions are met:
|
12 |
|
|
|
13 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
14 |
|
|
this list of conditions and the following disclaimer.
|
15 |
|
|
|
16 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
17 |
|
|
notice, this list of conditions and the following disclaimer in the
|
18 |
|
|
documentation and/or other materials provided with the distribution.
|
19 |
|
|
|
20 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
21 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
22 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
23 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
24 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
25 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
26 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
27 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
28 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
29 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
30 |
|
|
*/
|
31 |
|
|
|
32 |
|
|
require("guiconfig.inc");
|
33 |
|
|
|
34 |
c5d63426
|
Bill Marquette
|
if($_GET['reset'] <> "") {
|
35 |
7798b5eb
|
Scott Ullrich
|
mwexec("killall pfctl");
|
36 |
f8c2f4f5
|
Scott Ullrich
|
Header("Location: status_queues.php");
|
37 |
c5d63426
|
Bill Marquette
|
exit;
|
38 |
|
|
}
|
39 |
|
|
|
40 |
aa280d10
|
Bill Marquette
|
if (!is_array($config['shaper']['queue'])) {
|
41 |
|
|
$config['shaper']['queue'] = array();
|
42 |
|
|
}
|
43 |
|
|
|
44 |
4fc85b5d
|
Scott Ullrich
|
$a_queues = array();
|
45 |
|
|
|
46 |
|
|
$pfctl_vsq = `/sbin/pfctl -vsq`;
|
47 |
|
|
$pfctl_vsq_array = split("\n", $pfctl_vsq);
|
48 |
|
|
foreach($pfctl_vsq_array as $pfctl) {
|
49 |
|
|
if (preg_match_all("/queue\s+(\w+)\s+/",$pfctl,$match_array))
|
50 |
|
|
if(stristr($match_array[1][0],"root_")==false)
|
51 |
|
|
$a_queues[] = $match_array[1][0];
|
52 |
|
|
}
|
53 |
ad8d82ad
|
Scott Ullrich
|
|
54 |
d88c6a9f
|
Scott Ullrich
|
$pgtitle = array("Status","Traffic shaper","Queues");
|
55 |
4df96eff
|
Scott Ullrich
|
include("head.inc");
|
56 |
|
|
|
57 |
aa280d10
|
Bill Marquette
|
?>
|
58 |
|
|
|
59 |
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
60 |
|
|
<?php include("fbegin.inc"); ?>
|
61 |
d1dd0241
|
Scott Ullrich
|
<?php
|
62 |
acb63435
|
Scott Ullrich
|
if(!isset($config['shaper']['enable'])) {
|
63 |
d1dd0241
|
Scott Ullrich
|
echo "Traffic shaping is currently disabled.";
|
64 |
|
|
include("fend.inc");
|
65 |
|
|
exit;
|
66 |
|
|
}
|
67 |
|
|
?>
|
68 |
|
|
|
69 |
aa280d10
|
Bill Marquette
|
<form action="status_queues.php" method="post">
|
70 |
8dc950ac
|
Scott Ullrich
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
71 |
aa280d10
|
Bill Marquette
|
<tr>
|
72 |
8dc950ac
|
Scott Ullrich
|
<td class="listhdr" colspan="1">Queue</td>
|
73 |
|
|
<td class="listhdr" colspan="6">Statistics</td>
|
74 |
aa280d10
|
Bill Marquette
|
</tr>
|
75 |
|
|
<?php $i = 0; foreach ($a_queues as $queue): ?>
|
76 |
8dc950ac
|
Scott Ullrich
|
<tr><td bgcolor="#DDDDDD" colspan="7"> </td></tr>
|
77 |
aa280d10
|
Bill Marquette
|
<tr valign="top">
|
78 |
8dc950ac
|
Scott Ullrich
|
<td bgcolor="#DDDDDD">
|
79 |
69c4bf80
|
Bill Marquette
|
<font color="#000000"> <?echo "<a href=\"firewall_shaper_queues_edit.php?id={$queue}\">" . htmlspecialchars($queue) . "</a>";?> </td>
|
80 |
8dc950ac
|
Scott Ullrich
|
<td bgcolor="#DDDDDD">
|
81 |
|
|
<nobr>
|
82 |
aa280d10
|
Bill Marquette
|
<?php
|
83 |
|
|
$cpuUsage = 0;
|
84 |
677c0869
|
Erik Kristensen
|
echo "<img src='./themes/".$g['theme']."/images/misc/bar_left.gif' height='15' width='4' border='0' align='absmiddle'>";
|
85 |
|
|
echo "<img src='./themes/".$g['theme']."/images/misc/bar_blue.gif' height='15' name='queue{$i}widtha' id='queue{$i}widtha' width='" . $cpuUsage . "' border='0' align='absmiddle'>";
|
86 |
|
|
echo "<img src='./themes/".$g['theme']."/images/misc/bar_gray.gif' height='15' name='queue{$i}widthb' id='queue{$i}widthb' width='" . (400 - $cpuUsage) . "' border='0' align='absmiddle'>";
|
87 |
|
|
echo "<nobr><img src='./themes/".$g['theme']."/images/misc/bar_right.gif' height='15' width='5' border='0' align='absmiddle'> ";
|
88 |
8dc950ac
|
Scott Ullrich
|
echo "</nobr></td></tr>";
|
89 |
|
|
echo "<tr><td bgcolor=\"#DDDDDD\" colspan=\"7\">";
|
90 |
5f046df6
|
Scott Ullrich
|
echo " ";
|
91 |
8dc950ac
|
Scott Ullrich
|
echo "<nobr>";
|
92 |
5f046df6
|
Scott Ullrich
|
echo "<input style='border: 0px solid white; background-color:#DDDDDD; color:#000000;' size='15' name='queue{$i}pps' id='queue{$i}pps' value=' (Loading)' align='right'>";
|
93 |
8dc950ac
|
Scott Ullrich
|
echo "<input style='border: 0px solid white; background-color:#DDDDDD; color:#000000;' size='15' name='queue{$i}bps' id='queue{$i}bps' value='' align='right'>";
|
94 |
|
|
echo "<input style='border: 0px solid white; background-color:#DDDDDD; color:#000000;' size='15' name='queue{$i}borrows' id='queue{$i}borrows' value='' align='right'>";
|
95 |
|
|
echo "<input style='border: 0px solid white; background-color:#DDDDDD; color:#000000;' size='15' name='queue{$i}suspends' id='queue{$i}suspends' value='' align='right'>";
|
96 |
|
|
echo "<input style='border: 0px solid white; background-color:#DDDDDD; color:#000000;' size='15' name='queue{$i}drops' id='queue{$i}drops' value='' align='right'>";
|
97 |
|
|
echo "</nobr>";
|
98 |
aa280d10
|
Bill Marquette
|
?>
|
99 |
|
|
|
100 |
|
|
</td>
|
101 |
|
|
</tr>
|
102 |
8dc950ac
|
Scott Ullrich
|
<tr><td class="vncell" bgcolor="#DDDDDD" colspan="7"> </td></tr>
|
103 |
aa280d10
|
Bill Marquette
|
<?php $i++; endforeach; $total_queues = $i; ?>
|
104 |
|
|
</table>
|
105 |
|
|
<p>
|
106 |
|
|
<strong><span class="red">Note:</span></strong><strong><br></strong>
|
107 |
c55a8ab9
|
Holger Bauer
|
Queue graphs take 5 seconds to sample data.<br>
|
108 |
af32f939
|
Scott Ullrich
|
You can configure the Traffic Shaper <a href="firewall_shaper.php?reset=true">here</a>.
|
109 |
aa280d10
|
Bill Marquette
|
</p>
|
110 |
|
|
</form>
|
111 |
c5d63426
|
Bill Marquette
|
<br><a href="status_queues.php?reset=true">Reset</a> queues if they do not load.
|
112 |
fda1fdae
|
Scott Ullrich
|
|
113 |
aa280d10
|
Bill Marquette
|
<?php include("fend.inc"); ?>
|
114 |
|
|
</body>
|
115 |
|
|
</html>
|
116 |
|
|
|
117 |
|
|
<?php
|
118 |
|
|
|
119 |
c6e4761c
|
Scott Ullrich
|
ob_flush();
|
120 |
|
|
|
121 |
aa280d10
|
Bill Marquette
|
sleep(3);
|
122 |
|
|
|
123 |
|
|
$counter = 0;
|
124 |
|
|
While(!Connection_Aborted()) {
|
125 |
|
|
|
126 |
|
|
$stats_array = gather_altq_queue_stats(true);
|
127 |
|
|
|
128 |
|
|
/* calculate total packets being moved through all queues. */
|
129 |
|
|
$total_packets_s = 0;
|
130 |
|
|
foreach($stats_array as $stats_line) {
|
131 |
|
|
$stat_line_split = split("\|", $stats_line);
|
132 |
|
|
$total_packets_s = $total_packets_s + intval($stat_line_split[2]);
|
133 |
|
|
}
|
134 |
|
|
|
135 |
|
|
$i = 0;
|
136 |
|
|
foreach($stats_array as $stats_line) {
|
137 |
|
|
if($stat_line_split[2] == "" and $counter > 1) {
|
138 |
7798b5eb
|
Scott Ullrich
|
mwexec("/usr/bin/killall pfctl");
|
139 |
aa280d10
|
Bill Marquette
|
exit;
|
140 |
|
|
}
|
141 |
|
|
|
142 |
|
|
$stat_line_split = split("\|", $stats_line);
|
143 |
|
|
$packet_sampled = intval($stat_line_split[2]);
|
144 |
|
|
$speed = $stat_line_split[1];
|
145 |
|
|
$borrows = intval($stat_line_split[3]);
|
146 |
4bed294c
|
Bill Marquette
|
$suspends = intval($stat_line_split[4]);
|
147 |
04e6e7b7
|
Bill Marquette
|
$drops = intval($stat_line_split[5]);
|
148 |
aa280d10
|
Bill Marquette
|
|
149 |
|
|
echo "<script language='javascript'>\n";
|
150 |
|
|
|
151 |
b5b351be
|
Scott Ullrich
|
$packet_s = round(400 * (1 - $packet_sampled / $total_packets_s), 0);
|
152 |
aa280d10
|
Bill Marquette
|
|
153 |
bff31246
|
Erik Kristensen
|
echo "document.queue{$i}widthb.style.width='{$packet_s}px';\n";
|
154 |
|
|
echo "document.queue{$i}widtha.style.width='" . (400 - $packet_s) . "px';\n";
|
155 |
efc68cca
|
Bill Marquette
|
$borrows_txt = "{$borrows} borrows";
|
156 |
|
|
$suspends_txt = "{$suspends} suspends";
|
157 |
|
|
$drops_txt = "${drops} drops";
|
158 |
|
|
echo "document.forms[0].queue{$i}pps.value = '{$packet_sampled}/pps';\n";
|
159 |
|
|
echo "document.forms[0].queue{$i}bps.value = '{$speed}';\n";
|
160 |
|
|
echo "document.forms[0].queue{$i}borrows.value = '{$borrows_txt}';\n";
|
161 |
|
|
echo "document.forms[0].queue{$i}suspends.value = '{$suspends_txt}';\n";
|
162 |
|
|
echo "document.forms[0].queue{$i}drops.value = '{$drops_txt}';\n";
|
163 |
aa280d10
|
Bill Marquette
|
echo "</script>\n";
|
164 |
|
|
$i++;
|
165 |
|
|
}
|
166 |
|
|
|
167 |
|
|
/*
|
168 |
|
|
* prevent user from running out of ram.
|
169 |
|
|
* firefox and ie can be a bear on ram usage!
|
170 |
|
|
*/
|
171 |
|
|
$counter++;
|
172 |
ced218cd
|
Scott Ullrich
|
if($counter > 100) {
|
173 |
aa280d10
|
Bill Marquette
|
echo "Redirecting to <a href=\"status_queues.php\">Queue Status</a>.<p>";
|
174 |
555d3758
|
Scott Ullrich
|
echo "<meta http-equiv=\"refresh\" content=\"1;url={$_SERVER['SCRIPT_NAME']}\">";
|
175 |
c0bdca0c
|
Scott Ullrich
|
mwexec("/usr/bin/killall pfctl");
|
176 |
7798b5eb
|
Scott Ullrich
|
mwexec("/usr/bin/killall pfctl");
|
177 |
aa280d10
|
Bill Marquette
|
exit;
|
178 |
|
|
}
|
179 |
|
|
}
|
180 |
|
|
|
181 |
7798b5eb
|
Scott Ullrich
|
mwexec("/usr/bin/killall pfctl");
|
182 |
|
|
mwexec("/usr/bin/killall pfctl");
|
183 |
aa280d10
|
Bill Marquette
|
|
184 |
b5b351be
|
Scott Ullrich
|
?>
|