status_wireless.php 6.61 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 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
	Copyright (C) 2004 Scott Ullrich
	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.
*/

require_once("guiconfig.inc");
30
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

$pgtitle = array(gettext("Status"),gettext("Wireless"));
$shortcut_section = "wireless";
include("head.inc");

$if = $_POST['if'];
if($_GET['if'] <> "")
	$if = $_GET['if'];

$ciflist = get_configured_interface_with_descr();
if(empty($if)) {
	/* Find the first interface
	   that is wireless */
	foreach($ciflist as $interface => $ifdescr) {
		if(is_interface_wireless(get_real_interface($interface))) {
			$if = $interface;
			break;
		}
	}
}
?>

Ad Schellevis's avatar
Ad Schellevis committed
53 54 55 56 57 58
<body>
<?php include("fbegin.inc"); ?>

	<section class="page-content-main">

		<div class="container-fluid">
59 60

			<div class="row">
61
				<?php if (isset($savemsg)) print_info_box($savemsg); ?>
Ad Schellevis's avatar
Ad Schellevis committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
				<?php
					$tab_array = array();
					foreach($ciflist as $interface => $ifdescr) {
						if (is_interface_wireless(get_real_interface($interface))) {
							$enabled = false;
							if($if == $interface)
								$enabled = true;
							$tab_array[] = array(gettext("Status") . " ({$ifdescr})", $enabled, "status_wireless.php?if={$interface}");
						}
					}
					$rwlif = get_real_interface($if);
					if($_POST['rescanwifi'] <> "") {
						mwexec_bg("/sbin/ifconfig {$rwlif} scan 2>&1");
						$savemsg = gettext("Rescan has been initiated in the background. Refresh this page in 10 seconds to see the results.");
					}
77
					if (isset($savemsg)) print_info_box($savemsg);
Ad Schellevis's avatar
Ad Schellevis committed
78 79 80 81
					display_top_tabs($tab_array);
				?>

			    <section class="col-xs-12">
82 83 84

				<div class="content-box">

Ad Schellevis's avatar
Ad Schellevis committed
85
                        <form action="status_wireless.php" method="post" name="iform" id="iform">
86 87 88 89
	                        <input type="hidden" name="if" id="if" value="<?php echo htmlspecialchars($if); ?>">

				<div class="col-xs-12">
					<input type="submit" name="rescanwifi" id="rescanwifi" value="Rescan" class="btn btn-primary"/>
Ad Schellevis's avatar
Ad Schellevis committed
90
								<p><?php echo gettext("Nearby access points or ad-hoc peers"); ?></p>
91 92 93 94
				</div>

				<div class="table-responsive">
					<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
									<thead>
										<tr>
											<td>SSID</td>
											<td>BSSID</td>
											<td>CHAN</td>
											<td>RATE</td>
											<td>RSSI</td>
											<td>INT</td>
											<td>CAPS</td>
										</tr>
									</thead>
									<tbody>
									<?php
										exec("/sbin/ifconfig {$rwlif} list scan 2>&1", $states, $ret);
										/* Skip Header */
										array_shift($states);
111

Ad Schellevis's avatar
Ad Schellevis committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125
										$counter=0;
										foreach($states as $state) {
											/* Split by Mac address for the SSID Field */
											$split = preg_split("/([0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f])/i", $state);
											preg_match("/([0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f]\:[0-9a-f][[0-9a-f])/i", $state, $bssid);
											$ssid = htmlspecialchars($split[0]);
											$bssid = $bssid[0];
											/* Split the rest by using spaces for this line using the 2nd part */
											$split = preg_split("/[ ]+/i", $split[1]);
											$channel = $split[1];
											$rate = $split[2];
											$rssi = $split[3];
											$int = $split[4];
											$caps = "$split[5] $split[6] $split[7] $split[8] $split[9] $split[10] $split[11] ";
126

Ad Schellevis's avatar
Ad Schellevis committed
127 128 129 130 131 132 133 134 135 136 137 138 139
											print "<tr>";
											print "<td>{$ssid}</td>";
											print "<td>{$bssid}</td>";
											print "<td>{$channel}</td>";
											print "<td>{$rate}</td>";
											print "<td>{$rssi}</td>";
											print "<td>{$int}</td>";
											print "<td>{$caps}</td>";
											print "</tr>\n";
										}
									?>
										</tbody>
									</table>
140 141
				</div>
				<div class="table-responsive">
Ad Schellevis's avatar
Ad Schellevis committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
								<p><?php echo gettext("Associated or ad-hoc peers"); ?></p>
								<table class="table table-striped sortable" colspan="3" cellpadding="3" width="100%">
									<thead>
										<tr>
											<td>ADDR</td>
											<td>AID</td>
											<td>CHAN</td>
											<td>RATE</td>
											<td>RSSI</td>
											<td>IDLE</td>
											<td>TXSEQ</td>
											<td>RXSEQ</td>
											<td>CAPS</td>
											<td>ERP</td>
										</tr>
									</thead>
									<tbody>
159

Ad Schellevis's avatar
Ad Schellevis committed
160 161 162 163
								<?php
									$states = array();
									exec("/sbin/ifconfig {$rwlif} list sta 2>&1", $states, $ret);
									array_shift($states);
164

Ad Schellevis's avatar
Ad Schellevis committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
									$counter=0;
									foreach($states as $state) {
										$split = preg_split("/[ ]+/i", $state);
										/* Split the rest by using spaces for this line using the 2nd part */
										print "<tr>";
										print "<td>{$split[0]}</td>";
										print "<td>{$split[1]}</td>";
										print "<td>{$split[2]}</td>";
										print "<td>{$split[3]}</td>";
										print "<td>{$split[4]}</td>";
										print "<td>{$split[5]}</td>";
										print "<td>{$split[6]}</td>";
										print "<td>{$split[7]}</td>";
										print "<td>{$split[8]}</td>";
										print "<td>{$split[9]}</td>";
										print "</tr>\n";
									}
182

Ad Schellevis's avatar
Ad Schellevis committed
183
								/* XXX: what stats to we get for adhoc mode? */
184

Ad Schellevis's avatar
Ad Schellevis committed
185 186 187
								?>
									</tbody>
								</table>
188 189 190
				</div>

				<b>Flags:</b> A = authorized, E = Extended Rate (802.11g), P = Power save mode<br />
Ad Schellevis's avatar
Ad Schellevis committed
191 192
	<b>Capabilities:</b> E = ESS (infrastructure mode), I = IBSS (ad-hoc mode), P = privacy (WEP/TKIP/AES),
		S = Short preamble, s = Short slot time
Ad Schellevis's avatar
Ad Schellevis committed
193
                        </form>
194
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
195 196 197 198 199
			    </section>
			</div>
		</div>
	</section>

200 201

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