2018-09-23 21:19:56 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# common.py - PVC daemon function library, common fuctions
|
|
|
|
# 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 subprocess
|
2018-09-24 04:07:46 -04:00
|
|
|
import threading
|
2018-10-03 23:16:46 -04:00
|
|
|
import signal
|
2018-10-08 23:53:41 -04:00
|
|
|
import os
|
|
|
|
import time
|
2018-09-23 21:19:56 -04:00
|
|
|
|
2018-10-03 23:16:46 -04:00
|
|
|
import daemon_lib.ansiiprint as ansiiprint
|
|
|
|
|
|
|
|
class OSDaemon(object):
|
|
|
|
def __init__(self, command, environment):
|
|
|
|
self.proc = subprocess.Popen(
|
|
|
|
command,
|
|
|
|
env=environment,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
)
|
|
|
|
|
2018-10-03 23:45:19 -04:00
|
|
|
def signal(self, sent_signal):
|
2018-10-03 23:16:46 -04:00
|
|
|
signal_map = {
|
|
|
|
'hup': signal.SIGHUP,
|
2018-10-08 23:53:41 -04:00
|
|
|
'int': signal.SIGINT,
|
|
|
|
'term': signal.SIGTERM
|
2018-10-03 23:16:46 -04:00
|
|
|
}
|
2018-10-03 23:45:19 -04:00
|
|
|
self.proc.send_signal(signal_map[sent_signal])
|
2018-10-03 23:16:46 -04:00
|
|
|
|
|
|
|
def run_os_daemon(command_string, background=False, environment=None, return_pid=False):
|
|
|
|
command = command_string.split()
|
|
|
|
daemon = OSDaemon(command, environment)
|
|
|
|
return daemon
|
|
|
|
|
|
|
|
# Run a oneshot command, optionally without blocking
|
|
|
|
def run_os_command(command_string, background=False, environment=None):
|
2018-09-24 04:07:46 -04:00
|
|
|
command = command_string.split()
|
|
|
|
if background:
|
|
|
|
def runcmd():
|
2018-10-08 23:53:41 -04:00
|
|
|
subprocess.run(
|
2018-09-24 04:07:46 -04:00
|
|
|
command,
|
2018-10-03 23:16:46 -04:00
|
|
|
env=environment,
|
2018-09-24 04:07:46 -04:00
|
|
|
stdout=subprocess.PIPE,
|
2018-10-03 23:16:46 -04:00
|
|
|
stderr=subprocess.PIPE,
|
2018-09-24 04:07:46 -04:00
|
|
|
)
|
|
|
|
thread = threading.Thread(target=runcmd, args=())
|
|
|
|
thread.start()
|
2018-10-08 23:53:41 -04:00
|
|
|
return 0, None, None
|
2018-09-24 04:07:46 -04:00
|
|
|
else:
|
2018-10-08 23:53:41 -04:00
|
|
|
command_output = subprocess.run(
|
2018-09-24 04:07:46 -04:00
|
|
|
command,
|
2018-10-03 23:16:46 -04:00
|
|
|
env=environment,
|
2018-09-24 04:07:46 -04:00
|
|
|
stdout=subprocess.PIPE,
|
2018-10-03 23:16:46 -04:00
|
|
|
stderr=subprocess.PIPE,
|
2018-09-24 04:07:46 -04:00
|
|
|
)
|
2018-10-08 23:53:41 -04:00
|
|
|
return command_output.returncode, command_output.stdout.decode('ascii'), command_output.stderr.decode('ascii')
|
|
|
|
|
|
|
|
# Reload the firewall rules of the system
|
|
|
|
def reload_firewall_rules(rules_dir):
|
|
|
|
ansiiprint.echo('Updating firewall rules', '', 'o')
|
|
|
|
rules_file = '{}/base.nft'.format(rules_dir)
|
|
|
|
retcode, stdout, stderr = run_os_command('/usr/sbin/nft -f {}'.format(rules_file))
|
|
|
|
if retcode != 0:
|
|
|
|
ansiiprint.echo('Failed to reload rules: {}'.format(stderr), '', 'e')
|