diff options
author | Maxim Devaev <[email protected]> | 2024-02-01 17:26:08 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-02-01 17:26:08 +0200 |
commit | 7141eebbf8e25438eb2953a88e0cc4e49b28f309 (patch) | |
tree | bbd0c3a477ae599cf45140d8fe4588fe25d30307 /kvmd/network.py | |
parent | 74d2d7466779b4c3367dd0677a5072f982061931 (diff) |
check if ipv6 enabled before listen
Diffstat (limited to 'kvmd/network.py')
-rw-r--r-- | kvmd/network.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/kvmd/network.py b/kvmd/network.py new file mode 100644 index 00000000..a65a12a7 --- /dev/null +++ b/kvmd/network.py @@ -0,0 +1,48 @@ +# ========================================================================== # +# # +# KVMD - The main PiKVM daemon. # +# # +# Copyright (C) 2018-2023 Maxim Devaev <[email protected]> # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see <https://www.gnu.org/licenses/>. # +# # +# ========================================================================== # + + +import socket +import errno + + +# ===== +def is_ipv6_enabled() -> bool: + if not socket.has_ipv6: + # If the socket library has no support for IPv6, + # then the question is moot as we can't use IPv6 anyways. + return False + try: + with socket.socket(socket.AF_INET6, socket.SOCK_STREAM) as sock: + sock.bind(("::1", 0)) + return True + except OSError as err: + if err.errno in [errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT]: + return False + if err.errno == errno.EADDRINUSE: + return True + raise + + +def get_listen_host(host: str) -> str: + if len(host) == 0: + return ("::" if is_ipv6_enabled() else "0.0.0.0") + return host |