forked from snowflakedb/snowflake-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth_webbrowser.py
321 lines (280 loc) · 10.9 KB
/
auth_webbrowser.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2019 Snowflake Computing Inc. All right reserved.
#
import json
import logging
import socket
import time
import webbrowser
from .auth import Auth
from .auth_by_plugin import AuthByPlugin
from .compat import (urlparse, urlsplit, parse_qs)
from .constants import (
HTTP_HEADER_CONTENT_TYPE,
HTTP_HEADER_ACCEPT,
HTTP_HEADER_USER_AGENT,
HTTP_HEADER_SERVICE_NAME,
)
from .errorcode import (
ER_UNABLE_TO_OPEN_BROWSER, ER_IDP_CONNECTION_ERROR,
ER_NO_HOSTNAME_FOUND)
from .errors import (OperationalError)
from .network import (
CONTENT_TYPE_APPLICATION_JSON,
PYTHON_CONNECTOR_USER_AGENT,
EXTERNAL_BROWSER_AUTHENTICATOR)
logger = logging.getLogger(__name__)
BUF_SIZE = 16384
# global state of web server that receives the SAML assertion from
# Snowflake server
class AuthByWebBrowser(AuthByPlugin):
"""
Authenticate user by web browser. Only used for SAML based
authentication.
"""
def __init__(self, rest, application,
webbrowser_pkg=None, socket_pkg=None,
protocol=None, host=None, port=None):
self._rest = rest
self._token = None
self._consent_cache_id_token = True
self._application = application
self._proof_key = None
self._webbrowser = webbrowser if webbrowser_pkg is None else webbrowser_pkg
self._socket = socket.socket if socket_pkg is None else socket_pkg
self._protocol = protocol
self._host = host
self._port = port
self._origin = None
@property
def consent_cache_id_token(self):
return self._consent_cache_id_token
@property
def assertion_content(self):
""" Returns the token."""
return self._token
def update_body(self, body):
""" Used by Auth to update the request that gets sent to
/v1/login-request.
Args:
body: existing request dictionary
"""
body[u'data'][u'AUTHENTICATOR'] = EXTERNAL_BROWSER_AUTHENTICATOR
body[u'data'][u'TOKEN'] = self._token
body[u'data'][u'PROOF_KEY'] = self._proof_key
def authenticate(
self, authenticator, service_name, account, user, password):
"""
Web Browser based Authentication.
"""
logger.debug(u'authenticating by Web Browser')
# ignore password. user is still needed by GS to verify
# the assertion.
_ = password # noqa: F841
socket_connection = self._socket(socket.AF_INET, socket.SOCK_STREAM)
try:
try:
socket_connection.bind(('localhost', 0))
except socket.gaierror as ex:
if ex.args[0] == socket.EAI_NONAME:
raise OperationalError(
msg=u'localhost is not found. Ensure /etc/hosts has '
u'localhost entry.',
errno=ER_NO_HOSTNAME_FOUND
)
else:
raise ex
socket_connection.listen(0) # no backlog
callback_port = socket_connection.getsockname()[1]
print("Initiating login request with your identity provider. A "
"browser window should have opened for you to complete the "
"login. If you can't see it, check existing browser windows, "
"or your OS settings. Press CTRL+C to abort and try again...")
logger.debug(u'step 1: query GS to obtain SSO url')
sso_url = self._get_sso_url(
authenticator, service_name, account, callback_port, user)
logger.debug(u'step 2: open a browser')
if not self._webbrowser.open_new(sso_url):
logger.error(
u'Unable to open a browser in this environment.',
exc_info=True)
self.handle_failure({
u'code': ER_UNABLE_TO_OPEN_BROWSER,
u'message': u"Unable to open a browser in this environment."
})
return # required for test case
logger.debug(u'step 3: accept SAML token')
self._receive_saml_token(socket_connection)
finally:
socket_connection.close()
def _receive_saml_token(self, socket_connection):
"""
Receives SAML token from web browser
"""
while True:
socket_client, _ = socket_connection.accept()
try:
# Receive the data in small chunks and retransmit it
data = socket_client.recv(BUF_SIZE).decode('utf-8').split(
"\r\n")
if not self._process_options(data, socket_client):
self._process_receive_saml_token(data, socket_client)
break
finally:
socket_client.shutdown(socket.SHUT_RDWR)
socket_client.close()
def _process_options(self, data, socket_client):
"""
Allows JS Ajax access to this endpoint
"""
for line in data:
if line.startswith("OPTIONS "):
break
else:
return False
self._get_user_agent(data)
requested_headers, requested_origin = self._check_post_requested(data)
if not requested_headers:
return False
if not self._validate_origin(requested_origin):
# validate Origin and fail if not match with the server.
return False
self._origin = requested_origin
content = [
"HTTP/1.1 200 OK",
"Date: {0}".format(
time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())),
"Access-Control-Allow-Methods: POST, GET",
"Access-Control-Allow-Headers: {0}".format(requested_headers),
"Access-Control-Max-Age: 86400",
"Access-Control-Allow-Origin: {0}".format(self._origin),
"",
"",
]
socket_client.sendall('\r\n'.join(content).encode('utf-8'))
return True
def _validate_origin(self, requested_origin):
ret = urlsplit(requested_origin)
netloc = ret.netloc.split(':')
host_got = netloc[0]
port_got = netloc[1] if len(netloc) > 1 else (
443 if self._protocol == u'https' else 80)
return ret.scheme == self._protocol \
and host_got == self._host and port_got == self._port
def _process_receive_saml_token(self, data, socket_client):
if not self._process_get(data) and not self._process_post(data):
return # error
content = [
"HTTP/1.1 200 OK",
"Content-Type: text/html",
]
if self._origin:
data = {'consent': self._consent_cache_id_token}
msg = json.dumps(data)
content.append("Access-Control-Allow-Origin: {0}".format(
self._origin))
content.append("Vary: Accept-Encoding, Origin")
else:
msg = """
<!DOCTYPE html><html><head><meta charset="UTF-8"/>
<title>SAML Response for Snowflake</title></head>
<body>
Your identity was confirmed and propagated to Snowflake {0}.
You can close this window now and go back where you started from.
</body></html>""".format(self._application)
content.append("Content-Length: {0}".format(len(msg)))
content.append("")
content.append(msg)
socket_client.sendall('\r\n'.join(content).encode('utf-8'))
def _check_post_requested(self, data):
request_line = None
header_line = None
origin_line = None
for line in data:
if line.startswith("Access-Control-Request-Method:"):
request_line = line
elif line.startswith("Access-Control-Request-Headers:"):
header_line = line
elif line.startswith("Origin:"):
origin_line = line
if not request_line or not header_line or not origin_line \
or request_line.split(':')[1].strip() != 'POST':
return None, None
return (header_line.split(':')[1].strip(),
':'.join(origin_line.split(':')[1:]).strip())
def _process_get(self, data):
for line in data:
if line.startswith("GET "):
target_line = line
break
else:
return False
self._get_user_agent(data)
_, url, _ = target_line.split()
self._token = parse_qs(urlparse(url).query)['token'][0]
return True
def _process_post(self, data):
for line in data:
if line.startswith("POST "):
break
else:
self.handle_failure({
u'code': ER_IDP_CONNECTION_ERROR,
u'message': u"Invalid HTTP request from web browser. Idp "
u"authentication could have failed."
})
return False
self._get_user_agent(data)
try:
# parse the response as JSON
payload = json.loads(data[-1])
self._token = payload.get('token')
self._consent_cache_id_token = payload.get('consent', True)
except Exception:
# key=value form.
self._token = parse_qs(data[-1])['token'][0]
return True
def _get_user_agent(self, data):
for line in data:
if line.lower().startswith('user-agent'):
logger.debug(line)
break
else:
logger.debug("No User-Agent")
def _get_sso_url(
self, authenticator, service_name, account, callback_port, user):
"""
Gets SSO URL from Snowflake
"""
headers = {
HTTP_HEADER_CONTENT_TYPE: CONTENT_TYPE_APPLICATION_JSON,
HTTP_HEADER_ACCEPT: CONTENT_TYPE_APPLICATION_JSON,
HTTP_HEADER_USER_AGENT: PYTHON_CONNECTOR_USER_AGENT,
}
if service_name:
headers[HTTP_HEADER_SERVICE_NAME] = service_name
url = u"/session/authenticator-request"
body = Auth.base_auth_data(
user, account,
self._rest._connection.application,
self._rest._connection._internal_application_name,
self._rest._connection._internal_application_version,
self._rest._connection._ocsp_mode())
body[u'data'][u'AUTHENTICATOR'] = authenticator
body[u'data'][u"BROWSER_MODE_REDIRECT_PORT"] = str(callback_port)
logger.debug(u'account=%s, authenticator=%s, user=%s',
account, authenticator, user)
ret = self._rest._post_request(
url,
headers,
json.dumps(body),
timeout=self._rest._connection.login_timeout,
socket_timeout=self._rest._connection.login_timeout)
if not ret[u'success']:
self.handle_failure(ret)
data = ret[u'data']
sso_url = data[u'ssoUrl']
self._proof_key = data[u'proofKey']
return sso_url