Code to get list of known host names

This commit is contained in:
Kovid Goyal 2021-06-25 13:54:32 +05:30
parent ec420b8012
commit 21ce0e90bf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -3,36 +3,70 @@
# License: GPLv3 Copyright: 2021, Kovid Goyal <kovid at kovidgoyal.net>
import os
import re
import subprocess
from typing import Dict, Iterator, Tuple
from typing import Callable, Dict, Iterable, Iterator, Tuple
from kitty.types import run_once
def iter_known_hosts() -> Iterator[str]:
def lines_from_file(path: str) -> Iterator[str]:
try:
f = open(os.path.expanduser('~/.ssh/config'))
f = open(os.path.expanduser(path))
except OSError:
pass
else:
for line in f:
parts = line.split()
if parts and parts[0] == 'Host' and len(parts) > 1:
yield parts[1]
yield from f
def lines_from_command(*cmd: str) -> Iterator[str]:
try:
f = open(os.path.expanduser('~/.ssh/known_hosts'))
except OSError:
pass
else:
for line in f:
parts = line.split()
if parts:
yield parts[0]
output = subprocess.check_output(cmd).decode('utf-8')
except Exception:
return
yield from output.splitlines()
def parts_yielder(lines: Iterable[str], pfilter: Callable[[str], Iterator[str]]) -> Iterator[str]:
for line in lines:
yield from pfilter(line)
def hosts_from_config_lines(line: str) -> Iterator[str]:
parts = line.strip().split()
if len(parts) > 1 and parts[0] == 'Host':
yield parts[1]
def hosts_from_known_hosts(line: str) -> Iterator[str]:
parts = line.strip().split()
if parts:
yield re.sub(r':\d+$', '', parts[0])
def hosts_from_hosts(line: str) -> Iterator[str]:
line = line.strip()
if not line.startswith('#'):
parts = line.split()
if parts:
yield parts[0]
if len(parts) > 1:
yield parts[1]
if len(parts) > 2:
yield parts[2]
def iter_known_hosts() -> Iterator[str]:
yield from parts_yielder(lines_from_file('~/.ssh/config'), hosts_from_config_lines)
yield from parts_yielder(lines_from_file('~/.ssh/known_hosts'), hosts_from_known_hosts)
yield from parts_yielder(lines_from_file('/etc/ssh/ssh_known_hosts'), hosts_from_known_hosts)
yield from parts_yielder(lines_from_file('/etc/hosts'), hosts_from_hosts)
yield from parts_yielder(lines_from_command('getent', 'hosts'), hosts_from_hosts)
@run_once
def known_hosts() -> Tuple[str, ...]:
return tuple(iter_known_hosts())
return tuple(sorted(filter(lambda x: '*' not in x and '[' not in x, set(iter_known_hosts()))))
@run_once