summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-02-01 12:35:59 -0500
committerjim-p <jimp@pfsense.org>2016-02-01 12:35:59 -0500
commit6635aa0f6c7a166a56a92ea2492930a67e825ce1 (patch)
tree89ef7530c988626b748db3af5946fa553f741443 /src
parentde22e304d4b00a77089c337e1b8ef88097e9308b (diff)
downloadpfsense-6635aa0f6c7a166a56a92ea2492930a67e825ce1.zip
pfsense-6635aa0f6c7a166a56a92ea2492930a67e825ce1.tar.gz
Change Namecheap dyndns to use split hostname and domain name fields. Upgrade existing entries automatically. Implements #4366
Code should be generic enough that if other DynDNS providers would work better with a separate domain field, they can pick up the feature without too much trouble.
Diffstat (limited to 'src')
-rw-r--r--src/etc/inc/dyndns.class63
-rw-r--r--src/etc/inc/globals.inc2
-rw-r--r--src/etc/inc/services.inc1
-rw-r--r--src/etc/inc/upgrade_config.inc23
-rw-r--r--src/usr/local/www/services_dyndns.php18
-rw-r--r--src/usr/local/www/services_dyndns_edit.php42
6 files changed, 111 insertions, 38 deletions
diff --git a/src/etc/inc/dyndns.class b/src/etc/inc/dyndns.class
index e685935..daae470 100644
--- a/src/etc/inc/dyndns.class
+++ b/src/etc/inc/dyndns.class
@@ -105,6 +105,8 @@
var $_dnsUser;
var $_dnsPass;
var $_dnsHost;
+ var $_dnsDomain;
+ var $_FQDN;
var $_dnsIP;
var $_dnsWildcard;
var $_dnsMX;
@@ -137,7 +139,7 @@
* - $dnsUser, and $dnsPass indicate HTTP Auth for custom DNS, if they are needed in the URL (GET Variables), include them in $dnsUpdateURL.
* - $For custom requests, $dnsUpdateURL is parsed for '%IP%', which is replaced with the new IP.
*/
- function updatedns ($dnsService = '', $dnsHost = '', $dnsUser = '', $dnsPass = '',
+ function updatedns ($dnsService = '', $dnsHost = '', $dnsDomain = '', $dnsUser = '', $dnsPass = '',
$dnsWildcard = 'OFF', $dnsMX = '', $dnsIf = '', $dnsBackMX = '',
$dnsServer = '', $dnsPort = '', $dnsUpdateURL = '', $forceUpdate = false,
$dnsZoneID ='', $dnsTTL='', $dnsResultMatch = '', $dnsRequestIf = '',
@@ -145,9 +147,15 @@
global $config, $g;
- $this->_cacheFile = "{$g['conf_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($dnsHost) . "{$dnsID}.cache";
- $this->_cacheFile_v6 = "{$g['conf_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($dnsHost) . "{$dnsID}_v6.cache";
- $this->_debugFile = "{$g['varetc_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($dnsHost) . "{$dnsID}.debug";
+ if ($dnsService == "namecheap") {
+ $this->_FQDN = $dnsHost . "." . $dnsDomain;
+ } else {
+ $this->_FQDN = $dnsHost;
+ }
+
+ $this->_cacheFile = "{$g['conf_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($this->_FQDN) . "{$dnsID}.cache";
+ $this->_cacheFile_v6 = "{$g['conf_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($this->_FQDN) . "{$dnsID}_v6.cache";
+ $this->_debugFile = "{$g['varetc_path']}/dyndns_{$dnsIf}{$dnsService}" . escapeshellarg($this->_FQDN) . "{$dnsID}.debug";
$this->_curlIpresolveV4 = $curlIpresolveV4;
$this->_curlSslVerifypeer = $curlSslVerifypeer;
@@ -166,6 +174,7 @@
case 'namecheap':
if (!$dnsPass) $this->_error(4);
if (!$dnsHost) $this->_error(5);
+ if (!$dnsDomain) $this->_error(5);
break;
case 'route53':
if (!$dnsZoneID) $this->_error(8);
@@ -193,6 +202,7 @@
$this->_dnsUser = $dnsUser;
$this->_dnsPass = $dnsPass;
$this->_dnsHost = $dnsHost;
+ $this->_dnsDomain = $dnsDomain;
$this->_dnsServer = $dnsServer;
$this->_dnsPort = $dnsPort;
$this->_dnsWildcard = $dnsWildcard;
@@ -205,7 +215,7 @@
$this->_dnsResultMatch = $dnsResultMatch;
$this->_dnsRequestIf = get_failover_interface($dnsRequestIf);
if ($this->_dnsVerboseLog) {
- log_error("DynDNS ({$this->_dnsHost}): running get_failover_interface for {$dnsRequestIf}. found {$this->_dnsRequestIf}");
+ log_error("DynDNS ({$this->_FQDN}): running get_failover_interface for {$dnsRequestIf}. found {$this->_dnsRequestIf}");
}
$this->_dnsRequestIfIP = get_interface_ip($dnsRequestIf);
$this->_dnsMaxCacheAgeDays = 25;
@@ -214,7 +224,7 @@
// Ensure that we were able to lookup the IP
if (!is_ipaddr($this->_dnsIP)) {
- log_error("DynDNS ({$this->_dnsHost}) There was an error trying to determine the public IP for interface - {$dnsIf}({$this->_if}). Probably interface is not a WAN interface.");
+ log_error("DynDNS ({$this->_FQDN}) There was an error trying to determine the public IP for interface - {$dnsIf}({$this->_if}). Probably interface is not a WAN interface.");
unlock($dyndnslck);
return;
}
@@ -287,7 +297,7 @@
function _update() {
if ($this->_dnsVerboseLog) {
- log_error("DynDNS ({$this->_dnsHost}): DynDns _update() starting.");
+ log_error("DynDNS ({$this->_FQDN}): DynDns _update() starting.");
}
if (strstr($this->_dnsRequestIf, "_vip")) {
@@ -315,11 +325,11 @@
case 'glesys':
$needsIP = TRUE;
if ($this->_dnsVerboseLog) {
- log_error("DynDNS: ({$this->_dnsHost}) DNS update() starting.");
+ log_error("DynDNS: ({$this->_FQDN}) DNS update() starting.");
}
$server = 'https://api.glesys.com/domain/updaterecord/format/json';
curl_setopt($ch, CURLOPT_USERPWD, $this->_dnsUser.':'.$this->_dnsPass);
- $post_data['recordid'] = $this->_dnsHost;
+ $post_data['recordid'] = $this->_FQDN;
$post_data['data'] = $this->_dnsIP;
curl_setopt($ch, CURLOPT_URL, $server);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
@@ -329,7 +339,7 @@
case 'dyndns-custom':
$needsIP = FALSE;
if ($this->_dnsVerboseLog) {
- log_error("DynDNS: ({$this->_dnsHost}) DNS update() starting.");
+ log_error("DynDNS: ({$this->_FQDN}) DNS update() starting.");
}
if (isset($this->_dnsWildcard) && $this->_dnsWildcard != "OFF") {
$this->_dnsWildcard = "ON";
@@ -556,15 +566,10 @@
*/
$needsIP = FALSE;
if ($this->_dnsVerboseLog) {
- log_error("Namecheap ({$this->_dnsHost}): DNS update() starting.");
+ log_error("Namecheap ({$this->_FQDN}): DNS update() starting.");
}
- $dparts = explode(".", trim($this->_dnsHost));
- $domain_part_count = ($dparts[count($dparts)-1] == "uk") ? 3 : 2;
- $domain_offset = count($dparts) - $domain_part_count;
- $hostname = implode(".", array_slice($dparts, 0, $domain_offset));
- $domain = implode(".", array_slice($dparts, $domain_offset));
$dnspass = trim($this->_dnsPass);
- $server = "https://dynamicdns.park-your-domain.com/update?host={$hostname}&domain={$domain}&password={$dnspass}&ip={$this->_dnsIP}";
+ $server = "https://dynamicdns.park-your-domain.com/update?host={$this->_dnsHost}&domain={$this->_dnsDomain}&password={$dnspass}&ip={$this->_dnsIP}";
curl_setopt($ch, CURLOPT_URL, $server);
break;
case 'he-net':
@@ -859,8 +864,8 @@
*/
function _checkStatus($ch, $data) {
if ($this->_dnsVerboseLog) {
- log_error("DynDNS ({$this->_dnsHost}): DynDns _checkStatus() starting.");
- log_error("DynDNS ({$this->_dnsHost}): Current Service: {$this->_dnsService}");
+ log_error("DynDNS ({$this->_FQDN}): DynDns _checkStatus() starting.");
+ log_error("DynDNS ({$this->_FQDN}): Current Service: {$this->_dnsService}");
}
$successful_update = false;
if ($this->_dnsService != 'ods' and $this->_dnsService != 'route53' && @curl_error($ch)) {
@@ -1517,7 +1522,7 @@
$status = "Route 53: (Error) Invalid TTL";
break;
case 10:
- $error = "phpDynDNS ({$this->_dnsHost}): No change in my IP address and/or " . $this->_dnsMaxCacheAgeDays . " days has not passed. Not updating dynamic DNS entry.";
+ $error = "phpDynDNS ({$this->_FQDN}): No change in my IP address and/or " . $this->_dnsMaxCacheAgeDays . " days has not passed. Not updating dynamic DNS entry.";
break;
default:
$error = "phpDynDNS: (ERROR!) Unknown Response.";
@@ -1539,17 +1544,17 @@
global $debug;
if ($debug) {
- log_error("DynDns ({$this->_dnsHost}): _detectChange() starting.");
+ log_error("DynDns ({$this->_FQDN}): _detectChange() starting.");
}
$currentTime = time();
$wan_ip = $this->_checkIP();
if ($wan_ip == 0) {
- log_error("DynDns ({$this->_dnsHost}): Current WAN IP could not be determined, skipping update process.");
+ log_error("DynDns ({$this->_FQDN}): Current WAN IP could not be determined, skipping update process.");
return false;
}
- $log_error = "DynDns ({$this->_dnsHost}): Current WAN IP: {$wan_ip} ";
+ $log_error = "DynDns ({$this->_FQDN}): Current WAN IP: {$wan_ip} ";
if ($this->_useIPv6 == true) {
if (file_exists($this->_cacheFile_v6)) {
@@ -1614,7 +1619,7 @@
*/
if ($needs_updating == true) {
if ($this->_dnsVerboseLog) {
- log_error("DynDns ({$this->_dnsHost}): {$update_reason}");
+ log_error("DynDns ({$this->_FQDN}): {$update_reason}");
}
return true;
}
@@ -1645,7 +1650,7 @@
global $debug;
if ($debug) {
- log_error("DynDns ({$this->_dnsHost}): _checkIP() starting.");
+ log_error("DynDns ({$this->_FQDN}): _checkIP() starting.");
}
if ($this->_useIPv6 == true) {
@@ -1670,7 +1675,7 @@
$try++;
}
if ($try >= 3) {
- log_error("Dyndns debug information ({$this->_dnsHost}): Could not resolve {$hosttocheck} to IP using interface IP {$ip_address}.");
+ log_error("Dyndns debug information ({$this->_FQDN}): Could not resolve {$hosttocheck} to IP using interface IP {$ip_address}.");
return 0;
}
$ip_ch = curl_init("http://{$checkip}");
@@ -1689,15 +1694,15 @@
$ip_address = trim($matches[1]);
if (is_ipaddr($ip_address)) {
if ($this->_dnsVerboseLog) {
- log_error("DynDns ({$this->_dnsHost}): {$ip_address} extracted from {$hosttocheck}");
+ log_error("DynDns ({$this->_FQDN}): {$ip_address} extracted from {$hosttocheck}");
}
} else {
- log_error("DynDns ({$this->_dnsHost}): IP address could not be extracted from {$hosttocheck}");
+ log_error("DynDns ({$this->_FQDN}): IP address could not be extracted from {$hosttocheck}");
return 0;
}
} else {
if ($this->_dnsVerboseLog) {
- log_error("DynDns ({$this->_dnsHost}): {$ip_address} extracted from local system.");
+ log_error("DynDns ({$this->_FQDN}): {$ip_address} extracted from local system.");
}
}
$this->_dnsIP = $ip_address;
diff --git a/src/etc/inc/globals.inc b/src/etc/inc/globals.inc
index 550245f..bcb4043 100644
--- a/src/etc/inc/globals.inc
+++ b/src/etc/inc/globals.inc
@@ -99,7 +99,7 @@ $g = array(
"disablecrashreporter" => false,
"crashreporterurl" => "https://crashreporter.pfsense.org/crash_reporter.php",
"debug" => false,
- "latest_config" => "14.1",
+ "latest_config" => "14.2",
"nopkg_platforms" => array("cdrom"),
"minimum_ram_warning" => "101",
"minimum_ram_warning_text" => "128 MB",
diff --git a/src/etc/inc/services.inc b/src/etc/inc/services.inc
index ccf38b0..9e9e09d 100644
--- a/src/etc/inc/services.inc
+++ b/src/etc/inc/services.inc
@@ -1920,6 +1920,7 @@ function services_dyndns_configure_client($conf) {
$dns = new updatedns($dnsService = $conf['type'],
$dnsHost = $conf['host'],
+ $dnsDomain = $conf['domainname'],
$dnsUser = $conf['username'],
$dnsPass = $conf['password'],
$dnsWildcard = $conf['wildcard'],
diff --git a/src/etc/inc/upgrade_config.inc b/src/etc/inc/upgrade_config.inc
index d64a3c9..21bc2ef 100644
--- a/src/etc/inc/upgrade_config.inc
+++ b/src/etc/inc/upgrade_config.inc
@@ -4377,4 +4377,27 @@ function upgrade_140_to_141() {
}
+function upgrade_141_to_142() {
+ global $config;
+ /* Convert Namecheap type DynDNS entries to the new split hostname and domain format */
+
+ if (!is_array($config['dyndnses'])) {
+ $config['dyndnses'] = array();
+ }
+ if (!is_array($config['dyndnses']['dyndns'])) {
+ $config['dyndnses']['dyndns'] = array();
+ }
+ $a_dyndns = &$config['dyndnses']['dyndns'];
+
+ foreach ($a_dyndns as &$dyndns) {
+ if ($dyndns['type'] == "namecheap") {
+ /* Use the old style logic to split the host and domain one last time. */
+ $dparts = explode(".", trim($dyndns['host']));
+ $domain_part_count = ($dparts[count($dparts)-1] == "uk") ? 3 : 2;
+ $domain_offset = count($dparts) - $domain_part_count;
+ $dyndns['host'] = implode(".", array_slice($dparts, 0, $domain_offset));
+ $dyndns['domainname'] = implode(".", array_slice($dparts, $domain_offset));
+ }
+ }
+}
?>
diff --git a/src/usr/local/www/services_dyndns.php b/src/usr/local/www/services_dyndns.php
index c9f24ff..e095cb2 100644
--- a/src/usr/local/www/services_dyndns.php
+++ b/src/usr/local/www/services_dyndns.php
@@ -70,7 +70,12 @@ $a_dyndns = &$config['dyndnses']['dyndns'];
if ($_GET['act'] == "del") {
$conf = $a_dyndns[$_GET['id']];
- @unlink("{$g['conf_path']}/dyndns_{$conf['interface']}{$conf['type']}" . escapeshellarg($conf['host']) . "{$conf['id']}.cache");
+ if ($conf['type'] == "namecheap") {
+ $hostname = $conf['host'] . "." . $conf['domainname'];
+ } else {
+ $hostname = $conf['host'];
+ }
+ @unlink("{$g['conf_path']}/dyndns_{$conf['interface']}{$conf['type']}" . escapeshellarg($hostname) . "{$conf['id']}.cache");
unset($a_dyndns[$_GET['id']]);
write_config();
@@ -124,6 +129,11 @@ display_top_tabs($tab_array);
<?php
$i = 0;
foreach ($a_dyndns as $dyndns):
+ if ($dyndns['type'] == "namecheap") {
+ $hostname = $dyndns['host'] . "." . $dyndns['domainname'];
+ } else {
+ $hostname = $dyndns['host'];
+ }
?>
<tr<?=!isset($dyndns['enable'])?' class="disabled"':''?>>
<td>
@@ -162,13 +172,13 @@ foreach ($a_dyndns as $dyndns):
</td>
<td>
<?php
- print(htmlspecialchars($dyndns['host']));
+ print(htmlspecialchars($hostname));
?>
</td>
<td>
<?php
- $filename = "{$g['conf_path']}/dyndns_{$dyndns['interface']}{$dyndns['type']}" . escapeshellarg($dyndns['host']) . "{$dyndns['id']}.cache";
- $filename_v6 = "{$g['conf_path']}/dyndns_{$dyndns['interface']}{$dyndns['type']}" . escapeshellarg($dyndns['host']) . "{$dyndns['id']}_v6.cache";
+ $filename = "{$g['conf_path']}/dyndns_{$dyndns['interface']}{$dyndns['type']}" . escapeshellarg($hostname) . "{$dyndns['id']}.cache";
+ $filename_v6 = "{$g['conf_path']}/dyndns_{$dyndns['interface']}{$dyndns['type']}" . escapeshellarg($hostname) . "{$dyndns['id']}_v6.cache";
if (file_exists($filename)) {
$ipaddr = dyndnsCheckIP($dyndns['interface']);
$cached_ip_s = explode(":", file_get_contents($filename));
diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php
index e28dc3e..8f69251 100644
--- a/src/usr/local/www/services_dyndns_edit.php
+++ b/src/usr/local/www/services_dyndns_edit.php
@@ -92,6 +92,7 @@ if (isset($id) && isset($a_dyndns[$id])) {
$pconfig['username'] = $a_dyndns[$id]['username'];
$pconfig['password'] = $a_dyndns[$id]['password'];
$pconfig['host'] = $a_dyndns[$id]['host'];
+ $pconfig['domainname'] = $a_dyndns[$id]['domainname'];
$pconfig['mx'] = $a_dyndns[$id]['mx'];
$pconfig['type'] = $a_dyndns[$id]['type'];
$pconfig['enable'] = !isset($a_dyndns[$id]['enable']);
@@ -129,6 +130,10 @@ if ($_POST) {
$reqdfieldsn[] = gettext("Password");
$reqdfields[] = "username";
$reqdfieldsn[] = gettext("Username");
+ if ($pconfig['type'] == "namecheap") {
+ $reqdfields[] = "domainname";
+ $reqdfieldsn[] = gettext("Domain Name");
+ }
} else {
$reqdfields[] = "updateurl";
$reqdfieldsn[] = gettext("Update URL");
@@ -173,6 +178,7 @@ if ($_POST) {
$dyndns['password'] = $a_dyndns[$id]['password'];;
}
$dyndns['host'] = $_POST['host'];
+ $dyndns['domainname'] = $_POST['domainname'];
$dyndns['mx'] = $_POST['mx'];
$dyndns['wildcard'] = $_POST['wildcard'] ? true : false;
$dyndns['verboselog'] = $_POST['verboselog'] ? true : false;
@@ -301,15 +307,28 @@ $section->addInput(new Form_Select(
$interfacelist
))->setHelp('This is almost always the same as the Interface to Monitor. ');
-$section->addInput(new Form_Input(
+$group = new Form_Group('Hostname');
+
+$group->add(new Form_Input(
'host',
'Hostname',
'text',
$pconfig['host']
-))->setHelp('Enter the complete fully qualified domain name. Example: myhost.dyndns.org'. '<br />' .
+));
+$group->add(new Form_Input(
+ 'domainname',
+ 'Domain Name',
+ 'text',
+ $pconfig['domainname']
+));
+
+$group->setHelp('Enter the complete fully qualified domain name. Example: myhost.dyndns.org'. '<br />' .
'he.net tunnelbroker: Enter your tunnel ID' . '<br />' .
'GleSYS: Enter your record ID' . '<br />' .
- 'DNSimple: Enter only the domain name.');
+ 'DNSimple: Enter only the domain name.' . '<br />' .
+ 'Namecheap: Enter the hostname and the domain separately, with the domain being the domain or subdomain zone being handled by Namecheap.');
+
+$section->add($group);
$section->addInput(new Form_Input(
'mx',
@@ -434,6 +453,7 @@ events.push(function() {
switch (service) {
case "custom" :
case "custom-v6" :
+ hideGroupInput('domainname', true);
hideInput('resultmatch', false);
hideInput('updateurl', false);
hideInput('requestif', false);
@@ -448,6 +468,7 @@ events.push(function() {
case "dnsimple":
case "route53":
+ hideGroupInput('domainname', true);
hideInput('resultmatch', true);
hideInput('updateurl', true);
hideInput('requestif', true);
@@ -459,8 +480,21 @@ events.push(function() {
hideInput('zoneid', false);
hideInput('ttl', false);
break;
-
+ case "namecheap":
+ hideGroupInput('domainname', false);
+ hideInput('resultmatch', true);
+ hideInput('updateurl', true);
+ hideInput('requestif', true);
+ hideCheckbox('curl_ipresolve_v4', true);
+ hideCheckbox('curl_ssl_verifypeer', true);
+ hideInput('host', false);
+ hideInput('mx', false);
+ hideCheckbox('wildcard', false);
+ hideInput('zoneid', true);
+ hideInput('ttl', true);
+ break;
default:
+ hideGroupInput('domainname', true);
hideInput('resultmatch', true);
hideInput('updateurl', true);
hideInput('requestif', true);
OpenPOWER on IntegriCloud