status_dhcp_leases.php 15.8 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.
5
	Copyright (C) 2004-2009 Scott Ullrich <sullrich@gmail.com>
Ad Schellevis's avatar
Ad Schellevis committed
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) 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");
Ad Schellevis's avatar
Ad Schellevis committed
32
require_once("config.inc");
33
require_once("services.inc");
34
require_once("pfsense-utils.inc");
35
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
36

37
$service_hook = 'dhcpd';
Ad Schellevis's avatar
Ad Schellevis committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

$leasesfile = "{$g['dhcpd_chroot_path']}/var/db/dhcpd.leases";

if (($_GET['deleteip']) && (is_ipaddr($_GET['deleteip']))) {
	/* Stop DHCPD */
	killbyname("dhcpd");

	/* Read existing leases */
	/* $leases_contents has the lines of the file, including the newline char at the end of each line. */
	$leases_contents = file($leasesfile);
	$newleases_contents = array();
	$i=0;
	while ($i < count($leases_contents)) {
		/* Find the lease(s) we want to delete */
		if ($leases_contents[$i] == "lease {$_GET['deleteip']} {\n") {
			/* Skip to the end of the lease declaration */
			do {
				$i++;
			} while ($leases_contents[$i] != "}\n");
		} else {
			/* It's a line we want to keep, copy it over. */
			$newleases_contents[] = $leases_contents[$i];
		}
		$i++;
	}

	/* Write out the new leases file */
	$fd = fopen($leasesfile, 'w');
	fwrite($fd, implode("\n", $newleases_contents));
	fclose($fd);

	/* Restart DHCP Service */
	services_dhcpd_configure();
	header("Location: status_dhcp_leases.php?all={$_GET['all']}");
}

include("head.inc");

?>

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

<section class="page-content-main">
82
	<div class="container-fluid">
83
		<div class="row">
84

85

Ad Schellevis's avatar
Ad Schellevis committed
86 87
<?php

88 89
function leasecmp($a, $b)
{
Ad Schellevis's avatar
Ad Schellevis committed
90 91 92
        return strcmp($a[$_GET['order']], $b[$_GET['order']]);
}

93 94
function adjust_gmt($dt)
{
95
	global $config;
96 97 98 99 100 101

	$dhcpd = array();
	if (isset($config['dhcpd'])) {
		$dhcpd = $config['dhcpd'];
	}

Ad Schellevis's avatar
Ad Schellevis committed
102 103
	foreach ($dhcpd as $dhcpditem) {
		$dhcpleaseinlocaltime = $dhcpditem['dhcpleaseinlocaltime'];
104
		if ($dhcpleaseinlocaltime == "yes")
Ad Schellevis's avatar
Ad Schellevis committed
105 106
			break;
	}
107

Ad Schellevis's avatar
Ad Schellevis committed
108 109 110
	if ($dhcpleaseinlocaltime == "yes") {
		$ts = strtotime($dt . " GMT");
		return strftime("%Y/%m/%d %I:%M:%S%p", $ts);
111 112 113
	}

	return $dt;
Ad Schellevis's avatar
Ad Schellevis committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
}

function remove_duplicate($array, $field)
{
  foreach ($array as $sub)
   $cmp[] = $sub[$field];
  $unique = array_unique(array_reverse($cmp,true));
  foreach ($unique as $k => $rien)
   $new[] = $array[$k];
  return $new;
}

$awk = "/usr/bin/awk";
/* this pattern sticks comments into a single array item */
$cleanpattern = "'{ gsub(\"#.*\", \"\");} { gsub(\";\", \"\"); print;}'";
/* We then split the leases file by } */
$splitpattern = "'BEGIN { RS=\"}\";} {for (i=1; i<=NF; i++) printf \"%s \", \$i; printf \"}\\n\";}'";

/* stuff the leases file in a proper format into a array by line */
exec("/bin/cat {$leasesfile} | {$awk} {$cleanpattern} | {$awk} {$splitpattern}", $leases_content);
$leases_count = count($leases_content);
exec("/usr/sbin/arp -an", $rawdata);
$arpdata_ip = array();
$arpdata_mac = array();
foreach ($rawdata as $line) {
	$elements = explode(' ',$line);
	if ($elements[3] != "(incomplete)") {
		$arpent = array();
		$arpdata_ip[] = trim(str_replace(array('(',')'),'',$elements[1]));
		$arpdata_mac[] = strtolower(trim($elements[3]));
	}
}
unset($rawdata);
$pools = array();
$leases = array();
$i = 0;
$l = 0;
$p = 0;

// Put everything together again
foreach($leases_content as $lease) {
	/* split the line by space */
	$data = explode(" ", $lease);
	/* walk the fields */
	$f = 0;
	$fcount = count($data);
	/* with less then 20 fields there is nothing useful */
	if($fcount < 20) {
		$i++;
		continue;
	}
	while($f < $fcount) {
		switch($data[$f]) {
			case "failover":
				$pools[$p]['name'] = trim($data[$f+2], '"');
				$pools[$p]['name'] = "{$pools[$p]['name']} (" . convert_friendly_interface_to_friendly_descr(substr($pools[$p]['name'], 5)) . ")";
				$pools[$p]['mystate'] = $data[$f+7];
				$pools[$p]['peerstate'] = $data[$f+14];
				$pools[$p]['mydate'] = $data[$f+10];
				$pools[$p]['mydate'] .= " " . $data[$f+11];
				$pools[$p]['peerdate'] = $data[$f+17];
				$pools[$p]['peerdate'] .= " " . $data[$f+18];
				$p++;
				$i++;
				continue 3;
			case "lease":
				$leases[$l]['ip'] = $data[$f+1];
				$leases[$l]['type'] = "dynamic";
				$f = $f+2;
				break;
			case "starts":
				$leases[$l]['start'] = $data[$f+2];
				$leases[$l]['start'] .= " " . $data[$f+3];
				$f = $f+3;
				break;
			case "ends":
				$leases[$l]['end'] = $data[$f+2];
				$leases[$l]['end'] .= " " . $data[$f+3];
				$f = $f+3;
				break;
			case "tstp":
				$f = $f+3;
				break;
			case "tsfp":
				$f = $f+3;
				break;
			case "atsfp":
				$f = $f+3;
				break;
			case "cltt":
				$f = $f+3;
				break;
			case "binding":
				switch($data[$f+2]) {
					case "active":
						$leases[$l]['act'] = "active";
						break;
					case "free":
						$leases[$l]['act'] = "expired";
						$leases[$l]['online'] = "offline";
						break;
					case "backup":
						$leases[$l]['act'] = "reserved";
						$leases[$l]['online'] = "offline";
						break;
				}
				$f = $f+1;
				break;
			case "next":
				/* skip the next binding statement */
				$f = $f+3;
				break;
			case "rewind":
				/* skip the rewind binding statement */
				$f = $f+3;
				break;
			case "hardware":
				$leases[$l]['mac'] = $data[$f+2];
				/* check if it's online and the lease is active */
				if (in_array($leases[$l]['ip'], $arpdata_ip)) {
					$leases[$l]['online'] = 'online';
				} else {
					$leases[$l]['online'] = 'offline';
				}
				$f = $f+2;
				break;
			case "client-hostname":
				if($data[$f+1] <> "") {
					$leases[$l]['hostname'] = preg_replace('/"/','',$data[$f+1]);
				} else {
					$hostname = gethostbyaddr($leases[$l]['ip']);
					if($hostname <> "") {
						$leases[$l]['hostname'] = $hostname;
					}
				}
				$f = $f+1;
				break;
			case "uid":
				$f = $f+1;
				break;
		}
		$f++;
	}
	$l++;
	$i++;
	/* slowly chisel away at the source array */
	array_shift($leases_content);
}
/* remove the old array */
unset($lease_content);

/* remove duplicate items by mac address */
if(count($leases) > 0) {
	$leases = remove_duplicate($leases,"ip");
}

if(count($pools) > 0) {
	$pools = remove_duplicate($pools,"name");
	asort($pools);
}

foreach($config['interfaces'] as $ifname => $ifarr) {
276
	if (isset($config['dhcpd'][$ifname]['staticmap'])) {
Ad Schellevis's avatar
Ad Schellevis committed
277 278 279 280 281 282 283 284
		foreach($config['dhcpd'][$ifname]['staticmap'] as $static) {
			$slease = array();
			$slease['ip'] = $static['ipaddr'];
			$slease['type'] = "static";
			$slease['mac'] = $static['mac'];
			$slease['start'] = "";
			$slease['end'] = "";
			$slease['hostname'] = htmlentities($static['hostname']);
285
			$slease['descr'] = htmlentities($static['descr']);
Ad Schellevis's avatar
Ad Schellevis committed
286 287 288 289 290 291 292 293 294 295 296 297 298
			$slease['act'] = "static";
			$slease['online'] = in_array(strtolower($slease['mac']), $arpdata_mac) ? 'online' : 'offline';
			$leases[] = $slease;
		}
	}
}

if ($_GET['order'])
	usort($leases, "leasecmp");

/* only print pool status when we have one */
if(count($pools) > 0) {
?>
299
			<section class="col-xs-12">
300
				<div class="content-box">
301
			        <div class="table-responsive">
Ad Schellevis's avatar
Ad Schellevis committed
302
			            <table class="table table-striped table-sort sortable __nomb">
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
							  <tr>
							    <td class="listhdrr"><?=gettext("Failover Group"); ?></a></td>
							    <td class="listhdrr"><?=gettext("My State"); ?></a></td>
							    <td class="listhdrr"><?=gettext("Since"); ?></a></td>
							    <td class="listhdrr"><?=gettext("Peer State"); ?></a></td>
							    <td class="listhdrr"><?=gettext("Since"); ?></a></td>
							  </tr>
							<?php
							foreach ($pools as $data) {
								echo "<tr>\n";
								echo "<td class=\"listlr\">{$fspans}{$data['name']}{$fspane}</td>\n";
								echo "<td class=\"listr\">{$fspans}{$data['mystate']}{$fspane}</td>\n";
								echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['mydate']) . "{$fspane}</td>\n";
								echo "<td class=\"listr\">{$fspans}{$data['peerstate']}{$fspane}</td>\n";
								echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['peerdate']) . "{$fspane}</td>\n";
								echo "<td class=\"list\" valign=\"middle\" width=\"17\">&nbsp;</td>\n";
								echo "<td class=\"list\" valign=\"middle\" width=\"17\">&nbsp;</td>\n";
								echo "</tr>\n";
							}
322

323 324 325 326 327
							?>
						</table>
					</div>
				</div>
			</section>
Ad Schellevis's avatar
Ad Schellevis committed
328 329 330 331 332 333

<?php
/* only print pool status when we have one */
}
?>

334
<section class="col-xs-12">
335
				<div class="content-box">
336
			        <div class="table-responsive">
Ad Schellevis's avatar
Ad Schellevis committed
337
			            <table class="table table-striped table-sort sortable __nomb">
338
							<tr>
339 340 341
							    <td class="listhdrr"><?=gettext("IP address"); ?></td>
							    <td class="listhdrr"><?=gettext("MAC address"); ?></td>
							    <td class="listhdrr"><?=gettext("Hostname"); ?></td>
342
							    <td class="listhdrr"><?=gettext("Description"); ?></td>
343 344
							    <td class="listhdrr"><?=gettext("Start"); ?></td>
							    <td class="listhdrr"><?=gettext("End"); ?></td>
345 346
							    <td class="listhdrr"><?=gettext("Status"); ?></td>
							    <td class="listhdrr"><?=gettext("Lease type"); ?></td>
347
							    <td class="listhdrr">&nbsp;</td>
348 349 350 351 352 353 354 355 356 357 358 359 360
							</tr>
							<?php
							// Load MAC-Manufacturer table
							$mac_man = load_mac_manufacturer_table();
							foreach ($leases as $data) {
								if (($data['act'] == "active") || ($data['act'] == "static") || ($_GET['all'] == 1)) {
									if ($data['act'] != "active" && $data['act'] != "static") {
										$fspans = "<span class=\"gray\">";
										$fspane = "&nbsp;</span>";
									} else {
										$fspans = "";
										$fspane = "&nbsp;";
									}
361 362 363 364 365 366

									$dhcpd = array();
									if (isset($config['dhcpd'])) {
										$dhcpd = $config['dhcpd'];
									}

367 368
							                $lip = ip2ulong($data['ip']);
									if ($data['act'] == "static") {
369
										foreach ($dhcpd as $dhcpif => $dhcpifconf) {
370 371 372 373 374 375 376 377 378 379 380 381 382
											if(is_array($dhcpifconf['staticmap'])) {
												foreach ($dhcpifconf['staticmap'] as $staticent) {
													if ($data['ip'] == $staticent['ipaddr']) {
														$data['if'] = $dhcpif;
														break;
													}
												}
											}
											/* exit as soon as we have an interface */
											if ($data['if'] != "")
												break;
										}
									} else {
383
										foreach ($dhcpd as $dhcpif => $dhcpifconf) {
384 385
											if (!is_array($dhcpifconf['range']))
												continue;
386 387 388 389
											if (($lip >= ip2ulong($dhcpifconf['range']['from'])) && ($lip <= ip2ulong($dhcpifconf['range']['to']))) {
												$data['if'] = $dhcpif;
												break;
											}
390
										}
391
							                }
392 393
									echo "<tr>\n";
							                echo "<td class=\"listlr\">{$fspans}{$data['ip']}{$fspane}</td>\n";
Frank Wall's avatar
Frank Wall committed
394
									$mac = $data['mac'];
395 396
									$mac_hi = strtoupper($mac[0] . $mac[1] . $mac[3] . $mac[4] . $mac[6] . $mac[7]);
							                if ($data['online'] != "online") {
Frank Wall's avatar
Frank Wall committed
397
										if (isset($mac_man[$mac_hi])) { // Manufacturer for this MAC is defined
398
								                        echo "<td class=\"listr\">{$fspans}<a href=\"services_wol.php?if={$data['if']}&amp;mac=$mac\" title=\"" . gettext("$mac - send Wake on LAN packet to this MAC address") ."\">{$mac}</a><br /><font size=\"-2\"><i>{$mac_man[$mac_hi]}</i></font>{$fspane}</td>\n";
Frank Wall's avatar
Frank Wall committed
399
										} else {
400
											echo "<td class=\"listr\">{$fspans}<a href=\"services_wol.php?if={$data['if']}&amp;mac={$data['mac']}\" title=\"" . gettext("send Wake on LAN packet to this MAC address") ."\">{$data['mac']}</a>{$fspane}</td>\n";
401
										}
Frank Wall's avatar
Frank Wall committed
402 403
							                } else {
										if (isset($mac_man[$mac_hi])) { // Manufacturer for this MAC is defined
404
											echo "<td class=\"listr\">{$fspans}{$mac}<br /><font size=\"-2\"><i>{$mac_man[$mac_hi]}</i></font>{$fspane}</td>\n";
Frank Wall's avatar
Frank Wall committed
405
								                } else {
406
											echo "<td class=\"listr\">{$fspans}{$data['mac']}{$fspane}</td>\n";
407 408 409
										}
							                }
							                echo "<td class=\"listr\">{$fspans}"  . htmlentities($data['hostname']) . "{$fspane}</td>\n";
410 411 412 413 414
									if (isset($data['descr'])) {
										echo "<td class=\"listr\">{$fspans}"  . htmlentities($data['descr']) . "{$fspane}</td>\n";
									} else {
										echo "<td class=\"listr\">{$fspans} n/a {$fspane}</td>\n";
									}
Frank Wall's avatar
Frank Wall committed
415 416 417 418 419 420 421
									if ($data['type'] != "static") {
										echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['start']) . "{$fspane}</td>\n";
										echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['end']) . "{$fspane}</td>\n";
									} else {
										echo "<td class=\"listr\">{$fspans} n/a {$fspane}</td>\n";
										echo "<td class=\"listr\">{$fspans} n/a {$fspane}</td>\n";
									}
422 423 424 425
							                echo "<td class=\"listr\">{$fspans}{$data['online']}{$fspane}</td>\n";
							                echo "<td class=\"listr\">{$fspans}{$data['act']}{$fspane}</td>\n";
							                echo "<td valign=\"middle\">&nbsp;";
									if ($data['type'] == "dynamic") {
426 427
										echo "<a class=\"btn btn-default btn-xs\" href=\"services_dhcp_edit.php?if={$data['if']}&amp;mac={$data['mac']}&amp;hostname={$data['hostname']}\">";
										echo "<span class=\"glyphicon glyphicon-plus\" title=\"" . gettext("add a static mapping for this MAC address") ."\" alt=\"add\" ></span></a>&nbsp;\n";
428
									} else {
429
										echo "<span class=\"glyphicon glyphicon-plus\" alt=\"add\"></span>&nbsp;\n";
430
									}
431

432 433
							                echo "<a class=\"btn btn-default btn-xs\" href=\"services_wol_edit.php?if={$data['if']}&amp;mac={$data['mac']}&amp;descr={$data['hostname']}\">";
									echo "<span class=\"glyphicon glyphicon-flash\" title=\"" . gettext("add a Wake on LAN mapping for this MAC address") ."\" alt=\"add\"></span></a>&nbsp;\n";
434

435 436
									/* Only show the button for offline dynamic leases */
									if (($data['type'] == "dynamic") && ($data['online'] != "online")) {
437 438
										echo "<a class=\"btn btn-default btn-xs\" href=\"status_dhcp_leases.php?deleteip={$data['ip']}&amp;all=" . htmlspecialchars($_GET['all']) . "\">";
										echo "<span class=\"glyphicon glyphicon-remove\" title=\"" . gettext("delete this DHCP lease") . "\" alt=\"delete\" ></span></a>&nbsp;\n";
439 440 441 442
									}
							                echo "</td></tr>\n";
								}
							}
443

444 445 446 447 448
							?>
						</table>
					</div>
				</div>
			</section>
449 450


451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
			<section class="col-xs-12">

				<form action="status_dhcp_leases.php" method="get">
				<input type="hidden" name="order" value="<?=htmlspecialchars($_GET['order']);?>" />
				<?php if ($_GET['all']): ?>
				<input type="hidden" name="all" value="0" />
				<input type="submit" class="btn btn-default" value="<?=gettext("Show active and static leases only"); ?>" />
				<?php else: ?>
				<input type="hidden" name="all" value="1" />
				<input type="submit" class="btn btn-default" value="<?=gettext("Show all configured leases"); ?>" />
				<?php endif; ?>
				</form>
				<?php if($leases == 0): ?>
				<p><strong><?=gettext("No leases file found. Is the DHCP server active"); ?>?</strong></p>
				<?php endif; ?>

			</section>
		</div>
	</div>
</section>

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