2018-10-03 19:42:42 -04:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2018-11-21 20:26:58 -05:00
|
|
|
# dnsmasq-zookeeper-leases.py - DNSMASQ leases script for Zookeeper
|
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
2020-01-08 19:38:02 -05:00
|
|
|
# Copyright (C) 2018-2020 Joshua M. Boniface <joshua@boniface.me>
|
2018-11-21 20:26:58 -05: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
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
###############################################################################
|
2018-10-03 19:42:42 -04:00
|
|
|
import argparse
|
|
|
|
import os, sys
|
|
|
|
import kazoo.client
|
|
|
|
import re
|
2019-03-17 13:57:09 -04:00
|
|
|
import yaml
|
2018-10-03 19:42:42 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Variables
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# General Functions
|
|
|
|
#
|
|
|
|
def get_zookeeper_key():
|
|
|
|
# Get the interface from environment (passed by dnsmasq)
|
2018-10-09 22:38:40 -04:00
|
|
|
try:
|
2018-10-14 18:35:32 -04:00
|
|
|
interface = os.environ['DNSMASQ_BRIDGE_INTERFACE']
|
2019-03-17 13:57:09 -04:00
|
|
|
except Exception as e:
|
|
|
|
print('ERROR: DNSMASQ_BRIDGE_INTERFACE environment variable not found: {}'.format(e), file=sys.stderr)
|
2018-10-09 22:38:40 -04:00
|
|
|
exit(1)
|
2018-10-03 19:42:42 -04:00
|
|
|
# Get the ID of the interface (the digits)
|
|
|
|
network_vni = re.findall('\d+', interface)[0]
|
|
|
|
# Create the key
|
2018-11-14 00:19:43 -05:00
|
|
|
zookeeper_key = '/networks/{}/dhcp4_leases'.format(network_vni)
|
2018-10-03 19:42:42 -04:00
|
|
|
return zookeeper_key
|
|
|
|
|
|
|
|
def get_lease_expiry():
|
|
|
|
try:
|
|
|
|
expiry = os.environ['DNSMASQ_LEASE_EXPIRES']
|
|
|
|
except:
|
|
|
|
expiry = '0'
|
|
|
|
return expiry
|
|
|
|
|
|
|
|
def get_client_id():
|
|
|
|
try:
|
|
|
|
client_id = os.environ['DNSMASQ_CLIENT_ID']
|
|
|
|
except:
|
|
|
|
client_id = '*'
|
|
|
|
return client_id
|
|
|
|
|
|
|
|
def connect_zookeeper():
|
|
|
|
# We expect the environ to contain the config file
|
|
|
|
try:
|
2018-10-14 02:01:35 -04:00
|
|
|
pvcd_config_file = os.environ['PVCD_CONFIG_FILE']
|
2018-10-03 19:42:42 -04:00
|
|
|
except:
|
|
|
|
# Default place
|
2019-03-17 13:57:09 -04:00
|
|
|
pvcd_config_file = '/etc/pvc/pvcd.yaml'
|
2018-10-03 19:42:42 -04:00
|
|
|
|
2019-03-17 13:57:09 -04:00
|
|
|
with open(pvcd_config_file, 'r') as cfgfile:
|
2018-10-03 19:42:42 -04:00
|
|
|
try:
|
2019-03-17 13:57:09 -04:00
|
|
|
o_config = yaml.load(cfgfile)
|
|
|
|
except Exception as e:
|
|
|
|
print('ERROR: Failed to parse configuration file: {}'.format(e), file=sys.stderr)
|
2018-10-03 19:42:42 -04:00
|
|
|
exit(1)
|
|
|
|
|
|
|
|
try:
|
2019-03-17 13:57:09 -04:00
|
|
|
zk_conn = kazoo.client.KazooClient(hosts=o_config['pvc']['cluster']['coordinators'])
|
2018-10-03 19:42:42 -04:00
|
|
|
zk_conn.start()
|
2019-03-17 13:57:09 -04:00
|
|
|
except Exception as e:
|
|
|
|
print('ERROR: Failed to connect to Zookeeper: {}'.format(e), file=sys.stderr)
|
2018-10-03 19:42:42 -04:00
|
|
|
exit(1)
|
|
|
|
|
|
|
|
return zk_conn
|
|
|
|
|
|
|
|
def read_data(zk_conn, key):
|
|
|
|
return zk_conn.get(key)[0].decode('ascii')
|
|
|
|
|
|
|
|
def get_lease(zk_conn, zk_leases_key, macaddr):
|
|
|
|
expiry = read_data(zk_conn, '{}/{}/expiry'.format(zk_leases_key, macaddr))
|
|
|
|
ipaddr = read_data(zk_conn, '{}/{}/ipaddr'.format(zk_leases_key, macaddr))
|
|
|
|
hostname = read_data(zk_conn, '{}/{}/hostname'.format(zk_leases_key, macaddr))
|
|
|
|
clientid = read_data(zk_conn, '{}/{}/clientid'.format(zk_leases_key, macaddr))
|
|
|
|
return expiry, ipaddr, hostname, clientid
|
|
|
|
|
|
|
|
#
|
|
|
|
# Command Functions
|
|
|
|
#
|
|
|
|
def read_lease_database(zk_conn, zk_leases_key):
|
|
|
|
leases_list = zk_conn.get_children(zk_leases_key)
|
|
|
|
output_list = []
|
|
|
|
for macaddr in leases_list:
|
|
|
|
expiry, ipaddr, hostname, clientid = get_lease(zk_conn, zk_leases_key, macaddr)
|
|
|
|
data_string = '{} {} {} {} {}'.format(expiry, macaddr, ipaddr, hostname, clientid)
|
|
|
|
print('Reading lease from Zookeeper: {}'.format(data_string), file=sys.stderr)
|
|
|
|
output_list.append('{}'.format(data_string))
|
|
|
|
|
|
|
|
# Output list
|
|
|
|
print('\n'.join(output_list))
|
2019-06-25 22:31:04 -04:00
|
|
|
|
2018-10-03 19:42:42 -04:00
|
|
|
def add_lease(zk_conn, zk_leases_key, expiry, macaddr, ipaddr, hostname, clientid):
|
2020-01-05 22:46:56 -05:00
|
|
|
if not hostname:
|
|
|
|
hostname = ''
|
2018-10-03 19:42:42 -04:00
|
|
|
transaction = zk_conn.transaction()
|
|
|
|
transaction.create('{}/{}'.format(zk_leases_key, macaddr), ''.encode('ascii'))
|
|
|
|
transaction.create('{}/{}/expiry'.format(zk_leases_key, macaddr), expiry.encode('ascii'))
|
|
|
|
transaction.create('{}/{}/ipaddr'.format(zk_leases_key, macaddr), ipaddr.encode('ascii'))
|
|
|
|
transaction.create('{}/{}/hostname'.format(zk_leases_key, macaddr), hostname.encode('ascii'))
|
|
|
|
transaction.create('{}/{}/clientid'.format(zk_leases_key, macaddr), clientid.encode('ascii'))
|
|
|
|
transaction.commit()
|
|
|
|
|
|
|
|
def del_lease(zk_conn, zk_leases_key, macaddr, expiry):
|
|
|
|
zk_conn.delete('{}/{}'.format(zk_leases_key, macaddr), recursive=True)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Instantiate the parser
|
|
|
|
#
|
|
|
|
parser = argparse.ArgumentParser(description='Store or retrieve dnsmasq leases in Zookeeper')
|
|
|
|
parser.add_argument('action', type=str, help='Action')
|
|
|
|
parser.add_argument('macaddr', type=str, help='MAC Address', nargs='?', default=None)
|
|
|
|
parser.add_argument('ipaddr', type=str, help='IP Address', nargs='?', default=None)
|
|
|
|
parser.add_argument('hostname', type=str, help='Hostname', nargs='?', default=None)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
action = args.action
|
|
|
|
macaddr = args.macaddr
|
|
|
|
ipaddr = args.ipaddr
|
|
|
|
hostname = args.hostname
|
|
|
|
|
|
|
|
zk_conn = connect_zookeeper()
|
|
|
|
zk_leases_key = get_zookeeper_key()
|
|
|
|
|
|
|
|
if action == 'init':
|
|
|
|
read_lease_database(zk_conn, zk_leases_key)
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
expiry = get_lease_expiry()
|
|
|
|
clientid = get_client_id()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Choose action
|
|
|
|
#
|
|
|
|
print('Lease action - {} {} {} {}'.format(action, macaddr, ipaddr, hostname), file=sys.stderr)
|
|
|
|
if action == 'add':
|
|
|
|
add_lease(zk_conn, zk_leases_key, expiry, macaddr, ipaddr, hostname, clientid)
|
|
|
|
elif action == 'del':
|
|
|
|
del_lease(zk_conn, zk_leases_key, macaddr, expiry)
|
|
|
|
elif action == 'old':
|
|
|
|
pass
|