-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ZoneFileProvider writes IDN domains without encoding #68
Comments
Probably not, likely something that wasn't specifically targeted and just did the default. I take it that bind file format wants the idna form? It should just be a matter of switching to use the encoded name here: octodns-bind/octodns_bind/__init__.py Line 301 in b974df8
Though it probably also makes sense to include a comment with the decoded version for human consumption. I'm also wondering what would happen with the |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
I've used the following patch to handle this issue locally, but my python skills were not quite enough to handle the tests and getting a proper pull request out of this before I had other things to do. diff --git a/octodns_bind/__init__.py b/octodns_bind/__init__.py
index 1ab8837..af54cd5 100644
--- a/octodns_bind/__init__.py
+++ b/octodns_bind/__init__.py
@@ -18,6 +18,7 @@ from dns import tsigkeyring
from dns.exception import DNSException
from dns.update import Update as DnsUpdate
+from octodns.idna import idna_encode, idna_decode
from octodns.provider.base import BaseProvider
from octodns.record import Create, Record, Rr, Update
from octodns.source.base import BaseSource
@@ -268,7 +269,7 @@ class ZoneFileProvider(RfcPopulate, BaseProvider):
def _apply(self, plan):
desired = plan.desired
- name = desired.decoded_name
+ name = desired.name
if not isdir(self.directory):
makedirs(self.directory)
@@ -279,7 +280,7 @@ class ZoneFileProvider(RfcPopulate, BaseProvider):
filename = join(self.directory, f'{name[:-1]}{self.file_extension}')
with open(filename, 'w') as fh:
template = Template(
- '''$$ORIGIN $zone_name
+ '''$$ORIGIN $zone_name$zone_name_comment
@ $default_ttl IN SOA $primary_nameserver $hostmaster_email (
$serial ; Serial
@@ -293,12 +294,17 @@ class ZoneFileProvider(RfcPopulate, BaseProvider):
)
primary_nameserver = self._primary_nameserver(name, records)
+ if idna_encode(name) != idna_decode(name):
+ zone_name_comment = f' ; {idna_decode(name)}'
+ else:
+ zone_name_comment = ''
fh.write(
template.substitute(
{
'hostmaster_email': self._hostmaster_email(name),
'serial': self._serial(),
- 'zone_name': name,
+ 'zone_name': idna_encode(name),
+ 'zone_name_comment': zone_name_comment,
'default_ttl': self.default_ttl,
'primary_nameserver': primary_nameserver,
'refresh': self.refresh,
@@ -326,8 +332,13 @@ class ZoneFileProvider(RfcPopulate, BaseProvider):
name = ''
else:
prev_name = name
+ if idna_encode(name) != idna_decode(name):
+ name = idna_encode(name)
+ comment = f' ; {idna_decode(name)}'
+ else:
+ comment = ''
fh.write(
- f'{name:<{longest_name}} {record.ttl:8d} IN {record._type:<8} {value}\n'
+ f'{name:<{longest_name}} {record.ttl:8d} IN {record._type:<8} {value}{comment}\n'
)
self.log.debug(
|
I was aiming to create a scheduled backup of DNS zones hosted at one cloud provider in a bind compatible format using
octodns
, and to my surprise IDN records and zone file name were converted to their UTF-8 presentation when written out byZoneFileProvider
.Is this intentional?
I have included a minimal reproducer:
The text was updated successfully, but these errors were encountered: