Windows implementation of dns_get_record fails with non-existing domain
| Bug #52260 | Windows implementation of dns_get_record fails with non-existing domain | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2010-07-06 02:08 UTC | Modified: | 2020-05-04 08:24 UTC |
|
||||||
| From: | a_jelly_doughnut at phpbb dot com | Assigned: | cmb (profile) | |||||||
| Status: | Closed | Package: | Network related | |||||||
| PHP Version: | 5.3.2 | OS: | Windows (All) | |||||||
| Private report: | No | CVE-ID: | None | |||||||
[2010-07-06 02:08 UTC] a_jelly_doughnut at phpbb dot com
Description:
------------
Windows implementation of dns_get_record fails with non-existing domain
---
var_dump(dns_get_record('dalfkjdaslfj.net')); // return false, throw E_WARNING
---
This is inconsistent with the *NIX implementation, which never (in our testing, see * note at bottom) throws E_WARNING on a non-existing domain, and returns an empty array, as demonstrated below:
---
afischer@miraculix:~$ php -v
PHP 5.3.2-1ubuntu4.2 with Suhosin-Patch (cli) (built: May 13 2010 20:01:00)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
with Xdebug v2.0.5, Copyright (c) 2002-2008, by Derick Rethans
afischer@miraculix:~$ php -r "error_reporting(E_ALL); var_dump(dns_get_record('dalfkjdaslfj.net'));"
array(0) {
}
---
There is code in dns_win32.c to attempt to catch some cases of non-existing domains, but it does not seem to be complete.
Changing
---
if (status) {
if (status == DNS_INFO_NO_RECORDS) {
continue;
---
to
---
if (status) {
if (status == DNS_INFO_NO_RECORDS || status == DNS_ERROR_RCODE_NAME_ERROR) {
continue;
---
Seems to fix the problems for me. For reference, all error codes which can be returned by DNSQuery_A are listed by Microsoft: http://msdn.microsoft.com/en-us/library/ms681391
* I cannot say for sure if reports like http://bugs.php.net/bug.php?id=50903 are valid. I do know from reading the PHP source that there are three separate *NIX implementations of php_dns_search(), but Andreas has not investigated which one his Ubuntu server is using. It seems likely that this inconsistency affects NIX implementations as well.
Test script:
---------------
<?php
var_dump(dns_get_record('dalfkjdaslfj.net')); // return false, throw E_WARNING
?>
Expected result:
----------------
array(0) {
}
Actual result:
--------------
bool(false)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2010-07-10 16:32 UTC] felipe@php.net
-Status: Open +Status: Assigned -Assigned To: +Assigned To: pajoye
[2010-09-06 12:58 UTC] pajoye@php.net
[2017-10-24 07:33 UTC] kalle@php.net
-Status: Assigned +Status: Open -Assigned To: pajoye +Assigned To:
[2020-05-04 08:24 UTC] cmb@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: cmb
[2020-05-04 08:24 UTC] cmb@php.net