-
Notifications
You must be signed in to change notification settings - Fork 147
/
handlers.py
572 lines (449 loc) · 20.3 KB
/
handlers.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
"""
Authenticated HTTP proxy for Jupyter Notebooks
Some original inspiration from https://github.com/senko/tornado-proxy
"""
import inspect
import socket
import os
from urllib.parse import urlunparse, urlparse, quote
import aiohttp
from asyncio import Lock
from tornado import gen, web, httpclient, httputil, process, websocket, ioloop, version_info
from notebook.utils import url_path_join
from notebook.base.handlers import IPythonHandler, utcnow
from .utils import call_with_asked_args
from .websocket import WebSocketHandlerMixin, pingable_ws_connect
from simpervisor import SupervisedProcess
class AddSlashHandler(IPythonHandler):
"""Add trailing slash to URLs that need them."""
@web.authenticated
def get(self, *args):
src = urlparse(self.request.uri)
dest = src._replace(path=src.path + '/')
self.redirect(urlunparse(dest))
class ProxyHandler(WebSocketHandlerMixin, IPythonHandler):
"""
A tornado request handler that proxies HTTP and websockets from
a given host/port combination. This class is not meant to be
used directly as a means of overriding CORS. This presents significant
security risks, and could allow arbitrary remote code access. Instead, it is
meant to be subclassed and used for proxying URLs from trusted sources.
Subclasses should implement open, http_get, post, put, delete, head, patch,
and options.
"""
def __init__(self, *args, **kwargs):
self.proxy_base = ''
self.absolute_url = kwargs.pop('absolute_url', False)
self.host_whitelist = kwargs.pop('host_whitelist', ['localhost', '127.0.0.1'])
self.subprotocols = None
super().__init__(*args, **kwargs)
# Support all the methods that tornado does by default except for GET which
# is passed to WebSocketHandlerMixin and then to WebSocketHandler.
async def open(self, port, proxied_path):
raise NotImplementedError('Subclasses of ProxyHandler should implement open')
async def http_get(self, host, port, proxy_path=''):
'''Our non-websocket GET.'''
raise NotImplementedError('Subclasses of ProxyHandler should implement http_get')
def post(self, host, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement this post')
def put(self, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement this put')
def delete(self, host, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement delete')
def head(self, host, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement head')
def patch(self, host, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement patch')
def options(self, host, port, proxy_path=''):
raise NotImplementedError('Subclasses of ProxyHandler should implement options')
def on_message(self, message):
"""
Called when we receive a message from our client.
We proxy it to the backend.
"""
self._record_activity()
if hasattr(self, 'ws'):
self.ws.write_message(message, binary=isinstance(message, bytes))
def on_ping(self, data):
"""
Called when the client pings our websocket connection.
We proxy it to the backend.
"""
self.log.debug('jupyter_server_proxy: on_ping: {}'.format(data))
self._record_activity()
if hasattr(self, 'ws'):
self.ws.protocol.write_ping(data)
def on_pong(self, data):
"""
Called when we receive a ping back.
"""
self.log.debug('jupyter_server_proxy: on_pong: {}'.format(data))
def on_close(self):
"""
Called when the client closes our websocket connection.
We close our connection to the backend too.
"""
if hasattr(self, 'ws'):
self.ws.close()
def _record_activity(self):
"""Record proxied activity as API activity
avoids proxied traffic being ignored by the notebook's
internal idle-shutdown mechanism
"""
self.settings['api_last_activity'] = utcnow()
def _get_context_path(self, port):
"""
Some applications need to know where they are being proxied from.
This is either:
- {base_url}/proxy/{port}
- {base_url}/proxy/absolute/{port}
- {base_url}/{proxy_base}
"""
if self.proxy_base:
return url_path_join(self.base_url, self.proxy_base)
if self.absolute_url:
return url_path_join(self.base_url, 'proxy', 'absolute', str(port))
else:
return url_path_join(self.base_url, 'proxy', str(port))
def get_client_uri(self, protocol, host, port, proxied_path):
context_path = self._get_context_path(port)
if self.absolute_url:
client_path = url_path_join(context_path, proxied_path)
else:
client_path = proxied_path
# Quote spaces, åäö and such, but only enough to send a valid web
# request onwards. To do this, we mark the RFC 3986 specs' "reserved"
# and "un-reserved" characters as safe that won't need quoting. The
# un-reserved need to be marked safe to ensure the quote function behave
# the same in py36 as py37.
#
# ref: https://tools.ietf.org/html/rfc3986#section-2.2
client_path = quote(client_path, safe=":/?#[]@!$&'()*+,;=-._~")
client_uri = '{protocol}://{host}:{port}{path}'.format(
protocol=protocol,
host=host,
port=port,
path=client_path
)
if self.request.query:
client_uri += '?' + self.request.query
return client_uri
def _build_proxy_request(self, host, port, proxied_path, body):
headers = self.proxy_request_headers()
client_uri = self.get_client_uri('http', host, port, proxied_path)
# Some applications check X-Forwarded-Context and X-ProxyContextPath
# headers to see if and where they are being proxied from.
if not self.absolute_url:
context_path = self._get_context_path(port)
headers['X-Forwarded-Context'] = context_path
headers['X-ProxyContextPath'] = context_path
req = httpclient.HTTPRequest(
client_uri, method=self.request.method, body=body,
headers=headers, **self.proxy_request_options())
return req
def _check_host_whitelist(self, host):
if callable(self.host_whitelist):
return self.host_whitelist(self, host)
else:
return host in self.host_whitelist
@web.authenticated
async def proxy(self, host, port, proxied_path):
'''
This serverextension handles:
{base_url}/proxy/{port([0-9]+)}/{proxied_path}
{base_url}/proxy/absolute/{port([0-9]+)}/{proxied_path}
{base_url}/{proxy_base}/{proxied_path}
'''
if not self._check_host_whitelist(host):
self.set_status(403)
self.write("Host '{host}' is not whitelisted. "
"See https://jupyter-server-proxy.readthedocs.io/en/latest/arbitrary-ports-hosts.html for info.".format(host=host))
return
if 'Proxy-Connection' in self.request.headers:
del self.request.headers['Proxy-Connection']
self._record_activity()
if self.request.headers.get("Upgrade", "").lower() == 'websocket':
# We wanna websocket!
# jupyterhub/jupyter-server-proxy@36b3214
self.log.info("we wanna websocket, but we don't define WebSocketProxyHandler")
self.set_status(500)
body = self.request.body
if not body:
if self.request.method == 'POST':
body = b''
else:
body = None
client = httpclient.AsyncHTTPClient()
req = self._build_proxy_request(host, port, proxied_path, body)
try:
response = await client.fetch(req, raise_error=False)
except httpclient.HTTPError as err:
# We need to capture the timeout error even with raise_error=False,
# because it only affects the HTTPError raised when a non-200 response
# code is used, instead of suppressing all errors.
# Ref: https://www.tornadoweb.org/en/stable/httpclient.html#tornado.httpclient.AsyncHTTPClient.fetch
if err.code == 599:
self._record_activity()
self.set_status(599)
self.write(str(err))
return
else:
raise
# record activity at start and end of requests
self._record_activity()
# For all non http errors...
if response.error and type(response.error) is not httpclient.HTTPError:
self.set_status(500)
self.write(str(response.error))
else:
self.set_status(response.code, response.reason)
# clear tornado default header
self._headers = httputil.HTTPHeaders()
for header, v in response.headers.get_all():
if header not in ('Content-Length', 'Transfer-Encoding',
'Content-Encoding', 'Connection'):
# some header appear multiple times, eg 'Set-Cookie'
self.add_header(header, v)
if response.body:
self.write(response.body)
async def proxy_open(self, host, port, proxied_path=''):
"""
Called when a client opens a websocket connection.
We establish a websocket connection to the proxied backend &
set up a callback to relay messages through.
"""
if not self._check_host_whitelist(host):
self.set_status(403)
self.log.info("Host '{host}' is not whitelisted. "
"See https://jupyter-server-proxy.readthedocs.io/en/latest/arbitrary-ports-hosts.html for info.".format(host=host))
self.close()
return
if not proxied_path.startswith('/'):
proxied_path = '/' + proxied_path
client_uri = self.get_client_uri('ws', host, port, proxied_path)
headers = self.request.headers
current_loop = ioloop.IOLoop.current()
ws_connected = current_loop.asyncio_loop.create_future()
def message_cb(message):
"""
Callback when the backend sends messages to us
We just pass it back to the frontend
"""
# Websockets support both string (utf-8) and binary data, so let's
# make sure we signal that appropriately when proxying
self._record_activity()
if message is None:
self.close()
else:
self.write_message(message, binary=isinstance(message, bytes))
def ping_cb(data):
"""
Callback when the backend sends pings to us.
We just pass it back to the frontend.
"""
self._record_activity()
self.ping(data)
async def start_websocket_connection():
self.log.info('Trying to establish websocket connection to {}'.format(client_uri))
self._record_activity()
request = httpclient.HTTPRequest(url=client_uri, headers=headers)
self.ws = await pingable_ws_connect(request=request,
on_message_callback=message_cb, on_ping_callback=ping_cb,
subprotocols=self.subprotocols)
ws_connected.set_result(True)
self._record_activity()
self.log.info('Websocket connection established to {}'.format(client_uri))
current_loop.add_callback(start_websocket_connection)
# Wait for the WebSocket to be connected before resolving.
# Otherwise, messages sent by the client before the
# WebSocket successful connection would be dropped.
await ws_connected
def proxy_request_headers(self):
'''A dictionary of headers to be used when constructing
a tornado.httpclient.HTTPRequest instance for the proxy request.'''
return self.request.headers.copy()
def proxy_request_options(self):
'''A dictionary of options to be used when constructing
a tornado.httpclient.HTTPRequest instance for the proxy request.'''
return dict(follow_redirects=False, connect_timeout=250.0, request_timeout=300.0)
def check_xsrf_cookie(self):
'''
http://www.tornadoweb.org/en/stable/guide/security.html
Defer to proxied apps.
'''
pass
def select_subprotocol(self, subprotocols):
'''Select a single Sec-WebSocket-Protocol during handshake.'''
self.subprotocols = subprotocols
if isinstance(subprotocols, list) and subprotocols:
self.log.info('Client sent subprotocols: {}'.format(subprotocols))
return subprotocols[0]
return super().select_subprotocol(subprotocols)
class LocalProxyHandler(ProxyHandler):
"""
A tornado request handler that proxies HTTP and websockets
from a port on the local system. Same as the above ProxyHandler,
but specific to 'localhost'.
"""
async def http_get(self, port, proxied_path):
return await self.proxy(port, proxied_path)
async def open(self, port, proxied_path):
return await self.proxy_open('localhost', port, proxied_path)
def post(self, port, proxied_path):
return self.proxy(port, proxied_path)
def put(self, port, proxied_path):
return self.proxy(port, proxied_path)
def delete(self, port, proxied_path):
return self.proxy(port, proxied_path)
def head(self, port, proxied_path):
return self.proxy(port, proxied_path)
def patch(self, port, proxied_path):
return self.proxy(port, proxied_path)
def options(self, port, proxied_path):
return self.proxy(port, proxied_path)
def proxy(self, port, proxied_path):
return super().proxy('localhost', port, proxied_path)
class RemoteProxyHandler(ProxyHandler):
"""
A tornado request handler that proxies HTTP and websockets
from a port on a specified remote system.
"""
async def http_get(self, host, port, proxied_path):
return await self.proxy(host, port, proxied_path)
def post(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
def put(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
def delete(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
def head(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
def patch(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
def options(self, host, port, proxied_path):
return self.proxy(host, port, proxied_path)
async def open(self, host, port, proxied_path):
return await self.proxy_open(host, port, proxied_path)
def proxy(self, host, port, proxied_path):
return super().proxy(host, port, proxied_path)
# FIXME: Move this to its own file. Too many packages now import this from nbrserverproxy.handlers
class SuperviseAndProxyHandler(LocalProxyHandler):
'''Manage a given process and requests to it '''
def __init__(self, *args, **kwargs):
self.requested_port = 0
self.mappath = {}
super().__init__(*args, **kwargs)
def initialize(self, state):
self.state = state
if 'proc_lock' not in state:
state['proc_lock'] = Lock()
name = 'process'
@property
def port(self):
"""
Allocate either the requested port or a random empty port for use by
application
"""
if 'port' not in self.state:
sock = socket.socket()
sock.bind(('', self.requested_port))
self.state['port'] = sock.getsockname()[1]
sock.close()
return self.state['port']
def get_cwd(self):
"""Get the current working directory for our process
Override in subclass to launch the process in a directory
other than the current.
"""
return os.getcwd()
def get_env(self):
'''Set up extra environment variables for process. Typically
overridden in subclasses.'''
return {}
def get_timeout(self):
"""
Return timeout (in s) to wait before giving up on process readiness
"""
return 5
async def _http_ready_func(self, p):
url = 'http://localhost:{}'.format(self.port)
async with aiohttp.ClientSession() as session:
try:
async with session.get(url) as resp:
# We only care if we get back *any* response, not just 200
# If there's an error response, that can be shown directly to the user
self.log.debug('Got code {} back from {}'.format(resp.status, url))
return True
except aiohttp.ClientConnectionError:
self.log.debug('Connection to {} refused'.format(url))
return False
async def ensure_process(self):
"""
Start the process
"""
# We don't want multiple requests trying to start the process at the same time
# FIXME: Make sure this times out properly?
# Invariant here should be: when lock isn't being held, either 'proc' is in state &
# running, or not.
with (await self.state['proc_lock']):
if 'proc' not in self.state:
# FIXME: Prevent races here
# FIXME: Handle graceful exits of spawned processes here
cmd = self.get_cmd()
server_env = os.environ.copy()
# Set up extra environment variables for process
server_env.update(self.get_env())
timeout = self.get_timeout()
proc = SupervisedProcess(self.name, *cmd, env=server_env, ready_func=self._http_ready_func, ready_timeout=timeout, log=self.log)
self.state['proc'] = proc
try:
await proc.start()
is_ready = await proc.ready()
if not is_ready:
await proc.kill()
raise web.HTTPError(500, 'could not start {} in time'.format(self.name))
except:
# Make sure we remove proc from state in any error condition
del self.state['proc']
raise
@web.authenticated
async def proxy(self, port, path):
if not path.startswith('/'):
path = '/' + path
if self.mappath:
if callable(self.mappath):
path = call_with_asked_args(self.mappath, {'path': path})
else:
path = self.mappath.get(path, path)
await self.ensure_process()
return await super().proxy(self.port, path)
async def http_get(self, path):
return await self.proxy(self.port, path)
async def open(self, path):
await self.ensure_process()
return await super().open(self.port, path)
def post(self, path):
return self.proxy(self.port, path)
def put(self, path):
return self.proxy(self.port, path)
def delete(self, path):
return self.proxy(self.port, path)
def head(self, path):
return self.proxy(self.port, path)
def patch(self, path):
return self.proxy(self.port, path)
def options(self, path):
return self.proxy(self.port, path)
def setup_handlers(web_app, host_whitelist):
host_pattern = '.*$'
web_app.add_handlers('.*', [
(url_path_join(web_app.settings['base_url'], r'/proxy/(.*):(\d+)(.*)'),
RemoteProxyHandler, {'absolute_url': False, 'host_whitelist': host_whitelist}),
(url_path_join(web_app.settings['base_url'], r'/proxy/absolute/(.*):(\d+)(.*)'),
RemoteProxyHandler, {'absolute_url': True, 'host_whitelist': host_whitelist}),
(url_path_join(web_app.settings['base_url'], r'/proxy/(\d+)(.*)'),
LocalProxyHandler, {'absolute_url': False}),
(url_path_join(web_app.settings['base_url'], r'/proxy/absolute/(\d+)(.*)'),
LocalProxyHandler, {'absolute_url': True}),
])
# vim: set et ts=4 sw=4: