-
-
Notifications
You must be signed in to change notification settings - Fork 621
/
host_agent.py
executable file
·109 lines (89 loc) · 2.89 KB
/
host_agent.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
__author__ = "Nash Kaminski"
__license__ = "Dual License: GPLv2 and Commercial License"
import ipaddress
import json
import logging
import netifaces
import os
import redis
import subprocess
REDIS_ARGS = dict(host="127.0.0.1", port=6379, db=0)
# Name of redis channel to listen to
CHANNEL_NAME = b'hostcmd'
SUPPORTED_INTERFACES = (
'wlan',
'eth',
'wlp',
'enp',
)
def get_ip_addresses():
return [
ip['addr']
for interface in netifaces.interfaces()
if interface.startswith(SUPPORTED_INTERFACES)
for ip in (
netifaces.ifaddresses(interface).get(netifaces.AF_INET, []) +
netifaces.ifaddresses(interface).get(netifaces.AF_INET6, [])
)
if not ipaddress.ip_address(ip['addr']).is_link_local
]
def set_ip_addresses():
rdb = redis.Redis(**REDIS_ARGS)
ip_addresses = get_ip_addresses()
rdb.set('ip_addresses', json.dumps(ip_addresses))
# Explicit command whitelist for security reasons, keys as bytes objects
CMD_TO_ARGV = {
b'reboot': ['/usr/bin/sudo', '-n', '/usr/bin/systemctl', 'reboot'],
b'shutdown': ['/usr/bin/sudo', '-n', '/usr/bin/systemctl', 'poweroff'],
b'set_ip_addresses': set_ip_addresses
}
def execute_host_command(cmd_name):
cmd = CMD_TO_ARGV.get(cmd_name, None)
if cmd is None:
logging.warning(
"Unable to perform host command %s: no such command!", cmd_name)
elif os.getenv('TESTING'):
logging.warning(
"Would have executed %s but not doing so as TESTING is defined",
cmd,
)
elif cmd_name in [b'reboot', b'shutdown']:
logging.info("Executing host command %s", cmd_name)
phandle = subprocess.run(cmd)
logging.info(
"Host command %s (%s) returned %s",
cmd_name,
cmd,
phandle.returncode,
)
else:
logging.info('Calling function %s', cmd)
cmd()
def process_message(message):
if (
message.get('type', '') == 'message'
and message.get('channel', b'') == CHANNEL_NAME
):
execute_host_command(message.get('data', b''))
else:
logging.info("Received unsolicited message: %s", message)
def subscriber_loop():
# Connect to redis on localhost and wait for messages
logging.info("Connecting to redis...")
rdb = redis.Redis(**REDIS_ARGS)
pubsub = rdb.pubsub(ignore_subscribe_messages=True)
pubsub.subscribe(CHANNEL_NAME)
rdb.set('host_agent_ready', 'true')
logging.info(
"Subscribed to channel %s, ready to process messages", CHANNEL_NAME)
for message in pubsub.listen():
process_message(message)
if __name__ == '__main__':
# Init logging
logging.basicConfig()
logging.getLogger().setLevel(logging.INFO)
# Loop forever processing messages
subscriber_loop()