Projet

Général

Profil

Télécharger (8,71 ko) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / www / diag_dns.php @ bc0a452f

1
<?php
2
/*
3
	diag_dns.php
4

    
5
	Copyright (C) 2009 Jim Pingle (jpingle@gmail.com)
6
	All rights reserved.
7

    
8
	Redistribution and use in source and binary forms, with or without
9
	modification, are permitted provided that the following conditions are met:
10

    
11
	1. Redistributions of source code must retain the above copyright notice,
12
	this list of conditions and the following disclaimer.
13

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

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

    
30
/*
31
	pfSense_MODULE:	dns
32
*/
33

    
34
$pgtitle = array(gettext("Diagnostics"),gettext("DNS Lookup"));
35
require("guiconfig.inc");
36

    
37
$host = trim($_REQUEST['host'], " \t\n\r\0\x0B[];\"'");
38
$host_esc = escapeshellarg($host);
39

    
40
if (is_array($config['aliases']['alias'])) {
41
	$a_aliases = &$config['aliases']['alias'];
42
} else {
43
	$a_aliases = array();
44
}
45
$aliasname = str_replace(array(".","-"), "_", $host);
46
$alias_exists = false;
47
$counter=0;
48
foreach($a_aliases as $a) {
49
	if($a['name'] == $aliasname) {
50
		$alias_exists = true;
51
		$id=$counter;
52
	}
53
	$counter++;
54
}
55

    
56
if(isset($_POST['create_alias']) && (is_hostname($host) || is_ipaddr($host))) {
57
	if($_POST['override'])
58
		$override = true;
59
	$resolved = gethostbyname($host);
60
	$type = "hostname";
61
	if($resolved) {
62
		$resolved = array();
63
		exec("/usr/bin/drill {$host_esc} A | /usr/bin/grep {$host_esc} | /usr/bin/grep -v ';' | /usr/bin/awk '{ print $5 }'", $resolved);
64
		$isfirst = true;
65
		foreach($resolved as $re) {
66
			if($re <> "") {
67
				if(!$isfirst) 
68
					$addresses .= " ";
69
				$addresses .= rtrim($re) . "/32";
70
				$isfirst = false;
71
			}
72
		}
73
		$newalias = array();
74
		if($override) 
75
			$alias_exists = false;
76
		if($alias_exists == false) {
77
			$newalias['name'] = $aliasname;
78
			$newalias['type'] = "network";
79
			$newalias['address'] = $addresses;
80
			$newalias['descr'] = "Created from Diagnostics-> DNS Lookup";
81
			if($override) 
82
				$a_aliases[$id] = $newalias;
83
			else
84
				$a_aliases[] = $newalias;
85
			write_config();
86
			$createdalias = true;
87
		}
88
	}
89
}
90

    
91
if ($_POST) {
92
	unset($input_errors);
93

    
94
	$reqdfields = explode(" ", "host");
95
	$reqdfieldsn = explode(",", "Host");
96

    
97
	do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
98
	
99
	if (!is_hostname($host) && !is_ipaddr($host)) {
100
		$input_errors[] = gettext("Host must be a valid hostname or IP address.");
101
	} else {
102
		// Test resolution speed of each DNS server.
103
		$dns_speeds = array();
104
		$dns_servers = array();
105
		exec("/usr/bin/grep nameserver /etc/resolv.conf | /usr/bin/cut -f2 -d' '", $dns_servers);
106
		foreach ($dns_servers as $dns_server) {
107
			$query_time = exec("/usr/bin/drill {$host_esc} " . escapeshellarg("@" . trim($dns_server)) . " | /usr/bin/grep Query | /usr/bin/cut -d':' -f2");
108
			if($query_time == "")
109
				$query_time = gettext("No response");
110
			$new_qt = array();
111
			$new_qt['dns_server'] = $dns_server;
112
			$new_qt['query_time'] = $query_time;
113
			$dns_speeds[] = $new_qt;
114
			unset($new_qt);
115
		}
116
	}
117

    
118
	$type = "unknown";
119
	$resolved = "";
120
	$ipaddr = "";
121
	$hostname = "";
122
	if (!$input_errors) {
123
		if (is_ipaddr($host)) {
124
			$type = "ip";
125
			$resolved = gethostbyaddr($host);
126
			$ipaddr = $host;
127
			if ($host != $resolved)
128
				$hostname = $resolved;
129
		} elseif (is_hostname($host)) {
130
			$type = "hostname";
131
			$resolved = gethostbyname($host);
132
			if($resolved) {
133
				$resolved = array();
134
				exec("/usr/bin/drill {$host_esc} A | /usr/bin/grep {$host_esc} | /usr/bin/grep -v ';' | /usr/bin/awk '{ print $5 }'", $resolved);
135
			}
136
			$hostname = $host;
137
			if ($host != $resolved)
138
				$ipaddr = $resolved[0];
139
		}
140

    
141
		if ($host == $resolved) {
142
			$resolved = gettext("No record found");
143
		}
144
	}
145
}
146

    
147
if( ($_POST['host']) && ($_POST['dialog_output']) ) {
148
	display_host_results ($host,$resolved,$dns_speeds);
149
	exit;
150
}
151

    
152
function display_host_results ($address,$hostname,$dns_speeds) {
153
	$map_lengths = function($element) { return strlen($element[0]); };
154

    
155
	echo gettext("IP Address") . ": {$address} \n";
156
	echo gettext("Host Name") . ": {$hostname} \n";
157
	echo "\n";
158
	$text_table = array();
159
	$text_table[] = array(gettext("Server"), gettext("Query Time"));
160
	if (is_array($dns_speeds)) {
161
		foreach ($dns_speeds as $qt) {
162
			$text_table[] = array(trim($qt['dns_server']), trim($qt['query_time']));
163
		}
164
	}
165
	$col0_padlength = max(array_map($map_lengths, $text_table)) + 4;
166
	foreach ($text_table as $text_row) {
167
		echo str_pad($text_row[0], $col0_padlength) . $text_row[1] . "\n";
168
	}
169
}
170

    
171
include("head.inc"); ?>
172
<body link="#000000" vlink="#000000" alink="#000000">
173
<?php include("fbegin.inc"); ?>
174
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="diag dns">
175
        <tr>
176
                <td>
177
<?php if ($input_errors) print_input_errors($input_errors); ?>
178
	<form action="diag_dns.php" method="post" name="iform" id="iform">
179
	  <table width="100%" border="0" cellpadding="6" cellspacing="0" summary="tabcont">
180
		<tr>
181
			<td colspan="2" valign="top" class="listtopic"> <?=gettext("Resolve DNS hostname or IP");?></td>
182
		</tr>
183
        <tr>
184
		  <td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname or IP");?></td>
185
		  <td width="78%" class="vtable">
186
            <?=$mandfldhtml;?>
187
			<table summary="results">
188
				<tr><td valign="top">
189
			<input name="host" type="text" class="formfld" id="host" size="20" value="<?=htmlspecialchars($host);?>" /> =
190
			</td>
191
			<?php if ($resolved && $type) { ?>
192
			<td valign="top">&nbsp;=&nbsp;</td><td>
193
			<font size="+1">
194
<?php
195
				$found = 0;
196
				if(is_array($resolved)) { 
197
					foreach($resolved as $hostitem) {
198
						if($hostitem <> "") {
199
							echo $hostitem . "<br />";
200
							$found++;
201
						}
202
					}
203
				} else {
204
					echo $resolved; 
205
				} 
206
				if($found > 0) { ?>
207
					<br/><font size='-2'>
208
				<?PHP	if($alias_exists) { ?>
209
							An alias already exists for the hostname <?= htmlspecialchars($host) ?>. <br />
210
							<input type="hidden" name="override" value="true"/>
211
							<input type="submit" name="create_alias" value="Overwrite Alias"/>
212
				<?PHP	} else {
213
						if(!$createdalias) { ?>
214
							<input type="submit" name="create_alias" value="Create Alias from These Entries"/>
215
					<?PHP	} else { ?>
216
							Alias created with name <?= htmlspecialchars($newalias['name']) ?>
217
					<?PHP	}
218
					}
219
				}
220
?>
221

    
222
			<?php } ?>
223
			</td></tr></table>
224
		  </td>
225
		</tr>
226
<?php		if($_POST): ?>
227
		<tr>
228
		  <td width="22%" valign="top" class="vncell"><?=gettext("Resolution time per server");?></td>
229
		  <td width="78%" class="vtable">
230
				<table width="170" border="0" cellpadding="6" cellspacing="0" summary="resolution time">
231
					<tr>
232
						<td class="listhdrr">
233
							<?=gettext("Server");?>
234
						</td>
235
						<td class="listhdrr">
236
							<?=gettext("Query time");?>
237
						</td>
238
					</tr>
239
<?php
240
					if(is_array($dns_speeds)) 
241
						foreach($dns_speeds as $qt):
242
?>
243
					<tr>
244
						<td class="listlr">
245
							<?=$qt['dns_server']?>
246
						</td>
247
						<td class="listr">
248
							<?=$qt['query_time']?>
249
						</td>
250
					</tr>
251
<?php
252
					endforeach;
253
?>
254
				</table>
255
		  </td>
256
		</tr>
257
		<?php endif; ?>
258
		<?php if (!$input_errors && $ipaddr) { ?>
259
		<tr>
260
			<td width="22%" valign="top"  class="vncell"><?=gettext("More Information:");?></td>
261
			<td width="78%" class="vtable">
262
				<a href ="/diag_ping.php?host=<?=htmlspecialchars($host)?>&amp;interface=wan&amp;count=3"><?=gettext("Ping");?></a> <br />
263
				<a href ="/diag_traceroute.php?host=<?=htmlspecialchars($host)?>&amp;ttl=18"><?=gettext("Traceroute");?></a>
264
				<p>
265
				<?=gettext("NOTE: The following links are to external services, so their reliability cannot be guaranteed.");?><br /><br />
266
				<a target="_blank" href="http://private.dnsstuff.com/tools/whois.ch?ip=<?php echo $ipaddr; ?>"><?=gettext("IP WHOIS @ DNS Stuff");?></a><br />
267
				<a target="_blank" href="http://private.dnsstuff.com/tools/ipall.ch?ip=<?php echo $ipaddr; ?>"><?=gettext("IP Info @ DNS Stuff");?></a>
268
				</p>
269
			</td>
270
		</tr>
271
		<?php } ?>
272
		<tr>
273
		  <td width="22%" valign="top">&nbsp;</td>
274
		  <td width="78%">
275
			<br />&nbsp;
276
            <input name="Submit" type="submit" class="formbtn" value="<?=gettext("DNS Lookup");?>" />
277
		</td>
278
		</tr>
279
	</table>
280
</form>
281
</td></tr></table>
282
<?php include("fend.inc"); ?>
283
</body>
284
</html>
(10-10/255)