it pings!
[hippotat] / client
... / ...
CommitLineData
1#!/usr/bin/python3
2
3from hippotat import *
4
5import twisted.web
6import twisted.web.client
7
8import io
9
10client_cs = None
11
12def set_client(ci,cs,pw):
13 global client_cs
14 global password
15 assert(client_cs is None)
16 client_cs = cs
17 c.client = ci
18 c.max_outstanding = cfg.getint(cs, 'max_requests_outstanding')
19 c.target_outstanding = cfg.getint(cs, 'target_requests_outstanding')
20 password = pw
21
22def process_cfg():
23 global url
24 global max_requests_outstanding
25
26 process_cfg_common_always()
27 process_cfg_server()
28
29 try:
30 c.url = cfg.get('server','url')
31 except NoOptionError:
32 process_cfg_saddrs()
33 c.url = c.saddrs[0].url()
34
35 process_cfg_clients(set_client)
36
37 c.routes = cfg.get('virtual','routes')
38 c.max_queue_time = cfg.getint(client_cs, 'max_queue_time')
39 c.max_batch_up = cfg.getint(client_cs, 'max_batch_up')
40 c.http_timeout = cfg.getint(client_cs, 'http_timeout')
41 c.http_retry = cfg.getint(client_cs, 'http_retry')
42
43 process_cfg_ipif(client_cs,
44 (('local', 'client'),
45 ('peer', 'server'),
46 ('rnets', 'routes')))
47
48outstanding = { }
49
50def log_outstanding():
51 log_debug(DBG.CTRL_DUMP, 'OS %s' % outstanding)
52
53def start_client():
54 global queue
55 global agent
56 queue = PacketQueue('up', c.max_queue_time)
57 agent = twisted.web.client.Agent(reactor, connectTimeout = c.http_timeout)
58
59def outbound(packet, saddr, daddr):
60 #print('OUT ', saddr, daddr, repr(packet))
61 queue.append(packet)
62 check_outbound()
63
64class GeneralResponseConsumer(twisted.internet.protocol.Protocol):
65 def __init__(self, req, desc):
66 self._req = req
67 self._desc = desc
68
69 def _log(self, dflag, msg, **kwargs):
70 log_debug(dflag, '%s: %s' % (self._desc, msg), idof=self._req, **kwargs)
71
72 def connectionMade(self):
73 self._log(DBG.HTTP_CTRL, 'connectionMade')
74
75class ResponseConsumer(GeneralResponseConsumer):
76 def __init__(self, req):
77 super().__init__(req, 'RC')
78 ssddesc = '[%s] %s' % (id(req), self._desc)
79 self._ssd = SlipStreamDecoder(ssddesc, queue_inbound)
80 self._log(DBG.HTTP_CTRL, '__init__')
81
82 def dataReceived(self, data):
83 self._log(DBG.HTTP_CTRL, 'dataReceived', d=data)
84 try:
85 self._ssd.inputdata(data)
86 except Exception as e:
87 self._handleexception()
88
89 def connectionLost(self, reason):
90 self._log(DBG.HTTP_CTRL, 'connectionLost ' + str(reason))
91 if not reason.check(twisted.web.client.ResponseDone):
92 self.latefailure()
93 return
94 try:
95 self._ssd.flush()
96 req_fin(self._req)
97 except Exception as e:
98 self._handleexception()
99
100 def _handleexception(self):
101 self._latefailure(traceback.format_exc())
102
103 def _latefailure(self, reason):
104 self._log(DBG.HTTP_CTRL, '_asyncFailure ' + str(reason))
105 req_err(self._req, reason)
106
107class ErrorResponseConsumer(twisted.internet.protocol.Protocol):
108 def __init__(self, req, resp):
109 super().__init__(req, 'ERROR-RC')
110 self._resp = resp
111 self._m = b''
112 try:
113 self._phrase = resp.phrase.decode('utf-8')
114 except Exception:
115 self._phrase = repr(resp.phrase)
116 self._log(DBG.HTTP_CTRL, '__init__ %d %s' % (resp.code, self._phrase))
117
118 def dataReceived(self, data):
119 self._log(DBG.HTTP_CTRL, 'dataReceived ' + repr(data))
120 self._m += data
121
122 def connectionLost(self, reason):
123 try:
124 mbody = self._m.decode('utf-8')
125 except Exception:
126 mbody = repr(self._m)
127 if not reason.check(twisted.web.client.ResponseDone):
128 mbody += ' || ' + str(reason)
129 req_err(self._req,
130 "FAILED %d %s | %s"
131 % (self._resp.code, self._phrase, mbody))
132
133def req_ok(req, resp):
134 log_debug(DBG.HTTP_CTRL,
135 'req_ok %d %s %s' % (resp.code, repr(resp.phrase), str(resp)),
136 idof=req)
137 if resp.code == 200:
138 rc = ResponseConsumer(req)
139 else:
140 rc = ErrorResponseConsumer(req, resp)
141
142 resp.deliverBody(rc)
143 # now rc is responsible for calling req_fin
144
145def req_err(req, err):
146 # called when the Deferred fails, or (if it completes),
147 # later, by ResponsConsumer or ErrorResponsConsumer
148 try:
149 log_debug(DBG.HTTP_CTRL, 'req_err ' + str(err), idof=req)
150 if isinstance(err, twisted.python.failure.Failure):
151 err = err.getTraceback()
152 print('[%#x] %s' % (id(req), err), file=sys.stderr)
153 if not isinstance(outstanding[req], int):
154 raise RuntimeError('[%#x] previously %s' % (id(req), outstanding[req]))
155 outstanding[req] = err
156 log_outstanding()
157 reactor.callLater(c.http_retry, partial(req_fin, req))
158 except Exception as e:
159 crash(traceback.format_exc() + '\n----- handling -----\n' + err)
160
161def req_fin(req):
162 del outstanding[req]
163 log_debug(DBG.HTTP_CTRL, 'req_fin OS=%d' % len(outstanding), idof=req)
164 check_outbound()
165
166class Errb:
167 def __init__(self, req):
168 self._req = req
169 def call(self, err):
170 req_err(self._req, err)
171
172def check_outbound():
173 global outstanding
174
175 while True:
176 if len(outstanding) >= c.max_outstanding : break
177 if not queue.nonempty() and len(outstanding) >= c.target_outstanding: break
178
179 d = b''
180 def moredata(s): nonlocal d; d += s
181 queue.process((lambda: len(d)),
182 moredata,
183 c.max_batch_up)
184
185 d = mime_translate(d)
186
187 crlf = b'\r\n'
188 lf = b'\n'
189 mime = (b'--b' + crlf +
190 b'Content-Type: text/plain; charset="utf-8"' + crlf +
191 b'Content-Disposition: form-data; name="m"' + crlf + crlf +
192 str(c.client) .encode('ascii') + crlf +
193 password + crlf +
194 str(c.target_outstanding) .encode('ascii') + crlf +
195 ((
196 b'--b' + crlf +
197 b'Content-Type: application/octet-stream' + crlf +
198 b'Content-Disposition: form-data; name="d"' + crlf + crlf +
199 d + crlf
200 ) if len(d) else b'') +
201 b'--b--' + crlf)
202
203 #df = open('data.dump.dbg', mode='wb')
204 #df.write(mime)
205 #df.close()
206 # POST -use -c 'multipart/form-data; boundary="b"' http://localhost:8099/ <data.dump.dbg
207
208 log_debug(DBG.HTTP_FULL, 'requesting: ' + str(mime))
209
210 hh = { 'User-Agent': ['hippotat'],
211 'Content-Type': ['multipart/form-data; boundary="b"'],
212 'Content-Length': [str(len(mime))] }
213
214 bytesreader = io.BytesIO(mime)
215 producer = twisted.web.client.FileBodyProducer(bytesreader)
216
217 req = agent.request(b'POST',
218 c.url,
219 twisted.web.client.Headers(hh),
220 producer)
221
222 outstanding[req] = len(d)
223 log_debug(DBG.HTTP_CTRL, 'request OS=%d' % len(outstanding), idof=req, d=d)
224 req.addTimeout(c.http_timeout, reactor)
225 req.addCallback(partial(req_ok, req))
226 req.addErrback(partial(req_err, req))
227
228 log_outstanding()
229
230common_startup()
231process_cfg()
232start_client()
233start_ipif(c.ipif_command, outbound)
234check_outbound()
235common_run()