2024-09-17 16:15:10 +02:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
from typing import List, Tuple, Optional
|
2020-05-03 11:19:14 +02:00
|
|
|
|
2019-12-02 01:13:39 +01:00
|
|
|
import dns.resolver
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
from app.config import NAMESERVERS
|
2019-12-02 01:13:39 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
_include_spf = "include:"
|
2020-05-03 11:19:14 +02:00
|
|
|
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def is_mx_equivalent(
|
|
|
|
mx_domains: List[Tuple[int, str]], ref_mx_domains: List[Tuple[int, str]]
|
|
|
|
) -> bool:
|
2019-12-27 23:36:13 +01:00
|
|
|
"""
|
2024-09-17 16:15:10 +02:00
|
|
|
Compare mx_domains with ref_mx_domains to see if they are equivalent.
|
|
|
|
mx_domains and ref_mx_domains are list of (priority, domain)
|
2019-12-06 11:54:01 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
The priority order is taken into account but not the priority number.
|
|
|
|
For example, [(1, domain1), (2, domain2)] is equivalent to [(10, domain1), (20, domain2)]
|
|
|
|
"""
|
|
|
|
mx_domains = sorted(mx_domains, key=lambda x: x[0])
|
|
|
|
ref_mx_domains = sorted(ref_mx_domains, key=lambda x: x[0])
|
2019-12-06 11:54:01 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
if len(mx_domains) < len(ref_mx_domains):
|
|
|
|
return False
|
2019-12-06 11:54:01 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
for i in range(len(ref_mx_domains)):
|
|
|
|
if mx_domains[i][1] != ref_mx_domains[i][1]:
|
|
|
|
return False
|
2019-12-06 11:54:01 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
return True
|
2019-12-06 11:54:01 +01:00
|
|
|
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
class DNSClient(ABC):
|
|
|
|
@abstractmethod
|
|
|
|
def get_cname_record(self, hostname: str) -> Optional[str]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def get_mx_domains(self, hostname: str) -> List[Tuple[int, str]]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_spf_domain(self, hostname: str) -> List[str]:
|
|
|
|
"""
|
|
|
|
return all domains listed in *include:*
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
records = self.get_txt_record(hostname)
|
|
|
|
ret = []
|
|
|
|
for record in records:
|
|
|
|
if record.startswith("v=spf1"):
|
|
|
|
parts = record.split(" ")
|
|
|
|
for part in parts:
|
|
|
|
if part.startswith(_include_spf):
|
|
|
|
ret.append(
|
|
|
|
part[part.find(_include_spf) + len(_include_spf) :]
|
|
|
|
)
|
|
|
|
return ret
|
|
|
|
except Exception:
|
|
|
|
return []
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def get_txt_record(self, hostname: str) -> List[str]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NetworkDNSClient(DNSClient):
|
|
|
|
def __init__(self, nameservers: List[str]):
|
|
|
|
self._resolver = dns.resolver.Resolver()
|
|
|
|
self._resolver.nameservers = nameservers
|
|
|
|
|
|
|
|
def get_cname_record(self, hostname: str) -> Optional[str]:
|
|
|
|
"""
|
|
|
|
Return the CNAME record if exists for a domain, WITHOUT the trailing period at the end
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
answers = self._resolver.resolve(hostname, "CNAME", search=True)
|
|
|
|
for a in answers:
|
|
|
|
ret = a.to_text()
|
|
|
|
return ret[:-1]
|
|
|
|
except Exception:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_mx_domains(self, hostname: str) -> List[Tuple[int, str]]:
|
|
|
|
"""
|
|
|
|
return list of (priority, domain name) sorted by priority (lowest priority first)
|
|
|
|
domain name ends with a "." at the end.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
answers = self._resolver.resolve(hostname, "MX", search=True)
|
|
|
|
ret = []
|
|
|
|
for a in answers:
|
|
|
|
record = a.to_text() # for ex '20 alt2.aspmx.l.google.com.'
|
2019-12-06 11:54:01 +01:00
|
|
|
parts = record.split(" ")
|
2024-09-17 16:15:10 +02:00
|
|
|
ret.append((int(parts[0]), parts[1]))
|
|
|
|
return sorted(ret, key=lambda x: x[0])
|
|
|
|
except Exception:
|
|
|
|
return []
|
2019-12-06 11:54:01 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_txt_record(self, hostname: str) -> List[str]:
|
|
|
|
try:
|
|
|
|
answers = self._resolver.resolve(hostname, "TXT", search=True)
|
|
|
|
ret = []
|
|
|
|
for a in answers: # type: dns.rdtypes.ANY.TXT.TXT
|
|
|
|
for record in a.strings:
|
|
|
|
ret.append(record.decode())
|
|
|
|
return ret
|
|
|
|
except Exception:
|
|
|
|
return []
|
2019-12-27 23:36:13 +01:00
|
|
|
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
class InMemoryDNSClient(DNSClient):
|
|
|
|
def __init__(self):
|
|
|
|
self.cname_records: dict[str, Optional[str]] = {}
|
|
|
|
self.mx_records: dict[str, List[Tuple[int, str]]] = {}
|
|
|
|
self.spf_records: dict[str, List[str]] = {}
|
|
|
|
self.txt_records: dict[str, List[str]] = {}
|
2019-12-27 23:36:13 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def set_cname_record(self, hostname: str, cname: str):
|
|
|
|
self.cname_records[hostname] = cname
|
2019-12-27 23:36:13 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def set_mx_records(self, hostname: str, mx_list: List[Tuple[int, str]]):
|
|
|
|
self.mx_records[hostname] = mx_list
|
2019-12-27 23:36:13 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def set_txt_record(self, hostname: str, txt_list: List[str]):
|
|
|
|
self.txt_records[hostname] = txt_list
|
2019-12-27 23:36:13 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_cname_record(self, hostname: str) -> Optional[str]:
|
|
|
|
return self.cname_records.get(hostname)
|
2021-11-23 14:31:53 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_mx_domains(self, hostname: str) -> List[Tuple[int, str]]:
|
|
|
|
mx_list = self.mx_records.get(hostname, [])
|
|
|
|
return sorted(mx_list, key=lambda x: x[0])
|
2021-11-23 14:31:53 +01:00
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_txt_record(self, hostname: str) -> List[str]:
|
|
|
|
return self.txt_records.get(hostname, [])
|
2021-11-23 14:31:53 +01:00
|
|
|
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_network_dns_client() -> NetworkDNSClient:
|
|
|
|
return NetworkDNSClient(NAMESERVERS)
|
2021-11-23 14:31:53 +01:00
|
|
|
|
|
|
|
|
2024-09-17 16:15:10 +02:00
|
|
|
def get_mx_domains(hostname: str) -> [(int, str)]:
|
|
|
|
return get_network_dns_client().get_mx_domains(hostname)
|