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 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
|
/* PostgreSQL Extension WhiteList -- Dimitri Fontaine
*
* Author: Dimitri Fontaine <dimitri@2ndQuadrant.fr>
* Licence: PostgreSQL
* Copyright Dimitri Fontaine, 2011-2013
*
* For a description of the features see the README.md file from the same
* distribution.
*/
/*
* Some tools to read a SQL file and execute commands found in there.
*
* The following code comes from the PostgreSQL source tree in
* src/backend/commands/extension.c, with some modifications to run in the
* context of the Extension Whitelisting Extension.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "postgres.h"
#include "pgextwlist.h"
#include "utils.h"
#if PG_MAJOR_VERSION >= 903
#include "access/htup_details.h"
#else
#include "access/htup.h"
#endif
#include "access/genam.h"
#include "access/heapam.h"
#include "access/skey.h"
#include "access/xact.h"
#include "catalog/indexing.h"
#include "catalog/namespace.h"
#include "catalog/pg_collation.h"
#include "catalog/pg_database.h"
#include "catalog/pg_extension.h"
#include "commands/extension.h"
#include "executor/executor.h"
#include "mb/pg_wchar.h"
#include "miscadmin.h"
#include "storage/fd.h"
#include "tcop/pquery.h"
#include "tcop/utility.h"
#include "utils/builtins.h"
#include "utils/memutils.h"
#include "utils/fmgroids.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
#if PG_MAJOR_VERSION < 1200
#include "utils/tqual.h"
#define table_open(r, l) heap_open(r, l)
#define table_close(r, l) heap_close(r, l)
#endif
/*
* Parse contents of primary or auxiliary control file, and fill in
* fields of *control. We parse primary file if version == NULL,
* else the optional auxiliary file for that version.
*
* Control files are supposed to be very short, half a dozen lines,
* so we don't worry about memory allocation risks here. Also we don't
* worry about what encoding it's in; all values are expected to be ASCII.
*/
static void
parse_default_version_in_control_file(const char *extname,
char **version,
char **schema)
{
char sharepath[MAXPGPATH];
char *filename;
FILE *file;
ConfigVariable *item,
*head = NULL,
*tail = NULL;
/*
* Locate the file to read.
*/
get_share_path(my_exec_path, sharepath);
filename = (char *) palloc(MAXPGPATH);
snprintf(filename, MAXPGPATH, "%s/extension/%s.control", sharepath, extname);
if ((file = AllocateFile(filename, "r")) == NULL)
{
/* we still need to handle the following error here */
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not open extension control file \"%s\": %m",
filename)));
}
/*
* Parse the file content, using GUC's file parsing code. We need not
* check the return value since any errors will be thrown at ERROR level.
*/
(void) ParseConfigFp(file, filename, 0, ERROR, &head, &tail);
FreeFile(file);
/*
* Convert the ConfigVariable list into ExtensionControlFile entries, we
* are only interested into the default version.
*/
for (item = head; item != NULL; item = item->next)
{
if (*version == NULL && strcmp(item->name, "default_version") == 0)
{
*version = pstrdup(item->value);
}
else if (*schema == NULL && strcmp(item->name, "schema") == 0)
{
*schema = pstrdup(item->value);
}
}
FreeConfigVariables(head);
pfree(filename);
}
/*
* We lookup scripts at the following places and run them when they exist:
*
* ${extwlist_custom_path}/${extname}/${when}--${version}.sql (upgrade)
* ${extwlist_custom_path}/${extname}/${when}-${action}.sql (create)
* ${extwlist_custom_path}/${extname}/${when}-${action}--${version}.sql (rest)
*/
char *
get_generic_custom_script_filename(const char *name,
const char *action,
const char *when)
{
char *result;
if (extwlist_custom_path == NULL)
return NULL;
result = (char *) palloc(MAXPGPATH);
snprintf(result, MAXPGPATH, "%s/%s/%s-%s.sql",
extwlist_custom_path, name, when, action);
return result;
}
char *
get_specific_custom_script_filename(const char *name,
const char *when,
const char *from_version,
const char *version)
{
char *result;
if (extwlist_custom_path == NULL)
return NULL;
result = (char *) palloc(MAXPGPATH);
if (from_version)
snprintf(result, MAXPGPATH, "%s/%s/%s--%s--%s.sql",
extwlist_custom_path, name, when, from_version, version);
else
snprintf(result, MAXPGPATH, "%s/%s/%s--%s.sql",
extwlist_custom_path, name, when, version);
return result;
}
/*
* At CREATE EXTENSION UPDATE time, we generally aren't provided with the
* current version of the extension to upgrade, go fetch it from the catalogs.
*/
char *
get_extension_current_version(const char *extname)
{
char *oldVersionName;
Relation extRel;
ScanKeyData key[1];
SysScanDesc extScan;
HeapTuple extTup;
Datum datum;
bool isnull;
/*
* Look up the extension --- it must already exist in pg_extension
*/
extRel = table_open(ExtensionRelationId, AccessShareLock);
ScanKeyInit(&key[0],
Anum_pg_extension_extname,
BTEqualStrategyNumber, F_NAMEEQ,
CStringGetDatum(extname));
extScan = systable_beginscan(extRel, ExtensionNameIndexId, true,
SnapshotSelf, 1, key);
extTup = systable_getnext(extScan);
if (!HeapTupleIsValid(extTup))
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_OBJECT),
errmsg("extension \"%s\" does not exist", extname)));
/*
* Determine the existing version we are updating from
*/
datum = heap_getattr(extTup, Anum_pg_extension_extversion,
RelationGetDescr(extRel), &isnull);
if (isnull)
elog(ERROR, "extversion is null");
oldVersionName = text_to_cstring(DatumGetTextPP(datum));
systable_endscan(extScan);
table_close(extRel, AccessShareLock);
return oldVersionName;
}
/*
* Read the statement's option list and set given parameters.
*/
void
fill_in_extension_properties(const char *extname,
List *options,
char **schema,
char **old_version,
char **new_version)
{
ListCell *lc;
DefElem *d_schema = NULL;
DefElem *d_new_version = NULL;
DefElem *d_old_version = NULL;
/*
* Read the statement option list, taking care not to issue any errors here
* ourselves if at all possible: let the core code handle them.
*/
foreach(lc, options)
{
DefElem *defel = (DefElem *) lfirst(lc);
if (strcmp(defel->defname, "schema") == 0)
{
d_schema = defel;
}
else if (strcmp(defel->defname, "new_version") == 0)
{
d_new_version = defel;
}
else if (strcmp(defel->defname, "old_version") == 0)
{
d_old_version = defel;
}
else
{
/* intentionally don't try and catch errors here */
}
}
if (d_schema && d_schema->arg)
*schema = strVal(d_schema->arg);
if (d_old_version && d_old_version->arg)
*old_version = strVal(d_old_version->arg);
if (d_new_version && d_new_version->arg)
*new_version = strVal(d_new_version->arg);
if (*new_version == NULL || *schema == NULL)
/* fetch the default_version from the extension's control file */
parse_default_version_in_control_file(extname, new_version, schema);
/* schema might be given neither in the statement nor the control file */
if (*schema == NULL)
{
/*
* Use the current default creation namespace, which is the first
* explicit entry in the search_path.
*/
Oid schemaOid;
List *search_path = fetch_search_path(false);
if (search_path == NIL) /* nothing valid in search_path? */
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_SCHEMA),
errmsg("no schema has been selected to create in")));
schemaOid = linitial_oid(search_path);
*schema = get_namespace_name(schemaOid);
if (*schema == NULL) /* recently-deleted namespace? */
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_SCHEMA),
errmsg("no schema has been selected to create in")));
list_free(search_path);
}
}
/*
* Read an SQL script file into a string, and convert to database encoding
*/
static char *
read_custom_script_file(const char *filename)
{
int src_encoding, dest_encoding = GetDatabaseEncoding();
bytea *content;
char *src_str;
char *dest_str;
int len;
FILE *fp;
struct stat fst;
size_t nbytes;
/* read_binary_file was made static in 9.5 so we'll reimplement the logic here */
if ((fp = AllocateFile(filename, PG_BINARY_R)) == NULL)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not open file \"%s\" for reading: %m",
filename)));
if (fstat(fileno(fp), &fst) < 0)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not stat file \"%s\" %m",
filename)));
content = (bytea *) palloc((Size) fst.st_size + VARHDRSZ);
nbytes = fread(VARDATA(content), 1, (size_t) fst.st_size, fp);
if (ferror(fp))
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not read file \"%s\": %m", filename)));
FreeFile(fp);
SET_VARSIZE(content, nbytes + VARHDRSZ);
/* use database encoding */
src_encoding = dest_encoding;
/* make sure that source string is valid in the expected encoding */
len = VARSIZE_ANY_EXHDR(content);
src_str = VARDATA_ANY(content);
pg_verify_mbstr_len(src_encoding, src_str, len, false);
/* convert the encoding to the database encoding */
dest_str = (char *) pg_do_encoding_conversion((unsigned char *) src_str,
len,
src_encoding,
dest_encoding);
/* if no conversion happened, we have to arrange for null termination */
if (dest_str == src_str)
{
dest_str = (char *) palloc(len + 1);
memcpy(dest_str, src_str, len);
dest_str[len] = '\0';
}
return dest_str;
}
/*
* Execute given SQL string.
*
* filename is used only to report errors.
*
* Note: it's tempting to just use SPI to execute the string, but that does
* not work very well. The really serious problem is that SPI will parse,
* analyze, and plan the whole string before executing any of it; of course
* this fails if there are any planable statements referring to objects
* created earlier in the script. A lesser annoyance is that SPI insists
* on printing the whole string as errcontext in case of any error, and that
* could be very long.
*/
static void
execute_sql_string(const char *sql, const char *filename)
{
List *raw_parsetree_list;
DestReceiver *dest;
ListCell *lc1;
MemoryContext temp_ctx = AllocSetContextCreate(CurrentMemoryContext,
"temp_script_context",
ALLOCSET_DEFAULT_SIZES);
MemoryContext prev_ctx = MemoryContextSwitchTo(temp_ctx);
/*
* Parse the SQL string into a list of raw parse trees.
*/
raw_parsetree_list = pg_parse_query(sql);
/* All output from SELECTs goes to the bit bucket */
dest = CreateDestReceiver(DestNone);
/*
* Do parse analysis, rule rewrite, planning, and execution for each raw
* parsetree. We must fully execute each query before beginning parse
* analysis on the next one, since there may be interdependencies.
*/
foreach(lc1, raw_parsetree_list)
{
#if PG_MAJOR_VERSION >= 1000
RawStmt *parsetree = lfirst_node(RawStmt, lc1);
#else
Node *parsetree = (Node *) lfirst(lc1);
#endif
List *stmt_list;
ListCell *lc2;
#if PG_MAJOR_VERSION >= 1500
stmt_list = pg_analyze_and_rewrite_fixedparams(parsetree,
sql,
NULL,
0,
NULL
);
#else
stmt_list = pg_analyze_and_rewrite(parsetree,
sql,
NULL,
0
#if PG_MAJOR_VERSION >= 1000
, NULL
#endif
);
#endif
stmt_list = pg_plan_queries(stmt_list,
#if PG_MAJOR_VERSION >= 1300
sql,
#endif
0,
NULL);
foreach(lc2, stmt_list)
{
#if PG_MAJOR_VERSION >= 1000
PlannedStmt *stmt = lfirst_node(PlannedStmt, lc2);
#else
Node *stmt = (Node *) lfirst(lc2);
#endif
if (IsA(stmt, TransactionStmt))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("transaction control statements are not allowed within an extension script")));
CommandCounterIncrement();
PushActiveSnapshot(GetTransactionSnapshot());
if (IsA(stmt, PlannedStmt) &&
((PlannedStmt *) stmt)->utilityStmt == NULL)
{
QueryDesc *qdesc;
qdesc = CreateQueryDesc((PlannedStmt *) stmt,
sql,
GetActiveSnapshot(), NULL,
dest, NULL,
#if PG_MAJOR_VERSION >= 1000
NULL,
#endif
0);
ExecutorStart(qdesc, 0);
ExecutorRun(qdesc, ForwardScanDirection, 0
#if PG_MAJOR_VERSION >= 1000 && PG_MAJOR_VERSION < 1800
, true
#endif
);
ExecutorFinish(qdesc);
ExecutorEnd(qdesc);
FreeQueryDesc(qdesc);
}
else
{
ProcessUtility(stmt,
sql,
#if PG_MAJOR_VERSION >= 1400
false, /* no need to copy */
#endif
#if PG_MAJOR_VERSION >= 903
PROCESS_UTILITY_QUERY,
#endif
NULL,
#if PG_MAJOR_VERSION >= 1000
NULL,
#endif
#if PG_MAJOR_VERSION < 903
false, /* not top level */
#endif
dest,
NULL);
}
PopActiveSnapshot();
}
}
/* Be sure to advance the command counter after the last script command */
CommandCounterIncrement();
MemoryContextSwitchTo(prev_ctx);
MemoryContextDelete(temp_ctx);
}
/*
* get_current_database_owner_name
*
* select rolname
* from pg_roles u join pg_database d on d.datdba = u.oid
* where datname = current_database();
*/
static char *
get_current_database_owner_name()
{
HeapTuple dbtuple;
Oid owner;
dbtuple = SearchSysCache1(DATABASEOID, MyDatabaseId);
if (HeapTupleIsValid(dbtuple))
{
owner = ((Form_pg_database) GETSTRUCT(dbtuple))->datdba;
ReleaseSysCache(dbtuple);
}
else
return NULL;
return GetUserNameFromId(owner
#if PG_MAJOR_VERSION >= 905
, false
#endif
);
}
/*
* Execute given script
*/
void
execute_custom_script(const char *filename, const char *schemaName)
{
int save_nestlevel;
StringInfoData pathbuf;
const char *qSchemaName = quote_identifier(schemaName);
elog(DEBUG1, "Executing custom script \"%s\"", filename);
/*
* Force client_min_messages and log_min_messages to be at least WARNING,
* so that we won't spam the user with useless NOTICE messages from common
* script actions like creating shell types.
*
* We use the equivalent of a function SET option to allow the setting to
* persist for exactly the duration of the script execution. guc.c also
* takes care of undoing the setting on error.
*/
save_nestlevel = NewGUCNestLevel();
if (client_min_messages < WARNING)
(void) set_config_option("client_min_messages", "warning",
PGC_USERSET, PGC_S_SESSION,
GUC_ACTION_SAVE, true
#if PG_MAJOR_VERSION >= 902
, 0
#endif
#if PG_MAJOR_VERSION >= 905
, false
#endif
);
if (log_min_messages < WARNING)
(void) set_config_option("log_min_messages", "warning",
PGC_SUSET, PGC_S_SESSION,
GUC_ACTION_SAVE, true
#if PG_MAJOR_VERSION >= 902
, 0
#endif
#if PG_MAJOR_VERSION >= 905
, false
#endif
);
/*
* Set up the search path to contain the target schema, then the schemas
* of any prerequisite extensions, and nothing else. In particular this
* makes the target schema be the default creation target namespace.
*
* Note: it might look tempting to use PushOverrideSearchPath for this,
* but we cannot do that. We have to actually set the search_path GUC in
* case the extension script examines or changes it. In any case, the
* GUC_ACTION_SAVE method is just as convenient.
*/
initStringInfo(&pathbuf);
appendStringInfoString(&pathbuf, quote_identifier(schemaName));
(void) set_config_option("search_path", pathbuf.data,
PGC_USERSET, PGC_S_SESSION,
GUC_ACTION_SAVE, true
#if PG_MAJOR_VERSION >= 902
, 0
#endif
#if PG_MAJOR_VERSION >= 905
, false
#endif
);
PG_TRY();
{
char *c_sql = read_custom_script_file(filename);
Datum t_sql;
/* We use various functions that want to operate on text datums */
t_sql = CStringGetTextDatum(c_sql);
/*
* Reduce any lines beginning with "\echo" to empty. This allows
* scripts to contain messages telling people not to run them via
* psql, which has been found to be necessary due to old habits.
*/
t_sql = DirectFunctionCall4Coll(textregexreplace,
C_COLLATION_OID,
t_sql,
CStringGetTextDatum("^\\\\echo.*$"),
CStringGetTextDatum(""),
CStringGetTextDatum("ng"));
/*
* substitute the target schema name for occurrences of @extschema@.
*/
t_sql = DirectFunctionCall3Coll(replace_text,
C_COLLATION_OID,
t_sql,
CStringGetTextDatum("@extschema@"),
CStringGetTextDatum(qSchemaName));
/*
* substitute the current user name for occurrences of @current_user@
*/
t_sql = DirectFunctionCall3Coll(replace_text,
C_COLLATION_OID,
t_sql,
CStringGetTextDatum("@current_user@"),
CStringGetTextDatum(
GetUserNameFromId(GetUserId()
#if PG_MAJOR_VERSION >= 905
, false
#endif
)));
/*
* substitute the database owner for occurrences of @database_owner@
*/
t_sql = DirectFunctionCall3Coll(replace_text,
C_COLLATION_OID,
t_sql,
CStringGetTextDatum("@database_owner@"),
CStringGetTextDatum(
get_current_database_owner_name()));
/* And now back to C string */
c_sql = text_to_cstring(DatumGetTextPP(t_sql));
execute_sql_string(c_sql, filename);
}
PG_CATCH();
{
PG_RE_THROW();
}
PG_END_TRY();
/*
* Restore the GUC variables we set above.
*/
AtEOXact_GUC(true, save_nestlevel);
}
|