mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-15 12:17:47 +00:00
e93c3241ed
This permits ssh infrastructure to have multihomed nodes handled more effeectively.
102 lines
3.4 KiB
Python
102 lines
3.4 KiB
Python
#!/usr/bin/python
|
|
|
|
import confluent.collective.manager as collective
|
|
import eventlet.green.subprocess as subprocess
|
|
import glob
|
|
import os
|
|
import shutil
|
|
import tempfile
|
|
|
|
def normalize_uid():
|
|
curruid = os.geteuid()
|
|
neededuid = os.stat('/etc/confluent').st_uid
|
|
if curruid != neededuid:
|
|
os.seteuid(neededuid)
|
|
if os.geteuid() != neededuid:
|
|
raise Exception('Need to run as root or owner of /etc/confluent')
|
|
return curruid
|
|
|
|
|
|
def initialize_ca():
|
|
ouid = normalize_uid()
|
|
try:
|
|
os.makedirs('/etc/confluent/ssh', mode=0o700)
|
|
except OSError as e:
|
|
if e.errno != 17:
|
|
raise
|
|
finally:
|
|
os.seteuid(ouid)
|
|
myname = collective.get_myname()
|
|
caname = '{0} SSH CA'.format(myname)
|
|
subprocess.check_call(
|
|
['ssh-keygen', '-C', caname, '-t', 'ed25519', '-f',
|
|
'/etc/confluent/ssh/ca', '-N', ''], preexec_fn=normalize_uid)
|
|
try:
|
|
os.makedirs('/var/lib/confluent/public/site/ssh/', mode=0o755)
|
|
except OSError as e:
|
|
if e.errno != 17:
|
|
raise
|
|
cafilename = '/var/lib/confluent/public/site/ssh/{0}.ca'.format(myname)
|
|
shutil.copy('/etc/confluent/ssh/ca.pub', cafilename)
|
|
# newent = '@cert-authority * ' + capub.read()
|
|
|
|
|
|
def sign_host_key(pubkey, nodename, principals=()):
|
|
tmpdir = tempfile.mkdtemp()
|
|
try:
|
|
pkeyname = os.path.join(tmpdir, 'hostkey.pub')
|
|
with open(pkeyname, 'wb') as pubfile:
|
|
pubfile.write(pubkey)
|
|
principals = set(principals)
|
|
principals.add(nodename)
|
|
principals = ','.join(sorted(principals))
|
|
subprocess.check_call(
|
|
['ssh-keygen', '-s', '/etc/confluent/ssh/ca', '-I', nodename,
|
|
'-n', principals, '-h', pkeyname])
|
|
certname = pkeyname.replace('.pub', '-cert.pub')
|
|
with open(certname) as cert:
|
|
return cert.read()
|
|
finally:
|
|
shutil.rmtree(tmpdir)
|
|
|
|
def initialize_root_key(generate):
|
|
authorized = []
|
|
myname = collective.get_myname()
|
|
for currkey in glob.glob('/root/.ssh/*.pub'):
|
|
authorized.append(currkey)
|
|
if generate and not authorized:
|
|
subprocess.check_call(['ssh-keygen', '-t', 'ed25519', '-f', '/root/.ssh/id_ed25519', '-N', ''])
|
|
for currkey in glob.glob('/root/.ssh/*.pub'):
|
|
authorized.append(currkey)
|
|
try:
|
|
os.makedirs('/var/lib/confluent/public/site/ssh', mode=0o755)
|
|
neededuid = os.stat('/etc/confluent').st_uid
|
|
os.chown('/var/lib/confluent', neededuid, -1)
|
|
os.chown('/var/lib/confluent/public', neededuid, -1)
|
|
os.chown('/var/lib/confluent/public/site', neededuid, -1)
|
|
os.chown('/var/lib/confluent/public/site/ssh', neededuid, -1)
|
|
except OSError as e:
|
|
if e.errno != 17:
|
|
raise
|
|
neededuid = os.stat('/etc/confluent').st_uid
|
|
for auth in authorized:
|
|
shutil.copy(
|
|
auth,
|
|
'/var/lib/confluent/public/site/ssh/{0}.rootpubkey'.format(
|
|
myname))
|
|
os.chmod('/var/lib/confluent/public/site/ssh/{0}.rootpubkey'.format(
|
|
myname), 0o644)
|
|
os.chown('/var/lib/confluent/public/site/ssh/{0}.rootpubkey'.format(
|
|
myname), neededuid, -1)
|
|
|
|
|
|
def ca_exists():
|
|
return os.path.exists('/etc/confluent/ssh/ca')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
initialize_root_key(True)
|
|
if not ca_exists():
|
|
initialize_ca()
|
|
print(repr(sign_host_key(open('/etc/ssh/ssh_host_ed25519_key.pub').read(), collective.get_myname())))
|