-
Notifications
You must be signed in to change notification settings - Fork 162
/
option.c
333 lines (275 loc) · 8.72 KB
/
option.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
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
/*-------------------------------------------------------------------------
*
* option.c
* FDW option handling for mysql_fdw
*
* Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
* Portions Copyright (c) 2004-2024, EnterpriseDB Corporation.
*
* IDENTIFICATION
* option.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "access/reloptions.h"
#include "catalog/pg_foreign_server.h"
#include "catalog/pg_foreign_table.h"
#include "catalog/pg_user_mapping.h"
#include "catalog/pg_type.h"
#include "commands/defrem.h"
#include "mb/pg_wchar.h"
#include "miscadmin.h"
#include "mysql_fdw.h"
#include "utils/lsyscache.h"
/*
* Describes the valid options for objects that use this wrapper.
*/
struct MySQLFdwOption
{
const char *optname;
Oid optcontext; /* Oid of catalog in which option may appear */
};
/*
* Valid options for mysql_fdw.
*/
static struct MySQLFdwOption valid_options[] =
{
/* Connection options */
{"host", ForeignServerRelationId},
{"port", ForeignServerRelationId},
{"init_command", ForeignServerRelationId},
{"username", UserMappingRelationId},
{"password", UserMappingRelationId},
{"dbname", ForeignTableRelationId},
{"table_name", ForeignTableRelationId},
{"secure_auth", ForeignServerRelationId},
{"max_blob_size", ForeignTableRelationId},
{"use_remote_estimate", ForeignServerRelationId},
/* fetch_size is available on both server and table */
{"fetch_size", ForeignServerRelationId},
{"fetch_size", ForeignTableRelationId},
{"reconnect", ForeignServerRelationId},
{"character_set", ForeignServerRelationId},
{"mysql_default_file", ForeignServerRelationId},
#if PG_VERSION_NUM >= 140000
/* truncatable is available on both server and table */
{"truncatable", ForeignServerRelationId},
{"truncatable", ForeignTableRelationId},
#endif
{"sql_mode", ForeignServerRelationId},
{"ssl_key", ForeignServerRelationId},
{"ssl_cert", ForeignServerRelationId},
{"ssl_ca", ForeignServerRelationId},
{"ssl_capath", ForeignServerRelationId},
{"ssl_cipher", ForeignServerRelationId},
/* Sentinel */
{NULL, InvalidOid}
};
extern Datum mysql_fdw_validator(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(mysql_fdw_validator);
/*
* Validate the generic options given to a FOREIGN DATA WRAPPER, SERVER,
* USER MAPPING or FOREIGN TABLE that uses file_fdw.
*
* Raise an ERROR if the option or its value is considered invalid.
*/
Datum
mysql_fdw_validator(PG_FUNCTION_ARGS)
{
List *options_list = untransformRelOptions(PG_GETARG_DATUM(0));
Oid catalog = PG_GETARG_OID(1);
ListCell *cell;
/*
* Check that only options supported by mysql_fdw, and allowed for the
* current object type, are given.
*/
foreach(cell, options_list)
{
DefElem *def = (DefElem *) lfirst(cell);
if (!mysql_is_valid_option(def->defname, catalog))
{
struct MySQLFdwOption *opt;
StringInfoData buf;
/*
* Unknown option specified, complain about it. Provide a hint
* with list of valid options for the object.
*/
initStringInfo(&buf);
for (opt = valid_options; opt->optname; opt++)
{
if (catalog == opt->optcontext)
appendStringInfo(&buf, "%s%s", (buf.len > 0) ? ", " : "",
opt->optname);
}
ereport(ERROR,
(errcode(ERRCODE_FDW_INVALID_OPTION_NAME),
errmsg("invalid option \"%s\"", def->defname),
errhint("Valid options in this context are: %s",
buf.len ? buf.data : "<none>")));
}
/* Validate fetch_size option value */
if (strcmp(def->defname, "fetch_size") == 0)
{
unsigned long fetch_size;
char *endptr;
char *inputVal = defGetString(def);
while (inputVal && isspace((unsigned char) *inputVal))
inputVal++;
if (inputVal && *inputVal == '-')
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("\"%s\" requires an integer value between 1 to %lu",
def->defname, ULONG_MAX)));
errno = 0;
fetch_size = strtoul(inputVal, &endptr, 10);
if (*endptr != '\0' ||
(errno == ERANGE && fetch_size == ULONG_MAX) ||
fetch_size == 0)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("\"%s\" requires an integer value between 1 to %lu",
def->defname, ULONG_MAX)));
}
else if (strcmp(def->defname, "reconnect") == 0)
{
/* accept only boolean values */
(void) defGetBoolean(def);
}
#if PG_VERSION_NUM >= 140000
else if (strcmp(def->defname, "truncatable") == 0)
{
/* accept only boolean values */
(void) defGetBoolean(def);
}
#endif
}
PG_RETURN_VOID();
}
/*
* Check if the provided option is one of the valid options.
* context is the Oid of the catalog holding the object the option is for.
*/
bool
mysql_is_valid_option(const char *option, Oid context)
{
struct MySQLFdwOption *opt;
for (opt = valid_options; opt->optname; opt++)
{
if (context == opt->optcontext && strcmp(opt->optname, option) == 0)
return true;
}
return false;
}
/*
* Fetch the options for a mysql_fdw foreign table.
*/
mysql_opt *
mysql_get_options(Oid foreignoid, bool is_foreigntable)
{
ForeignTable *f_table;
ForeignServer *f_server;
UserMapping *f_mapping;
List *options;
ListCell *lc;
mysql_opt *opt;
opt = (mysql_opt *) palloc0(sizeof(mysql_opt));
/*
* Extract options from FDW objects.
*/
if (is_foreigntable)
{
f_table = GetForeignTable(foreignoid);
f_server = GetForeignServer(f_table->serverid);
}
else
{
f_table = NULL;
f_server = GetForeignServer(foreignoid);
}
f_mapping = GetUserMapping(GetUserId(), f_server->serverid);
options = NIL;
options = mysql_list_concat(options, f_server->options);
options = mysql_list_concat(options, f_mapping->options);
if (f_table)
options = mysql_list_concat(options, f_table->options);
/* Default secure authentication is true */
opt->svr_sa = true;
opt->use_remote_estimate = false;
opt->reconnect = false;
/* Loop through the options */
foreach(lc, options)
{
DefElem *def = (DefElem *) lfirst(lc);
if (strcmp(def->defname, "host") == 0)
opt->svr_address = defGetString(def);
if (strcmp(def->defname, "port") == 0)
opt->svr_port = atoi(defGetString(def));
if (strcmp(def->defname, "username") == 0)
opt->svr_username = defGetString(def);
if (strcmp(def->defname, "password") == 0)
opt->svr_password = defGetString(def);
if (strcmp(def->defname, "dbname") == 0)
opt->svr_database = defGetString(def);
if (strcmp(def->defname, "table_name") == 0)
opt->svr_table = defGetString(def);
if (strcmp(def->defname, "secure_auth") == 0)
opt->svr_sa = defGetBoolean(def);
if (strcmp(def->defname, "init_command") == 0)
opt->svr_init_command = defGetString(def);
if (strcmp(def->defname, "max_blob_size") == 0)
opt->max_blob_size = strtoul(defGetString(def), NULL, 0);
if (strcmp(def->defname, "use_remote_estimate") == 0)
opt->use_remote_estimate = defGetBoolean(def);
if (strcmp(def->defname, "fetch_size") == 0)
opt->fetch_size = strtoul(defGetString(def), NULL, 10);
if (strcmp(def->defname, "reconnect") == 0)
opt->reconnect = defGetBoolean(def);
if (strcmp(def->defname, "character_set") == 0)
opt->character_set = defGetString(def);
if (strcmp(def->defname, "mysql_default_file") == 0)
opt->mysql_default_file = defGetString(def);
if (strcmp(def->defname, "sql_mode") == 0)
opt->sql_mode = defGetString(def);
if (strcmp(def->defname, "ssl_key") == 0)
opt->ssl_key = defGetString(def);
if (strcmp(def->defname, "ssl_cert") == 0)
opt->ssl_cert = defGetString(def);
if (strcmp(def->defname, "ssl_ca") == 0)
opt->ssl_ca = defGetString(def);
if (strcmp(def->defname, "ssl_capath") == 0)
opt->ssl_capath = defGetString(def);
if (strcmp(def->defname, "ssl_cipher") == 0)
opt->ssl_cipher = defGetString(def);
}
/* Default values, if required */
if (!opt->svr_address)
opt->svr_address = "127.0.0.1";
if (!opt->svr_port)
opt->svr_port = MYSQL_SERVER_PORT;
/*
* When we don't have a table name or database name provided in the
* FOREIGN TABLE options, then use a foreign table name as the target
* table name and the namespace of the foreign table as a database name.
*/
if (f_table)
{
if (!opt->svr_table)
opt->svr_table = get_rel_name(foreignoid);
if (!opt->svr_database)
opt->svr_database = get_namespace_name(get_rel_namespace(foreignoid));
}
/* Default value for fetch_size */
if (!opt->fetch_size)
opt->fetch_size = MYSQL_PREFETCH_ROWS;
/* Default value for character_set */
if (!opt->character_set)
opt->character_set = MYSQL_AUTODETECT_CHARSET_NAME;
/* Special value provided for existing behavior */
else if (strcmp(opt->character_set, "PGDatabaseEncoding") == 0)
opt->character_set = (char *) GetDatabaseEncodingName();
/* Default value for sql_mode */
if (!opt->sql_mode)
opt->sql_mode = "ANSI_QUOTES";
return opt;
}