ssh: collect host keys in metadata
This commit is contained in:
parent
8a9434a384
commit
be6903d3a6
2 changed files with 34 additions and 20 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
from ipaddress import ip_interface
|
||||||
from base64 import b64decode
|
from base64 import b64decode
|
||||||
|
|
||||||
|
|
||||||
|
@ -32,3 +33,34 @@ def host_key(metadata):
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@metadata_reactor.provides(
|
||||||
|
'ssh/hostnames',
|
||||||
|
)
|
||||||
|
def hostnames(metadata):
|
||||||
|
ips = set()
|
||||||
|
|
||||||
|
for network in node.metadata.get('network').values():
|
||||||
|
if network.get('ipv4', None):
|
||||||
|
ips.add(str(ip_interface(network['ipv4']).ip))
|
||||||
|
if network.get('ipv6', None):
|
||||||
|
ips.add(str(ip_interface(network['ipv6']).ip))
|
||||||
|
|
||||||
|
domains = {
|
||||||
|
domain
|
||||||
|
for domain, records in node.metadata.get('dns').items()
|
||||||
|
for type, values in records.items()
|
||||||
|
if type in {'A', 'AAAA'}
|
||||||
|
and set(values) & ips
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
'ssh': {
|
||||||
|
'hostnames': {
|
||||||
|
node.hostname,
|
||||||
|
*ips,
|
||||||
|
*domains,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
22
libs/ssh.py
22
libs/ssh.py
|
@ -2,7 +2,6 @@ from base64 import b64decode, b64encode
|
||||||
from hashlib import sha3_224, sha1
|
from hashlib import sha3_224, sha1
|
||||||
from functools import cache
|
from functools import cache
|
||||||
import hmac
|
import hmac
|
||||||
from ipaddress import ip_interface
|
|
||||||
|
|
||||||
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
||||||
from cryptography.hazmat.primitives.serialization import Encoding, PrivateFormat, PublicFormat, NoEncryption
|
from cryptography.hazmat.primitives.serialization import Encoding, PrivateFormat, PublicFormat, NoEncryption
|
||||||
|
@ -57,30 +56,13 @@ def generate_ed25519_key_pair(secret):
|
||||||
# - `bw debug -c 'repo.libs.ssh.known_hosts_entry_for(repo.get_node(<node with hostname 10.0.0.5>), <salt from ssh-keygen>)'`
|
# - `bw debug -c 'repo.libs.ssh.known_hosts_entry_for(repo.get_node(<node with hostname 10.0.0.5>), <salt from ssh-keygen>)'`
|
||||||
@cache
|
@cache
|
||||||
def known_hosts_entry_for(node, test_salt=None):
|
def known_hosts_entry_for(node, test_salt=None):
|
||||||
ips = set()
|
|
||||||
|
|
||||||
for network in node.metadata.get('network').values():
|
|
||||||
if network.get('ipv4', None):
|
|
||||||
ips.add(str(ip_interface(network['ipv4']).ip))
|
|
||||||
if network.get('ipv6', None):
|
|
||||||
ips.add(str(ip_interface(network['ipv6']).ip))
|
|
||||||
|
|
||||||
domains = {
|
|
||||||
domain
|
|
||||||
for domain, records in node.metadata.get('dns').items()
|
|
||||||
for type, values in records.items()
|
|
||||||
if type in {'A', 'AAAA'}
|
|
||||||
and set(values) & ips
|
|
||||||
}
|
|
||||||
|
|
||||||
lines = set()
|
lines = set()
|
||||||
|
|
||||||
for hostname in {node.hostname, *ips, *domains}:
|
for hostname in sorted(node.metadata.get('ssh/hostnames')):
|
||||||
|
|
||||||
if test_salt:
|
if test_salt:
|
||||||
salt = b64decode(test_salt)
|
salt = b64decode(test_salt)
|
||||||
else:
|
else:
|
||||||
salt = sha1(node.metadata.get('id').encode()).digest()
|
salt = sha1((node.metadata.get('id') + hostname).encode()).digest()
|
||||||
|
|
||||||
hash = hmac.new(salt, hostname.encode(), sha1).digest()
|
hash = hmac.new(salt, hostname.encode(), sha1).digest()
|
||||||
pubkey = node.metadata.get('ssh/host_key/public')
|
pubkey = node.metadata.get('ssh/host_key/public')
|
||||||
|
|
Loading…
Reference in a new issue