-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathmysql_driver_dialect.py
More file actions
252 lines (204 loc) · 10.7 KB
/
Copy pathmysql_driver_dialect.py
File metadata and controls
252 lines (204 loc) · 10.7 KB
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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import socket
from typing import TYPE_CHECKING, Any, Callable, ClassVar, Optional, Set
if TYPE_CHECKING:
from aws_advanced_python_wrapper.hostinfo import HostInfo
from aws_advanced_python_wrapper.pep249 import Connection
from inspect import signature
from aws_advanced_python_wrapper.driver_dialect import DriverDialect
from aws_advanced_python_wrapper.driver_dialect_codes import DriverDialectCodes
from aws_advanced_python_wrapper.errors import UnsupportedOperationError
from aws_advanced_python_wrapper.pep249_methods import DbApiMethod
from aws_advanced_python_wrapper.utils.messages import Messages
from aws_advanced_python_wrapper.utils.properties import (Properties,
PropertiesUtils,
WrapperProperties)
CMYSQL_ENABLED = False
from mysql.connector import MySQLConnection # noqa: E402
from mysql.connector.cursor import MySQLCursor # noqa: E402
try:
from mysql.connector import CMySQLConnection # noqa: E402
from mysql.connector.cursor_cext import CMySQLCursor # noqa: E402
CMYSQL_ENABLED = True
except ImportError:
# Do nothing
pass
class MySQLDriverDialect(DriverDialect):
_driver_name = "MySQL Connector Python"
TARGET_DRIVER_CODE = "MySQL"
AUTH_PLUGIN_PARAM = "auth_plugin"
AUTH_METHOD = "mysql_clear_password"
IS_CLOSED_TIMEOUT_SEC = 3
_executor_name: ClassVar[str] = "MySQLDriverDialectExecutor"
_dialect_code: str = DriverDialectCodes.MYSQL_CONNECTOR_PYTHON
_network_bound_methods: Set[str] = {
DbApiMethod.CONNECTION_COMMIT.method_name,
DbApiMethod.CONNECTION_AUTOCOMMIT.method_name,
DbApiMethod.CONNECTION_AUTOCOMMIT_SETTER.method_name,
DbApiMethod.CONNECTION_IS_READ_ONLY.method_name,
DbApiMethod.CONNECTION_SET_READ_ONLY.method_name,
DbApiMethod.CONNECTION_ROLLBACK.method_name,
DbApiMethod.CONNECTION_CURSOR.method_name,
DbApiMethod.CURSOR_CLOSE.method_name,
DbApiMethod.CURSOR_EXECUTE.method_name,
DbApiMethod.CURSOR_FETCHONE.method_name,
DbApiMethod.CURSOR_FETCHMANY.method_name,
DbApiMethod.CURSOR_FETCHALL.method_name
}
@staticmethod
def _is_mysql_connection(conn: Connection | object) -> bool:
return isinstance(conn, MySQLConnection) or (CMYSQL_ENABLED and isinstance(conn, CMySQLConnection))
@staticmethod
def _is_cmysql_cursor(obj: object) -> bool:
return CMYSQL_ENABLED and isinstance(obj, CMySQLCursor)
def is_dialect(self, connect_func: Callable) -> bool:
if MySQLDriverDialect.TARGET_DRIVER_CODE not in str(signature(connect_func)):
return MySQLDriverDialect.TARGET_DRIVER_CODE.lower() in (connect_func.__module__ + connect_func.__qualname__).lower()
return True
def is_closed(self, conn: Connection) -> bool:
if MySQLDriverDialect._is_mysql_connection(conn):
# is_connected validates the connection using a ping().
# If there are any unread results from previous executions an error will be thrown.
if self.can_execute_query(conn):
socket_timeout = WrapperProperties.SOCKET_TIMEOUT_SEC.get_float(self._props)
timeout_sec = socket_timeout if socket_timeout > 0 else MySQLDriverDialect.IS_CLOSED_TIMEOUT_SEC
# Run the liveness ping on the CALLING thread, never a worker
# thread. mysql.connector connections are not safe for concurrent
# use. The previous implementation offloaded conn.is_connected()
# (a COM_PING == SSL I/O) to a thread pool and, on timeout,
# abandoned the still-running ping on the pool thread while the
# caller went on to use/close the same connection -- two threads
# doing SSL read/write on one socket, a use-after-free in
# OpenSSL/libmysqlclient that crashes the process with SIGSEGV.
# Bound the ping with a temporary socket read timeout instead so
# it cannot hang, and never touch the connection from a second
# thread.
restore_timeout = MySQLDriverDialect._set_socket_timeout(conn, timeout_sec)
try:
return not conn.is_connected() # type: ignore[attr-defined]
finally:
if restore_timeout is not None:
restore_timeout()
return False
raise UnsupportedOperationError(Messages.get_formatted("DriverDialect.UnsupportedOperationError", self._driver_name, "is_connected"))
@staticmethod
def _set_socket_timeout(conn: Connection, timeout_sec: float) -> Optional[Callable[[], None]]:
"""Temporarily set a read timeout on the connection's underlying socket so
that a liveness ping issued on the calling thread cannot block forever.
Returns a callable that restores the previous timeout, or None when the
socket is not reachable (e.g. the C-extension connection, whose ping is
instead bounded by its connect-time read_timeout)."""
sock = getattr(getattr(conn, "_socket", None), "sock", None)
if sock is None:
return None
try:
previous = sock.gettimeout()
sock.settimeout(timeout_sec)
except OSError:
return None
def _restore() -> None:
try:
sock.settimeout(previous)
except OSError:
pass
return _restore
def get_autocommit(self, conn: Connection) -> bool:
if MySQLDriverDialect._is_mysql_connection(conn):
return conn.autocommit # type: ignore[attr-defined]
raise UnsupportedOperationError(
Messages.get_formatted("DriverDialect.UnsupportedOperationError", self._driver_name, "autocommit"))
def set_autocommit(self, conn: Connection, autocommit: bool):
if MySQLDriverDialect._is_mysql_connection(conn):
conn.autocommit = autocommit # type: ignore[attr-defined]
return
raise UnsupportedOperationError(
Messages.get_formatted("DriverDialect.UnsupportedOperationError", self._driver_name, "autocommit"))
def set_password(self, props: Properties, pwd: str):
WrapperProperties.PASSWORD.set(props, pwd)
props[MySQLDriverDialect.AUTH_PLUGIN_PARAM] = MySQLDriverDialect.AUTH_METHOD
def abort_connection(self, conn: Connection):
# Shut the connection's underlying socket down to interrupt an in-flight
# operation so the owning thread's blocked recv returns promptly, WITHOUT
# freeing the connection (the owning thread closes it -- freeing it here
# would race a cross-thread use-after-free in the driver, the env-4 SIGSEGV).
# Thread-safe equivalent of JDBC's Connection.abort(). Only the pure-Python
# connector exposes the raw socket; best-effort no-op for the C extension.
if not MySQLDriverDialect._is_mysql_connection(conn):
raise UnsupportedOperationError(
Messages.get_formatted(
"DriverDialect.UnsupportedOperationError",
self._driver_name,
"abort_connection"))
sock = getattr(getattr(conn, "_socket", None), "sock", None)
if sock is not None and hasattr(sock, "shutdown"):
try:
sock.shutdown(socket.SHUT_RDWR)
except OSError:
pass
def can_execute_query(self, conn: Connection) -> bool:
if MySQLDriverDialect._is_mysql_connection(conn):
if conn.unread_result: # type: ignore[attr-defined]
return conn.can_consume_results # type: ignore[attr-defined]
return True
def is_in_transaction(self, conn: Connection) -> bool:
if MySQLDriverDialect._is_mysql_connection(conn):
return bool(conn.in_transaction) # type: ignore[attr-defined]
raise UnsupportedOperationError(
Messages.get_formatted("DriverDialect.UnsupportedOperationError", self._driver_name,
"in_transaction"))
def get_connection_from_obj(self, obj: object) -> Any:
if MySQLDriverDialect._is_mysql_connection(obj):
return obj
if MySQLDriverDialect._is_cmysql_cursor(obj):
try:
conn = None
if hasattr(obj, '_cnx'):
conn = obj._cnx
elif hasattr(obj, '_connection'):
conn = obj._connection
if conn is None:
return None
if MySQLDriverDialect._is_mysql_connection(conn):
return conn
except ReferenceError:
return None
if isinstance(obj, MySQLCursor):
try:
if MySQLDriverDialect._is_mysql_connection(obj._connection):
return obj._connection
except ReferenceError:
return None
return None
def transfer_session_state(self, from_conn: Connection, to_conn: Connection):
if MySQLDriverDialect._is_mysql_connection(from_conn) and MySQLDriverDialect._is_mysql_connection(to_conn):
to_conn.autocommit = from_conn.autocommit # type: ignore[attr-defined]
def ping(self, conn: Connection) -> bool:
return not self.is_closed(conn)
def prepare_connect_info(self, host_info: HostInfo, original_props: Properties) -> Properties:
driver_props: Properties = Properties(original_props.copy())
PropertiesUtils.remove_wrapper_props(driver_props)
driver_props["host"] = host_info.host
if host_info.is_port_specified():
driver_props["port"] = str(host_info.port)
db = WrapperProperties.DATABASE.get(original_props)
if db is not None:
driver_props["database"] = db
connect_timeout = WrapperProperties.CONNECT_TIMEOUT_SEC.get(original_props)
if connect_timeout is not None:
driver_props["connect_timeout"] = connect_timeout
return driver_props
def supports_connect_timeout(self) -> bool:
return True