Acclerate improvements
* Added capability to support multiple keys, so clients from different machines can connect to a single daemon instance * Any activity on the daemon will cause the timeout to extend, so that the daemon must be idle for the full number of minutes before it will auto- shutdown * Various other small fixes to remove some redundancy Fixes #5171
This commit is contained in:
parent
3b710005ad
commit
6f38595ba2
1 changed files with 295 additions and 74 deletions
|
@ -53,6 +53,14 @@ options:
|
||||||
if this parameter is set to true.
|
if this parameter is set to true.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
multi_key:
|
||||||
|
description:
|
||||||
|
- When enabled, the daemon will open a local socket file which can be used by future daemon executions to
|
||||||
|
upload a new key to the already running daemon, so that multiple users can connect using different keys.
|
||||||
|
This access still requires an ssh connection as the uid for which the daemon is currently running.
|
||||||
|
required: false
|
||||||
|
default: no
|
||||||
|
version_added: "1.6"
|
||||||
notes:
|
notes:
|
||||||
- See the advanced playbooks chapter for more about using accelerated mode.
|
- See the advanced playbooks chapter for more about using accelerated mode.
|
||||||
requirements: [ "python-keyczar" ]
|
requirements: [ "python-keyczar" ]
|
||||||
|
@ -71,6 +79,7 @@ EXAMPLES = '''
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import base64
|
import base64
|
||||||
|
import errno
|
||||||
import getpass
|
import getpass
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
@ -88,10 +97,13 @@ import traceback
|
||||||
import SocketServer
|
import SocketServer
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from threading import Thread
|
from threading import Thread, Lock
|
||||||
|
|
||||||
|
# import module snippets
|
||||||
|
# we must import this here at the top so we can use get_module_path()
|
||||||
|
from ansible.module_utils.basic import *
|
||||||
|
|
||||||
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
||||||
PIDFILE = os.path.expanduser("~/.accelerate.pid")
|
|
||||||
|
|
||||||
# the chunk size to read and send, assuming mtu 1500 and
|
# the chunk size to read and send, assuming mtu 1500 and
|
||||||
# leaving room for base64 (+33%) encoding and header (100 bytes)
|
# leaving room for base64 (+33%) encoding and header (100 bytes)
|
||||||
|
@ -107,6 +119,9 @@ def log(msg, cap=0):
|
||||||
if DEBUG_LEVEL >= cap:
|
if DEBUG_LEVEL >= cap:
|
||||||
syslog.syslog(syslog.LOG_NOTICE|syslog.LOG_DAEMON, msg)
|
syslog.syslog(syslog.LOG_NOTICE|syslog.LOG_DAEMON, msg)
|
||||||
|
|
||||||
|
def v(msg):
|
||||||
|
log(msg, cap=1)
|
||||||
|
|
||||||
def vv(msg):
|
def vv(msg):
|
||||||
log(msg, cap=2)
|
log(msg, cap=2)
|
||||||
|
|
||||||
|
@ -116,16 +131,6 @@ def vvv(msg):
|
||||||
def vvvv(msg):
|
def vvvv(msg):
|
||||||
log(msg, cap=4)
|
log(msg, cap=4)
|
||||||
|
|
||||||
if os.path.exists(PIDFILE):
|
|
||||||
try:
|
|
||||||
data = int(open(PIDFILE).read())
|
|
||||||
try:
|
|
||||||
os.kill(data, signal.SIGKILL)
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
except ValueError:
|
|
||||||
pass
|
|
||||||
os.unlink(PIDFILE)
|
|
||||||
|
|
||||||
HAS_KEYCZAR = False
|
HAS_KEYCZAR = False
|
||||||
try:
|
try:
|
||||||
|
@ -134,10 +139,26 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
SOCKET_FILE = os.path.join(get_module_path(), '.ansible-accelerate', ".local.socket")
|
||||||
|
|
||||||
|
def get_pid_location(module):
|
||||||
|
"""
|
||||||
|
Try to find a pid directory in the common locations, falling
|
||||||
|
back to the user's home directory if no others exist
|
||||||
|
"""
|
||||||
|
for dir in ['/var/run', '/var/lib/run', '/run', os.path.expanduser("~/")]:
|
||||||
|
try:
|
||||||
|
if os.path.isdir(dir) and os.access(dir, os.R_OK|os.W_OK):
|
||||||
|
return os.path.join(dir, '.accelerate.pid')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
module.fail_json(msg="couldn't find any valid directory to use for the accelerate pid file")
|
||||||
|
|
||||||
|
|
||||||
# NOTE: this shares a fair amount of code in common with async_wrapper, if async_wrapper were a new module we could move
|
# NOTE: this shares a fair amount of code in common with async_wrapper, if async_wrapper were a new module we could move
|
||||||
# this into utils.module_common and probably should anyway
|
# this into utils.module_common and probably should anyway
|
||||||
|
|
||||||
def daemonize_self(module, password, port, minutes):
|
def daemonize_self(module, password, port, minutes, pid_file):
|
||||||
# daemonizing code: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66012
|
# daemonizing code: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66012
|
||||||
try:
|
try:
|
||||||
pid = os.fork()
|
pid = os.fork()
|
||||||
|
@ -158,11 +179,11 @@ def daemonize_self(module, password, port, minutes):
|
||||||
try:
|
try:
|
||||||
pid = os.fork()
|
pid = os.fork()
|
||||||
if pid > 0:
|
if pid > 0:
|
||||||
log("daemon pid %s, writing %s" % (pid, PIDFILE))
|
log("daemon pid %s, writing %s" % (pid, pid_file))
|
||||||
pid_file = open(PIDFILE, "w")
|
pid_file = open(pid_file, "w")
|
||||||
pid_file.write("%s" % pid)
|
pid_file.write("%s" % pid)
|
||||||
pid_file.close()
|
pid_file.close()
|
||||||
vvv("pidfile written")
|
vvv("pid file written")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
log("fork #2 failed: %d (%s)" % (e.errno, e.strerror))
|
log("fork #2 failed: %d (%s)" % (e.errno, e.strerror))
|
||||||
|
@ -174,8 +195,85 @@ def daemonize_self(module, password, port, minutes):
|
||||||
os.dup2(dev_null.fileno(), sys.stderr.fileno())
|
os.dup2(dev_null.fileno(), sys.stderr.fileno())
|
||||||
log("daemonizing successful")
|
log("daemonizing successful")
|
||||||
|
|
||||||
class ThreadWithReturnValue(Thread):
|
class LocalSocketThread(Thread):
|
||||||
|
server = None
|
||||||
|
terminated = False
|
||||||
|
|
||||||
|
def __init__(self, group=None, target=None, name=None, args=(), kwargs={}, Verbose=None):
|
||||||
|
self.server = kwargs.get('server')
|
||||||
|
Thread.__init__(self, group, target, name, args, kwargs, Verbose)
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
try:
|
||||||
|
if os.path.exists(SOCKET_FILE):
|
||||||
|
os.remove(SOCKET_FILE)
|
||||||
|
else:
|
||||||
|
dir = os.path.dirname(SOCKET_FILE)
|
||||||
|
if os.path.exists(dir):
|
||||||
|
if not os.path.isdir(dir):
|
||||||
|
log("The socket file path (%s) exists, but is not a directory. No local connections will be available" % dir)
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
# make sure the directory is accessible only to this
|
||||||
|
# user, as socket files derive their permissions from
|
||||||
|
# the directory that contains them
|
||||||
|
os.chmod(dir, 0700)
|
||||||
|
elif not os.path.exists(dir):
|
||||||
|
os.makedirs(dir, 0700)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
self.s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||||
|
self.s.bind(SOCKET_FILE)
|
||||||
|
self.s.listen(5)
|
||||||
|
while not self.terminated:
|
||||||
|
try:
|
||||||
|
conn, addr = self.s.accept()
|
||||||
|
vv("received local connection")
|
||||||
|
data = ""
|
||||||
|
while "\n" not in data:
|
||||||
|
data += conn.recv(2048)
|
||||||
|
try:
|
||||||
|
new_key = AesKey.Read(data.strip())
|
||||||
|
found = False
|
||||||
|
for key in self.server.key_list:
|
||||||
|
try:
|
||||||
|
new_key.Decrypt(key.Encrypt("foo"))
|
||||||
|
found = True
|
||||||
|
break
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
if not found:
|
||||||
|
vv("adding new key to the key list")
|
||||||
|
self.server.key_list.append(new_key)
|
||||||
|
conn.sendall("OK\n")
|
||||||
|
else:
|
||||||
|
vv("key already exists in the key list, ignoring")
|
||||||
|
conn.sendall("EXISTS\n")
|
||||||
|
|
||||||
|
# update the last event time so the server doesn't
|
||||||
|
# shutdown sooner than expected for new cliets
|
||||||
|
try:
|
||||||
|
self.server.last_event_lock.acquire()
|
||||||
|
self.server.last_event = datetime.now()
|
||||||
|
finally:
|
||||||
|
self.server.last_event_lock.release()
|
||||||
|
except Exception, e:
|
||||||
|
vv("key loaded locally was invalid, ignoring (%s)" % e)
|
||||||
|
conn.sendall("BADKEY\n")
|
||||||
|
finally:
|
||||||
|
try:
|
||||||
|
conn.close()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def terminate(self):
|
||||||
|
self.terminated = True
|
||||||
|
self.s.shutdown(socket.SHUT_RDWR)
|
||||||
|
self.s.close()
|
||||||
|
|
||||||
|
class ThreadWithReturnValue(Thread):
|
||||||
def __init__(self, group=None, target=None, name=None, args=(), kwargs={}, Verbose=None):
|
def __init__(self, group=None, target=None, name=None, args=(), kwargs={}, Verbose=None):
|
||||||
Thread.__init__(self, group, target, name, args, kwargs, Verbose)
|
Thread.__init__(self, group, target, name, args, kwargs, Verbose)
|
||||||
self._return = None
|
self._return = None
|
||||||
|
@ -190,24 +288,41 @@ class ThreadWithReturnValue(Thread):
|
||||||
return self._return
|
return self._return
|
||||||
|
|
||||||
class ThreadedTCPServer(SocketServer.ThreadingTCPServer):
|
class ThreadedTCPServer(SocketServer.ThreadingTCPServer):
|
||||||
def __init__(self, server_address, RequestHandlerClass, module, password, timeout):
|
key_list = []
|
||||||
|
last_event = datetime.now()
|
||||||
|
last_event_lock = Lock()
|
||||||
|
def __init__(self, server_address, RequestHandlerClass, module, password, timeout, use_ipv6=False):
|
||||||
self.module = module
|
self.module = module
|
||||||
self.key = AesKey.Read(password)
|
self.key_list.append(AesKey.Read(password))
|
||||||
self.allow_reuse_address = True
|
self.allow_reuse_address = True
|
||||||
self.timeout = timeout
|
self.timeout = timeout
|
||||||
|
|
||||||
|
if use_ipv6:
|
||||||
|
self.address_family = socket.AF_INET6
|
||||||
|
|
||||||
|
if self.module.params.get('multi_key', False):
|
||||||
|
vv("starting thread to handle local connections for multiple keys")
|
||||||
|
self.local_thread = LocalSocketThread(kwargs=dict(server=self))
|
||||||
|
self.local_thread.start()
|
||||||
|
|
||||||
SocketServer.ThreadingTCPServer.__init__(self, server_address, RequestHandlerClass)
|
SocketServer.ThreadingTCPServer.__init__(self, server_address, RequestHandlerClass)
|
||||||
|
|
||||||
class ThreadedTCPV6Server(SocketServer.ThreadingTCPServer):
|
def shutdown(self):
|
||||||
def __init__(self, server_address, RequestHandlerClass, module, password, timeout):
|
self.local_thread.terminate()
|
||||||
self.module = module
|
self.running = False
|
||||||
self.address_family = socket.AF_INET6
|
SocketServer.ThreadingTCPServer.shutdown(self)
|
||||||
self.key = AesKey.Read(password)
|
|
||||||
self.allow_reuse_address = True
|
|
||||||
self.timeout = timeout
|
|
||||||
SocketServer.ThreadingTCPServer.__init__(self, server_address, RequestHandlerClass)
|
|
||||||
|
|
||||||
class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
|
# the key to use for this connection
|
||||||
|
active_key = None
|
||||||
|
|
||||||
def send_data(self, data):
|
def send_data(self, data):
|
||||||
|
try:
|
||||||
|
self.server.last_event_lock.acquire()
|
||||||
|
self.server.last_event = datetime.now()
|
||||||
|
finally:
|
||||||
|
self.server.last_event_lock.release()
|
||||||
|
|
||||||
packed_len = struct.pack('!Q', len(data))
|
packed_len = struct.pack('!Q', len(data))
|
||||||
return self.request.sendall(packed_len + data)
|
return self.request.sendall(packed_len + data)
|
||||||
|
|
||||||
|
@ -216,23 +331,40 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
data = ""
|
data = ""
|
||||||
vvvv("in recv_data(), waiting for the header")
|
vvvv("in recv_data(), waiting for the header")
|
||||||
while len(data) < header_len:
|
while len(data) < header_len:
|
||||||
d = self.request.recv(header_len - len(data))
|
try:
|
||||||
if not d:
|
d = self.request.recv(header_len - len(data))
|
||||||
vvv("received nothing, bailing out")
|
if not d:
|
||||||
|
vvv("received nothing, bailing out")
|
||||||
|
return None
|
||||||
|
data += d
|
||||||
|
except:
|
||||||
|
# probably got a connection reset
|
||||||
|
vvvv("exception received while waiting for recv(), returning None")
|
||||||
return None
|
return None
|
||||||
data += d
|
|
||||||
vvvv("in recv_data(), got the header, unpacking")
|
vvvv("in recv_data(), got the header, unpacking")
|
||||||
data_len = struct.unpack('!Q',data[:header_len])[0]
|
data_len = struct.unpack('!Q',data[:header_len])[0]
|
||||||
data = data[header_len:]
|
data = data[header_len:]
|
||||||
vvvv("data received so far (expecting %d): %d" % (data_len,len(data)))
|
vvvv("data received so far (expecting %d): %d" % (data_len,len(data)))
|
||||||
while len(data) < data_len:
|
while len(data) < data_len:
|
||||||
d = self.request.recv(data_len - len(data))
|
try:
|
||||||
if not d:
|
d = self.request.recv(data_len - len(data))
|
||||||
vvv("received nothing, bailing out")
|
if not d:
|
||||||
|
vvv("received nothing, bailing out")
|
||||||
|
return None
|
||||||
|
data += d
|
||||||
|
vvvv("data received so far (expecting %d): %d" % (data_len,len(data)))
|
||||||
|
except:
|
||||||
|
# probably got a connection reset
|
||||||
|
vvvv("exception received while waiting for recv(), returning None")
|
||||||
return None
|
return None
|
||||||
data += d
|
|
||||||
vvvv("data received so far (expecting %d): %d" % (data_len,len(data)))
|
|
||||||
vvvv("received all of the data, returning")
|
vvvv("received all of the data, returning")
|
||||||
|
|
||||||
|
try:
|
||||||
|
self.server.last_event_lock.acquire()
|
||||||
|
self.server.last_event = datetime.now()
|
||||||
|
finally:
|
||||||
|
self.server.last_event_lock.release()
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def handle(self):
|
def handle(self):
|
||||||
|
@ -243,18 +375,26 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
if not data:
|
if not data:
|
||||||
vvvv("received nothing back from recv_data(), breaking out")
|
vvvv("received nothing back from recv_data(), breaking out")
|
||||||
break
|
break
|
||||||
try:
|
vvvv("got data, decrypting")
|
||||||
vvvv("got data, decrypting")
|
if not self.active_key:
|
||||||
data = self.server.key.Decrypt(data)
|
for key in self.server.key_list:
|
||||||
vvvv("decryption done")
|
try:
|
||||||
except:
|
data = key.Decrypt(data)
|
||||||
vv("bad decrypt, skipping...")
|
self.active_key = key
|
||||||
data2 = json.dumps(dict(rc=1))
|
break
|
||||||
data2 = self.server.key.Encrypt(data2)
|
except:
|
||||||
self.send_data(data2)
|
pass
|
||||||
return
|
else:
|
||||||
|
vv("bad decrypt, exiting the connection handler")
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
data = self.active_key.Decrypt(data)
|
||||||
|
except:
|
||||||
|
vv("bad decrypt, exiting the connection handler")
|
||||||
|
return
|
||||||
|
|
||||||
vvvv("loading json from the data")
|
vvvv("decryption done, loading json from the data")
|
||||||
data = json.loads(data)
|
data = json.loads(data)
|
||||||
|
|
||||||
mode = data['mode']
|
mode = data['mode']
|
||||||
|
@ -270,7 +410,7 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
last_pong = datetime.now()
|
last_pong = datetime.now()
|
||||||
vvvv("command still running, sending keepalive packet")
|
vvvv("command still running, sending keepalive packet")
|
||||||
data2 = json.dumps(dict(pong=True))
|
data2 = json.dumps(dict(pong=True))
|
||||||
data2 = self.server.key.Encrypt(data2)
|
data2 = self.active_key.Encrypt(data2)
|
||||||
self.send_data(data2)
|
self.send_data(data2)
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
response = twrv._return
|
response = twrv._return
|
||||||
|
@ -286,8 +426,9 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
response = self.validate_user(data)
|
response = self.validate_user(data)
|
||||||
|
|
||||||
vvvv("response result is %s" % str(response))
|
vvvv("response result is %s" % str(response))
|
||||||
data2 = json.dumps(response)
|
json_response = json.dumps(response)
|
||||||
data2 = self.server.key.Encrypt(data2)
|
vvvv("dumped json is %s" % json_response)
|
||||||
|
data2 = self.active_key.Encrypt(json_response)
|
||||||
vvvv("sending the response back to the controller")
|
vvvv("sending the response back to the controller")
|
||||||
self.send_data(data2)
|
self.send_data(data2)
|
||||||
vvvv("done sending the response")
|
vvvv("done sending the response")
|
||||||
|
@ -299,9 +440,10 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
tb = traceback.format_exc()
|
tb = traceback.format_exc()
|
||||||
log("encountered an unhandled exception in the handle() function")
|
log("encountered an unhandled exception in the handle() function")
|
||||||
log("error was:\n%s" % tb)
|
log("error was:\n%s" % tb)
|
||||||
data2 = json.dumps(dict(rc=1, failed=True, msg="unhandled error in the handle() function"))
|
if self.active_key:
|
||||||
data2 = self.server.key.Encrypt(data2)
|
data2 = json.dumps(dict(rc=1, failed=True, msg="unhandled error in the handle() function"))
|
||||||
self.send_data(data2)
|
data2 = self.active_key.Encrypt(data2)
|
||||||
|
self.send_data(data2)
|
||||||
|
|
||||||
def validate_user(self, data):
|
def validate_user(self, data):
|
||||||
if 'username' not in data:
|
if 'username' not in data:
|
||||||
|
@ -362,7 +504,7 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
last = True
|
last = True
|
||||||
data = dict(data=base64.b64encode(data), last=last)
|
data = dict(data=base64.b64encode(data), last=last)
|
||||||
data = json.dumps(data)
|
data = json.dumps(data)
|
||||||
data = self.server.key.Encrypt(data)
|
data = self.active_key.Encrypt(data)
|
||||||
|
|
||||||
if self.send_data(data):
|
if self.send_data(data):
|
||||||
return dict(failed=True, stderr="failed to send data")
|
return dict(failed=True, stderr="failed to send data")
|
||||||
|
@ -371,7 +513,7 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
if not response:
|
if not response:
|
||||||
log("failed to get a response, aborting")
|
log("failed to get a response, aborting")
|
||||||
return dict(failed=True, stderr="Failed to get a response from %s" % self.host)
|
return dict(failed=True, stderr="Failed to get a response from %s" % self.host)
|
||||||
response = self.server.key.Decrypt(response)
|
response = self.active_key.Decrypt(response)
|
||||||
response = json.loads(response)
|
response = json.loads(response)
|
||||||
|
|
||||||
if response.get('failed',False):
|
if response.get('failed',False):
|
||||||
|
@ -394,7 +536,7 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
|
|
||||||
final_path = None
|
final_path = None
|
||||||
if 'user' in data and data.get('user') != getpass.getuser():
|
if 'user' in data and data.get('user') != getpass.getuser():
|
||||||
vv("the target user doesn't match this user, we'll move the file into place via sudo")
|
vvv("the target user doesn't match this user, we'll move the file into place via sudo")
|
||||||
tmp_path = os.path.expanduser('~/.ansible/tmp/')
|
tmp_path = os.path.expanduser('~/.ansible/tmp/')
|
||||||
if not os.path.exists(tmp_path):
|
if not os.path.exists(tmp_path):
|
||||||
try:
|
try:
|
||||||
|
@ -415,14 +557,14 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
bytes += len(out)
|
bytes += len(out)
|
||||||
out_fd.write(out)
|
out_fd.write(out)
|
||||||
response = json.dumps(dict())
|
response = json.dumps(dict())
|
||||||
response = self.server.key.Encrypt(response)
|
response = self.active_key.Encrypt(response)
|
||||||
self.send_data(response)
|
self.send_data(response)
|
||||||
if data['last']:
|
if data['last']:
|
||||||
break
|
break
|
||||||
data = self.recv_data()
|
data = self.recv_data()
|
||||||
if not data:
|
if not data:
|
||||||
raise ""
|
raise ""
|
||||||
data = self.server.key.Decrypt(data)
|
data = self.active_key.Decrypt(data)
|
||||||
data = json.loads(data)
|
data = json.loads(data)
|
||||||
except:
|
except:
|
||||||
out_fd.close()
|
out_fd.close()
|
||||||
|
@ -438,27 +580,45 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
self.server.module.atomic_move(out_path, final_path)
|
self.server.module.atomic_move(out_path, final_path)
|
||||||
return dict()
|
return dict()
|
||||||
|
|
||||||
def daemonize(module, password, port, timeout, minutes, ipv6):
|
def daemonize(module, password, port, timeout, minutes, use_ipv6, pid_file):
|
||||||
try:
|
try:
|
||||||
daemonize_self(module, password, port, minutes)
|
daemonize_self(module, password, port, minutes, pid_file)
|
||||||
|
|
||||||
def catcher(signum, _):
|
def timer_handler(signum, _):
|
||||||
module.exit_json(msg='timer expired')
|
try:
|
||||||
|
server.last_event_lock.acquire()
|
||||||
|
td = datetime.now() - server.last_event
|
||||||
|
# older python timedelta objects don't have total_seconds(),
|
||||||
|
# so we use the formula from the docs to calculate it
|
||||||
|
total_seconds = (td.microseconds + (td.seconds + td.days * 24 * 3600) * 10**6) / 10**6
|
||||||
|
if total_seconds >= minutes * 60:
|
||||||
|
log("server has been idle longer than the timeout, shutting down")
|
||||||
|
server.running = False
|
||||||
|
server.shutdown()
|
||||||
|
else:
|
||||||
|
# reschedule the check
|
||||||
|
vvvv("daemon idle for %d seconds (timeout=%d)" % (total_seconds,minutes*60))
|
||||||
|
signal.alarm(30)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
finally:
|
||||||
|
server.last_event_lock.release()
|
||||||
|
|
||||||
signal.signal(signal.SIGALRM, catcher)
|
signal.signal(signal.SIGALRM, timer_handler)
|
||||||
signal.setitimer(signal.ITIMER_REAL, 60 * minutes)
|
signal.alarm(30)
|
||||||
|
|
||||||
tries = 5
|
tries = 5
|
||||||
while tries > 0:
|
while tries > 0:
|
||||||
try:
|
try:
|
||||||
if ipv6:
|
if use_ipv6:
|
||||||
server = ThreadedTCPV6Server(("::", port), ThreadedTCPRequestHandler, module, password, timeout)
|
address = ("::", port)
|
||||||
else:
|
else:
|
||||||
server = ThreadedTCPServer(("0.0.0.0", port), ThreadedTCPRequestHandler, module, password, timeout)
|
address = ("0.0.0.0", port)
|
||||||
|
server = ThreadedTCPServer(address, ThreadedTCPRequestHandler, module, password, timeout, use_ipv6=use_ipv6)
|
||||||
server.allow_reuse_address = True
|
server.allow_reuse_address = True
|
||||||
break
|
break
|
||||||
except:
|
except Exception, e:
|
||||||
vv("Failed to create the TCP server (tries left = %d)" % tries)
|
vv("Failed to create the TCP server (tries left = %d) (error: %s) " % (tries,e))
|
||||||
tries -= 1
|
tries -= 1
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
|
|
||||||
|
@ -466,8 +626,20 @@ def daemonize(module, password, port, timeout, minutes, ipv6):
|
||||||
vv("Maximum number of attempts to create the TCP server reached, bailing out")
|
vv("Maximum number of attempts to create the TCP server reached, bailing out")
|
||||||
raise Exception("max # of attempts to serve reached")
|
raise Exception("max # of attempts to serve reached")
|
||||||
|
|
||||||
vv("serving!")
|
# run the server in a separate thread to make signal handling work
|
||||||
server.serve_forever(poll_interval=0.1)
|
server_thread = Thread(target=server.serve_forever, kwargs=dict(poll_interval=0.1))
|
||||||
|
server_thread.start()
|
||||||
|
server.running = True
|
||||||
|
|
||||||
|
v("serving!")
|
||||||
|
while server.running:
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
# wait for the thread to exit fully
|
||||||
|
server_thread.join()
|
||||||
|
|
||||||
|
v("server thread terminated, exiting!")
|
||||||
|
sys.exit(0)
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
tb = traceback.format_exc()
|
tb = traceback.format_exc()
|
||||||
log("exception caught, exiting accelerated mode: %s\n%s" % (e, tb))
|
log("exception caught, exiting accelerated mode: %s\n%s" % (e, tb))
|
||||||
|
@ -479,6 +651,7 @@ def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
port=dict(required=False, default=5099),
|
port=dict(required=False, default=5099),
|
||||||
ipv6=dict(required=False, default=False, type='bool'),
|
ipv6=dict(required=False, default=False, type='bool'),
|
||||||
|
multi_key=dict(required=False, default=False, type='bool'),
|
||||||
timeout=dict(required=False, default=300),
|
timeout=dict(required=False, default=300),
|
||||||
password=dict(required=True),
|
password=dict(required=True),
|
||||||
minutes=dict(required=False, default=30),
|
minutes=dict(required=False, default=30),
|
||||||
|
@ -493,14 +666,62 @@ def main():
|
||||||
minutes = int(module.params['minutes'])
|
minutes = int(module.params['minutes'])
|
||||||
debug = int(module.params['debug'])
|
debug = int(module.params['debug'])
|
||||||
ipv6 = module.params['ipv6']
|
ipv6 = module.params['ipv6']
|
||||||
|
multi_key = module.params['multi_key']
|
||||||
|
|
||||||
if not HAS_KEYCZAR:
|
if not HAS_KEYCZAR:
|
||||||
module.fail_json(msg="keyczar is not installed (on the remote side)")
|
module.fail_json(msg="keyczar is not installed (on the remote side)")
|
||||||
|
|
||||||
DEBUG_LEVEL=debug
|
DEBUG_LEVEL=debug
|
||||||
|
pid_file = get_pid_location(module)
|
||||||
|
|
||||||
daemonize(module, password, port, timeout, minutes, ipv6)
|
daemon_pid = None
|
||||||
|
daemon_running = False
|
||||||
|
if os.path.exists(pid_file):
|
||||||
|
try:
|
||||||
|
daemon_pid = int(open(pid_file).read())
|
||||||
|
try:
|
||||||
|
# sending signal 0 doesn't do anything to the
|
||||||
|
# process, other than tell the calling program
|
||||||
|
# whether other signals can be sent
|
||||||
|
os.kill(daemon_pid, 0)
|
||||||
|
except OSError, e:
|
||||||
|
if e.errno == errno.EPERM:
|
||||||
|
# no permissions means the pid is probably
|
||||||
|
# running, but as a different user, so fail
|
||||||
|
module.fail_json(msg="the accelerate daemon appears to be running as a different user that this user cannot access (pid=%d)" % daemon_pid)
|
||||||
|
else:
|
||||||
|
daemon_running = True
|
||||||
|
except ValueError:
|
||||||
|
# invalid pid file, unlink it - otherwise we don't care
|
||||||
|
try:
|
||||||
|
os.unlink(pid_file)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if daemon_running and multi_key:
|
||||||
|
# try to connect to the file socket for the daemon if it exists
|
||||||
|
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||||
|
try:
|
||||||
|
s.connect(SOCKET_FILE)
|
||||||
|
s.sendall(password + '\n')
|
||||||
|
data = ""
|
||||||
|
while '\n' not in data:
|
||||||
|
data += s.recv(2048)
|
||||||
|
res = data.strip()
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="failed to connect to the local socket file")
|
||||||
|
finally:
|
||||||
|
try:
|
||||||
|
s.close()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if res in ("OK", "EXISTS"):
|
||||||
|
module.exit_json(msg="transferred new key to the existing daemon")
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="could not transfer new key: %s" % data.strip())
|
||||||
|
else:
|
||||||
|
# try to start up the daemon
|
||||||
|
daemonize(module, password, port, timeout, minutes, ipv6, pid_file)
|
||||||
|
|
||||||
# import module snippets
|
|
||||||
from ansible.module_utils.basic import *
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue