mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-06-23 18:36:29 +00:00

* Improve gdbus error handling * Fix logging type * Detect no dbus * Fix issue with complex * Update hassio/dbus/__init__.py Co-Authored-By: Franck Nijhof <frenck@frenck.nl> * Update hassio/dbus/hostname.py Co-Authored-By: Franck Nijhof <frenck@frenck.nl> * Update hassio/dbus/rauc.py Co-Authored-By: Franck Nijhof <frenck@frenck.nl> * Update hassio/dbus/systemd.py Co-Authored-By: Franck Nijhof <frenck@frenck.nl> * Fix black
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
"""Setup the internal DNS service for host applications."""
|
|
import asyncio
|
|
import logging
|
|
import shlex
|
|
from ipaddress import IPv4Address
|
|
from typing import Optional
|
|
|
|
import async_timeout
|
|
|
|
_LOGGER: logging.Logger = logging.getLogger(__name__)
|
|
|
|
COMMAND = "socat UDP-RECVFROM:53,fork UDP-SENDTO:{!s}:53"
|
|
|
|
|
|
class DNSForward:
|
|
"""Manage DNS forwarding to internal DNS."""
|
|
|
|
def __init__(self):
|
|
"""Initialize DNS forwarding."""
|
|
self.proc: Optional[asyncio.Process] = None
|
|
|
|
async def start(self, dns_server: IPv4Address) -> None:
|
|
"""Start DNS forwarding."""
|
|
try:
|
|
self.proc = await asyncio.create_subprocess_exec(
|
|
*shlex.split(COMMAND.format(dns_server)),
|
|
stdin=asyncio.subprocess.DEVNULL,
|
|
stdout=asyncio.subprocess.DEVNULL,
|
|
stderr=asyncio.subprocess.DEVNULL,
|
|
)
|
|
except OSError as err:
|
|
_LOGGER.error("Can't start DNS forwarding: %s", err)
|
|
else:
|
|
_LOGGER.info("Start DNS port forwarding to %s", dns_server)
|
|
|
|
async def stop(self) -> None:
|
|
"""Stop DNS forwarding."""
|
|
if not self.proc:
|
|
_LOGGER.warning("DNS forwarding is not running!")
|
|
return
|
|
|
|
self.proc.kill()
|
|
try:
|
|
with async_timeout.timeout(5):
|
|
await self.proc.wait()
|
|
except asyncio.TimeoutError:
|
|
_LOGGER.warning("Stop waiting for DNS shutdown")
|
|
|
|
_LOGGER.info("Stop DNS forwarding")
|