-
Notifications
You must be signed in to change notification settings - Fork 162
/
connection.c
304 lines (264 loc) · 8.16 KB
/
connection.c
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
/*-------------------------------------------------------------------------
*
* connection.c
* Connection management functions for mysql_fdw
*
* Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
* Portions Copyright (c) 2004-2024, EnterpriseDB Corporation.
*
* IDENTIFICATION
* connection.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#if PG_VERSION_NUM >= 130000
#include "common/hashfn.h"
#endif
#include "mysql_fdw.h"
#include "utils/hsearch.h"
#include "utils/inval.h"
#include "utils/memutils.h"
#include "utils/syscache.h"
/* Length of host */
#define HOST_LEN 256
/*
* Connection cache hash table entry
*
* The lookup key in this hash table is the foreign server OID plus the user
* mapping OID. (We use just one connection per user per foreign server,
* so that we can ensure all scans use the same snapshot during a query.)
*/
typedef struct ConnCacheKey
{
Oid serverid; /* OID of foreign server */
Oid userid; /* OID of local user whose mapping we use */
} ConnCacheKey;
typedef struct ConnCacheEntry
{
ConnCacheKey key; /* hash key (must be first) */
MYSQL *conn; /* connection to foreign server, or NULL */
bool invalidated; /* true if reconnect is pending */
uint32 server_hashvalue; /* hash value of foreign server OID */
uint32 mapping_hashvalue; /* hash value of user mapping OID */
} ConnCacheEntry;
/*
* Connection cache (initialized on first use)
*/
static HTAB *ConnectionHash = NULL;
static void mysql_inval_callback(Datum arg, int cacheid, uint32 hashvalue);
/*
* mysql_get_connection:
* Get a connection which can be used to execute queries on the remote
* MySQL server with the user's authorization. A new connection is
* established if we don't already have a suitable one.
*/
MYSQL *
mysql_get_connection(ForeignServer *server, UserMapping *user, mysql_opt *opt)
{
bool found;
ConnCacheEntry *entry;
ConnCacheKey key;
/* First time through, initialize connection cache hashtable */
if (ConnectionHash == NULL)
{
HASHCTL ctl;
MemSet(&ctl, 0, sizeof(ctl));
ctl.keysize = sizeof(ConnCacheKey);
ctl.entrysize = sizeof(ConnCacheEntry);
ctl.hash = tag_hash;
/* Allocate ConnectionHash in the cache context */
ctl.hcxt = CacheMemoryContext;
ConnectionHash = hash_create("mysql_fdw connections", 8,
&ctl,
HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT);
/*
* Register some callback functions that manage connection cleanup.
* This should be done just once in each backend.
*/
CacheRegisterSyscacheCallback(FOREIGNSERVEROID,
mysql_inval_callback, (Datum) 0);
CacheRegisterSyscacheCallback(USERMAPPINGOID,
mysql_inval_callback, (Datum) 0);
}
/* Create hash key for the entry. Assume no pad bytes in key struct */
key.serverid = server->serverid;
key.userid = user->userid;
/*
* Find or create cached entry for requested connection.
*/
entry = hash_search(ConnectionHash, &key, HASH_ENTER, &found);
if (!found)
{
/* Initialize new hashtable entry (key is already filled in) */
entry->conn = NULL;
}
/* If an existing entry has invalid connection then release it */
if (entry->conn != NULL && entry->invalidated)
{
elog(DEBUG3, "disconnecting mysql_fdw connection %p for option changes to take effect",
entry->conn);
mysql_close(entry->conn);
entry->conn = NULL;
}
if (entry->conn == NULL)
{
entry->conn = mysql_fdw_connect(opt);
elog(DEBUG3, "new mysql_fdw connection %p for server \"%s\"",
entry->conn, server->servername);
/*
* Once the connection is established, then set the connection
* invalidation flag to false, also set the server and user mapping
* hash values.
*/
entry->invalidated = false;
entry->server_hashvalue =
GetSysCacheHashValue1(FOREIGNSERVEROID,
ObjectIdGetDatum(server->serverid));
entry->mapping_hashvalue =
GetSysCacheHashValue1(USERMAPPINGOID,
ObjectIdGetDatum(user->umid));
}
return entry->conn;
}
/*
* mysql_cleanup_connection:
* Delete all the cache entries on backend exists.
*/
void
mysql_cleanup_connection(void)
{
HASH_SEQ_STATUS scan;
ConnCacheEntry *entry;
if (ConnectionHash == NULL)
return;
hash_seq_init(&scan, ConnectionHash);
while ((entry = (ConnCacheEntry *) hash_seq_search(&scan)))
{
if (entry->conn == NULL)
continue;
elog(DEBUG3, "disconnecting mysql_fdw connection %p", entry->conn);
mysql_close(entry->conn);
entry->conn = NULL;
}
}
/*
* Release connection created by calling mysql_get_connection.
*/
void
mysql_release_connection(MYSQL *conn)
{
HASH_SEQ_STATUS scan;
ConnCacheEntry *entry;
if (ConnectionHash == NULL)
return;
hash_seq_init(&scan, ConnectionHash);
while ((entry = (ConnCacheEntry *) hash_seq_search(&scan)))
{
if (entry->conn == NULL)
continue;
if (entry->conn == conn)
{
elog(DEBUG3, "disconnecting mysql_fdw connection %p", entry->conn);
mysql_close(entry->conn);
entry->conn = NULL;
hash_seq_term(&scan);
break;
}
}
}
MYSQL *
mysql_fdw_connect(mysql_opt *opt)
{
MYSQL *conn;
char *svr_database = opt->svr_database;
bool svr_sa = opt->svr_sa;
char *svr_init_command = opt->svr_init_command;
char *ssl_cipher = opt->ssl_cipher;
#if MYSQL_VERSION_ID < 80000
my_bool secure_auth = svr_sa;
#endif
/* Connect to the server */
conn = mysql_init(NULL);
if (!conn)
ereport(ERROR,
(errcode(ERRCODE_FDW_OUT_OF_MEMORY),
errmsg("failed to initialise the MySQL connection object")));
mysql_options(conn, MYSQL_SET_CHARSET_NAME, opt->character_set);
#if MYSQL_VERSION_ID < 80000
mysql_options(conn, MYSQL_SECURE_AUTH, &secure_auth);
#endif
if (!svr_sa)
elog(WARNING, "MySQL secure authentication is off");
if (svr_init_command != NULL)
mysql_options(conn, MYSQL_INIT_COMMAND, svr_init_command);
/*
* Enable or disable automatic reconnection to the MySQL server if the
* existing connection is found to have been lost.
*/
mysql_options(conn, MYSQL_OPT_RECONNECT, &opt->reconnect);
/*
* If the mysql_default_file option is provided, then read the connection
* details from the given file.
*/
if (opt->mysql_default_file)
{
mysql_options(conn, MYSQL_READ_DEFAULT_FILE,
(void *)opt->mysql_default_file);
if (!mysql_real_connect(conn, NULL, NULL, NULL, NULL, 0, NULL, 0))
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to connect to MySQL: %s",
mysql_error(conn))));
}
else
{
mysql_ssl_set(conn, opt->ssl_key, opt->ssl_cert, opt->ssl_ca,
opt->ssl_capath, ssl_cipher);
if (!mysql_real_connect(conn, opt->svr_address, opt->svr_username,
opt->svr_password, svr_database, opt->svr_port,
NULL, 0))
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to connect to MySQL: %s",
mysql_error(conn))));
}
/* Useful for verifying that the connection's secured */
elog(DEBUG1,
"Successfully connected to MySQL database %s at server %s with cipher %s (server version: %s, protocol version: %d) ",
(svr_database != NULL) ? svr_database : "<none>",
mysql_get_host_info(conn),
(ssl_cipher != NULL) ? ssl_cipher : "<none>",
mysql_get_server_info(conn),
mysql_get_proto_info(conn));
return conn;
}
/*
* Connection invalidation callback function for mysql.
*
* After a change to a pg_foreign_server or pg_user_mapping catalog entry,
* mark connections depending on that entry as needing to be remade. This
* implementation is similar as pgfdw_inval_callback.
*/
static void
mysql_inval_callback(Datum arg, int cacheid, uint32 hashvalue)
{
HASH_SEQ_STATUS scan;
ConnCacheEntry *entry;
Assert(cacheid == FOREIGNSERVEROID || cacheid == USERMAPPINGOID);
/* ConnectionHash must exist already, if we're registered */
hash_seq_init(&scan, ConnectionHash);
while ((entry = (ConnCacheEntry *) hash_seq_search(&scan)))
{
/* Ignore invalid entries */
if (entry->conn == NULL)
continue;
/* hashvalue == 0 means a cache reset, must clear all state */
if (hashvalue == 0 ||
(cacheid == FOREIGNSERVEROID &&
entry->server_hashvalue == hashvalue) ||
(cacheid == USERMAPPINGOID &&
entry->mapping_hashvalue == hashvalue))
entry->invalidated = true;
}
}