253 lines
7.9 KiB
Python
253 lines
7.9 KiB
Python
|
# type: ignore # dnspython is currently optional and mypy fails if missing
|
||
|
"""
|
||
|
DNS query support
|
||
|
"""
|
||
|
|
||
|
# Copyright (C) 2021 The Psycopg Team
|
||
|
|
||
|
import os
|
||
|
import re
|
||
|
import warnings
|
||
|
from random import randint
|
||
|
from typing import Any, DefaultDict, Dict, List, NamedTuple, Optional, Sequence
|
||
|
from typing import TYPE_CHECKING
|
||
|
from collections import defaultdict
|
||
|
|
||
|
try:
|
||
|
from dns.resolver import Resolver, Cache
|
||
|
from dns.asyncresolver import Resolver as AsyncResolver
|
||
|
from dns.exception import DNSException
|
||
|
except ImportError:
|
||
|
raise ImportError(
|
||
|
"the module psycopg._dns requires the package 'dnspython' installed"
|
||
|
)
|
||
|
|
||
|
from . import errors as e
|
||
|
from . import conninfo
|
||
|
|
||
|
if TYPE_CHECKING:
|
||
|
from dns.rdtypes.IN.SRV import SRV
|
||
|
|
||
|
resolver = Resolver()
|
||
|
resolver.cache = Cache()
|
||
|
|
||
|
async_resolver = AsyncResolver()
|
||
|
async_resolver.cache = Cache()
|
||
|
|
||
|
|
||
|
async def resolve_hostaddr_async(params: Dict[str, Any]) -> Dict[str, Any]:
|
||
|
"""
|
||
|
Perform async DNS lookup of the hosts and return a new params dict.
|
||
|
|
||
|
.. deprecated:: 3.1
|
||
|
The use of this function is not necessary anymore, because
|
||
|
`psycopg.AsyncConnection.connect()` performs non-blocking name
|
||
|
resolution automatically.
|
||
|
"""
|
||
|
warnings.warn(
|
||
|
"from psycopg 3.1, resolve_hostaddr_async() is not needed anymore",
|
||
|
DeprecationWarning,
|
||
|
)
|
||
|
hosts: list[str] = []
|
||
|
hostaddrs: list[str] = []
|
||
|
ports: list[str] = []
|
||
|
|
||
|
for attempt in conninfo._split_attempts(conninfo._inject_defaults(params)):
|
||
|
try:
|
||
|
async for a2 in conninfo._split_attempts_and_resolve(attempt):
|
||
|
hosts.append(a2["host"])
|
||
|
hostaddrs.append(a2["hostaddr"])
|
||
|
if "port" in params:
|
||
|
ports.append(a2["port"])
|
||
|
except OSError as ex:
|
||
|
last_exc = ex
|
||
|
|
||
|
if params.get("host") and not hosts:
|
||
|
# We couldn't resolve anything
|
||
|
raise e.OperationalError(str(last_exc))
|
||
|
|
||
|
out = params.copy()
|
||
|
shosts = ",".join(hosts)
|
||
|
if shosts:
|
||
|
out["host"] = shosts
|
||
|
shostaddrs = ",".join(hostaddrs)
|
||
|
if shostaddrs:
|
||
|
out["hostaddr"] = shostaddrs
|
||
|
sports = ",".join(ports)
|
||
|
if ports:
|
||
|
out["port"] = sports
|
||
|
|
||
|
return out
|
||
|
|
||
|
|
||
|
def resolve_srv(params: Dict[str, Any]) -> Dict[str, Any]:
|
||
|
"""Apply SRV DNS lookup as defined in :RFC:`2782`."""
|
||
|
return Rfc2782Resolver().resolve(params)
|
||
|
|
||
|
|
||
|
async def resolve_srv_async(params: Dict[str, Any]) -> Dict[str, Any]:
|
||
|
"""Async equivalent of `resolve_srv()`."""
|
||
|
return await Rfc2782Resolver().resolve_async(params)
|
||
|
|
||
|
|
||
|
class HostPort(NamedTuple):
|
||
|
host: str
|
||
|
port: str
|
||
|
totry: bool = False
|
||
|
target: Optional[str] = None
|
||
|
|
||
|
|
||
|
class Rfc2782Resolver:
|
||
|
"""Implement SRV RR Resolution as per RFC 2782
|
||
|
|
||
|
The class is organised to minimise code duplication between the sync and
|
||
|
the async paths.
|
||
|
"""
|
||
|
|
||
|
re_srv_rr = re.compile(r"^(?P<service>_[^\.]+)\.(?P<proto>_[^\.]+)\.(?P<target>.+)")
|
||
|
|
||
|
def resolve(self, params: Dict[str, Any]) -> Dict[str, Any]:
|
||
|
"""Update the parameters host and port after SRV lookup."""
|
||
|
attempts = self._get_attempts(params)
|
||
|
if not attempts:
|
||
|
return params
|
||
|
|
||
|
hps = []
|
||
|
for hp in attempts:
|
||
|
if hp.totry:
|
||
|
hps.extend(self._resolve_srv(hp))
|
||
|
else:
|
||
|
hps.append(hp)
|
||
|
|
||
|
return self._return_params(params, hps)
|
||
|
|
||
|
async def resolve_async(self, params: Dict[str, Any]) -> Dict[str, Any]:
|
||
|
"""Update the parameters host and port after SRV lookup."""
|
||
|
attempts = self._get_attempts(params)
|
||
|
if not attempts:
|
||
|
return params
|
||
|
|
||
|
hps = []
|
||
|
for hp in attempts:
|
||
|
if hp.totry:
|
||
|
hps.extend(await self._resolve_srv_async(hp))
|
||
|
else:
|
||
|
hps.append(hp)
|
||
|
|
||
|
return self._return_params(params, hps)
|
||
|
|
||
|
def _get_attempts(self, params: Dict[str, Any]) -> List[HostPort]:
|
||
|
"""
|
||
|
Return the list of host, and for each host if SRV lookup must be tried.
|
||
|
|
||
|
Return an empty list if no lookup is requested.
|
||
|
"""
|
||
|
# If hostaddr is defined don't do any resolution.
|
||
|
if params.get("hostaddr", os.environ.get("PGHOSTADDR", "")):
|
||
|
return []
|
||
|
|
||
|
host_arg: str = params.get("host", os.environ.get("PGHOST", ""))
|
||
|
hosts_in = host_arg.split(",")
|
||
|
port_arg: str = str(params.get("port", os.environ.get("PGPORT", "")))
|
||
|
ports_in = port_arg.split(",")
|
||
|
|
||
|
if len(ports_in) == 1:
|
||
|
# If only one port is specified, it applies to all the hosts.
|
||
|
ports_in *= len(hosts_in)
|
||
|
if len(ports_in) != len(hosts_in):
|
||
|
# ProgrammingError would have been more appropriate, but this is
|
||
|
# what the raise if the libpq fails connect in the same case.
|
||
|
raise e.OperationalError(
|
||
|
f"cannot match {len(hosts_in)} hosts with {len(ports_in)} port numbers"
|
||
|
)
|
||
|
|
||
|
out = []
|
||
|
srv_found = False
|
||
|
for host, port in zip(hosts_in, ports_in):
|
||
|
m = self.re_srv_rr.match(host)
|
||
|
if m or port.lower() == "srv":
|
||
|
srv_found = True
|
||
|
target = m.group("target") if m else None
|
||
|
hp = HostPort(host=host, port=port, totry=True, target=target)
|
||
|
else:
|
||
|
hp = HostPort(host=host, port=port)
|
||
|
out.append(hp)
|
||
|
|
||
|
return out if srv_found else []
|
||
|
|
||
|
def _resolve_srv(self, hp: HostPort) -> List[HostPort]:
|
||
|
try:
|
||
|
ans = resolver.resolve(hp.host, "SRV")
|
||
|
except DNSException:
|
||
|
ans = ()
|
||
|
return self._get_solved_entries(hp, ans)
|
||
|
|
||
|
async def _resolve_srv_async(self, hp: HostPort) -> List[HostPort]:
|
||
|
try:
|
||
|
ans = await async_resolver.resolve(hp.host, "SRV")
|
||
|
except DNSException:
|
||
|
ans = ()
|
||
|
return self._get_solved_entries(hp, ans)
|
||
|
|
||
|
def _get_solved_entries(
|
||
|
self, hp: HostPort, entries: "Sequence[SRV]"
|
||
|
) -> List[HostPort]:
|
||
|
if not entries:
|
||
|
# No SRV entry found. Delegate the libpq a QNAME=target lookup
|
||
|
if hp.target and hp.port.lower() != "srv":
|
||
|
return [HostPort(host=hp.target, port=hp.port)]
|
||
|
else:
|
||
|
return []
|
||
|
|
||
|
# If there is precisely one SRV RR, and its Target is "." (the root
|
||
|
# domain), abort.
|
||
|
if len(entries) == 1 and str(entries[0].target) == ".":
|
||
|
return []
|
||
|
|
||
|
return [
|
||
|
HostPort(host=str(entry.target).rstrip("."), port=str(entry.port))
|
||
|
for entry in self.sort_rfc2782(entries)
|
||
|
]
|
||
|
|
||
|
def _return_params(
|
||
|
self, params: Dict[str, Any], hps: List[HostPort]
|
||
|
) -> Dict[str, Any]:
|
||
|
if not hps:
|
||
|
# Nothing found, we ended up with an empty list
|
||
|
raise e.OperationalError("no host found after SRV RR lookup")
|
||
|
|
||
|
out = params.copy()
|
||
|
out["host"] = ",".join(hp.host for hp in hps)
|
||
|
out["port"] = ",".join(str(hp.port) for hp in hps)
|
||
|
return out
|
||
|
|
||
|
def sort_rfc2782(self, ans: "Sequence[SRV]") -> "List[SRV]":
|
||
|
"""
|
||
|
Implement the priority/weight ordering defined in RFC 2782.
|
||
|
"""
|
||
|
# Divide the entries by priority:
|
||
|
priorities: DefaultDict[int, "List[SRV]"] = defaultdict(list)
|
||
|
out: "List[SRV]" = []
|
||
|
for entry in ans:
|
||
|
priorities[entry.priority].append(entry)
|
||
|
|
||
|
for pri, entries in sorted(priorities.items()):
|
||
|
if len(entries) == 1:
|
||
|
out.append(entries[0])
|
||
|
continue
|
||
|
|
||
|
entries.sort(key=lambda ent: ent.weight)
|
||
|
total_weight = sum(ent.weight for ent in entries)
|
||
|
while entries:
|
||
|
r = randint(0, total_weight)
|
||
|
csum = 0
|
||
|
for i, ent in enumerate(entries):
|
||
|
csum += ent.weight
|
||
|
if csum >= r:
|
||
|
break
|
||
|
out.append(ent)
|
||
|
total_weight -= ent.weight
|
||
|
del entries[i]
|
||
|
|
||
|
return out
|