PostgreSQL Source Code git master
Loading...
Searching...
No Matches
guc.c
Go to the documentation of this file.
1/*--------------------------------------------------------------------
2 * guc.c
3 *
4 * Support for grand unified configuration scheme, including SET
5 * command, configuration file, and command line options.
6 *
7 * This file contains the generic option processing infrastructure.
8 * guc_funcs.c contains SQL-level functionality, including SET/SHOW
9 * commands and various system-administration SQL functions.
10 * guc_tables.c contains the arrays that define all the built-in
11 * GUC variables. Code that implements variable-specific behavior
12 * is scattered around the system in check, assign, and show hooks.
13 *
14 * See src/backend/utils/misc/README for more information.
15 *
16 *
17 * Copyright (c) 2000-2026, PostgreSQL Global Development Group
18 * Written by Peter Eisentraut <peter_e@gmx.net>.
19 *
20 * IDENTIFICATION
21 * src/backend/utils/misc/guc.c
22 *
23 *--------------------------------------------------------------------
24 */
25#include "postgres.h"
26
27#include <limits.h>
28#include <math.h>
29#include <sys/stat.h>
30#include <unistd.h>
31
32#include "access/xact.h"
33#include "access/xlog.h"
35#include "catalog/pg_authid.h"
37#include "catalog/pg_type.h"
38#include "guc_internal.h"
39#include "libpq/pqformat.h"
40#include "libpq/protocol.h"
41#include "miscadmin.h"
42#include "parser/scansup.h"
43#include "port/pg_bitutils.h"
44#include "storage/fd.h"
45#include "storage/lwlock.h"
46#include "storage/shmem.h"
47#include "tcop/tcopprot.h"
48#include "utils/acl.h"
49#include "utils/builtins.h"
50#include "utils/conffiles.h"
51#include "utils/guc_tables.h"
52#include "utils/memutils.h"
53#include "utils/timestamp.h"
54
55
56#define CONFIG_FILENAME "postgresql.conf"
57#define HBA_FILENAME "pg_hba.conf"
58#define IDENT_FILENAME "pg_ident.conf"
59#define HOSTS_FILENAME "pg_hosts.conf"
60
61#ifdef EXEC_BACKEND
62#define CONFIG_EXEC_PARAMS "global/config_exec_params"
63#define CONFIG_EXEC_PARAMS_NEW "global/config_exec_params.new"
64#endif
65
66/*
67 * Precision with which REAL type guc values are to be printed for GUC
68 * serialization.
69 */
70#define REALTYPE_PRECISION 17
71
72/*
73 * Safe search path when executing code as the table owner, such as during
74 * maintenance operations.
75 */
76#define GUC_SAFE_SEARCH_PATH "pg_catalog, pg_temp"
77
79
81
82/* global variables for check hook support */
86
87
88/*
89 * Unit conversion tables.
90 *
91 * There are two tables, one for memory units, and another for time units.
92 * For each supported conversion from one unit to another, we have an entry
93 * in the table.
94 *
95 * To keep things simple, and to avoid possible roundoff error,
96 * conversions are never chained. There needs to be a direct conversion
97 * between all units (of the same type).
98 *
99 * The conversions for each base unit must be kept in order from greatest to
100 * smallest human-friendly unit; convert_xxx_from_base_unit() rely on that.
101 * (The order of the base-unit groups does not matter.)
102 */
103#define MAX_UNIT_LEN 3 /* length of longest recognized unit string */
104
105typedef struct
106{
107 char unit[MAX_UNIT_LEN + 1]; /* unit, as a string, like "kB" or
108 * "min" */
109 int base_unit; /* GUC_UNIT_XXX */
110 double multiplier; /* Factor for converting unit -> base_unit */
112
113/* Ensure that the constants in the tables don't overflow or underflow */
114#if BLCKSZ < 1024 || BLCKSZ > (1024*1024)
115#error BLCKSZ must be between 1KB and 1MB
116#endif
117#if XLOG_BLCKSZ < 1024 || XLOG_BLCKSZ > (1024*1024)
118#error XLOG_BLCKSZ must be between 1KB and 1MB
119#endif
120
121static const char *const memory_units_hint = gettext_noop("Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\".");
122
124{
125 {"TB", GUC_UNIT_BYTE, 1024.0 * 1024.0 * 1024.0 * 1024.0},
126 {"GB", GUC_UNIT_BYTE, 1024.0 * 1024.0 * 1024.0},
127 {"MB", GUC_UNIT_BYTE, 1024.0 * 1024.0},
128 {"kB", GUC_UNIT_BYTE, 1024.0},
129 {"B", GUC_UNIT_BYTE, 1.0},
130
131 {"TB", GUC_UNIT_KB, 1024.0 * 1024.0 * 1024.0},
132 {"GB", GUC_UNIT_KB, 1024.0 * 1024.0},
133 {"MB", GUC_UNIT_KB, 1024.0},
134 {"kB", GUC_UNIT_KB, 1.0},
135 {"B", GUC_UNIT_KB, 1.0 / 1024.0},
136
137 {"TB", GUC_UNIT_MB, 1024.0 * 1024.0},
138 {"GB", GUC_UNIT_MB, 1024.0},
139 {"MB", GUC_UNIT_MB, 1.0},
140 {"kB", GUC_UNIT_MB, 1.0 / 1024.0},
141 {"B", GUC_UNIT_MB, 1.0 / (1024.0 * 1024.0)},
142
143 {"TB", GUC_UNIT_BLOCKS, (1024.0 * 1024.0 * 1024.0) / (BLCKSZ / 1024)},
144 {"GB", GUC_UNIT_BLOCKS, (1024.0 * 1024.0) / (BLCKSZ / 1024)},
145 {"MB", GUC_UNIT_BLOCKS, 1024.0 / (BLCKSZ / 1024)},
146 {"kB", GUC_UNIT_BLOCKS, 1.0 / (BLCKSZ / 1024)},
147 {"B", GUC_UNIT_BLOCKS, 1.0 / BLCKSZ},
148
149 {"TB", GUC_UNIT_XBLOCKS, (1024.0 * 1024.0 * 1024.0) / (XLOG_BLCKSZ / 1024)},
150 {"GB", GUC_UNIT_XBLOCKS, (1024.0 * 1024.0) / (XLOG_BLCKSZ / 1024)},
151 {"MB", GUC_UNIT_XBLOCKS, 1024.0 / (XLOG_BLCKSZ / 1024)},
152 {"kB", GUC_UNIT_XBLOCKS, 1.0 / (XLOG_BLCKSZ / 1024)},
153 {"B", GUC_UNIT_XBLOCKS, 1.0 / XLOG_BLCKSZ},
154
155 {""} /* end of table marker */
156};
157
158static const char *const time_units_hint = gettext_noop("Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\".");
159
161{
162 {"d", GUC_UNIT_MS, 1000 * 60 * 60 * 24},
163 {"h", GUC_UNIT_MS, 1000 * 60 * 60},
164 {"min", GUC_UNIT_MS, 1000 * 60},
165 {"s", GUC_UNIT_MS, 1000},
166 {"ms", GUC_UNIT_MS, 1},
167 {"us", GUC_UNIT_MS, 1.0 / 1000},
168
169 {"d", GUC_UNIT_S, 60 * 60 * 24},
170 {"h", GUC_UNIT_S, 60 * 60},
171 {"min", GUC_UNIT_S, 60},
172 {"s", GUC_UNIT_S, 1},
173 {"ms", GUC_UNIT_S, 1.0 / 1000},
174 {"us", GUC_UNIT_S, 1.0 / (1000 * 1000)},
175
176 {"d", GUC_UNIT_MIN, 60 * 24},
177 {"h", GUC_UNIT_MIN, 60},
178 {"min", GUC_UNIT_MIN, 1},
179 {"s", GUC_UNIT_MIN, 1.0 / 60},
180 {"ms", GUC_UNIT_MIN, 1.0 / (1000 * 60)},
181 {"us", GUC_UNIT_MIN, 1.0 / (1000 * 1000 * 60)},
182
183 {""} /* end of table marker */
184};
185
186/*
187 * To allow continued support of obsolete names for GUC variables, we apply
188 * the following mappings to any unrecognized name. Note that an old name
189 * should be mapped to a new one only if the new variable has very similar
190 * semantics to the old.
191 */
192static const char *const map_old_guc_names[] = {
193 "sort_mem", "work_mem",
194 "vacuum_mem", "maintenance_work_mem",
195 "ssl_ecdh_curve", "ssl_groups",
196 NULL
197};
198
199
200/* Memory context holding all GUC-related data */
202
203/*
204 * We use a dynahash table to look up GUCs by name, or to iterate through
205 * all the GUCs. The gucname field is redundant with gucvar->name, but
206 * dynahash makes it too painful to not store the hash key separately.
207 */
208typedef struct
209{
210 const char *gucname; /* hash key */
211 struct config_generic *gucvar; /* -> GUC's defining structure */
213
214static HTAB *guc_hashtab; /* entries are GUCHashEntrys */
215
216/*
217 * In addition to the hash table, variables having certain properties are
218 * linked into these lists, so that we can find them without scanning the
219 * whole hash table. In most applications, only a small fraction of the
220 * GUCs appear in these lists at any given time. The usage of the stack
221 * and report lists is stylized enough that they can be slists, but the
222 * nondef list has to be a dlist to avoid O(N) deletes in common cases.
223 */
224static dlist_head guc_nondef_list; /* list of variables that have source
225 * different from PGC_S_DEFAULT */
226static slist_head guc_stack_list; /* list of variables that have non-NULL
227 * stack */
228static slist_head guc_report_list; /* list of variables that have the
229 * GUC_NEEDS_REPORT bit set in status */
230
231static bool reporting_enabled; /* true to enable GUC_REPORT */
232
233static int GUCNestLevel = 0; /* 1 when in main transaction */
234
235
236static int guc_var_compare(const void *a, const void *b);
237static uint32 guc_name_hash(const void *key, Size keysize);
238static int guc_name_match(const void *key1, const void *key2, Size keysize);
240static void InitializeOneGUCOption(struct config_generic *gconf);
241static void RemoveGUCFromLists(struct config_generic *gconf);
243static void pg_timezone_abbrev_initialize(void);
244static void push_old_value(struct config_generic *gconf, GucAction action);
245static void ReportGUCOption(struct config_generic *record);
246static void set_config_sourcefile(const char *name, char *sourcefile,
247 int sourceline);
249 struct config_generic *pHolder,
251 const char *curvalue,
253 Oid cursrole);
254static void free_placeholder(struct config_generic *pHolder);
255static bool validate_option_array_item(const char *name, const char *value,
257static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head);
259 const char *name, const char *value);
260static bool valid_custom_variable_name(const char *name);
261static bool assignable_custom_variable_name(const char *name, bool skip_errors,
262 int elevel);
263static void do_serialize(char **destptr, Size *maxbytes,
264 const char *fmt,...) pg_attribute_printf(3, 4);
266 void **extra, GucSource source, int elevel);
268 void **extra, GucSource source, int elevel);
270 void **extra, GucSource source, int elevel);
272 void **extra, GucSource source, int elevel);
274 void **extra, GucSource source, int elevel);
275
276
277/*
278 * This function handles both actual config file (re)loads and execution of
279 * show_all_file_settings() (i.e., the pg_file_settings view). In the latter
280 * case we don't apply any of the settings, but we make all the usual validity
281 * checks, and we return the ConfigVariable list so that it can be printed out
282 * by show_all_file_settings().
283 */
286{
287 bool error = false;
288 bool applying = false;
289 const char *ConfFileWithError;
290 ConfigVariable *head,
291 *tail;
294
295 /* Parse the main config file into a list of option names and values */
297 head = tail = NULL;
298
300 NULL, 0, CONF_FILE_START_DEPTH, elevel,
301 &head, &tail))
302 {
303 /* Syntax error(s) detected in the file, so bail out */
304 error = true;
305 goto bail_out;
306 }
307
308 /*
309 * Parse the PG_AUTOCONF_FILENAME file, if present, after the main file to
310 * replace any parameters set by ALTER SYSTEM command. Because this file
311 * is in the data directory, we can't read it until the DataDir has been
312 * set.
313 */
314 if (DataDir)
315 {
317 NULL, 0, CONF_FILE_START_DEPTH, elevel,
318 &head, &tail))
319 {
320 /* Syntax error(s) detected in the file, so bail out */
321 error = true;
323 goto bail_out;
324 }
325 }
326 else
327 {
328 /*
329 * If DataDir is not set, the PG_AUTOCONF_FILENAME file cannot be
330 * read. In this case, we don't want to accept any settings but
331 * data_directory from postgresql.conf, because they might be
332 * overwritten with settings in the PG_AUTOCONF_FILENAME file which
333 * will be read later. OTOH, since data_directory isn't allowed in the
334 * PG_AUTOCONF_FILENAME file, it will never be overwritten later.
335 */
337
338 /*
339 * Prune all items except the last "data_directory" from the list.
340 */
341 for (ConfigVariable *item = head; item; item = item->next)
342 {
343 if (!item->ignore &&
344 strcmp(item->name, "data_directory") == 0)
345 newlist = item;
346 }
347
348 if (newlist)
349 newlist->next = NULL;
350 head = tail = newlist;
351
352 /*
353 * Quick exit if data_directory is not present in file.
354 *
355 * We need not do any further processing, in particular we don't set
356 * PgReloadTime; that will be set soon by subsequent full loading of
357 * the config file.
358 */
359 if (head == NULL)
360 goto bail_out;
361 }
362
363 /*
364 * Mark all extant GUC variables as not present in the config file. We
365 * need this so that we can tell below which ones have been removed from
366 * the file since we last processed it.
367 */
369 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
370 {
371 struct config_generic *gconf = hentry->gucvar;
372
374 }
375
376 /*
377 * Check if all the supplied option names are valid, as an additional
378 * quasi-syntactic check on the validity of the config file. It is
379 * important that the postmaster and all backends agree on the results of
380 * this phase, else we will have strange inconsistencies about which
381 * processes accept a config file update and which don't. Hence, unknown
382 * custom variable names have to be accepted without complaint. For the
383 * same reason, we don't attempt to validate the options' values here.
384 *
385 * In addition, the GUC_IS_IN_FILE flag is set on each existing GUC
386 * variable mentioned in the file; and we detect duplicate entries in the
387 * file and mark the earlier occurrences as ignorable.
388 */
389 for (ConfigVariable *item = head; item; item = item->next)
390 {
391 struct config_generic *record;
392
393 /* Ignore anything already marked as ignorable */
394 if (item->ignore)
395 continue;
396
397 /*
398 * Try to find the variable; but do not create a custom placeholder if
399 * it's not there already.
400 */
401 record = find_option(item->name, false, true, elevel);
402
403 if (record)
404 {
405 /* If it's already marked, then this is a duplicate entry */
406 if (record->status & GUC_IS_IN_FILE)
407 {
408 /*
409 * Mark the earlier occurrence(s) as dead/ignorable. We could
410 * avoid the O(N^2) behavior here with some additional state,
411 * but it seems unlikely to be worth the trouble.
412 */
413 for (ConfigVariable *pitem = head; pitem != item; pitem = pitem->next)
414 {
415 if (!pitem->ignore &&
416 strcmp(pitem->name, item->name) == 0)
417 pitem->ignore = true;
418 }
419 }
420 /* Now mark it as present in file */
421 record->status |= GUC_IS_IN_FILE;
422 }
423 else if (!valid_custom_variable_name(item->name))
424 {
425 /* Invalid non-custom variable, so complain */
426 ereport(elevel,
428 errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %d",
429 item->name,
430 item->filename, item->sourceline)));
431 item->errmsg = pstrdup("unrecognized configuration parameter");
432 error = true;
433 ConfFileWithError = item->filename;
434 }
435 }
436
437 /*
438 * If we've detected any errors so far, we don't want to risk applying any
439 * changes.
440 */
441 if (error)
442 goto bail_out;
443
444 /* Otherwise, set flag that we're beginning to apply changes */
445 applying = true;
446
447 /*
448 * Check for variables having been removed from the config file, and
449 * revert their reset values (and perhaps also effective values) to the
450 * boot-time defaults. If such a variable can't be changed after startup,
451 * report that and continue.
452 */
454 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
455 {
456 struct config_generic *gconf = hentry->gucvar;
457
458 if (gconf->reset_source != PGC_S_FILE ||
459 (gconf->status & GUC_IS_IN_FILE))
460 continue;
461 if (gconf->context < PGC_SIGHUP)
462 {
463 /* The removal can't be effective without a restart */
465 ereport(elevel,
467 errmsg("parameter \"%s\" cannot be changed without restarting the server",
468 gconf->name)));
469 record_config_file_error(psprintf("parameter \"%s\" cannot be changed without restarting the server",
470 gconf->name),
471 NULL, 0,
472 &head, &tail);
473 error = true;
474 continue;
475 }
476
477 /* No more to do if we're just doing show_all_file_settings() */
478 if (!applySettings)
479 continue;
480
481 /*
482 * Reset any "file" sources to "default", else set_config_option will
483 * not override those settings.
484 */
485 if (gconf->reset_source == PGC_S_FILE)
486 gconf->reset_source = PGC_S_DEFAULT;
487 if (gconf->source == PGC_S_FILE)
489 for (GucStack *stack = gconf->stack; stack; stack = stack->prev)
490 {
491 if (stack->source == PGC_S_FILE)
493 }
494
495 /* Now we can re-apply the wired-in default (i.e., the boot_val) */
496 if (set_config_option(gconf->name, NULL,
498 GUC_ACTION_SET, true, 0, false) > 0)
499 {
500 /* Log the change if appropriate */
501 if (context == PGC_SIGHUP)
502 ereport(elevel,
503 (errmsg("parameter \"%s\" removed from configuration file, reset to default",
504 gconf->name)));
505 }
506 }
507
508 /*
509 * Restore any variables determined by environment variables or
510 * dynamically-computed defaults. This is a no-op except in the case
511 * where one of these had been in the config file and is now removed.
512 *
513 * In particular, we *must not* do this during the postmaster's initial
514 * loading of the file, since the timezone functions in particular should
515 * be run only after initialization is complete.
516 *
517 * XXX this is an unmaintainable crock, because we have to know how to set
518 * (or at least what to call to set) every non-PGC_INTERNAL variable that
519 * could potentially have PGC_S_DYNAMIC_DEFAULT or PGC_S_ENV_VAR source.
520 */
522 {
525 /* this selects SQL_ASCII in processes not connected to a database */
526 SetConfigOption("client_encoding", GetDatabaseEncodingName(),
528 }
529
530 /*
531 * Now apply the values from the config file.
532 */
533 for (ConfigVariable *item = head; item; item = item->next)
534 {
535 char *pre_value = NULL;
536 int scres;
537
538 /* Ignore anything marked as ignorable */
539 if (item->ignore)
540 continue;
541
542 /* In SIGHUP cases in the postmaster, we want to report changes */
544 {
545 const char *preval = GetConfigOption(item->name, true, false);
546
547 /* If option doesn't exist yet or is NULL, treat as empty string */
548 if (!preval)
549 preval = "";
550 /* must dup, else might have dangling pointer below */
552 }
553
554 scres = set_config_option(item->name, item->value,
556 GUC_ACTION_SET, applySettings, 0, false);
557 if (scres > 0)
558 {
559 /* variable was updated, so log the change if appropriate */
560 if (pre_value)
561 {
562 const char *post_value = GetConfigOption(item->name, true, false);
563
564 if (!post_value)
565 post_value = "";
566 if (strcmp(pre_value, post_value) != 0)
567 ereport(elevel,
568 (errmsg("parameter \"%s\" changed to \"%s\"",
569 item->name, item->value)));
570 }
571 item->applied = true;
572 }
573 else if (scres == 0)
574 {
575 error = true;
576 item->errmsg = pstrdup("setting could not be applied");
577 ConfFileWithError = item->filename;
578 }
579 else
580 {
581 /* no error, but variable's active value was not changed */
582 item->applied = true;
583 }
584
585 /*
586 * We should update source location unless there was an error, since
587 * even if the active value didn't change, the reset value might have.
588 * (In the postmaster, there won't be a difference, but it does matter
589 * in backends.)
590 */
591 if (scres != 0 && applySettings)
592 set_config_sourcefile(item->name, item->filename,
593 item->sourceline);
594
595 if (pre_value)
597 }
598
599 /* Remember when we last successfully loaded the config file. */
600 if (applySettings)
602
604 if (error && applySettings)
605 {
606 /* During postmaster startup, any error is fatal */
607 if (context == PGC_POSTMASTER)
610 errmsg("configuration file \"%s\" contains errors",
612 else if (applying)
613 ereport(elevel,
615 errmsg("configuration file \"%s\" contains errors; unaffected changes were applied",
617 else
618 ereport(elevel,
620 errmsg("configuration file \"%s\" contains errors; no changes were applied",
622 }
623
624 /* Successful or otherwise, return the collected data list */
625 return head;
626}
627
628
629/*
630 * Some infrastructure for GUC-related memory allocation
631 *
632 * These functions are generally modeled on libc's malloc/realloc/etc,
633 * but any OOM issue is reported at the specified elevel.
634 * (Thus, control returns only if that's less than ERROR.)
635 */
636void *
637guc_malloc(int elevel, size_t size)
638{
639 void *data;
640
643 if (unlikely(data == NULL))
644 ereport(elevel,
646 errmsg("out of memory")));
647 return data;
648}
649
650void *
651guc_realloc(int elevel, void *old, size_t size)
652{
653 void *data;
654
655 if (old != NULL)
656 {
657 /* This is to help catch old code that malloc's GUC data. */
659 data = repalloc_extended(old, size,
661 }
662 else
663 {
664 /* Like realloc(3), but not like repalloc(), we allow old == NULL. */
667 }
668 if (unlikely(data == NULL))
669 ereport(elevel,
671 errmsg("out of memory")));
672 return data;
673}
674
675char *
676guc_strdup(int elevel, const char *src)
677{
678 char *data;
679 size_t len = strlen(src) + 1;
680
681 data = guc_malloc(elevel, len);
682 if (likely(data != NULL))
683 memcpy(data, src, len);
684 return data;
685}
686
687void
688guc_free(void *ptr)
689{
690 /*
691 * Historically, GUC-related code has relied heavily on the ability to do
692 * free(NULL), so we allow that here even though pfree() doesn't.
693 */
694 if (ptr != NULL)
695 {
696 /* This is to help catch old code that malloc's GUC data. */
698 pfree(ptr);
699 }
700}
701
702
703/*
704 * Detect whether strval is referenced anywhere in a GUC string item
705 */
706static bool
708{
709 if (strval == *(conf->_string.variable) ||
710 strval == conf->_string.reset_val ||
711 strval == conf->_string.boot_val)
712 return true;
713 for (GucStack *stack = conf->stack; stack; stack = stack->prev)
714 {
715 if (strval == stack->prior.val.stringval ||
716 strval == stack->masked.val.stringval)
717 return true;
718 }
719 return false;
720}
721
722/*
723 * Support for assigning to a field of a string GUC item. Free the prior
724 * value if it's not referenced anywhere else in the item (including stacked
725 * states).
726 */
727static void
728set_string_field(struct config_generic *conf, char **field, char *newval)
729{
730 char *oldval = *field;
731
732 /* Do the assignment */
733 *field = newval;
734
735 /* Free old value if it's not NULL and isn't referenced anymore */
738}
739
740/*
741 * Detect whether an "extra" struct is referenced anywhere in a GUC item
742 */
743static bool
745{
746 if (extra == gconf->extra)
747 return true;
748 if (extra == gconf->reset_extra)
749 return true;
750 for (GucStack *stack = gconf->stack; stack; stack = stack->prev)
751 {
752 if (extra == stack->prior.extra ||
754 return true;
755 }
756
757 return false;
758}
759
760/*
761 * Support for assigning to an "extra" field of a GUC item. Free the prior
762 * value if it's not referenced anywhere else in the item (including stacked
763 * states).
764 */
765static void
766set_extra_field(struct config_generic *gconf, void **field, void *newval)
767{
768 void *oldval = *field;
769
770 /* Do the assignment */
771 *field = newval;
772
773 /* Free old value if it's not NULL and isn't referenced anymore */
776}
777
778/*
779 * Support for copying a variable's active value into a stack entry.
780 * The "extra" field associated with the active value is copied, too.
781 *
782 * NB: be sure stringval and extra fields of a new stack entry are
783 * initialized to NULL before this is used, else we'll try to guc_free() them.
784 */
785static void
787{
788 switch (gconf->vartype)
789 {
790 case PGC_BOOL:
791 val->val.boolval = *gconf->_bool.variable;
792 break;
793 case PGC_INT:
794 val->val.intval = *gconf->_int.variable;
795 break;
796 case PGC_REAL:
797 val->val.realval = *gconf->_real.variable;
798 break;
799 case PGC_STRING:
800 set_string_field(gconf, &(val->val.stringval), *gconf->_string.variable);
801 break;
802 case PGC_ENUM:
803 val->val.enumval = *gconf->_enum.variable;
804 break;
805 }
806 set_extra_field(gconf, &(val->extra), gconf->extra);
807}
808
809/*
810 * Support for discarding a no-longer-needed value in a stack entry.
811 * The "extra" field associated with the stack entry is cleared, too.
812 */
813static void
815{
816 switch (gconf->vartype)
817 {
818 case PGC_BOOL:
819 case PGC_INT:
820 case PGC_REAL:
821 case PGC_ENUM:
822 /* no need to do anything */
823 break;
824 case PGC_STRING:
826 &(val->val.stringval),
827 NULL);
828 break;
829 }
830 set_extra_field(gconf, &(val->extra), NULL);
831}
832
833
834/*
835 * Fetch a palloc'd, sorted array of GUC struct pointers
836 *
837 * The array length is returned into *num_vars.
838 */
839struct config_generic **
840get_guc_variables(int *num_vars)
841{
842 struct config_generic **result;
845 int i;
846
848 result = palloc_array(struct config_generic *, *num_vars);
849
850 /* Extract pointers from the hash table */
851 i = 0;
853 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
854 result[i++] = hentry->gucvar;
855 Assert(i == *num_vars);
856
857 /* Sort by name */
858 qsort(result, *num_vars,
859 sizeof(struct config_generic *), guc_var_compare);
860
861 return result;
862}
863
864
865/*
866 * Build the GUC hash table. This is split out so that help_config.c can
867 * extract all the variables without running all of InitializeGUCOptions.
868 * It's not meant for use anyplace else.
869 */
870void
872{
873 int size_vars;
874 int num_vars = 0;
877 bool found;
878
879 /*
880 * Create the memory context that will hold all GUC-related data.
881 */
884 "GUCMemoryContext",
886
887 /*
888 * Count all the built-in variables.
889 */
890 for (int i = 0; ConfigureNames[i].name; i++)
891 num_vars++;
892
893 /*
894 * Create hash table with 20% slack
895 */
896 size_vars = num_vars + num_vars / 4;
897
898 hash_ctl.keysize = sizeof(char *);
899 hash_ctl.entrysize = sizeof(GUCHashEntry);
900 hash_ctl.hash = guc_name_hash;
901 hash_ctl.match = guc_name_match;
903 guc_hashtab = hash_create("GUC hash table",
904 size_vars,
905 &hash_ctl,
907
908 for (int i = 0; ConfigureNames[i].name; i++)
909 {
910 struct config_generic *gucvar = &ConfigureNames[i];
911
913 &gucvar->name,
915 &found);
916 Assert(!found);
917 hentry->gucvar = gucvar;
918 }
919
921}
922
923/*
924 * Add a new GUC variable to the hash of known variables. The
925 * hash is expanded if needed.
926 */
927static bool
928add_guc_variable(struct config_generic *var, int elevel)
929{
931 bool found;
932
934 &var->name,
936 &found);
937 if (unlikely(hentry == NULL))
938 {
939 ereport(elevel,
941 errmsg("out of memory")));
942 return false; /* out of memory */
943 }
944 Assert(!found);
945 hentry->gucvar = var;
946 return true;
947}
948
949/*
950 * Decide whether a proposed custom variable name is allowed.
951 *
952 * It must be two or more identifiers separated by dots, where the rules
953 * for what is an identifier agree with scan.l. (If you change this rule,
954 * adjust the errdetail in assignable_custom_variable_name().)
955 */
956static bool
958{
959 bool saw_sep = false;
960 bool name_start = true;
961
962 for (const char *p = name; *p; p++)
963 {
964 if (*p == GUC_QUALIFIER_SEPARATOR)
965 {
966 if (name_start)
967 return false; /* empty name component */
968 saw_sep = true;
969 name_start = true;
970 }
971 else if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
972 "abcdefghijklmnopqrstuvwxyz_", *p) != NULL ||
973 IS_HIGHBIT_SET(*p))
974 {
975 /* okay as first or non-first character */
976 name_start = false;
977 }
978 else if (!name_start && strchr("0123456789$", *p) != NULL)
979 /* okay as non-first character */ ;
980 else
981 return false;
982 }
983 if (name_start)
984 return false; /* empty name component */
985 /* OK if we found at least one separator */
986 return saw_sep;
987}
988
989/*
990 * Decide whether an unrecognized variable name is allowed to be SET.
991 *
992 * It must pass the syntactic rules of valid_custom_variable_name(),
993 * and it must not be in any namespace already reserved by an extension.
994 * (We make this separate from valid_custom_variable_name() because we don't
995 * apply the reserved-namespace test when reading configuration files.)
996 *
997 * If valid, return true. Otherwise, return false if skip_errors is true,
998 * else throw a suitable error at the specified elevel (and return false
999 * if that's less than ERROR).
1000 */
1001static bool
1003{
1004 /* If there's no separator, it can't be a custom variable */
1005 const char *sep = strchr(name, GUC_QUALIFIER_SEPARATOR);
1006
1007 if (sep != NULL)
1008 {
1009 size_t classLen = sep - name;
1010 ListCell *lc;
1011
1012 /* The name must be syntactically acceptable ... */
1014 {
1015 if (!skip_errors)
1016 ereport(elevel,
1018 errmsg("invalid configuration parameter name \"%s\"",
1019 name),
1020 errdetail("Custom parameter names must be two or more simple identifiers separated by dots.")));
1021 return false;
1022 }
1023 /* ... and it must not match any previously-reserved prefix */
1024 foreach(lc, reserved_class_prefix)
1025 {
1026 const char *rcprefix = lfirst(lc);
1027
1028 if (strlen(rcprefix) == classLen &&
1029 strncmp(name, rcprefix, classLen) == 0)
1030 {
1031 if (!skip_errors)
1032 ereport(elevel,
1034 errmsg("invalid configuration parameter name \"%s\"",
1035 name),
1036 errdetail("\"%s\" is a reserved prefix.",
1037 rcprefix)));
1038 return false;
1039 }
1040 }
1041 /* OK to create it */
1042 return true;
1043 }
1044
1045 /* Unrecognized single-part name */
1046 if (!skip_errors)
1047 ereport(elevel,
1049 errmsg("unrecognized configuration parameter \"%s\"",
1050 name)));
1051 return false;
1052}
1053
1054/*
1055 * Create and add a placeholder variable for a custom variable name.
1056 */
1057static struct config_generic *
1058add_placeholder_variable(const char *name, int elevel)
1059{
1060 size_t sz = sizeof(struct config_generic) + sizeof(char *);
1061 struct config_generic *var;
1062
1063 var = (struct config_generic *) guc_malloc(elevel, sz);
1064 if (var == NULL)
1065 return NULL;
1066 memset(var, 0, sz);
1067
1068 var->name = guc_strdup(elevel, name);
1069 if (var->name == NULL)
1070 {
1071 guc_free(var);
1072 return NULL;
1073 }
1074
1075 var->context = PGC_USERSET;
1076 var->group = CUSTOM_OPTIONS;
1077 var->short_desc = "GUC placeholder variable";
1079 var->vartype = PGC_STRING;
1080
1081 /*
1082 * The char* is allocated at the end of the struct since we have no
1083 * 'static' place to point to. Note that the current value, as well as
1084 * the boot and reset values, start out NULL.
1085 */
1086 var->_string.variable = (char **) (var + 1);
1087
1088 if (!add_guc_variable(var, elevel))
1089 {
1090 guc_free(unconstify(char *, var->name));
1091 guc_free(var);
1092 return NULL;
1093 }
1094
1095 return var;
1096}
1097
1098/*
1099 * Look up option "name". If it exists, return a pointer to its record.
1100 * Otherwise, if create_placeholders is true and name is a valid-looking
1101 * custom variable name, we'll create and return a placeholder record.
1102 * Otherwise, if skip_errors is true, then we silently return NULL for
1103 * an unrecognized or invalid name. Otherwise, the error is reported at
1104 * error level elevel (and we return NULL if that's less than ERROR).
1105 *
1106 * Note: internal errors, primarily out-of-memory, draw an elevel-level
1107 * report and NULL return regardless of skip_errors. Hence, callers must
1108 * handle a NULL return whenever elevel < ERROR, but they should not need
1109 * to emit any additional error message. (In practice, internal errors
1110 * can only happen when create_placeholders is true, so callers passing
1111 * false need not think terribly hard about this.)
1112 */
1113struct config_generic *
1115 int elevel)
1116{
1118
1119 Assert(name);
1120
1121 /* Look it up using the hash table. */
1123 &name,
1124 HASH_FIND,
1125 NULL);
1126 if (hentry)
1127 return hentry->gucvar;
1128
1129 /*
1130 * See if the name is an obsolete name for a variable. We assume that the
1131 * set of supported old names is short enough that a brute-force search is
1132 * the best way.
1133 */
1134 for (int i = 0; map_old_guc_names[i] != NULL; i += 2)
1135 {
1137 return find_option(map_old_guc_names[i + 1], false,
1138 skip_errors, elevel);
1139 }
1140
1142 {
1143 /*
1144 * Check if the name is valid, and if so, add a placeholder.
1145 */
1147 return add_placeholder_variable(name, elevel);
1148 else
1149 return NULL; /* error message, if any, already emitted */
1150 }
1151
1152 /* Unknown name and we're not supposed to make a placeholder */
1153 if (!skip_errors)
1154 ereport(elevel,
1156 errmsg("unrecognized configuration parameter \"%s\"",
1157 name)));
1158 return NULL;
1159}
1160
1161
1162/*
1163 * comparator for qsorting an array of GUC pointers
1164 */
1165static int
1166guc_var_compare(const void *a, const void *b)
1167{
1168 const struct config_generic *ca = *(const struct config_generic *const *) a;
1169 const struct config_generic *cb = *(const struct config_generic *const *) b;
1170
1171 return guc_name_compare(ca->name, cb->name);
1172}
1173
1174/*
1175 * the bare comparison function for GUC names
1176 */
1177int
1178guc_name_compare(const char *namea, const char *nameb)
1179{
1180 /*
1181 * The temptation to use strcasecmp() here must be resisted, because the
1182 * hash mapping has to remain stable across setlocale() calls. So, build
1183 * our own with a simple ASCII-only downcasing.
1184 */
1185 while (*namea && *nameb)
1186 {
1187 char cha = *namea++;
1188 char chb = *nameb++;
1189
1190 if (cha >= 'A' && cha <= 'Z')
1191 cha += 'a' - 'A';
1192 if (chb >= 'A' && chb <= 'Z')
1193 chb += 'a' - 'A';
1194 if (cha != chb)
1195 return cha - chb;
1196 }
1197 if (*namea)
1198 return 1; /* a is longer */
1199 if (*nameb)
1200 return -1; /* b is longer */
1201 return 0;
1202}
1203
1204/*
1205 * Hash function that's compatible with guc_name_compare
1206 */
1207static uint32
1208guc_name_hash(const void *key, Size keysize)
1209{
1210 uint32 result = 0;
1211 const char *name = *(const char *const *) key;
1212
1213 while (*name)
1214 {
1215 char ch = *name++;
1216
1217 /* Case-fold in the same way as guc_name_compare */
1218 if (ch >= 'A' && ch <= 'Z')
1219 ch += 'a' - 'A';
1220
1221 /* Merge into hash ... not very bright, but it needn't be */
1222 result = pg_rotate_left32(result, 5);
1223 result ^= (uint32) ch;
1224 }
1225 return result;
1226}
1227
1228/*
1229 * Dynahash match function to use in guc_hashtab
1230 */
1231static int
1232guc_name_match(const void *key1, const void *key2, Size keysize)
1233{
1234 const char *name1 = *(const char *const *) key1;
1235 const char *name2 = *(const char *const *) key2;
1236
1237 return guc_name_compare(name1, name2);
1238}
1239
1240
1241/*
1242 * Convert a GUC name to the form that should be used in pg_parameter_acl.
1243 *
1244 * We need to canonicalize entries since, for example, case should not be
1245 * significant. In addition, we apply the map_old_guc_names[] mapping so that
1246 * any obsolete names will be converted when stored in a new PG version.
1247 * Note however that this function does not verify legality of the name.
1248 *
1249 * The result is a palloc'd string.
1250 */
1251char *
1253{
1254 char *result;
1255
1256 /* Apply old-GUC-name mapping. */
1257 for (int i = 0; map_old_guc_names[i] != NULL; i += 2)
1258 {
1260 {
1261 name = map_old_guc_names[i + 1];
1262 break;
1263 }
1264 }
1265
1266 /* Apply case-folding that matches guc_name_compare(). */
1267 result = pstrdup(name);
1268 for (char *ptr = result; *ptr != '\0'; ptr++)
1269 {
1270 char ch = *ptr;
1271
1272 if (ch >= 'A' && ch <= 'Z')
1273 {
1274 ch += 'a' - 'A';
1275 *ptr = ch;
1276 }
1277 }
1278
1279 return result;
1280}
1281
1282/*
1283 * Check whether we should allow creation of a pg_parameter_acl entry
1284 * for the given name. (This can be applied either before or after
1285 * canonicalizing it.) Throws error if not.
1286 */
1287void
1289{
1290 /* OK if the GUC exists. */
1291 if (find_option(name, false, true, DEBUG5) != NULL)
1292 return;
1293 /* Otherwise, it'd better be a valid custom GUC name. */
1295}
1296
1297/*
1298 * Routine in charge of checking various states of a GUC.
1299 *
1300 * This performs two sanity checks. First, it checks that the initial
1301 * value of a GUC is the same when declared and when loaded to prevent
1302 * anybody looking at the C declarations of these GUCs from being fooled by
1303 * mismatched values. Second, it checks for incorrect flag combinations.
1304 *
1305 * The following validation rules apply for the values:
1306 * bool - can be false, otherwise must be same as the boot_val
1307 * int - can be 0, otherwise must be same as the boot_val
1308 * real - can be 0.0, otherwise must be same as the boot_val
1309 * string - can be NULL, otherwise must be strcmp equal to the boot_val
1310 * enum - must be same as the boot_val
1311 */
1312#ifdef USE_ASSERT_CHECKING
1313static bool
1314check_GUC_init(const struct config_generic *gconf)
1315{
1316 /* Checks on values */
1317 switch (gconf->vartype)
1318 {
1319 case PGC_BOOL:
1320 {
1321 const struct config_bool *conf = &gconf->_bool;
1322
1323 if (*conf->variable && !conf->boot_val)
1324 {
1325 elog(LOG, "GUC (PGC_BOOL) %s, boot_val=%d, C-var=%d",
1326 gconf->name, conf->boot_val, *conf->variable);
1327 return false;
1328 }
1329 break;
1330 }
1331 case PGC_INT:
1332 {
1333 const struct config_int *conf = &gconf->_int;
1334
1335 if (*conf->variable != 0 && *conf->variable != conf->boot_val)
1336 {
1337 elog(LOG, "GUC (PGC_INT) %s, boot_val=%d, C-var=%d",
1338 gconf->name, conf->boot_val, *conf->variable);
1339 return false;
1340 }
1341 break;
1342 }
1343 case PGC_REAL:
1344 {
1345 const struct config_real *conf = &gconf->_real;
1346
1347 if (*conf->variable != 0.0 && *conf->variable != conf->boot_val)
1348 {
1349 elog(LOG, "GUC (PGC_REAL) %s, boot_val=%g, C-var=%g",
1350 gconf->name, conf->boot_val, *conf->variable);
1351 return false;
1352 }
1353 break;
1354 }
1355 case PGC_STRING:
1356 {
1357 const struct config_string *conf = &gconf->_string;
1358
1359 if (*conf->variable != NULL &&
1360 (conf->boot_val == NULL ||
1361 strcmp(*conf->variable, conf->boot_val) != 0))
1362 {
1363 elog(LOG, "GUC (PGC_STRING) %s, boot_val=%s, C-var=%s",
1364 gconf->name, conf->boot_val ? conf->boot_val : "<null>", *conf->variable);
1365 return false;
1366 }
1367 break;
1368 }
1369 case PGC_ENUM:
1370 {
1371 const struct config_enum *conf = &gconf->_enum;
1372
1373 if (*conf->variable != conf->boot_val)
1374 {
1375 elog(LOG, "GUC (PGC_ENUM) %s, boot_val=%d, C-var=%d",
1376 gconf->name, conf->boot_val, *conf->variable);
1377 return false;
1378 }
1379 break;
1380 }
1381 }
1382
1383 /* Flag combinations */
1384
1385 /*
1386 * GUC_NO_SHOW_ALL requires GUC_NOT_IN_SAMPLE, as a parameter not part of
1387 * SHOW ALL should not be hidden in postgresql.conf.sample.
1388 */
1389 if ((gconf->flags & GUC_NO_SHOW_ALL) &&
1390 !(gconf->flags & GUC_NOT_IN_SAMPLE))
1391 {
1392 elog(LOG, "GUC %s flags: NO_SHOW_ALL and !NOT_IN_SAMPLE",
1393 gconf->name);
1394 return false;
1395 }
1396
1397 return true;
1398}
1399#endif
1400
1401/*
1402 * Initialize GUC options during program startup.
1403 *
1404 * Note that we cannot read the config file yet, since we have not yet
1405 * processed command-line switches.
1406 */
1407void
1409{
1410 HASH_SEQ_STATUS status;
1412
1413 /*
1414 * Before log_line_prefix could possibly receive a nonempty setting, make
1415 * sure that timezone processing is minimally alive (see elog.c).
1416 */
1418
1419 /*
1420 * Create GUCMemoryContext and build hash table of all GUC variables.
1421 */
1423
1424 /*
1425 * Load all variables with their compiled-in defaults, and initialize
1426 * status fields as needed.
1427 */
1428 hash_seq_init(&status, guc_hashtab);
1429 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
1430 {
1431 /* Check mapping between initial and default value */
1432 Assert(check_GUC_init(hentry->gucvar));
1433
1435 }
1436
1437 reporting_enabled = false;
1438
1439 /*
1440 * Prevent any attempt to override the transaction modes from
1441 * non-interactive sources.
1442 */
1443 SetConfigOption("transaction_isolation", "read committed",
1445 SetConfigOption("transaction_read_only", "no",
1447 SetConfigOption("transaction_deferrable", "no",
1449
1450 /*
1451 * For historical reasons, some GUC parameters can receive defaults from
1452 * environment variables. Process those settings.
1453 */
1455}
1456
1457/*
1458 * Assign any GUC values that can come from the server's environment.
1459 *
1460 * This is called from InitializeGUCOptions, and also from ProcessConfigFile
1461 * to deal with the possibility that a setting has been removed from
1462 * postgresql.conf and should now get a value from the environment.
1463 * (The latter is a kludge that should probably go away someday; if so,
1464 * fold this back into InitializeGUCOptions.)
1465 */
1466static void
1468{
1469 char *env;
1471
1472 env = getenv("PGPORT");
1473 if (env != NULL)
1475
1476 env = getenv("PGDATESTYLE");
1477 if (env != NULL)
1479
1480 env = getenv("PGCLIENTENCODING");
1481 if (env != NULL)
1482 SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1483
1484 /*
1485 * rlimit isn't exactly an "environment variable", but it behaves about
1486 * the same. If we can identify the platform stack depth rlimit, increase
1487 * default stack depth setting up to whatever is safe (but at most 2MB).
1488 * Report the value's source as PGC_S_DYNAMIC_DEFAULT if it's 2MB, or as
1489 * PGC_S_ENV_VAR if it's reflecting the rlimit limit.
1490 */
1492 if (stack_rlimit > 0)
1493 {
1495
1496 if (new_limit > 100)
1497 {
1499 char limbuf[16];
1500
1501 if (new_limit < 2048)
1503 else
1504 {
1505 new_limit = 2048;
1507 }
1508 snprintf(limbuf, sizeof(limbuf), "%zd", new_limit);
1509 SetConfigOption("max_stack_depth", limbuf,
1511 }
1512 }
1513}
1514
1515/*
1516 * Initialize one GUC option variable to its compiled-in default.
1517 *
1518 * Note: the reason for calling check_hooks is not that we think the boot_val
1519 * might fail, but that the hooks might wish to compute an "extra" struct.
1520 */
1521static void
1523{
1524 void *extra = NULL;
1525
1526 gconf->status = 0;
1527 gconf->source = PGC_S_DEFAULT;
1528 gconf->reset_source = PGC_S_DEFAULT;
1529 gconf->scontext = PGC_INTERNAL;
1530 gconf->reset_scontext = PGC_INTERNAL;
1532 gconf->reset_srole = BOOTSTRAP_SUPERUSERID;
1533 gconf->stack = NULL;
1534 gconf->extra = NULL;
1535 gconf->last_reported = NULL;
1536 gconf->sourcefile = NULL;
1537 gconf->sourceline = 0;
1538
1539 switch (gconf->vartype)
1540 {
1541 case PGC_BOOL:
1542 {
1543 struct config_bool *conf = &gconf->_bool;
1544 bool newval = conf->boot_val;
1545
1546 if (!call_bool_check_hook(gconf, &newval, &extra,
1548 elog(FATAL, "failed to initialize %s to %d",
1549 gconf->name, (int) newval);
1550 if (conf->assign_hook)
1551 conf->assign_hook(newval, extra);
1552 *conf->variable = conf->reset_val = newval;
1553 break;
1554 }
1555 case PGC_INT:
1556 {
1557 struct config_int *conf = &gconf->_int;
1558 int newval = conf->boot_val;
1559
1560 Assert(newval >= conf->min);
1562 if (!call_int_check_hook(gconf, &newval, &extra,
1564 elog(FATAL, "failed to initialize %s to %d",
1565 gconf->name, newval);
1566 if (conf->assign_hook)
1567 conf->assign_hook(newval, extra);
1568 *conf->variable = conf->reset_val = newval;
1569 break;
1570 }
1571 case PGC_REAL:
1572 {
1573 struct config_real *conf = &gconf->_real;
1574 double newval = conf->boot_val;
1575
1576 Assert(newval >= conf->min);
1578 if (!call_real_check_hook(gconf, &newval, &extra,
1580 elog(FATAL, "failed to initialize %s to %g",
1581 gconf->name, newval);
1582 if (conf->assign_hook)
1583 conf->assign_hook(newval, extra);
1584 *conf->variable = conf->reset_val = newval;
1585 break;
1586 }
1587 case PGC_STRING:
1588 {
1589 struct config_string *conf = &gconf->_string;
1590 char *newval;
1591
1592 /* non-NULL boot_val must always get strdup'd */
1593 if (conf->boot_val != NULL)
1594 newval = guc_strdup(FATAL, conf->boot_val);
1595 else
1596 newval = NULL;
1597
1598 if (!call_string_check_hook(gconf, &newval, &extra,
1600 elog(FATAL, "failed to initialize %s to \"%s\"",
1601 gconf->name, newval ? newval : "");
1602 if (conf->assign_hook)
1603 conf->assign_hook(newval, extra);
1604 *conf->variable = conf->reset_val = newval;
1605 break;
1606 }
1607 case PGC_ENUM:
1608 {
1609 struct config_enum *conf = &gconf->_enum;
1610 int newval = conf->boot_val;
1611
1612 if (!call_enum_check_hook(gconf, &newval, &extra,
1614 elog(FATAL, "failed to initialize %s to %d",
1615 gconf->name, newval);
1616 if (conf->assign_hook)
1617 conf->assign_hook(newval, extra);
1618 *conf->variable = conf->reset_val = newval;
1619 break;
1620 }
1621 }
1622
1623 gconf->extra = gconf->reset_extra = extra;
1624}
1625
1626/*
1627 * Summarily remove a GUC variable from any linked lists it's in.
1628 *
1629 * We use this in cases where the variable is about to be deleted or reset.
1630 * These aren't common operations, so it's okay if this is a bit slow.
1631 */
1632static void
1634{
1635 if (gconf->source != PGC_S_DEFAULT)
1636 dlist_delete(&gconf->nondef_link);
1637 if (gconf->stack != NULL)
1638 slist_delete(&guc_stack_list, &gconf->stack_link);
1639 if (gconf->status & GUC_NEEDS_REPORT)
1640 slist_delete(&guc_report_list, &gconf->report_link);
1641}
1642
1643
1644/*
1645 * Select the configuration files and data directory to be used, and
1646 * do the initial read of postgresql.conf.
1647 *
1648 * This is called after processing command-line switches.
1649 * userDoption is the -D switch value if any (NULL if unspecified).
1650 * progname is just for use in error messages.
1651 *
1652 * Returns true on success; on failure, prints a suitable error message
1653 * to stderr and returns false.
1654 */
1655bool
1656SelectConfigFiles(const char *userDoption, const char *progname)
1657{
1658 char *configdir;
1659 char *fname;
1660 bool fname_is_malloced;
1661 struct stat stat_buf;
1663
1664 /* configdir is -D option, or $PGDATA if no -D */
1665 if (userDoption)
1667 else
1668 configdir = make_absolute_path(getenv("PGDATA"));
1669
1670 if (configdir && stat(configdir, &stat_buf) != 0)
1671 {
1672 write_stderr("%s: could not access directory \"%s\": %m\n",
1673 progname,
1674 configdir);
1675 if (errno == ENOENT)
1676 write_stderr("Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n");
1677 goto fail;
1678 }
1679
1680 /*
1681 * Find the configuration file: if config_file was specified on the
1682 * command line, use it, else use configdir/postgresql.conf. In any case
1683 * ensure the result is an absolute path, so that it will be interpreted
1684 * the same way by future backends.
1685 */
1686 if (ConfigFileName)
1687 {
1689 fname_is_malloced = true;
1690 }
1691 else if (configdir)
1692 {
1693 fname = guc_malloc(FATAL,
1695 sprintf(fname, "%s/%s", configdir, CONFIG_FILENAME);
1696 fname_is_malloced = false;
1697 }
1698 else
1699 {
1700 write_stderr("%s does not know where to find the server configuration file.\n"
1701 "You must specify the --config-file or -D invocation "
1702 "option or set the PGDATA environment variable.\n",
1703 progname);
1704 goto fail;
1705 }
1706
1707 /*
1708 * Set the ConfigFileName GUC variable to its final value, ensuring that
1709 * it can't be overridden later.
1710 */
1711 SetConfigOption("config_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1712
1714 free(fname);
1715 else
1716 guc_free(fname);
1717
1718 /*
1719 * Now read the config file for the first time.
1720 */
1721 if (stat(ConfigFileName, &stat_buf) != 0)
1722 {
1723 write_stderr("%s: could not access the server configuration file \"%s\": %m\n",
1725 goto fail;
1726 }
1727
1728 /*
1729 * Read the configuration file for the first time. This time only the
1730 * data_directory parameter is picked up to determine the data directory,
1731 * so that we can read the PG_AUTOCONF_FILENAME file next time.
1732 */
1734
1735 /*
1736 * If the data_directory GUC variable has been set, use that as DataDir;
1737 * otherwise use configdir if set; else punt.
1738 *
1739 * Note: SetDataDir will copy and absolute-ize its argument, so we don't
1740 * have to.
1741 */
1743 find_option("data_directory", false, false, PANIC);
1744 if (*data_directory_rec->_string.variable)
1745 SetDataDir(*data_directory_rec->_string.variable);
1746 else if (configdir)
1748 else
1749 {
1750 write_stderr("%s does not know where to find the database system data.\n"
1751 "This can be specified as \"data_directory\" in \"%s\", "
1752 "or by the -D invocation option, or by the "
1753 "PGDATA environment variable.\n",
1755 goto fail;
1756 }
1757
1758 /*
1759 * Reflect the final DataDir value back into the data_directory GUC var.
1760 * (If you are wondering why we don't just make them a single variable,
1761 * it's because the EXEC_BACKEND case needs DataDir to be transmitted to
1762 * child backends specially. XXX is that still true? Given that we now
1763 * chdir to DataDir, EXEC_BACKEND can read the config file without knowing
1764 * DataDir in advance.)
1765 */
1767
1768 /*
1769 * Now read the config file a second time, allowing any settings in the
1770 * PG_AUTOCONF_FILENAME file to take effect. (This is pretty ugly, but
1771 * since we have to determine the DataDir before we can find the autoconf
1772 * file, the alternatives seem worse.)
1773 */
1775
1776 /*
1777 * If timezone_abbreviations wasn't set in the configuration file, install
1778 * the default value. We do it this way because we can't safely install a
1779 * "real" value until my_exec_path is set, which may not have happened
1780 * when InitializeGUCOptions runs, so the bootstrap default value cannot
1781 * be the real desired default.
1782 */
1784
1785 /*
1786 * Figure out where pg_hba.conf is, and make sure the path is absolute.
1787 */
1788 if (HbaFileName)
1789 {
1791 fname_is_malloced = true;
1792 }
1793 else if (configdir)
1794 {
1795 fname = guc_malloc(FATAL,
1797 sprintf(fname, "%s/%s", configdir, HBA_FILENAME);
1798 fname_is_malloced = false;
1799 }
1800 else
1801 {
1802 write_stderr("%s does not know where to find the \"hba\" configuration file.\n"
1803 "This can be specified as \"hba_file\" in \"%s\", "
1804 "or by the -D invocation option, or by the "
1805 "PGDATA environment variable.\n",
1807 goto fail;
1808 }
1809 SetConfigOption("hba_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1810
1812 free(fname);
1813 else
1814 guc_free(fname);
1815
1816 /*
1817 * Likewise for pg_ident.conf.
1818 */
1819 if (IdentFileName)
1820 {
1822 fname_is_malloced = true;
1823 }
1824 else if (configdir)
1825 {
1826 fname = guc_malloc(FATAL,
1828 sprintf(fname, "%s/%s", configdir, IDENT_FILENAME);
1829 fname_is_malloced = false;
1830 }
1831 else
1832 {
1833 write_stderr("%s does not know where to find the \"ident\" configuration file.\n"
1834 "This can be specified as \"ident_file\" in \"%s\", "
1835 "or by the -D invocation option, or by the "
1836 "PGDATA environment variable.\n",
1838 goto fail;
1839 }
1840 SetConfigOption("ident_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1841
1843 free(fname);
1844 else
1845 guc_free(fname);
1846
1847 /*
1848 * Likewise for pg_hosts.conf.
1849 */
1850 if (HostsFileName)
1851 {
1853 fname_is_malloced = true;
1854 }
1855 else if (configdir)
1856 {
1857 fname = guc_malloc(FATAL,
1859 sprintf(fname, "%s/%s", configdir, HOSTS_FILENAME);
1860 fname_is_malloced = false;
1861 }
1862 else
1863 {
1864 write_stderr("%s does not know where to find the \"hosts\" configuration file.\n"
1865 "This can be specified as \"hosts_file\" in \"%s\", "
1866 "or by the -D invocation option, or by the "
1867 "PGDATA environment variable.\n",
1869 goto fail;
1870 }
1871 SetConfigOption("hosts_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1872
1874 free(fname);
1875 else
1876 guc_free(fname);
1877
1878 free(configdir);
1879
1880 return true;
1881
1882fail:
1883 free(configdir);
1884
1885 return false;
1886}
1887
1888/*
1889 * pg_timezone_abbrev_initialize --- set default value if not done already
1890 *
1891 * This is called after initial loading of postgresql.conf. If no
1892 * timezone_abbreviations setting was found therein, select default.
1893 * If a non-default value is already installed, nothing will happen.
1894 *
1895 * This can also be called from ProcessConfigFile to establish the default
1896 * value after a postgresql.conf entry for it is removed.
1897 */
1898static void
1900{
1901 SetConfigOption("timezone_abbreviations", "Default",
1903}
1904
1905
1906/*
1907 * Reset all options to their saved default values (implements RESET ALL)
1908 */
1909void
1911{
1912 dlist_mutable_iter iter;
1913
1914 /* We need only consider GUCs not already at PGC_S_DEFAULT */
1916 {
1918 nondef_link, iter.cur);
1919
1920 /* Don't reset non-SET-able values */
1921 if (gconf->context != PGC_SUSET &&
1922 gconf->context != PGC_USERSET)
1923 continue;
1924 /* Don't reset if special exclusion from RESET ALL */
1925 if (gconf->flags & GUC_NO_RESET_ALL)
1926 continue;
1927 /* No need to reset if wasn't SET */
1928 if (gconf->source <= PGC_S_OVERRIDE)
1929 continue;
1930
1931 /* Save old value to support transaction abort */
1933
1934 switch (gconf->vartype)
1935 {
1936 case PGC_BOOL:
1937 {
1938 struct config_bool *conf = &gconf->_bool;
1939
1940 if (conf->assign_hook)
1941 conf->assign_hook(conf->reset_val,
1942 gconf->reset_extra);
1943 *conf->variable = conf->reset_val;
1944 set_extra_field(gconf, &gconf->extra,
1945 gconf->reset_extra);
1946 break;
1947 }
1948 case PGC_INT:
1949 {
1950 struct config_int *conf = &gconf->_int;
1951
1952 if (conf->assign_hook)
1953 conf->assign_hook(conf->reset_val,
1954 gconf->reset_extra);
1955 *conf->variable = conf->reset_val;
1956 set_extra_field(gconf, &gconf->extra,
1957 gconf->reset_extra);
1958 break;
1959 }
1960 case PGC_REAL:
1961 {
1962 struct config_real *conf = &gconf->_real;
1963
1964 if (conf->assign_hook)
1965 conf->assign_hook(conf->reset_val,
1966 gconf->reset_extra);
1967 *conf->variable = conf->reset_val;
1968 set_extra_field(gconf, &gconf->extra,
1969 gconf->reset_extra);
1970 break;
1971 }
1972 case PGC_STRING:
1973 {
1974 struct config_string *conf = &gconf->_string;
1975
1976 if (conf->assign_hook)
1977 conf->assign_hook(conf->reset_val,
1978 gconf->reset_extra);
1979 set_string_field(gconf, conf->variable, conf->reset_val);
1980 set_extra_field(gconf, &gconf->extra,
1981 gconf->reset_extra);
1982 break;
1983 }
1984 case PGC_ENUM:
1985 {
1986 struct config_enum *conf = &gconf->_enum;
1987
1988 if (conf->assign_hook)
1989 conf->assign_hook(conf->reset_val,
1990 gconf->reset_extra);
1991 *conf->variable = conf->reset_val;
1992 set_extra_field(gconf, &gconf->extra,
1993 gconf->reset_extra);
1994 break;
1995 }
1996 }
1997
1998 set_guc_source(gconf, gconf->reset_source);
1999 gconf->scontext = gconf->reset_scontext;
2000 gconf->srole = gconf->reset_srole;
2001
2002 if ((gconf->flags & GUC_REPORT) && !(gconf->status & GUC_NEEDS_REPORT))
2003 {
2004 gconf->status |= GUC_NEEDS_REPORT;
2005 slist_push_head(&guc_report_list, &gconf->report_link);
2006 }
2007 }
2008}
2009
2010
2011/*
2012 * Apply a change to a GUC variable's "source" field.
2013 *
2014 * Use this rather than just assigning, to ensure that the variable's
2015 * membership in guc_nondef_list is updated correctly.
2016 */
2017static void
2019{
2020 /* Adjust nondef list membership if appropriate for change */
2021 if (gconf->source == PGC_S_DEFAULT)
2022 {
2023 if (newsource != PGC_S_DEFAULT)
2024 dlist_push_tail(&guc_nondef_list, &gconf->nondef_link);
2025 }
2026 else
2027 {
2028 if (newsource == PGC_S_DEFAULT)
2029 dlist_delete(&gconf->nondef_link);
2030 }
2031 /* Now update the source field */
2032 gconf->source = newsource;
2033}
2034
2035
2036/*
2037 * push_old_value
2038 * Push previous state during transactional assignment to a GUC variable.
2039 */
2040static void
2042{
2043 GucStack *stack;
2044
2045 /* If we're not inside a nest level, do nothing */
2046 if (GUCNestLevel == 0)
2047 return;
2048
2049 /* Do we already have a stack entry of the current nest level? */
2050 stack = gconf->stack;
2051 if (stack && stack->nest_level >= GUCNestLevel)
2052 {
2053 /* Yes, so adjust its state if necessary */
2054 Assert(stack->nest_level == GUCNestLevel);
2055 switch (action)
2056 {
2057 case GUC_ACTION_SET:
2058 /* SET overrides any prior action at same nest level */
2059 if (stack->state == GUC_SET_LOCAL)
2060 {
2061 /* must discard old masked value */
2063 }
2064 stack->state = GUC_SET;
2065 break;
2066 case GUC_ACTION_LOCAL:
2067 if (stack->state == GUC_SET)
2068 {
2069 /* SET followed by SET LOCAL, remember SET's value */
2070 stack->masked_scontext = gconf->scontext;
2071 stack->masked_srole = gconf->srole;
2072 set_stack_value(gconf, &stack->masked);
2073 stack->state = GUC_SET_LOCAL;
2074 }
2075 /* in all other cases, no change to stack entry */
2076 break;
2077 case GUC_ACTION_SAVE:
2078 /* Could only have a prior SAVE of same variable */
2079 Assert(stack->state == GUC_SAVE);
2080 break;
2081 }
2082 return;
2083 }
2084
2085 /*
2086 * Push a new stack entry
2087 *
2088 * We keep all the stack entries in TopTransactionContext for simplicity.
2089 */
2091 sizeof(GucStack));
2092
2093 stack->prev = gconf->stack;
2094 stack->nest_level = GUCNestLevel;
2095 switch (action)
2096 {
2097 case GUC_ACTION_SET:
2098 stack->state = GUC_SET;
2099 break;
2100 case GUC_ACTION_LOCAL:
2101 stack->state = GUC_LOCAL;
2102 break;
2103 case GUC_ACTION_SAVE:
2104 stack->state = GUC_SAVE;
2105 break;
2106 }
2107 stack->source = gconf->source;
2108 stack->scontext = gconf->scontext;
2109 stack->srole = gconf->srole;
2110 set_stack_value(gconf, &stack->prior);
2111
2112 if (gconf->stack == NULL)
2113 slist_push_head(&guc_stack_list, &gconf->stack_link);
2114 gconf->stack = stack;
2115}
2116
2117
2118/*
2119 * Do GUC processing at main transaction start.
2120 */
2121void
2123{
2124 /*
2125 * The nest level should be 0 between transactions; if it isn't, somebody
2126 * didn't call AtEOXact_GUC, or called it with the wrong nestLevel. We
2127 * throw a warning but make no other effort to clean up.
2128 */
2129 if (GUCNestLevel != 0)
2130 elog(WARNING, "GUC nest level = %d at transaction start",
2131 GUCNestLevel);
2132 GUCNestLevel = 1;
2133}
2134
2135/*
2136 * Enter a new nesting level for GUC values. This is called at subtransaction
2137 * start, and when entering a function that has proconfig settings, and in
2138 * some other places where we want to set GUC variables transiently.
2139 * NOTE we must not risk error here, else subtransaction start will be unhappy.
2140 */
2141int
2143{
2144 return ++GUCNestLevel;
2145}
2146
2147/*
2148 * Set search_path to a fixed value for maintenance operations. No effect
2149 * during bootstrap, when the search_path is already set to a fixed value and
2150 * cannot be changed.
2151 */
2152void
2154{
2157 PGC_S_SESSION, GUC_ACTION_SAVE, true, 0, false);
2158}
2159
2160/*
2161 * Do GUC processing at transaction or subtransaction commit or abort, or
2162 * when exiting a function that has proconfig settings, or when undoing a
2163 * transient assignment to some GUC variables. (The name is thus a bit of
2164 * a misnomer; perhaps it should be ExitGUCNestLevel or some such.)
2165 * During abort, we discard all GUC settings that were applied at nesting
2166 * levels >= nestLevel. nestLevel == 1 corresponds to the main transaction.
2167 */
2168void
2169AtEOXact_GUC(bool isCommit, int nestLevel)
2170{
2171 slist_mutable_iter iter;
2172
2173 /*
2174 * Note: it's possible to get here with GUCNestLevel == nestLevel-1 during
2175 * abort, if there is a failure during transaction start before
2176 * AtStart_GUC is called.
2177 */
2178 Assert(nestLevel > 0 &&
2179 (nestLevel <= GUCNestLevel ||
2180 (nestLevel == GUCNestLevel + 1 && !isCommit)));
2181
2182 /* We need only process GUCs having nonempty stacks */
2184 {
2186 stack_link, iter.cur);
2187 GucStack *stack;
2188
2189 /*
2190 * Process and pop each stack entry within the nest level. To simplify
2191 * fmgr_security_definer() and other places that use GUC_ACTION_SAVE,
2192 * we allow failure exit from code that uses a local nest level to be
2193 * recovered at the surrounding transaction or subtransaction abort;
2194 * so there could be more than one stack entry to pop.
2195 */
2196 while ((stack = gconf->stack) != NULL &&
2197 stack->nest_level >= nestLevel)
2198 {
2199 GucStack *prev = stack->prev;
2200 bool restorePrior = false;
2201 bool restoreMasked = false;
2202 bool changed;
2203
2204 /*
2205 * In this next bit, if we don't set either restorePrior or
2206 * restoreMasked, we must "discard" any unwanted fields of the
2207 * stack entries to avoid leaking memory. If we do set one of
2208 * those flags, unused fields will be cleaned up after restoring.
2209 */
2210 if (!isCommit) /* if abort, always restore prior value */
2211 restorePrior = true;
2212 else if (stack->state == GUC_SAVE)
2213 restorePrior = true;
2214 else if (stack->nest_level == 1)
2215 {
2216 /* transaction commit */
2217 if (stack->state == GUC_SET_LOCAL)
2218 restoreMasked = true;
2219 else if (stack->state == GUC_SET)
2220 {
2221 /* we keep the current active value */
2223 }
2224 else /* must be GUC_LOCAL */
2225 restorePrior = true;
2226 }
2227 else if (prev == NULL ||
2228 prev->nest_level < stack->nest_level - 1)
2229 {
2230 /* decrement entry's level and do not pop it */
2231 stack->nest_level--;
2232 continue;
2233 }
2234 else
2235 {
2236 /*
2237 * We have to merge this stack entry into prev. See README for
2238 * discussion of this bit.
2239 */
2240 switch (stack->state)
2241 {
2242 case GUC_SAVE:
2243 Assert(false); /* can't get here */
2244 break;
2245
2246 case GUC_SET:
2247 /* next level always becomes SET */
2249 if (prev->state == GUC_SET_LOCAL)
2251 prev->state = GUC_SET;
2252 break;
2253
2254 case GUC_LOCAL:
2255 if (prev->state == GUC_SET)
2256 {
2257 /* LOCAL migrates down */
2259 prev->masked_srole = stack->srole;
2260 prev->masked = stack->prior;
2261 prev->state = GUC_SET_LOCAL;
2262 }
2263 else
2264 {
2265 /* else just forget this stack level */
2267 }
2268 break;
2269
2270 case GUC_SET_LOCAL:
2271 /* prior state at this level no longer wanted */
2273 /* copy down the masked state */
2276 if (prev->state == GUC_SET_LOCAL)
2278 prev->masked = stack->masked;
2279 prev->state = GUC_SET_LOCAL;
2280 break;
2281 }
2282 }
2283
2284 changed = false;
2285
2287 {
2288 /* Perform appropriate restoration of the stacked value */
2292 Oid newsrole;
2293
2294 if (restoreMasked)
2295 {
2300 }
2301 else
2302 {
2303 newvalue = stack->prior;
2306 newsrole = stack->srole;
2307 }
2308
2309 switch (gconf->vartype)
2310 {
2311 case PGC_BOOL:
2312 {
2313 struct config_bool *conf = &gconf->_bool;
2314 bool newval = newvalue.val.boolval;
2315 void *newextra = newvalue.extra;
2316
2317 if (*conf->variable != newval ||
2318 gconf->extra != newextra)
2319 {
2320 if (conf->assign_hook)
2322 *conf->variable = newval;
2323 set_extra_field(gconf, &gconf->extra,
2324 newextra);
2325 changed = true;
2326 }
2327 break;
2328 }
2329 case PGC_INT:
2330 {
2331 struct config_int *conf = &gconf->_int;
2332 int newval = newvalue.val.intval;
2333 void *newextra = newvalue.extra;
2334
2335 if (*conf->variable != newval ||
2336 gconf->extra != newextra)
2337 {
2338 if (conf->assign_hook)
2340 *conf->variable = newval;
2341 set_extra_field(gconf, &gconf->extra,
2342 newextra);
2343 changed = true;
2344 }
2345 break;
2346 }
2347 case PGC_REAL:
2348 {
2349 struct config_real *conf = &gconf->_real;
2350 double newval = newvalue.val.realval;
2351 void *newextra = newvalue.extra;
2352
2353 if (*conf->variable != newval ||
2354 gconf->extra != newextra)
2355 {
2356 if (conf->assign_hook)
2358 *conf->variable = newval;
2359 set_extra_field(gconf, &gconf->extra,
2360 newextra);
2361 changed = true;
2362 }
2363 break;
2364 }
2365 case PGC_STRING:
2366 {
2367 struct config_string *conf = &gconf->_string;
2368 char *newval = newvalue.val.stringval;
2369 void *newextra = newvalue.extra;
2370
2371 if (*conf->variable != newval ||
2372 gconf->extra != newextra)
2373 {
2374 if (conf->assign_hook)
2376 set_string_field(gconf, conf->variable, newval);
2377 set_extra_field(gconf, &gconf->extra,
2378 newextra);
2379 changed = true;
2380 }
2381
2382 /*
2383 * Release stacked values if not used anymore. We
2384 * could use discard_stack_value() here, but since
2385 * we have type-specific code anyway, might as
2386 * well inline it.
2387 */
2390 break;
2391 }
2392 case PGC_ENUM:
2393 {
2394 struct config_enum *conf = &gconf->_enum;
2395 int newval = newvalue.val.enumval;
2396 void *newextra = newvalue.extra;
2397
2398 if (*conf->variable != newval ||
2399 gconf->extra != newextra)
2400 {
2401 if (conf->assign_hook)
2403 *conf->variable = newval;
2404 set_extra_field(gconf, &gconf->extra,
2405 newextra);
2406 changed = true;
2407 }
2408 break;
2409 }
2410 }
2411
2412 /*
2413 * Release stacked extra values if not used anymore.
2414 */
2415 set_extra_field(gconf, &(stack->prior.extra), NULL);
2416 set_extra_field(gconf, &(stack->masked.extra), NULL);
2417
2418 /* And restore source information */
2420 gconf->scontext = newscontext;
2421 gconf->srole = newsrole;
2422 }
2423
2424 /*
2425 * Pop the GUC's state stack; if it's now empty, remove the GUC
2426 * from guc_stack_list.
2427 */
2428 gconf->stack = prev;
2429 if (prev == NULL)
2430 slist_delete_current(&iter);
2431 pfree(stack);
2432
2433 /* Report new value if we changed it */
2434 if (changed && (gconf->flags & GUC_REPORT) &&
2435 !(gconf->status & GUC_NEEDS_REPORT))
2436 {
2437 gconf->status |= GUC_NEEDS_REPORT;
2438 slist_push_head(&guc_report_list, &gconf->report_link);
2439 }
2440 } /* end of stack-popping loop */
2441 }
2442
2443 /* Update nesting level */
2444 GUCNestLevel = nestLevel - 1;
2445}
2446
2447
2448/*
2449 * Start up automatic reporting of changes to variables marked GUC_REPORT.
2450 * This is executed at completion of backend startup.
2451 */
2452void
2454{
2455 HASH_SEQ_STATUS status;
2457
2458 /*
2459 * Don't do anything unless talking to an interactive frontend.
2460 */
2462 return;
2463
2464 reporting_enabled = true;
2465
2466 /*
2467 * Hack for in_hot_standby: set the GUC value true if appropriate. This
2468 * is kind of an ugly place to do it, but there's few better options.
2469 *
2470 * (This could be out of date by the time we actually send it, in which
2471 * case the next ReportChangedGUCOptions call will send a duplicate
2472 * report.)
2473 */
2474 if (RecoveryInProgress())
2475 SetConfigOption("in_hot_standby", "true",
2477
2478 /* Transmit initial values of interesting variables */
2479 hash_seq_init(&status, guc_hashtab);
2480 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
2481 {
2482 struct config_generic *conf = hentry->gucvar;
2483
2484 if (conf->flags & GUC_REPORT)
2486 }
2487}
2488
2489/*
2490 * ReportChangedGUCOptions: report recently-changed GUC_REPORT variables
2491 *
2492 * This is called just before we wait for a new client query.
2493 *
2494 * By handling things this way, we ensure that a ParameterStatus message
2495 * is sent at most once per variable per query, even if the variable
2496 * changed multiple times within the query. That's quite possible when
2497 * using features such as function SET clauses. Function SET clauses
2498 * also tend to cause values to change intraquery but eventually revert
2499 * to their prevailing values; ReportGUCOption is responsible for avoiding
2500 * redundant reports in such cases.
2501 */
2502void
2504{
2505 slist_mutable_iter iter;
2506
2507 /* Quick exit if not (yet) enabled */
2508 if (!reporting_enabled)
2509 return;
2510
2511 /*
2512 * Since in_hot_standby isn't actually changed by normal GUC actions, we
2513 * need a hack to check whether a new value needs to be reported to the
2514 * client. For speed, we rely on the assumption that it can never
2515 * transition from false to true.
2516 */
2518 SetConfigOption("in_hot_standby", "false",
2520
2521 /* Transmit new values of interesting variables */
2523 {
2525 report_link, iter.cur);
2526
2527 Assert((conf->flags & GUC_REPORT) && (conf->status & GUC_NEEDS_REPORT));
2529 conf->status &= ~GUC_NEEDS_REPORT;
2530 slist_delete_current(&iter);
2531 }
2532}
2533
2534/*
2535 * ReportGUCOption: if appropriate, transmit option value to frontend
2536 *
2537 * We need not transmit the value if it's the same as what we last
2538 * transmitted.
2539 */
2540static void
2542{
2543 char *val = ShowGUCOption(record, false);
2544
2545 if (record->last_reported == NULL ||
2546 strcmp(val, record->last_reported) != 0)
2547 {
2549
2551 pq_sendstring(&msgbuf, record->name);
2554
2555 /*
2556 * We need a long-lifespan copy. If guc_strdup() fails due to OOM,
2557 * we'll set last_reported to NULL and thereby possibly make a
2558 * duplicate report later.
2559 */
2560 guc_free(record->last_reported);
2561 record->last_reported = guc_strdup(LOG, val);
2562 }
2563
2564 pfree(val);
2565}
2566
2567/*
2568 * Convert a value from one of the human-friendly units ("kB", "min" etc.)
2569 * to the given base unit. 'value' and 'unit' are the input value and unit
2570 * to convert from (there can be trailing spaces in the unit string).
2571 * The converted value is stored in *base_value.
2572 * It's caller's responsibility to round off the converted value as necessary
2573 * and check for out-of-range.
2574 *
2575 * Returns true on success, false if the input unit is not recognized.
2576 */
2577static bool
2578convert_to_base_unit(double value, const char *unit,
2579 int base_unit, double *base_value)
2580{
2581 char unitstr[MAX_UNIT_LEN + 1];
2582 int unitlen;
2583 const unit_conversion *table;
2584
2585 /* extract unit string to compare to table entries */
2586 unitlen = 0;
2587 while (*unit != '\0' && !isspace((unsigned char) *unit) &&
2589 unitstr[unitlen++] = *(unit++);
2590 unitstr[unitlen] = '\0';
2591 /* allow whitespace after unit */
2592 while (isspace((unsigned char) *unit))
2593 unit++;
2594 if (*unit != '\0')
2595 return false; /* unit too long, or garbage after it */
2596
2597 /* now search the appropriate table */
2598 if (base_unit & GUC_UNIT_MEMORY)
2600 else
2602
2603 for (int i = 0; *table[i].unit; i++)
2604 {
2605 if (base_unit == table[i].base_unit &&
2606 strcmp(unitstr, table[i].unit) == 0)
2607 {
2608 double cvalue = value * table[i].multiplier;
2609
2610 /*
2611 * If the user gave a fractional value such as "30.1GB", round it
2612 * off to the nearest multiple of the next smaller unit, if there
2613 * is one.
2614 */
2615 if (*table[i + 1].unit &&
2616 base_unit == table[i + 1].base_unit)
2617 cvalue = rint(cvalue / table[i + 1].multiplier) *
2618 table[i + 1].multiplier;
2619
2620 *base_value = cvalue;
2621 return true;
2622 }
2623 }
2624 return false;
2625}
2626
2627/*
2628 * Convert an integer value in some base unit to a human-friendly unit.
2629 *
2630 * The output unit is chosen so that it's the greatest unit that can represent
2631 * the value without loss. For example, if the base unit is GUC_UNIT_KB, 1024
2632 * is converted to 1 MB, but 1025 is represented as 1025 kB.
2633 */
2634static void
2636 int64 *value, const char **unit)
2637{
2638 const unit_conversion *table;
2639
2640 *unit = NULL;
2641
2642 if (base_unit & GUC_UNIT_MEMORY)
2644 else
2646
2647 for (int i = 0; *table[i].unit; i++)
2648 {
2649 if (base_unit == table[i].base_unit)
2650 {
2651 /*
2652 * Accept the first conversion that divides the value evenly. We
2653 * assume that the conversions for each base unit are ordered from
2654 * greatest unit to the smallest!
2655 */
2656 if (table[i].multiplier <= 1.0 ||
2657 base_value % (int64) table[i].multiplier == 0)
2658 {
2659 *value = (int64) rint(base_value / table[i].multiplier);
2660 *unit = table[i].unit;
2661 break;
2662 }
2663 }
2664 }
2665
2666 Assert(*unit != NULL);
2667}
2668
2669/*
2670 * Convert a floating-point value in some base unit to a human-friendly unit.
2671 *
2672 * Same as above, except we have to do the math a bit differently, and
2673 * there's a possibility that we don't find any exact divisor.
2674 */
2675static void
2677 double *value, const char **unit)
2678{
2679 const unit_conversion *table;
2680
2681 *unit = NULL;
2682
2683 if (base_unit & GUC_UNIT_MEMORY)
2685 else
2687
2688 for (int i = 0; *table[i].unit; i++)
2689 {
2690 if (base_unit == table[i].base_unit)
2691 {
2692 /*
2693 * Accept the first conversion that divides the value evenly; or
2694 * if there is none, use the smallest (last) target unit.
2695 *
2696 * What we actually care about here is whether snprintf with "%g"
2697 * will print the value as an integer, so the obvious test of
2698 * "*value == rint(*value)" is too strict; roundoff error might
2699 * make us choose an unreasonably small unit. As a compromise,
2700 * accept a divisor that is within 1e-8 of producing an integer.
2701 */
2702 *value = base_value / table[i].multiplier;
2703 *unit = table[i].unit;
2704 if (*value > 0 &&
2705 fabs((rint(*value) / *value) - 1.0) <= 1e-8)
2706 break;
2707 }
2708 }
2709
2710 Assert(*unit != NULL);
2711}
2712
2713/*
2714 * Return the name of a GUC's base unit (e.g. "ms") given its flags.
2715 * Return NULL if the GUC is unitless.
2716 */
2717const char *
2719{
2720 switch (flags & GUC_UNIT)
2721 {
2722 case 0:
2723 return NULL; /* GUC has no units */
2724 case GUC_UNIT_BYTE:
2725 return "B";
2726 case GUC_UNIT_KB:
2727 return "kB";
2728 case GUC_UNIT_MB:
2729 return "MB";
2730 case GUC_UNIT_BLOCKS:
2731 {
2732 static char bbuf[8];
2733
2734 /* initialize if first time through */
2735 if (bbuf[0] == '\0')
2736 snprintf(bbuf, sizeof(bbuf), "%dkB", BLCKSZ / 1024);
2737 return bbuf;
2738 }
2739 case GUC_UNIT_XBLOCKS:
2740 {
2741 static char xbuf[8];
2742
2743 /* initialize if first time through */
2744 if (xbuf[0] == '\0')
2745 snprintf(xbuf, sizeof(xbuf), "%dkB", XLOG_BLCKSZ / 1024);
2746 return xbuf;
2747 }
2748 case GUC_UNIT_MS:
2749 return "ms";
2750 case GUC_UNIT_S:
2751 return "s";
2752 case GUC_UNIT_MIN:
2753 return "min";
2754 default:
2755 elog(ERROR, "unrecognized GUC units value: %d",
2756 flags & GUC_UNIT);
2757 return NULL;
2758 }
2759}
2760
2761
2762/*
2763 * Try to parse value as an integer. The accepted formats are the
2764 * usual decimal, octal, or hexadecimal formats, as well as floating-point
2765 * formats (which will be rounded to integer after any units conversion).
2766 * Optionally, the value can be followed by a unit name if "flags" indicates
2767 * a unit is allowed.
2768 *
2769 * If the string parses okay, return true, else false.
2770 * If okay and result is not NULL, return the value in *result.
2771 * If not okay and hintmsg is not NULL, *hintmsg is set to a suitable
2772 * HINT message, or NULL if no hint provided.
2773 */
2774bool
2775parse_int(const char *value, int *result, int flags, const char **hintmsg)
2776{
2777 /*
2778 * We assume here that double is wide enough to represent any integer
2779 * value with adequate precision.
2780 */
2781 double val;
2782 char *endptr;
2783
2784 /* To suppress compiler warnings, always set output params */
2785 if (result)
2786 *result = 0;
2787 if (hintmsg)
2788 *hintmsg = NULL;
2789
2790 /*
2791 * Try to parse as an integer (allowing octal or hex input). If the
2792 * conversion stops at a decimal point or 'e', or overflows, re-parse as
2793 * float. This should work fine as long as we have no unit names starting
2794 * with 'e'. If we ever do, the test could be extended to check for a
2795 * sign or digit after 'e', but for now that's unnecessary.
2796 */
2797 errno = 0;
2798 val = strtol(value, &endptr, 0);
2799 if (*endptr == '.' || *endptr == 'e' || *endptr == 'E' ||
2800 errno == ERANGE)
2801 {
2802 errno = 0;
2803 val = strtod(value, &endptr);
2804 }
2805
2806 if (endptr == value || errno == ERANGE)
2807 return false; /* no HINT for these cases */
2808
2809 /* reject NaN (infinities will fail range check below) */
2810 if (isnan(val))
2811 return false; /* treat same as syntax error; no HINT */
2812
2813 /* allow whitespace between number and unit */
2814 while (isspace((unsigned char) *endptr))
2815 endptr++;
2816
2817 /* Handle possible unit */
2818 if (*endptr != '\0')
2819 {
2820 if ((flags & GUC_UNIT) == 0)
2821 return false; /* this setting does not accept a unit */
2822
2824 endptr, (flags & GUC_UNIT),
2825 &val))
2826 {
2827 /* invalid unit, or garbage after the unit; set hint and fail. */
2828 if (hintmsg)
2829 {
2830 if (flags & GUC_UNIT_MEMORY)
2832 else
2834 }
2835 return false;
2836 }
2837 }
2838
2839 /* Round to int, then check for overflow */
2840 val = rint(val);
2841
2842 if (val > INT_MAX || val < INT_MIN)
2843 {
2844 if (hintmsg)
2845 *hintmsg = gettext_noop("Value exceeds integer range.");
2846 return false;
2847 }
2848
2849 if (result)
2850 *result = (int) val;
2851 return true;
2852}
2853
2854/*
2855 * Try to parse value as a floating point number in the usual format.
2856 * Optionally, the value can be followed by a unit name if "flags" indicates
2857 * a unit is allowed.
2858 *
2859 * If the string parses okay, return true, else false.
2860 * If okay and result is not NULL, return the value in *result.
2861 * If not okay and hintmsg is not NULL, *hintmsg is set to a suitable
2862 * HINT message, or NULL if no hint provided.
2863 */
2864bool
2865parse_real(const char *value, double *result, int flags, const char **hintmsg)
2866{
2867 double val;
2868 char *endptr;
2869
2870 /* To suppress compiler warnings, always set output params */
2871 if (result)
2872 *result = 0;
2873 if (hintmsg)
2874 *hintmsg = NULL;
2875
2876 errno = 0;
2877 val = strtod(value, &endptr);
2878
2879 if (endptr == value || errno == ERANGE)
2880 return false; /* no HINT for these cases */
2881
2882 /* reject NaN (infinities will fail range checks later) */
2883 if (isnan(val))
2884 return false; /* treat same as syntax error; no HINT */
2885
2886 /* allow whitespace between number and unit */
2887 while (isspace((unsigned char) *endptr))
2888 endptr++;
2889
2890 /* Handle possible unit */
2891 if (*endptr != '\0')
2892 {
2893 if ((flags & GUC_UNIT) == 0)
2894 return false; /* this setting does not accept a unit */
2895
2897 endptr, (flags & GUC_UNIT),
2898 &val))
2899 {
2900 /* invalid unit, or garbage after the unit; set hint and fail. */
2901 if (hintmsg)
2902 {
2903 if (flags & GUC_UNIT_MEMORY)
2905 else
2907 }
2908 return false;
2909 }
2910 }
2911
2912 if (result)
2913 *result = val;
2914 return true;
2915}
2916
2917
2918/*
2919 * Lookup the name for an enum option with the selected value.
2920 * Should only ever be called with known-valid values, so throws
2921 * an elog(ERROR) if the enum option is not found.
2922 *
2923 * The returned string is a pointer to static data and not
2924 * allocated for modification.
2925 */
2926const char *
2928{
2929 for (const struct config_enum_entry *entry = record->_enum.options; entry && entry->name; entry++)
2930 {
2931 if (entry->val == val)
2932 return entry->name;
2933 }
2934
2935 elog(ERROR, "could not find enum option %d for %s",
2936 val, record->name);
2937 return NULL; /* silence compiler */
2938}
2939
2940
2941/*
2942 * Lookup the value for an enum option with the selected name
2943 * (case-insensitive).
2944 * If the enum option is found, sets the retval value and returns
2945 * true. If it's not found, return false and retval is set to 0.
2946 */
2947bool
2948config_enum_lookup_by_name(const struct config_enum *record, const char *value,
2949 int *retval)
2950{
2951 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2952 {
2953 if (pg_strcasecmp(value, entry->name) == 0)
2954 {
2955 *retval = entry->val;
2956 return true;
2957 }
2958 }
2959
2960 *retval = 0;
2961 return false;
2962}
2963
2964
2965/*
2966 * Return a palloc'd string listing all the available options for an enum GUC
2967 * (excluding hidden ones), separated by the given separator.
2968 * If prefix is non-NULL, it is added before the first enum value.
2969 * If suffix is non-NULL, it is added to the end of the string.
2970 */
2971char *
2972config_enum_get_options(const struct config_enum *record, const char *prefix,
2973 const char *suffix, const char *separator)
2974{
2976 int seplen;
2977
2980
2982 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2983 {
2984 if (!entry->hidden)
2985 {
2986 appendStringInfoString(&retstr, entry->name);
2988 }
2989 }
2990
2991 /*
2992 * All the entries may have been hidden, leaving the string empty if no
2993 * prefix was given. This indicates a broken GUC setup, since there is no
2994 * use for an enum without any values, so we just check to make sure we
2995 * don't write to invalid memory instead of actually trying to do
2996 * something smart with it.
2997 */
2998 if (retstr.len >= seplen)
2999 {
3000 /* Replace final separator */
3001 retstr.data[retstr.len - seplen] = '\0';
3002 retstr.len -= seplen;
3003 }
3004
3006
3007 return retstr.data;
3008}
3009
3010/*
3011 * Parse and validate a proposed value for the specified configuration
3012 * parameter.
3013 *
3014 * This does built-in checks (such as range limits for an integer parameter)
3015 * and also calls any check hook the parameter may have.
3016 *
3017 * record: GUC variable's info record
3018 * value: proposed value, as a string
3019 * source: identifies source of value (check hooks may need this)
3020 * elevel: level to log any error reports at
3021 * newval: on success, converted parameter value is returned here
3022 * newextra: on success, receives any "extra" data returned by check hook
3023 * (caller must initialize *newextra to NULL)
3024 *
3025 * Returns true if OK, false if not (or throws error, if elevel >= ERROR)
3026 */
3027static bool
3029 const char *value,
3030 GucSource source, int elevel,
3031 union config_var_val *newval, void **newextra)
3032{
3033 switch (record->vartype)
3034 {
3035 case PGC_BOOL:
3036 {
3037 if (!parse_bool(value, &newval->boolval))
3038 {
3039 ereport(elevel,
3041 errmsg("parameter \"%s\" requires a Boolean value",
3042 record->name)));
3043 return false;
3044 }
3045
3046 if (!call_bool_check_hook(record, &newval->boolval, newextra,
3047 source, elevel))
3048 return false;
3049 }
3050 break;
3051 case PGC_INT:
3052 {
3053 const struct config_int *conf = &record->_int;
3054 const char *hintmsg;
3055
3056 if (!parse_int(value, &newval->intval,
3057 record->flags, &hintmsg))
3058 {
3059 ereport(elevel,
3061 errmsg("invalid value for parameter \"%s\": \"%s\"",
3062 record->name, value),
3063 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3064 return false;
3065 }
3066
3067 if (newval->intval < conf->min || newval->intval > conf->max)
3068 {
3069 const char *unit = get_config_unit_name(record->flags);
3070 const char *unitspace;
3071
3072 if (unit)
3073 unitspace = " ";
3074 else
3075 unit = unitspace = "";
3076
3077 ereport(elevel,
3079 errmsg("%d%s%s is outside the valid range for parameter \"%s\" (%d%s%s .. %d%s%s)",
3080 newval->intval, unitspace, unit,
3081 record->name,
3082 conf->min, unitspace, unit,
3083 conf->max, unitspace, unit)));
3084 return false;
3085 }
3086
3087 if (!call_int_check_hook(record, &newval->intval, newextra,
3088 source, elevel))
3089 return false;
3090 }
3091 break;
3092 case PGC_REAL:
3093 {
3094 const struct config_real *conf = &record->_real;
3095 const char *hintmsg;
3096
3097 if (!parse_real(value, &newval->realval,
3098 record->flags, &hintmsg))
3099 {
3100 ereport(elevel,
3102 errmsg("invalid value for parameter \"%s\": \"%s\"",
3103 record->name, value),
3104 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3105 return false;
3106 }
3107
3108 if (newval->realval < conf->min || newval->realval > conf->max)
3109 {
3110 const char *unit = get_config_unit_name(record->flags);
3111 const char *unitspace;
3112
3113 if (unit)
3114 unitspace = " ";
3115 else
3116 unit = unitspace = "";
3117
3118 ereport(elevel,
3120 errmsg("%g%s%s is outside the valid range for parameter \"%s\" (%g%s%s .. %g%s%s)",
3121 newval->realval, unitspace, unit,
3122 record->name,
3123 conf->min, unitspace, unit,
3124 conf->max, unitspace, unit)));
3125 return false;
3126 }
3127
3128 if (!call_real_check_hook(record, &newval->realval, newextra,
3129 source, elevel))
3130 return false;
3131 }
3132 break;
3133 case PGC_STRING:
3134 {
3135 /*
3136 * The value passed by the caller could be transient, so we
3137 * always strdup it.
3138 */
3139 newval->stringval = guc_strdup(elevel, value);
3140 if (newval->stringval == NULL)
3141 return false;
3142
3143 /*
3144 * The only built-in "parsing" check we have is to apply
3145 * truncation if GUC_IS_NAME.
3146 */
3147 if (record->flags & GUC_IS_NAME)
3148 truncate_identifier(newval->stringval,
3149 strlen(newval->stringval),
3150 true);
3151
3152 if (!call_string_check_hook(record, &newval->stringval, newextra,
3153 source, elevel))
3154 {
3155 guc_free(newval->stringval);
3156 newval->stringval = NULL;
3157 return false;
3158 }
3159 }
3160 break;
3161 case PGC_ENUM:
3162 {
3163 const struct config_enum *conf = &record->_enum;
3164
3165 if (!config_enum_lookup_by_name(conf, value, &newval->enumval))
3166 {
3167 char *hintmsg;
3168
3170 _("Available values: "),
3171
3172 /*
3173 * translator: This is the terminator of a list of entity
3174 * names.
3175 */
3176 _("."),
3177
3178 /*
3179 * translator: This is a separator in a list of entity
3180 * names.
3181 */
3182 _(", "));
3183
3184 ereport(elevel,
3186 errmsg("invalid value for parameter \"%s\": \"%s\"",
3187 record->name, value),
3188 hintmsg ? errhint("%s", hintmsg) : 0));
3189
3190 if (hintmsg)
3191 pfree(hintmsg);
3192 return false;
3193 }
3194
3195 if (!call_enum_check_hook(record, &newval->enumval, newextra,
3196 source, elevel))
3197 return false;
3198 }
3199 break;
3200 }
3201
3202 return true;
3203}
3204
3205
3206/*
3207 * set_config_option: sets option `name' to given value.
3208 *
3209 * The value should be a string, which will be parsed and converted to
3210 * the appropriate data type. The context and source parameters indicate
3211 * in which context this function is being called, so that it can apply the
3212 * access restrictions properly.
3213 *
3214 * If value is NULL, set the option to its default value (normally the
3215 * reset_val, but if source == PGC_S_DEFAULT we instead use the boot_val).
3216 *
3217 * action indicates whether to set the value globally in the session, locally
3218 * to the current top transaction, or just for the duration of a function call.
3219 *
3220 * If changeVal is false then don't really set the option but do all
3221 * the checks to see if it would work.
3222 *
3223 * elevel should normally be passed as zero, allowing this function to make
3224 * its standard choice of ereport level. However some callers need to be
3225 * able to override that choice; they should pass the ereport level to use.
3226 *
3227 * is_reload should be true only when called from read_nondefault_variables()
3228 * or RestoreGUCState(), where we are trying to load some other process's
3229 * GUC settings into a new process.
3230 *
3231 * Return value:
3232 * +1: the value is valid and was successfully applied.
3233 * 0: the name or value is invalid, or it's invalid to try to set
3234 * this GUC now; but elevel was less than ERROR (see below).
3235 * -1: no error detected, but the value was not applied, either
3236 * because changeVal is false or there is some overriding setting.
3237 *
3238 * If there is an error (non-existing option, invalid value, etc) then an
3239 * ereport(ERROR) is thrown *unless* this is called for a source for which
3240 * we don't want an ERROR (currently, those are defaults, the config file,
3241 * and per-database or per-user settings, as well as callers who specify
3242 * a less-than-ERROR elevel). In those cases we write a suitable error
3243 * message via ereport() and return 0.
3244 *
3245 * See also SetConfigOption for an external interface.
3246 */
3247int
3248set_config_option(const char *name, const char *value,
3249 GucContext context, GucSource source,
3250 GucAction action, bool changeVal, int elevel,
3251 bool is_reload)
3252{
3253 Oid srole;
3254
3255 /*
3256 * Non-interactive sources should be treated as having all privileges,
3257 * except for PGC_S_CLIENT. Note in particular that this is true for
3258 * pg_db_role_setting sources (PGC_S_GLOBAL etc): we assume a suitable
3259 * privilege check was done when the pg_db_role_setting entry was made.
3260 */
3262 srole = GetUserId();
3263 else
3264 srole = BOOTSTRAP_SUPERUSERID;
3265
3267 context, source, srole,
3268 action, changeVal, elevel,
3269 is_reload);
3270}
3271
3272/*
3273 * set_config_option_ext: sets option `name' to given value.
3274 *
3275 * This API adds the ability to explicitly specify which role OID
3276 * is considered to be setting the value. Most external callers can use
3277 * set_config_option() and let it determine that based on the GucSource,
3278 * but there are a few that are supplying a value that was determined
3279 * in some special way and need to override the decision. Also, when
3280 * restoring a previously-assigned value, it's important to supply the
3281 * same role OID that set the value originally; so all guc.c callers
3282 * that are doing that type of thing need to call this directly.
3283 *
3284 * Generally, srole should be GetUserId() when the source is a SQL operation,
3285 * or BOOTSTRAP_SUPERUSERID if the source is a config file or similar.
3286 */
3287int
3288set_config_option_ext(const char *name, const char *value,
3289 GucContext context, GucSource source, Oid srole,
3290 GucAction action, bool changeVal, int elevel,
3291 bool is_reload)
3292{
3294 context, source, srole,
3295 action, changeVal, elevel,
3296 is_reload);
3297}
3298
3299
3300/*
3301 * set_config_with_handle: sets option `name' to given value.
3302 *
3303 * This API adds the ability to pass a 'handle' argument, which can be
3304 * obtained by the caller from get_config_handle(). NULL has no effect,
3305 * but a non-null value avoids the need to search the GUC tables.
3306 *
3307 * This should be used by callers which repeatedly set the same config
3308 * option(s), and want to avoid the overhead of a hash lookup each time.
3309 */
3310int
3312 const char *value,
3313 GucContext context, GucSource source, Oid srole,
3314 GucAction action, bool changeVal, int elevel,
3315 bool is_reload)
3316{
3317 struct config_generic *record;
3319 void *newextra = NULL;
3320 bool prohibitValueChange = false;
3321 bool makeDefault;
3322
3323 if (elevel == 0)
3324 {
3326 {
3327 /*
3328 * To avoid cluttering the log, only the postmaster bleats loudly
3329 * about problems with the config file.
3330 */
3331 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
3332 }
3333 else if (source == PGC_S_GLOBAL ||
3335 source == PGC_S_USER ||
3337 elevel = WARNING;
3338 else
3339 elevel = ERROR;
3340 }
3341
3342 /* if handle is specified, no need to look up option */
3343 if (!handle)
3344 {
3345 record = find_option(name, true, false, elevel);
3346 if (record == NULL)
3347 return 0;
3348 }
3349 else
3350 record = handle;
3351
3352 /*
3353 * GUC_ACTION_SAVE changes are acceptable during a parallel operation,
3354 * because the current worker will also pop the change. We're probably
3355 * dealing with a function having a proconfig entry. Only the function's
3356 * body should observe the change, and peer workers do not share in the
3357 * execution of a function call started by this worker.
3358 *
3359 * Also allow normal setting if the GUC is marked GUC_ALLOW_IN_PARALLEL.
3360 *
3361 * Other changes might need to affect other workers, so forbid them.
3362 */
3363 if (IsInParallelMode() && changeVal && action != GUC_ACTION_SAVE &&
3364 (record->flags & GUC_ALLOW_IN_PARALLEL) == 0)
3365 {
3366 ereport(elevel,
3368 errmsg("parameter \"%s\" cannot be set during a parallel operation",
3369 record->name)));
3370 return 0;
3371 }
3372
3373 /*
3374 * Check if the option can be set at this time. See guc.h for the precise
3375 * rules.
3376 */
3377 switch (record->context)
3378 {
3379 case PGC_INTERNAL:
3380 if (context != PGC_INTERNAL)
3381 {
3382 ereport(elevel,
3384 errmsg("parameter \"%s\" cannot be changed",
3385 record->name)));
3386 return 0;
3387 }
3388 break;
3389 case PGC_POSTMASTER:
3390 if (context == PGC_SIGHUP)
3391 {
3392 /*
3393 * We are re-reading a PGC_POSTMASTER variable from
3394 * postgresql.conf. We can't change the setting, so we should
3395 * give a warning if the DBA tries to change it. However,
3396 * because of variant formats, canonicalization by check
3397 * hooks, etc, we can't just compare the given string directly
3398 * to what's stored. Set a flag to check below after we have
3399 * the final storable value.
3400 */
3401 prohibitValueChange = true;
3402 }
3403 else if (context != PGC_POSTMASTER)
3404 {
3405 ereport(elevel,
3407 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3408 record->name)));
3409 return 0;
3410 }
3411 break;
3412 case PGC_SIGHUP:
3413 if (context != PGC_SIGHUP && context != PGC_POSTMASTER)
3414 {
3415 ereport(elevel,
3417 errmsg("parameter \"%s\" cannot be changed now",
3418 record->name)));
3419 return 0;
3420 }
3421
3422 /*
3423 * Hmm, the idea of the SIGHUP context is "ought to be global, but
3424 * can be changed after postmaster start". But there's nothing
3425 * that prevents a crafty administrator from sending SIGHUP
3426 * signals to individual backends only.
3427 */
3428 break;
3429 case PGC_SU_BACKEND:
3430 if (context == PGC_BACKEND)
3431 {
3432 /*
3433 * Check whether the requesting user has been granted
3434 * privilege to set this GUC.
3435 */
3437
3438 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3439 if (aclresult != ACLCHECK_OK)
3440 {
3441 /* No granted privilege */
3442 ereport(elevel,
3444 errmsg("permission denied to set parameter \"%s\"",
3445 record->name)));
3446 return 0;
3447 }
3448 }
3449 /* fall through to process the same as PGC_BACKEND */
3451 case PGC_BACKEND:
3452 if (context == PGC_SIGHUP)
3453 {
3454 /*
3455 * If a PGC_BACKEND or PGC_SU_BACKEND parameter is changed in
3456 * the config file, we want to accept the new value in the
3457 * postmaster (whence it will propagate to
3458 * subsequently-started backends), but ignore it in existing
3459 * backends. This is a tad klugy, but necessary because we
3460 * don't re-read the config file during backend start.
3461 *
3462 * However, if changeVal is false then plow ahead anyway since
3463 * we are trying to find out if the value is potentially good,
3464 * not actually use it.
3465 *
3466 * In EXEC_BACKEND builds, this works differently: we load all
3467 * non-default settings from the CONFIG_EXEC_PARAMS file
3468 * during backend start. In that case we must accept
3469 * PGC_SIGHUP settings, so as to have the same value as if
3470 * we'd forked from the postmaster. This can also happen when
3471 * using RestoreGUCState() within a background worker that
3472 * needs to have the same settings as the user backend that
3473 * started it. is_reload will be true when either situation
3474 * applies.
3475 */
3477 return -1;
3478 }
3479 else if (context != PGC_POSTMASTER &&
3480 context != PGC_BACKEND &&
3481 context != PGC_SU_BACKEND &&
3483 {
3484 ereport(elevel,
3486 errmsg("parameter \"%s\" cannot be set after connection start",
3487 record->name)));
3488 return 0;
3489 }
3490 break;
3491 case PGC_SUSET:
3492 if (context == PGC_USERSET || context == PGC_BACKEND)
3493 {
3494 /*
3495 * Check whether the requesting user has been granted
3496 * privilege to set this GUC.
3497 */
3499
3500 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3501 if (aclresult != ACLCHECK_OK)
3502 {
3503 /* No granted privilege */
3504 ereport(elevel,
3506 errmsg("permission denied to set parameter \"%s\"",
3507 record->name)));
3508 return 0;
3509 }
3510 }
3511 break;
3512 case PGC_USERSET:
3513 /* always okay */
3514 break;
3515 }
3516
3517 /*
3518 * Disallow changing GUC_NOT_WHILE_SEC_REST values if we are inside a
3519 * security restriction context. We can reject this regardless of the GUC
3520 * context or source, mainly because sources that it might be reasonable
3521 * to override for won't be seen while inside a function.
3522 *
3523 * Note: variables marked GUC_NOT_WHILE_SEC_REST should usually be marked
3524 * GUC_NO_RESET_ALL as well, because ResetAllOptions() doesn't check this.
3525 * An exception might be made if the reset value is assumed to be "safe".
3526 *
3527 * Note: this flag is currently used for "session_authorization" and
3528 * "role". We need to prohibit changing these inside a local userid
3529 * context because when we exit it, GUC won't be notified, leaving things
3530 * out of sync. (This could be fixed by forcing a new GUC nesting level,
3531 * but that would change behavior in possibly-undesirable ways.) Also, we
3532 * prohibit changing these in a security-restricted operation because
3533 * otherwise RESET could be used to regain the session user's privileges.
3534 */
3535 if (record->flags & GUC_NOT_WHILE_SEC_REST)
3536 {
3537 if (InLocalUserIdChange())
3538 {
3539 /*
3540 * Phrasing of this error message is historical, but it's the most
3541 * common case.
3542 */
3543 ereport(elevel,
3545 errmsg("cannot set parameter \"%s\" within security-definer function",
3546 record->name)));
3547 return 0;
3548 }
3550 {
3551 ereport(elevel,
3553 errmsg("cannot set parameter \"%s\" within security-restricted operation",
3554 record->name)));
3555 return 0;
3556 }
3557 }
3558
3559 /* Disallow resetting and saving GUC_NO_RESET values */
3560 if (record->flags & GUC_NO_RESET)
3561 {
3562 if (value == NULL)
3563 {
3564 ereport(elevel,
3566 errmsg("parameter \"%s\" cannot be reset", record->name)));
3567 return 0;
3568 }
3569 if (action == GUC_ACTION_SAVE)
3570 {
3571 ereport(elevel,
3573 errmsg("parameter \"%s\" cannot be set locally in functions",
3574 record->name)));
3575 return 0;
3576 }
3577 }
3578
3579 /*
3580 * Should we set reset/stacked values? (If so, the behavior is not
3581 * transactional.) This is done either when we get a default value from
3582 * the database's/user's/client's default settings or when we reset a
3583 * value to its default.
3584 */
3586 ((value != NULL) || source == PGC_S_DEFAULT);
3587
3588 /*
3589 * Ignore attempted set if overridden by previously processed setting.
3590 * However, if changeVal is false then plow ahead anyway since we are
3591 * trying to find out if the value is potentially good, not actually use
3592 * it. Also keep going if makeDefault is true, since we may want to set
3593 * the reset/stacked values even if we can't set the variable itself.
3594 */
3595 if (record->source > source)
3596 {
3597 if (changeVal && !makeDefault)
3598 {
3599 elog(DEBUG3, "\"%s\": setting ignored because previous source is higher priority",
3600 record->name);
3601 return -1;
3602 }
3603 changeVal = false;
3604 }
3605
3606 /*
3607 * Evaluate value and set variable.
3608 */
3609 switch (record->vartype)
3610 {
3611 case PGC_BOOL:
3612 {
3613 struct config_bool *conf = &record->_bool;
3614
3615#define newval (newval_union.boolval)
3616
3617 if (value)
3618 {
3619 if (!parse_and_validate_value(record, value,
3620 source, elevel,
3622 return 0;
3623 }
3624 else if (source == PGC_S_DEFAULT)
3625 {
3626 newval = conf->boot_val;
3627 if (!call_bool_check_hook(record, &newval, &newextra,
3628 source, elevel))
3629 return 0;
3630 }
3631 else
3632 {
3633 newval = conf->reset_val;
3634 newextra = record->reset_extra;
3635 source = record->reset_source;
3636 context = record->reset_scontext;
3637 srole = record->reset_srole;
3638 }
3639
3641 {
3642 /* Release newextra, unless it's reset_extra */
3643 if (newextra && !extra_field_used(record, newextra))
3645
3646 if (*conf->variable != newval)
3647 {
3648 record->status |= GUC_PENDING_RESTART;
3649 ereport(elevel,
3651 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3652 record->name)));
3653 return 0;
3654 }
3655 record->status &= ~GUC_PENDING_RESTART;
3656 return -1;
3657 }
3658
3659 if (changeVal)
3660 {
3661 /* Save old value to support transaction abort */
3662 if (!makeDefault)
3663 push_old_value(record, action);
3664
3665 if (conf->assign_hook)
3666 conf->assign_hook(newval, newextra);
3667 *conf->variable = newval;
3668 set_extra_field(record, &record->extra,
3669 newextra);
3670 set_guc_source(record, source);
3671 record->scontext = context;
3672 record->srole = srole;
3673 }
3674 if (makeDefault)
3675 {
3676 if (record->reset_source <= source)
3677 {
3678 conf->reset_val = newval;
3679 set_extra_field(record, &record->reset_extra,
3680 newextra);
3681 record->reset_source = source;
3682 record->reset_scontext = context;
3683 record->reset_srole = srole;
3684 }
3685 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3686 {
3687 if (stack->source <= source)
3688 {
3689 stack->prior.val.boolval = newval;
3690 set_extra_field(record, &stack->prior.extra,
3691 newextra);
3692 stack->source = source;
3693 stack->scontext = context;
3694 stack->srole = srole;
3695 }
3696 }
3697 }
3698
3699 /* Perhaps we didn't install newextra anywhere */
3700 if (newextra && !extra_field_used(record, newextra))
3702 break;
3703
3704#undef newval
3705 }
3706
3707 case PGC_INT:
3708 {
3709 struct config_int *conf = &record->_int;
3710
3711#define newval (newval_union.intval)
3712
3713 if (value)
3714 {
3715 if (!parse_and_validate_value(record, value,
3716 source, elevel,
3718 return 0;
3719 }
3720 else if (source == PGC_S_DEFAULT)
3721 {
3722 newval = conf->boot_val;
3723 if (!call_int_check_hook(record, &newval, &newextra,
3724 source, elevel))
3725 return 0;
3726 }
3727 else
3728 {
3729 newval = conf->reset_val;
3730 newextra = record->reset_extra;
3731 source = record->reset_source;
3732 context = record->reset_scontext;
3733 srole = record->reset_srole;
3734 }
3735
3737 {
3738 /* Release newextra, unless it's reset_extra */
3739 if (newextra && !extra_field_used(record, newextra))
3741
3742 if (*conf->variable != newval)
3743 {
3744 record->status |= GUC_PENDING_RESTART;
3745 ereport(elevel,
3747 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3748 record->name)));
3749 return 0;
3750 }
3751 record->status &= ~GUC_PENDING_RESTART;
3752 return -1;
3753 }
3754
3755 if (changeVal)
3756 {
3757 /* Save old value to support transaction abort */
3758 if (!makeDefault)
3759 push_old_value(record, action);
3760
3761 if (conf->assign_hook)
3762 conf->assign_hook(newval, newextra);
3763 *conf->variable = newval;
3764 set_extra_field(record, &record->extra,
3765 newextra);
3766 set_guc_source(record, source);
3767 record->scontext = context;
3768 record->srole = srole;
3769 }
3770 if (makeDefault)
3771 {
3772 if (record->reset_source <= source)
3773 {
3774 conf->reset_val = newval;
3775 set_extra_field(record, &record->reset_extra,
3776 newextra);
3777 record->reset_source = source;
3778 record->reset_scontext = context;
3779 record->reset_srole = srole;
3780 }
3781 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3782 {
3783 if (stack->source <= source)
3784 {
3785 stack->prior.val.intval = newval;
3786 set_extra_field(record, &stack->prior.extra,
3787 newextra);
3788 stack->source = source;
3789 stack->scontext = context;
3790 stack->srole = srole;
3791 }
3792 }
3793 }
3794
3795 /* Perhaps we didn't install newextra anywhere */
3796 if (newextra && !extra_field_used(record, newextra))
3798 break;
3799
3800#undef newval
3801 }
3802
3803 case PGC_REAL:
3804 {
3805 struct config_real *conf = &record->_real;
3806
3807#define newval (newval_union.realval)
3808
3809 if (value)
3810 {
3811 if (!parse_and_validate_value(record, value,
3812 source, elevel,
3814 return 0;
3815 }
3816 else if (source == PGC_S_DEFAULT)
3817 {
3818 newval = conf->boot_val;
3819 if (!call_real_check_hook(record, &newval, &newextra,
3820 source, elevel))
3821 return 0;
3822 }
3823 else
3824 {
3825 newval = conf->reset_val;
3826 newextra = record->reset_extra;
3827 source = record->reset_source;
3828 context = record->reset_scontext;
3829 srole = record->reset_srole;
3830 }
3831
3833 {
3834 /* Release newextra, unless it's reset_extra */
3835 if (newextra && !extra_field_used(record, newextra))
3837
3838 if (*conf->variable != newval)
3839 {
3840 record->status |= GUC_PENDING_RESTART;
3841 ereport(elevel,
3843 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3844 record->name)));
3845 return 0;
3846 }
3847 record->status &= ~GUC_PENDING_RESTART;
3848 return -1;
3849 }
3850
3851 if (changeVal)
3852 {
3853 /* Save old value to support transaction abort */
3854 if (!makeDefault)
3855 push_old_value(record, action);
3856
3857 if (conf->assign_hook)
3858 conf->assign_hook(newval, newextra);
3859 *conf->variable = newval;
3860 set_extra_field(record, &record->extra,
3861 newextra);
3862 set_guc_source(record, source);
3863 record->scontext = context;
3864 record->srole = srole;
3865 }
3866 if (makeDefault)
3867 {
3868 if (record->reset_source <= source)
3869 {
3870 conf->reset_val = newval;
3871 set_extra_field(record, &record->reset_extra,
3872 newextra);
3873 record->reset_source = source;
3874 record->reset_scontext = context;
3875 record->reset_srole = srole;
3876 }
3877 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3878 {
3879 if (stack->source <= source)
3880 {
3881 stack->prior.val.realval = newval;
3882 set_extra_field(record, &stack->prior.extra,
3883 newextra);
3884 stack->source = source;
3885 stack->scontext = context;
3886 stack->srole = srole;
3887 }
3888 }
3889 }
3890
3891 /* Perhaps we didn't install newextra anywhere */
3892 if (newextra && !extra_field_used(record, newextra))
3894 break;
3895
3896#undef newval
3897 }
3898
3899 case PGC_STRING:
3900 {
3901 struct config_string *conf = &record->_string;
3902 GucContext orig_context = context;
3904 Oid orig_srole = srole;
3905
3906#define newval (newval_union.stringval)
3907
3908 if (value)
3909 {
3910 if (!parse_and_validate_value(record, value,
3911 source, elevel,
3913 return 0;
3914 }
3915 else if (source == PGC_S_DEFAULT)
3916 {
3917 /* non-NULL boot_val must always get strdup'd */
3918 if (conf->boot_val != NULL)
3919 {
3920 newval = guc_strdup(elevel, conf->boot_val);
3921 if (newval == NULL)
3922 return 0;
3923 }
3924 else
3925 newval = NULL;
3926
3927 if (!call_string_check_hook(record, &newval, &newextra,
3928 source, elevel))
3929 {
3931 return 0;
3932 }
3933 }
3934 else
3935 {
3936 /*
3937 * strdup not needed, since reset_val is already under
3938 * guc.c's control
3939 */
3940 newval = conf->reset_val;
3941 newextra = record->reset_extra;
3942 source = record->reset_source;
3943 context = record->reset_scontext;
3944 srole = record->reset_srole;
3945 }
3946
3948 {
3949 bool newval_different;
3950
3951 /* newval shouldn't be NULL, so we're a bit sloppy here */
3952 newval_different = (*conf->variable == NULL ||
3953 newval == NULL ||
3954 strcmp(*conf->variable, newval) != 0);
3955
3956 /* Release newval, unless it's reset_val */
3957 if (newval && !string_field_used(record, newval))
3959 /* Release newextra, unless it's reset_extra */
3960 if (newextra && !extra_field_used(record, newextra))
3962
3963 if (newval_different)
3964 {
3965 record->status |= GUC_PENDING_RESTART;
3966 ereport(elevel,
3968 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3969 record->name)));
3970 return 0;
3971 }
3972 record->status &= ~GUC_PENDING_RESTART;
3973 return -1;
3974 }
3975
3976 if (changeVal)
3977 {
3978 /* Save old value to support transaction abort */
3979 if (!makeDefault)
3980 push_old_value(record, action);
3981
3982 if (conf->assign_hook)
3983 conf->assign_hook(newval, newextra);
3984 set_string_field(record, conf->variable, newval);
3985 set_extra_field(record, &record->extra,
3986 newextra);
3987 set_guc_source(record, source);
3988 record->scontext = context;
3989 record->srole = srole;
3990
3991 /*
3992 * Ugly hack: during SET session_authorization, forcibly
3993 * do SET ROLE NONE with the same context/source/etc, so
3994 * that the effects will have identical lifespan. This is
3995 * required by the SQL spec, and it's not possible to do
3996 * it within the variable's check hook or assign hook
3997 * because our APIs for those don't pass enough info.
3998 * However, don't do it if is_reload: in that case we
3999 * expect that if "role" isn't supposed to be default, it
4000 * has been or will be set by a separate reload action.
4001 *
4002 * Also, for the call from InitializeSessionUserId with
4003 * source == PGC_S_OVERRIDE, use PGC_S_DYNAMIC_DEFAULT for
4004 * "role"'s source, so that it's still possible to set
4005 * "role" from pg_db_role_setting entries. (See notes in
4006 * InitializeSessionUserId before changing this.)
4007 *
4008 * A fine point: for RESET session_authorization, we do
4009 * "RESET role" not "SET ROLE NONE" (by passing down NULL
4010 * rather than "none" for the value). This would have the
4011 * same effects in typical cases, but if the reset value
4012 * of "role" is not "none" it seems better to revert to
4013 * that.
4014 */
4015 if (!is_reload &&
4016 strcmp(record->name, "session_authorization") == 0)
4018 value ? "none" : NULL,
4022 : orig_source,
4023 orig_srole,
4024 action,
4025 true,
4026 elevel,
4027 false);
4028 }
4029
4030 if (makeDefault)
4031 {
4032 if (record->reset_source <= source)
4033 {
4034 set_string_field(record, &conf->reset_val, newval);
4035 set_extra_field(record, &record->reset_extra,
4036 newextra);
4037 record->reset_source = source;
4038 record->reset_scontext = context;
4039 record->reset_srole = srole;
4040 }
4041 for (GucStack *stack = record->stack; stack; stack = stack->prev)
4042 {
4043 if (stack->source <= source)
4044 {
4045 set_string_field(record, &stack->prior.val.stringval,
4046 newval);
4047 set_extra_field(record, &stack->prior.extra,
4048 newextra);
4049 stack->source = source;
4050 stack->scontext = context;
4051 stack->srole = srole;
4052 }
4053 }
4054 }
4055
4056 /* Perhaps we didn't install newval anywhere */
4057 if (newval && !string_field_used(record, newval))
4059 /* Perhaps we didn't install newextra anywhere */
4060 if (newextra && !extra_field_used(record, newextra))
4062 break;
4063
4064#undef newval
4065 }
4066
4067 case PGC_ENUM:
4068 {
4069 struct config_enum *conf = &record->_enum;
4070
4071#define newval (newval_union.enumval)
4072
4073 if (value)
4074 {
4075 if (!parse_and_validate_value(record, value,
4076 source, elevel,
4078 return 0;
4079 }
4080 else if (source == PGC_S_DEFAULT)
4081 {
4082 newval = conf->boot_val;
4083 if (!call_enum_check_hook(record, &newval, &newextra,
4084 source, elevel))
4085 return 0;
4086 }
4087 else
4088 {
4089 newval = conf->reset_val;
4090 newextra = record->reset_extra;
4091 source = record->reset_source;
4092 context = record->reset_scontext;
4093 srole = record->reset_srole;
4094 }
4095
4097 {
4098 /* Release newextra, unless it's reset_extra */
4099 if (newextra && !extra_field_used(record, newextra))
4101
4102 if (*conf->variable != newval)
4103 {
4104 record->status |= GUC_PENDING_RESTART;
4105 ereport(elevel,
4107 errmsg("parameter \"%s\" cannot be changed without restarting the server",
4108 record->name)));
4109 return 0;
4110 }
4111 record->status &= ~GUC_PENDING_RESTART;
4112 return -1;
4113 }
4114
4115 if (changeVal)
4116 {
4117 /* Save old value to support transaction abort */
4118 if (!makeDefault)
4119 push_old_value(record, action);
4120
4121 if (conf->assign_hook)
4122 conf->assign_hook(newval, newextra);
4123 *conf->variable = newval;
4124 set_extra_field(record, &record->extra,
4125 newextra);
4126 set_guc_source(record, source);
4127 record->scontext = context;
4128 record->srole = srole;
4129 }
4130 if (makeDefault)
4131 {
4132 if (record->reset_source <= source)
4133 {
4134 conf->reset_val = newval;
4135 set_extra_field(record, &record->reset_extra,
4136 newextra);
4137 record->reset_source = source;
4138 record->reset_scontext = context;
4139 record->reset_srole = srole;
4140 }
4141 for (GucStack *stack = record->stack; stack; stack = stack->prev)
4142 {
4143 if (stack->source <= source)
4144 {
4145 stack->prior.val.enumval = newval;
4146 set_extra_field(record, &stack->prior.extra,
4147 newextra);
4148 stack->source = source;
4149 stack->scontext = context;
4150 stack->srole = srole;
4151 }
4152 }
4153 }
4154
4155 /* Perhaps we didn't install newextra anywhere */
4156 if (newextra && !extra_field_used(record, newextra))
4158 break;
4159
4160#undef newval
4161 }
4162 }
4163
4164 if (changeVal && (record->flags & GUC_REPORT) &&
4165 !(record->status & GUC_NEEDS_REPORT))
4166 {
4167 record->status |= GUC_NEEDS_REPORT;
4169 }
4170
4171 return changeVal ? 1 : -1;
4172}
4173
4174
4175/*
4176 * Retrieve a config_handle for the given name, suitable for calling
4177 * set_config_with_handle(). Only return handle to permanent GUC.
4178 */
4181{
4182 struct config_generic *gen = find_option(name, false, false, 0);
4183
4184 if (gen && ((gen->flags & GUC_CUSTOM_PLACEHOLDER) == 0))
4185 return gen;
4186
4187 return NULL;
4188}
4189
4190
4191/*
4192 * Set the fields for source file and line number the setting came from.
4193 */
4194static void
4196{
4197 struct config_generic *record;
4198 int elevel;
4199
4200 /*
4201 * To avoid cluttering the log, only the postmaster bleats loudly about
4202 * problems with the config file.
4203 */
4204 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4205
4206 record = find_option(name, true, false, elevel);
4207 /* should not happen */
4208 if (record == NULL)
4209 return;
4210
4211 sourcefile = guc_strdup(elevel, sourcefile);
4212 guc_free(record->sourcefile);
4213 record->sourcefile = sourcefile;
4214 record->sourceline = sourceline;
4215}
4216
4217/*
4218 * Set a config option to the given value.
4219 *
4220 * See also set_config_option; this is just the wrapper to be called from
4221 * outside GUC. (This function should be used when possible, because its API
4222 * is more stable than set_config_option's.)
4223 *
4224 * Note: there is no support here for setting source file/line, as it
4225 * is currently not needed.
4226 */
4227void
4228SetConfigOption(const char *name, const char *value,
4230{
4232 GUC_ACTION_SET, true, 0, false);
4233}
4234
4235
4236
4237/*
4238 * Fetch the current value of the option `name', as a string.
4239 *
4240 * If the option doesn't exist, return NULL if missing_ok is true,
4241 * otherwise throw an ereport and don't return.
4242 *
4243 * If restrict_privileged is true, we also enforce that only superusers and
4244 * members of the pg_read_all_settings role can see GUC_SUPERUSER_ONLY
4245 * variables. This should only be passed as true in user-driven calls.
4246 *
4247 * The string is *not* allocated for modification and is really only
4248 * valid until the next call to configuration related functions.
4249 */
4250const char *
4251GetConfigOption(const char *name, bool missing_ok, bool restrict_privileged)
4252{
4253 struct config_generic *record;
4254 static char buffer[256];
4255
4256 record = find_option(name, false, missing_ok, ERROR);
4257 if (record == NULL)
4258 return NULL;
4259 if (restrict_privileged &&
4260 !ConfigOptionIsVisible(record))
4261 ereport(ERROR,
4263 errmsg("permission denied to examine \"%s\"", name),
4264 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4265 "pg_read_all_settings")));
4266
4267 switch (record->vartype)
4268 {
4269 case PGC_BOOL:
4270 return *record->_bool.variable ? "on" : "off";
4271
4272 case PGC_INT:
4273 snprintf(buffer, sizeof(buffer), "%d",
4274 *record->_int.variable);
4275 return buffer;
4276
4277 case PGC_REAL:
4278 snprintf(buffer, sizeof(buffer), "%g",
4279 *record->_real.variable);
4280 return buffer;
4281
4282 case PGC_STRING:
4283 return *record->_string.variable ?
4284 *record->_string.variable : "";
4285
4286 case PGC_ENUM:
4287 return config_enum_lookup_by_value(record,
4288 *record->_enum.variable);
4289 }
4290 return NULL;
4291}
4292
4293/*
4294 * Get the RESET value associated with the given option.
4295 *
4296 * Note: this is not re-entrant, due to use of static result buffer;
4297 * not to mention that a string variable could have its reset_val changed.
4298 * Beware of assuming the result value is good for very long.
4299 */
4300const char *
4302{
4303 struct config_generic *record;
4304 static char buffer[256];
4305
4306 record = find_option(name, false, false, ERROR);
4307 Assert(record != NULL);
4308 if (!ConfigOptionIsVisible(record))
4309 ereport(ERROR,
4311 errmsg("permission denied to examine \"%s\"", name),
4312 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4313 "pg_read_all_settings")));
4314
4315 switch (record->vartype)
4316 {
4317 case PGC_BOOL:
4318 return record->_bool.reset_val ? "on" : "off";
4319
4320 case PGC_INT:
4321 snprintf(buffer, sizeof(buffer), "%d",
4322 record->_int.reset_val);
4323 return buffer;
4324
4325 case PGC_REAL:
4326 snprintf(buffer, sizeof(buffer), "%g",
4327 record->_real.reset_val);
4328 return buffer;
4329
4330 case PGC_STRING:
4331 return record->_string.reset_val ?
4332 record->_string.reset_val : "";
4333
4334 case PGC_ENUM:
4335 return config_enum_lookup_by_value(record,
4336 record->_enum.reset_val);
4337 }
4338 return NULL;
4339}
4340
4341/*
4342 * Get the GUC flags associated with the given option.
4343 *
4344 * If the option doesn't exist, return 0 if missing_ok is true,
4345 * otherwise throw an ereport and don't return.
4346 */
4347int
4348GetConfigOptionFlags(const char *name, bool missing_ok)
4349{
4350 struct config_generic *record;
4351
4352 record = find_option(name, false, missing_ok, ERROR);
4353 if (record == NULL)
4354 return 0;
4355 return record->flags;
4356}
4357
4358
4359/*
4360 * Write updated configuration parameter values into a temporary file.
4361 * This function traverses the list of parameters and quotes the string
4362 * values before writing them.
4363 */
4364static void
4366{
4368
4370
4371 /* Emit file header containing warning comment */
4372 appendStringInfoString(&buf, "# Do not edit this file manually!\n");
4373 appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
4374
4375 errno = 0;
4376 if (write(fd, buf.data, buf.len) != buf.len)
4377 {
4378 /* if write didn't set errno, assume problem is no disk space */
4379 if (errno == 0)
4380 errno = ENOSPC;
4381 ereport(ERROR,
4383 errmsg("could not write to file \"%s\": %m", filename)));
4384 }
4385
4386 /* Emit each parameter, properly quoting the value */
4387 for (ConfigVariable *item = head; item != NULL; item = item->next)
4388 {
4389 char *escaped;
4390
4392
4393 appendStringInfoString(&buf, item->name);
4394 appendStringInfoString(&buf, " = '");
4395
4396 escaped = escape_single_quotes_ascii(item->value);
4397 if (!escaped)
4398 ereport(ERROR,
4400 errmsg("out of memory")));
4402 free(escaped);
4403
4404 appendStringInfoString(&buf, "'\n");
4405
4406 errno = 0;
4407 if (write(fd, buf.data, buf.len) != buf.len)
4408 {
4409 /* if write didn't set errno, assume problem is no disk space */
4410 if (errno == 0)
4411 errno = ENOSPC;
4412 ereport(ERROR,
4414 errmsg("could not write to file \"%s\": %m", filename)));
4415 }
4416 }
4417
4418 /* fsync before considering the write to be successful */
4419 if (pg_fsync(fd) != 0)
4420 ereport(ERROR,
4422 errmsg("could not fsync file \"%s\": %m", filename)));
4423
4424 pfree(buf.data);
4425}
4426
4427/*
4428 * Update the given list of configuration parameters, adding, replacing
4429 * or deleting the entry for item "name" (delete if "value" == NULL).
4430 */
4431static void
4433 const char *name, const char *value)
4434{
4435 ConfigVariable *newitem,
4436 *next,
4437 *prev = NULL;
4438
4439 /*
4440 * Remove any existing match(es) for "name". Normally there'd be at most
4441 * one, but if external tools have modified the config file, there could
4442 * be more.
4443 */
4444 for (ConfigVariable *item = *head_p; item != NULL; item = next)
4445 {
4446 next = item->next;
4447 if (guc_name_compare(item->name, name) == 0)
4448 {
4449 /* found a match, delete it */
4450 if (prev)
4451 prev->next = next;
4452 else
4453 *head_p = next;
4454 if (next == NULL)
4455 *tail_p = prev;
4456
4457 pfree(item->name);
4458 pfree(item->value);
4459 pfree(item->filename);
4460 pfree(item);
4461 }
4462 else
4463 prev = item;
4464 }
4465
4466 /* Done if we're trying to delete it */
4467 if (value == NULL)
4468 return;
4469
4470 /* OK, append a new entry */
4471 newitem = palloc_object(ConfigVariable);
4472 newitem->name = pstrdup(name);
4473 newitem->value = pstrdup(value);
4474 newitem->errmsg = NULL;
4475 newitem->filename = pstrdup(""); /* new item has no location */
4476 newitem->sourceline = 0;
4477 newitem->ignore = false;
4478 newitem->applied = false;
4479 newitem->next = NULL;
4480
4481 if (*head_p == NULL)
4482 *head_p = newitem;
4483 else
4484 (*tail_p)->next = newitem;
4485 *tail_p = newitem;
4486}
4487
4488
4489/*
4490 * Execute ALTER SYSTEM statement.
4491 *
4492 * Read the old PG_AUTOCONF_FILENAME file, merge in the new variable value,
4493 * and write out an updated file. If the command is ALTER SYSTEM RESET ALL,
4494 * we can skip reading the old file and just write an empty file.
4495 *
4496 * An LWLock is used to serialize updates of the configuration file.
4497 *
4498 * In case of an error, we leave the original automatic
4499 * configuration file (PG_AUTOCONF_FILENAME) intact.
4500 */
4501void
4503{
4504 char *name;
4505 char *value;
4506 bool resetall = false;
4507 ConfigVariable *head = NULL;
4508 ConfigVariable *tail = NULL;
4509 volatile int Tmpfd;
4512
4513 /*
4514 * Extract statement arguments
4515 */
4516 name = altersysstmt->setstmt->name;
4517
4518 if (!AllowAlterSystem)
4519 ereport(ERROR,
4521 errmsg("ALTER SYSTEM is not allowed in this environment")));
4522
4523 switch (altersysstmt->setstmt->kind)
4524 {
4525 case VAR_SET_VALUE:
4527 break;
4528
4529 case VAR_SET_DEFAULT:
4530 case VAR_RESET:
4531 value = NULL;
4532 break;
4533
4534 case VAR_RESET_ALL:
4535 value = NULL;
4536 resetall = true;
4537 break;
4538
4539 default:
4540 elog(ERROR, "unrecognized alter system stmt type: %d",
4541 altersysstmt->setstmt->kind);
4542 break;
4543 }
4544
4545 /*
4546 * Check permission to run ALTER SYSTEM on the target variable
4547 */
4548 if (!superuser())
4549 {
4550 if (resetall)
4551 ereport(ERROR,
4553 errmsg("permission denied to perform ALTER SYSTEM RESET ALL")));
4554 else
4555 {
4557
4560 if (aclresult != ACLCHECK_OK)
4561 ereport(ERROR,
4563 errmsg("permission denied to set parameter \"%s\"",
4564 name)));
4565 }
4566 }
4567
4568 /*
4569 * Unless it's RESET_ALL, validate the target variable and value
4570 */
4571 if (!resetall)
4572 {
4573 struct config_generic *record;
4574
4575 /* We don't want to create a placeholder if there's not one already */
4576 record = find_option(name, false, true, DEBUG5);
4577 if (record != NULL)
4578 {
4579 /*
4580 * Don't allow parameters that can't be set in configuration files
4581 * to be set in PG_AUTOCONF_FILENAME file.
4582 */
4583 if ((record->context == PGC_INTERNAL) ||
4584 (record->flags & GUC_DISALLOW_IN_FILE) ||
4585 (record->flags & GUC_DISALLOW_IN_AUTO_FILE))
4586 ereport(ERROR,
4588 errmsg("parameter \"%s\" cannot be changed",
4589 name)));
4590
4591 /*
4592 * If a value is specified, verify that it's sane.
4593 */
4594 if (value)
4595 {
4596 union config_var_val newval;
4597 void *newextra = NULL;
4598
4599 if (!parse_and_validate_value(record, value,
4601 &newval, &newextra))
4602 ereport(ERROR,
4604 errmsg("invalid value for parameter \"%s\": \"%s\"",
4605 name, value)));
4606
4607 if (record->vartype == PGC_STRING && newval.stringval != NULL)
4608 guc_free(newval.stringval);
4610 }
4611 }
4612 else
4613 {
4614 /*
4615 * Variable not known; check we'd be allowed to create it. (We
4616 * cannot validate the value, but that's fine. A non-core GUC in
4617 * the config file cannot cause postmaster start to fail, so we
4618 * don't have to be too tense about possibly installing a bad
4619 * value.)
4620 *
4621 * As an exception, we skip this check if this is a RESET command
4622 * for an unknown custom GUC, else there'd be no way for users to
4623 * remove such settings with reserved prefixes.
4624 */
4627 }
4628
4629 /*
4630 * We must also reject values containing newlines, because the grammar
4631 * for config files doesn't support embedded newlines in string
4632 * literals.
4633 */
4634 if (value && strchr(value, '\n'))
4635 ereport(ERROR,
4637 errmsg("parameter value for ALTER SYSTEM must not contain a newline")));
4638 }
4639
4640 /*
4641 * PG_AUTOCONF_FILENAME and its corresponding temporary file are always in
4642 * the data directory, so we can reference them by simple relative paths.
4643 */
4648 "tmp");
4649
4650 /*
4651 * Only one backend is allowed to operate on PG_AUTOCONF_FILENAME at a
4652 * time. Use AutoFileLock to ensure that. We must hold the lock while
4653 * reading the old file contents.
4654 */
4656
4657 /*
4658 * If we're going to reset everything, then no need to open or parse the
4659 * old file. We'll just write out an empty list.
4660 */
4661 if (!resetall)
4662 {
4663 struct stat st;
4664
4665 if (stat(AutoConfFileName, &st) == 0)
4666 {
4667 /* open old file PG_AUTOCONF_FILENAME */
4668 FILE *infile;
4669
4671 if (infile == NULL)
4672 ereport(ERROR,
4674 errmsg("could not open file \"%s\": %m",
4676
4677 /* parse it */
4679 LOG, &head, &tail))
4680 ereport(ERROR,
4682 errmsg("could not parse contents of file \"%s\"",
4684
4686 }
4687
4688 /*
4689 * Now, replace any existing entry with the new value, or add it if
4690 * not present.
4691 */
4692 replace_auto_config_value(&head, &tail, name, value);
4693 }
4694
4695 /*
4696 * Invoke the post-alter hook for setting this GUC variable. GUCs
4697 * typically do not have corresponding entries in pg_parameter_acl, so we
4698 * call the hook using the name rather than a potentially-non-existent
4699 * OID. Nonetheless, we pass ParameterAclRelationId so that this call
4700 * context can be distinguished from others. (Note that "name" will be
4701 * NULL in the RESET ALL case.)
4702 *
4703 * We do this here rather than at the end, because ALTER SYSTEM is not
4704 * transactional. If the hook aborts our transaction, it will be cleaner
4705 * to do so before we touch any files.
4706 */
4709 altersysstmt->setstmt->kind,
4710 false);
4711
4712 /*
4713 * To ensure crash safety, first write the new file data to a temp file,
4714 * then atomically rename it into place.
4715 *
4716 * If there is a temp file left over due to a previous crash, it's okay to
4717 * truncate and reuse it.
4718 */
4720 O_CREAT | O_RDWR | O_TRUNC);
4721 if (Tmpfd < 0)
4722 ereport(ERROR,
4724 errmsg("could not open file \"%s\": %m",
4726
4727 /*
4728 * Use a TRY block to clean up the file if we fail. Since we need a TRY
4729 * block anyway, OK to use BasicOpenFile rather than OpenTransientFile.
4730 */
4731 PG_TRY();
4732 {
4733 /* Write and sync the new contents to the temporary file */
4735
4736 /* Close before renaming; may be required on some platforms */
4737 close(Tmpfd);
4738 Tmpfd = -1;
4739
4740 /*
4741 * As the rename is atomic operation, if any problem occurs after this
4742 * at worst it can lose the parameters set by last ALTER SYSTEM
4743 * command.
4744 */
4746 }
4747 PG_CATCH();
4748 {
4749 /* Close file first, else unlink might fail on some platforms */
4750 if (Tmpfd >= 0)
4751 close(Tmpfd);
4752
4753 /* Unlink, but ignore any error */
4755
4756 PG_RE_THROW();
4757 }
4758 PG_END_TRY();
4759
4760 FreeConfigVariables(head);
4761
4763}
4764
4765
4766/*
4767 * Common code for DefineCustomXXXVariable subroutines: allocate the
4768 * new variable's config struct and fill in generic fields.
4769 */
4770static struct config_generic *
4772 const char *short_desc,
4773 const char *long_desc,
4775 int flags,
4776 enum config_type type)
4777{
4778 struct config_generic *gen;
4779
4780 /*
4781 * Only allow custom PGC_POSTMASTER variables to be created during shared
4782 * library preload; any later than that, we can't ensure that the value
4783 * doesn't change after startup. This is a fatal elog if it happens; just
4784 * erroring out isn't safe because we don't know what the calling loadable
4785 * module might already have hooked into.
4786 */
4787 if (context == PGC_POSTMASTER &&
4789 elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
4790
4791 /*
4792 * We can't support custom GUC_LIST_QUOTE variables, because the wrong
4793 * things would happen if such a variable were set or pg_dump'd when the
4794 * defining extension isn't loaded. Again, treat this as fatal because
4795 * the loadable module may be partly initialized already.
4796 */
4797 if (flags & GUC_LIST_QUOTE)
4798 elog(FATAL, "extensions cannot define GUC_LIST_QUOTE variables");
4799
4800 /*
4801 * Before pljava commit 398f3b876ed402bdaec8bc804f29e2be95c75139
4802 * (2015-12-15), two of that module's PGC_USERSET variables facilitated
4803 * trivial escalation to superuser privileges. Restrict the variables to
4804 * protect sites that have yet to upgrade pljava.
4805 */
4806 if (context == PGC_USERSET &&
4807 (strcmp(name, "pljava.classpath") == 0 ||
4808 strcmp(name, "pljava.vmoptions") == 0))
4810
4811 /* As above, an OOM here is FATAL */
4812 gen = (struct config_generic *) guc_malloc(FATAL, sizeof(struct config_generic));
4813 memset(gen, 0, sizeof(struct config_generic));
4814
4815 gen->name = guc_strdup(FATAL, name);
4816 gen->context = context;
4817 gen->group = CUSTOM_OPTIONS;
4818 gen->short_desc = short_desc;
4819 gen->long_desc = long_desc;
4820 gen->flags = flags;
4821 gen->vartype = type;
4822
4823 return gen;
4824}
4825
4826/*
4827 * Common code for DefineCustomXXXVariable subroutines: insert the new
4828 * variable into the GUC variable hash, replacing any placeholder.
4829 */
4830static void
4832{
4833 const char *name = variable->name;
4835 struct config_generic *pHolder;
4836
4837 /* Check mapping between initial and default value */
4839
4840 /*
4841 * See if there's a placeholder by the same name.
4842 */
4844 &name,
4845 HASH_FIND,
4846 NULL);
4847 if (hentry == NULL)
4848 {
4849 /*
4850 * No placeholder to replace, so we can just add it ... but first,
4851 * make sure it's initialized to its default value.
4852 */
4855 return;
4856 }
4857
4858 /*
4859 * This better be a placeholder
4860 */
4861 if ((hentry->gucvar->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4862 ereport(ERROR,
4864 errmsg("attempt to redefine parameter \"%s\"", name)));
4865
4866 Assert(hentry->gucvar->vartype == PGC_STRING);
4867 pHolder = hentry->gucvar;
4868
4869 /*
4870 * First, set the variable to its default value. We must do this even
4871 * though we intend to immediately apply a new value, since it's possible
4872 * that the new value is invalid.
4873 */
4875
4876 /*
4877 * Replace the placeholder in the hash table. We aren't changing the name
4878 * (at least up to case-folding), so the hash value is unchanged.
4879 */
4880 hentry->gucname = name;
4881 hentry->gucvar = variable;
4882
4883 /*
4884 * Remove the placeholder from any lists it's in, too.
4885 */
4887
4888 /*
4889 * Assign the string value(s) stored in the placeholder to the real
4890 * variable. Essentially, we need to duplicate all the active and stacked
4891 * values, but with appropriate validation and datatype adjustment.
4892 *
4893 * If an assignment fails, we report a WARNING and keep going. We don't
4894 * want to throw ERROR for bad values, because it'd bollix the add-on
4895 * module that's presumably halfway through getting loaded. In such cases
4896 * the default or previous state will become active instead.
4897 */
4898
4899 /* First, apply the reset value if any */
4900 if (pHolder->_string.reset_val)
4901 (void) set_config_option_ext(name, pHolder->_string.reset_val,
4902 pHolder->reset_scontext,
4903 pHolder->reset_source,
4904 pHolder->reset_srole,
4905 GUC_ACTION_SET, true, WARNING, false);
4906 /* That should not have resulted in stacking anything */
4907 Assert(variable->stack == NULL);
4908
4909 /* Now, apply current and stacked values, in the order they were stacked */
4911 *(pHolder->_string.variable),
4912 pHolder->scontext, pHolder->source,
4913 pHolder->srole);
4914
4915 /* Also copy over any saved source-location information */
4916 if (pHolder->sourcefile)
4917 set_config_sourcefile(name, pHolder->sourcefile,
4918 pHolder->sourceline);
4919
4920 /* Now we can free the no-longer-referenced placeholder variable */
4922}
4923
4924/*
4925 * Recursive subroutine for define_custom_variable: reapply non-reset values
4926 *
4927 * We recurse so that the values are applied in the same order as originally.
4928 * At each recursion level, apply the upper-level value (passed in) in the
4929 * fashion implied by the stack entry.
4930 */
4931static void
4933 struct config_generic *pHolder,
4934 GucStack *stack,
4935 const char *curvalue,
4937 Oid cursrole)
4938{
4939 const char *name = variable->name;
4940 GucStack *oldvarstack = variable->stack;
4941
4942 if (stack != NULL)
4943 {
4944 /* First, recurse, so that stack items are processed bottom to top */
4948
4949 /* See how to apply the passed-in value */
4950 switch (stack->state)
4951 {
4952 case GUC_SAVE:
4955 GUC_ACTION_SAVE, true,
4956 WARNING, false);
4957 break;
4958
4959 case GUC_SET:
4962 GUC_ACTION_SET, true,
4963 WARNING, false);
4964 break;
4965
4966 case GUC_LOCAL:
4969 GUC_ACTION_LOCAL, true,
4970 WARNING, false);
4971 break;
4972
4973 case GUC_SET_LOCAL:
4974 /* first, apply the masked value as SET */
4979 GUC_ACTION_SET, true,
4980 WARNING, false);
4981 /* then apply the current value as LOCAL */
4984 GUC_ACTION_LOCAL, true,
4985 WARNING, false);
4986 break;
4987 }
4988
4989 /* If we successfully made a stack entry, adjust its nest level */
4990 if (variable->stack != oldvarstack)
4991 variable->stack->nest_level = stack->nest_level;
4992 }
4993 else
4994 {
4995 /*
4996 * We are at the end of the stack. If the active/previous value is
4997 * different from the reset value, it must represent a previously
4998 * committed session value. Apply it, and then drop the stack entry
4999 * that set_config_option will have created under the impression that
5000 * this is to be just a transactional assignment. (We leak the stack
5001 * entry.)
5002 */
5003 if (curvalue != pHolder->_string.reset_val ||
5004 curscontext != pHolder->reset_scontext ||
5005 cursource != pHolder->reset_source ||
5006 cursrole != pHolder->reset_srole)
5007 {
5010 GUC_ACTION_SET, true, WARNING, false);
5011 if (variable->stack != NULL)
5012 {
5013 slist_delete(&guc_stack_list, &variable->stack_link);
5014 variable->stack = NULL;
5015 }
5016 }
5017 }
5018}
5019
5020/*
5021 * Free up a no-longer-referenced placeholder GUC variable.
5022 *
5023 * This neglects any stack items, so it's possible for some memory to be
5024 * leaked. Since this can only happen once per session per variable, it
5025 * doesn't seem worth spending much code on.
5026 */
5027static void
5029{
5030 /* Placeholders are always STRING type, so free their values */
5031 Assert(pHolder->vartype == PGC_STRING);
5032 set_string_field(pHolder, pHolder->_string.variable, NULL);
5033 set_string_field(pHolder, &pHolder->_string.reset_val, NULL);
5034
5035 guc_free(unconstify(char *, pHolder->name));
5037}
5038
5039/*
5040 * Functions for extensions to call to define their custom GUC variables.
5041 */
5042void
5044 const char *short_desc,
5045 const char *long_desc,
5046 bool *valueAddr,
5047 bool bootValue,
5049 int flags,
5050 GucBoolCheckHook check_hook,
5051 GucBoolAssignHook assign_hook,
5052 GucShowHook show_hook)
5053{
5054 struct config_generic *var;
5055
5057 var->_bool.variable = valueAddr;
5058 var->_bool.boot_val = bootValue;
5059 var->_bool.reset_val = bootValue;
5060 var->_bool.check_hook = check_hook;
5061 var->_bool.assign_hook = assign_hook;
5062 var->_bool.show_hook = show_hook;
5064}
5065
5066void
5068 const char *short_desc,
5069 const char *long_desc,
5070 int *valueAddr,
5071 int bootValue,
5072 int minValue,
5073 int maxValue,
5075 int flags,
5076 GucIntCheckHook check_hook,
5077 GucIntAssignHook assign_hook,
5078 GucShowHook show_hook)
5079{
5080 struct config_generic *var;
5081
5083 var->_int.variable = valueAddr;
5084 var->_int.boot_val = bootValue;
5085 var->_int.reset_val = bootValue;
5086 var->_int.min = minValue;
5087 var->_int.max = maxValue;
5088 var->_int.check_hook = check_hook;
5089 var->_int.assign_hook = assign_hook;
5090 var->_int.show_hook = show_hook;
5092}
5093
5094void
5096 const char *short_desc,
5097 const char *long_desc,
5098 double *valueAddr,
5099 double bootValue,
5100 double minValue,
5101 double maxValue,
5103 int flags,
5104 GucRealCheckHook check_hook,
5105 GucRealAssignHook assign_hook,
5106 GucShowHook show_hook)
5107{
5108 struct config_generic *var;
5109
5111 var->_real.variable = valueAddr;
5112 var->_real.boot_val = bootValue;
5113 var->_real.reset_val = bootValue;
5114 var->_real.min = minValue;
5115 var->_real.max = maxValue;
5116 var->_real.check_hook = check_hook;
5117 var->_real.assign_hook = assign_hook;
5118 var->_real.show_hook = show_hook;
5120}
5121
5122void
5124 const char *short_desc,
5125 const char *long_desc,
5126 char **valueAddr,
5127 const char *bootValue,
5129 int flags,
5130 GucStringCheckHook check_hook,
5131 GucStringAssignHook assign_hook,
5132 GucShowHook show_hook)
5133{
5134 struct config_generic *var;
5135
5137 var->_string.variable = valueAddr;
5138 var->_string.boot_val = bootValue;
5139 var->_string.check_hook = check_hook;
5140 var->_string.assign_hook = assign_hook;
5141 var->_string.show_hook = show_hook;
5143}
5144
5145void
5147 const char *short_desc,
5148 const char *long_desc,
5149 int *valueAddr,
5150 int bootValue,
5151 const struct config_enum_entry *options,
5153 int flags,
5154 GucEnumCheckHook check_hook,
5155 GucEnumAssignHook assign_hook,
5156 GucShowHook show_hook)
5157{
5158 struct config_generic *var;
5159
5161 var->_enum.variable = valueAddr;
5162 var->_enum.boot_val = bootValue;
5163 var->_enum.reset_val = bootValue;
5164 var->_enum.options = options;
5165 var->_enum.check_hook = check_hook;
5166 var->_enum.assign_hook = assign_hook;
5167 var->_enum.show_hook = show_hook;
5169}
5170
5171/*
5172 * Mark the given GUC prefix as "reserved".
5173 *
5174 * This deletes any existing placeholders matching the prefix,
5175 * and then prevents new ones from being created.
5176 * Extensions should call this after they've defined all of their custom
5177 * GUCs, to help catch misspelled config-file entries.
5178 */
5179void
5181{
5182 int classLen = strlen(className);
5185 MemoryContext oldcontext;
5186
5187 /*
5188 * Check for existing placeholders. We must actually remove invalid
5189 * placeholders, else future parallel worker startups will fail.
5190 */
5192 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
5193 {
5194 struct config_generic *var = hentry->gucvar;
5195
5196 if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5197 strncmp(className, var->name, classLen) == 0 &&
5199 {
5202 errmsg("invalid configuration parameter name \"%s\", removing it",
5203 var->name),
5204 errdetail("\"%s\" is now a reserved prefix.",
5205 className)));
5206 /* Remove it from the hash table */
5208 &var->name,
5210 NULL);
5211 /* Remove it from any lists it's in, too */
5212 RemoveGUCFromLists(var);
5213 /* And free it */
5214 free_placeholder(var);
5215 }
5216 }
5217
5218 /* And remember the name so we can prevent future mistakes. */
5221 MemoryContextSwitchTo(oldcontext);
5222}
5223
5224
5225/*
5226 * Return an array of modified GUC options to show in EXPLAIN.
5227 *
5228 * We only report options related to query planning (marked with GUC_EXPLAIN),
5229 * with values different from their built-in defaults.
5230 */
5231struct config_generic **
5233{
5234 struct config_generic **result;
5235 dlist_iter iter;
5236
5237 *num = 0;
5238
5239 /*
5240 * While only a fraction of all the GUC variables are marked GUC_EXPLAIN,
5241 * it doesn't seem worth dynamically resizing this array.
5242 */
5244
5245 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5247 {
5249 nondef_link, iter.cur);
5250 bool modified;
5251
5252 /* return only parameters marked for inclusion in explain */
5253 if (!(conf->flags & GUC_EXPLAIN))
5254 continue;
5255
5256 /* return only options visible to the current user */
5258 continue;
5259
5260 /* return only options that are different from their boot values */
5261 modified = false;
5262
5263 switch (conf->vartype)
5264 {
5265 case PGC_BOOL:
5266 {
5267 struct config_bool *lconf = &conf->_bool;
5268
5269 modified = (lconf->boot_val != *(lconf->variable));
5270 }
5271 break;
5272
5273 case PGC_INT:
5274 {
5275 struct config_int *lconf = &conf->_int;
5276
5277 modified = (lconf->boot_val != *(lconf->variable));
5278 }
5279 break;
5280
5281 case PGC_REAL:
5282 {
5283 struct config_real *lconf = &conf->_real;
5284
5285 modified = (lconf->boot_val != *(lconf->variable));
5286 }
5287 break;
5288
5289 case PGC_STRING:
5290 {
5291 struct config_string *lconf = &conf->_string;
5292
5293 if (lconf->boot_val == NULL &&
5294 *lconf->variable == NULL)
5295 modified = false;
5296 else if (lconf->boot_val == NULL ||
5297 *lconf->variable == NULL)
5298 modified = true;
5299 else
5300 modified = (strcmp(lconf->boot_val, *(lconf->variable)) != 0);
5301 }
5302 break;
5303
5304 case PGC_ENUM:
5305 {
5306 struct config_enum *lconf = &conf->_enum;
5307
5308 modified = (lconf->boot_val != *(lconf->variable));
5309 }
5310 break;
5311
5312 default:
5313 elog(ERROR, "unexpected GUC type: %d", conf->vartype);
5314 }
5315
5316 if (!modified)
5317 continue;
5318
5319 /* OK, report it */
5320 result[*num] = conf;
5321 *num = *num + 1;
5322 }
5323
5324 return result;
5325}
5326
5327/*
5328 * Return GUC variable value by name; optionally return canonical form of
5329 * name. If the GUC is unset, then throw an error unless missing_ok is true,
5330 * in which case return NULL. Return value is palloc'd (but *varname isn't).
5331 */
5332char *
5333GetConfigOptionByName(const char *name, const char **varname, bool missing_ok)
5334{
5335 struct config_generic *record;
5336
5337 record = find_option(name, false, missing_ok, ERROR);
5338 if (record == NULL)
5339 {
5340 if (varname)
5341 *varname = NULL;
5342 return NULL;
5343 }
5344
5345 if (!ConfigOptionIsVisible(record))
5346 ereport(ERROR,
5348 errmsg("permission denied to examine \"%s\"", name),
5349 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
5350 "pg_read_all_settings")));
5351
5352 if (varname)
5353 *varname = record->name;
5354
5355 return ShowGUCOption(record, true);
5356}
5357
5358/*
5359 * ShowGUCOption: get string value of variable
5360 *
5361 * We express a numeric value in appropriate units if it has units and
5362 * use_units is true; else you just get the raw number.
5363 * The result string is palloc'd.
5364 */
5365char *
5366ShowGUCOption(const struct config_generic *record, bool use_units)
5367{
5368 char buffer[256];
5369 const char *val;
5370
5371 switch (record->vartype)
5372 {
5373 case PGC_BOOL:
5374 {
5375 const struct config_bool *conf = &record->_bool;
5376
5377 if (conf->show_hook)
5378 val = conf->show_hook();
5379 else
5380 val = *conf->variable ? "on" : "off";
5381 }
5382 break;
5383
5384 case PGC_INT:
5385 {
5386 const struct config_int *conf = &record->_int;
5387
5388 if (conf->show_hook)
5389 val = conf->show_hook();
5390 else
5391 {
5392 /*
5393 * Use int64 arithmetic to avoid overflows in units
5394 * conversion.
5395 */
5396 int64 result = *conf->variable;
5397 const char *unit;
5398
5399 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5401 record->flags & GUC_UNIT,
5402 &result, &unit);
5403 else
5404 unit = "";
5405
5406 snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
5407 result, unit);
5408 val = buffer;
5409 }
5410 }
5411 break;
5412
5413 case PGC_REAL:
5414 {
5415 const struct config_real *conf = &record->_real;
5416
5417 if (conf->show_hook)
5418 val = conf->show_hook();
5419 else
5420 {
5421 double result = *conf->variable;
5422 const char *unit;
5423
5424 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5426 record->flags & GUC_UNIT,
5427 &result, &unit);
5428 else
5429 unit = "";
5430
5431 snprintf(buffer, sizeof(buffer), "%g%s",
5432 result, unit);
5433 val = buffer;
5434 }
5435 }
5436 break;
5437
5438 case PGC_STRING:
5439 {
5440 const struct config_string *conf = &record->_string;
5441
5442 if (conf->show_hook)
5443 val = conf->show_hook();
5444 else if (*conf->variable && **conf->variable)
5445 val = *conf->variable;
5446 else
5447 val = "";
5448 }
5449 break;
5450
5451 case PGC_ENUM:
5452 {
5453 const struct config_enum *conf = &record->_enum;
5454
5455 if (conf->show_hook)
5456 val = conf->show_hook();
5457 else
5458 val = config_enum_lookup_by_value(record, *conf->variable);
5459 }
5460 break;
5461
5462 default:
5463 /* just to keep compiler quiet */
5464 val = "???";
5465 break;
5466 }
5467
5468 return pstrdup(val);
5469}
5470
5471
5472#ifdef EXEC_BACKEND
5473
5474/*
5475 * These routines dump out all non-default GUC options into a binary
5476 * file that is read by all exec'ed backends. The format is:
5477 *
5478 * variable name, string, null terminated
5479 * variable value, string, null terminated
5480 * variable sourcefile, string, null terminated (empty if none)
5481 * variable sourceline, integer
5482 * variable source, integer
5483 * variable scontext, integer
5484 * variable srole, OID
5485 */
5486static void
5488{
5489 Assert(gconf->source != PGC_S_DEFAULT);
5490
5491 fprintf(fp, "%s", gconf->name);
5492 fputc(0, fp);
5493
5494 switch (gconf->vartype)
5495 {
5496 case PGC_BOOL:
5497 {
5498 struct config_bool *conf = &gconf->_bool;
5499
5500 if (*conf->variable)
5501 fprintf(fp, "true");
5502 else
5503 fprintf(fp, "false");
5504 }
5505 break;
5506
5507 case PGC_INT:
5508 {
5509 struct config_int *conf = &gconf->_int;
5510
5511 fprintf(fp, "%d", *conf->variable);
5512 }
5513 break;
5514
5515 case PGC_REAL:
5516 {
5517 struct config_real *conf = &gconf->_real;
5518
5519 fprintf(fp, "%.17g", *conf->variable);
5520 }
5521 break;
5522
5523 case PGC_STRING:
5524 {
5525 struct config_string *conf = &gconf->_string;
5526
5527 if (*conf->variable)
5528 fprintf(fp, "%s", *conf->variable);
5529 }
5530 break;
5531
5532 case PGC_ENUM:
5533 {
5534 struct config_enum *conf = &gconf->_enum;
5535
5536 fprintf(fp, "%s",
5538 }
5539 break;
5540 }
5541
5542 fputc(0, fp);
5543
5544 if (gconf->sourcefile)
5545 fprintf(fp, "%s", gconf->sourcefile);
5546 fputc(0, fp);
5547
5548 fwrite(&gconf->sourceline, 1, sizeof(gconf->sourceline), fp);
5549 fwrite(&gconf->source, 1, sizeof(gconf->source), fp);
5550 fwrite(&gconf->scontext, 1, sizeof(gconf->scontext), fp);
5551 fwrite(&gconf->srole, 1, sizeof(gconf->srole), fp);
5552}
5553
5554void
5556{
5557 int elevel;
5558 FILE *fp;
5559 dlist_iter iter;
5560
5561 Assert(context == PGC_POSTMASTER || context == PGC_SIGHUP);
5562
5563 elevel = (context == PGC_SIGHUP) ? LOG : ERROR;
5564
5565 /*
5566 * Open file
5567 */
5569 if (!fp)
5570 {
5571 ereport(elevel,
5573 errmsg("could not write to file \"%s\": %m",
5575 return;
5576 }
5577
5578 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5580 {
5582 nondef_link, iter.cur);
5583
5585 }
5586
5587 if (FreeFile(fp))
5588 {
5589 ereport(elevel,
5591 errmsg("could not write to file \"%s\": %m",
5593 return;
5594 }
5595
5596 /*
5597 * Put new file in place. This could delay on Win32, but we don't hold
5598 * any exclusive locks.
5599 */
5601}
5602
5603
5604/*
5605 * Read string, including null byte from file
5606 *
5607 * Return NULL on EOF and nothing read
5608 */
5609static char *
5611{
5612 int i = 0,
5613 ch,
5614 maxlen = 256;
5615 char *str = NULL;
5616
5617 do
5618 {
5619 if ((ch = fgetc(fp)) == EOF)
5620 {
5621 if (i == 0)
5622 return NULL;
5623 else
5624 elog(FATAL, "invalid format of exec config params file");
5625 }
5626 if (i == 0)
5627 str = guc_malloc(FATAL, maxlen);
5628 else if (i == maxlen)
5629 str = guc_realloc(FATAL, str, maxlen *= 2);
5630 str[i++] = ch;
5631 } while (ch != 0);
5632
5633 return str;
5634}
5635
5636
5637/*
5638 * This routine loads a previous postmaster dump of its non-default
5639 * settings.
5640 */
5641void
5643{
5644 FILE *fp;
5645 char *varname,
5646 *varvalue,
5648 int varsourceline;
5651 Oid varsrole;
5652
5653 /*
5654 * Open file
5655 */
5657 if (!fp)
5658 {
5659 /* File not found is fine */
5660 if (errno != ENOENT)
5661 ereport(FATAL,
5663 errmsg("could not read from file \"%s\": %m",
5665 return;
5666 }
5667
5668 for (;;)
5669 {
5670 if ((varname = read_string_with_null(fp)) == NULL)
5671 break;
5672
5673 if (find_option(varname, true, false, FATAL) == NULL)
5674 elog(FATAL, "failed to locate variable \"%s\" in exec config params file", varname);
5675
5676 if ((varvalue = read_string_with_null(fp)) == NULL)
5677 elog(FATAL, "invalid format of exec config params file");
5679 elog(FATAL, "invalid format of exec config params file");
5680 if (fread(&varsourceline, 1, sizeof(varsourceline), fp) != sizeof(varsourceline))
5681 elog(FATAL, "invalid format of exec config params file");
5682 if (fread(&varsource, 1, sizeof(varsource), fp) != sizeof(varsource))
5683 elog(FATAL, "invalid format of exec config params file");
5684 if (fread(&varscontext, 1, sizeof(varscontext), fp) != sizeof(varscontext))
5685 elog(FATAL, "invalid format of exec config params file");
5686 if (fread(&varsrole, 1, sizeof(varsrole), fp) != sizeof(varsrole))
5687 elog(FATAL, "invalid format of exec config params file");
5688
5691 GUC_ACTION_SET, true, 0, true);
5692 if (varsourcefile[0])
5694
5695 guc_free(varname);
5698 }
5699
5700 FreeFile(fp);
5701}
5702#endif /* EXEC_BACKEND */
5703
5704/*
5705 * can_skip_gucvar:
5706 * Decide whether SerializeGUCState can skip sending this GUC variable,
5707 * or whether RestoreGUCState can skip resetting this GUC to default.
5708 *
5709 * It is somewhat magical and fragile that the same test works for both cases.
5710 * Realize in particular that we are very likely selecting different sets of
5711 * GUCs on the leader and worker sides! Be sure you've understood the
5712 * comments here and in RestoreGUCState thoroughly before changing this.
5713 */
5714static bool
5716{
5717 /*
5718 * We can skip GUCs that are guaranteed to have the same values in leaders
5719 * and workers. (Note it is critical that the leader and worker have the
5720 * same idea of which GUCs fall into this category. It's okay to consider
5721 * context and name for this purpose, since those are unchanging
5722 * properties of a GUC.)
5723 *
5724 * PGC_POSTMASTER variables always have the same value in every child of a
5725 * particular postmaster, so the worker will certainly have the right
5726 * value already. Likewise, PGC_INTERNAL variables are set by special
5727 * mechanisms (if indeed they aren't compile-time constants). So we may
5728 * always skip these.
5729 *
5730 * For all other GUCs, we skip if the GUC has its compiled-in default
5731 * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means
5732 * we don't send GUCs that have their default values, which typically
5733 * saves lots of work. On the worker side, this means we don't need to
5734 * reset the GUC to default because it already has that value. See
5735 * comments in RestoreGUCState for more info.
5736 */
5737 return gconf->context == PGC_POSTMASTER ||
5738 gconf->context == PGC_INTERNAL ||
5739 gconf->source == PGC_S_DEFAULT;
5740}
5741
5742/*
5743 * estimate_variable_size:
5744 * Compute space needed for dumping the given GUC variable.
5745 *
5746 * It's OK to overestimate, but not to underestimate.
5747 */
5748static Size
5750{
5751 Size size;
5752 Size valsize = 0;
5753
5754 /* Skippable GUCs consume zero space. */
5756 return 0;
5757
5758 /* Name, plus trailing zero byte. */
5759 size = strlen(gconf->name) + 1;
5760
5761 /* Get the maximum display length of the GUC value. */
5762 switch (gconf->vartype)
5763 {
5764 case PGC_BOOL:
5765 {
5766 valsize = 5; /* max(strlen('true'), strlen('false')) */
5767 }
5768 break;
5769
5770 case PGC_INT:
5771 {
5772 struct config_int *conf = &gconf->_int;
5773
5774 /*
5775 * Instead of getting the exact display length, use max
5776 * length. Also reduce the max length for typical ranges of
5777 * small values. Maximum value is 2147483647, i.e. 10 chars.
5778 * Include one byte for sign.
5779 */
5780 if (abs(*conf->variable) < 1000)
5781 valsize = 3 + 1;
5782 else
5783 valsize = 10 + 1;
5784 }
5785 break;
5786
5787 case PGC_REAL:
5788 {
5789 /*
5790 * We are going to print it with %e with REALTYPE_PRECISION
5791 * fractional digits. Account for sign, leading digit,
5792 * decimal point, and exponent with up to 3 digits. E.g.
5793 * -3.99329042340000021e+110
5794 */
5795 valsize = 1 + 1 + 1 + REALTYPE_PRECISION + 5;
5796 }
5797 break;
5798
5799 case PGC_STRING:
5800 {
5801 struct config_string *conf = &gconf->_string;
5802
5803 /*
5804 * If the value is NULL, we transmit it as an empty string.
5805 * Although this is not physically the same value, GUC
5806 * generally treats a NULL the same as empty string.
5807 */
5808 if (*conf->variable)
5809 valsize = strlen(*conf->variable);
5810 else
5811 valsize = 0;
5812 }
5813 break;
5814
5815 case PGC_ENUM:
5816 {
5817 struct config_enum *conf = &gconf->_enum;
5818
5820 }
5821 break;
5822 }
5823
5824 /* Allow space for terminating zero-byte for value */
5825 size = add_size(size, valsize + 1);
5826
5827 if (gconf->sourcefile)
5828 size = add_size(size, strlen(gconf->sourcefile));
5829
5830 /* Allow space for terminating zero-byte for sourcefile */
5831 size = add_size(size, 1);
5832
5833 /* Include line whenever file is nonempty. */
5834 if (gconf->sourcefile && gconf->sourcefile[0])
5835 size = add_size(size, sizeof(gconf->sourceline));
5836
5837 size = add_size(size, sizeof(gconf->source));
5838 size = add_size(size, sizeof(gconf->scontext));
5839 size = add_size(size, sizeof(gconf->srole));
5840
5841 return size;
5842}
5843
5844/*
5845 * EstimateGUCStateSpace:
5846 * Returns the size needed to store the GUC state for the current process
5847 */
5848Size
5850{
5851 Size size;
5852 dlist_iter iter;
5853
5854 /* Add space reqd for saving the data size of the guc state */
5855 size = sizeof(Size);
5856
5857 /*
5858 * Add up the space needed for each GUC variable.
5859 *
5860 * We need only process non-default GUCs.
5861 */
5863 {
5865 nondef_link, iter.cur);
5866
5867 size = add_size(size, estimate_variable_size(gconf));
5868 }
5869
5870 return size;
5871}
5872
5873/*
5874 * do_serialize:
5875 * Copies the formatted string into the destination. Moves ahead the
5876 * destination pointer, and decrements the maxbytes by that many bytes. If
5877 * maxbytes is not sufficient to copy the string, error out.
5878 */
5879static void
5880do_serialize(char **destptr, Size *maxbytes, const char *fmt,...)
5881{
5882 va_list vargs;
5883 int n;
5884
5885 if (*maxbytes <= 0)
5886 elog(ERROR, "not enough space to serialize GUC state");
5887
5888 va_start(vargs, fmt);
5890 va_end(vargs);
5891
5892 if (n < 0)
5893 {
5894 /* Shouldn't happen. Better show errno description. */
5895 elog(ERROR, "vsnprintf failed: %m with format string \"%s\"", fmt);
5896 }
5897 if (n >= *maxbytes)
5898 {
5899 /* This shouldn't happen either, really. */
5900 elog(ERROR, "not enough space to serialize GUC state");
5901 }
5902
5903 /* Shift the destptr ahead of the null terminator */
5904 *destptr += n + 1;
5905 *maxbytes -= n + 1;
5906}
5907
5908/* Binary copy version of do_serialize() */
5909static void
5911{
5912 if (valsize > *maxbytes)
5913 elog(ERROR, "not enough space to serialize GUC state");
5914
5916 *destptr += valsize;
5917 *maxbytes -= valsize;
5918}
5919
5920/*
5921 * serialize_variable:
5922 * Dumps name, value and other information of a GUC variable into destptr.
5923 */
5924static void
5926 struct config_generic *gconf)
5927{
5928 /* Ignore skippable GUCs. */
5930 return;
5931
5932 do_serialize(destptr, maxbytes, "%s", gconf->name);
5933
5934 switch (gconf->vartype)
5935 {
5936 case PGC_BOOL:
5937 {
5938 struct config_bool *conf = &gconf->_bool;
5939
5941 (*conf->variable ? "true" : "false"));
5942 }
5943 break;
5944
5945 case PGC_INT:
5946 {
5947 struct config_int *conf = &gconf->_int;
5948
5949 do_serialize(destptr, maxbytes, "%d", *conf->variable);
5950 }
5951 break;
5952
5953 case PGC_REAL:
5954 {
5955 struct config_real *conf = &gconf->_real;
5956
5957 do_serialize(destptr, maxbytes, "%.*e",
5958 REALTYPE_PRECISION, *conf->variable);
5959 }
5960 break;
5961
5962 case PGC_STRING:
5963 {
5964 struct config_string *conf = &gconf->_string;
5965
5966 /* NULL becomes empty string, see estimate_variable_size() */
5968 *conf->variable ? *conf->variable : "");
5969 }
5970 break;
5971
5972 case PGC_ENUM:
5973 {
5974 struct config_enum *conf = &gconf->_enum;
5975
5978 }
5979 break;
5980 }
5981
5983 (gconf->sourcefile ? gconf->sourcefile : ""));
5984
5985 if (gconf->sourcefile && gconf->sourcefile[0])
5987 sizeof(gconf->sourceline));
5988
5990 sizeof(gconf->source));
5992 sizeof(gconf->scontext));
5994 sizeof(gconf->srole));
5995}
5996
5997/*
5998 * SerializeGUCState:
5999 * Dumps the complete GUC state onto the memory location at start_address.
6000 */
6001void
6003{
6004 char *curptr;
6007 dlist_iter iter;
6008
6009 /* Reserve space for saving the actual size of the guc state */
6010 Assert(maxsize > sizeof(actual_size));
6011 curptr = start_address + sizeof(actual_size);
6012 bytes_left = maxsize - sizeof(actual_size);
6013
6014 /* We need only consider GUCs with source not PGC_S_DEFAULT */
6016 {
6018 nondef_link, iter.cur);
6019
6021 }
6022
6023 /* Store actual size without assuming alignment of start_address. */
6026}
6027
6028/*
6029 * read_gucstate:
6030 * Actually it does not read anything, just returns the srcptr. But it does
6031 * move the srcptr past the terminating zero byte, so that the caller is ready
6032 * to read the next string.
6033 */
6034static char *
6036{
6037 char *retptr = *srcptr;
6038 char *ptr;
6039
6040 if (*srcptr >= srcend)
6041 elog(ERROR, "incomplete GUC state");
6042
6043 /* The string variables are all null terminated */
6044 for (ptr = *srcptr; ptr < srcend && *ptr != '\0'; ptr++)
6045 ;
6046
6047 if (ptr >= srcend)
6048 elog(ERROR, "could not find null terminator in GUC state");
6049
6050 /* Set the new position to the byte following the terminating NUL */
6051 *srcptr = ptr + 1;
6052
6053 return retptr;
6054}
6055
6056/* Binary read version of read_gucstate(). Copies into dest */
6057static void
6058read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
6059{
6060 if (*srcptr + size > srcend)
6061 elog(ERROR, "incomplete GUC state");
6062
6063 memcpy(dest, *srcptr, size);
6064 *srcptr += size;
6065}
6066
6067/*
6068 * Callback used to add a context message when reporting errors that occur
6069 * while trying to restore GUCs in parallel workers.
6070 */
6071static void
6073{
6074 char **error_context_name_and_value = (char **) arg;
6075
6077 errcontext("while setting parameter \"%s\" to \"%s\"",
6080}
6081
6082/*
6083 * RestoreGUCState:
6084 * Reads the GUC state at the specified address and sets this process's
6085 * GUCs to match.
6086 *
6087 * Note that this provides the worker with only a very shallow view of the
6088 * leader's GUC state: we'll know about the currently active values, but not
6089 * about stacked or reset values. That's fine since the worker is just
6090 * executing one part of a query, within which the active values won't change
6091 * and the stacked values are invisible.
6092 */
6093void
6095{
6096 char *varname,
6097 *varvalue,
6099 int varsourceline;
6102 Oid varsrole;
6103 char *srcptr = (char *) gucstate;
6104 char *srcend;
6105 Size len;
6106 dlist_mutable_iter iter;
6108
6109 /*
6110 * First, ensure that all potentially-shippable GUCs are reset to their
6111 * default values. We must not touch those GUCs that the leader will
6112 * never ship, while there is no need to touch those that are shippable
6113 * but already have their default values. Thus, this ends up being the
6114 * same test that SerializeGUCState uses, even though the sets of
6115 * variables involved may well be different since the leader's set of
6116 * variables-not-at-default-values can differ from the set that are
6117 * not-default in this freshly started worker.
6118 *
6119 * Once we have set all the potentially-shippable GUCs to default values,
6120 * restoring the GUCs that the leader sent (because they had non-default
6121 * values over there) leads us to exactly the set of GUC values that the
6122 * leader has. This is true even though the worker may have initially
6123 * absorbed postgresql.conf settings that the leader hasn't yet seen, or
6124 * ALTER USER/DATABASE SET settings that were established after the leader
6125 * started.
6126 *
6127 * Note that ensuring all the potential target GUCs are at PGC_S_DEFAULT
6128 * also ensures that set_config_option won't refuse to set them because of
6129 * source-priority comparisons.
6130 */
6132 {
6134 nondef_link, iter.cur);
6135
6136 /* Do nothing if non-shippable or if already at PGC_S_DEFAULT. */
6138 continue;
6139
6140 /*
6141 * We can use InitializeOneGUCOption to reset the GUC to default, but
6142 * first we must free any existing subsidiary data to avoid leaking
6143 * memory. The stack must be empty, but we have to clean up all other
6144 * fields. Beware that there might be duplicate value or "extra"
6145 * pointers. We also have to be sure to take it out of any lists it's
6146 * in.
6147 */
6148 Assert(gconf->stack == NULL);
6149 guc_free(gconf->extra);
6150 guc_free(gconf->last_reported);
6151 guc_free(gconf->sourcefile);
6152 switch (gconf->vartype)
6153 {
6154 case PGC_BOOL:
6155 case PGC_INT:
6156 case PGC_REAL:
6157 case PGC_ENUM:
6158 /* no need to do anything */
6159 break;
6160 case PGC_STRING:
6161 {
6162 struct config_string *conf = &gconf->_string;
6163
6164 guc_free(*conf->variable);
6165 if (conf->reset_val && conf->reset_val != *conf->variable)
6166 guc_free(conf->reset_val);
6167 break;
6168 }
6169 }
6170 if (gconf->reset_extra && gconf->reset_extra != gconf->extra)
6171 guc_free(gconf->reset_extra);
6172 /* Remove it from any lists it's in. */
6174 /* Now we can reset the struct to PGS_S_DEFAULT state. */
6176 }
6177
6178 /* First item is the length of the subsequent data */
6179 memcpy(&len, gucstate, sizeof(len));
6180
6181 srcptr += sizeof(len);
6182 srcend = srcptr + len;
6183
6184 /* If the GUC value check fails, we want errors to show useful context. */
6189
6190 /* Restore all the listed GUCs. */
6191 while (srcptr < srcend)
6192 {
6193 int result;
6195
6196 varname = read_gucstate(&srcptr, srcend);
6199 if (varsourcefile[0])
6201 &varsourceline, sizeof(varsourceline));
6202 else
6203 varsourceline = 0;
6205 &varsource, sizeof(varsource));
6207 &varscontext, sizeof(varscontext));
6209 &varsrole, sizeof(varsrole));
6210
6211 error_context_name_and_value[0] = varname;
6214 result = set_config_option_ext(varname, varvalue,
6216 GUC_ACTION_SET, true, ERROR, true);
6217 if (result <= 0)
6218 ereport(ERROR,
6220 errmsg("parameter \"%s\" could not be set", varname)));
6221 if (varsourcefile[0])
6224 }
6225
6227}
6228
6229/*
6230 * A little "long argument" simulation, although not quite GNU
6231 * compliant. Takes a string of the form "some-option=some value" and
6232 * returns name = "some_option" and value = "some value" in palloc'ed
6233 * storage. Note that '-' is converted to '_' in the option name. If
6234 * there is no '=' in the input string then value will be NULL.
6235 */
6236void
6237ParseLongOption(const char *string, char **name, char **value)
6238{
6239 size_t equal_pos;
6240
6241 Assert(string);
6242 Assert(name);
6243 Assert(value);
6244
6245 equal_pos = strcspn(string, "=");
6246
6247 if (string[equal_pos] == '=')
6248 {
6249 *name = palloc(equal_pos + 1);
6250 strlcpy(*name, string, equal_pos + 1);
6251
6252 *value = pstrdup(&string[equal_pos + 1]);
6253 }
6254 else
6255 {
6256 /* no equal sign in string */
6257 *name = pstrdup(string);
6258 *value = NULL;
6259 }
6260
6261 for (char *cp = *name; *cp; cp++)
6262 if (*cp == '-')
6263 *cp = '_';
6264}
6265
6266
6267/*
6268 * Transform array of GUC settings into lists of names and values. The lists
6269 * are faster to process in cases where the settings must be applied
6270 * repeatedly (e.g. for each function invocation).
6271 */
6272void
6274{
6275 Assert(array != NULL);
6276 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6277 Assert(ARR_NDIM(array) == 1);
6278 Assert(ARR_LBOUND(array)[0] == 1);
6279
6280 *names = NIL;
6281 *values = NIL;
6282 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6283 {
6284 Datum d;
6285 bool isnull;
6286 char *s;
6287 char *name;
6288 char *value;
6289
6290 d = array_ref(array, 1, &i,
6291 -1 /* varlenarray */ ,
6292 -1 /* TEXT's typlen */ ,
6293 false /* TEXT's typbyval */ ,
6294 TYPALIGN_INT /* TEXT's typalign */ ,
6295 &isnull);
6296
6297 if (isnull)
6298 continue;
6299
6300 s = TextDatumGetCString(d);
6301
6302 ParseLongOption(s, &name, &value);
6303 if (!value)
6304 {
6307 errmsg("could not parse setting for parameter \"%s\"",
6308 name)));
6309 pfree(name);
6310 continue;
6311 }
6312
6313 *names = lappend(*names, name);
6314 *values = lappend(*values, value);
6315
6316 pfree(s);
6317 }
6318}
6319
6320
6321/*
6322 * Handle options fetched from pg_db_role_setting.setconfig,
6323 * pg_proc.proconfig, etc. Caller must specify proper context/source/action.
6324 *
6325 * The array parameter must be an array of TEXT (it must not be NULL).
6326 */
6327void
6329 GucContext context, GucSource source, GucAction action)
6330{
6331 List *gucNames;
6332 List *gucValues;
6333 ListCell *lc1;
6334 ListCell *lc2;
6335
6338 {
6339 char *name = lfirst(lc1);
6340 char *value = lfirst(lc2);
6341
6343 context, source,
6344 action, true, 0, false);
6345
6346 pfree(name);
6347 pfree(value);
6348 }
6349
6352}
6353
6354
6355/*
6356 * Add an entry to an option array. The array parameter may be NULL
6357 * to indicate the current table entry is NULL.
6358 */
6359ArrayType *
6360GUCArrayAdd(ArrayType *array, const char *name, const char *value)
6361{
6362 struct config_generic *record;
6363 Datum datum;
6364 char *newval;
6365 ArrayType *a;
6366
6367 Assert(name);
6368 Assert(value);
6369
6370 /* test if the option is valid and we're allowed to set it */
6372
6373 /* normalize name (converts obsolete GUC names to modern spellings) */
6374 record = find_option(name, false, true, WARNING);
6375 if (record)
6376 name = record->name;
6377
6378 /* build new item for array */
6379 newval = psprintf("%s=%s", name, value);
6380 datum = CStringGetTextDatum(newval);
6381
6382 if (array)
6383 {
6384 int index;
6385 bool isnull;
6386
6387 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6388 Assert(ARR_NDIM(array) == 1);
6389 Assert(ARR_LBOUND(array)[0] == 1);
6390
6391 index = ARR_DIMS(array)[0] + 1; /* add after end */
6392
6393 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6394 {
6395 Datum d;
6396 char *current;
6397
6398 d = array_ref(array, 1, &i,
6399 -1 /* varlenarray */ ,
6400 -1 /* TEXT's typlen */ ,
6401 false /* TEXT's typbyval */ ,
6402 TYPALIGN_INT /* TEXT's typalign */ ,
6403 &isnull);
6404 if (isnull)
6405 continue;
6406 current = TextDatumGetCString(d);
6407
6408 /* check for match up through and including '=' */
6409 if (strncmp(current, newval, strlen(name) + 1) == 0)
6410 {
6411 index = i;
6412 break;
6413 }
6414 }
6415
6416 a = array_set(array, 1, &index,
6417 datum,
6418 false,
6419 -1 /* varlena array */ ,
6420 -1 /* TEXT's typlen */ ,
6421 false /* TEXT's typbyval */ ,
6422 TYPALIGN_INT /* TEXT's typalign */ );
6423 }
6424 else
6425 a = construct_array_builtin(&datum, 1, TEXTOID);
6426
6427 return a;
6428}
6429
6430
6431/*
6432 * Delete an entry from an option array. The array parameter may be NULL
6433 * to indicate the current table entry is NULL. Also, if the return value
6434 * is NULL then a null should be stored.
6435 */
6436ArrayType *
6437GUCArrayDelete(ArrayType *array, const char *name)
6438{
6439 struct config_generic *record;
6441 int index;
6442
6443 Assert(name);
6444
6445 /* test if the option is valid and we're allowed to set it */
6447
6448 /* normalize name (converts obsolete GUC names to modern spellings) */
6449 record = find_option(name, false, true, WARNING);
6450 if (record)
6451 name = record->name;
6452
6453 /* if array is currently null, then surely nothing to delete */
6454 if (!array)
6455 return NULL;
6456
6457 newarray = NULL;
6458 index = 1;
6459
6460 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6461 {
6462 Datum d;
6463 char *val;
6464 bool isnull;
6465
6466 d = array_ref(array, 1, &i,
6467 -1 /* varlenarray */ ,
6468 -1 /* TEXT's typlen */ ,
6469 false /* TEXT's typbyval */ ,
6470 TYPALIGN_INT /* TEXT's typalign */ ,
6471 &isnull);
6472 if (isnull)
6473 continue;
6475
6476 /* ignore entry if it's what we want to delete */
6477 if (strncmp(val, name, strlen(name)) == 0
6478 && val[strlen(name)] == '=')
6479 continue;
6480
6481 /* else add it to the output array */
6482 if (newarray)
6484 d,
6485 false,
6486 -1 /* varlenarray */ ,
6487 -1 /* TEXT's typlen */ ,
6488 false /* TEXT's typbyval */ ,
6489 TYPALIGN_INT /* TEXT's typalign */ );
6490 else
6492
6493 index++;
6494 }
6495
6496 return newarray;
6497}
6498
6499
6500/*
6501 * Given a GUC array, delete all settings from it that our permission
6502 * level allows: if superuser, delete them all; if regular user, only
6503 * those that are PGC_USERSET or we have permission to set
6504 */
6505ArrayType *
6507{
6509 int index;
6510
6511 /* if array is currently null, nothing to do */
6512 if (!array)
6513 return NULL;
6514
6515 /* if we're superuser, we can delete everything, so just do it */
6516 if (superuser())
6517 return NULL;
6518
6519 newarray = NULL;
6520 index = 1;
6521
6522 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6523 {
6524 Datum d;
6525 char *val;
6526 char *eqsgn;
6527 bool isnull;
6528
6529 d = array_ref(array, 1, &i,
6530 -1 /* varlenarray */ ,
6531 -1 /* TEXT's typlen */ ,
6532 false /* TEXT's typbyval */ ,
6533 TYPALIGN_INT /* TEXT's typalign */ ,
6534 &isnull);
6535 if (isnull)
6536 continue;
6538
6539 eqsgn = strchr(val, '=');
6540 *eqsgn = '\0';
6541
6542 /* skip if we have permission to delete it */
6544 continue;
6545
6546 /* else add it to the output array */
6547 if (newarray)
6549 d,
6550 false,
6551 -1 /* varlenarray */ ,
6552 -1 /* TEXT's typlen */ ,
6553 false /* TEXT's typbyval */ ,
6554 TYPALIGN_INT /* TEXT's typalign */ );
6555 else
6557
6558 index++;
6559 pfree(val);
6560 }
6561
6562 return newarray;
6563}
6564
6565/*
6566 * Validate a proposed option setting for GUCArrayAdd/Delete/Reset.
6567 *
6568 * name is the option name. value is the proposed value for the Add case,
6569 * or NULL for the Delete/Reset cases. If skipIfNoPermissions is true, it's
6570 * not an error to have no permissions to set the option.
6571 *
6572 * Returns true if OK, false if skipIfNoPermissions is true and user does not
6573 * have permission to change this option (all other error cases result in an
6574 * error being thrown).
6575 */
6576static bool
6577validate_option_array_item(const char *name, const char *value,
6579
6580{
6581 struct config_generic *gconf;
6582 bool reset_custom;
6583
6584 /*
6585 * There are three cases to consider:
6586 *
6587 * name is a known GUC variable. Check the value normally, check
6588 * permissions normally (i.e., allow if variable is USERSET, or if it's
6589 * SUSET and user is superuser or holds ACL_SET permissions).
6590 *
6591 * name is not known, but exists or can be created as a placeholder (i.e.,
6592 * it has a valid custom name). We allow this case if you're a superuser,
6593 * otherwise not. Superusers are assumed to know what they're doing. We
6594 * can't allow it for other users, because when the placeholder is
6595 * resolved it might turn out to be a SUSET variable. (With currently
6596 * available infrastructure, we can actually handle such cases within the
6597 * current session --- but once an entry is made in pg_db_role_setting,
6598 * it's assumed to be fully validated.)
6599 *
6600 * name is not known and can't be created as a placeholder. Throw error,
6601 * unless skipIfNoPermissions or reset_custom is true. If reset_custom is
6602 * true, this is a RESET or RESET ALL operation for an unknown custom GUC
6603 * with a reserved prefix, in which case we want to fall through to the
6604 * placeholder case described in the preceding paragraph (else there'd be
6605 * no way for users to remove them). Otherwise, return false.
6606 */
6609 if (!gconf && !reset_custom)
6610 {
6611 /* not known, failed to make a placeholder */
6612 return false;
6613 }
6614
6615 if (!gconf || gconf->flags & GUC_CUSTOM_PLACEHOLDER)
6616 {
6617 /*
6618 * We cannot do any meaningful check on the value, so only permissions
6619 * are useful to check.
6620 */
6621 if (superuser() ||
6623 return true;
6625 return false;
6626 ereport(ERROR,
6628 errmsg("permission denied to set parameter \"%s\"", name)));
6629 }
6630
6631 /* manual permissions check so we can avoid an error being thrown */
6632 if (gconf->context == PGC_USERSET)
6633 /* ok */ ;
6634 else if (gconf->context == PGC_SUSET &&
6635 (superuser() ||
6637 /* ok */ ;
6638 else if (skipIfNoPermissions)
6639 return false;
6640 /* if a permissions error should be thrown, let set_config_option do it */
6641
6642 /* test for permissions and valid option value */
6645 PGC_S_TEST, GUC_ACTION_SET, false, 0, false);
6646
6647 return true;
6648}
6649
6650
6651/*
6652 * Called by check_hooks that want to override the normal
6653 * ERRCODE_INVALID_PARAMETER_VALUE SQLSTATE for check hook failures.
6654 *
6655 * Note that GUC_check_errmsg() etc are just macros that result in a direct
6656 * assignment to the associated variables. That is ugly, but forced by the
6657 * limitations of C's macro mechanisms.
6658 */
6659void
6660GUC_check_errcode(int sqlerrcode)
6661{
6662 GUC_check_errcode_value = sqlerrcode;
6663}
6664
6665
6666/*
6667 * Convenience functions to manage calling a variable's check_hook.
6668 * These mostly take care of the protocol for letting check hooks supply
6669 * portions of the error report on failure.
6670 */
6671
6672static bool
6674 GucSource source, int elevel)
6675{
6676 /* Quick success if no hook */
6677 if (!conf->_bool.check_hook)
6678 return true;
6679
6680 /* Reset variables that might be set by hook */
6685
6686 if (!conf->_bool.check_hook(newval, extra, source))
6687 {
6688 ereport(elevel,
6692 errmsg("invalid value for parameter \"%s\": %d",
6693 conf->name, (int) *newval),
6697 errhint("%s", GUC_check_errhint_string) : 0));
6698 /* Flush strings created in ErrorContext (ereport might not have) */
6700 return false;
6701 }
6702
6703 return true;
6704}
6705
6706static bool
6708 GucSource source, int elevel)
6709{
6710 /* Quick success if no hook */
6711 if (!conf->_int.check_hook)
6712 return true;
6713
6714 /* Reset variables that might be set by hook */
6719
6720 if (!conf->_int.check_hook(newval, extra, source))
6721 {
6722 ereport(elevel,
6726 errmsg("invalid value for parameter \"%s\": %d",
6727 conf->name, *newval),
6731 errhint("%s", GUC_check_errhint_string) : 0));
6732 /* Flush strings created in ErrorContext (ereport might not have) */
6734 return false;
6735 }
6736
6737 return true;
6738}
6739
6740static bool
6741call_real_check_hook(const struct config_generic *conf, double *newval, void **extra,
6742 GucSource source, int elevel)
6743{
6744 /* Quick success if no hook */
6745 if (!conf->_real.check_hook)
6746 return true;
6747
6748 /* Reset variables that might be set by hook */
6753
6754 if (!conf->_real.check_hook(newval, extra, source))
6755 {
6756 ereport(elevel,
6760 errmsg("invalid value for parameter \"%s\": %g",
6761 conf->name, *newval),
6765 errhint("%s", GUC_check_errhint_string) : 0));
6766 /* Flush strings created in ErrorContext (ereport might not have) */
6768 return false;
6769 }
6770
6771 return true;
6772}
6773
6774static bool
6776 GucSource source, int elevel)
6777{
6778 volatile bool result = true;
6779
6780 /* Quick success if no hook */
6781 if (!conf->_string.check_hook)
6782 return true;
6783
6784 /*
6785 * If elevel is ERROR, or if the check_hook itself throws an elog
6786 * (undesirable, but not always avoidable), make sure we don't leak the
6787 * already-malloc'd newval string.
6788 */
6789 PG_TRY();
6790 {
6791 /* Reset variables that might be set by hook */
6796
6797 if (!conf->_string.check_hook(newval, extra, source))
6798 {
6799 ereport(elevel,
6803 errmsg("invalid value for parameter \"%s\": \"%s\"",
6804 conf->name, *newval ? *newval : ""),
6808 errhint("%s", GUC_check_errhint_string) : 0));
6809 /* Flush strings created in ErrorContext (ereport might not have) */
6811 result = false;
6812 }
6813 }
6814 PG_CATCH();
6815 {
6816 guc_free(*newval);
6817 PG_RE_THROW();
6818 }
6819 PG_END_TRY();
6820
6821 return result;
6822}
6823
6824static bool
6826 GucSource source, int elevel)
6827{
6828 /* Quick success if no hook */
6829 if (!conf->_enum.check_hook)
6830 return true;
6831
6832 /* Reset variables that might be set by hook */
6837
6838 if (!conf->_enum.check_hook(newval, extra, source))
6839 {
6840 ereport(elevel,
6844 errmsg("invalid value for parameter \"%s\": \"%s\"",
6845 conf->name,
6850 errhint("%s", GUC_check_errhint_string) : 0));
6851 /* Flush strings created in ErrorContext (ereport might not have) */
6853 return false;
6854 }
6855
6856 return true;
6857}
AclResult
Definition acl.h:183
@ ACLCHECK_OK
Definition acl.h:184
AclResult pg_parameter_aclcheck(const char *name, Oid roleid, AclMode mode)
Definition aclchk.c:4107
#define ARR_NDIM(a)
Definition array.h:290
#define ARR_ELEMTYPE(a)
Definition array.h:292
#define ARR_DIMS(a)
Definition array.h:294
#define ARR_LBOUND(a)
Definition array.h:296
ArrayType * array_set(ArrayType *array, int nSubscripts, int *indx, Datum dataValue, bool isNull, int arraytyplen, int elmlen, bool elmbyval, char elmalign)
Datum array_ref(ArrayType *array, int nSubscripts, int *indx, int arraytyplen, int elmlen, bool elmbyval, char elmalign, bool *isNull)
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
TimestampTz PgReloadTime
Definition timestamp.c:48
TimestampTz GetCurrentTimestamp(void)
Definition timestamp.c:1636
#define write_stderr(str)
Definition parallel.c:186
static int32 next
Definition blutils.c:225
bool parse_bool(const char *value, bool *result)
Definition bool.c:31
static Datum values[MAXATTR]
Definition bootstrap.c:188
#define CStringGetTextDatum(s)
Definition builtins.h:98
#define TextDatumGetCString(d)
Definition builtins.h:99
#define unconstify(underlying_type, expr)
Definition c.h:1327
#define likely(x)
Definition c.h:431
#define IS_HIGHBIT_SET(ch)
Definition c.h:1246
#define gettext_noop(x)
Definition c.h:1287
#define INT64_FORMAT
Definition c.h:636
#define Assert(condition)
Definition c.h:945
int64_t int64
Definition c.h:615
#define pg_attribute_printf(f, a)
Definition c.h:262
#define unlikely(x)
Definition c.h:432
uint32_t uint32
Definition c.h:618
#define pg_fallthrough
Definition c.h:152
size_t Size
Definition c.h:691
#define CONF_FILE_START_DEPTH
Definition conffiles.h:17
#define fprintf(file, fmt, msg)
Definition cubescan.l:21
@ DestRemote
Definition dest.h:89
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition dynahash.c:952
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition dynahash.c:358
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition dynahash.c:1415
int64 hash_get_num_entries(HTAB *hashp)
Definition dynahash.c:1336
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition dynahash.c:1380
Datum arg
Definition elog.c:1322
int errcode_for_file_access(void)
Definition elog.c:897
ErrorContextCallback * error_context_stack
Definition elog.c:99
void FlushErrorState(void)
Definition elog.c:2062
int errcode(int sqlerrcode)
Definition elog.c:874
#define _(x)
Definition elog.c:95
#define LOG
Definition elog.h:31
#define PG_RE_THROW()
Definition elog.h:405
int int errdetail_internal(const char *fmt,...) pg_attribute_printf(1
#define errcontext
Definition elog.h:198
int errhint(const char *fmt,...) pg_attribute_printf(1
#define DEBUG3
Definition elog.h:28
int errdetail(const char *fmt,...) pg_attribute_printf(1
#define FATAL
Definition elog.h:41
int int errmsg_internal(const char *fmt,...) pg_attribute_printf(1
#define PG_TRY(...)
Definition elog.h:372
#define WARNING
Definition elog.h:36
#define PG_END_TRY(...)
Definition elog.h:397
#define PANIC
Definition elog.h:42
#define ERROR
Definition elog.h:39
#define PG_CATCH(...)
Definition elog.h:382
#define elog(elevel,...)
Definition elog.h:226
#define ereport(elevel,...)
Definition elog.h:150
#define DEBUG5
Definition elog.h:26
int durable_rename(const char *oldfile, const char *newfile, int elevel)
Definition fd.c:783
int BasicOpenFile(const char *fileName, int fileFlags)
Definition fd.c:1090
int FreeFile(FILE *file)
Definition fd.c:2827
int pg_fsync(int fd)
Definition fd.c:390
FILE * AllocateFile(const char *name, const char *mode)
Definition fd.c:2628
#define palloc_object(type)
Definition fe_memutils.h:74
#define palloc_array(type, count)
Definition fe_memutils.h:76
#define MCXT_ALLOC_NO_OOM
Definition fe_memutils.h:29
bool IsUnderPostmaster
Definition globals.c:120
char * DataDir
Definition globals.c:71
void FreeConfigVariables(ConfigVariable *list)
Definition guc-file.l:617
void record_config_file_error(const char *errmsg, const char *config_file, int lineno, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition guc-file.l:278
bool ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition guc-file.l:350
bool ParseConfigFile(const char *config_file, bool strict, const char *calling_file, int calling_lineno, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition guc-file.l:175
void ProcessConfigFile(GucContext context)
Definition guc-file.l:120
void BeginReportingGUCOptions(void)
Definition guc.c:2453
static bool validate_option_array_item(const char *name, const char *value, bool skipIfNoPermissions)
Definition guc.c:6577
void GUC_check_errcode(int sqlerrcode)
Definition guc.c:6660
static const char *const map_old_guc_names[]
Definition guc.c:192
static void guc_restore_error_context_callback(void *arg)
Definition guc.c:6072
static void ReportGUCOption(struct config_generic *record)
Definition guc.c:2541
void RestoreGUCState(void *gucstate)
Definition guc.c:6094
static bool assignable_custom_variable_name(const char *name, bool skip_errors, int elevel)
Definition guc.c:1002
static dlist_head guc_nondef_list
Definition guc.c:224
const char * config_enum_lookup_by_value(const struct config_generic *record, int val)
Definition guc.c:2927
static int guc_name_match(const void *key1, const void *key2, Size keysize)
Definition guc.c:1232
int set_config_option_ext(const char *name, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition guc.c:3288
static bool call_real_check_hook(const struct config_generic *conf, double *newval, void **extra, GucSource source, int elevel)
Definition guc.c:6741
static void do_serialize(char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
Definition guc.c:5880
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
Definition guc.c:2775
char * config_enum_get_options(const struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
Definition guc.c:2972
void guc_free(void *ptr)
Definition guc.c:688
#define GUC_SAFE_SEARCH_PATH
Definition guc.c:76
static slist_head guc_report_list
Definition guc.c:228
static void set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
Definition guc.c:4195
const char * get_config_unit_name(int flags)
Definition guc.c:2718
void DefineCustomRealVariable(const char *name, const char *short_desc, const char *long_desc, double *valueAddr, double bootValue, double minValue, double maxValue, GucContext context, int flags, GucRealCheckHook check_hook, GucRealAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5095
void DefineCustomEnumVariable(const char *name, const char *short_desc, const char *long_desc, int *valueAddr, int bootValue, const struct config_enum_entry *options, GucContext context, int flags, GucEnumCheckHook check_hook, GucEnumAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5146
char * GetConfigOptionByName(const char *name, const char **varname, bool missing_ok)
Definition guc.c:5333
static bool convert_to_base_unit(double value, const char *unit, int base_unit, double *base_value)
Definition guc.c:2578
static void do_serialize_binary(char **destptr, Size *maxbytes, void *val, Size valsize)
Definition guc.c:5910
static void serialize_variable(char **destptr, Size *maxbytes, struct config_generic *gconf)
Definition guc.c:5925
static void define_custom_variable(struct config_generic *variable)
Definition guc.c:4831
static void free_placeholder(struct config_generic *pHolder)
Definition guc.c:5028
int NewGUCNestLevel(void)
Definition guc.c:2142
ArrayType * GUCArrayAdd(ArrayType *array, const char *name, const char *value)
Definition guc.c:6360
void ProcessGUCArray(ArrayType *array, GucContext context, GucSource source, GucAction action)
Definition guc.c:6328
static bool valid_custom_variable_name(const char *name)
Definition guc.c:957
struct config_generic ** get_guc_variables(int *num_vars)
Definition guc.c:840
char * GUC_check_errhint_string
Definition guc.c:85
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition guc.c:4228
static bool call_enum_check_hook(const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
Definition guc.c:6825
static int guc_var_compare(const void *a, const void *b)
Definition guc.c:1166
#define MAX_UNIT_LEN
Definition guc.c:103
static void set_string_field(struct config_generic *conf, char **field, char *newval)
Definition guc.c:728
void * guc_realloc(int elevel, void *old, size_t size)
Definition guc.c:651
void DefineCustomStringVariable(const char *name, const char *short_desc, const char *long_desc, char **valueAddr, const char *bootValue, GucContext context, int flags, GucStringCheckHook check_hook, GucStringAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5123
void * guc_malloc(int elevel, size_t size)
Definition guc.c:637
bool parse_real(const char *value, double *result, int flags, const char **hintmsg)
Definition guc.c:2865
static void push_old_value(struct config_generic *gconf, GucAction action)
Definition guc.c:2041
void DefineCustomBoolVariable(const char *name, const char *short_desc, const char *long_desc, bool *valueAddr, bool bootValue, GucContext context, int flags, GucBoolCheckHook check_hook, GucBoolAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5043
static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
Definition guc.c:4365
static void InitializeOneGUCOption(struct config_generic *gconf)
Definition guc.c:1522
#define newval
const char * GetConfigOption(const char *name, bool missing_ok, bool restrict_privileged)
Definition guc.c:4251
static bool can_skip_gucvar(struct config_generic *gconf)
Definition guc.c:5715
void SerializeGUCState(Size maxsize, char *start_address)
Definition guc.c:6002
static void pg_timezone_abbrev_initialize(void)
Definition guc.c:1899
struct config_generic * find_option(const char *name, bool create_placeholders, bool skip_errors, int elevel)
Definition guc.c:1114
static const unit_conversion memory_unit_conversion_table[]
Definition guc.c:123
static bool call_int_check_hook(const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
Definition guc.c:6707
bool SelectConfigFiles(const char *userDoption, const char *progname)
Definition guc.c:1656
static void reapply_stacked_values(struct config_generic *variable, struct config_generic *pHolder, GucStack *stack, const char *curvalue, GucContext curscontext, GucSource cursource, Oid cursrole)
Definition guc.c:4932
static int GUCNestLevel
Definition guc.c:233
static struct config_generic * init_custom_variable(const char *name, const char *short_desc, const char *long_desc, GucContext context, int flags, enum config_type type)
Definition guc.c:4771
static bool parse_and_validate_value(const struct config_generic *record, const char *value, GucSource source, int elevel, union config_var_val *newval, void **newextra)
Definition guc.c:3028
#define REALTYPE_PRECISION
Definition guc.c:70
config_handle * get_config_handle(const char *name)
Definition guc.c:4180
char * GUC_check_errmsg_string
Definition guc.c:83
void AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
Definition guc.c:4502
#define IDENT_FILENAME
Definition guc.c:58
Size EstimateGUCStateSpace(void)
Definition guc.c:5849
static const char *const memory_units_hint
Definition guc.c:121
static void discard_stack_value(struct config_generic *gconf, config_var_value *val)
Definition guc.c:814
static int GUC_check_errcode_value
Definition guc.c:78
void AtStart_GUC(void)
Definition guc.c:2122
void ParseLongOption(const char *string, char **name, char **value)
Definition guc.c:6237
void ResetAllOptions(void)
Definition guc.c:1910
static void convert_int_from_base_unit(int64 base_value, int base_unit, int64 *value, const char **unit)
Definition guc.c:2635
static void RemoveGUCFromLists(struct config_generic *gconf)
Definition guc.c:1633
const char * GetConfigOptionResetString(const char *name)
Definition guc.c:4301
#define HOSTS_FILENAME
Definition guc.c:59
bool config_enum_lookup_by_name(const struct config_enum *record, const char *value, int *retval)
Definition guc.c:2948
void build_guc_variables(void)
Definition guc.c:871
static struct config_generic * add_placeholder_variable(const char *name, int elevel)
Definition guc.c:1058
static void set_stack_value(struct config_generic *gconf, config_var_value *val)
Definition guc.c:786
void InitializeGUCOptions(void)
Definition guc.c:1408
static void read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
Definition guc.c:6058
void MarkGUCPrefixReserved(const char *className)
Definition guc.c:5180
ArrayType * GUCArrayReset(ArrayType *array)
Definition guc.c:6506
struct config_generic ** get_explain_guc_options(int *num)
Definition guc.c:5232
ArrayType * GUCArrayDelete(ArrayType *array, const char *name)
Definition guc.c:6437
static bool add_guc_variable(struct config_generic *var, int elevel)
Definition guc.c:928
static bool extra_field_used(struct config_generic *gconf, void *extra)
Definition guc.c:744
static char * read_gucstate(char **srcptr, char *srcend)
Definition guc.c:6035
static List * reserved_class_prefix
Definition guc.c:80
void RestrictSearchPath(void)
Definition guc.c:2153
int GetConfigOptionFlags(const char *name, bool missing_ok)
Definition guc.c:4348
char * GUC_check_errdetail_string
Definition guc.c:84
static uint32 guc_name_hash(const void *key, Size keysize)
Definition guc.c:1208
void check_GUC_name_for_parameter_acl(const char *name)
Definition guc.c:1288
static void InitializeGUCOptionsFromEnvironment(void)
Definition guc.c:1467
char * convert_GUC_name_for_parameter_acl(const char *name)
Definition guc.c:1252
static slist_head guc_stack_list
Definition guc.c:226
int set_config_with_handle(const char *name, config_handle *handle, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition guc.c:3311
static const char *const time_units_hint
Definition guc.c:158
ConfigVariable * ProcessConfigFileInternal(GucContext context, bool applySettings, int elevel)
Definition guc.c:285
static void replace_auto_config_value(ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
Definition guc.c:4432
static Size estimate_variable_size(struct config_generic *gconf)
Definition guc.c:5749
static void convert_real_from_base_unit(double base_value, int base_unit, double *value, const char **unit)
Definition guc.c:2676
#define HBA_FILENAME
Definition guc.c:57
int guc_name_compare(const char *namea, const char *nameb)
Definition guc.c:1178
static void set_guc_source(struct config_generic *gconf, GucSource newsource)
Definition guc.c:2018
static void static bool call_bool_check_hook(const struct config_generic *conf, bool *newval, void **extra, GucSource source, int elevel)
Definition guc.c:6673
void TransformGUCArray(ArrayType *array, List **names, List **values)
Definition guc.c:6273
char * guc_strdup(int elevel, const char *src)
Definition guc.c:676
static void set_extra_field(struct config_generic *gconf, void **field, void *newval)
Definition guc.c:766
static const unit_conversion time_unit_conversion_table[]
Definition guc.c:160
static HTAB * guc_hashtab
Definition guc.c:214
static MemoryContext GUCMemoryContext
Definition guc.c:201
void ReportChangedGUCOptions(void)
Definition guc.c:2503
static bool string_field_used(struct config_generic *conf, char *strval)
Definition guc.c:707
#define CONFIG_FILENAME
Definition guc.c:56
void AtEOXact_GUC(bool isCommit, int nestLevel)
Definition guc.c:2169
void DefineCustomIntVariable(const char *name, const char *short_desc, const char *long_desc, int *valueAddr, int bootValue, int minValue, int maxValue, GucContext context, int flags, GucIntCheckHook check_hook, GucIntAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5067
char * ShowGUCOption(const struct config_generic *record, bool use_units)
Definition guc.c:5366
static bool reporting_enabled
Definition guc.c:231
static bool call_string_check_hook(const struct config_generic *conf, char **newval, void **extra, GucSource source, int elevel)
Definition guc.c:6775
int set_config_option(const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition guc.c:3248
bool(* GucBoolCheckHook)(bool *newval, void **extra, GucSource source)
Definition guc.h:183
GucAction
Definition guc.h:201
@ GUC_ACTION_SAVE
Definition guc.h:205
@ GUC_ACTION_SET
Definition guc.h:203
@ GUC_ACTION_LOCAL
Definition guc.h:204
#define GUC_UNIT_MB
Definition guc.h:235
#define GUC_EXPLAIN
Definition guc.h:219
#define GUC_UNIT
Definition guc.h:244
#define GUC_NO_RESET_ALL
Definition guc.h:218
bool(* GucRealCheckHook)(double *newval, void **extra, GucSource source)
Definition guc.h:185
void(* GucStringAssignHook)(const char *newval, void *extra)
Definition guc.h:192
bool(* GucEnumCheckHook)(int *newval, void **extra, GucSource source)
Definition guc.h:187
#define GUC_NO_RESET
Definition guc.h:217
void(* GucBoolAssignHook)(bool newval, void *extra)
Definition guc.h:189
#define GUC_CUSTOM_PLACEHOLDER
Definition guc.h:223
#define GUC_LIST_QUOTE
Definition guc.h:215
void(* GucEnumAssignHook)(int newval, void *extra)
Definition guc.h:193
#define GUC_UNIT_MS
Definition guc.h:239
#define GUC_NOT_WHILE_SEC_REST
Definition guc.h:226
#define GUC_UNIT_BLOCKS
Definition guc.h:233
#define GUC_UNIT_XBLOCKS
Definition guc.h:234
#define GUC_IS_NAME
Definition guc.h:225
#define GUC_DISALLOW_IN_FILE
Definition guc.h:222
GucSource
Definition guc.h:112
@ PGC_S_DEFAULT
Definition guc.h:113
@ PGC_S_DYNAMIC_DEFAULT
Definition guc.h:114
@ PGC_S_FILE
Definition guc.h:116
@ PGC_S_GLOBAL
Definition guc.h:118
@ PGC_S_DATABASE
Definition guc.h:119
@ PGC_S_OVERRIDE
Definition guc.h:123
@ PGC_S_SESSION
Definition guc.h:126
@ PGC_S_CLIENT
Definition guc.h:122
@ PGC_S_DATABASE_USER
Definition guc.h:121
@ PGC_S_ENV_VAR
Definition guc.h:115
@ PGC_S_USER
Definition guc.h:120
@ PGC_S_TEST
Definition guc.h:125
@ PGC_S_INTERACTIVE
Definition guc.h:124
#define GUC_NO_SHOW_ALL
Definition guc.h:216
bool(* GucStringCheckHook)(char **newval, void **extra, GucSource source)
Definition guc.h:186
#define GUC_DISALLOW_IN_AUTO_FILE
Definition guc.h:227
void(* GucIntAssignHook)(int newval, void *extra)
Definition guc.h:190
void(* GucRealAssignHook)(double newval, void *extra)
Definition guc.h:191
#define GUC_ALLOW_IN_PARALLEL
Definition guc.h:230
GucContext
Definition guc.h:72
@ PGC_SUSET
Definition guc.h:78
@ PGC_INTERNAL
Definition guc.h:73
@ PGC_USERSET
Definition guc.h:79
@ PGC_SU_BACKEND
Definition guc.h:76
@ PGC_POSTMASTER
Definition guc.h:74
@ PGC_SIGHUP
Definition guc.h:75
@ PGC_BACKEND
Definition guc.h:77
#define GUC_UNIT_BYTE
Definition guc.h:236
bool(* GucIntCheckHook)(int *newval, void **extra, GucSource source)
Definition guc.h:184
#define GUC_NOT_IN_SAMPLE
Definition guc.h:221
#define GUC_UNIT_S
Definition guc.h:240
#define GUC_REPORT
Definition guc.h:220
#define GUC_UNIT_KB
Definition guc.h:232
#define GUC_QUALIFIER_SEPARATOR
Definition guc.h:208
const char *(* GucShowHook)(void)
Definition guc.h:195
#define GUC_UNIT_MIN
Definition guc.h:241
#define GUC_UNIT_MEMORY
Definition guc.h:237
bool ConfigOptionIsVisible(const struct config_generic *conf)
Definition guc_funcs.c:612
char * ExtractSetVariableArgs(VariableSetStmt *stmt)
Definition guc_funcs.c:169
char * HbaFileName
Definition guc_tables.c:566
char * HostsFileName
Definition guc_tables.c:568
char * ConfigFileName
Definition guc_tables.c:565
bool AllowAlterSystem
Definition guc_tables.c:516
bool in_hot_standby_guc
Definition guc_tables.c:659
char * IdentFileName
Definition guc_tables.c:567
PGDLLIMPORT struct config_generic ConfigureNames[]
#define GUC_IS_IN_FILE
Definition guc_tables.h:294
@ GUC_SET_LOCAL
Definition guc_tables.h:117
@ GUC_SET
Definition guc_tables.h:115
@ GUC_SAVE
Definition guc_tables.h:114
@ GUC_LOCAL
Definition guc_tables.h:116
@ CUSTOM_OPTIONS
Definition guc_tables.h:103
#define GUC_NEEDS_REPORT
Definition guc_tables.h:300
config_type
Definition guc_tables.h:24
@ PGC_BOOL
Definition guc_tables.h:25
@ PGC_STRING
Definition guc_tables.h:28
@ PGC_ENUM
Definition guc_tables.h:29
@ PGC_REAL
Definition guc_tables.h:27
@ PGC_INT
Definition guc_tables.h:26
#define GUC_PENDING_RESTART
Definition guc_tables.h:299
const char * str
@ HASH_FIND
Definition hsearch.h:113
@ HASH_REMOVE
Definition hsearch.h:115
@ HASH_ENTER
Definition hsearch.h:114
@ HASH_ENTER_NULL
Definition hsearch.h:116
#define HASH_CONTEXT
Definition hsearch.h:102
#define HASH_ELEM
Definition hsearch.h:95
#define HASH_COMPARE
Definition hsearch.h:99
#define HASH_FUNCTION
Definition hsearch.h:98
void slist_delete(slist_head *head, const slist_node *node)
Definition ilist.c:31
static void slist_delete_current(slist_mutable_iter *iter)
Definition ilist.h:1084
#define dlist_foreach(iter, lhead)
Definition ilist.h:623
static void dlist_delete(dlist_node *node)
Definition ilist.h:405
#define slist_foreach_modify(iter, lhead)
Definition ilist.h:1148
#define dlist_foreach_modify(iter, lhead)
Definition ilist.h:640
static void slist_push_head(slist_head *head, slist_node *node)
Definition ilist.h:1006
static void dlist_push_tail(dlist_head *head, dlist_node *node)
Definition ilist.h:364
#define slist_container(type, membername, ptr)
Definition ilist.h:1106
#define dlist_container(type, membername, ptr)
Definition ilist.h:593
long val
Definition informix.c:689
static struct @174 value
#define close(a)
Definition win32.h:12
#define write(a, b, c)
Definition win32.h:14
int b
Definition isn.c:74
int a
Definition isn.c:73
int i
Definition isn.c:77
List * lappend(List *list, void *datum)
Definition list.c:339
void list_free(List *list)
Definition list.c:1546
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1177
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1794
@ LW_EXCLUSIVE
Definition lwlock.h:112
const char * progname
Definition main.c:44
const char * GetDatabaseEncodingName(void)
Definition mbutils.c:1395
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition mcxt.c:1266
MemoryContext TopTransactionContext
Definition mcxt.c:171
char * pstrdup(const char *in)
Definition mcxt.c:1781
void pfree(void *pointer)
Definition mcxt.c:1616
MemoryContext TopMemoryContext
Definition mcxt.c:166
void * palloc(Size size)
Definition mcxt.c:1387
MemoryContext GetMemoryChunkContext(void *pointer)
Definition mcxt.c:756
void * MemoryContextAllocExtended(MemoryContext context, Size size, int flags)
Definition mcxt.c:1289
void * repalloc_extended(void *pointer, Size size, int flags)
Definition mcxt.c:1667
#define AllocSetContextCreate
Definition memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition memutils.h:160
#define IsBootstrapProcessingMode()
Definition miscadmin.h:477
#define STACK_DEPTH_SLOP
Definition miscadmin.h:297
bool InSecurityRestrictedOperation(void)
Definition miscinit.c:640
Oid GetUserId(void)
Definition miscinit.c:470
bool InLocalUserIdChange(void)
Definition miscinit.c:631
void SetDataDir(const char *dir)
Definition miscinit.c:390
bool process_shared_preload_libraries_in_progress
Definition miscinit.c:1787
static char * errmsg
#define InvokeObjectPostAlterHookArgStr(classId, objectName, subId, auxiliaryId, is_internal)
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition palloc.h:124
#define ACL_SET
Definition parsenodes.h:88
@ VAR_SET_DEFAULT
@ VAR_RESET
@ VAR_SET_VALUE
@ VAR_RESET_ALL
#define ACL_ALTER_SYSTEM
Definition parsenodes.h:89
static uint32 pg_rotate_left32(uint32 word, int n)
#define MAXPGPATH
const void size_t len
const void * data
#define PG_AUTOCONF_FILENAME
static char * filename
Definition pg_dumpall.c:133
#define lfirst(lc)
Definition pg_list.h:172
#define NIL
Definition pg_list.h:68
#define forboth(cell1, list1, cell2, list2)
Definition pg_list.h:518
static const struct lconv_member_info table[]
static void bail_out(bool noatexit, const char *fmt,...) pg_attribute_printf(2
Definition pg_regress.c:255
static rewind_source * source
Definition pg_rewind.c:89
static char buf[DEFAULT_XLOG_SEG_SIZE]
void pg_timezone_initialize(void)
Definition pgtz.c:361
#define vsnprintf
Definition port.h:259
int pg_strcasecmp(const char *s1, const char *s2)
char * escape_single_quotes_ascii(const char *src)
Definition quotes.c:33
#define sprintf
Definition port.h:262
#define snprintf
Definition port.h:260
char * make_absolute_path(const char *path)
Definition path.c:807
#define qsort(a, b, c, d)
Definition port.h:495
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition strlcpy.c:45
CommandDest whereToSendOutput
Definition postgres.c:94
static const char * userDoption
Definition postgres.c:156
uint64_t Datum
Definition postgres.h:70
unsigned int Oid
void pq_sendstring(StringInfo buf, const char *str)
Definition pqformat.c:195
void pq_endmessage(StringInfo buf)
Definition pqformat.c:296
void pq_beginmessage(StringInfo buf, char msgtype)
Definition pqformat.c:88
e
static int fd(const char *x, int i)
static int fb(int x)
#define PqMsg_ParameterStatus
Definition protocol.h:51
char * psprintf(const char *fmt,...)
Definition psprintf.c:43
void truncate_identifier(char *ident, int len, bool warn)
Definition scansup.c:81
Size add_size(Size s1, Size s2)
Definition shmem.c:485
#define free(a)
static void error(void)
ssize_t get_stack_depth_rlimit(void)
void resetStringInfo(StringInfo str)
Definition stringinfo.c:126
void appendBinaryStringInfo(StringInfo str, const void *data, int datalen)
Definition stringinfo.c:281
void appendStringInfoString(StringInfo str, const char *s)
Definition stringinfo.c:230
void initStringInfo(StringInfo str)
Definition stringinfo.c:97
char * name
Definition guc.h:141
bool ignore
Definition guc.h:146
struct ConfigVariable * next
Definition guc.h:148
bool applied
Definition guc.h:147
char * filename
Definition guc.h:144
int sourceline
Definition guc.h:145
char * value
Definition guc.h:142
char * errmsg
Definition guc.h:143
struct ErrorContextCallback * previous
Definition elog.h:297
const char * gucname
Definition guc.c:210
struct config_generic * gucvar
Definition guc.c:211
Definition pg_list.h:54
bool * variable
Definition guc_tables.h:141
GucBoolCheckHook check_hook
Definition guc_tables.h:143
GucBoolAssignHook assign_hook
Definition guc_tables.h:144
GucShowHook show_hook
Definition guc_tables.h:145
Definition guc.h:174
const struct config_enum_entry * options
Definition guc_tables.h:205
int * variable
Definition guc_tables.h:203
GucEnumAssignHook assign_hook
Definition guc_tables.h:207
GucEnumCheckHook check_hook
Definition guc_tables.h:206
GucShowHook show_hook
Definition guc_tables.h:208
dlist_node nondef_link
Definition guc_tables.h:270
char * last_reported
Definition guc_tables.h:276
enum config_group group
Definition guc_tables.h:254
GucContext context
Definition guc_tables.h:253
const char * long_desc
Definition guc_tables.h:256
struct config_bool _bool
Definition guc_tables.h:285
GucContext scontext
Definition guc_tables.h:263
struct config_string _string
Definition guc_tables.h:288
const char * name
Definition guc_tables.h:252
struct config_real _real
Definition guc_tables.h:287
slist_node stack_link
Definition guc_tables.h:272
const char * short_desc
Definition guc_tables.h:255
char * sourcefile
Definition guc_tables.h:278
struct config_int _int
Definition guc_tables.h:286
GucContext reset_scontext
Definition guc_tables.h:264
GucStack * stack
Definition guc_tables.h:267
enum config_type vartype
Definition guc_tables.h:258
GucSource source
Definition guc_tables.h:261
void * reset_extra
Definition guc_tables.h:269
GucSource reset_source
Definition guc_tables.h:262
slist_node report_link
Definition guc_tables.h:274
struct config_enum _enum
Definition guc_tables.h:289
GucIntAssignHook assign_hook
Definition guc_tables.h:158
int * variable
Definition guc_tables.h:153
GucIntCheckHook check_hook
Definition guc_tables.h:157
GucShowHook show_hook
Definition guc_tables.h:159
double boot_val
Definition guc_tables.h:168
double reset_val
Definition guc_tables.h:175
GucRealAssignHook assign_hook
Definition guc_tables.h:172
double * variable
Definition guc_tables.h:167
GucShowHook show_hook
Definition guc_tables.h:173
GucRealCheckHook check_hook
Definition guc_tables.h:171
char * reset_val
Definition guc_tables.h:197
GucStringCheckHook check_hook
Definition guc_tables.h:193
GucStringAssignHook assign_hook
Definition guc_tables.h:194
GucShowHook show_hook
Definition guc_tables.h:195
char ** variable
Definition guc_tables.h:191
const char * boot_val
Definition guc_tables.h:192
union config_var_val val
Definition guc_tables.h:47
dlist_node * cur
Definition ilist.h:179
dlist_node * cur
Definition ilist.h:200
struct guc_stack * prev
Definition guc_tables.h:122
Oid masked_srole
Definition guc_tables.h:130
int nest_level
Definition guc_tables.h:123
config_var_value masked
Definition guc_tables.h:132
config_var_value prior
Definition guc_tables.h:131
GucContext scontext
Definition guc_tables.h:127
GucStackState state
Definition guc_tables.h:124
GucSource source
Definition guc_tables.h:125
GucContext masked_scontext
Definition guc_tables.h:128
Definition type.h:96
slist_node * cur
Definition ilist.h:274
double multiplier
Definition guc.c:110
int base_unit
Definition guc.c:109
char * name
Definition type.h:191
bool superuser(void)
Definition superuser.c:47
char * stringval
Definition guc_tables.h:37
const char * type
const char * name
#define stat
Definition win32_port.h:74
bool IsInParallelMode(void)
Definition xact.c:1091
bool RecoveryInProgress(void)
Definition xlog.c:6444
static void infile(const char *name)
Definition zic.c:1257