SSHFP records added by nsupdate contains space in fingerprint part, this space prevent framework to show record.

Fixes
https://fedorahosted.org/freeipa/ticket/4789
https://fedorahosted.org/freeipa/ticket/4790

Patch attached.

--
Martin Basti

From 37fa4ddcd331807067f88142e43edddc1012ce52 Mon Sep 17 00:00:00 2001
From: Martin Basti <[email protected]>
Date: Thu, 4 Dec 2014 15:11:00 +0100
Subject: [PATCH] Show SSHFP record containing space in fingerprint

SSHFP records added by nsupdate contains extra space (valid), framework
couldn't handle it.

Ticket: https://fedorahosted.org/freeipa/ticket/4790
Ticket: https://fedorahosted.org/freeipa/ticket/4789
---
 ipalib/plugins/dns.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index c5d96a8c4fcdf101254ecefb60cb83d63bee6310..34afc189866993481229bb68a5edd77e0a4eaff3 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -1437,6 +1437,14 @@ class SSHFPRecord(DNSRecord):
         ),
     )
 
+    def _get_part_values(self, value):
+        # fingerprint part can contain space in LDAP, return it as one part
+        values = value.split(None, 2)
+        if len(values) != len(self.parts):
+            return None
+        return tuple(values)
+
+
 class TARecord(DNSRecord):
     rrtype = 'TA'
     supported = False
-- 
1.8.3.1

_______________________________________________
Freeipa-devel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/freeipa-devel

Reply via email to