2018-09-20 03:25:58 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# node.py - PVC client function library, node management
|
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
2021-03-25 17:01:55 -04:00
|
|
|
# Copyright (C) 2018-2021 Joshua M. Boniface <joshua@boniface.me>
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# 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
|
2021-03-25 16:57:17 -04:00
|
|
|
# the Free Software Foundation, version 3.
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# 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 time
|
|
|
|
import re
|
|
|
|
|
2020-02-08 18:48:59 -05:00
|
|
|
import daemon_lib.zkhandler as zkhandler
|
|
|
|
import daemon_lib.common as common
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-07-04 23:00:53 -04:00
|
|
|
def getNodeInformation(zk_conn, node_name):
|
2019-05-10 23:25:06 -04:00
|
|
|
"""
|
|
|
|
Gather information about a node from the Zookeeper database and return a dict() containing it.
|
|
|
|
"""
|
2018-10-14 02:01:35 -04:00
|
|
|
node_daemon_state = zkhandler.readdata(zk_conn, '/nodes/{}/daemonstate'.format(node_name))
|
2018-11-18 20:00:40 -05:00
|
|
|
node_coordinator_state = zkhandler.readdata(zk_conn, '/nodes/{}/routerstate'.format(node_name))
|
2018-10-14 02:01:35 -04:00
|
|
|
node_domain_state = zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node_name))
|
|
|
|
node_static_data = zkhandler.readdata(zk_conn, '/nodes/{}/staticdata'.format(node_name)).split()
|
2019-12-23 20:43:20 -05:00
|
|
|
node_cpu_count = int(node_static_data[0])
|
2018-10-14 02:01:35 -04:00
|
|
|
node_kernel = node_static_data[1]
|
|
|
|
node_os = node_static_data[2]
|
|
|
|
node_arch = node_static_data[3]
|
2019-12-23 20:43:20 -05:00
|
|
|
node_vcpu_allocated = int(zkhandler.readdata(zk_conn, 'nodes/{}/vcpualloc'.format(node_name)))
|
2019-05-10 23:25:06 -04:00
|
|
|
node_mem_total = int(zkhandler.readdata(zk_conn, '/nodes/{}/memtotal'.format(node_name)))
|
2018-10-14 02:01:35 -04:00
|
|
|
node_mem_allocated = int(zkhandler.readdata(zk_conn, '/nodes/{}/memalloc'.format(node_name)))
|
2020-10-18 14:02:34 -04:00
|
|
|
node_mem_provisioned = int(zkhandler.readdata(zk_conn, '/nodes/{}/memprov'.format(node_name)))
|
2018-10-14 02:01:35 -04:00
|
|
|
node_mem_used = int(zkhandler.readdata(zk_conn, '/nodes/{}/memused'.format(node_name)))
|
|
|
|
node_mem_free = int(zkhandler.readdata(zk_conn, '/nodes/{}/memfree'.format(node_name)))
|
2019-12-23 20:43:20 -05:00
|
|
|
node_load = float(zkhandler.readdata(zk_conn, '/nodes/{}/cpuload'.format(node_name)))
|
|
|
|
node_domains_count = int(zkhandler.readdata(zk_conn, '/nodes/{}/domainscount'.format(node_name)))
|
2018-10-14 02:01:35 -04:00
|
|
|
node_running_domains = zkhandler.readdata(zk_conn, '/nodes/{}/runningdomains'.format(node_name)).split()
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-05-10 23:25:06 -04:00
|
|
|
# Construct a data structure to represent the data
|
|
|
|
node_information = {
|
|
|
|
'name': node_name,
|
|
|
|
'daemon_state': node_daemon_state,
|
|
|
|
'coordinator_state': node_coordinator_state,
|
|
|
|
'domain_state': node_domain_state,
|
|
|
|
'cpu_count': node_cpu_count,
|
|
|
|
'kernel': node_kernel,
|
|
|
|
'os': node_os,
|
|
|
|
'arch': node_arch,
|
|
|
|
'load': node_load,
|
|
|
|
'domains_count': node_domains_count,
|
|
|
|
'running_domains': node_running_domains,
|
2019-06-02 22:28:18 -04:00
|
|
|
'vcpu': {
|
|
|
|
'total': node_cpu_count,
|
|
|
|
'allocated': node_vcpu_allocated
|
|
|
|
},
|
2019-05-10 23:25:06 -04:00
|
|
|
'memory': {
|
|
|
|
'total': node_mem_total,
|
|
|
|
'allocated': node_mem_allocated,
|
2020-10-18 14:02:34 -04:00
|
|
|
'provisioned': node_mem_provisioned,
|
2019-05-10 23:25:06 -04:00
|
|
|
'used': node_mem_used,
|
|
|
|
'free': node_mem_free
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return node_information
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# Direct Functions
|
|
|
|
#
|
2020-02-19 10:50:21 -05:00
|
|
|
def secondary_node(zk_conn, node):
|
2018-10-14 02:01:35 -04:00
|
|
|
# Verify node is valid
|
|
|
|
if not common.verifyNode(zk_conn, node):
|
|
|
|
return False, 'ERROR: No node named "{}" is present in the cluster.'.format(node)
|
|
|
|
|
|
|
|
# Ensure node is a coordinator
|
|
|
|
daemon_mode = zkhandler.readdata(zk_conn, '/nodes/{}/daemonmode'.format(node))
|
|
|
|
if daemon_mode == 'hypervisor':
|
|
|
|
return False, 'ERROR: Cannot change router mode on non-coordinator node "{}"'.format(node)
|
|
|
|
|
2019-06-19 12:49:34 -04:00
|
|
|
# Ensure node is in run daemonstate
|
|
|
|
daemon_state = zkhandler.readdata(zk_conn, '/nodes/{}/daemonstate'.format(node))
|
2019-06-19 14:19:00 -04:00
|
|
|
if daemon_state != 'run':
|
2019-06-19 12:49:34 -04:00
|
|
|
return False, 'ERROR: Node "{}" is not active'.format(node)
|
|
|
|
|
2018-10-14 02:01:35 -04:00
|
|
|
# Get current state
|
|
|
|
current_state = zkhandler.readdata(zk_conn, '/nodes/{}/routerstate'.format(node))
|
|
|
|
if current_state == 'primary':
|
2019-03-21 11:19:28 -04:00
|
|
|
retmsg = 'Setting node {} in secondary router mode.'.format(node)
|
2018-10-14 02:01:35 -04:00
|
|
|
zkhandler.writedata(zk_conn, {
|
|
|
|
'/primary_node': 'none'
|
|
|
|
})
|
|
|
|
else:
|
2019-07-08 22:37:26 -04:00
|
|
|
return False, 'Node "{}" is already in secondary router mode.'.format(node)
|
2018-10-14 02:01:35 -04:00
|
|
|
|
2019-03-21 11:19:28 -04:00
|
|
|
return True, retmsg
|
2018-10-14 02:01:35 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-02-19 10:50:21 -05:00
|
|
|
def primary_node(zk_conn, node):
|
2018-10-14 02:01:35 -04:00
|
|
|
# Verify node is valid
|
|
|
|
if not common.verifyNode(zk_conn, node):
|
|
|
|
return False, 'ERROR: No node named "{}" is present in the cluster.'.format(node)
|
|
|
|
|
|
|
|
# Ensure node is a coordinator
|
|
|
|
daemon_mode = zkhandler.readdata(zk_conn, '/nodes/{}/daemonmode'.format(node))
|
|
|
|
if daemon_mode == 'hypervisor':
|
|
|
|
return False, 'ERROR: Cannot change router mode on non-coordinator node "{}"'.format(node)
|
|
|
|
|
2019-06-19 12:49:34 -04:00
|
|
|
# Ensure node is in run daemonstate
|
|
|
|
daemon_state = zkhandler.readdata(zk_conn, '/nodes/{}/daemonstate'.format(node))
|
2019-06-19 14:19:00 -04:00
|
|
|
if daemon_state != 'run':
|
2019-06-19 12:49:34 -04:00
|
|
|
return False, 'ERROR: Node "{}" is not active'.format(node)
|
|
|
|
|
2018-10-14 02:01:35 -04:00
|
|
|
# Get current state
|
|
|
|
current_state = zkhandler.readdata(zk_conn, '/nodes/{}/routerstate'.format(node))
|
|
|
|
if current_state == 'secondary':
|
2019-03-21 11:19:28 -04:00
|
|
|
retmsg = 'Setting node {} in primary router mode.'.format(node)
|
2018-10-14 02:01:35 -04:00
|
|
|
zkhandler.writedata(zk_conn, {
|
|
|
|
'/primary_node': node
|
|
|
|
})
|
|
|
|
else:
|
2019-07-08 22:37:26 -04:00
|
|
|
return False, 'Node "{}" is already in primary router mode.'.format(node)
|
2018-10-14 02:01:35 -04:00
|
|
|
|
2019-03-21 11:19:28 -04:00
|
|
|
return True, retmsg
|
2018-10-14 02:01:35 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-02-19 09:44:38 -05:00
|
|
|
def flush_node(zk_conn, node, wait=False):
|
2018-09-20 03:25:58 -04:00
|
|
|
# Verify node is valid
|
2018-09-23 01:05:54 -04:00
|
|
|
if not common.verifyNode(zk_conn, node):
|
|
|
|
return False, 'ERROR: No node named "{}" is present in the cluster.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-07-09 23:15:43 -04:00
|
|
|
retmsg = 'Flushing hypervisor {} of running VMs.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
|
|
|
# Add the new domain to Zookeeper
|
2018-10-14 02:01:35 -04:00
|
|
|
zkhandler.writedata(zk_conn, {
|
|
|
|
'/nodes/{}/domainstate'.format(node): 'flush'
|
|
|
|
})
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-05-10 23:52:24 -04:00
|
|
|
if wait:
|
2019-07-26 20:54:52 -04:00
|
|
|
while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node)) == 'flush':
|
2019-07-09 23:15:43 -04:00
|
|
|
time.sleep(1)
|
2020-01-05 15:28:08 -05:00
|
|
|
retmsg = 'Flushed hypervisor {} of running VMs.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-03-21 11:19:28 -04:00
|
|
|
return True, retmsg
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-02-19 09:44:38 -05:00
|
|
|
def ready_node(zk_conn, node, wait=False):
|
2018-09-20 03:25:58 -04:00
|
|
|
# Verify node is valid
|
2018-09-23 01:05:54 -04:00
|
|
|
if not common.verifyNode(zk_conn, node):
|
|
|
|
return False, 'ERROR: No node named "{}" is present in the cluster.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-07-09 23:15:43 -04:00
|
|
|
retmsg = 'Restoring hypervisor {} to active service.'.format(node)
|
2020-11-06 19:05:48 -05:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
# Add the new domain to Zookeeper
|
2018-10-14 02:01:35 -04:00
|
|
|
zkhandler.writedata(zk_conn, {
|
|
|
|
'/nodes/{}/domainstate'.format(node): 'unflush'
|
|
|
|
})
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-05-11 00:13:03 -04:00
|
|
|
if wait:
|
2019-07-26 23:28:57 -04:00
|
|
|
while zkhandler.readdata(zk_conn, '/nodes/{}/domainstate'.format(node)) == 'unflush':
|
2019-05-11 00:13:03 -04:00
|
|
|
time.sleep(1)
|
2020-01-05 15:28:08 -05:00
|
|
|
retmsg = 'Restored hypervisor {} to active service.'.format(node)
|
2019-05-11 00:13:03 -04:00
|
|
|
|
2019-03-21 11:19:28 -04:00
|
|
|
return True, retmsg
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-05-10 23:25:06 -04:00
|
|
|
def get_info(zk_conn, node):
|
2018-09-20 03:25:58 -04:00
|
|
|
# Verify node is valid
|
2018-09-23 01:05:54 -04:00
|
|
|
if not common.verifyNode(zk_conn, node):
|
|
|
|
return False, 'ERROR: No node named "{}" is present in the cluster.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
|
|
|
# Get information about node in a pretty format
|
2019-07-04 23:00:53 -04:00
|
|
|
node_information = getNodeInformation(zk_conn, node)
|
2019-06-24 13:37:56 -04:00
|
|
|
if not node_information:
|
2019-05-20 22:15:28 -04:00
|
|
|
return False, 'ERROR: Could not get information about node "{}".'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-05-10 23:25:06 -04:00
|
|
|
return True, node_information
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-06-25 11:38:30 -04:00
|
|
|
def get_list(zk_conn, limit, daemon_state=None, coordinator_state=None, domain_state=None, is_fuzzy=True):
|
2018-09-20 03:25:58 -04:00
|
|
|
node_list = []
|
2018-10-27 16:03:01 -04:00
|
|
|
full_node_list = zkhandler.listchildren(zk_conn, '/nodes')
|
2019-07-05 00:30:11 -04:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
for node in full_node_list:
|
2019-06-24 13:37:56 -04:00
|
|
|
if limit:
|
2018-09-20 03:25:58 -04:00
|
|
|
try:
|
2019-12-23 20:43:20 -05:00
|
|
|
if not is_fuzzy:
|
|
|
|
limit = '^' + limit + '$'
|
2018-09-25 02:20:32 -04:00
|
|
|
|
2019-06-24 13:37:56 -04:00
|
|
|
if re.match(limit, node):
|
2019-07-04 23:00:53 -04:00
|
|
|
node_list.append(getNodeInformation(zk_conn, node))
|
2018-09-20 03:25:58 -04:00
|
|
|
except Exception as e:
|
|
|
|
return False, 'Regex Error: {}'.format(e)
|
2018-09-25 02:20:32 -04:00
|
|
|
else:
|
2019-07-04 23:00:53 -04:00
|
|
|
node_list.append(getNodeInformation(zk_conn, node))
|
2019-05-10 23:25:06 -04:00
|
|
|
|
2020-06-25 11:38:30 -04:00
|
|
|
if daemon_state or coordinator_state or domain_state:
|
|
|
|
limited_node_list = []
|
|
|
|
for node in node_list:
|
|
|
|
add_node = False
|
|
|
|
if daemon_state and node['daemon_state'] == daemon_state:
|
|
|
|
add_node = True
|
|
|
|
if coordinator_state and node['coordinator_state'] == coordinator_state:
|
|
|
|
add_node = True
|
|
|
|
if domain_state and node['domain_state'] == domain_state:
|
|
|
|
add_node = True
|
|
|
|
if add_node:
|
|
|
|
limited_node_list.append(node)
|
|
|
|
node_list = limited_node_list
|
|
|
|
|
2019-05-10 23:25:06 -04:00
|
|
|
return True, node_list
|