mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
256 lines
7.8 KiB
PHP
256 lines
7.8 KiB
PHP
<?php
|
|
/*
|
|
diag_dns.php
|
|
|
|
Copyright (C) 2009 Jim Pingle (jpingle@gmail.com)
|
|
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.
|
|
*/
|
|
|
|
/*
|
|
pfSense_MODULE: dns
|
|
*/
|
|
|
|
$pgtitle = array(gettext("Diagnostics"),gettext("DNS Lookup"));
|
|
require("guiconfig.inc");
|
|
|
|
/* Cheap hack to support both $_GET and $_POST */
|
|
if ($_GET['host'])
|
|
$_POST = $_GET;
|
|
|
|
if($_GET['createalias'] == "true") {
|
|
$host = trim($_POST['host']);
|
|
if($_GET['override'])
|
|
$override = true;
|
|
$a_aliases = &$config['aliases']['alias'];
|
|
$type = "hostname";
|
|
$resolved = gethostbyname($host);
|
|
if($resolved) {
|
|
$host = trim($_POST['host']);
|
|
$dig=`dig "$host" A | grep "$host" | grep -v ";" | awk '{ print $5 }'`;
|
|
$resolved = explode("\n", $dig);
|
|
$isfirst = true;
|
|
foreach($resolved as $re) {
|
|
if($re <> "") {
|
|
if(!$isfirst)
|
|
$addresses .= " ";
|
|
$addresses .= $re . "/32";
|
|
$isfirst = false;
|
|
}
|
|
}
|
|
$newalias = array();
|
|
$aliasname = str_replace(array(".","-"), "_", $host);
|
|
$alias_exists = false;
|
|
$counter=0;
|
|
foreach($a_aliases as $a) {
|
|
if($a['name'] == $aliasname) {
|
|
$alias_exists = true;
|
|
$id=$counter;
|
|
}
|
|
$counter++;
|
|
}
|
|
if($override)
|
|
$alias_exists = false;
|
|
if($alias_exists == false) {
|
|
$newalias['name'] = $aliasname;
|
|
$newalias['type'] = "network";
|
|
$newalias['address'] = $addresses;
|
|
$newalias['descr'] = "Created from Diagnostics-> DNS Lookup";
|
|
if($override)
|
|
$a_aliases[$id] = $newalias;
|
|
else
|
|
$a_aliases[] = $newalias;
|
|
write_config();
|
|
$createdalias = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($_POST) {
|
|
unset($input_errors);
|
|
|
|
$reqdfields = explode(" ", "host");
|
|
$reqdfieldsn = explode(",", "Host");
|
|
|
|
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
|
|
$host = trim($_POST['host'], " \t\n\r\0\x0B[]");
|
|
$host_esc = escapeshellarg($host);
|
|
|
|
if (!is_hostname($host) && !is_ipaddr($host)) {
|
|
$input_errors[] = gettext("Host must be a valid hostname or IP address.");
|
|
} else {
|
|
// Test resolution speed of each DNS server.
|
|
$dns_speeds = array();
|
|
$resolvconf_servers = `grep nameserver /etc/resolv.conf | cut -f2 -d' '`;
|
|
$dns_servers = explode("\n", trim($resolvconf_servers));
|
|
foreach ($dns_servers as $dns_server) {
|
|
$query_time = `dig {$host_esc} @{$dns_server} | grep Query | cut -d':' -f2`;
|
|
if($query_time == "")
|
|
$query_time = gettext("No response");
|
|
$new_qt = array();
|
|
$new_qt['dns_server'] = $dns_server;
|
|
$new_qt['query_time'] = $query_time;
|
|
$dns_speeds[] = $new_qt;
|
|
unset($new_qt);
|
|
}
|
|
}
|
|
|
|
$type = "unknown";
|
|
$resolved = "";
|
|
$ipaddr = "";
|
|
$hostname = "";
|
|
if (!$input_errors) {
|
|
if (is_ipaddr($host)) {
|
|
$type = "ip";
|
|
$resolved = gethostbyaddr($host);
|
|
$ipaddr = $host;
|
|
if ($host != $resolved)
|
|
$hostname = $resolved;
|
|
} elseif (is_hostname($host)) {
|
|
$type = "hostname";
|
|
$resolved = gethostbyname($host);
|
|
if($resolved) {
|
|
$dig=`dig $host_esc A | grep $host_esc | grep -v ";" | awk '{ print $5 }'`;
|
|
$resolved = explode("\n", $dig);
|
|
}
|
|
$hostname = $host;
|
|
if ($host != $resolved)
|
|
$ipaddr = $resolved[0];
|
|
}
|
|
|
|
if ($host == $resolved) {
|
|
$resolved = gettext("No record found");
|
|
}
|
|
}
|
|
}
|
|
|
|
include("head.inc"); ?>
|
|
<body link="#000000" vlink="#000000" alink="#000000">
|
|
<? include("fbegin.inc"); ?>
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
|
<form action="diag_dns.php" method="post" name="iform" id="iform">
|
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
|
<tr>
|
|
<td colspan="2" valign="top" class="listtopic"> <?=gettext("Resolve DNS hostname or IP");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname or IP");?></td>
|
|
<td width="78%" class="vtable">
|
|
<?=$mandfldhtml;?>
|
|
<table>
|
|
<tr><td valign="top">
|
|
<input name="host" type="text" class="formfld" id="host" size="20" value="<?=htmlspecialchars($host);?>">
|
|
</td>
|
|
<td>
|
|
<? if ($resolved && $type) { ?>
|
|
= <font size="+1">
|
|
<?php
|
|
$found = 0;
|
|
if(is_array($resolved)) {
|
|
foreach($resolved as $hostitem) {
|
|
if($hostitem <> "") {
|
|
echo $hostitem . "<br/>";
|
|
$found++;
|
|
}
|
|
}
|
|
} else {
|
|
echo $resolved;
|
|
}
|
|
if($found > 0) {
|
|
if($alias_exists) {
|
|
echo "<br/><font size='-2'>An alias already exists for the hostname " . htmlspecialchars($host) . ". To overwrite, click <a href='diag_dns.php?host=" . trim(urlencode(htmlspecialchars($host))) . "&createalias=true&override=true'>here</a>.";
|
|
} else {
|
|
if(!$createdalias) {
|
|
echo "<br/><font size='-2'><a href='diag_dns.php?host=" . trim(urlencode(htmlspecialchars($host))) . "&createalias=true'>Create alias</a> out of these entries.";
|
|
} else {
|
|
echo "<br/><font size='-2'>Alias created with name " . htmlspecialchars($newalias['name']);
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<font size="-1>">
|
|
|
|
<? } ?>
|
|
</td></tr></table>
|
|
</td>
|
|
</tr>
|
|
<?php if($_POST): ?>
|
|
<tr>
|
|
<td width="22%" valign="top" class="vncell"><?=gettext("Resolution time per server");?></td>
|
|
<td width="78%" class="vtable">
|
|
<table width="170" border="1" cellpadding="2" style="border-width: 1px 1px 1px 1px; border-collapse: collapse;">
|
|
<tr>
|
|
<td>
|
|
<b><?=gettext("Server");?></b>
|
|
</td>
|
|
<td>
|
|
<b><?=gettext("Query time");?></b>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if(is_array($dns_speeds))
|
|
foreach($dns_speeds as $qt):
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<?=$qt['dns_server']?>
|
|
</td>
|
|
<td>
|
|
<?=$qt['query_time']?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
endforeach;
|
|
?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<?php if (!$input_errors && $ipaddr) { ?>
|
|
<tr>
|
|
<td width="22%" valign="top" class="vncell"><?=gettext("More Information:");?></td>
|
|
<td width="78%" class="vtable">
|
|
<a target="_new" href ="/diag_ping.php?host=<?=htmlspecialchars($host)?>&interface=wan&count=3"><?=gettext("Ping");?></a> <br/>
|
|
<a target="_new" href ="/diag_traceroute.php?host=<?=htmlspecialchars($host)?>&ttl=18"><?=gettext("Traceroute");?></a>
|
|
<p/>
|
|
<?=gettext("NOTE: The following links are to external services, so their reliability cannot be guaranteed.");?><br/><br/>
|
|
<a target="_new" href="http://private.dnsstuff.com/tools/whois.ch?ip=<?php echo $ipaddr; ?>"><?=gettext("IP WHOIS @ DNS Stuff");?></a><br />
|
|
<a target="_new" href="http://private.dnsstuff.com/tools/ipall.ch?ip=<?php echo $ipaddr; ?>"><?=gettext("IP Info @ DNS Stuff");?></a>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<td width="22%" valign="top"> </td>
|
|
<td width="78%">
|
|
<br/>
|
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("DNS Lookup");?>">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</td></tr></table>
|
|
<?php include("fend.inc"); ?>
|