aboutsummaryrefslogtreecommitdiffstats
path: root/aglbaseservice.py
blob: fb905ca7255a3b41a5e142624cba5b9468109c86 (plain)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
from enum import IntEnum
import json
from json import JSONDecodeError
from random import randint
import sys
import asyncio
from random import randint
from websockets import connect
import logging
import asyncssh
import re
from parse import Result, parse
from typing import Union

logging.getLogger('AGLBaseService')
logging.basicConfig(level=logging.DEBUG)

class AFBT(IntEnum):
    REQUEST = 2,
    RESPONSE = 3,
    ERROR = 4,
    EVENT = 5

msgq = {}
# TODO : Replace prints with logging

def addrequest(msgid, msg):
    msgq[msgid] = {'request': msg, 'response': None}

def addresponse(msgid, msg):
    if msgid in msgq.keys():
        msgq[msgid]['response'] = msg

class AGLBaseService:
    api = None
    url = None
    ip = None
    port = None
    token = None
    uuid = None
    service = None
    logger = None

    def __init__(self, api: str, ip: str, port: str = None, url: str = None,
                 token: str = 'HELLO', uuid: str = 'magic', service: str = None):
        self.api = api
        self.url = url
        self.ip = ip
        self.port = port
        self.token = token
        self.uuid = uuid
        self.service = service
        self.logger = logging.getLogger(service)

    def __await__(self):
        return self._async_init().__await__()

    async def __aenter__(self):
        return self._async_init()

    async def _async_init(self):
        # setting ping_interval to None because AFB does not support websocket ping
        # if set to !None, the library will close the socket after the default timeout
        if self.port is None:
            serviceport = await self.portfinder()
            if serviceport is not None:
                self.port = serviceport
            else:
                self.logger('Unable to find port')
                exit(1)

        URL = f'ws://{self.ip}:{self.port}/api?token={self.token}&uuid={self.uuid}'
        self._conn = connect(close_timeout=0, uri=URL, subprotocols=['x-afb-ws-json1'], ping_interval=None)
        self.websocket = await self._conn.__aenter__()
        return self

    async def __aexit__(self, *args, **kwargs):
        await self._conn.__aexit__(*args, **kwargs)

    async def close(self):
        await self._conn.__aexit__(*sys.exc_info())

    async def send(self, message):
        await self.websocket.send(message)

    async def receive(self):
        return await self.websocket.recv()

    async def portfinder(self):
        async with asyncssh.connect(self.ip, username='root') as c:
            servicename = await c.run(f"systemctl --all | grep {self.service}-- | awk '{{print $1}}'", check=False)
            if self.service not in servicename.stdout:
                logging.error(f"Service matching pattern - '{self.service}' - NOT FOUND")
                exit(1)
            pidres = await c.run(f'systemctl show --property MainPID --value {servicename.stdout.strip()}')
            pid = int(pidres.stdout.strip(), 10)
            if pid is 0:
                logging.warning(f'Service {servicename.stdout.strip()} is stopped')
                return None
            else:
                logging.debug(f'Service PID: {str(pid)}')

            sockets = await c.run(f'find /proc/{pid}/fd/ | xargs readlink | grep socket')
            inodes = frozenset(re.findall('socket:\[(.*)\]', sockets.stdout))
            logging.debug(f"Socket inodes: {inodes}")

            procnettcp = await c.run('cat /proc/net/tcp')
            fieldsstr = '{sl}: {local_address} {rem_address} {st} {tx_queue}:{rx_queue} {tr}:{tmwhen} {retrnsmt} {uid}'\
                        ' {timeout} {inode} {sref_cnt} {memloc} {rto} {pred_sclk} {ackquick} {congest} {slowstart}'
            tcpsockets = [' '.join(l.split()) for l in procnettcp.stdout.splitlines()[1:]]
            # different lines with less stats appear sometimes, parse will return None, so ignore 'None' lines
            parsedtcpsockets = []
            for l in tcpsockets:
                res = parse(fieldsstr, l)
                if isinstance(res, Result):
                    parsedtcpsockets.append(res)

            socketinodesbythisprocess = [l for l in parsedtcpsockets if
                                         isinstance(l, Result) and
                                         l.named['inode'] in inodes and
                                         # 0A is listening state for the socket
                                         l.named['st'] == '0A']

            for s in socketinodesbythisprocess:
                _, port = tuple(parse('{}:{}', s['local_address']))
                port = int(port, 16)
                if port >= 30000:  # the port is above 30000 range, 8080 is some kind of proxy
                    logging.debug(f'Service running at port {port}')
                    return port

    async def listener(self):
        try:
            while True:
                msg = await self.receive()
                # self.logger.debug(f"Received websocket{msg}")
                try:
                    data = json.loads(msg)
                    if isinstance(data, list):
                        if data[0] == AFBT.RESPONSE and str.isnumeric(data[1]):
                            msgid = int(data[1])
                            if msgid in msgq:
                                addresponse(msgid, data)

                except JSONDecodeError:
                    self.logger.warning("Not decoding a non-json message")

        except KeyboardInterrupt:
            logging.debug("Received keyboard interrupt, exiting")
        except asyncio.CancelledError:
            logging.warning("Websocket listener coroutine stopped")
        except Exception as e:
            logging.error("Unhandled seal: " + str(e))

    async def request(self, verb: str, values: Union[str, dict] = "", msgid: int = randint(0, 9999999),
                      waitresponse: bool = False):
        l = json.dumps([AFBT.REQUEST, str(msgid), f'{self.api}/{verb}', values])
        self.logger.debug(f'[AGL] <- {l}')
        await self.send(l)
        if waitresponse:
            return await self.receive()

    async def subscribe(self, event):
        await self.request('subscribe', {'value': f'{event}'})

    async def unsubscribe(self, event):
        await self.request('unsubscribe', {'value': f'{event}'})