2018-09-23 15:26:41 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Daemon.py - PVC hypervisor router daemon
|
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Joshua M. Boniface <joshua@boniface.me>
|
|
|
|
#
|
|
|
|
# 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 kazoo.client
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import signal
|
|
|
|
import socket
|
|
|
|
import psutil
|
2018-09-23 21:19:56 -04:00
|
|
|
import subprocess
|
2018-09-24 01:03:16 -04:00
|
|
|
import time
|
|
|
|
import configparser
|
|
|
|
import apscheduler.schedulers.background
|
2018-09-23 15:26:41 -04:00
|
|
|
|
|
|
|
import daemon_lib.ansiiprint as ansiiprint
|
|
|
|
import daemon_lib.zkhandler as zkhandler
|
2018-09-24 04:07:46 -04:00
|
|
|
import daemon_lib.common as common
|
2018-09-23 15:26:41 -04:00
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
import pvcrd.RouterInstance as RouterInstance
|
2018-09-23 15:26:41 -04:00
|
|
|
import pvcrd.VXNetworkInstance as VXNetworkInstance
|
|
|
|
|
|
|
|
print(ansiiprint.bold() + "pvcrd - Parallel Virtual Cluster router daemon" + ansiiprint.end())
|
|
|
|
|
|
|
|
# Get the config file variable from the environment
|
|
|
|
try:
|
|
|
|
pvcrd_config_file = os.environ['PVCRD_CONFIG_FILE']
|
|
|
|
except:
|
|
|
|
print('ERROR: The "PVCRD_CONFIG_FILE" environment variable must be set before starting pvcrd.')
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
myhostname = socket.gethostname()
|
|
|
|
myshorthostname = myhostname.split('.', 1)[0]
|
2018-09-24 01:03:16 -04:00
|
|
|
mynetworkname = ''.join(myhostname.split('.', 1)[1:])
|
2018-09-23 15:26:41 -04:00
|
|
|
|
|
|
|
# Config values dictionary
|
|
|
|
config_values = [
|
|
|
|
'zookeeper',
|
2018-09-24 01:03:16 -04:00
|
|
|
'keepalive_interval',
|
2018-09-24 01:06:31 -04:00
|
|
|
'keepalive_interval',
|
|
|
|
'fence_intervals',
|
2018-09-23 15:26:41 -04:00
|
|
|
'vni_dev',
|
2018-09-24 01:22:49 -04:00
|
|
|
'vni_dev_ip',
|
2018-09-24 01:03:16 -04:00
|
|
|
'ipmi_hostname',
|
|
|
|
'ipmi_username',
|
|
|
|
'ipmi_password'
|
2018-09-23 15:26:41 -04:00
|
|
|
]
|
|
|
|
def readConfig(pvcrd_config_file, myhostname):
|
|
|
|
print('Loading configuration from file {}'.format(pvcrd_config_file))
|
|
|
|
|
|
|
|
o_config = configparser.ConfigParser()
|
|
|
|
o_config.read(pvcrd_config_file)
|
|
|
|
config = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
entries = o_config[myhostname]
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
entries = o_config['default']
|
2018-09-24 01:03:16 -04:00
|
|
|
except Exception as e:
|
2018-09-23 15:26:41 -04:00
|
|
|
print('ERROR: Config file is not valid!')
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
for entry in config_values:
|
|
|
|
try:
|
|
|
|
config[entry] = entries[entry]
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
config[entry] = o_config['default'][entry]
|
|
|
|
except:
|
|
|
|
print('ERROR: Config file missing required value "{}" for this host!'.format(entry))
|
|
|
|
exit(1)
|
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Handle an empty ipmi_hostname
|
|
|
|
if config['ipmi_hostname'] == '':
|
|
|
|
config['ipmi_hostname'] = myshorthostname + '-lom.' + mynetworkname
|
|
|
|
|
2018-09-23 15:26:41 -04:00
|
|
|
return config
|
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Get config
|
2018-09-23 15:26:41 -04:00
|
|
|
config = readConfig(pvcrd_config_file, myhostname)
|
|
|
|
|
2018-09-24 04:07:46 -04:00
|
|
|
# Set up our VNI interface
|
|
|
|
vni_dev = config['vni_dev']
|
|
|
|
vni_dev_ip = config['vni_dev_ip']
|
2018-09-24 15:16:52 -04:00
|
|
|
print('Setting up VNI interface {} with IP {}'.format(vni_dev, vni_dev_ip))
|
2018-09-24 04:07:46 -04:00
|
|
|
common.run_os_command('ip link set {} up'.format(vni_dev))
|
|
|
|
common.run_os_command('ip address add {} dev {}'.format(vni_dev_ip, vni_dev))
|
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Connect to local zookeeper
|
2018-09-23 15:26:41 -04:00
|
|
|
zk_conn = kazoo.client.KazooClient(hosts=config['zookeeper'])
|
|
|
|
try:
|
|
|
|
print('Connecting to Zookeeper instance at {}'.format(config['zookeeper']))
|
|
|
|
zk_conn.start()
|
|
|
|
except:
|
2018-09-24 01:03:16 -04:00
|
|
|
print('ERROR: Failed to connect to Zookeeper')
|
2018-09-23 15:26:41 -04:00
|
|
|
exit(1)
|
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Handle zookeeper failures
|
2018-09-23 15:26:41 -04:00
|
|
|
def zk_listener(state):
|
2018-09-24 01:03:16 -04:00
|
|
|
global zk_conn, update_timer
|
2018-09-23 15:26:41 -04:00
|
|
|
if state == kazoo.client.KazooState.SUSPENDED:
|
2018-09-24 01:03:16 -04:00
|
|
|
ansiiprint.echo('Connection to Zookeeper lost; retrying', '', 'e')
|
|
|
|
|
|
|
|
# Stop keepalive thread
|
|
|
|
stopKeepaliveTimer(update_timer)
|
2018-09-23 15:26:41 -04:00
|
|
|
|
|
|
|
while True:
|
|
|
|
_zk_conn = kazoo.client.KazooClient(hosts=config['zookeeper'])
|
|
|
|
try:
|
|
|
|
_zk_conn.start()
|
|
|
|
zk_conn = _zk_conn
|
|
|
|
break
|
|
|
|
except:
|
|
|
|
time.sleep(1)
|
|
|
|
elif state == kazoo.client.KazooState.CONNECTED:
|
|
|
|
ansiiprint.echo('Connection to Zookeeper started', '', 'o')
|
2018-09-24 01:03:16 -04:00
|
|
|
|
|
|
|
# Start keepalive thread
|
|
|
|
update_timer = createKeepaliveTimer()
|
2018-09-23 15:26:41 -04:00
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
|
|
|
zk_conn.add_listener(zk_listener)
|
|
|
|
|
|
|
|
# Cleanup function
|
|
|
|
def cleanup(signum, frame):
|
|
|
|
ansiiprint.echo('Terminating daemon', '', 'e')
|
2018-09-24 01:03:16 -04:00
|
|
|
# Set stop state in Zookeeper
|
|
|
|
zkhandler.writedata(zk_conn, { '/routers/{}/daemonstate'.format(myhostname): 'stop' })
|
2018-09-23 15:26:41 -04:00
|
|
|
# Close the Zookeeper connection
|
|
|
|
try:
|
|
|
|
zk_conn.stop()
|
|
|
|
zk_conn.close()
|
|
|
|
except:
|
|
|
|
pass
|
2018-09-24 01:03:16 -04:00
|
|
|
# Stop keepalive thread
|
|
|
|
stopKeepaliveTimer(update_timer)
|
2018-09-23 15:26:41 -04:00
|
|
|
# Exit
|
2018-09-24 01:03:16 -04:00
|
|
|
sys.exit(0)
|
2018-09-23 15:26:41 -04:00
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Handle signals gracefully
|
2018-09-23 15:26:41 -04:00
|
|
|
signal.signal(signal.SIGTERM, cleanup)
|
|
|
|
signal.signal(signal.SIGINT, cleanup)
|
|
|
|
signal.signal(signal.SIGQUIT, cleanup)
|
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
# Gather useful data about our host for staticdata
|
|
|
|
# Static data format: 'cpu_count', 'arch', 'os', 'kernel'
|
|
|
|
staticdata = []
|
|
|
|
staticdata.append(str(psutil.cpu_count()))
|
|
|
|
staticdata.append(subprocess.run(['uname', '-r'], stdout=subprocess.PIPE).stdout.decode('ascii').strip())
|
|
|
|
staticdata.append(subprocess.run(['uname', '-o'], stdout=subprocess.PIPE).stdout.decode('ascii').strip())
|
|
|
|
staticdata.append(subprocess.run(['uname', '-m'], stdout=subprocess.PIPE).stdout.decode('ascii').strip())
|
|
|
|
# Print static data on start
|
|
|
|
|
|
|
|
print('{0}Router hostname:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), myhostname))
|
|
|
|
print('{0}IPMI hostname:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), config['ipmi_hostname']))
|
|
|
|
print('{0}Machine details:{1}'.format(ansiiprint.bold(), ansiiprint.end()))
|
|
|
|
print(' {0}CPUs:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), staticdata[0]))
|
|
|
|
print(' {0}Arch:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), staticdata[3]))
|
|
|
|
print(' {0}OS:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), staticdata[2]))
|
|
|
|
print(' {0}Kernel:{1} {2}'.format(ansiiprint.bold(), ansiiprint.end(), staticdata[1]))
|
|
|
|
|
|
|
|
# Check if our router exists in Zookeeper, and create it if not
|
|
|
|
if zk_conn.exists('/routers/{}'.format(myhostname)):
|
|
|
|
print("Router is " + ansiiprint.green() + "present" + ansiiprint.end() + " in Zookeeper")
|
|
|
|
# Update static data just in case it's changed
|
|
|
|
zkhandler.writedata(zk_conn, { '/routers/{}/staticdata'.format(myhostname): ' '.join(staticdata) })
|
2018-09-23 15:26:41 -04:00
|
|
|
else:
|
2018-09-24 01:03:16 -04:00
|
|
|
print("Router is " + ansiiprint.red() + "absent" + ansiiprint.end() + " in Zookeeper; adding new router")
|
|
|
|
keepalive_time = int(time.time())
|
|
|
|
transaction = zk_conn.transaction()
|
|
|
|
transaction.create('/routers/{}'.format(myhostname), 'hypervisor'.encode('ascii'))
|
|
|
|
# Basic state information
|
|
|
|
transaction.create('/routers/{}/daemonstate'.format(myhostname), 'stop'.encode('ascii'))
|
2018-09-24 01:46:57 -04:00
|
|
|
transaction.create('/routers/{}/networkstate'.format(myhostname), 'secondary'.encode('ascii'))
|
2018-09-24 01:03:16 -04:00
|
|
|
transaction.create('/routers/{}/staticdata'.format(myhostname), ' '.join(staticdata).encode('ascii'))
|
2018-09-24 15:12:50 -04:00
|
|
|
transaction.create('/routers/{}/cpuload'.format(myhostname), '0'.encode('ascii'))
|
2018-09-24 01:03:16 -04:00
|
|
|
# Keepalives and fencing information
|
|
|
|
transaction.create('/routers/{}/keepalive'.format(myhostname), str(keepalive_time).encode('ascii'))
|
|
|
|
transaction.create('/routers/{}/ipmihostname'.format(myhostname), config['ipmi_hostname'].encode('ascii'))
|
|
|
|
transaction.create('/routers/{}/ipmiusername'.format(myhostname), config['ipmi_username'].encode('ascii'))
|
|
|
|
transaction.create('/routers/{}/ipmipassword'.format(myhostname), config['ipmi_password'].encode('ascii'))
|
|
|
|
transaction.commit()
|
2018-09-23 21:19:56 -04:00
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
zkhandler.writedata(zk_conn, { '/routers/{}/daemonstate'.format(myhostname): 'init' })
|
2018-09-23 15:26:41 -04:00
|
|
|
|
2018-09-24 01:03:16 -04:00
|
|
|
t_router = dict()
|
|
|
|
s_network = dict()
|
|
|
|
router_list = []
|
|
|
|
network_list = []
|
|
|
|
|
|
|
|
@zk_conn.ChildrenWatch('/routers')
|
|
|
|
def updaterouters(new_router_list):
|
|
|
|
global router_list
|
|
|
|
router_list = new_router_list
|
|
|
|
print(ansiiprint.blue() + 'Router list: ' + ansiiprint.end() + '{}'.format(' '.join(router_list)))
|
|
|
|
for router in router_list:
|
|
|
|
if router in t_router:
|
|
|
|
t_router[router].updaterouterlist(t_router)
|
|
|
|
else:
|
|
|
|
t_router[router] = RouterInstance.RouterInstance(myhostname, router, t_router, s_network, zk_conn, config)
|
2018-09-23 15:26:41 -04:00
|
|
|
|
2018-09-24 03:20:46 -04:00
|
|
|
# Set up our update function
|
|
|
|
this_router = t_router[myhostname]
|
|
|
|
update_zookeeper = this_router.update_zookeeper
|
|
|
|
update_zookeeper()
|
|
|
|
|
2018-09-23 15:26:41 -04:00
|
|
|
@zk_conn.ChildrenWatch('/networks')
|
2018-09-24 01:03:16 -04:00
|
|
|
def updatenetworks(new_network_list):
|
|
|
|
global network_list
|
2018-09-24 02:16:02 -04:00
|
|
|
for network in new_network_list:
|
2018-09-24 01:03:16 -04:00
|
|
|
if not network in s_network:
|
2018-09-24 03:20:46 -04:00
|
|
|
s_network[network] = VXNetworkInstance.VXNetworkInstance(network, zk_conn, config, t_router[myhostname])
|
2018-09-24 01:03:16 -04:00
|
|
|
if not network in new_network_list:
|
|
|
|
s_network[network].removeAddress()
|
|
|
|
s_network[network].removeNetwork()
|
2018-09-24 02:16:02 -04:00
|
|
|
for router in router_list:
|
|
|
|
if router in t_router:
|
|
|
|
t_router[router].updatenetworklist(s_network)
|
2018-09-24 01:03:16 -04:00
|
|
|
network_list = new_network_list
|
|
|
|
print(ansiiprint.blue() + 'Network list: ' + ansiiprint.end() + '{}'.format(' '.join(network_list)))
|
|
|
|
|
2018-09-24 03:20:46 -04:00
|
|
|
# Ensure we force startup of interfaces if we're primary
|
|
|
|
if this_router.getnetworkstate() == 'primary':
|
|
|
|
this_router.become_primary()
|
2018-09-24 01:03:16 -04:00
|
|
|
|
|
|
|
# Create timer to update this router in Zookeeper
|
|
|
|
def createKeepaliveTimer():
|
|
|
|
interval = int(config['keepalive_interval'])
|
|
|
|
ansiiprint.echo('Starting keepalive timer ({} second interval)'.format(interval), '', 'o')
|
|
|
|
update_timer = apscheduler.schedulers.background.BackgroundScheduler()
|
|
|
|
update_timer.add_job(update_zookeeper, 'interval', seconds=interval)
|
|
|
|
update_timer.start()
|
|
|
|
return update_timer
|
|
|
|
|
|
|
|
def stopKeepaliveTimer(update_timer):
|
|
|
|
ansiiprint.echo('Stopping keepalive timer', '', 'c')
|
|
|
|
update_timer.shutdown()
|
|
|
|
|
|
|
|
# Start keepalive thread
|
|
|
|
update_timer = createKeepaliveTimer()
|
|
|
|
|
2018-09-23 15:26:41 -04:00
|
|
|
# Tick loop
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
time.sleep(0.1)
|
|
|
|
except:
|
|
|
|
break
|