PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
guc.c File Reference
#include "postgres.h"
#include <limits.h>
#include <math.h>
#include <sys/stat.h>
#include <unistd.h>
#include "access/xact.h"
#include "access/xlog.h"
#include "catalog/objectaccess.h"
#include "catalog/pg_authid.h"
#include "catalog/pg_parameter_acl.h"
#include "catalog/pg_type.h"
#include "guc_internal.h"
#include "libpq/pqformat.h"
#include "libpq/protocol.h"
#include "miscadmin.h"
#include "parser/scansup.h"
#include "port/pg_bitutils.h"
#include "storage/fd.h"
#include "storage/lwlock.h"
#include "storage/shmem.h"
#include "tcop/tcopprot.h"
#include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/conffiles.h"
#include "utils/guc_tables.h"
#include "utils/memutils.h"
#include "utils/timestamp.h"
Include dependency graph for guc.c:

Go to the source code of this file.

Data Structures

struct  unit_conversion
 
struct  GUCHashEntry
 

Macros

#define CONFIG_FILENAME   "postgresql.conf"
 
#define HBA_FILENAME   "pg_hba.conf"
 
#define IDENT_FILENAME   "pg_ident.conf"
 
#define REALTYPE_PRECISION   17
 
#define GUC_SAFE_SEARCH_PATH   "pg_catalog, pg_temp"
 
#define MAX_UNIT_LEN   3 /* length of longest recognized unit string */
 
#define newval   (newval_union.boolval)
 
#define newval   (newval_union.intval)
 
#define newval   (newval_union.realval)
 
#define newval   (newval_union.stringval)
 
#define newval   (newval_union.enumval)
 

Functions

static int guc_var_compare (const void *a, const void *b)
 
static uint32 guc_name_hash (const void *key, Size keysize)
 
static int guc_name_match (const void *key1, const void *key2, Size keysize)
 
static void InitializeGUCOptionsFromEnvironment (void)
 
static void InitializeOneGUCOption (struct config_generic *gconf)
 
static void RemoveGUCFromLists (struct config_generic *gconf)
 
static void set_guc_source (struct config_generic *gconf, GucSource newsource)
 
static void pg_timezone_abbrev_initialize (void)
 
static void push_old_value (struct config_generic *gconf, GucAction action)
 
static void ReportGUCOption (struct config_generic *record)
 
static void set_config_sourcefile (const char *name, char *sourcefile, int sourceline)
 
static void reapply_stacked_values (struct config_generic *variable, struct config_generic *pHolder, GucStack *stack, const char *curvalue, GucContext curscontext, GucSource cursource, Oid cursrole)
 
static void free_placeholder (struct config_generic *pHolder)
 
static bool validate_option_array_item (const char *name, const char *value, bool skipIfNoPermissions)
 
static void write_auto_conf_file (int fd, const char *filename, ConfigVariable *head)
 
static void replace_auto_config_value (ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
 
static bool valid_custom_variable_name (const char *name)
 
static bool assignable_custom_variable_name (const char *name, bool skip_errors, int elevel)
 
static void do_serialize (char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
 
static void static bool call_bool_check_hook (const struct config_generic *conf, bool *newval, void **extra, GucSource source, int elevel)
 
static bool call_int_check_hook (const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
 
static bool call_real_check_hook (const struct config_generic *conf, double *newval, void **extra, GucSource source, int elevel)
 
static bool call_string_check_hook (const struct config_generic *conf, char **newval, void **extra, GucSource source, int elevel)
 
static bool call_enum_check_hook (const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
 
ConfigVariableProcessConfigFileInternal (GucContext context, bool applySettings, int elevel)
 
void * guc_malloc (int elevel, size_t size)
 
void * guc_realloc (int elevel, void *old, size_t size)
 
char * guc_strdup (int elevel, const char *src)
 
void guc_free (void *ptr)
 
static bool string_field_used (struct config_generic *conf, char *strval)
 
static void set_string_field (struct config_generic *conf, char **field, char *newval)
 
static bool extra_field_used (struct config_generic *gconf, void *extra)
 
static void set_extra_field (struct config_generic *gconf, void **field, void *newval)
 
static void set_stack_value (struct config_generic *gconf, config_var_value *val)
 
static void discard_stack_value (struct config_generic *gconf, config_var_value *val)
 
struct config_generic ** get_guc_variables (int *num_vars)
 
void build_guc_variables (void)
 
static bool add_guc_variable (struct config_generic *var, int elevel)
 
static struct config_genericadd_placeholder_variable (const char *name, int elevel)
 
struct config_genericfind_option (const char *name, bool create_placeholders, bool skip_errors, int elevel)
 
int guc_name_compare (const char *namea, const char *nameb)
 
char * convert_GUC_name_for_parameter_acl (const char *name)
 
void check_GUC_name_for_parameter_acl (const char *name)
 
void InitializeGUCOptions (void)
 
bool SelectConfigFiles (const char *userDoption, const char *progname)
 
void ResetAllOptions (void)
 
void AtStart_GUC (void)
 
int NewGUCNestLevel (void)
 
void RestrictSearchPath (void)
 
void AtEOXact_GUC (bool isCommit, int nestLevel)
 
void BeginReportingGUCOptions (void)
 
void ReportChangedGUCOptions (void)
 
static bool convert_to_base_unit (double value, const char *unit, int base_unit, double *base_value)
 
static void convert_int_from_base_unit (int64 base_value, int base_unit, int64 *value, const char **unit)
 
static void convert_real_from_base_unit (double base_value, int base_unit, double *value, const char **unit)
 
const char * get_config_unit_name (int flags)
 
bool parse_int (const char *value, int *result, int flags, const char **hintmsg)
 
bool parse_real (const char *value, double *result, int flags, const char **hintmsg)
 
const char * config_enum_lookup_by_value (const struct config_generic *record, int val)
 
bool config_enum_lookup_by_name (const struct config_enum *record, const char *value, int *retval)
 
char * config_enum_get_options (const struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
 
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)
 
int set_config_option (const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
 
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)
 
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)
 
config_handleget_config_handle (const char *name)
 
void SetConfigOption (const char *name, const char *value, GucContext context, GucSource source)
 
const char * GetConfigOption (const char *name, bool missing_ok, bool restrict_privileged)
 
const char * GetConfigOptionResetString (const char *name)
 
int GetConfigOptionFlags (const char *name, bool missing_ok)
 
void AlterSystemSetConfigFile (AlterSystemStmt *altersysstmt)
 
static struct config_genericinit_custom_variable (const char *name, const char *short_desc, const char *long_desc, GucContext context, int flags, enum config_type type)
 
static void define_custom_variable (struct config_generic *variable)
 
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)
 
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)
 
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)
 
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)
 
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)
 
void MarkGUCPrefixReserved (const char *className)
 
struct config_generic ** get_explain_guc_options (int *num)
 
char * GetConfigOptionByName (const char *name, const char **varname, bool missing_ok)
 
char * ShowGUCOption (const struct config_generic *record, bool use_units)
 
static bool can_skip_gucvar (struct config_generic *gconf)
 
static Size estimate_variable_size (struct config_generic *gconf)
 
Size EstimateGUCStateSpace (void)
 
static void do_serialize_binary (char **destptr, Size *maxbytes, void *val, Size valsize)
 
static void serialize_variable (char **destptr, Size *maxbytes, struct config_generic *gconf)
 
void SerializeGUCState (Size maxsize, char *start_address)
 
static char * read_gucstate (char **srcptr, char *srcend)
 
static void read_gucstate_binary (char **srcptr, char *srcend, void *dest, Size size)
 
static void guc_restore_error_context_callback (void *arg)
 
void RestoreGUCState (void *gucstate)
 
void ParseLongOption (const char *string, char **name, char **value)
 
void TransformGUCArray (ArrayType *array, List **names, List **values)
 
void ProcessGUCArray (ArrayType *array, GucContext context, GucSource source, GucAction action)
 
ArrayTypeGUCArrayAdd (ArrayType *array, const char *name, const char *value)
 
ArrayTypeGUCArrayDelete (ArrayType *array, const char *name)
 
ArrayTypeGUCArrayReset (ArrayType *array)
 
void GUC_check_errcode (int sqlerrcode)
 

Variables

static int GUC_check_errcode_value
 
static Listreserved_class_prefix = NIL
 
char * GUC_check_errmsg_string
 
char * GUC_check_errdetail_string
 
char * GUC_check_errhint_string
 
static const char *const memory_units_hint = gettext_noop("Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\".")
 
static const unit_conversion memory_unit_conversion_table []
 
static const char *const time_units_hint = gettext_noop("Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\".")
 
static const unit_conversion time_unit_conversion_table []
 
static const char *const map_old_guc_names []
 
static MemoryContext GUCMemoryContext
 
static HTABguc_hashtab
 
static dlist_head guc_nondef_list
 
static slist_head guc_stack_list
 
static slist_head guc_report_list
 
static bool reporting_enabled
 
static int GUCNestLevel = 0
 

Macro Definition Documentation

◆ CONFIG_FILENAME

#define CONFIG_FILENAME   "postgresql.conf"

Definition at line 56 of file guc.c.

◆ GUC_SAFE_SEARCH_PATH

#define GUC_SAFE_SEARCH_PATH   "pg_catalog, pg_temp"

Definition at line 75 of file guc.c.

◆ HBA_FILENAME

#define HBA_FILENAME   "pg_hba.conf"

Definition at line 57 of file guc.c.

◆ IDENT_FILENAME

#define IDENT_FILENAME   "pg_ident.conf"

Definition at line 58 of file guc.c.

◆ MAX_UNIT_LEN

#define MAX_UNIT_LEN   3 /* length of longest recognized unit string */

Definition at line 102 of file guc.c.

◆ newval [1/5]

#define newval   (newval_union.boolval)

◆ newval [2/5]

#define newval   (newval_union.intval)

◆ newval [3/5]

#define newval   (newval_union.realval)

◆ newval [4/5]

#define newval   (newval_union.stringval)

◆ newval [5/5]

#define newval   (newval_union.enumval)

◆ REALTYPE_PRECISION

#define REALTYPE_PRECISION   17

Definition at line 69 of file guc.c.

Function Documentation

◆ add_guc_variable()

static bool add_guc_variable ( struct config_generic var,
int  elevel 
)
static

Definition at line 927 of file guc.c.

928{
929 GUCHashEntry *hentry;
930 bool found;
931
933 &var->name,
935 &found);
936 if (unlikely(hentry == NULL))
937 {
938 ereport(elevel,
939 (errcode(ERRCODE_OUT_OF_MEMORY),
940 errmsg("out of memory")));
941 return false; /* out of memory */
942 }
943 Assert(!found);
944 hentry->gucvar = var;
945 return true;
946}
#define unlikely(x)
Definition: c.h:406
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:952
int errcode(int sqlerrcode)
Definition: elog.c:863
int errmsg(const char *fmt,...)
Definition: elog.c:1080
#define ereport(elevel,...)
Definition: elog.h:150
static HTAB * guc_hashtab
Definition: guc.c:213
Assert(PointerIsAligned(start, uint64))
@ HASH_ENTER_NULL
Definition: hsearch.h:116
struct config_generic * gucvar
Definition: guc.c:210
const char * name
Definition: guc_tables.h:252

References Assert(), ereport, errcode(), errmsg(), guc_hashtab, GUCHashEntry::gucvar, HASH_ENTER_NULL, hash_search(), config_generic::name, and unlikely.

Referenced by add_placeholder_variable(), and define_custom_variable().

◆ add_placeholder_variable()

static struct config_generic * add_placeholder_variable ( const char *  name,
int  elevel 
)
static

Definition at line 1057 of file guc.c.

1058{
1059 size_t sz = sizeof(struct config_generic) + sizeof(char *);
1060 struct config_generic *var;
1061
1062 var = (struct config_generic *) guc_malloc(elevel, sz);
1063 if (var == NULL)
1064 return NULL;
1065 memset(var, 0, sz);
1066
1067 var->name = guc_strdup(elevel, name);
1068 if (var->name == NULL)
1069 {
1070 guc_free(var);
1071 return NULL;
1072 }
1073
1074 var->context = PGC_USERSET;
1075 var->group = CUSTOM_OPTIONS;
1076 var->short_desc = "GUC placeholder variable";
1078 var->vartype = PGC_STRING;
1079
1080 /*
1081 * The char* is allocated at the end of the struct since we have no
1082 * 'static' place to point to. Note that the current value, as well as
1083 * the boot and reset values, start out NULL.
1084 */
1085 var->_string.variable = (char **) (var + 1);
1086
1087 if (!add_guc_variable(var, elevel))
1088 {
1089 guc_free(unconstify(char *, var->name));
1090 guc_free(var);
1091 return NULL;
1092 }
1093
1094 return var;
1095}
#define unconstify(underlying_type, expr)
Definition: c.h:1248
void guc_free(void *ptr)
Definition: guc.c:687
void * guc_malloc(int elevel, size_t size)
Definition: guc.c:636
static bool add_guc_variable(struct config_generic *var, int elevel)
Definition: guc.c:927
char * guc_strdup(int elevel, const char *src)
Definition: guc.c:675
#define GUC_CUSTOM_PLACEHOLDER
Definition: guc.h:223
#define GUC_NO_SHOW_ALL
Definition: guc.h:216
@ PGC_USERSET
Definition: guc.h:79
#define GUC_NOT_IN_SAMPLE
Definition: guc.h:221
@ CUSTOM_OPTIONS
Definition: guc_tables.h:103
@ PGC_STRING
Definition: guc_tables.h:28
enum config_group group
Definition: guc_tables.h:254
GucContext context
Definition: guc_tables.h:253
struct config_string _string
Definition: guc_tables.h:288
const char * short_desc
Definition: guc_tables.h:255
enum config_type vartype
Definition: guc_tables.h:258
char ** variable
Definition: guc_tables.h:191
const char * name

References config_generic::_string, add_guc_variable(), config_generic::context, CUSTOM_OPTIONS, config_generic::flags, config_generic::group, GUC_CUSTOM_PLACEHOLDER, guc_free(), guc_malloc(), GUC_NO_SHOW_ALL, GUC_NOT_IN_SAMPLE, guc_strdup(), name, config_generic::name, PGC_STRING, PGC_USERSET, config_generic::short_desc, unconstify, config_string::variable, and config_generic::vartype.

Referenced by find_option().

◆ AlterSystemSetConfigFile()

void AlterSystemSetConfigFile ( AlterSystemStmt altersysstmt)

Definition at line 4459 of file guc.c.

4460{
4461 char *name;
4462 char *value;
4463 bool resetall = false;
4464 ConfigVariable *head = NULL;
4465 ConfigVariable *tail = NULL;
4466 volatile int Tmpfd;
4467 char AutoConfFileName[MAXPGPATH];
4468 char AutoConfTmpFileName[MAXPGPATH];
4469
4470 /*
4471 * Extract statement arguments
4472 */
4473 name = altersysstmt->setstmt->name;
4474
4475 if (!AllowAlterSystem)
4476 ereport(ERROR,
4477 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
4478 errmsg("ALTER SYSTEM is not allowed in this environment")));
4479
4480 switch (altersysstmt->setstmt->kind)
4481 {
4482 case VAR_SET_VALUE:
4483 value = ExtractSetVariableArgs(altersysstmt->setstmt);
4484 break;
4485
4486 case VAR_SET_DEFAULT:
4487 case VAR_RESET:
4488 value = NULL;
4489 break;
4490
4491 case VAR_RESET_ALL:
4492 value = NULL;
4493 resetall = true;
4494 break;
4495
4496 default:
4497 elog(ERROR, "unrecognized alter system stmt type: %d",
4498 altersysstmt->setstmt->kind);
4499 break;
4500 }
4501
4502 /*
4503 * Check permission to run ALTER SYSTEM on the target variable
4504 */
4505 if (!superuser())
4506 {
4507 if (resetall)
4508 ereport(ERROR,
4509 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4510 errmsg("permission denied to perform ALTER SYSTEM RESET ALL")));
4511 else
4512 {
4513 AclResult aclresult;
4514
4515 aclresult = pg_parameter_aclcheck(name, GetUserId(),
4517 if (aclresult != ACLCHECK_OK)
4518 ereport(ERROR,
4519 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4520 errmsg("permission denied to set parameter \"%s\"",
4521 name)));
4522 }
4523 }
4524
4525 /*
4526 * Unless it's RESET_ALL, validate the target variable and value
4527 */
4528 if (!resetall)
4529 {
4530 struct config_generic *record;
4531
4532 /* We don't want to create a placeholder if there's not one already */
4533 record = find_option(name, false, true, DEBUG5);
4534 if (record != NULL)
4535 {
4536 /*
4537 * Don't allow parameters that can't be set in configuration files
4538 * to be set in PG_AUTOCONF_FILENAME file.
4539 */
4540 if ((record->context == PGC_INTERNAL) ||
4541 (record->flags & GUC_DISALLOW_IN_FILE) ||
4542 (record->flags & GUC_DISALLOW_IN_AUTO_FILE))
4543 ereport(ERROR,
4544 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4545 errmsg("parameter \"%s\" cannot be changed",
4546 name)));
4547
4548 /*
4549 * If a value is specified, verify that it's sane.
4550 */
4551 if (value)
4552 {
4553 union config_var_val newval;
4554 void *newextra = NULL;
4555
4556 if (!parse_and_validate_value(record, value,
4558 &newval, &newextra))
4559 ereport(ERROR,
4560 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4561 errmsg("invalid value for parameter \"%s\": \"%s\"",
4562 name, value)));
4563
4564 if (record->vartype == PGC_STRING && newval.stringval != NULL)
4565 guc_free(newval.stringval);
4566 guc_free(newextra);
4567 }
4568 }
4569 else
4570 {
4571 /*
4572 * Variable not known; check we'd be allowed to create it. (We
4573 * cannot validate the value, but that's fine. A non-core GUC in
4574 * the config file cannot cause postmaster start to fail, so we
4575 * don't have to be too tense about possibly installing a bad
4576 * value.)
4577 *
4578 * As an exception, we skip this check if this is a RESET command
4579 * for an unknown custom GUC, else there'd be no way for users to
4580 * remove such settings with reserved prefixes.
4581 */
4584 }
4585
4586 /*
4587 * We must also reject values containing newlines, because the grammar
4588 * for config files doesn't support embedded newlines in string
4589 * literals.
4590 */
4591 if (value && strchr(value, '\n'))
4592 ereport(ERROR,
4593 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4594 errmsg("parameter value for ALTER SYSTEM must not contain a newline")));
4595 }
4596
4597 /*
4598 * PG_AUTOCONF_FILENAME and its corresponding temporary file are always in
4599 * the data directory, so we can reference them by simple relative paths.
4600 */
4601 snprintf(AutoConfFileName, sizeof(AutoConfFileName), "%s",
4603 snprintf(AutoConfTmpFileName, sizeof(AutoConfTmpFileName), "%s.%s",
4604 AutoConfFileName,
4605 "tmp");
4606
4607 /*
4608 * Only one backend is allowed to operate on PG_AUTOCONF_FILENAME at a
4609 * time. Use AutoFileLock to ensure that. We must hold the lock while
4610 * reading the old file contents.
4611 */
4612 LWLockAcquire(AutoFileLock, LW_EXCLUSIVE);
4613
4614 /*
4615 * If we're going to reset everything, then no need to open or parse the
4616 * old file. We'll just write out an empty list.
4617 */
4618 if (!resetall)
4619 {
4620 struct stat st;
4621
4622 if (stat(AutoConfFileName, &st) == 0)
4623 {
4624 /* open old file PG_AUTOCONF_FILENAME */
4625 FILE *infile;
4626
4627 infile = AllocateFile(AutoConfFileName, "r");
4628 if (infile == NULL)
4629 ereport(ERROR,
4631 errmsg("could not open file \"%s\": %m",
4632 AutoConfFileName)));
4633
4634 /* parse it */
4635 if (!ParseConfigFp(infile, AutoConfFileName, CONF_FILE_START_DEPTH,
4636 LOG, &head, &tail))
4637 ereport(ERROR,
4638 (errcode(ERRCODE_CONFIG_FILE_ERROR),
4639 errmsg("could not parse contents of file \"%s\"",
4640 AutoConfFileName)));
4641
4643 }
4644
4645 /*
4646 * Now, replace any existing entry with the new value, or add it if
4647 * not present.
4648 */
4649 replace_auto_config_value(&head, &tail, name, value);
4650 }
4651
4652 /*
4653 * Invoke the post-alter hook for setting this GUC variable. GUCs
4654 * typically do not have corresponding entries in pg_parameter_acl, so we
4655 * call the hook using the name rather than a potentially-non-existent
4656 * OID. Nonetheless, we pass ParameterAclRelationId so that this call
4657 * context can be distinguished from others. (Note that "name" will be
4658 * NULL in the RESET ALL case.)
4659 *
4660 * We do this here rather than at the end, because ALTER SYSTEM is not
4661 * transactional. If the hook aborts our transaction, it will be cleaner
4662 * to do so before we touch any files.
4663 */
4664 InvokeObjectPostAlterHookArgStr(ParameterAclRelationId, name,
4666 altersysstmt->setstmt->kind,
4667 false);
4668
4669 /*
4670 * To ensure crash safety, first write the new file data to a temp file,
4671 * then atomically rename it into place.
4672 *
4673 * If there is a temp file left over due to a previous crash, it's okay to
4674 * truncate and reuse it.
4675 */
4676 Tmpfd = BasicOpenFile(AutoConfTmpFileName,
4677 O_CREAT | O_RDWR | O_TRUNC);
4678 if (Tmpfd < 0)
4679 ereport(ERROR,
4681 errmsg("could not open file \"%s\": %m",
4682 AutoConfTmpFileName)));
4683
4684 /*
4685 * Use a TRY block to clean up the file if we fail. Since we need a TRY
4686 * block anyway, OK to use BasicOpenFile rather than OpenTransientFile.
4687 */
4688 PG_TRY();
4689 {
4690 /* Write and sync the new contents to the temporary file */
4691 write_auto_conf_file(Tmpfd, AutoConfTmpFileName, head);
4692
4693 /* Close before renaming; may be required on some platforms */
4694 close(Tmpfd);
4695 Tmpfd = -1;
4696
4697 /*
4698 * As the rename is atomic operation, if any problem occurs after this
4699 * at worst it can lose the parameters set by last ALTER SYSTEM
4700 * command.
4701 */
4702 durable_rename(AutoConfTmpFileName, AutoConfFileName, ERROR);
4703 }
4704 PG_CATCH();
4705 {
4706 /* Close file first, else unlink might fail on some platforms */
4707 if (Tmpfd >= 0)
4708 close(Tmpfd);
4709
4710 /* Unlink, but ignore any error */
4711 (void) unlink(AutoConfTmpFileName);
4712
4713 PG_RE_THROW();
4714 }
4715 PG_END_TRY();
4716
4717 FreeConfigVariables(head);
4718
4719 LWLockRelease(AutoFileLock);
4720}
AclResult
Definition: acl.h:182
@ ACLCHECK_OK
Definition: acl.h:183
AclResult pg_parameter_aclcheck(const char *name, Oid roleid, AclMode mode)
Definition: aclchk.c:4062
#define CONF_FILE_START_DEPTH
Definition: conffiles.h:17
int errcode_for_file_access(void)
Definition: elog.c:886
#define LOG
Definition: elog.h:31
#define PG_RE_THROW()
Definition: elog.h:405
#define PG_TRY(...)
Definition: elog.h:372
#define PG_END_TRY(...)
Definition: elog.h:397
#define ERROR
Definition: elog.h:39
#define PG_CATCH(...)
Definition: elog.h:382
#define elog(elevel,...)
Definition: elog.h:226
#define DEBUG5
Definition: elog.h:26
int durable_rename(const char *oldfile, const char *newfile, int elevel)
Definition: fd.c:779
int BasicOpenFile(const char *fileName, int fileFlags)
Definition: fd.c:1086
int FreeFile(FILE *file)
Definition: fd.c:2840
FILE * AllocateFile(const char *name, const char *mode)
Definition: fd.c:2641
void FreeConfigVariables(ConfigVariable *list)
Definition: guc-file.l:617
bool ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition: guc-file.l:350
static bool assignable_custom_variable_name(const char *name, bool skip_errors, int elevel)
Definition: guc.c:1001
static bool valid_custom_variable_name(const char *name)
Definition: guc.c:956
static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
Definition: guc.c:4322
#define newval
struct config_generic * find_option(const char *name, bool create_placeholders, bool skip_errors, int elevel)
Definition: guc.c:1113
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:2996
static void replace_auto_config_value(ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
Definition: guc.c:4389
#define PG_AUTOCONF_FILENAME
Definition: guc.h:37
#define GUC_DISALLOW_IN_FILE
Definition: guc.h:222
@ PGC_S_FILE
Definition: guc.h:116
#define GUC_DISALLOW_IN_AUTO_FILE
Definition: guc.h:227
@ PGC_INTERNAL
Definition: guc.h:73
char * ExtractSetVariableArgs(VariableSetStmt *stmt)
Definition: guc_funcs.c:167
bool AllowAlterSystem
Definition: guc_tables.c:506
static struct @171 value
#define close(a)
Definition: win32.h:12
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1174
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1894
@ LW_EXCLUSIVE
Definition: lwlock.h:112
Oid GetUserId(void)
Definition: miscinit.c:469
#define InvokeObjectPostAlterHookArgStr(classId, objectName, subId, auxiliaryId, is_internal)
Definition: objectaccess.h:247
@ VAR_SET_DEFAULT
Definition: parsenodes.h:2695
@ VAR_RESET
Definition: parsenodes.h:2698
@ VAR_SET_VALUE
Definition: parsenodes.h:2694
@ VAR_RESET_ALL
Definition: parsenodes.h:2699
#define ACL_ALTER_SYSTEM
Definition: parsenodes.h:89
#define MAXPGPATH
#define snprintf
Definition: port.h:239
VariableSetStmt * setstmt
Definition: parsenodes.h:3951
VariableSetKind kind
Definition: parsenodes.h:2707
bool superuser(void)
Definition: superuser.c:46
#define stat
Definition: win32_port.h:274
static void infile(const char *name)
Definition: zic.c:1243

References ACL_ALTER_SYSTEM, ACLCHECK_OK, AllocateFile(), AllowAlterSystem, assignable_custom_variable_name(), BasicOpenFile(), close, CONF_FILE_START_DEPTH, config_generic::context, DEBUG5, durable_rename(), elog, ereport, errcode(), errcode_for_file_access(), errmsg(), ERROR, ExtractSetVariableArgs(), find_option(), config_generic::flags, FreeConfigVariables(), FreeFile(), GetUserId(), GUC_DISALLOW_IN_AUTO_FILE, GUC_DISALLOW_IN_FILE, guc_free(), infile(), InvokeObjectPostAlterHookArgStr, VariableSetStmt::kind, LOG, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), MAXPGPATH, name, VariableSetStmt::name, newval, parse_and_validate_value(), ParseConfigFp(), PG_AUTOCONF_FILENAME, PG_CATCH, PG_END_TRY, pg_parameter_aclcheck(), PG_RE_THROW, PG_TRY, PGC_INTERNAL, PGC_S_FILE, PGC_STRING, replace_auto_config_value(), AlterSystemStmt::setstmt, snprintf, stat, superuser(), valid_custom_variable_name(), value, VAR_RESET, VAR_RESET_ALL, VAR_SET_DEFAULT, VAR_SET_VALUE, config_generic::vartype, and write_auto_conf_file().

Referenced by standard_ProcessUtility().

◆ assignable_custom_variable_name()

static bool assignable_custom_variable_name ( const char *  name,
bool  skip_errors,
int  elevel 
)
static

Definition at line 1001 of file guc.c.

1002{
1003 /* If there's no separator, it can't be a custom variable */
1004 const char *sep = strchr(name, GUC_QUALIFIER_SEPARATOR);
1005
1006 if (sep != NULL)
1007 {
1008 size_t classLen = sep - name;
1009 ListCell *lc;
1010
1011 /* The name must be syntactically acceptable ... */
1013 {
1014 if (!skip_errors)
1015 ereport(elevel,
1016 (errcode(ERRCODE_INVALID_NAME),
1017 errmsg("invalid configuration parameter name \"%s\"",
1018 name),
1019 errdetail("Custom parameter names must be two or more simple identifiers separated by dots.")));
1020 return false;
1021 }
1022 /* ... and it must not match any previously-reserved prefix */
1023 foreach(lc, reserved_class_prefix)
1024 {
1025 const char *rcprefix = lfirst(lc);
1026
1027 if (strlen(rcprefix) == classLen &&
1028 strncmp(name, rcprefix, classLen) == 0)
1029 {
1030 if (!skip_errors)
1031 ereport(elevel,
1032 (errcode(ERRCODE_INVALID_NAME),
1033 errmsg("invalid configuration parameter name \"%s\"",
1034 name),
1035 errdetail("\"%s\" is a reserved prefix.",
1036 rcprefix)));
1037 return false;
1038 }
1039 }
1040 /* OK to create it */
1041 return true;
1042 }
1043
1044 /* Unrecognized single-part name */
1045 if (!skip_errors)
1046 ereport(elevel,
1047 (errcode(ERRCODE_UNDEFINED_OBJECT),
1048 errmsg("unrecognized configuration parameter \"%s\"",
1049 name)));
1050 return false;
1051}
int errdetail(const char *fmt,...)
Definition: elog.c:1216
static List * reserved_class_prefix
Definition: guc.c:79
#define GUC_QUALIFIER_SEPARATOR
Definition: guc.h:208
#define lfirst(lc)
Definition: pg_list.h:172

References ereport, errcode(), errdetail(), errmsg(), GUC_QUALIFIER_SEPARATOR, lfirst, name, reserved_class_prefix, and valid_custom_variable_name().

Referenced by AlterSystemSetConfigFile(), check_GUC_name_for_parameter_acl(), and find_option().

◆ AtEOXact_GUC()

void AtEOXact_GUC ( bool  isCommit,
int  nestLevel 
)

Definition at line 2137 of file guc.c.

2138{
2139 slist_mutable_iter iter;
2140
2141 /*
2142 * Note: it's possible to get here with GUCNestLevel == nestLevel-1 during
2143 * abort, if there is a failure during transaction start before
2144 * AtStart_GUC is called.
2145 */
2146 Assert(nestLevel > 0 &&
2147 (nestLevel <= GUCNestLevel ||
2148 (nestLevel == GUCNestLevel + 1 && !isCommit)));
2149
2150 /* We need only process GUCs having nonempty stacks */
2152 {
2153 struct config_generic *gconf = slist_container(struct config_generic,
2154 stack_link, iter.cur);
2155 GucStack *stack;
2156
2157 /*
2158 * Process and pop each stack entry within the nest level. To simplify
2159 * fmgr_security_definer() and other places that use GUC_ACTION_SAVE,
2160 * we allow failure exit from code that uses a local nest level to be
2161 * recovered at the surrounding transaction or subtransaction abort;
2162 * so there could be more than one stack entry to pop.
2163 */
2164 while ((stack = gconf->stack) != NULL &&
2165 stack->nest_level >= nestLevel)
2166 {
2167 GucStack *prev = stack->prev;
2168 bool restorePrior = false;
2169 bool restoreMasked = false;
2170 bool changed;
2171
2172 /*
2173 * In this next bit, if we don't set either restorePrior or
2174 * restoreMasked, we must "discard" any unwanted fields of the
2175 * stack entries to avoid leaking memory. If we do set one of
2176 * those flags, unused fields will be cleaned up after restoring.
2177 */
2178 if (!isCommit) /* if abort, always restore prior value */
2179 restorePrior = true;
2180 else if (stack->state == GUC_SAVE)
2181 restorePrior = true;
2182 else if (stack->nest_level == 1)
2183 {
2184 /* transaction commit */
2185 if (stack->state == GUC_SET_LOCAL)
2186 restoreMasked = true;
2187 else if (stack->state == GUC_SET)
2188 {
2189 /* we keep the current active value */
2191 }
2192 else /* must be GUC_LOCAL */
2193 restorePrior = true;
2194 }
2195 else if (prev == NULL ||
2196 prev->nest_level < stack->nest_level - 1)
2197 {
2198 /* decrement entry's level and do not pop it */
2199 stack->nest_level--;
2200 continue;
2201 }
2202 else
2203 {
2204 /*
2205 * We have to merge this stack entry into prev. See README for
2206 * discussion of this bit.
2207 */
2208 switch (stack->state)
2209 {
2210 case GUC_SAVE:
2211 Assert(false); /* can't get here */
2212 break;
2213
2214 case GUC_SET:
2215 /* next level always becomes SET */
2217 if (prev->state == GUC_SET_LOCAL)
2218 discard_stack_value(gconf, &prev->masked);
2219 prev->state = GUC_SET;
2220 break;
2221
2222 case GUC_LOCAL:
2223 if (prev->state == GUC_SET)
2224 {
2225 /* LOCAL migrates down */
2227 prev->masked_srole = stack->srole;
2228 prev->masked = stack->prior;
2229 prev->state = GUC_SET_LOCAL;
2230 }
2231 else
2232 {
2233 /* else just forget this stack level */
2235 }
2236 break;
2237
2238 case GUC_SET_LOCAL:
2239 /* prior state at this level no longer wanted */
2241 /* copy down the masked state */
2244 if (prev->state == GUC_SET_LOCAL)
2245 discard_stack_value(gconf, &prev->masked);
2246 prev->masked = stack->masked;
2247 prev->state = GUC_SET_LOCAL;
2248 break;
2249 }
2250 }
2251
2252 changed = false;
2253
2254 if (restorePrior || restoreMasked)
2255 {
2256 /* Perform appropriate restoration of the stacked value */
2257 config_var_value newvalue;
2258 GucSource newsource;
2259 GucContext newscontext;
2260 Oid newsrole;
2261
2262 if (restoreMasked)
2263 {
2264 newvalue = stack->masked;
2265 newsource = PGC_S_SESSION;
2266 newscontext = stack->masked_scontext;
2267 newsrole = stack->masked_srole;
2268 }
2269 else
2270 {
2271 newvalue = stack->prior;
2272 newsource = stack->source;
2273 newscontext = stack->scontext;
2274 newsrole = stack->srole;
2275 }
2276
2277 switch (gconf->vartype)
2278 {
2279 case PGC_BOOL:
2280 {
2281 struct config_bool *conf = &gconf->_bool;
2282 bool newval = newvalue.val.boolval;
2283 void *newextra = newvalue.extra;
2284
2285 if (*conf->variable != newval ||
2286 gconf->extra != newextra)
2287 {
2288 if (conf->assign_hook)
2289 conf->assign_hook(newval, newextra);
2290 *conf->variable = newval;
2291 set_extra_field(gconf, &gconf->extra,
2292 newextra);
2293 changed = true;
2294 }
2295 break;
2296 }
2297 case PGC_INT:
2298 {
2299 struct config_int *conf = &gconf->_int;
2300 int newval = newvalue.val.intval;
2301 void *newextra = newvalue.extra;
2302
2303 if (*conf->variable != newval ||
2304 gconf->extra != newextra)
2305 {
2306 if (conf->assign_hook)
2307 conf->assign_hook(newval, newextra);
2308 *conf->variable = newval;
2309 set_extra_field(gconf, &gconf->extra,
2310 newextra);
2311 changed = true;
2312 }
2313 break;
2314 }
2315 case PGC_REAL:
2316 {
2317 struct config_real *conf = &gconf->_real;
2318 double newval = newvalue.val.realval;
2319 void *newextra = newvalue.extra;
2320
2321 if (*conf->variable != newval ||
2322 gconf->extra != newextra)
2323 {
2324 if (conf->assign_hook)
2325 conf->assign_hook(newval, newextra);
2326 *conf->variable = newval;
2327 set_extra_field(gconf, &gconf->extra,
2328 newextra);
2329 changed = true;
2330 }
2331 break;
2332 }
2333 case PGC_STRING:
2334 {
2335 struct config_string *conf = &gconf->_string;
2336 char *newval = newvalue.val.stringval;
2337 void *newextra = newvalue.extra;
2338
2339 if (*conf->variable != newval ||
2340 gconf->extra != newextra)
2341 {
2342 if (conf->assign_hook)
2343 conf->assign_hook(newval, newextra);
2344 set_string_field(gconf, conf->variable, newval);
2345 set_extra_field(gconf, &gconf->extra,
2346 newextra);
2347 changed = true;
2348 }
2349
2350 /*
2351 * Release stacked values if not used anymore. We
2352 * could use discard_stack_value() here, but since
2353 * we have type-specific code anyway, might as
2354 * well inline it.
2355 */
2356 set_string_field(gconf, &stack->prior.val.stringval, NULL);
2357 set_string_field(gconf, &stack->masked.val.stringval, NULL);
2358 break;
2359 }
2360 case PGC_ENUM:
2361 {
2362 struct config_enum *conf = &gconf->_enum;
2363 int newval = newvalue.val.enumval;
2364 void *newextra = newvalue.extra;
2365
2366 if (*conf->variable != newval ||
2367 gconf->extra != newextra)
2368 {
2369 if (conf->assign_hook)
2370 conf->assign_hook(newval, newextra);
2371 *conf->variable = newval;
2372 set_extra_field(gconf, &gconf->extra,
2373 newextra);
2374 changed = true;
2375 }
2376 break;
2377 }
2378 }
2379
2380 /*
2381 * Release stacked extra values if not used anymore.
2382 */
2383 set_extra_field(gconf, &(stack->prior.extra), NULL);
2384 set_extra_field(gconf, &(stack->masked.extra), NULL);
2385
2386 /* And restore source information */
2387 set_guc_source(gconf, newsource);
2388 gconf->scontext = newscontext;
2389 gconf->srole = newsrole;
2390 }
2391
2392 /*
2393 * Pop the GUC's state stack; if it's now empty, remove the GUC
2394 * from guc_stack_list.
2395 */
2396 gconf->stack = prev;
2397 if (prev == NULL)
2398 slist_delete_current(&iter);
2399 pfree(stack);
2400
2401 /* Report new value if we changed it */
2402 if (changed && (gconf->flags & GUC_REPORT) &&
2403 !(gconf->status & GUC_NEEDS_REPORT))
2404 {
2405 gconf->status |= GUC_NEEDS_REPORT;
2407 }
2408 } /* end of stack-popping loop */
2409 }
2410
2411 /* Update nesting level */
2412 GUCNestLevel = nestLevel - 1;
2413}
static slist_head guc_report_list
Definition: guc.c:227
static void set_string_field(struct config_generic *conf, char **field, char *newval)
Definition: guc.c:727
static int GUCNestLevel
Definition: guc.c:232
static void discard_stack_value(struct config_generic *gconf, config_var_value *val)
Definition: guc.c:813
static slist_head guc_stack_list
Definition: guc.c:225
static void set_guc_source(struct config_generic *gconf, GucSource newsource)
Definition: guc.c:1986
static void set_extra_field(struct config_generic *gconf, void **field, void *newval)
Definition: guc.c:765
GucSource
Definition: guc.h:112
@ PGC_S_SESSION
Definition: guc.h:126
GucContext
Definition: guc.h:72
#define GUC_REPORT
Definition: guc.h:220
@ 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
#define GUC_NEEDS_REPORT
Definition: guc_tables.h:300
@ PGC_BOOL
Definition: guc_tables.h:25
@ PGC_ENUM
Definition: guc_tables.h:29
@ PGC_REAL
Definition: guc_tables.h:27
@ PGC_INT
Definition: guc_tables.h:26
static void slist_delete_current(slist_mutable_iter *iter)
Definition: ilist.h:1084
#define slist_foreach_modify(iter, lhead)
Definition: ilist.h:1148
static void slist_push_head(slist_head *head, slist_node *node)
Definition: ilist.h:1006
#define slist_container(type, membername, ptr)
Definition: ilist.h:1106
void pfree(void *pointer)
Definition: mcxt.c:1594
unsigned int Oid
Definition: postgres_ext.h:32
bool * variable
Definition: guc_tables.h:141
GucBoolAssignHook assign_hook
Definition: guc_tables.h:144
int * variable
Definition: guc_tables.h:203
GucEnumAssignHook assign_hook
Definition: guc_tables.h:207
struct config_bool _bool
Definition: guc_tables.h:285
GucContext scontext
Definition: guc_tables.h:263
struct config_real _real
Definition: guc_tables.h:287
slist_node stack_link
Definition: guc_tables.h:272
struct config_int _int
Definition: guc_tables.h:286
GucStack * stack
Definition: guc_tables.h:267
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
GucRealAssignHook assign_hook
Definition: guc_tables.h:172
double * variable
Definition: guc_tables.h:167
GucStringAssignHook assign_hook
Definition: guc_tables.h:194
union config_var_val val
Definition: guc_tables.h:47
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
slist_node * cur
Definition: ilist.h:274
double realval
Definition: guc_tables.h:36
char * stringval
Definition: guc_tables.h:37

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, Assert(), config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, config_var_val::boolval, slist_mutable_iter::cur, discard_stack_value(), config_var_val::enumval, config_var_value::extra, config_generic::extra, config_generic::flags, GUC_LOCAL, GUC_NEEDS_REPORT, GUC_REPORT, guc_report_list, GUC_SAVE, GUC_SET, GUC_SET_LOCAL, guc_stack_list, GUCNestLevel, config_var_val::intval, guc_stack::masked, guc_stack::masked_scontext, guc_stack::masked_srole, guc_stack::nest_level, newval, pfree(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_S_SESSION, PGC_STRING, guc_stack::prev, guc_stack::prior, config_var_val::realval, config_generic::report_link, guc_stack::scontext, config_generic::scontext, set_extra_field(), set_guc_source(), set_string_field(), slist_container, slist_delete_current(), slist_foreach_modify, slist_push_head(), guc_stack::source, guc_stack::srole, config_generic::srole, config_generic::stack, config_generic::stack_link, guc_stack::state, config_generic::status, config_var_val::stringval, config_var_value::val, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by AbortSubTransaction(), AbortTransaction(), amcheck_lock_relation_and_check(), brin_summarize_range(), cluster_rel(), CommitSubTransaction(), CommitTransaction(), ComputeIndexAttrs(), CreateSchemaCommand(), DefineIndex(), do_analyze_rel(), execute_extension_script(), fmgr_security_definer(), index_build(), index_concurrently_build(), PrepareTransaction(), ProcedureCreate(), RefreshMatViewByOid(), reindex_index(), ReindexRelationConcurrently(), reset_transmission_modes(), restoreLocalGucs(), RestoreUserContext(), RI_Initial_Check(), RI_PartitionRemove_Check(), vacuum_rel(), and validate_index().

◆ AtStart_GUC()

void AtStart_GUC ( void  )

Definition at line 2090 of file guc.c.

2091{
2092 /*
2093 * The nest level should be 0 between transactions; if it isn't, somebody
2094 * didn't call AtEOXact_GUC, or called it with the wrong nestLevel. We
2095 * throw a warning but make no other effort to clean up.
2096 */
2097 if (GUCNestLevel != 0)
2098 elog(WARNING, "GUC nest level = %d at transaction start",
2099 GUCNestLevel);
2100 GUCNestLevel = 1;
2101}
#define WARNING
Definition: elog.h:36

References elog, GUCNestLevel, and WARNING.

Referenced by StartTransaction().

◆ BeginReportingGUCOptions()

void BeginReportingGUCOptions ( void  )

Definition at line 2421 of file guc.c.

2422{
2423 HASH_SEQ_STATUS status;
2424 GUCHashEntry *hentry;
2425
2426 /*
2427 * Don't do anything unless talking to an interactive frontend.
2428 */
2430 return;
2431
2432 reporting_enabled = true;
2433
2434 /*
2435 * Hack for in_hot_standby: set the GUC value true if appropriate. This
2436 * is kind of an ugly place to do it, but there's few better options.
2437 *
2438 * (This could be out of date by the time we actually send it, in which
2439 * case the next ReportChangedGUCOptions call will send a duplicate
2440 * report.)
2441 */
2442 if (RecoveryInProgress())
2443 SetConfigOption("in_hot_standby", "true",
2445
2446 /* Transmit initial values of interesting variables */
2447 hash_seq_init(&status, guc_hashtab);
2448 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
2449 {
2450 struct config_generic *conf = hentry->gucvar;
2451
2452 if (conf->flags & GUC_REPORT)
2453 ReportGUCOption(conf);
2454 }
2455}
@ DestRemote
Definition: dest.h:89
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition: dynahash.c:1415
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition: dynahash.c:1380
static void ReportGUCOption(struct config_generic *record)
Definition: guc.c:2509
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition: guc.c:4185
static bool reporting_enabled
Definition: guc.c:230
@ PGC_S_OVERRIDE
Definition: guc.h:123
CommandDest whereToSendOutput
Definition: postgres.c:92
bool RecoveryInProgress(void)
Definition: xlog.c:6395

References DestRemote, config_generic::flags, guc_hashtab, GUC_REPORT, GUCHashEntry::gucvar, hash_seq_init(), hash_seq_search(), PGC_INTERNAL, PGC_S_OVERRIDE, RecoveryInProgress(), ReportGUCOption(), reporting_enabled, SetConfigOption(), and whereToSendOutput.

Referenced by PostgresMain().

◆ build_guc_variables()

void build_guc_variables ( void  )

Definition at line 870 of file guc.c.

871{
872 int size_vars;
873 int num_vars = 0;
874 HASHCTL hash_ctl;
875 GUCHashEntry *hentry;
876 bool found;
877
878 /*
879 * Create the memory context that will hold all GUC-related data.
880 */
881 Assert(GUCMemoryContext == NULL);
883 "GUCMemoryContext",
885
886 /*
887 * Count all the built-in variables.
888 */
889 for (int i = 0; ConfigureNames[i].name; i++)
890 num_vars++;
891
892 /*
893 * Create hash table with 20% slack
894 */
895 size_vars = num_vars + num_vars / 4;
896
897 hash_ctl.keysize = sizeof(char *);
898 hash_ctl.entrysize = sizeof(GUCHashEntry);
899 hash_ctl.hash = guc_name_hash;
900 hash_ctl.match = guc_name_match;
901 hash_ctl.hcxt = GUCMemoryContext;
902 guc_hashtab = hash_create("GUC hash table",
903 size_vars,
904 &hash_ctl,
906
907 for (int i = 0; ConfigureNames[i].name; i++)
908 {
909 struct config_generic *gucvar = &ConfigureNames[i];
910
912 &gucvar->name,
914 &found);
915 Assert(!found);
916 hentry->gucvar = gucvar;
917 }
918
920}
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:358
int64 hash_get_num_entries(HTAB *hashp)
Definition: dynahash.c:1336
static int guc_name_match(const void *key1, const void *key2, Size keysize)
Definition: guc.c:1231
static uint32 guc_name_hash(const void *key, Size keysize)
Definition: guc.c:1207
static MemoryContext GUCMemoryContext
Definition: guc.c:200
PGDLLIMPORT struct config_generic ConfigureNames[]
@ HASH_ENTER
Definition: hsearch.h:114
#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
int i
Definition: isn.c:77
MemoryContext TopMemoryContext
Definition: mcxt.c:166
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
Size keysize
Definition: hsearch.h:75
HashValueFunc hash
Definition: hsearch.h:78
Size entrysize
Definition: hsearch.h:76
HashCompareFunc match
Definition: hsearch.h:80
MemoryContext hcxt
Definition: hsearch.h:86

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert(), ConfigureNames, HASHCTL::entrysize, guc_hashtab, guc_name_hash(), guc_name_match(), GUCMemoryContext, GUCHashEntry::gucvar, HASHCTL::hash, HASH_COMPARE, HASH_CONTEXT, hash_create(), HASH_ELEM, HASH_ENTER, HASH_FUNCTION, hash_get_num_entries(), hash_search(), HASHCTL::hcxt, i, HASHCTL::keysize, HASHCTL::match, config_generic::name, and TopMemoryContext.

Referenced by GucInfoMain(), and InitializeGUCOptions().

◆ call_bool_check_hook()

static bool call_bool_check_hook ( const struct config_generic conf,
bool *  newval,
void **  extra,
GucSource  source,
int  elevel 
)
static

Definition at line 6630 of file guc.c.

6632{
6633 /* Quick success if no hook */
6634 if (!conf->_bool.check_hook)
6635 return true;
6636
6637 /* Reset variables that might be set by hook */
6638 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6642
6643 if (!conf->_bool.check_hook(newval, extra, source))
6644 {
6645 ereport(elevel,
6649 errmsg("invalid value for parameter \"%s\": %d",
6650 conf->name, (int) *newval),
6654 errhint("%s", GUC_check_errhint_string) : 0));
6655 /* Flush strings created in ErrorContext (ereport might not have) */
6657 return false;
6658 }
6659
6660 return true;
6661}
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1170
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1243
void FlushErrorState(void)
Definition: elog.c:1884
int errhint(const char *fmt,...)
Definition: elog.c:1330
char * GUC_check_errhint_string
Definition: guc.c:84
char * GUC_check_errmsg_string
Definition: guc.c:82
static int GUC_check_errcode_value
Definition: guc.c:77
char * GUC_check_errdetail_string
Definition: guc.c:83
static rewind_source * source
Definition: pg_rewind.c:89
GucBoolCheckHook check_hook
Definition: guc_tables.h:143

References config_generic::_bool, config_bool::check_hook, ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), config_generic::extra, FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, config_generic::name, newval, and source.

Referenced by InitializeOneGUCOption(), parse_and_validate_value(), and set_config_with_handle().

◆ call_enum_check_hook()

static bool call_enum_check_hook ( const struct config_generic conf,
int *  newval,
void **  extra,
GucSource  source,
int  elevel 
)
static

Definition at line 6782 of file guc.c.

6784{
6785 /* Quick success if no hook */
6786 if (!conf->_enum.check_hook)
6787 return true;
6788
6789 /* Reset variables that might be set by hook */
6790 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6794
6795 if (!conf->_enum.check_hook(newval, extra, source))
6796 {
6797 ereport(elevel,
6801 errmsg("invalid value for parameter \"%s\": \"%s\"",
6802 conf->name,
6807 errhint("%s", GUC_check_errhint_string) : 0));
6808 /* Flush strings created in ErrorContext (ereport might not have) */
6810 return false;
6811 }
6812
6813 return true;
6814}
const char * config_enum_lookup_by_value(const struct config_generic *record, int val)
Definition: guc.c:2895
GucEnumCheckHook check_hook
Definition: guc_tables.h:206

References config_generic::_enum, config_enum::check_hook, config_enum_lookup_by_value(), ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), config_generic::extra, FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, config_generic::name, newval, and source.

Referenced by InitializeOneGUCOption(), parse_and_validate_value(), and set_config_with_handle().

◆ call_int_check_hook()

static bool call_int_check_hook ( const struct config_generic conf,
int *  newval,
void **  extra,
GucSource  source,
int  elevel 
)
static

Definition at line 6664 of file guc.c.

6666{
6667 /* Quick success if no hook */
6668 if (!conf->_int.check_hook)
6669 return true;
6670
6671 /* Reset variables that might be set by hook */
6672 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6676
6677 if (!conf->_int.check_hook(newval, extra, source))
6678 {
6679 ereport(elevel,
6683 errmsg("invalid value for parameter \"%s\": %d",
6684 conf->name, *newval),
6688 errhint("%s", GUC_check_errhint_string) : 0));
6689 /* Flush strings created in ErrorContext (ereport might not have) */
6691 return false;
6692 }
6693
6694 return true;
6695}
GucIntCheckHook check_hook
Definition: guc_tables.h:157

References config_generic::_int, config_int::check_hook, ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), config_generic::extra, FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, config_generic::name, newval, and source.

Referenced by InitializeOneGUCOption(), parse_and_validate_value(), and set_config_with_handle().

◆ call_real_check_hook()

static bool call_real_check_hook ( const struct config_generic conf,
double *  newval,
void **  extra,
GucSource  source,
int  elevel 
)
static

Definition at line 6698 of file guc.c.

6700{
6701 /* Quick success if no hook */
6702 if (!conf->_real.check_hook)
6703 return true;
6704
6705 /* Reset variables that might be set by hook */
6706 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6710
6711 if (!conf->_real.check_hook(newval, extra, source))
6712 {
6713 ereport(elevel,
6717 errmsg("invalid value for parameter \"%s\": %g",
6718 conf->name, *newval),
6722 errhint("%s", GUC_check_errhint_string) : 0));
6723 /* Flush strings created in ErrorContext (ereport might not have) */
6725 return false;
6726 }
6727
6728 return true;
6729}
GucRealCheckHook check_hook
Definition: guc_tables.h:171

References config_generic::_real, config_real::check_hook, ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), config_generic::extra, FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, config_generic::name, newval, and source.

Referenced by InitializeOneGUCOption(), parse_and_validate_value(), and set_config_with_handle().

◆ call_string_check_hook()

static bool call_string_check_hook ( const struct config_generic conf,
char **  newval,
void **  extra,
GucSource  source,
int  elevel 
)
static

Definition at line 6732 of file guc.c.

6734{
6735 volatile bool result = true;
6736
6737 /* Quick success if no hook */
6738 if (!conf->_string.check_hook)
6739 return true;
6740
6741 /*
6742 * If elevel is ERROR, or if the check_hook itself throws an elog
6743 * (undesirable, but not always avoidable), make sure we don't leak the
6744 * already-malloc'd newval string.
6745 */
6746 PG_TRY();
6747 {
6748 /* Reset variables that might be set by hook */
6749 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6753
6754 if (!conf->_string.check_hook(newval, extra, source))
6755 {
6756 ereport(elevel,
6760 errmsg("invalid value for parameter \"%s\": \"%s\"",
6761 conf->name, *newval ? *newval : ""),
6765 errhint("%s", GUC_check_errhint_string) : 0));
6766 /* Flush strings created in ErrorContext (ereport might not have) */
6768 result = false;
6769 }
6770 }
6771 PG_CATCH();
6772 {
6773 guc_free(*newval);
6774 PG_RE_THROW();
6775 }
6776 PG_END_TRY();
6777
6778 return result;
6779}
GucStringCheckHook check_hook
Definition: guc_tables.h:193

References config_generic::_string, config_string::check_hook, ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), config_generic::extra, FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, guc_free(), config_generic::name, newval, PG_CATCH, PG_END_TRY, PG_RE_THROW, PG_TRY, and source.

Referenced by InitializeOneGUCOption(), parse_and_validate_value(), and set_config_with_handle().

◆ can_skip_gucvar()

static bool can_skip_gucvar ( struct config_generic gconf)
static

Definition at line 5672 of file guc.c.

5673{
5674 /*
5675 * We can skip GUCs that are guaranteed to have the same values in leaders
5676 * and workers. (Note it is critical that the leader and worker have the
5677 * same idea of which GUCs fall into this category. It's okay to consider
5678 * context and name for this purpose, since those are unchanging
5679 * properties of a GUC.)
5680 *
5681 * PGC_POSTMASTER variables always have the same value in every child of a
5682 * particular postmaster, so the worker will certainly have the right
5683 * value already. Likewise, PGC_INTERNAL variables are set by special
5684 * mechanisms (if indeed they aren't compile-time constants). So we may
5685 * always skip these.
5686 *
5687 * For all other GUCs, we skip if the GUC has its compiled-in default
5688 * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means
5689 * we don't send GUCs that have their default values, which typically
5690 * saves lots of work. On the worker side, this means we don't need to
5691 * reset the GUC to default because it already has that value. See
5692 * comments in RestoreGUCState for more info.
5693 */
5694 return gconf->context == PGC_POSTMASTER ||
5695 gconf->context == PGC_INTERNAL ||
5696 gconf->source == PGC_S_DEFAULT;
5697}
@ PGC_S_DEFAULT
Definition: guc.h:113
@ PGC_POSTMASTER
Definition: guc.h:74
GucSource source
Definition: guc_tables.h:261

References config_generic::context, PGC_INTERNAL, PGC_POSTMASTER, PGC_S_DEFAULT, and config_generic::source.

Referenced by estimate_variable_size(), RestoreGUCState(), and serialize_variable().

◆ check_GUC_name_for_parameter_acl()

void check_GUC_name_for_parameter_acl ( const char *  name)

Definition at line 1287 of file guc.c.

1288{
1289 /* OK if the GUC exists. */
1290 if (find_option(name, false, true, DEBUG5) != NULL)
1291 return;
1292 /* Otherwise, it'd better be a valid custom GUC name. */
1294}

References assignable_custom_variable_name(), DEBUG5, ERROR, find_option(), and name.

Referenced by ParameterAclCreate().

◆ config_enum_get_options()

char * config_enum_get_options ( const struct config_enum record,
const char *  prefix,
const char *  suffix,
const char *  separator 
)

Definition at line 2940 of file guc.c.

2942{
2943 StringInfoData retstr;
2944 int seplen;
2945
2946 initStringInfo(&retstr);
2947 appendStringInfoString(&retstr, prefix);
2948
2949 seplen = strlen(separator);
2950 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2951 {
2952 if (!entry->hidden)
2953 {
2954 appendStringInfoString(&retstr, entry->name);
2955 appendBinaryStringInfo(&retstr, separator, seplen);
2956 }
2957 }
2958
2959 /*
2960 * All the entries may have been hidden, leaving the string empty if no
2961 * prefix was given. This indicates a broken GUC setup, since there is no
2962 * use for an enum without any values, so we just check to make sure we
2963 * don't write to invalid memory instead of actually trying to do
2964 * something smart with it.
2965 */
2966 if (retstr.len >= seplen)
2967 {
2968 /* Replace final separator */
2969 retstr.data[retstr.len - seplen] = '\0';
2970 retstr.len -= seplen;
2971 }
2972
2973 appendStringInfoString(&retstr, suffix);
2974
2975 return retstr.data;
2976}
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
Definition: guc.h:174
const char * name
Definition: guc.h:175
const struct config_enum_entry * options
Definition: guc_tables.h:205

References appendBinaryStringInfo(), appendStringInfoString(), StringInfoData::data, initStringInfo(), StringInfoData::len, config_enum_entry::name, and config_enum::options.

Referenced by GetConfigOptionValues(), and parse_and_validate_value().

◆ config_enum_lookup_by_name()

bool config_enum_lookup_by_name ( const struct config_enum record,
const char *  value,
int *  retval 
)

Definition at line 2916 of file guc.c.

2918{
2919 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2920 {
2921 if (pg_strcasecmp(value, entry->name) == 0)
2922 {
2923 *retval = entry->val;
2924 return true;
2925 }
2926 }
2927
2928 *retval = 0;
2929 return false;
2930}
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36

References config_enum_entry::name, config_enum::options, pg_strcasecmp(), and value.

Referenced by parse_and_validate_value().

◆ config_enum_lookup_by_value()

const char * config_enum_lookup_by_value ( const struct config_generic record,
int  val 
)

Definition at line 2895 of file guc.c.

2896{
2897 for (const struct config_enum_entry *entry = record->_enum.options; entry && entry->name; entry++)
2898 {
2899 if (entry->val == val)
2900 return entry->name;
2901 }
2902
2903 elog(ERROR, "could not find enum option %d for %s",
2904 val, record->name);
2905 return NULL; /* silence compiler */
2906}
long val
Definition: informix.c:689

References config_generic::_enum, elog, ERROR, config_enum_entry::name, config_generic::name, config_enum::options, and val.

Referenced by call_enum_check_hook(), estimate_variable_size(), GetConfigOption(), GetConfigOptionResetString(), GetConfigOptionValues(), printMixedStruct(), serialize_variable(), and ShowGUCOption().

◆ convert_GUC_name_for_parameter_acl()

char * convert_GUC_name_for_parameter_acl ( const char *  name)

Definition at line 1251 of file guc.c.

1252{
1253 char *result;
1254
1255 /* Apply old-GUC-name mapping. */
1256 for (int i = 0; map_old_guc_names[i] != NULL; i += 2)
1257 {
1259 {
1260 name = map_old_guc_names[i + 1];
1261 break;
1262 }
1263 }
1264
1265 /* Apply case-folding that matches guc_name_compare(). */
1266 result = pstrdup(name);
1267 for (char *ptr = result; *ptr != '\0'; ptr++)
1268 {
1269 char ch = *ptr;
1270
1271 if (ch >= 'A' && ch <= 'Z')
1272 {
1273 ch += 'a' - 'A';
1274 *ptr = ch;
1275 }
1276 }
1277
1278 return result;
1279}
static const char *const map_old_guc_names[]
Definition: guc.c:191
int guc_name_compare(const char *namea, const char *nameb)
Definition: guc.c:1177
char * pstrdup(const char *in)
Definition: mcxt.c:1759

References guc_name_compare(), i, map_old_guc_names, name, and pstrdup().

Referenced by ParameterAclCreate(), ParameterAclLookup(), and pg_parameter_aclmask().

◆ convert_int_from_base_unit()

static void convert_int_from_base_unit ( int64  base_value,
int  base_unit,
int64 value,
const char **  unit 
)
static

Definition at line 2603 of file guc.c.

2605{
2606 const unit_conversion *table;
2607
2608 *unit = NULL;
2609
2610 if (base_unit & GUC_UNIT_MEMORY)
2612 else
2614
2615 for (int i = 0; *table[i].unit; i++)
2616 {
2617 if (base_unit == table[i].base_unit)
2618 {
2619 /*
2620 * Accept the first conversion that divides the value evenly. We
2621 * assume that the conversions for each base unit are ordered from
2622 * greatest unit to the smallest!
2623 */
2624 if (table[i].multiplier <= 1.0 ||
2625 base_value % (int64) table[i].multiplier == 0)
2626 {
2627 *value = (int64) rint(base_value / table[i].multiplier);
2628 *unit = table[i].unit;
2629 break;
2630 }
2631 }
2632 }
2633
2634 Assert(*unit != NULL);
2635}
int64_t int64
Definition: c.h:539
static const unit_conversion memory_unit_conversion_table[]
Definition: guc.c:122
static const unit_conversion time_unit_conversion_table[]
Definition: guc.c:159
#define GUC_UNIT_MEMORY
Definition: guc.h:237
static const struct lconv_member_info table[]

References Assert(), GUC_UNIT_MEMORY, i, memory_unit_conversion_table, table, time_unit_conversion_table, and value.

Referenced by ShowGUCOption().

◆ convert_real_from_base_unit()

static void convert_real_from_base_unit ( double  base_value,
int  base_unit,
double *  value,
const char **  unit 
)
static

Definition at line 2644 of file guc.c.

2646{
2647 const unit_conversion *table;
2648
2649 *unit = NULL;
2650
2651 if (base_unit & GUC_UNIT_MEMORY)
2653 else
2655
2656 for (int i = 0; *table[i].unit; i++)
2657 {
2658 if (base_unit == table[i].base_unit)
2659 {
2660 /*
2661 * Accept the first conversion that divides the value evenly; or
2662 * if there is none, use the smallest (last) target unit.
2663 *
2664 * What we actually care about here is whether snprintf with "%g"
2665 * will print the value as an integer, so the obvious test of
2666 * "*value == rint(*value)" is too strict; roundoff error might
2667 * make us choose an unreasonably small unit. As a compromise,
2668 * accept a divisor that is within 1e-8 of producing an integer.
2669 */
2670 *value = base_value / table[i].multiplier;
2671 *unit = table[i].unit;
2672 if (*value > 0 &&
2673 fabs((rint(*value) / *value) - 1.0) <= 1e-8)
2674 break;
2675 }
2676 }
2677
2678 Assert(*unit != NULL);
2679}
e
Definition: preproc-init.c:82

References Assert(), GUC_UNIT_MEMORY, i, memory_unit_conversion_table, table, time_unit_conversion_table, and value.

Referenced by ShowGUCOption().

◆ convert_to_base_unit()

static bool convert_to_base_unit ( double  value,
const char *  unit,
int  base_unit,
double *  base_value 
)
static

Definition at line 2546 of file guc.c.

2548{
2549 char unitstr[MAX_UNIT_LEN + 1];
2550 int unitlen;
2551 const unit_conversion *table;
2552
2553 /* extract unit string to compare to table entries */
2554 unitlen = 0;
2555 while (*unit != '\0' && !isspace((unsigned char) *unit) &&
2556 unitlen < MAX_UNIT_LEN)
2557 unitstr[unitlen++] = *(unit++);
2558 unitstr[unitlen] = '\0';
2559 /* allow whitespace after unit */
2560 while (isspace((unsigned char) *unit))
2561 unit++;
2562 if (*unit != '\0')
2563 return false; /* unit too long, or garbage after it */
2564
2565 /* now search the appropriate table */
2566 if (base_unit & GUC_UNIT_MEMORY)
2568 else
2570
2571 for (int i = 0; *table[i].unit; i++)
2572 {
2573 if (base_unit == table[i].base_unit &&
2574 strcmp(unitstr, table[i].unit) == 0)
2575 {
2576 double cvalue = value * table[i].multiplier;
2577
2578 /*
2579 * If the user gave a fractional value such as "30.1GB", round it
2580 * off to the nearest multiple of the next smaller unit, if there
2581 * is one.
2582 */
2583 if (*table[i + 1].unit &&
2584 base_unit == table[i + 1].base_unit)
2585 cvalue = rint(cvalue / table[i + 1].multiplier) *
2586 table[i + 1].multiplier;
2587
2588 *base_value = cvalue;
2589 return true;
2590 }
2591 }
2592 return false;
2593}
#define MAX_UNIT_LEN
Definition: guc.c:102

References GUC_UNIT_MEMORY, i, MAX_UNIT_LEN, memory_unit_conversion_table, table, time_unit_conversion_table, and value.

Referenced by parse_int(), and parse_real().

◆ define_custom_variable()

static void define_custom_variable ( struct config_generic variable)
static

Definition at line 4788 of file guc.c.

4789{
4790 const char *name = variable->name;
4791 GUCHashEntry *hentry;
4792 struct config_generic *pHolder;
4793
4794 /* Check mapping between initial and default value */
4795 Assert(check_GUC_init(variable));
4796
4797 /*
4798 * See if there's a placeholder by the same name.
4799 */
4801 &name,
4802 HASH_FIND,
4803 NULL);
4804 if (hentry == NULL)
4805 {
4806 /*
4807 * No placeholder to replace, so we can just add it ... but first,
4808 * make sure it's initialized to its default value.
4809 */
4812 return;
4813 }
4814
4815 /*
4816 * This better be a placeholder
4817 */
4818 if ((hentry->gucvar->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4819 ereport(ERROR,
4820 (errcode(ERRCODE_INTERNAL_ERROR),
4821 errmsg("attempt to redefine parameter \"%s\"", name)));
4822
4823 Assert(hentry->gucvar->vartype == PGC_STRING);
4824 pHolder = hentry->gucvar;
4825
4826 /*
4827 * First, set the variable to its default value. We must do this even
4828 * though we intend to immediately apply a new value, since it's possible
4829 * that the new value is invalid.
4830 */
4832
4833 /*
4834 * Replace the placeholder in the hash table. We aren't changing the name
4835 * (at least up to case-folding), so the hash value is unchanged.
4836 */
4837 hentry->gucname = name;
4838 hentry->gucvar = variable;
4839
4840 /*
4841 * Remove the placeholder from any lists it's in, too.
4842 */
4843 RemoveGUCFromLists(pHolder);
4844
4845 /*
4846 * Assign the string value(s) stored in the placeholder to the real
4847 * variable. Essentially, we need to duplicate all the active and stacked
4848 * values, but with appropriate validation and datatype adjustment.
4849 *
4850 * If an assignment fails, we report a WARNING and keep going. We don't
4851 * want to throw ERROR for bad values, because it'd bollix the add-on
4852 * module that's presumably halfway through getting loaded. In such cases
4853 * the default or previous state will become active instead.
4854 */
4855
4856 /* First, apply the reset value if any */
4857 if (pHolder->_string.reset_val)
4859 pHolder->reset_scontext,
4860 pHolder->reset_source,
4861 pHolder->reset_srole,
4862 GUC_ACTION_SET, true, WARNING, false);
4863 /* That should not have resulted in stacking anything */
4864 Assert(variable->stack == NULL);
4865
4866 /* Now, apply current and stacked values, in the order they were stacked */
4867 reapply_stacked_values(variable, pHolder, pHolder->stack,
4868 *(pHolder->_string.variable),
4869 pHolder->scontext, pHolder->source,
4870 pHolder->srole);
4871
4872 /* Also copy over any saved source-location information */
4873 if (pHolder->sourcefile)
4875 pHolder->sourceline);
4876
4877 /* Now we can free the no-longer-referenced placeholder variable */
4878 free_placeholder(pHolder);
4879}
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:3245
static void set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
Definition: guc.c:4152
static void free_placeholder(struct config_generic *pHolder)
Definition: guc.c:4985
static void InitializeOneGUCOption(struct config_generic *gconf)
Definition: guc.c:1521
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:4889
static void RemoveGUCFromLists(struct config_generic *gconf)
Definition: guc.c:1632
@ GUC_ACTION_SET
Definition: guc.h:203
@ HASH_FIND
Definition: hsearch.h:113
const char * gucname
Definition: guc.c:209
char * sourcefile
Definition: guc_tables.h:278
GucContext reset_scontext
Definition: guc_tables.h:264
GucSource reset_source
Definition: guc_tables.h:262
char * reset_val
Definition: guc_tables.h:197
char * name
Definition: type.h:191

References config_generic::_string, add_guc_variable(), Assert(), ereport, errcode(), errmsg(), ERROR, config_generic::flags, free_placeholder(), GUC_ACTION_SET, GUC_CUSTOM_PLACEHOLDER, guc_hashtab, GUCHashEntry::gucname, GUCHashEntry::gucvar, HASH_FIND, hash_search(), InitializeOneGUCOption(), name, variable::name, PGC_STRING, reapply_stacked_values(), RemoveGUCFromLists(), config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_string::reset_val, config_generic::scontext, set_config_option_ext(), set_config_sourcefile(), config_generic::source, config_generic::sourcefile, config_generic::sourceline, config_generic::srole, config_generic::stack, config_string::variable, config_generic::vartype, and WARNING.

Referenced by DefineCustomBoolVariable(), DefineCustomEnumVariable(), DefineCustomIntVariable(), DefineCustomRealVariable(), and DefineCustomStringVariable().

◆ DefineCustomBoolVariable()

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 at line 5000 of file guc.c.

5010{
5011 struct config_generic *var;
5012
5014 var->_bool.variable = valueAddr;
5015 var->_bool.boot_val = bootValue;
5016 var->_bool.reset_val = bootValue;
5017 var->_bool.check_hook = check_hook;
5018 var->_bool.assign_hook = assign_hook;
5019 var->_bool.show_hook = show_hook;
5021}
static void define_custom_variable(struct config_generic *variable)
Definition: guc.c:4788
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:4728
bool reset_val
Definition: guc_tables.h:147
bool boot_val
Definition: guc_tables.h:142
GucShowHook show_hook
Definition: guc_tables.h:145
const char * long_desc
Definition: guc_tables.h:256

References config_generic::_bool, config_bool::assign_hook, config_bool::boot_val, config_bool::check_hook, config_generic::context, define_custom_variable(), config_generic::flags, init_custom_variable(), config_generic::long_desc, name, PGC_BOOL, config_bool::reset_val, config_generic::short_desc, config_bool::show_hook, and config_bool::variable.

Referenced by _PG_init().

◆ DefineCustomEnumVariable()

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 
)

◆ DefineCustomIntVariable()

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 at line 5024 of file guc.c.

5036{
5037 struct config_generic *var;
5038
5040 var->_int.variable = valueAddr;
5041 var->_int.boot_val = bootValue;
5042 var->_int.reset_val = bootValue;
5043 var->_int.min = minValue;
5044 var->_int.max = maxValue;
5045 var->_int.check_hook = check_hook;
5046 var->_int.assign_hook = assign_hook;
5047 var->_int.show_hook = show_hook;
5049}
int reset_val
Definition: guc_tables.h:161
int boot_val
Definition: guc_tables.h:154
GucShowHook show_hook
Definition: guc_tables.h:159

References config_generic::_int, config_int::assign_hook, config_int::boot_val, config_int::check_hook, config_generic::context, define_custom_variable(), config_generic::flags, init_custom_variable(), config_generic::long_desc, config_int::max, config_int::min, name, PGC_INT, config_int::reset_val, config_generic::short_desc, config_int::show_hook, and config_int::variable.

Referenced by _PG_init().

◆ DefineCustomRealVariable()

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 at line 5052 of file guc.c.

5064{
5065 struct config_generic *var;
5066
5068 var->_real.variable = valueAddr;
5069 var->_real.boot_val = bootValue;
5070 var->_real.reset_val = bootValue;
5071 var->_real.min = minValue;
5072 var->_real.max = maxValue;
5073 var->_real.check_hook = check_hook;
5074 var->_real.assign_hook = assign_hook;
5075 var->_real.show_hook = show_hook;
5077}
double boot_val
Definition: guc_tables.h:168
double reset_val
Definition: guc_tables.h:175
double min
Definition: guc_tables.h:169
double max
Definition: guc_tables.h:170
GucShowHook show_hook
Definition: guc_tables.h:173

References config_generic::_real, config_real::assign_hook, config_real::boot_val, config_real::check_hook, config_generic::context, define_custom_variable(), config_generic::flags, init_custom_variable(), config_generic::long_desc, config_real::max, config_real::min, name, PGC_REAL, config_real::reset_val, config_generic::short_desc, config_real::show_hook, and config_real::variable.

Referenced by _PG_init().

◆ DefineCustomStringVariable()

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 
)

◆ discard_stack_value()

static void discard_stack_value ( struct config_generic gconf,
config_var_value val 
)
static

Definition at line 813 of file guc.c.

814{
815 switch (gconf->vartype)
816 {
817 case PGC_BOOL:
818 case PGC_INT:
819 case PGC_REAL:
820 case PGC_ENUM:
821 /* no need to do anything */
822 break;
823 case PGC_STRING:
824 set_string_field(gconf,
825 &(val->val.stringval),
826 NULL);
827 break;
828 }
829 set_extra_field(gconf, &(val->extra), NULL);
830}

References PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, set_extra_field(), set_string_field(), val, and config_generic::vartype.

Referenced by AtEOXact_GUC(), and push_old_value().

◆ do_serialize()

static void do_serialize ( char **  destptr,
Size maxbytes,
const char *  fmt,
  ... 
)
static

Definition at line 5837 of file guc.c.

5838{
5839 va_list vargs;
5840 int n;
5841
5842 if (*maxbytes <= 0)
5843 elog(ERROR, "not enough space to serialize GUC state");
5844
5845 va_start(vargs, fmt);
5846 n = vsnprintf(*destptr, *maxbytes, fmt, vargs);
5847 va_end(vargs);
5848
5849 if (n < 0)
5850 {
5851 /* Shouldn't happen. Better show errno description. */
5852 elog(ERROR, "vsnprintf failed: %m with format string \"%s\"", fmt);
5853 }
5854 if (n >= *maxbytes)
5855 {
5856 /* This shouldn't happen either, really. */
5857 elog(ERROR, "not enough space to serialize GUC state");
5858 }
5859
5860 /* Shift the destptr ahead of the null terminator */
5861 *destptr += n + 1;
5862 *maxbytes -= n + 1;
5863}
#define vsnprintf
Definition: port.h:238

References elog, ERROR, and vsnprintf.

Referenced by serialize_variable().

◆ do_serialize_binary()

static void do_serialize_binary ( char **  destptr,
Size maxbytes,
void *  val,
Size  valsize 
)
static

Definition at line 5867 of file guc.c.

5868{
5869 if (valsize > *maxbytes)
5870 elog(ERROR, "not enough space to serialize GUC state");
5871
5872 memcpy(*destptr, val, valsize);
5873 *destptr += valsize;
5874 *maxbytes -= valsize;
5875}

References elog, ERROR, and val.

Referenced by serialize_variable().

◆ estimate_variable_size()

static Size estimate_variable_size ( struct config_generic gconf)
static

Definition at line 5706 of file guc.c.

5707{
5708 Size size;
5709 Size valsize = 0;
5710
5711 /* Skippable GUCs consume zero space. */
5712 if (can_skip_gucvar(gconf))
5713 return 0;
5714
5715 /* Name, plus trailing zero byte. */
5716 size = strlen(gconf->name) + 1;
5717
5718 /* Get the maximum display length of the GUC value. */
5719 switch (gconf->vartype)
5720 {
5721 case PGC_BOOL:
5722 {
5723 valsize = 5; /* max(strlen('true'), strlen('false')) */
5724 }
5725 break;
5726
5727 case PGC_INT:
5728 {
5729 struct config_int *conf = &gconf->_int;
5730
5731 /*
5732 * Instead of getting the exact display length, use max
5733 * length. Also reduce the max length for typical ranges of
5734 * small values. Maximum value is 2147483647, i.e. 10 chars.
5735 * Include one byte for sign.
5736 */
5737 if (abs(*conf->variable) < 1000)
5738 valsize = 3 + 1;
5739 else
5740 valsize = 10 + 1;
5741 }
5742 break;
5743
5744 case PGC_REAL:
5745 {
5746 /*
5747 * We are going to print it with %e with REALTYPE_PRECISION
5748 * fractional digits. Account for sign, leading digit,
5749 * decimal point, and exponent with up to 3 digits. E.g.
5750 * -3.99329042340000021e+110
5751 */
5752 valsize = 1 + 1 + 1 + REALTYPE_PRECISION + 5;
5753 }
5754 break;
5755
5756 case PGC_STRING:
5757 {
5758 struct config_string *conf = &gconf->_string;
5759
5760 /*
5761 * If the value is NULL, we transmit it as an empty string.
5762 * Although this is not physically the same value, GUC
5763 * generally treats a NULL the same as empty string.
5764 */
5765 if (*conf->variable)
5766 valsize = strlen(*conf->variable);
5767 else
5768 valsize = 0;
5769 }
5770 break;
5771
5772 case PGC_ENUM:
5773 {
5774 struct config_enum *conf = &gconf->_enum;
5775
5776 valsize = strlen(config_enum_lookup_by_value(gconf, *conf->variable));
5777 }
5778 break;
5779 }
5780
5781 /* Allow space for terminating zero-byte for value */
5782 size = add_size(size, valsize + 1);
5783
5784 if (gconf->sourcefile)
5785 size = add_size(size, strlen(gconf->sourcefile));
5786
5787 /* Allow space for terminating zero-byte for sourcefile */
5788 size = add_size(size, 1);
5789
5790 /* Include line whenever file is nonempty. */
5791 if (gconf->sourcefile && gconf->sourcefile[0])
5792 size = add_size(size, sizeof(gconf->sourceline));
5793
5794 size = add_size(size, sizeof(gconf->source));
5795 size = add_size(size, sizeof(gconf->scontext));
5796 size = add_size(size, sizeof(gconf->srole));
5797
5798 return size;
5799}
size_t Size
Definition: c.h:614
static bool can_skip_gucvar(struct config_generic *gconf)
Definition: guc.c:5672
#define REALTYPE_PRECISION
Definition: guc.c:69
Size add_size(Size s1, Size s2)
Definition: shmem.c:493

References config_generic::_enum, config_generic::_int, config_generic::_string, add_size(), can_skip_gucvar(), config_enum_lookup_by_value(), config_generic::name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, REALTYPE_PRECISION, config_generic::scontext, config_generic::source, config_generic::sourcefile, config_generic::sourceline, config_generic::srole, config_int::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by EstimateGUCStateSpace().

◆ EstimateGUCStateSpace()

Size EstimateGUCStateSpace ( void  )

Definition at line 5806 of file guc.c.

5807{
5808 Size size;
5809 dlist_iter iter;
5810
5811 /* Add space reqd for saving the data size of the guc state */
5812 size = sizeof(Size);
5813
5814 /*
5815 * Add up the space needed for each GUC variable.
5816 *
5817 * We need only process non-default GUCs.
5818 */
5820 {
5821 struct config_generic *gconf = dlist_container(struct config_generic,
5822 nondef_link, iter.cur);
5823
5824 size = add_size(size, estimate_variable_size(gconf));
5825 }
5826
5827 return size;
5828}
static dlist_head guc_nondef_list
Definition: guc.c:223
static Size estimate_variable_size(struct config_generic *gconf)
Definition: guc.c:5706
#define dlist_foreach(iter, lhead)
Definition: ilist.h:623
#define dlist_container(type, membername, ptr)
Definition: ilist.h:593
dlist_node nondef_link
Definition: guc_tables.h:270
dlist_node * cur
Definition: ilist.h:179

References add_size(), dlist_iter::cur, dlist_container, dlist_foreach, estimate_variable_size(), guc_nondef_list, and config_generic::nondef_link.

Referenced by InitializeParallelDSM().

◆ extra_field_used()

static bool extra_field_used ( struct config_generic gconf,
void *  extra 
)
static

Definition at line 743 of file guc.c.

744{
745 if (extra == gconf->extra)
746 return true;
747 if (extra == gconf->reset_extra)
748 return true;
749 for (GucStack *stack = gconf->stack; stack; stack = stack->prev)
750 {
751 if (extra == stack->prior.extra ||
752 extra == stack->masked.extra)
753 return true;
754 }
755
756 return false;
757}
void * reset_extra
Definition: guc_tables.h:269

References config_var_value::extra, config_generic::extra, guc_stack::masked, guc_stack::prev, guc_stack::prior, config_generic::reset_extra, and config_generic::stack.

Referenced by set_config_with_handle(), and set_extra_field().

◆ find_option()

struct config_generic * find_option ( const char *  name,
bool  create_placeholders,
bool  skip_errors,
int  elevel 
)

Definition at line 1113 of file guc.c.

1115{
1116 GUCHashEntry *hentry;
1117
1118 Assert(name);
1119
1120 /* Look it up using the hash table. */
1122 &name,
1123 HASH_FIND,
1124 NULL);
1125 if (hentry)
1126 return hentry->gucvar;
1127
1128 /*
1129 * See if the name is an obsolete name for a variable. We assume that the
1130 * set of supported old names is short enough that a brute-force search is
1131 * the best way.
1132 */
1133 for (int i = 0; map_old_guc_names[i] != NULL; i += 2)
1134 {
1136 return find_option(map_old_guc_names[i + 1], false,
1137 skip_errors, elevel);
1138 }
1139
1140 if (create_placeholders)
1141 {
1142 /*
1143 * Check if the name is valid, and if so, add a placeholder.
1144 */
1145 if (assignable_custom_variable_name(name, skip_errors, elevel))
1146 return add_placeholder_variable(name, elevel);
1147 else
1148 return NULL; /* error message, if any, already emitted */
1149 }
1150
1151 /* Unknown name and we're not supposed to make a placeholder */
1152 if (!skip_errors)
1153 ereport(elevel,
1154 (errcode(ERRCODE_UNDEFINED_OBJECT),
1155 errmsg("unrecognized configuration parameter \"%s\"",
1156 name)));
1157 return NULL;
1158}
static struct config_generic * add_placeholder_variable(const char *name, int elevel)
Definition: guc.c:1057

References add_placeholder_variable(), Assert(), assignable_custom_variable_name(), ereport, errcode(), errmsg(), find_option(), guc_hashtab, guc_name_compare(), GUCHashEntry::gucvar, HASH_FIND, hash_search(), i, map_old_guc_names, and name.

Referenced by AlterSystemSetConfigFile(), check_GUC_name_for_parameter_acl(), find_option(), flatten_set_variable_args(), get_config_handle(), GetConfigOption(), GetConfigOptionByName(), GetConfigOptionFlags(), GetConfigOptionResetString(), GUCArrayAdd(), GUCArrayDelete(), InitializeWalConsistencyChecking(), pg_settings_get_flags(), ProcessConfigFileInternal(), SelectConfigFiles(), set_config_sourcefile(), set_config_with_handle(), and validate_option_array_item().

◆ free_placeholder()

static void free_placeholder ( struct config_generic pHolder)
static

Definition at line 4985 of file guc.c.

4986{
4987 /* Placeholders are always STRING type, so free their values */
4988 Assert(pHolder->vartype == PGC_STRING);
4989 set_string_field(pHolder, pHolder->_string.variable, NULL);
4990 set_string_field(pHolder, &pHolder->_string.reset_val, NULL);
4991
4992 guc_free(unconstify(char *, pHolder->name));
4993 guc_free(pHolder);
4994}

References config_generic::_string, Assert(), guc_free(), config_generic::name, PGC_STRING, config_string::reset_val, set_string_field(), unconstify, config_string::variable, and config_generic::vartype.

Referenced by define_custom_variable(), and MarkGUCPrefixReserved().

◆ get_config_handle()

config_handle * get_config_handle ( const char *  name)

Definition at line 4137 of file guc.c.

4138{
4139 struct config_generic *gen = find_option(name, false, false, 0);
4140
4141 if (gen && ((gen->flags & GUC_CUSTOM_PLACEHOLDER) == 0))
4142 return gen;
4143
4144 return NULL;
4145}

References find_option(), config_generic::flags, GUC_CUSTOM_PLACEHOLDER, and name.

Referenced by fmgr_security_definer().

◆ get_config_unit_name()

const char * get_config_unit_name ( int  flags)

Definition at line 2686 of file guc.c.

2687{
2688 switch (flags & GUC_UNIT)
2689 {
2690 case 0:
2691 return NULL; /* GUC has no units */
2692 case GUC_UNIT_BYTE:
2693 return "B";
2694 case GUC_UNIT_KB:
2695 return "kB";
2696 case GUC_UNIT_MB:
2697 return "MB";
2698 case GUC_UNIT_BLOCKS:
2699 {
2700 static char bbuf[8];
2701
2702 /* initialize if first time through */
2703 if (bbuf[0] == '\0')
2704 snprintf(bbuf, sizeof(bbuf), "%dkB", BLCKSZ / 1024);
2705 return bbuf;
2706 }
2707 case GUC_UNIT_XBLOCKS:
2708 {
2709 static char xbuf[8];
2710
2711 /* initialize if first time through */
2712 if (xbuf[0] == '\0')
2713 snprintf(xbuf, sizeof(xbuf), "%dkB", XLOG_BLCKSZ / 1024);
2714 return xbuf;
2715 }
2716 case GUC_UNIT_MS:
2717 return "ms";
2718 case GUC_UNIT_S:
2719 return "s";
2720 case GUC_UNIT_MIN:
2721 return "min";
2722 default:
2723 elog(ERROR, "unrecognized GUC units value: %d",
2724 flags & GUC_UNIT);
2725 return NULL;
2726 }
2727}
#define GUC_UNIT_MB
Definition: guc.h:235
#define GUC_UNIT
Definition: guc.h:244
#define GUC_UNIT_MS
Definition: guc.h:239
#define GUC_UNIT_BLOCKS
Definition: guc.h:233
#define GUC_UNIT_XBLOCKS
Definition: guc.h:234
#define GUC_UNIT_BYTE
Definition: guc.h:236
#define GUC_UNIT_S
Definition: guc.h:240
#define GUC_UNIT_KB
Definition: guc.h:232
#define GUC_UNIT_MIN
Definition: guc.h:241

References elog, ERROR, config_generic::flags, GUC_UNIT, GUC_UNIT_BLOCKS, GUC_UNIT_BYTE, GUC_UNIT_KB, GUC_UNIT_MB, GUC_UNIT_MIN, GUC_UNIT_MS, GUC_UNIT_S, GUC_UNIT_XBLOCKS, and snprintf.

Referenced by GetConfigOptionValues(), and parse_and_validate_value().

◆ get_explain_guc_options()

struct config_generic ** get_explain_guc_options ( int *  num)

Definition at line 5189 of file guc.c.

5190{
5191 struct config_generic **result;
5192 dlist_iter iter;
5193
5194 *num = 0;
5195
5196 /*
5197 * While only a fraction of all the GUC variables are marked GUC_EXPLAIN,
5198 * it doesn't seem worth dynamically resizing this array.
5199 */
5200 result = palloc(sizeof(struct config_generic *) * hash_get_num_entries(guc_hashtab));
5201
5202 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5204 {
5205 struct config_generic *conf = dlist_container(struct config_generic,
5206 nondef_link, iter.cur);
5207 bool modified;
5208
5209 /* return only parameters marked for inclusion in explain */
5210 if (!(conf->flags & GUC_EXPLAIN))
5211 continue;
5212
5213 /* return only options visible to the current user */
5214 if (!ConfigOptionIsVisible(conf))
5215 continue;
5216
5217 /* return only options that are different from their boot values */
5218 modified = false;
5219
5220 switch (conf->vartype)
5221 {
5222 case PGC_BOOL:
5223 {
5224 struct config_bool *lconf = &conf->_bool;
5225
5226 modified = (lconf->boot_val != *(lconf->variable));
5227 }
5228 break;
5229
5230 case PGC_INT:
5231 {
5232 struct config_int *lconf = &conf->_int;
5233
5234 modified = (lconf->boot_val != *(lconf->variable));
5235 }
5236 break;
5237
5238 case PGC_REAL:
5239 {
5240 struct config_real *lconf = &conf->_real;
5241
5242 modified = (lconf->boot_val != *(lconf->variable));
5243 }
5244 break;
5245
5246 case PGC_STRING:
5247 {
5248 struct config_string *lconf = &conf->_string;
5249
5250 if (lconf->boot_val == NULL &&
5251 *lconf->variable == NULL)
5252 modified = false;
5253 else if (lconf->boot_val == NULL ||
5254 *lconf->variable == NULL)
5255 modified = true;
5256 else
5257 modified = (strcmp(lconf->boot_val, *(lconf->variable)) != 0);
5258 }
5259 break;
5260
5261 case PGC_ENUM:
5262 {
5263 struct config_enum *lconf = &conf->_enum;
5264
5265 modified = (lconf->boot_val != *(lconf->variable));
5266 }
5267 break;
5268
5269 default:
5270 elog(ERROR, "unexpected GUC type: %d", conf->vartype);
5271 }
5272
5273 if (!modified)
5274 continue;
5275
5276 /* OK, report it */
5277 result[*num] = conf;
5278 *num = *num + 1;
5279 }
5280
5281 return result;
5282}
#define GUC_EXPLAIN
Definition: guc.h:219
bool ConfigOptionIsVisible(const struct config_generic *conf)
Definition: guc_funcs.c:607
void * palloc(Size size)
Definition: mcxt.c:1365

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, config_bool::boot_val, config_int::boot_val, config_real::boot_val, config_string::boot_val, config_enum::boot_val, ConfigOptionIsVisible(), dlist_iter::cur, dlist_container, dlist_foreach, elog, ERROR, config_generic::flags, GUC_EXPLAIN, guc_hashtab, guc_nondef_list, hash_get_num_entries(), config_generic::nondef_link, palloc(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by ExplainPrintSettings().

◆ get_guc_variables()

struct config_generic ** get_guc_variables ( int *  num_vars)

Definition at line 839 of file guc.c.

840{
841 struct config_generic **result;
843 GUCHashEntry *hentry;
844 int i;
845
847 result = palloc(sizeof(struct config_generic *) * *num_vars);
848
849 /* Extract pointers from the hash table */
850 i = 0;
852 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
853 result[i++] = hentry->gucvar;
854 Assert(i == *num_vars);
855
856 /* Sort by name */
857 qsort(result, *num_vars,
858 sizeof(struct config_generic *), guc_var_compare);
859
860 return result;
861}
static int guc_var_compare(const void *a, const void *b)
Definition: guc.c:1165
#define qsort(a, b, c, d)
Definition: port.h:479

References Assert(), guc_hashtab, guc_var_compare(), GUCHashEntry::gucvar, hash_get_num_entries(), hash_seq_init(), hash_seq_search(), i, palloc(), qsort, and config_generic::status.

Referenced by GucInfoMain(), show_all_settings(), and ShowAllGUCConfig().

◆ GetConfigOption()

const char * GetConfigOption ( const char *  name,
bool  missing_ok,
bool  restrict_privileged 
)

Definition at line 4208 of file guc.c.

4209{
4210 struct config_generic *record;
4211 static char buffer[256];
4212
4213 record = find_option(name, false, missing_ok, ERROR);
4214 if (record == NULL)
4215 return NULL;
4216 if (restrict_privileged &&
4217 !ConfigOptionIsVisible(record))
4218 ereport(ERROR,
4219 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4220 errmsg("permission denied to examine \"%s\"", name),
4221 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4222 "pg_read_all_settings")));
4223
4224 switch (record->vartype)
4225 {
4226 case PGC_BOOL:
4227 return *record->_bool.variable ? "on" : "off";
4228
4229 case PGC_INT:
4230 snprintf(buffer, sizeof(buffer), "%d",
4231 *record->_int.variable);
4232 return buffer;
4233
4234 case PGC_REAL:
4235 snprintf(buffer, sizeof(buffer), "%g",
4236 *record->_real.variable);
4237 return buffer;
4238
4239 case PGC_STRING:
4240 return *record->_string.variable ?
4241 *record->_string.variable : "";
4242
4243 case PGC_ENUM:
4244 return config_enum_lookup_by_value(record,
4245 *record->_enum.variable);
4246 }
4247 return NULL;
4248}

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, config_enum_lookup_by_value(), ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg(), ERROR, find_option(), name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, snprintf, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by applyRemoteGucs(), be_tls_init(), CreateSharedMemoryAndSemaphores(), PostmasterMain(), and ProcessConfigFileInternal().

◆ GetConfigOptionByName()

char * GetConfigOptionByName ( const char *  name,
const char **  varname,
bool  missing_ok 
)

Definition at line 5290 of file guc.c.

5291{
5292 struct config_generic *record;
5293
5294 record = find_option(name, false, missing_ok, ERROR);
5295 if (record == NULL)
5296 {
5297 if (varname)
5298 *varname = NULL;
5299 return NULL;
5300 }
5301
5302 if (!ConfigOptionIsVisible(record))
5303 ereport(ERROR,
5304 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
5305 errmsg("permission denied to examine \"%s\"", name),
5306 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
5307 "pg_read_all_settings")));
5308
5309 if (varname)
5310 *varname = record->name;
5311
5312 return ShowGUCOption(record, true);
5313}
char * ShowGUCOption(const struct config_generic *record, bool use_units)
Definition: guc.c:5323

References ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg(), ERROR, find_option(), name, config_generic::name, and ShowGUCOption().

Referenced by ExplainPrintSettings(), ExtractSetVariableArgs(), GetPGVariableResultDesc(), set_config_by_name(), show_config_by_name(), show_config_by_name_missing_ok(), and ShowGUCConfigOption().

◆ GetConfigOptionFlags()

int GetConfigOptionFlags ( const char *  name,
bool  missing_ok 
)

Definition at line 4305 of file guc.c.

4306{
4307 struct config_generic *record;
4308
4309 record = find_option(name, false, missing_ok, ERROR);
4310 if (record == NULL)
4311 return 0;
4312 return record->flags;
4313}

References ERROR, find_option(), config_generic::flags, and name.

Referenced by pg_get_functiondef(), and PostmasterMain().

◆ GetConfigOptionResetString()

const char * GetConfigOptionResetString ( const char *  name)

Definition at line 4258 of file guc.c.

4259{
4260 struct config_generic *record;
4261 static char buffer[256];
4262
4263 record = find_option(name, false, false, ERROR);
4264 Assert(record != NULL);
4265 if (!ConfigOptionIsVisible(record))
4266 ereport(ERROR,
4267 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4268 errmsg("permission denied to examine \"%s\"", name),
4269 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4270 "pg_read_all_settings")));
4271
4272 switch (record->vartype)
4273 {
4274 case PGC_BOOL:
4275 return record->_bool.reset_val ? "on" : "off";
4276
4277 case PGC_INT:
4278 snprintf(buffer, sizeof(buffer), "%d",
4279 record->_int.reset_val);
4280 return buffer;
4281
4282 case PGC_REAL:
4283 snprintf(buffer, sizeof(buffer), "%g",
4284 record->_real.reset_val);
4285 return buffer;
4286
4287 case PGC_STRING:
4288 return record->_string.reset_val ?
4289 record->_string.reset_val : "";
4290
4291 case PGC_ENUM:
4292 return config_enum_lookup_by_value(record,
4293 record->_enum.reset_val);
4294 }
4295 return NULL;
4296}

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, Assert(), config_enum_lookup_by_value(), ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg(), ERROR, find_option(), name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, snprintf, and config_generic::vartype.

Referenced by check_datestyle().

◆ GUC_check_errcode()

◆ guc_free()

void guc_free ( void *  ptr)

Definition at line 687 of file guc.c.

688{
689 /*
690 * Historically, GUC-related code has relied heavily on the ability to do
691 * free(NULL), so we allow that here even though pfree() doesn't.
692 */
693 if (ptr != NULL)
694 {
695 /* This is to help catch old code that malloc's GUC data. */
697 pfree(ptr);
698 }
699}
MemoryContext GetMemoryChunkContext(void *pointer)
Definition: mcxt.c:753

References Assert(), GetMemoryChunkContext(), GUCMemoryContext, and pfree().

Referenced by add_placeholder_variable(), AlterSystemSetConfigFile(), call_string_check_hook(), check_application_name(), check_client_encoding(), check_cluster_name(), check_datestyle(), check_default_text_search_config(), free_placeholder(), parse_and_validate_value(), ReportGUCOption(), RestoreGUCState(), SelectConfigFiles(), set_config_sourcefile(), set_config_with_handle(), set_extra_field(), and set_string_field().

◆ guc_malloc()

◆ guc_name_compare()

int guc_name_compare ( const char *  namea,
const char *  nameb 
)

Definition at line 1177 of file guc.c.

1178{
1179 /*
1180 * The temptation to use strcasecmp() here must be resisted, because the
1181 * hash mapping has to remain stable across setlocale() calls. So, build
1182 * our own with a simple ASCII-only downcasing.
1183 */
1184 while (*namea && *nameb)
1185 {
1186 char cha = *namea++;
1187 char chb = *nameb++;
1188
1189 if (cha >= 'A' && cha <= 'Z')
1190 cha += 'a' - 'A';
1191 if (chb >= 'A' && chb <= 'Z')
1192 chb += 'a' - 'A';
1193 if (cha != chb)
1194 return cha - chb;
1195 }
1196 if (*namea)
1197 return 1; /* a is longer */
1198 if (*nameb)
1199 return -1; /* b is longer */
1200 return 0;
1201}

Referenced by convert_GUC_name_for_parameter_acl(), find_option(), GetPGVariable(), GetPGVariableResultDesc(), guc_name_match(), guc_var_compare(), ParseConfigFp(), and replace_auto_config_value().

◆ guc_name_hash()

static uint32 guc_name_hash ( const void *  key,
Size  keysize 
)
static

Definition at line 1207 of file guc.c.

1208{
1209 uint32 result = 0;
1210 const char *name = *(const char *const *) key;
1211
1212 while (*name)
1213 {
1214 char ch = *name++;
1215
1216 /* Case-fold in the same way as guc_name_compare */
1217 if (ch >= 'A' && ch <= 'Z')
1218 ch += 'a' - 'A';
1219
1220 /* Merge into hash ... not very bright, but it needn't be */
1221 result = pg_rotate_left32(result, 5);
1222 result ^= (uint32) ch;
1223 }
1224 return result;
1225}
uint32_t uint32
Definition: c.h:542
static uint32 pg_rotate_left32(uint32 word, int n)
Definition: pg_bitutils.h:428

References sort-test::key, name, and pg_rotate_left32().

Referenced by build_guc_variables().

◆ guc_name_match()

static int guc_name_match ( const void *  key1,
const void *  key2,
Size  keysize 
)
static

Definition at line 1231 of file guc.c.

1232{
1233 const char *name1 = *(const char *const *) key1;
1234 const char *name2 = *(const char *const *) key2;
1235
1236 return guc_name_compare(name1, name2);
1237}

References guc_name_compare().

Referenced by build_guc_variables().

◆ guc_realloc()

void * guc_realloc ( int  elevel,
void *  old,
size_t  size 
)

Definition at line 650 of file guc.c.

651{
652 void *data;
653
654 if (old != NULL)
655 {
656 /* This is to help catch old code that malloc's GUC data. */
658 data = repalloc_extended(old, size,
660 }
661 else
662 {
663 /* Like realloc(3), but not like repalloc(), we allow old == NULL. */
666 }
667 if (unlikely(data == NULL))
668 ereport(elevel,
669 (errcode(ERRCODE_OUT_OF_MEMORY),
670 errmsg("out of memory")));
671 return data;
672}
void * repalloc_extended(void *pointer, Size size, int flags)
Definition: mcxt.c:1645

References Assert(), data, ereport, errcode(), errmsg(), GetMemoryChunkContext(), GUCMemoryContext, MCXT_ALLOC_NO_OOM, MemoryContextAllocExtended(), repalloc_extended(), and unlikely.

◆ guc_restore_error_context_callback()

static void guc_restore_error_context_callback ( void *  arg)
static

Definition at line 6029 of file guc.c.

6030{
6031 char **error_context_name_and_value = (char **) arg;
6032
6033 if (error_context_name_and_value)
6034 errcontext("while setting parameter \"%s\" to \"%s\"",
6035 error_context_name_and_value[0],
6036 error_context_name_and_value[1]);
6037}
#define errcontext
Definition: elog.h:198
void * arg

References arg, and errcontext.

Referenced by RestoreGUCState().

◆ guc_strdup()

char * guc_strdup ( int  elevel,
const char *  src 
)

Definition at line 675 of file guc.c.

676{
677 char *data;
678 size_t len = strlen(src) + 1;
679
680 data = guc_malloc(elevel, len);
681 if (likely(data != NULL))
682 memcpy(data, src, len);
683 return data;
684}
#define likely(x)
Definition: c.h:405
const void size_t len

References data, guc_malloc(), len, and likely.

Referenced by add_placeholder_variable(), check_application_name(), check_client_encoding(), check_cluster_name(), check_datestyle(), check_default_text_search_config(), init_custom_variable(), InitializeOneGUCOption(), parse_and_validate_value(), ReportGUCOption(), set_config_sourcefile(), and set_config_with_handle().

◆ guc_var_compare()

static int guc_var_compare ( const void *  a,
const void *  b 
)
static

Definition at line 1165 of file guc.c.

1166{
1167 const char *namea = **(const char **const *) a;
1168 const char *nameb = **(const char **const *) b;
1169
1170 return guc_name_compare(namea, nameb);
1171}
int b
Definition: isn.c:74
int a
Definition: isn.c:73

References a, b, and guc_name_compare().

Referenced by get_guc_variables().

◆ GUCArrayAdd()

ArrayType * GUCArrayAdd ( ArrayType array,
const char *  name,
const char *  value 
)

Definition at line 6317 of file guc.c.

6318{
6319 struct config_generic *record;
6320 Datum datum;
6321 char *newval;
6322 ArrayType *a;
6323
6324 Assert(name);
6325 Assert(value);
6326
6327 /* test if the option is valid and we're allowed to set it */
6328 (void) validate_option_array_item(name, value, false);
6329
6330 /* normalize name (converts obsolete GUC names to modern spellings) */
6331 record = find_option(name, false, true, WARNING);
6332 if (record)
6333 name = record->name;
6334
6335 /* build new item for array */
6336 newval = psprintf("%s=%s", name, value);
6337 datum = CStringGetTextDatum(newval);
6338
6339 if (array)
6340 {
6341 int index;
6342 bool isnull;
6343
6344 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6345 Assert(ARR_NDIM(array) == 1);
6346 Assert(ARR_LBOUND(array)[0] == 1);
6347
6348 index = ARR_DIMS(array)[0] + 1; /* add after end */
6349
6350 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6351 {
6352 Datum d;
6353 char *current;
6354
6355 d = array_ref(array, 1, &i,
6356 -1 /* varlenarray */ ,
6357 -1 /* TEXT's typlen */ ,
6358 false /* TEXT's typbyval */ ,
6359 TYPALIGN_INT /* TEXT's typalign */ ,
6360 &isnull);
6361 if (isnull)
6362 continue;
6363 current = TextDatumGetCString(d);
6364
6365 /* check for match up through and including '=' */
6366 if (strncmp(current, newval, strlen(name) + 1) == 0)
6367 {
6368 index = i;
6369 break;
6370 }
6371 }
6372
6373 a = array_set(array, 1, &index,
6374 datum,
6375 false,
6376 -1 /* varlena array */ ,
6377 -1 /* TEXT's typlen */ ,
6378 false /* TEXT's typbyval */ ,
6379 TYPALIGN_INT /* TEXT's typalign */ );
6380 }
6381 else
6382 a = construct_array_builtin(&datum, 1, TEXTOID);
6383
6384 return a;
6385}
#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)
Definition: arrayfuncs.c:3164
Datum array_ref(ArrayType *array, int nSubscripts, int *indx, int arraytyplen, int elmlen, bool elmbyval, char elmalign, bool *isNull)
Definition: arrayfuncs.c:3147
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
Definition: arrayfuncs.c:3382
#define CStringGetTextDatum(s)
Definition: builtins.h:97
#define TextDatumGetCString(d)
Definition: builtins.h:98
static bool validate_option_array_item(const char *name, const char *value, bool skipIfNoPermissions)
Definition: guc.c:6534
uint64_t Datum
Definition: postgres.h:70
char * psprintf(const char *fmt,...)
Definition: psprintf.c:43
Definition: type.h:96

References a, ARR_DIMS, ARR_ELEMTYPE, ARR_LBOUND, ARR_NDIM, array_ref(), array_set(), Assert(), construct_array_builtin(), CStringGetTextDatum, find_option(), i, name, config_generic::name, newval, psprintf(), TextDatumGetCString, validate_option_array_item(), value, and WARNING.

Referenced by AlterSetting(), and update_proconfig_value().

◆ GUCArrayDelete()

ArrayType * GUCArrayDelete ( ArrayType array,
const char *  name 
)

Definition at line 6394 of file guc.c.

6395{
6396 struct config_generic *record;
6397 ArrayType *newarray;
6398 int index;
6399
6400 Assert(name);
6401
6402 /* test if the option is valid and we're allowed to set it */
6403 (void) validate_option_array_item(name, NULL, false);
6404
6405 /* normalize name (converts obsolete GUC names to modern spellings) */
6406 record = find_option(name, false, true, WARNING);
6407 if (record)
6408 name = record->name;
6409
6410 /* if array is currently null, then surely nothing to delete */
6411 if (!array)
6412 return NULL;
6413
6414 newarray = NULL;
6415 index = 1;
6416
6417 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6418 {
6419 Datum d;
6420 char *val;
6421 bool isnull;
6422
6423 d = array_ref(array, 1, &i,
6424 -1 /* varlenarray */ ,
6425 -1 /* TEXT's typlen */ ,
6426 false /* TEXT's typbyval */ ,
6427 TYPALIGN_INT /* TEXT's typalign */ ,
6428 &isnull);
6429 if (isnull)
6430 continue;
6432
6433 /* ignore entry if it's what we want to delete */
6434 if (strncmp(val, name, strlen(name)) == 0
6435 && val[strlen(name)] == '=')
6436 continue;
6437
6438 /* else add it to the output array */
6439 if (newarray)
6440 newarray = array_set(newarray, 1, &index,
6441 d,
6442 false,
6443 -1 /* varlenarray */ ,
6444 -1 /* TEXT's typlen */ ,
6445 false /* TEXT's typbyval */ ,
6446 TYPALIGN_INT /* TEXT's typalign */ );
6447 else
6448 newarray = construct_array_builtin(&d, 1, TEXTOID);
6449
6450 index++;
6451 }
6452
6453 return newarray;
6454}

References ARR_DIMS, array_ref(), array_set(), Assert(), construct_array_builtin(), find_option(), i, name, config_generic::name, TextDatumGetCString, val, validate_option_array_item(), and WARNING.

Referenced by AlterSetting(), and update_proconfig_value().

◆ GUCArrayReset()

ArrayType * GUCArrayReset ( ArrayType array)

Definition at line 6463 of file guc.c.

6464{
6465 ArrayType *newarray;
6466 int index;
6467
6468 /* if array is currently null, nothing to do */
6469 if (!array)
6470 return NULL;
6471
6472 /* if we're superuser, we can delete everything, so just do it */
6473 if (superuser())
6474 return NULL;
6475
6476 newarray = NULL;
6477 index = 1;
6478
6479 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6480 {
6481 Datum d;
6482 char *val;
6483 char *eqsgn;
6484 bool isnull;
6485
6486 d = array_ref(array, 1, &i,
6487 -1 /* varlenarray */ ,
6488 -1 /* TEXT's typlen */ ,
6489 false /* TEXT's typbyval */ ,
6490 TYPALIGN_INT /* TEXT's typalign */ ,
6491 &isnull);
6492 if (isnull)
6493 continue;
6495
6496 eqsgn = strchr(val, '=');
6497 *eqsgn = '\0';
6498
6499 /* skip if we have permission to delete it */
6500 if (validate_option_array_item(val, NULL, true))
6501 continue;
6502
6503 /* else add it to the output array */
6504 if (newarray)
6505 newarray = array_set(newarray, 1, &index,
6506 d,
6507 false,
6508 -1 /* varlenarray */ ,
6509 -1 /* TEXT's typlen */ ,
6510 false /* TEXT's typbyval */ ,
6511 TYPALIGN_INT /* TEXT's typalign */ );
6512 else
6513 newarray = construct_array_builtin(&d, 1, TEXTOID);
6514
6515 index++;
6516 pfree(val);
6517 }
6518
6519 return newarray;
6520}

References ARR_DIMS, array_ref(), array_set(), construct_array_builtin(), i, pfree(), superuser(), TextDatumGetCString, val, and validate_option_array_item().

Referenced by AlterSetting().

◆ init_custom_variable()

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 
)
static

Definition at line 4728 of file guc.c.

4734{
4735 struct config_generic *gen;
4736
4737 /*
4738 * Only allow custom PGC_POSTMASTER variables to be created during shared
4739 * library preload; any later than that, we can't ensure that the value
4740 * doesn't change after startup. This is a fatal elog if it happens; just
4741 * erroring out isn't safe because we don't know what the calling loadable
4742 * module might already have hooked into.
4743 */
4744 if (context == PGC_POSTMASTER &&
4746 elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
4747
4748 /*
4749 * We can't support custom GUC_LIST_QUOTE variables, because the wrong
4750 * things would happen if such a variable were set or pg_dump'd when the
4751 * defining extension isn't loaded. Again, treat this as fatal because
4752 * the loadable module may be partly initialized already.
4753 */
4754 if (flags & GUC_LIST_QUOTE)
4755 elog(FATAL, "extensions cannot define GUC_LIST_QUOTE variables");
4756
4757 /*
4758 * Before pljava commit 398f3b876ed402bdaec8bc804f29e2be95c75139
4759 * (2015-12-15), two of that module's PGC_USERSET variables facilitated
4760 * trivial escalation to superuser privileges. Restrict the variables to
4761 * protect sites that have yet to upgrade pljava.
4762 */
4763 if (context == PGC_USERSET &&
4764 (strcmp(name, "pljava.classpath") == 0 ||
4765 strcmp(name, "pljava.vmoptions") == 0))
4767
4768 /* As above, an OOM here is FATAL */
4769 gen = (struct config_generic *) guc_malloc(FATAL, sizeof(struct config_generic));
4770 memset(gen, 0, sizeof(struct config_generic));
4771
4772 gen->name = guc_strdup(FATAL, name);
4773 gen->context = context;
4774 gen->group = CUSTOM_OPTIONS;
4775 gen->short_desc = short_desc;
4776 gen->long_desc = long_desc;
4777 gen->flags = flags;
4778 gen->vartype = type;
4779
4780 return gen;
4781}
#define FATAL
Definition: elog.h:41
#define GUC_LIST_QUOTE
Definition: guc.h:215
@ PGC_SUSET
Definition: guc.h:78
bool process_shared_preload_libraries_in_progress
Definition: miscinit.c:1786
const char * type

References config_generic::context, CUSTOM_OPTIONS, elog, FATAL, config_generic::flags, config_generic::group, GUC_LIST_QUOTE, guc_malloc(), guc_strdup(), config_generic::long_desc, name, config_generic::name, PGC_POSTMASTER, PGC_SUSET, PGC_USERSET, process_shared_preload_libraries_in_progress, config_generic::short_desc, type, and config_generic::vartype.

Referenced by DefineCustomBoolVariable(), DefineCustomEnumVariable(), DefineCustomIntVariable(), DefineCustomRealVariable(), and DefineCustomStringVariable().

◆ InitializeGUCOptions()

void InitializeGUCOptions ( void  )

Definition at line 1407 of file guc.c.

1408{
1409 HASH_SEQ_STATUS status;
1410 GUCHashEntry *hentry;
1411
1412 /*
1413 * Before log_line_prefix could possibly receive a nonempty setting, make
1414 * sure that timezone processing is minimally alive (see elog.c).
1415 */
1417
1418 /*
1419 * Create GUCMemoryContext and build hash table of all GUC variables.
1420 */
1422
1423 /*
1424 * Load all variables with their compiled-in defaults, and initialize
1425 * status fields as needed.
1426 */
1427 hash_seq_init(&status, guc_hashtab);
1428 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
1429 {
1430 /* Check mapping between initial and default value */
1431 Assert(check_GUC_init(hentry->gucvar));
1432
1434 }
1435
1436 reporting_enabled = false;
1437
1438 /*
1439 * Prevent any attempt to override the transaction modes from
1440 * non-interactive sources.
1441 */
1442 SetConfigOption("transaction_isolation", "read committed",
1444 SetConfigOption("transaction_read_only", "no",
1446 SetConfigOption("transaction_deferrable", "no",
1448
1449 /*
1450 * For historical reasons, some GUC parameters can receive defaults from
1451 * environment variables. Process those settings.
1452 */
1454}
void build_guc_variables(void)
Definition: guc.c:870
static void InitializeGUCOptionsFromEnvironment(void)
Definition: guc.c:1466
void pg_timezone_initialize(void)
Definition: pgtz.c:361

References Assert(), build_guc_variables(), guc_hashtab, GUCHashEntry::gucvar, hash_seq_init(), hash_seq_search(), InitializeGUCOptionsFromEnvironment(), InitializeOneGUCOption(), pg_timezone_initialize(), PGC_POSTMASTER, PGC_S_OVERRIDE, reporting_enabled, and SetConfigOption().

Referenced by BootstrapModeMain(), PostgresSingleUserMain(), and PostmasterMain().

◆ InitializeGUCOptionsFromEnvironment()

static void InitializeGUCOptionsFromEnvironment ( void  )
static

Definition at line 1466 of file guc.c.

1467{
1468 char *env;
1469 ssize_t stack_rlimit;
1470
1471 env = getenv("PGPORT");
1472 if (env != NULL)
1474
1475 env = getenv("PGDATESTYLE");
1476 if (env != NULL)
1477 SetConfigOption("datestyle", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1478
1479 env = getenv("PGCLIENTENCODING");
1480 if (env != NULL)
1481 SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1482
1483 /*
1484 * rlimit isn't exactly an "environment variable", but it behaves about
1485 * the same. If we can identify the platform stack depth rlimit, increase
1486 * default stack depth setting up to whatever is safe (but at most 2MB).
1487 * Report the value's source as PGC_S_DYNAMIC_DEFAULT if it's 2MB, or as
1488 * PGC_S_ENV_VAR if it's reflecting the rlimit limit.
1489 */
1490 stack_rlimit = get_stack_depth_rlimit();
1491 if (stack_rlimit > 0)
1492 {
1493 ssize_t new_limit = (stack_rlimit - STACK_DEPTH_SLOP) / 1024;
1494
1495 if (new_limit > 100)
1496 {
1498 char limbuf[16];
1499
1500 if (new_limit < 2048)
1502 else
1503 {
1504 new_limit = 2048;
1506 }
1507 snprintf(limbuf, sizeof(limbuf), "%d", (int) new_limit);
1508 SetConfigOption("max_stack_depth", limbuf,
1510 }
1511 }
1512}
@ PGC_S_DYNAMIC_DEFAULT
Definition: guc.h:114
@ PGC_S_ENV_VAR
Definition: guc.h:115
#define STACK_DEPTH_SLOP
Definition: miscadmin.h:297
ssize_t get_stack_depth_rlimit(void)
Definition: stack_depth.c:176

References get_stack_depth_rlimit(), PGC_POSTMASTER, PGC_S_DYNAMIC_DEFAULT, PGC_S_ENV_VAR, SetConfigOption(), snprintf, source, and STACK_DEPTH_SLOP.

Referenced by InitializeGUCOptions(), and ProcessConfigFileInternal().

◆ InitializeOneGUCOption()

static void InitializeOneGUCOption ( struct config_generic gconf)
static

Definition at line 1521 of file guc.c.

1522{
1523 void *extra = NULL;
1524
1525 gconf->status = 0;
1526 gconf->source = PGC_S_DEFAULT;
1527 gconf->reset_source = PGC_S_DEFAULT;
1528 gconf->scontext = PGC_INTERNAL;
1530 gconf->srole = BOOTSTRAP_SUPERUSERID;
1531 gconf->reset_srole = BOOTSTRAP_SUPERUSERID;
1532 gconf->stack = NULL;
1533 gconf->extra = NULL;
1534 gconf->last_reported = NULL;
1535 gconf->sourcefile = NULL;
1536 gconf->sourceline = 0;
1537
1538 switch (gconf->vartype)
1539 {
1540 case PGC_BOOL:
1541 {
1542 struct config_bool *conf = &gconf->_bool;
1543 bool newval = conf->boot_val;
1544
1545 if (!call_bool_check_hook(gconf, &newval, &extra,
1547 elog(FATAL, "failed to initialize %s to %d",
1548 gconf->name, (int) newval);
1549 if (conf->assign_hook)
1550 conf->assign_hook(newval, extra);
1551 *conf->variable = conf->reset_val = newval;
1552 break;
1553 }
1554 case PGC_INT:
1555 {
1556 struct config_int *conf = &gconf->_int;
1557 int newval = conf->boot_val;
1558
1559 Assert(newval >= conf->min);
1560 Assert(newval <= conf->max);
1561 if (!call_int_check_hook(gconf, &newval, &extra,
1563 elog(FATAL, "failed to initialize %s to %d",
1564 gconf->name, newval);
1565 if (conf->assign_hook)
1566 conf->assign_hook(newval, extra);
1567 *conf->variable = conf->reset_val = newval;
1568 break;
1569 }
1570 case PGC_REAL:
1571 {
1572 struct config_real *conf = &gconf->_real;
1573 double newval = conf->boot_val;
1574
1575 Assert(newval >= conf->min);
1576 Assert(newval <= conf->max);
1577 if (!call_real_check_hook(gconf, &newval, &extra,
1579 elog(FATAL, "failed to initialize %s to %g",
1580 gconf->name, newval);
1581 if (conf->assign_hook)
1582 conf->assign_hook(newval, extra);
1583 *conf->variable = conf->reset_val = newval;
1584 break;
1585 }
1586 case PGC_STRING:
1587 {
1588 struct config_string *conf = &gconf->_string;
1589 char *newval;
1590
1591 /* non-NULL boot_val must always get strdup'd */
1592 if (conf->boot_val != NULL)
1593 newval = guc_strdup(FATAL, conf->boot_val);
1594 else
1595 newval = NULL;
1596
1597 if (!call_string_check_hook(gconf, &newval, &extra,
1599 elog(FATAL, "failed to initialize %s to \"%s\"",
1600 gconf->name, newval ? newval : "");
1601 if (conf->assign_hook)
1602 conf->assign_hook(newval, extra);
1603 *conf->variable = conf->reset_val = newval;
1604 break;
1605 }
1606 case PGC_ENUM:
1607 {
1608 struct config_enum *conf = &gconf->_enum;
1609 int newval = conf->boot_val;
1610
1611 if (!call_enum_check_hook(gconf, &newval, &extra,
1613 elog(FATAL, "failed to initialize %s to %d",
1614 gconf->name, newval);
1615 if (conf->assign_hook)
1616 conf->assign_hook(newval, extra);
1617 *conf->variable = conf->reset_val = newval;
1618 break;
1619 }
1620 }
1621
1622 gconf->extra = gconf->reset_extra = extra;
1623}
static bool call_real_check_hook(const struct config_generic *conf, double *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6698
static bool call_enum_check_hook(const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6782
static bool call_int_check_hook(const struct config_generic *conf, int *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6664
static void static bool call_bool_check_hook(const struct config_generic *conf, bool *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6630
static bool call_string_check_hook(const struct config_generic *conf, char **newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6732
char * last_reported
Definition: guc_tables.h:276

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, Assert(), config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, config_bool::boot_val, config_int::boot_val, config_real::boot_val, config_string::boot_val, config_enum::boot_val, call_bool_check_hook(), call_enum_check_hook(), call_int_check_hook(), call_real_check_hook(), call_string_check_hook(), elog, config_generic::extra, FATAL, guc_strdup(), config_generic::last_reported, LOG, config_int::max, config_real::max, config_int::min, config_real::min, config_generic::name, newval, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_INTERNAL, PGC_REAL, PGC_S_DEFAULT, PGC_STRING, config_generic::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, config_generic::scontext, config_generic::source, config_generic::sourcefile, config_generic::sourceline, config_generic::srole, config_generic::stack, config_generic::status, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by define_custom_variable(), InitializeGUCOptions(), and RestoreGUCState().

◆ MarkGUCPrefixReserved()

void MarkGUCPrefixReserved ( const char *  className)

Definition at line 5137 of file guc.c.

5138{
5139 int classLen = strlen(className);
5140 HASH_SEQ_STATUS status;
5141 GUCHashEntry *hentry;
5142 MemoryContext oldcontext;
5143
5144 /*
5145 * Check for existing placeholders. We must actually remove invalid
5146 * placeholders, else future parallel worker startups will fail.
5147 */
5148 hash_seq_init(&status, guc_hashtab);
5149 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
5150 {
5151 struct config_generic *var = hentry->gucvar;
5152
5153 if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5154 strncmp(className, var->name, classLen) == 0 &&
5155 var->name[classLen] == GUC_QUALIFIER_SEPARATOR)
5156 {
5158 (errcode(ERRCODE_INVALID_NAME),
5159 errmsg("invalid configuration parameter name \"%s\", removing it",
5160 var->name),
5161 errdetail("\"%s\" is now a reserved prefix.",
5162 className)));
5163 /* Remove it from the hash table */
5165 &var->name,
5167 NULL);
5168 /* Remove it from any lists it's in, too */
5169 RemoveGUCFromLists(var);
5170 /* And free it */
5171 free_placeholder(var);
5172 }
5173 }
5174
5175 /* And remember the name so we can prevent future mistakes. */
5178 MemoryContextSwitchTo(oldcontext);
5179}
@ HASH_REMOVE
Definition: hsearch.h:115
List * lappend(List *list, void *datum)
Definition: list.c:339
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124

References ereport, errcode(), errdetail(), errmsg(), config_generic::flags, free_placeholder(), GUC_CUSTOM_PLACEHOLDER, guc_hashtab, GUC_QUALIFIER_SEPARATOR, GUCMemoryContext, GUCHashEntry::gucvar, HASH_REMOVE, hash_search(), hash_seq_init(), hash_seq_search(), lappend(), MemoryContextSwitchTo(), config_generic::name, pstrdup(), RemoveGUCFromLists(), reserved_class_prefix, config_generic::status, and WARNING.

Referenced by _PG_init().

◆ NewGUCNestLevel()

◆ parse_and_validate_value()

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 
)
static

Definition at line 2996 of file guc.c.

3000{
3001 switch (record->vartype)
3002 {
3003 case PGC_BOOL:
3004 {
3005 if (!parse_bool(value, &newval->boolval))
3006 {
3007 ereport(elevel,
3008 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3009 errmsg("parameter \"%s\" requires a Boolean value",
3010 record->name)));
3011 return false;
3012 }
3013
3014 if (!call_bool_check_hook(record, &newval->boolval, newextra,
3015 source, elevel))
3016 return false;
3017 }
3018 break;
3019 case PGC_INT:
3020 {
3021 const struct config_int *conf = &record->_int;
3022 const char *hintmsg;
3023
3024 if (!parse_int(value, &newval->intval,
3025 record->flags, &hintmsg))
3026 {
3027 ereport(elevel,
3028 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3029 errmsg("invalid value for parameter \"%s\": \"%s\"",
3030 record->name, value),
3031 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3032 return false;
3033 }
3034
3035 if (newval->intval < conf->min || newval->intval > conf->max)
3036 {
3037 const char *unit = get_config_unit_name(record->flags);
3038 const char *unitspace;
3039
3040 if (unit)
3041 unitspace = " ";
3042 else
3043 unit = unitspace = "";
3044
3045 ereport(elevel,
3046 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3047 errmsg("%d%s%s is outside the valid range for parameter \"%s\" (%d%s%s .. %d%s%s)",
3048 newval->intval, unitspace, unit,
3049 record->name,
3050 conf->min, unitspace, unit,
3051 conf->max, unitspace, unit)));
3052 return false;
3053 }
3054
3055 if (!call_int_check_hook(record, &newval->intval, newextra,
3056 source, elevel))
3057 return false;
3058 }
3059 break;
3060 case PGC_REAL:
3061 {
3062 const struct config_real *conf = &record->_real;
3063 const char *hintmsg;
3064
3065 if (!parse_real(value, &newval->realval,
3066 record->flags, &hintmsg))
3067 {
3068 ereport(elevel,
3069 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3070 errmsg("invalid value for parameter \"%s\": \"%s\"",
3071 record->name, value),
3072 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3073 return false;
3074 }
3075
3076 if (newval->realval < conf->min || newval->realval > conf->max)
3077 {
3078 const char *unit = get_config_unit_name(record->flags);
3079 const char *unitspace;
3080
3081 if (unit)
3082 unitspace = " ";
3083 else
3084 unit = unitspace = "";
3085
3086 ereport(elevel,
3087 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3088 errmsg("%g%s%s is outside the valid range for parameter \"%s\" (%g%s%s .. %g%s%s)",
3089 newval->realval, unitspace, unit,
3090 record->name,
3091 conf->min, unitspace, unit,
3092 conf->max, unitspace, unit)));
3093 return false;
3094 }
3095
3096 if (!call_real_check_hook(record, &newval->realval, newextra,
3097 source, elevel))
3098 return false;
3099 }
3100 break;
3101 case PGC_STRING:
3102 {
3103 /*
3104 * The value passed by the caller could be transient, so we
3105 * always strdup it.
3106 */
3107 newval->stringval = guc_strdup(elevel, value);
3108 if (newval->stringval == NULL)
3109 return false;
3110
3111 /*
3112 * The only built-in "parsing" check we have is to apply
3113 * truncation if GUC_IS_NAME.
3114 */
3115 if (record->flags & GUC_IS_NAME)
3116 truncate_identifier(newval->stringval,
3117 strlen(newval->stringval),
3118 true);
3119
3120 if (!call_string_check_hook(record, &newval->stringval, newextra,
3121 source, elevel))
3122 {
3123 guc_free(newval->stringval);
3124 newval->stringval = NULL;
3125 return false;
3126 }
3127 }
3128 break;
3129 case PGC_ENUM:
3130 {
3131 const struct config_enum *conf = &record->_enum;
3132
3133 if (!config_enum_lookup_by_name(conf, value, &newval->enumval))
3134 {
3135 char *hintmsg;
3136
3137 hintmsg = config_enum_get_options(conf,
3138 "Available values: ",
3139 ".", ", ");
3140
3141 ereport(elevel,
3142 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3143 errmsg("invalid value for parameter \"%s\": \"%s\"",
3144 record->name, value),
3145 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3146
3147 if (hintmsg)
3148 pfree(hintmsg);
3149 return false;
3150 }
3151
3152 if (!call_enum_check_hook(record, &newval->enumval, newextra,
3153 source, elevel))
3154 return false;
3155 }
3156 break;
3157 }
3158
3159 return true;
3160}
bool parse_bool(const char *value, bool *result)
Definition: bool.c:31
#define _(x)
Definition: elog.c:91
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
Definition: guc.c:2743
char * config_enum_get_options(const struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
Definition: guc.c:2940
const char * get_config_unit_name(int flags)
Definition: guc.c:2686
bool parse_real(const char *value, double *result, int flags, const char **hintmsg)
Definition: guc.c:2833
bool config_enum_lookup_by_name(const struct config_enum *record, const char *value, int *retval)
Definition: guc.c:2916
#define GUC_IS_NAME
Definition: guc.h:225
void truncate_identifier(char *ident, int len, bool warn)
Definition: scansup.c:93

References _, config_generic::_enum, config_generic::_int, config_generic::_real, call_bool_check_hook(), call_enum_check_hook(), call_int_check_hook(), call_real_check_hook(), call_string_check_hook(), config_enum_get_options(), config_enum_lookup_by_name(), ereport, errcode(), errhint(), errmsg(), config_generic::flags, get_config_unit_name(), guc_free(), GUC_IS_NAME, guc_strdup(), config_int::max, config_real::max, config_int::min, config_real::min, config_generic::name, newval, parse_bool(), parse_int(), parse_real(), pfree(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, source, truncate_identifier(), value, and config_generic::vartype.

Referenced by AlterSystemSetConfigFile(), and set_config_with_handle().

◆ parse_int()

bool parse_int ( const char *  value,
int *  result,
int  flags,
const char **  hintmsg 
)

Definition at line 2743 of file guc.c.

2744{
2745 /*
2746 * We assume here that double is wide enough to represent any integer
2747 * value with adequate precision.
2748 */
2749 double val;
2750 char *endptr;
2751
2752 /* To suppress compiler warnings, always set output params */
2753 if (result)
2754 *result = 0;
2755 if (hintmsg)
2756 *hintmsg = NULL;
2757
2758 /*
2759 * Try to parse as an integer (allowing octal or hex input). If the
2760 * conversion stops at a decimal point or 'e', or overflows, re-parse as
2761 * float. This should work fine as long as we have no unit names starting
2762 * with 'e'. If we ever do, the test could be extended to check for a
2763 * sign or digit after 'e', but for now that's unnecessary.
2764 */
2765 errno = 0;
2766 val = strtol(value, &endptr, 0);
2767 if (*endptr == '.' || *endptr == 'e' || *endptr == 'E' ||
2768 errno == ERANGE)
2769 {
2770 errno = 0;
2771 val = strtod(value, &endptr);
2772 }
2773
2774 if (endptr == value || errno == ERANGE)
2775 return false; /* no HINT for these cases */
2776
2777 /* reject NaN (infinities will fail range check below) */
2778 if (isnan(val))
2779 return false; /* treat same as syntax error; no HINT */
2780
2781 /* allow whitespace between number and unit */
2782 while (isspace((unsigned char) *endptr))
2783 endptr++;
2784
2785 /* Handle possible unit */
2786 if (*endptr != '\0')
2787 {
2788 if ((flags & GUC_UNIT) == 0)
2789 return false; /* this setting does not accept a unit */
2790
2792 endptr, (flags & GUC_UNIT),
2793 &val))
2794 {
2795 /* invalid unit, or garbage after the unit; set hint and fail. */
2796 if (hintmsg)
2797 {
2798 if (flags & GUC_UNIT_MEMORY)
2799 *hintmsg = memory_units_hint;
2800 else
2801 *hintmsg = time_units_hint;
2802 }
2803 return false;
2804 }
2805 }
2806
2807 /* Round to int, then check for overflow */
2808 val = rint(val);
2809
2810 if (val > INT_MAX || val < INT_MIN)
2811 {
2812 if (hintmsg)
2813 *hintmsg = gettext_noop("Value exceeds integer range.");
2814 return false;
2815 }
2816
2817 if (result)
2818 *result = (int) val;
2819 return true;
2820}
#define gettext_noop(x)
Definition: c.h:1199
static bool convert_to_base_unit(double value, const char *unit, int base_unit, double *base_value)
Definition: guc.c:2546
static const char *const memory_units_hint
Definition: guc.c:120
static const char *const time_units_hint
Definition: guc.c:157

References convert_to_base_unit(), config_generic::flags, gettext_noop, GUC_UNIT, GUC_UNIT_MEMORY, memory_units_hint, time_units_hint, val, and value.

Referenced by apply_server_options(), apply_table_options(), ExecVacuum(), get_batch_size_option(), parse_and_validate_value(), parse_one_reloption(), postgres_fdw_validator(), and postgresAcquireSampleRowsFunc().

◆ parse_real()

bool parse_real ( const char *  value,
double *  result,
int  flags,
const char **  hintmsg 
)

Definition at line 2833 of file guc.c.

2834{
2835 double val;
2836 char *endptr;
2837
2838 /* To suppress compiler warnings, always set output params */
2839 if (result)
2840 *result = 0;
2841 if (hintmsg)
2842 *hintmsg = NULL;
2843
2844 errno = 0;
2845 val = strtod(value, &endptr);
2846
2847 if (endptr == value || errno == ERANGE)
2848 return false; /* no HINT for these cases */
2849
2850 /* reject NaN (infinities will fail range checks later) */
2851 if (isnan(val))
2852 return false; /* treat same as syntax error; no HINT */
2853
2854 /* allow whitespace between number and unit */
2855 while (isspace((unsigned char) *endptr))
2856 endptr++;
2857
2858 /* Handle possible unit */
2859 if (*endptr != '\0')
2860 {
2861 if ((flags & GUC_UNIT) == 0)
2862 return false; /* this setting does not accept a unit */
2863
2865 endptr, (flags & GUC_UNIT),
2866 &val))
2867 {
2868 /* invalid unit, or garbage after the unit; set hint and fail. */
2869 if (hintmsg)
2870 {
2871 if (flags & GUC_UNIT_MEMORY)
2872 *hintmsg = memory_units_hint;
2873 else
2874 *hintmsg = time_units_hint;
2875 }
2876 return false;
2877 }
2878 }
2879
2880 if (result)
2881 *result = val;
2882 return true;
2883}

References convert_to_base_unit(), config_generic::flags, GUC_UNIT, GUC_UNIT_MEMORY, memory_units_hint, time_units_hint, val, and value.

Referenced by apply_server_options(), ExecWaitStmt(), parse_and_validate_value(), parse_one_reloption(), and postgres_fdw_validator().

◆ ParseLongOption()

void ParseLongOption ( const char *  string,
char **  name,
char **  value 
)

Definition at line 6194 of file guc.c.

6195{
6196 size_t equal_pos;
6197
6198 Assert(string);
6199 Assert(name);
6200 Assert(value);
6201
6202 equal_pos = strcspn(string, "=");
6203
6204 if (string[equal_pos] == '=')
6205 {
6206 *name = palloc(equal_pos + 1);
6207 strlcpy(*name, string, equal_pos + 1);
6208
6209 *value = pstrdup(&string[equal_pos + 1]);
6210 }
6211 else
6212 {
6213 /* no equal sign in string */
6214 *name = pstrdup(string);
6215 *value = NULL;
6216 }
6217
6218 for (char *cp = *name; *cp; cp++)
6219 if (*cp == '-')
6220 *cp = '_';
6221}
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45

References Assert(), name, palloc(), pstrdup(), strlcpy(), and value.

Referenced by BootstrapModeMain(), PostmasterMain(), process_postgres_switches(), and TransformGUCArray().

◆ pg_timezone_abbrev_initialize()

static void pg_timezone_abbrev_initialize ( void  )
static

Definition at line 1867 of file guc.c.

1868{
1869 SetConfigOption("timezone_abbreviations", "Default",
1871}

References PGC_POSTMASTER, PGC_S_DYNAMIC_DEFAULT, and SetConfigOption().

Referenced by ProcessConfigFileInternal(), and SelectConfigFiles().

◆ ProcessConfigFileInternal()

ConfigVariable * ProcessConfigFileInternal ( GucContext  context,
bool  applySettings,
int  elevel 
)

Definition at line 284 of file guc.c.

285{
286 bool error = false;
287 bool applying = false;
288 const char *ConfFileWithError;
289 ConfigVariable *head,
290 *tail;
291 HASH_SEQ_STATUS status;
292 GUCHashEntry *hentry;
293
294 /* Parse the main config file into a list of option names and values */
295 ConfFileWithError = ConfigFileName;
296 head = tail = NULL;
297
299 NULL, 0, CONF_FILE_START_DEPTH, elevel,
300 &head, &tail))
301 {
302 /* Syntax error(s) detected in the file, so bail out */
303 error = true;
304 goto bail_out;
305 }
306
307 /*
308 * Parse the PG_AUTOCONF_FILENAME file, if present, after the main file to
309 * replace any parameters set by ALTER SYSTEM command. Because this file
310 * is in the data directory, we can't read it until the DataDir has been
311 * set.
312 */
313 if (DataDir)
314 {
316 NULL, 0, CONF_FILE_START_DEPTH, elevel,
317 &head, &tail))
318 {
319 /* Syntax error(s) detected in the file, so bail out */
320 error = true;
321 ConfFileWithError = PG_AUTOCONF_FILENAME;
322 goto bail_out;
323 }
324 }
325 else
326 {
327 /*
328 * If DataDir is not set, the PG_AUTOCONF_FILENAME file cannot be
329 * read. In this case, we don't want to accept any settings but
330 * data_directory from postgresql.conf, because they might be
331 * overwritten with settings in the PG_AUTOCONF_FILENAME file which
332 * will be read later. OTOH, since data_directory isn't allowed in the
333 * PG_AUTOCONF_FILENAME file, it will never be overwritten later.
334 */
335 ConfigVariable *newlist = NULL;
336
337 /*
338 * Prune all items except the last "data_directory" from the list.
339 */
340 for (ConfigVariable *item = head; item; item = item->next)
341 {
342 if (!item->ignore &&
343 strcmp(item->name, "data_directory") == 0)
344 newlist = item;
345 }
346
347 if (newlist)
348 newlist->next = NULL;
349 head = tail = newlist;
350
351 /*
352 * Quick exit if data_directory is not present in file.
353 *
354 * We need not do any further processing, in particular we don't set
355 * PgReloadTime; that will be set soon by subsequent full loading of
356 * the config file.
357 */
358 if (head == NULL)
359 goto bail_out;
360 }
361
362 /*
363 * Mark all extant GUC variables as not present in the config file. We
364 * need this so that we can tell below which ones have been removed from
365 * the file since we last processed it.
366 */
367 hash_seq_init(&status, guc_hashtab);
368 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
369 {
370 struct config_generic *gconf = hentry->gucvar;
371
372 gconf->status &= ~GUC_IS_IN_FILE;
373 }
374
375 /*
376 * Check if all the supplied option names are valid, as an additional
377 * quasi-syntactic check on the validity of the config file. It is
378 * important that the postmaster and all backends agree on the results of
379 * this phase, else we will have strange inconsistencies about which
380 * processes accept a config file update and which don't. Hence, unknown
381 * custom variable names have to be accepted without complaint. For the
382 * same reason, we don't attempt to validate the options' values here.
383 *
384 * In addition, the GUC_IS_IN_FILE flag is set on each existing GUC
385 * variable mentioned in the file; and we detect duplicate entries in the
386 * file and mark the earlier occurrences as ignorable.
387 */
388 for (ConfigVariable *item = head; item; item = item->next)
389 {
390 struct config_generic *record;
391
392 /* Ignore anything already marked as ignorable */
393 if (item->ignore)
394 continue;
395
396 /*
397 * Try to find the variable; but do not create a custom placeholder if
398 * it's not there already.
399 */
400 record = find_option(item->name, false, true, elevel);
401
402 if (record)
403 {
404 /* If it's already marked, then this is a duplicate entry */
405 if (record->status & GUC_IS_IN_FILE)
406 {
407 /*
408 * Mark the earlier occurrence(s) as dead/ignorable. We could
409 * avoid the O(N^2) behavior here with some additional state,
410 * but it seems unlikely to be worth the trouble.
411 */
412 for (ConfigVariable *pitem = head; pitem != item; pitem = pitem->next)
413 {
414 if (!pitem->ignore &&
415 strcmp(pitem->name, item->name) == 0)
416 pitem->ignore = true;
417 }
418 }
419 /* Now mark it as present in file */
420 record->status |= GUC_IS_IN_FILE;
421 }
422 else if (!valid_custom_variable_name(item->name))
423 {
424 /* Invalid non-custom variable, so complain */
425 ereport(elevel,
426 (errcode(ERRCODE_UNDEFINED_OBJECT),
427 errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %d",
428 item->name,
429 item->filename, item->sourceline)));
430 item->errmsg = pstrdup("unrecognized configuration parameter");
431 error = true;
432 ConfFileWithError = item->filename;
433 }
434 }
435
436 /*
437 * If we've detected any errors so far, we don't want to risk applying any
438 * changes.
439 */
440 if (error)
441 goto bail_out;
442
443 /* Otherwise, set flag that we're beginning to apply changes */
444 applying = true;
445
446 /*
447 * Check for variables having been removed from the config file, and
448 * revert their reset values (and perhaps also effective values) to the
449 * boot-time defaults. If such a variable can't be changed after startup,
450 * report that and continue.
451 */
453 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
454 {
455 struct config_generic *gconf = hentry->gucvar;
456
457 if (gconf->reset_source != PGC_S_FILE ||
458 (gconf->status & GUC_IS_IN_FILE))
459 continue;
460 if (gconf->context < PGC_SIGHUP)
461 {
462 /* The removal can't be effective without a restart */
463 gconf->status |= GUC_PENDING_RESTART;
464 ereport(elevel,
465 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
466 errmsg("parameter \"%s\" cannot be changed without restarting the server",
467 gconf->name)));
468 record_config_file_error(psprintf("parameter \"%s\" cannot be changed without restarting the server",
469 gconf->name),
470 NULL, 0,
471 &head, &tail);
472 error = true;
473 continue;
474 }
475
476 /* No more to do if we're just doing show_all_file_settings() */
477 if (!applySettings)
478 continue;
479
480 /*
481 * Reset any "file" sources to "default", else set_config_option will
482 * not override those settings.
483 */
484 if (gconf->reset_source == PGC_S_FILE)
486 if (gconf->source == PGC_S_FILE)
488 for (GucStack *stack = gconf->stack; stack; stack = stack->prev)
489 {
490 if (stack->source == PGC_S_FILE)
492 }
493
494 /* Now we can re-apply the wired-in default (i.e., the boot_val) */
495 if (set_config_option(gconf->name, NULL,
497 GUC_ACTION_SET, true, 0, false) > 0)
498 {
499 /* Log the change if appropriate */
500 if (context == PGC_SIGHUP)
501 ereport(elevel,
502 (errmsg("parameter \"%s\" removed from configuration file, reset to default",
503 gconf->name)));
504 }
505 }
506
507 /*
508 * Restore any variables determined by environment variables or
509 * dynamically-computed defaults. This is a no-op except in the case
510 * where one of these had been in the config file and is now removed.
511 *
512 * In particular, we *must not* do this during the postmaster's initial
513 * loading of the file, since the timezone functions in particular should
514 * be run only after initialization is complete.
515 *
516 * XXX this is an unmaintainable crock, because we have to know how to set
517 * (or at least what to call to set) every non-PGC_INTERNAL variable that
518 * could potentially have PGC_S_DYNAMIC_DEFAULT or PGC_S_ENV_VAR source.
519 */
520 if (context == PGC_SIGHUP && applySettings)
521 {
524 /* this selects SQL_ASCII in processes not connected to a database */
525 SetConfigOption("client_encoding", GetDatabaseEncodingName(),
527 }
528
529 /*
530 * Now apply the values from the config file.
531 */
532 for (ConfigVariable *item = head; item; item = item->next)
533 {
534 char *pre_value = NULL;
535 int scres;
536
537 /* Ignore anything marked as ignorable */
538 if (item->ignore)
539 continue;
540
541 /* In SIGHUP cases in the postmaster, we want to report changes */
542 if (context == PGC_SIGHUP && applySettings && !IsUnderPostmaster)
543 {
544 const char *preval = GetConfigOption(item->name, true, false);
545
546 /* If option doesn't exist yet or is NULL, treat as empty string */
547 if (!preval)
548 preval = "";
549 /* must dup, else might have dangling pointer below */
550 pre_value = pstrdup(preval);
551 }
552
553 scres = set_config_option(item->name, item->value,
555 GUC_ACTION_SET, applySettings, 0, false);
556 if (scres > 0)
557 {
558 /* variable was updated, so log the change if appropriate */
559 if (pre_value)
560 {
561 const char *post_value = GetConfigOption(item->name, true, false);
562
563 if (!post_value)
564 post_value = "";
565 if (strcmp(pre_value, post_value) != 0)
566 ereport(elevel,
567 (errmsg("parameter \"%s\" changed to \"%s\"",
568 item->name, item->value)));
569 }
570 item->applied = true;
571 }
572 else if (scres == 0)
573 {
574 error = true;
575 item->errmsg = pstrdup("setting could not be applied");
576 ConfFileWithError = item->filename;
577 }
578 else
579 {
580 /* no error, but variable's active value was not changed */
581 item->applied = true;
582 }
583
584 /*
585 * We should update source location unless there was an error, since
586 * even if the active value didn't change, the reset value might have.
587 * (In the postmaster, there won't be a difference, but it does matter
588 * in backends.)
589 */
590 if (scres != 0 && applySettings)
591 set_config_sourcefile(item->name, item->filename,
592 item->sourceline);
593
594 if (pre_value)
595 pfree(pre_value);
596 }
597
598 /* Remember when we last successfully loaded the config file. */
599 if (applySettings)
601
603 if (error && applySettings)
604 {
605 /* During postmaster startup, any error is fatal */
606 if (context == PGC_POSTMASTER)
608 (errcode(ERRCODE_CONFIG_FILE_ERROR),
609 errmsg("configuration file \"%s\" contains errors",
610 ConfFileWithError)));
611 else if (applying)
612 ereport(elevel,
613 (errcode(ERRCODE_CONFIG_FILE_ERROR),
614 errmsg("configuration file \"%s\" contains errors; unaffected changes were applied",
615 ConfFileWithError)));
616 else
617 ereport(elevel,
618 (errcode(ERRCODE_CONFIG_FILE_ERROR),
619 errmsg("configuration file \"%s\" contains errors; no changes were applied",
620 ConfFileWithError)));
621 }
622
623 /* Successful or otherwise, return the collected data list */
624 return head;
625}
TimestampTz PgReloadTime
Definition: timestamp.c:57
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1645
bool IsUnderPostmaster
Definition: globals.c:120
char * DataDir
Definition: globals.c:71
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 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
const char * GetConfigOption(const char *name, bool missing_ok, bool restrict_privileged)
Definition: guc.c:4208
static void pg_timezone_abbrev_initialize(void)
Definition: guc.c:1867
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:3205
@ PGC_SIGHUP
Definition: guc.h:75
@ PGC_BACKEND
Definition: guc.h:77
char * ConfigFileName
Definition: guc_tables.c:556
#define GUC_IS_IN_FILE
Definition: guc_tables.h:294
#define GUC_PENDING_RESTART
Definition: guc_tables.h:299
const char * GetDatabaseEncodingName(void)
Definition: mbutils.c:1268
static void bail_out(bool noatexit, const char *fmt,...) pg_attribute_printf(2
Definition: pg_regress.c:255
static void error(void)
Definition: sql-dyntest.c:147
struct ConfigVariable * next
Definition: guc.h:148

References bail_out(), CONF_FILE_START_DEPTH, ConfigFileName, config_generic::context, DataDir, ereport, errcode(), errmsg(), ERROR, error(), find_option(), GetConfigOption(), GetCurrentTimestamp(), GetDatabaseEncodingName(), GUC_ACTION_SET, guc_hashtab, GUC_IS_IN_FILE, GUC_PENDING_RESTART, GUCHashEntry::gucvar, hash_seq_init(), hash_seq_search(), InitializeGUCOptionsFromEnvironment(), IsUnderPostmaster, config_generic::name, ConfigVariable::next, ParseConfigFile(), pfree(), PG_AUTOCONF_FILENAME, pg_timezone_abbrev_initialize(), PGC_BACKEND, PGC_POSTMASTER, PGC_S_DEFAULT, PGC_S_DYNAMIC_DEFAULT, PGC_S_FILE, PGC_SIGHUP, PgReloadTime, guc_stack::prev, psprintf(), pstrdup(), record_config_file_error(), config_generic::reset_source, set_config_option(), set_config_sourcefile(), set_guc_source(), SetConfigOption(), guc_stack::source, config_generic::source, config_generic::stack, config_generic::status, and valid_custom_variable_name().

Referenced by ProcessConfigFile(), and show_all_file_settings().

◆ ProcessGUCArray()

void ProcessGUCArray ( ArrayType array,
GucContext  context,
GucSource  source,
GucAction  action 
)

Definition at line 6285 of file guc.c.

6287{
6288 List *gucNames;
6289 List *gucValues;
6290 ListCell *lc1;
6291 ListCell *lc2;
6292
6293 TransformGUCArray(array, &gucNames, &gucValues);
6294 forboth(lc1, gucNames, lc2, gucValues)
6295 {
6296 char *name = lfirst(lc1);
6297 char *value = lfirst(lc2);
6298
6300 context, source,
6301 action, true, 0, false);
6302
6303 pfree(name);
6304 pfree(value);
6305 }
6306
6307 list_free(gucNames);
6308 list_free(gucValues);
6309}
void TransformGUCArray(ArrayType *array, List **names, List **values)
Definition: guc.c:6230
void list_free(List *list)
Definition: list.c:1546
#define forboth(cell1, list1, cell2, list2)
Definition: pg_list.h:518
Definition: pg_list.h:54

References generate_unaccent_rules::action, forboth, lfirst, list_free(), name, pfree(), set_config_option(), source, TransformGUCArray(), and value.

Referenced by ApplySetting(), and ProcedureCreate().

◆ push_old_value()

static void push_old_value ( struct config_generic gconf,
GucAction  action 
)
static

Definition at line 2009 of file guc.c.

2010{
2011 GucStack *stack;
2012
2013 /* If we're not inside a nest level, do nothing */
2014 if (GUCNestLevel == 0)
2015 return;
2016
2017 /* Do we already have a stack entry of the current nest level? */
2018 stack = gconf->stack;
2019 if (stack && stack->nest_level >= GUCNestLevel)
2020 {
2021 /* Yes, so adjust its state if necessary */
2022 Assert(stack->nest_level == GUCNestLevel);
2023 switch (action)
2024 {
2025 case GUC_ACTION_SET:
2026 /* SET overrides any prior action at same nest level */
2027 if (stack->state == GUC_SET_LOCAL)
2028 {
2029 /* must discard old masked value */
2030 discard_stack_value(gconf, &stack->masked);
2031 }
2032 stack->state = GUC_SET;
2033 break;
2034 case GUC_ACTION_LOCAL:
2035 if (stack->state == GUC_SET)
2036 {
2037 /* SET followed by SET LOCAL, remember SET's value */
2038 stack->masked_scontext = gconf->scontext;
2039 stack->masked_srole = gconf->srole;
2040 set_stack_value(gconf, &stack->masked);
2041 stack->state = GUC_SET_LOCAL;
2042 }
2043 /* in all other cases, no change to stack entry */
2044 break;
2045 case GUC_ACTION_SAVE:
2046 /* Could only have a prior SAVE of same variable */
2047 Assert(stack->state == GUC_SAVE);
2048 break;
2049 }
2050 return;
2051 }
2052
2053 /*
2054 * Push a new stack entry
2055 *
2056 * We keep all the stack entries in TopTransactionContext for simplicity.
2057 */
2059 sizeof(GucStack));
2060
2061 stack->prev = gconf->stack;
2062 stack->nest_level = GUCNestLevel;
2063 switch (action)
2064 {
2065 case GUC_ACTION_SET:
2066 stack->state = GUC_SET;
2067 break;
2068 case GUC_ACTION_LOCAL:
2069 stack->state = GUC_LOCAL;
2070 break;
2071 case GUC_ACTION_SAVE:
2072 stack->state = GUC_SAVE;
2073 break;
2074 }
2075 stack->source = gconf->source;
2076 stack->scontext = gconf->scontext;
2077 stack->srole = gconf->srole;
2078 set_stack_value(gconf, &stack->prior);
2079
2080 if (gconf->stack == NULL)
2082 gconf->stack = stack;
2083}
static void set_stack_value(struct config_generic *gconf, config_var_value *val)
Definition: guc.c:785
@ GUC_ACTION_SAVE
Definition: guc.h:205
@ GUC_ACTION_LOCAL
Definition: guc.h:204
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1263
MemoryContext TopTransactionContext
Definition: mcxt.c:171

References generate_unaccent_rules::action, Assert(), discard_stack_value(), GUC_ACTION_LOCAL, GUC_ACTION_SAVE, GUC_ACTION_SET, GUC_LOCAL, GUC_SAVE, GUC_SET, GUC_SET_LOCAL, guc_stack_list, GUCNestLevel, guc_stack::masked, guc_stack::masked_scontext, guc_stack::masked_srole, MemoryContextAllocZero(), guc_stack::nest_level, guc_stack::prev, guc_stack::prior, guc_stack::scontext, config_generic::scontext, set_stack_value(), slist_push_head(), guc_stack::source, config_generic::source, guc_stack::srole, config_generic::srole, config_generic::stack, config_generic::stack_link, guc_stack::state, and TopTransactionContext.

Referenced by ResetAllOptions(), and set_config_with_handle().

◆ read_gucstate()

static char * read_gucstate ( char **  srcptr,
char *  srcend 
)
static

Definition at line 5992 of file guc.c.

5993{
5994 char *retptr = *srcptr;
5995 char *ptr;
5996
5997 if (*srcptr >= srcend)
5998 elog(ERROR, "incomplete GUC state");
5999
6000 /* The string variables are all null terminated */
6001 for (ptr = *srcptr; ptr < srcend && *ptr != '\0'; ptr++)
6002 ;
6003
6004 if (ptr >= srcend)
6005 elog(ERROR, "could not find null terminator in GUC state");
6006
6007 /* Set the new position to the byte following the terminating NUL */
6008 *srcptr = ptr + 1;
6009
6010 return retptr;
6011}

References elog, and ERROR.

Referenced by RestoreGUCState().

◆ read_gucstate_binary()

static void read_gucstate_binary ( char **  srcptr,
char *  srcend,
void *  dest,
Size  size 
)
static

Definition at line 6015 of file guc.c.

6016{
6017 if (*srcptr + size > srcend)
6018 elog(ERROR, "incomplete GUC state");
6019
6020 memcpy(dest, *srcptr, size);
6021 *srcptr += size;
6022}

References generate_unaccent_rules::dest, elog, and ERROR.

Referenced by RestoreGUCState().

◆ reapply_stacked_values()

static void reapply_stacked_values ( struct config_generic variable,
struct config_generic pHolder,
GucStack stack,
const char *  curvalue,
GucContext  curscontext,
GucSource  cursource,
Oid  cursrole 
)
static

Definition at line 4889 of file guc.c.

4895{
4896 const char *name = variable->name;
4897 GucStack *oldvarstack = variable->stack;
4898
4899 if (stack != NULL)
4900 {
4901 /* First, recurse, so that stack items are processed bottom to top */
4902 reapply_stacked_values(variable, pHolder, stack->prev,
4903 stack->prior.val.stringval,
4904 stack->scontext, stack->source, stack->srole);
4905
4906 /* See how to apply the passed-in value */
4907 switch (stack->state)
4908 {
4909 case GUC_SAVE:
4910 (void) set_config_option_ext(name, curvalue,
4911 curscontext, cursource, cursrole,
4912 GUC_ACTION_SAVE, true,
4913 WARNING, false);
4914 break;
4915
4916 case GUC_SET:
4917 (void) set_config_option_ext(name, curvalue,
4918 curscontext, cursource, cursrole,
4919 GUC_ACTION_SET, true,
4920 WARNING, false);
4921 break;
4922
4923 case GUC_LOCAL:
4924 (void) set_config_option_ext(name, curvalue,
4925 curscontext, cursource, cursrole,
4926 GUC_ACTION_LOCAL, true,
4927 WARNING, false);
4928 break;
4929
4930 case GUC_SET_LOCAL:
4931 /* first, apply the masked value as SET */
4933 stack->masked_scontext,
4935 stack->masked_srole,
4936 GUC_ACTION_SET, true,
4937 WARNING, false);
4938 /* then apply the current value as LOCAL */
4939 (void) set_config_option_ext(name, curvalue,
4940 curscontext, cursource, cursrole,
4941 GUC_ACTION_LOCAL, true,
4942 WARNING, false);
4943 break;
4944 }
4945
4946 /* If we successfully made a stack entry, adjust its nest level */
4947 if (variable->stack != oldvarstack)
4948 variable->stack->nest_level = stack->nest_level;
4949 }
4950 else
4951 {
4952 /*
4953 * We are at the end of the stack. If the active/previous value is
4954 * different from the reset value, it must represent a previously
4955 * committed session value. Apply it, and then drop the stack entry
4956 * that set_config_option will have created under the impression that
4957 * this is to be just a transactional assignment. (We leak the stack
4958 * entry.)
4959 */
4960 if (curvalue != pHolder->_string.reset_val ||
4961 curscontext != pHolder->reset_scontext ||
4962 cursource != pHolder->reset_source ||
4963 cursrole != pHolder->reset_srole)
4964 {
4965 (void) set_config_option_ext(name, curvalue,
4966 curscontext, cursource, cursrole,
4967 GUC_ACTION_SET, true, WARNING, false);
4968 if (variable->stack != NULL)
4969 {
4970 slist_delete(&guc_stack_list, &variable->stack_link);
4971 variable->stack = NULL;
4972 }
4973 }
4974 }
4975}
void slist_delete(slist_head *head, const slist_node *node)
Definition: ilist.c:31

References config_generic::_string, GUC_ACTION_LOCAL, GUC_ACTION_SAVE, GUC_ACTION_SET, GUC_LOCAL, GUC_SAVE, GUC_SET, GUC_SET_LOCAL, guc_stack_list, guc_stack::masked, guc_stack::masked_scontext, guc_stack::masked_srole, name, variable::name, guc_stack::nest_level, PGC_S_SESSION, guc_stack::prev, guc_stack::prior, reapply_stacked_values(), config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_string::reset_val, guc_stack::scontext, set_config_option_ext(), slist_delete(), guc_stack::source, guc_stack::srole, config_generic::stack, guc_stack::state, config_var_val::stringval, config_var_value::val, and WARNING.

Referenced by define_custom_variable(), and reapply_stacked_values().

◆ RemoveGUCFromLists()

static void RemoveGUCFromLists ( struct config_generic gconf)
static

◆ replace_auto_config_value()

static void replace_auto_config_value ( ConfigVariable **  head_p,
ConfigVariable **  tail_p,
const char *  name,
const char *  value 
)
static

Definition at line 4389 of file guc.c.

4391{
4392 ConfigVariable *newitem,
4393 *next,
4394 *prev = NULL;
4395
4396 /*
4397 * Remove any existing match(es) for "name". Normally there'd be at most
4398 * one, but if external tools have modified the config file, there could
4399 * be more.
4400 */
4401 for (ConfigVariable *item = *head_p; item != NULL; item = next)
4402 {
4403 next = item->next;
4404 if (guc_name_compare(item->name, name) == 0)
4405 {
4406 /* found a match, delete it */
4407 if (prev)
4408 prev->next = next;
4409 else
4410 *head_p = next;
4411 if (next == NULL)
4412 *tail_p = prev;
4413
4414 pfree(item->name);
4415 pfree(item->value);
4416 pfree(item->filename);
4417 pfree(item);
4418 }
4419 else
4420 prev = item;
4421 }
4422
4423 /* Done if we're trying to delete it */
4424 if (value == NULL)
4425 return;
4426
4427 /* OK, append a new entry */
4428 newitem = palloc_object(ConfigVariable);
4429 newitem->name = pstrdup(name);
4430 newitem->value = pstrdup(value);
4431 newitem->errmsg = NULL;
4432 newitem->filename = pstrdup(""); /* new item has no location */
4433 newitem->sourceline = 0;
4434 newitem->ignore = false;
4435 newitem->applied = false;
4436 newitem->next = NULL;
4437
4438 if (*head_p == NULL)
4439 *head_p = newitem;
4440 else
4441 (*tail_p)->next = newitem;
4442 *tail_p = newitem;
4443}
static int32 next
Definition: blutils.c:224
#define palloc_object(type)
Definition: fe_memutils.h:74
char * name
Definition: guc.h:141
bool ignore
Definition: guc.h:146
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

References ConfigVariable::applied, ConfigVariable::errmsg, ConfigVariable::filename, guc_name_compare(), ConfigVariable::ignore, name, ConfigVariable::name, next, ConfigVariable::next, palloc_object, pfree(), pstrdup(), ConfigVariable::sourceline, ConfigVariable::value, and value.

Referenced by AlterSystemSetConfigFile().

◆ ReportChangedGUCOptions()

void ReportChangedGUCOptions ( void  )

Definition at line 2471 of file guc.c.

2472{
2473 slist_mutable_iter iter;
2474
2475 /* Quick exit if not (yet) enabled */
2476 if (!reporting_enabled)
2477 return;
2478
2479 /*
2480 * Since in_hot_standby isn't actually changed by normal GUC actions, we
2481 * need a hack to check whether a new value needs to be reported to the
2482 * client. For speed, we rely on the assumption that it can never
2483 * transition from false to true.
2484 */
2486 SetConfigOption("in_hot_standby", "false",
2488
2489 /* Transmit new values of interesting variables */
2491 {
2492 struct config_generic *conf = slist_container(struct config_generic,
2493 report_link, iter.cur);
2494
2495 Assert((conf->flags & GUC_REPORT) && (conf->status & GUC_NEEDS_REPORT));
2496 ReportGUCOption(conf);
2497 conf->status &= ~GUC_NEEDS_REPORT;
2498 slist_delete_current(&iter);
2499 }
2500}
bool in_hot_standby_guc
Definition: guc_tables.c:640

References Assert(), slist_mutable_iter::cur, config_generic::flags, GUC_NEEDS_REPORT, GUC_REPORT, guc_report_list, in_hot_standby_guc, PGC_INTERNAL, PGC_S_OVERRIDE, RecoveryInProgress(), config_generic::report_link, ReportGUCOption(), reporting_enabled, SetConfigOption(), slist_container, slist_delete_current(), slist_foreach_modify, and config_generic::status.

Referenced by PostgresMain().

◆ ReportGUCOption()

static void ReportGUCOption ( struct config_generic record)
static

Definition at line 2509 of file guc.c.

2510{
2511 char *val = ShowGUCOption(record, false);
2512
2513 if (record->last_reported == NULL ||
2514 strcmp(val, record->last_reported) != 0)
2515 {
2516 StringInfoData msgbuf;
2517
2519 pq_sendstring(&msgbuf, record->name);
2520 pq_sendstring(&msgbuf, val);
2521 pq_endmessage(&msgbuf);
2522
2523 /*
2524 * We need a long-lifespan copy. If guc_strdup() fails due to OOM,
2525 * we'll set last_reported to NULL and thereby possibly make a
2526 * duplicate report later.
2527 */
2528 guc_free(record->last_reported);
2529 record->last_reported = guc_strdup(LOG, val);
2530 }
2531
2532 pfree(val);
2533}
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
#define PqMsg_ParameterStatus
Definition: protocol.h:51

References guc_free(), guc_strdup(), config_generic::last_reported, LOG, config_generic::name, pfree(), pq_beginmessage(), pq_endmessage(), pq_sendstring(), PqMsg_ParameterStatus, ShowGUCOption(), and val.

Referenced by BeginReportingGUCOptions(), and ReportChangedGUCOptions().

◆ ResetAllOptions()

void ResetAllOptions ( void  )

Definition at line 1878 of file guc.c.

1879{
1880 dlist_mutable_iter iter;
1881
1882 /* We need only consider GUCs not already at PGC_S_DEFAULT */
1884 {
1885 struct config_generic *gconf = dlist_container(struct config_generic,
1886 nondef_link, iter.cur);
1887
1888 /* Don't reset non-SET-able values */
1889 if (gconf->context != PGC_SUSET &&
1890 gconf->context != PGC_USERSET)
1891 continue;
1892 /* Don't reset if special exclusion from RESET ALL */
1893 if (gconf->flags & GUC_NO_RESET_ALL)
1894 continue;
1895 /* No need to reset if wasn't SET */
1896 if (gconf->source <= PGC_S_OVERRIDE)
1897 continue;
1898
1899 /* Save old value to support transaction abort */
1901
1902 switch (gconf->vartype)
1903 {
1904 case PGC_BOOL:
1905 {
1906 struct config_bool *conf = &gconf->_bool;
1907
1908 if (conf->assign_hook)
1909 conf->assign_hook(conf->reset_val,
1910 gconf->reset_extra);
1911 *conf->variable = conf->reset_val;
1912 set_extra_field(gconf, &gconf->extra,
1913 gconf->reset_extra);
1914 break;
1915 }
1916 case PGC_INT:
1917 {
1918 struct config_int *conf = &gconf->_int;
1919
1920 if (conf->assign_hook)
1921 conf->assign_hook(conf->reset_val,
1922 gconf->reset_extra);
1923 *conf->variable = conf->reset_val;
1924 set_extra_field(gconf, &gconf->extra,
1925 gconf->reset_extra);
1926 break;
1927 }
1928 case PGC_REAL:
1929 {
1930 struct config_real *conf = &gconf->_real;
1931
1932 if (conf->assign_hook)
1933 conf->assign_hook(conf->reset_val,
1934 gconf->reset_extra);
1935 *conf->variable = conf->reset_val;
1936 set_extra_field(gconf, &gconf->extra,
1937 gconf->reset_extra);
1938 break;
1939 }
1940 case PGC_STRING:
1941 {
1942 struct config_string *conf = &gconf->_string;
1943
1944 if (conf->assign_hook)
1945 conf->assign_hook(conf->reset_val,
1946 gconf->reset_extra);
1947 set_string_field(gconf, conf->variable, conf->reset_val);
1948 set_extra_field(gconf, &gconf->extra,
1949 gconf->reset_extra);
1950 break;
1951 }
1952 case PGC_ENUM:
1953 {
1954 struct config_enum *conf = &gconf->_enum;
1955
1956 if (conf->assign_hook)
1957 conf->assign_hook(conf->reset_val,
1958 gconf->reset_extra);
1959 *conf->variable = conf->reset_val;
1960 set_extra_field(gconf, &gconf->extra,
1961 gconf->reset_extra);
1962 break;
1963 }
1964 }
1965
1966 set_guc_source(gconf, gconf->reset_source);
1967 gconf->scontext = gconf->reset_scontext;
1968 gconf->srole = gconf->reset_srole;
1969
1970 if ((gconf->flags & GUC_REPORT) && !(gconf->status & GUC_NEEDS_REPORT))
1971 {
1972 gconf->status |= GUC_NEEDS_REPORT;
1974 }
1975 }
1976}
static void push_old_value(struct config_generic *gconf, GucAction action)
Definition: guc.c:2009
#define GUC_NO_RESET_ALL
Definition: guc.h:218
#define dlist_foreach_modify(iter, lhead)
Definition: ilist.h:640
dlist_node * cur
Definition: ilist.h:200

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, config_generic::context, dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, config_generic::extra, config_generic::flags, GUC_ACTION_SET, GUC_NEEDS_REPORT, GUC_NO_RESET_ALL, guc_nondef_list, GUC_REPORT, guc_report_list, config_generic::nondef_link, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_S_OVERRIDE, PGC_STRING, PGC_SUSET, PGC_USERSET, push_old_value(), config_generic::report_link, config_generic::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, config_generic::scontext, set_extra_field(), set_guc_source(), set_string_field(), slist_push_head(), config_generic::source, config_generic::srole, config_generic::status, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by DiscardAll(), and ExecSetVariableStmt().

◆ RestoreGUCState()

void RestoreGUCState ( void *  gucstate)

Definition at line 6051 of file guc.c.

6052{
6053 char *varname,
6054 *varvalue,
6055 *varsourcefile;
6056 int varsourceline;
6057 GucSource varsource;
6058 GucContext varscontext;
6059 Oid varsrole;
6060 char *srcptr = (char *) gucstate;
6061 char *srcend;
6062 Size len;
6063 dlist_mutable_iter iter;
6064 ErrorContextCallback error_context_callback;
6065
6066 /*
6067 * First, ensure that all potentially-shippable GUCs are reset to their
6068 * default values. We must not touch those GUCs that the leader will
6069 * never ship, while there is no need to touch those that are shippable
6070 * but already have their default values. Thus, this ends up being the
6071 * same test that SerializeGUCState uses, even though the sets of
6072 * variables involved may well be different since the leader's set of
6073 * variables-not-at-default-values can differ from the set that are
6074 * not-default in this freshly started worker.
6075 *
6076 * Once we have set all the potentially-shippable GUCs to default values,
6077 * restoring the GUCs that the leader sent (because they had non-default
6078 * values over there) leads us to exactly the set of GUC values that the
6079 * leader has. This is true even though the worker may have initially
6080 * absorbed postgresql.conf settings that the leader hasn't yet seen, or
6081 * ALTER USER/DATABASE SET settings that were established after the leader
6082 * started.
6083 *
6084 * Note that ensuring all the potential target GUCs are at PGC_S_DEFAULT
6085 * also ensures that set_config_option won't refuse to set them because of
6086 * source-priority comparisons.
6087 */
6089 {
6090 struct config_generic *gconf = dlist_container(struct config_generic,
6091 nondef_link, iter.cur);
6092
6093 /* Do nothing if non-shippable or if already at PGC_S_DEFAULT. */
6094 if (can_skip_gucvar(gconf))
6095 continue;
6096
6097 /*
6098 * We can use InitializeOneGUCOption to reset the GUC to default, but
6099 * first we must free any existing subsidiary data to avoid leaking
6100 * memory. The stack must be empty, but we have to clean up all other
6101 * fields. Beware that there might be duplicate value or "extra"
6102 * pointers. We also have to be sure to take it out of any lists it's
6103 * in.
6104 */
6105 Assert(gconf->stack == NULL);
6106 guc_free(gconf->extra);
6107 guc_free(gconf->last_reported);
6108 guc_free(gconf->sourcefile);
6109 switch (gconf->vartype)
6110 {
6111 case PGC_BOOL:
6112 case PGC_INT:
6113 case PGC_REAL:
6114 case PGC_ENUM:
6115 /* no need to do anything */
6116 break;
6117 case PGC_STRING:
6118 {
6119 struct config_string *conf = &gconf->_string;
6120
6121 guc_free(*conf->variable);
6122 if (conf->reset_val && conf->reset_val != *conf->variable)
6123 guc_free(conf->reset_val);
6124 break;
6125 }
6126 }
6127 if (gconf->reset_extra && gconf->reset_extra != gconf->extra)
6128 guc_free(gconf->reset_extra);
6129 /* Remove it from any lists it's in. */
6130 RemoveGUCFromLists(gconf);
6131 /* Now we can reset the struct to PGS_S_DEFAULT state. */
6133 }
6134
6135 /* First item is the length of the subsequent data */
6136 memcpy(&len, gucstate, sizeof(len));
6137
6138 srcptr += sizeof(len);
6139 srcend = srcptr + len;
6140
6141 /* If the GUC value check fails, we want errors to show useful context. */
6142 error_context_callback.callback = guc_restore_error_context_callback;
6143 error_context_callback.previous = error_context_stack;
6144 error_context_callback.arg = NULL;
6145 error_context_stack = &error_context_callback;
6146
6147 /* Restore all the listed GUCs. */
6148 while (srcptr < srcend)
6149 {
6150 int result;
6151 char *error_context_name_and_value[2];
6152
6153 varname = read_gucstate(&srcptr, srcend);
6154 varvalue = read_gucstate(&srcptr, srcend);
6155 varsourcefile = read_gucstate(&srcptr, srcend);
6156 if (varsourcefile[0])
6157 read_gucstate_binary(&srcptr, srcend,
6158 &varsourceline, sizeof(varsourceline));
6159 else
6160 varsourceline = 0;
6161 read_gucstate_binary(&srcptr, srcend,
6162 &varsource, sizeof(varsource));
6163 read_gucstate_binary(&srcptr, srcend,
6164 &varscontext, sizeof(varscontext));
6165 read_gucstate_binary(&srcptr, srcend,
6166 &varsrole, sizeof(varsrole));
6167
6168 error_context_name_and_value[0] = varname;
6169 error_context_name_and_value[1] = varvalue;
6170 error_context_callback.arg = &error_context_name_and_value[0];
6171 result = set_config_option_ext(varname, varvalue,
6172 varscontext, varsource, varsrole,
6173 GUC_ACTION_SET, true, ERROR, true);
6174 if (result <= 0)
6175 ereport(ERROR,
6176 (errcode(ERRCODE_INTERNAL_ERROR),
6177 errmsg("parameter \"%s\" could not be set", varname)));
6178 if (varsourcefile[0])
6179 set_config_sourcefile(varname, varsourcefile, varsourceline);
6180 error_context_callback.arg = NULL;
6181 }
6182
6183 error_context_stack = error_context_callback.previous;
6184}
ErrorContextCallback * error_context_stack
Definition: elog.c:95
static void guc_restore_error_context_callback(void *arg)
Definition: guc.c:6029
static void read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
Definition: guc.c:6015
static char * read_gucstate(char **srcptr, char *srcend)
Definition: guc.c:5992
struct ErrorContextCallback * previous
Definition: elog.h:297
void(* callback)(void *arg)
Definition: elog.h:298

References config_generic::_string, ErrorContextCallback::arg, Assert(), ErrorContextCallback::callback, can_skip_gucvar(), dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, ereport, errcode(), errmsg(), ERROR, error_context_stack, config_generic::extra, GUC_ACTION_SET, guc_free(), guc_nondef_list, guc_restore_error_context_callback(), InitializeOneGUCOption(), config_generic::last_reported, len, config_generic::nondef_link, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, ErrorContextCallback::previous, read_gucstate(), read_gucstate_binary(), RemoveGUCFromLists(), config_generic::reset_extra, config_string::reset_val, set_config_option_ext(), set_config_sourcefile(), config_generic::sourcefile, config_generic::stack, config_string::variable, and config_generic::vartype.

Referenced by ParallelWorkerMain().

◆ RestrictSearchPath()

◆ SelectConfigFiles()

bool SelectConfigFiles ( const char *  userDoption,
const char *  progname 
)

Definition at line 1655 of file guc.c.

1656{
1657 char *configdir;
1658 char *fname;
1659 bool fname_is_malloced;
1660 struct stat stat_buf;
1661 struct config_generic *data_directory_rec;
1662
1663 /* configdir is -D option, or $PGDATA if no -D */
1664 if (userDoption)
1665 configdir = make_absolute_path(userDoption);
1666 else
1667 configdir = make_absolute_path(getenv("PGDATA"));
1668
1669 if (configdir && stat(configdir, &stat_buf) != 0)
1670 {
1671 write_stderr("%s: could not access directory \"%s\": %m\n",
1672 progname,
1673 configdir);
1674 if (errno == ENOENT)
1675 write_stderr("Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n");
1676 goto fail;
1677 }
1678
1679 /*
1680 * Find the configuration file: if config_file was specified on the
1681 * command line, use it, else use configdir/postgresql.conf. In any case
1682 * ensure the result is an absolute path, so that it will be interpreted
1683 * the same way by future backends.
1684 */
1685 if (ConfigFileName)
1686 {
1688 fname_is_malloced = true;
1689 }
1690 else if (configdir)
1691 {
1692 fname = guc_malloc(FATAL,
1693 strlen(configdir) + strlen(CONFIG_FILENAME) + 2);
1694 sprintf(fname, "%s/%s", configdir, CONFIG_FILENAME);
1695 fname_is_malloced = false;
1696 }
1697 else
1698 {
1699 write_stderr("%s does not know where to find the server configuration file.\n"
1700 "You must specify the --config-file or -D invocation "
1701 "option or set the PGDATA environment variable.\n",
1702 progname);
1703 goto fail;
1704 }
1705
1706 /*
1707 * Set the ConfigFileName GUC variable to its final value, ensuring that
1708 * it can't be overridden later.
1709 */
1710 SetConfigOption("config_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1711
1712 if (fname_is_malloced)
1713 free(fname);
1714 else
1715 guc_free(fname);
1716
1717 /*
1718 * Now read the config file for the first time.
1719 */
1720 if (stat(ConfigFileName, &stat_buf) != 0)
1721 {
1722 write_stderr("%s: could not access the server configuration file \"%s\": %m\n",
1724 goto fail;
1725 }
1726
1727 /*
1728 * Read the configuration file for the first time. This time only the
1729 * data_directory parameter is picked up to determine the data directory,
1730 * so that we can read the PG_AUTOCONF_FILENAME file next time.
1731 */
1733
1734 /*
1735 * If the data_directory GUC variable has been set, use that as DataDir;
1736 * otherwise use configdir if set; else punt.
1737 *
1738 * Note: SetDataDir will copy and absolute-ize its argument, so we don't
1739 * have to.
1740 */
1741 data_directory_rec =
1742 find_option("data_directory", false, false, PANIC);
1743 if (*data_directory_rec->_string.variable)
1744 SetDataDir(*data_directory_rec->_string.variable);
1745 else if (configdir)
1746 SetDataDir(configdir);
1747 else
1748 {
1749 write_stderr("%s does not know where to find the database system data.\n"
1750 "This can be specified as \"data_directory\" in \"%s\", "
1751 "or by the -D invocation option, or by the "
1752 "PGDATA environment variable.\n",
1754 goto fail;
1755 }
1756
1757 /*
1758 * Reflect the final DataDir value back into the data_directory GUC var.
1759 * (If you are wondering why we don't just make them a single variable,
1760 * it's because the EXEC_BACKEND case needs DataDir to be transmitted to
1761 * child backends specially. XXX is that still true? Given that we now
1762 * chdir to DataDir, EXEC_BACKEND can read the config file without knowing
1763 * DataDir in advance.)
1764 */
1766
1767 /*
1768 * Now read the config file a second time, allowing any settings in the
1769 * PG_AUTOCONF_FILENAME file to take effect. (This is pretty ugly, but
1770 * since we have to determine the DataDir before we can find the autoconf
1771 * file, the alternatives seem worse.)
1772 */
1774
1775 /*
1776 * If timezone_abbreviations wasn't set in the configuration file, install
1777 * the default value. We do it this way because we can't safely install a
1778 * "real" value until my_exec_path is set, which may not have happened
1779 * when InitializeGUCOptions runs, so the bootstrap default value cannot
1780 * be the real desired default.
1781 */
1783
1784 /*
1785 * Figure out where pg_hba.conf is, and make sure the path is absolute.
1786 */
1787 if (HbaFileName)
1788 {
1790 fname_is_malloced = true;
1791 }
1792 else if (configdir)
1793 {
1794 fname = guc_malloc(FATAL,
1795 strlen(configdir) + strlen(HBA_FILENAME) + 2);
1796 sprintf(fname, "%s/%s", configdir, HBA_FILENAME);
1797 fname_is_malloced = false;
1798 }
1799 else
1800 {
1801 write_stderr("%s does not know where to find the \"hba\" configuration file.\n"
1802 "This can be specified as \"hba_file\" in \"%s\", "
1803 "or by the -D invocation option, or by the "
1804 "PGDATA environment variable.\n",
1806 goto fail;
1807 }
1808 SetConfigOption("hba_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1809
1810 if (fname_is_malloced)
1811 free(fname);
1812 else
1813 guc_free(fname);
1814
1815 /*
1816 * Likewise for pg_ident.conf.
1817 */
1818 if (IdentFileName)
1819 {
1821 fname_is_malloced = true;
1822 }
1823 else if (configdir)
1824 {
1825 fname = guc_malloc(FATAL,
1826 strlen(configdir) + strlen(IDENT_FILENAME) + 2);
1827 sprintf(fname, "%s/%s", configdir, IDENT_FILENAME);
1828 fname_is_malloced = false;
1829 }
1830 else
1831 {
1832 write_stderr("%s does not know where to find the \"ident\" configuration file.\n"
1833 "This can be specified as \"ident_file\" in \"%s\", "
1834 "or by the -D invocation option, or by the "
1835 "PGDATA environment variable.\n",
1837 goto fail;
1838 }
1839 SetConfigOption("ident_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1840
1841 if (fname_is_malloced)
1842 free(fname);
1843 else
1844 guc_free(fname);
1845
1846 free(configdir);
1847
1848 return true;
1849
1850fail:
1851 free(configdir);
1852
1853 return false;
1854}
#define write_stderr(str)
Definition: parallel.c:186
#define PANIC
Definition: elog.h:42
void ProcessConfigFile(GucContext context)
Definition: guc-file.l:120
#define IDENT_FILENAME
Definition: guc.c:58
#define HBA_FILENAME
Definition: guc.c:57
#define CONFIG_FILENAME
Definition: guc.c:56
char * HbaFileName
Definition: guc_tables.c:557
char * IdentFileName
Definition: guc_tables.c:558
#define free(a)
Definition: header.h:65
const char * progname
Definition: main.c:44
void SetDataDir(const char *dir)
Definition: miscinit.c:389
#define sprintf
Definition: port.h:241
char * make_absolute_path(const char *path)
Definition: path.c:807
static const char * userDoption
Definition: postgres.c:154

References config_generic::_string, CONFIG_FILENAME, ConfigFileName, DataDir, FATAL, find_option(), free, guc_free(), guc_malloc(), HBA_FILENAME, HbaFileName, IDENT_FILENAME, IdentFileName, make_absolute_path(), PANIC, pg_timezone_abbrev_initialize(), PGC_POSTMASTER, PGC_S_OVERRIDE, ProcessConfigFile(), progname, SetConfigOption(), SetDataDir(), sprintf, stat, userDoption, config_string::variable, and write_stderr.

Referenced by BootstrapModeMain(), PostgresSingleUserMain(), and PostmasterMain().

◆ serialize_variable()

static void serialize_variable ( char **  destptr,
Size maxbytes,
struct config_generic gconf 
)
static

Definition at line 5882 of file guc.c.

5884{
5885 /* Ignore skippable GUCs. */
5886 if (can_skip_gucvar(gconf))
5887 return;
5888
5889 do_serialize(destptr, maxbytes, "%s", gconf->name);
5890
5891 switch (gconf->vartype)
5892 {
5893 case PGC_BOOL:
5894 {
5895 struct config_bool *conf = &gconf->_bool;
5896
5897 do_serialize(destptr, maxbytes,
5898 (*conf->variable ? "true" : "false"));
5899 }
5900 break;
5901
5902 case PGC_INT:
5903 {
5904 struct config_int *conf = &gconf->_int;
5905
5906 do_serialize(destptr, maxbytes, "%d", *conf->variable);
5907 }
5908 break;
5909
5910 case PGC_REAL:
5911 {
5912 struct config_real *conf = &gconf->_real;
5913
5914 do_serialize(destptr, maxbytes, "%.*e",
5916 }
5917 break;
5918
5919 case PGC_STRING:
5920 {
5921 struct config_string *conf = &gconf->_string;
5922
5923 /* NULL becomes empty string, see estimate_variable_size() */
5924 do_serialize(destptr, maxbytes, "%s",
5925 *conf->variable ? *conf->variable : "");
5926 }
5927 break;
5928
5929 case PGC_ENUM:
5930 {
5931 struct config_enum *conf = &gconf->_enum;
5932
5933 do_serialize(destptr, maxbytes, "%s",
5934 config_enum_lookup_by_value(gconf, *conf->variable));
5935 }
5936 break;
5937 }
5938
5939 do_serialize(destptr, maxbytes, "%s",
5940 (gconf->sourcefile ? gconf->sourcefile : ""));
5941
5942 if (gconf->sourcefile && gconf->sourcefile[0])
5943 do_serialize_binary(destptr, maxbytes, &gconf->sourceline,
5944 sizeof(gconf->sourceline));
5945
5946 do_serialize_binary(destptr, maxbytes, &gconf->source,
5947 sizeof(gconf->source));
5948 do_serialize_binary(destptr, maxbytes, &gconf->scontext,
5949 sizeof(gconf->scontext));
5950 do_serialize_binary(destptr, maxbytes, &gconf->srole,
5951 sizeof(gconf->srole));
5952}
static void do_serialize(char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
Definition: guc.c:5837
static void do_serialize_binary(char **destptr, Size *maxbytes, void *val, Size valsize)
Definition: guc.c:5867

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, can_skip_gucvar(), config_enum_lookup_by_value(), do_serialize(), do_serialize_binary(), config_generic::name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, REALTYPE_PRECISION, config_generic::scontext, config_generic::source, config_generic::sourcefile, config_generic::sourceline, config_generic::srole, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by SerializeGUCState().

◆ SerializeGUCState()

void SerializeGUCState ( Size  maxsize,
char *  start_address 
)

Definition at line 5959 of file guc.c.

5960{
5961 char *curptr;
5962 Size actual_size;
5963 Size bytes_left;
5964 dlist_iter iter;
5965
5966 /* Reserve space for saving the actual size of the guc state */
5967 Assert(maxsize > sizeof(actual_size));
5968 curptr = start_address + sizeof(actual_size);
5969 bytes_left = maxsize - sizeof(actual_size);
5970
5971 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5973 {
5974 struct config_generic *gconf = dlist_container(struct config_generic,
5975 nondef_link, iter.cur);
5976
5977 serialize_variable(&curptr, &bytes_left, gconf);
5978 }
5979
5980 /* Store actual size without assuming alignment of start_address. */
5981 actual_size = maxsize - bytes_left - sizeof(actual_size);
5982 memcpy(start_address, &actual_size, sizeof(actual_size));
5983}
static void serialize_variable(char **destptr, Size *maxbytes, struct config_generic *gconf)
Definition: guc.c:5882

References Assert(), dlist_iter::cur, dlist_container, dlist_foreach, guc_nondef_list, config_generic::nondef_link, and serialize_variable().

Referenced by InitializeParallelDSM().

◆ set_config_option()

int set_config_option ( const char *  name,
const char *  value,
GucContext  context,
GucSource  source,
GucAction  action,
bool  changeVal,
int  elevel,
bool  is_reload 
)

Definition at line 3205 of file guc.c.

3209{
3210 Oid srole;
3211
3212 /*
3213 * Non-interactive sources should be treated as having all privileges,
3214 * except for PGC_S_CLIENT. Note in particular that this is true for
3215 * pg_db_role_setting sources (PGC_S_GLOBAL etc): we assume a suitable
3216 * privilege check was done when the pg_db_role_setting entry was made.
3217 */
3219 srole = GetUserId();
3220 else
3221 srole = BOOTSTRAP_SUPERUSERID;
3222
3223 return set_config_with_handle(name, NULL, value,
3224 context, source, srole,
3225 action, changeVal, elevel,
3226 is_reload);
3227}
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:3268
@ PGC_S_CLIENT
Definition: guc.h:122
@ PGC_S_INTERACTIVE
Definition: guc.h:124

References generate_unaccent_rules::action, GetUserId(), name, PGC_S_CLIENT, PGC_S_INTERACTIVE, set_config_with_handle(), source, and value.

Referenced by accept_weak_input(), applyRemoteGucs(), CreateSchemaCommand(), DefineIndex(), ExecSetVariableStmt(), execute_extension_script(), parse_subscription_options(), ProcessConfigFileInternal(), ProcessGUCArray(), RestrictSearchPath(), RI_Initial_Check(), RI_PartitionRemove_Check(), set_config_by_name(), set_transmission_modes(), SetConfigOption(), SetPGVariable(), and validate_option_array_item().

◆ set_config_option_ext()

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 at line 3245 of file guc.c.

3249{
3250 return set_config_with_handle(name, NULL, value,
3251 context, source, srole,
3252 action, changeVal, elevel,
3253 is_reload);
3254}

References generate_unaccent_rules::action, name, set_config_with_handle(), source, and value.

Referenced by define_custom_variable(), execute_extension_script(), InitializeWalConsistencyChecking(), reapply_stacked_values(), and RestoreGUCState().

◆ set_config_sourcefile()

static void set_config_sourcefile ( const char *  name,
char *  sourcefile,
int  sourceline 
)
static

Definition at line 4152 of file guc.c.

4153{
4154 struct config_generic *record;
4155 int elevel;
4156
4157 /*
4158 * To avoid cluttering the log, only the postmaster bleats loudly about
4159 * problems with the config file.
4160 */
4161 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4162
4163 record = find_option(name, true, false, elevel);
4164 /* should not happen */
4165 if (record == NULL)
4166 return;
4167
4168 sourcefile = guc_strdup(elevel, sourcefile);
4169 guc_free(record->sourcefile);
4170 record->sourcefile = sourcefile;
4171 record->sourceline = sourceline;
4172}
#define DEBUG3
Definition: elog.h:28

References DEBUG3, find_option(), guc_free(), guc_strdup(), IsUnderPostmaster, LOG, name, config_generic::sourcefile, and config_generic::sourceline.

Referenced by define_custom_variable(), ProcessConfigFileInternal(), and RestoreGUCState().

◆ set_config_with_handle()

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 at line 3268 of file guc.c.

3273{
3274 struct config_generic *record;
3275 union config_var_val newval_union;
3276 void *newextra = NULL;
3277 bool prohibitValueChange = false;
3278 bool makeDefault;
3279
3280 if (elevel == 0)
3281 {
3283 {
3284 /*
3285 * To avoid cluttering the log, only the postmaster bleats loudly
3286 * about problems with the config file.
3287 */
3288 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
3289 }
3290 else if (source == PGC_S_GLOBAL ||
3292 source == PGC_S_USER ||
3294 elevel = WARNING;
3295 else
3296 elevel = ERROR;
3297 }
3298
3299 /* if handle is specified, no need to look up option */
3300 if (!handle)
3301 {
3302 record = find_option(name, true, false, elevel);
3303 if (record == NULL)
3304 return 0;
3305 }
3306 else
3307 record = handle;
3308
3309 /*
3310 * GUC_ACTION_SAVE changes are acceptable during a parallel operation,
3311 * because the current worker will also pop the change. We're probably
3312 * dealing with a function having a proconfig entry. Only the function's
3313 * body should observe the change, and peer workers do not share in the
3314 * execution of a function call started by this worker.
3315 *
3316 * Also allow normal setting if the GUC is marked GUC_ALLOW_IN_PARALLEL.
3317 *
3318 * Other changes might need to affect other workers, so forbid them.
3319 */
3320 if (IsInParallelMode() && changeVal && action != GUC_ACTION_SAVE &&
3321 (record->flags & GUC_ALLOW_IN_PARALLEL) == 0)
3322 {
3323 ereport(elevel,
3324 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
3325 errmsg("parameter \"%s\" cannot be set during a parallel operation",
3326 record->name)));
3327 return 0;
3328 }
3329
3330 /*
3331 * Check if the option can be set at this time. See guc.h for the precise
3332 * rules.
3333 */
3334 switch (record->context)
3335 {
3336 case PGC_INTERNAL:
3337 if (context != PGC_INTERNAL)
3338 {
3339 ereport(elevel,
3340 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3341 errmsg("parameter \"%s\" cannot be changed",
3342 record->name)));
3343 return 0;
3344 }
3345 break;
3346 case PGC_POSTMASTER:
3347 if (context == PGC_SIGHUP)
3348 {
3349 /*
3350 * We are re-reading a PGC_POSTMASTER variable from
3351 * postgresql.conf. We can't change the setting, so we should
3352 * give a warning if the DBA tries to change it. However,
3353 * because of variant formats, canonicalization by check
3354 * hooks, etc, we can't just compare the given string directly
3355 * to what's stored. Set a flag to check below after we have
3356 * the final storable value.
3357 */
3358 prohibitValueChange = true;
3359 }
3360 else if (context != PGC_POSTMASTER)
3361 {
3362 ereport(elevel,
3363 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3364 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3365 record->name)));
3366 return 0;
3367 }
3368 break;
3369 case PGC_SIGHUP:
3370 if (context != PGC_SIGHUP && context != PGC_POSTMASTER)
3371 {
3372 ereport(elevel,
3373 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3374 errmsg("parameter \"%s\" cannot be changed now",
3375 record->name)));
3376 return 0;
3377 }
3378
3379 /*
3380 * Hmm, the idea of the SIGHUP context is "ought to be global, but
3381 * can be changed after postmaster start". But there's nothing
3382 * that prevents a crafty administrator from sending SIGHUP
3383 * signals to individual backends only.
3384 */
3385 break;
3386 case PGC_SU_BACKEND:
3387 if (context == PGC_BACKEND)
3388 {
3389 /*
3390 * Check whether the requesting user has been granted
3391 * privilege to set this GUC.
3392 */
3393 AclResult aclresult;
3394
3395 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3396 if (aclresult != ACLCHECK_OK)
3397 {
3398 /* No granted privilege */
3399 ereport(elevel,
3400 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3401 errmsg("permission denied to set parameter \"%s\"",
3402 record->name)));
3403 return 0;
3404 }
3405 }
3406 /* fall through to process the same as PGC_BACKEND */
3407 /* FALLTHROUGH */
3408 case PGC_BACKEND:
3409 if (context == PGC_SIGHUP)
3410 {
3411 /*
3412 * If a PGC_BACKEND or PGC_SU_BACKEND parameter is changed in
3413 * the config file, we want to accept the new value in the
3414 * postmaster (whence it will propagate to
3415 * subsequently-started backends), but ignore it in existing
3416 * backends. This is a tad klugy, but necessary because we
3417 * don't re-read the config file during backend start.
3418 *
3419 * However, if changeVal is false then plow ahead anyway since
3420 * we are trying to find out if the value is potentially good,
3421 * not actually use it.
3422 *
3423 * In EXEC_BACKEND builds, this works differently: we load all
3424 * non-default settings from the CONFIG_EXEC_PARAMS file
3425 * during backend start. In that case we must accept
3426 * PGC_SIGHUP settings, so as to have the same value as if
3427 * we'd forked from the postmaster. This can also happen when
3428 * using RestoreGUCState() within a background worker that
3429 * needs to have the same settings as the user backend that
3430 * started it. is_reload will be true when either situation
3431 * applies.
3432 */
3433 if (IsUnderPostmaster && changeVal && !is_reload)
3434 return -1;
3435 }
3436 else if (context != PGC_POSTMASTER &&
3437 context != PGC_BACKEND &&
3438 context != PGC_SU_BACKEND &&
3440 {
3441 ereport(elevel,
3442 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3443 errmsg("parameter \"%s\" cannot be set after connection start",
3444 record->name)));
3445 return 0;
3446 }
3447 break;
3448 case PGC_SUSET:
3449 if (context == PGC_USERSET || context == PGC_BACKEND)
3450 {
3451 /*
3452 * Check whether the requesting user has been granted
3453 * privilege to set this GUC.
3454 */
3455 AclResult aclresult;
3456
3457 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3458 if (aclresult != ACLCHECK_OK)
3459 {
3460 /* No granted privilege */
3461 ereport(elevel,
3462 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3463 errmsg("permission denied to set parameter \"%s\"",
3464 record->name)));
3465 return 0;
3466 }
3467 }
3468 break;
3469 case PGC_USERSET:
3470 /* always okay */
3471 break;
3472 }
3473
3474 /*
3475 * Disallow changing GUC_NOT_WHILE_SEC_REST values if we are inside a
3476 * security restriction context. We can reject this regardless of the GUC
3477 * context or source, mainly because sources that it might be reasonable
3478 * to override for won't be seen while inside a function.
3479 *
3480 * Note: variables marked GUC_NOT_WHILE_SEC_REST should usually be marked
3481 * GUC_NO_RESET_ALL as well, because ResetAllOptions() doesn't check this.
3482 * An exception might be made if the reset value is assumed to be "safe".
3483 *
3484 * Note: this flag is currently used for "session_authorization" and
3485 * "role". We need to prohibit changing these inside a local userid
3486 * context because when we exit it, GUC won't be notified, leaving things
3487 * out of sync. (This could be fixed by forcing a new GUC nesting level,
3488 * but that would change behavior in possibly-undesirable ways.) Also, we
3489 * prohibit changing these in a security-restricted operation because
3490 * otherwise RESET could be used to regain the session user's privileges.
3491 */
3492 if (record->flags & GUC_NOT_WHILE_SEC_REST)
3493 {
3494 if (InLocalUserIdChange())
3495 {
3496 /*
3497 * Phrasing of this error message is historical, but it's the most
3498 * common case.
3499 */
3500 ereport(elevel,
3501 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3502 errmsg("cannot set parameter \"%s\" within security-definer function",
3503 record->name)));
3504 return 0;
3505 }
3507 {
3508 ereport(elevel,
3509 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3510 errmsg("cannot set parameter \"%s\" within security-restricted operation",
3511 record->name)));
3512 return 0;
3513 }
3514 }
3515
3516 /* Disallow resetting and saving GUC_NO_RESET values */
3517 if (record->flags & GUC_NO_RESET)
3518 {
3519 if (value == NULL)
3520 {
3521 ereport(elevel,
3522 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3523 errmsg("parameter \"%s\" cannot be reset", record->name)));
3524 return 0;
3525 }
3526 if (action == GUC_ACTION_SAVE)
3527 {
3528 ereport(elevel,
3529 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3530 errmsg("parameter \"%s\" cannot be set locally in functions",
3531 record->name)));
3532 return 0;
3533 }
3534 }
3535
3536 /*
3537 * Should we set reset/stacked values? (If so, the behavior is not
3538 * transactional.) This is done either when we get a default value from
3539 * the database's/user's/client's default settings or when we reset a
3540 * value to its default.
3541 */
3542 makeDefault = changeVal && (source <= PGC_S_OVERRIDE) &&
3543 ((value != NULL) || source == PGC_S_DEFAULT);
3544
3545 /*
3546 * Ignore attempted set if overridden by previously processed setting.
3547 * However, if changeVal is false then plow ahead anyway since we are
3548 * trying to find out if the value is potentially good, not actually use
3549 * it. Also keep going if makeDefault is true, since we may want to set
3550 * the reset/stacked values even if we can't set the variable itself.
3551 */
3552 if (record->source > source)
3553 {
3554 if (changeVal && !makeDefault)
3555 {
3556 elog(DEBUG3, "\"%s\": setting ignored because previous source is higher priority",
3557 record->name);
3558 return -1;
3559 }
3560 changeVal = false;
3561 }
3562
3563 /*
3564 * Evaluate value and set variable.
3565 */
3566 switch (record->vartype)
3567 {
3568 case PGC_BOOL:
3569 {
3570 struct config_bool *conf = &record->_bool;
3571
3572#define newval (newval_union.boolval)
3573
3574 if (value)
3575 {
3576 if (!parse_and_validate_value(record, value,
3577 source, elevel,
3578 &newval_union, &newextra))
3579 return 0;
3580 }
3581 else if (source == PGC_S_DEFAULT)
3582 {
3583 newval = conf->boot_val;
3584 if (!call_bool_check_hook(record, &newval, &newextra,
3585 source, elevel))
3586 return 0;
3587 }
3588 else
3589 {
3590 newval = conf->reset_val;
3591 newextra = record->reset_extra;
3592 source = record->reset_source;
3593 context = record->reset_scontext;
3594 srole = record->reset_srole;
3595 }
3596
3597 if (prohibitValueChange)
3598 {
3599 /* Release newextra, unless it's reset_extra */
3600 if (newextra && !extra_field_used(record, newextra))
3601 guc_free(newextra);
3602
3603 if (*conf->variable != newval)
3604 {
3605 record->status |= GUC_PENDING_RESTART;
3606 ereport(elevel,
3607 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3608 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3609 record->name)));
3610 return 0;
3611 }
3612 record->status &= ~GUC_PENDING_RESTART;
3613 return -1;
3614 }
3615
3616 if (changeVal)
3617 {
3618 /* Save old value to support transaction abort */
3619 if (!makeDefault)
3620 push_old_value(record, action);
3621
3622 if (conf->assign_hook)
3623 conf->assign_hook(newval, newextra);
3624 *conf->variable = newval;
3625 set_extra_field(record, &record->extra,
3626 newextra);
3627 set_guc_source(record, source);
3628 record->scontext = context;
3629 record->srole = srole;
3630 }
3631 if (makeDefault)
3632 {
3633 if (record->reset_source <= source)
3634 {
3635 conf->reset_val = newval;
3636 set_extra_field(record, &record->reset_extra,
3637 newextra);
3638 record->reset_source = source;
3639 record->reset_scontext = context;
3640 record->reset_srole = srole;
3641 }
3642 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3643 {
3644 if (stack->source <= source)
3645 {
3646 stack->prior.val.boolval = newval;
3647 set_extra_field(record, &stack->prior.extra,
3648 newextra);
3649 stack->source = source;
3650 stack->scontext = context;
3651 stack->srole = srole;
3652 }
3653 }
3654 }
3655
3656 /* Perhaps we didn't install newextra anywhere */
3657 if (newextra && !extra_field_used(record, newextra))
3658 guc_free(newextra);
3659 break;
3660
3661#undef newval
3662 }
3663
3664 case PGC_INT:
3665 {
3666 struct config_int *conf = &record->_int;
3667
3668#define newval (newval_union.intval)
3669
3670 if (value)
3671 {
3672 if (!parse_and_validate_value(record, value,
3673 source, elevel,
3674 &newval_union, &newextra))
3675 return 0;
3676 }
3677 else if (source == PGC_S_DEFAULT)
3678 {
3679 newval = conf->boot_val;
3680 if (!call_int_check_hook(record, &newval, &newextra,
3681 source, elevel))
3682 return 0;
3683 }
3684 else
3685 {
3686 newval = conf->reset_val;
3687 newextra = record->reset_extra;
3688 source = record->reset_source;
3689 context = record->reset_scontext;
3690 srole = record->reset_srole;
3691 }
3692
3693 if (prohibitValueChange)
3694 {
3695 /* Release newextra, unless it's reset_extra */
3696 if (newextra && !extra_field_used(record, newextra))
3697 guc_free(newextra);
3698
3699 if (*conf->variable != newval)
3700 {
3701 record->status |= GUC_PENDING_RESTART;
3702 ereport(elevel,
3703 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3704 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3705 record->name)));
3706 return 0;
3707 }
3708 record->status &= ~GUC_PENDING_RESTART;
3709 return -1;
3710 }
3711
3712 if (changeVal)
3713 {
3714 /* Save old value to support transaction abort */
3715 if (!makeDefault)
3716 push_old_value(record, action);
3717
3718 if (conf->assign_hook)
3719 conf->assign_hook(newval, newextra);
3720 *conf->variable = newval;
3721 set_extra_field(record, &record->extra,
3722 newextra);
3723 set_guc_source(record, source);
3724 record->scontext = context;
3725 record->srole = srole;
3726 }
3727 if (makeDefault)
3728 {
3729 if (record->reset_source <= source)
3730 {
3731 conf->reset_val = newval;
3732 set_extra_field(record, &record->reset_extra,
3733 newextra);
3734 record->reset_source = source;
3735 record->reset_scontext = context;
3736 record->reset_srole = srole;
3737 }
3738 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3739 {
3740 if (stack->source <= source)
3741 {
3742 stack->prior.val.intval = newval;
3743 set_extra_field(record, &stack->prior.extra,
3744 newextra);
3745 stack->source = source;
3746 stack->scontext = context;
3747 stack->srole = srole;
3748 }
3749 }
3750 }
3751
3752 /* Perhaps we didn't install newextra anywhere */
3753 if (newextra && !extra_field_used(record, newextra))
3754 guc_free(newextra);
3755 break;
3756
3757#undef newval
3758 }
3759
3760 case PGC_REAL:
3761 {
3762 struct config_real *conf = &record->_real;
3763
3764#define newval (newval_union.realval)
3765
3766 if (value)
3767 {
3768 if (!parse_and_validate_value(record, value,
3769 source, elevel,
3770 &newval_union, &newextra))
3771 return 0;
3772 }
3773 else if (source == PGC_S_DEFAULT)
3774 {
3775 newval = conf->boot_val;
3776 if (!call_real_check_hook(record, &newval, &newextra,
3777 source, elevel))
3778 return 0;
3779 }
3780 else
3781 {
3782 newval = conf->reset_val;
3783 newextra = record->reset_extra;
3784 source = record->reset_source;
3785 context = record->reset_scontext;
3786 srole = record->reset_srole;
3787 }
3788
3789 if (prohibitValueChange)
3790 {
3791 /* Release newextra, unless it's reset_extra */
3792 if (newextra && !extra_field_used(record, newextra))
3793 guc_free(newextra);
3794
3795 if (*conf->variable != newval)
3796 {
3797 record->status |= GUC_PENDING_RESTART;
3798 ereport(elevel,
3799 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3800 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3801 record->name)));
3802 return 0;
3803 }
3804 record->status &= ~GUC_PENDING_RESTART;
3805 return -1;
3806 }
3807
3808 if (changeVal)
3809 {
3810 /* Save old value to support transaction abort */
3811 if (!makeDefault)
3812 push_old_value(record, action);
3813
3814 if (conf->assign_hook)
3815 conf->assign_hook(newval, newextra);
3816 *conf->variable = newval;
3817 set_extra_field(record, &record->extra,
3818 newextra);
3819 set_guc_source(record, source);
3820 record->scontext = context;
3821 record->srole = srole;
3822 }
3823 if (makeDefault)
3824 {
3825 if (record->reset_source <= source)
3826 {
3827 conf->reset_val = newval;
3828 set_extra_field(record, &record->reset_extra,
3829 newextra);
3830 record->reset_source = source;
3831 record->reset_scontext = context;
3832 record->reset_srole = srole;
3833 }
3834 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3835 {
3836 if (stack->source <= source)
3837 {
3838 stack->prior.val.realval = newval;
3839 set_extra_field(record, &stack->prior.extra,
3840 newextra);
3841 stack->source = source;
3842 stack->scontext = context;
3843 stack->srole = srole;
3844 }
3845 }
3846 }
3847
3848 /* Perhaps we didn't install newextra anywhere */
3849 if (newextra && !extra_field_used(record, newextra))
3850 guc_free(newextra);
3851 break;
3852
3853#undef newval
3854 }
3855
3856 case PGC_STRING:
3857 {
3858 struct config_string *conf = &record->_string;
3859 GucContext orig_context = context;
3860 GucSource orig_source = source;
3861 Oid orig_srole = srole;
3862
3863#define newval (newval_union.stringval)
3864
3865 if (value)
3866 {
3867 if (!parse_and_validate_value(record, value,
3868 source, elevel,
3869 &newval_union, &newextra))
3870 return 0;
3871 }
3872 else if (source == PGC_S_DEFAULT)
3873 {
3874 /* non-NULL boot_val must always get strdup'd */
3875 if (conf->boot_val != NULL)
3876 {
3877 newval = guc_strdup(elevel, conf->boot_val);
3878 if (newval == NULL)
3879 return 0;
3880 }
3881 else
3882 newval = NULL;
3883
3884 if (!call_string_check_hook(record, &newval, &newextra,
3885 source, elevel))
3886 {
3888 return 0;
3889 }
3890 }
3891 else
3892 {
3893 /*
3894 * strdup not needed, since reset_val is already under
3895 * guc.c's control
3896 */
3897 newval = conf->reset_val;
3898 newextra = record->reset_extra;
3899 source = record->reset_source;
3900 context = record->reset_scontext;
3901 srole = record->reset_srole;
3902 }
3903
3904 if (prohibitValueChange)
3905 {
3906 bool newval_different;
3907
3908 /* newval shouldn't be NULL, so we're a bit sloppy here */
3909 newval_different = (*conf->variable == NULL ||
3910 newval == NULL ||
3911 strcmp(*conf->variable, newval) != 0);
3912
3913 /* Release newval, unless it's reset_val */
3914 if (newval && !string_field_used(record, newval))
3916 /* Release newextra, unless it's reset_extra */
3917 if (newextra && !extra_field_used(record, newextra))
3918 guc_free(newextra);
3919
3920 if (newval_different)
3921 {
3922 record->status |= GUC_PENDING_RESTART;
3923 ereport(elevel,
3924 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3925 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3926 record->name)));
3927 return 0;
3928 }
3929 record->status &= ~GUC_PENDING_RESTART;
3930 return -1;
3931 }
3932
3933 if (changeVal)
3934 {
3935 /* Save old value to support transaction abort */
3936 if (!makeDefault)
3937 push_old_value(record, action);
3938
3939 if (conf->assign_hook)
3940 conf->assign_hook(newval, newextra);
3941 set_string_field(record, conf->variable, newval);
3942 set_extra_field(record, &record->extra,
3943 newextra);
3944 set_guc_source(record, source);
3945 record->scontext = context;
3946 record->srole = srole;
3947
3948 /*
3949 * Ugly hack: during SET session_authorization, forcibly
3950 * do SET ROLE NONE with the same context/source/etc, so
3951 * that the effects will have identical lifespan. This is
3952 * required by the SQL spec, and it's not possible to do
3953 * it within the variable's check hook or assign hook
3954 * because our APIs for those don't pass enough info.
3955 * However, don't do it if is_reload: in that case we
3956 * expect that if "role" isn't supposed to be default, it
3957 * has been or will be set by a separate reload action.
3958 *
3959 * Also, for the call from InitializeSessionUserId with
3960 * source == PGC_S_OVERRIDE, use PGC_S_DYNAMIC_DEFAULT for
3961 * "role"'s source, so that it's still possible to set
3962 * "role" from pg_db_role_setting entries. (See notes in
3963 * InitializeSessionUserId before changing this.)
3964 *
3965 * A fine point: for RESET session_authorization, we do
3966 * "RESET role" not "SET ROLE NONE" (by passing down NULL
3967 * rather than "none" for the value). This would have the
3968 * same effects in typical cases, but if the reset value
3969 * of "role" is not "none" it seems better to revert to
3970 * that.
3971 */
3972 if (!is_reload &&
3973 strcmp(record->name, "session_authorization") == 0)
3974 (void) set_config_with_handle("role", NULL,
3975 value ? "none" : NULL,
3976 orig_context,
3977 (orig_source == PGC_S_OVERRIDE)
3979 : orig_source,
3980 orig_srole,
3981 action,
3982 true,
3983 elevel,
3984 false);
3985 }
3986
3987 if (makeDefault)
3988 {
3989 if (record->reset_source <= source)
3990 {
3991 set_string_field(record, &conf->reset_val, newval);
3992 set_extra_field(record, &record->reset_extra,
3993 newextra);
3994 record->reset_source = source;
3995 record->reset_scontext = context;
3996 record->reset_srole = srole;
3997 }
3998 for (GucStack *stack = record->stack; stack; stack = stack->prev)
3999 {
4000 if (stack->source <= source)
4001 {
4002 set_string_field(record, &stack->prior.val.stringval,
4003 newval);
4004 set_extra_field(record, &stack->prior.extra,
4005 newextra);
4006 stack->source = source;
4007 stack->scontext = context;
4008 stack->srole = srole;
4009 }
4010 }
4011 }
4012
4013 /* Perhaps we didn't install newval anywhere */
4014 if (newval && !string_field_used(record, newval))
4016 /* Perhaps we didn't install newextra anywhere */
4017 if (newextra && !extra_field_used(record, newextra))
4018 guc_free(newextra);
4019 break;
4020
4021#undef newval
4022 }
4023
4024 case PGC_ENUM:
4025 {
4026 struct config_enum *conf = &record->_enum;
4027
4028#define newval (newval_union.enumval)
4029
4030 if (value)
4031 {
4032 if (!parse_and_validate_value(record, value,
4033 source, elevel,
4034 &newval_union, &newextra))
4035 return 0;
4036 }
4037 else if (source == PGC_S_DEFAULT)
4038 {
4039 newval = conf->boot_val;
4040 if (!call_enum_check_hook(record, &newval, &newextra,
4041 source, elevel))
4042 return 0;
4043 }
4044 else
4045 {
4046 newval = conf->reset_val;
4047 newextra = record->reset_extra;
4048 source = record->reset_source;
4049 context = record->reset_scontext;
4050 srole = record->reset_srole;
4051 }
4052
4053 if (prohibitValueChange)
4054 {
4055 /* Release newextra, unless it's reset_extra */
4056 if (newextra && !extra_field_used(record, newextra))
4057 guc_free(newextra);
4058
4059 if (*conf->variable != newval)
4060 {
4061 record->status |= GUC_PENDING_RESTART;
4062 ereport(elevel,
4063 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4064 errmsg("parameter \"%s\" cannot be changed without restarting the server",
4065 record->name)));
4066 return 0;
4067 }
4068 record->status &= ~GUC_PENDING_RESTART;
4069 return -1;
4070 }
4071
4072 if (changeVal)
4073 {
4074 /* Save old value to support transaction abort */
4075 if (!makeDefault)
4076 push_old_value(record, action);
4077
4078 if (conf->assign_hook)
4079 conf->assign_hook(newval, newextra);
4080 *conf->variable = newval;
4081 set_extra_field(record, &record->extra,
4082 newextra);
4083 set_guc_source(record, source);
4084 record->scontext = context;
4085 record->srole = srole;
4086 }
4087 if (makeDefault)
4088 {
4089 if (record->reset_source <= source)
4090 {
4091 conf->reset_val = newval;
4092 set_extra_field(record, &record->reset_extra,
4093 newextra);
4094 record->reset_source = source;
4095 record->reset_scontext = context;
4096 record->reset_srole = srole;
4097 }
4098 for (GucStack *stack = record->stack; stack; stack = stack->prev)
4099 {
4100 if (stack->source <= source)
4101 {
4102 stack->prior.val.enumval = newval;
4103 set_extra_field(record, &stack->prior.extra,
4104 newextra);
4105 stack->source = source;
4106 stack->scontext = context;
4107 stack->srole = srole;
4108 }
4109 }
4110 }
4111
4112 /* Perhaps we didn't install newextra anywhere */
4113 if (newextra && !extra_field_used(record, newextra))
4114 guc_free(newextra);
4115 break;
4116
4117#undef newval
4118 }
4119 }
4120
4121 if (changeVal && (record->flags & GUC_REPORT) &&
4122 !(record->status & GUC_NEEDS_REPORT))
4123 {
4124 record->status |= GUC_NEEDS_REPORT;
4126 }
4127
4128 return changeVal ? 1 : -1;
4129}
static bool extra_field_used(struct config_generic *gconf, void *extra)
Definition: guc.c:743
static bool string_field_used(struct config_generic *conf, char *strval)
Definition: guc.c:706
#define GUC_NO_RESET
Definition: guc.h:217
#define GUC_NOT_WHILE_SEC_REST
Definition: guc.h:226
@ PGC_S_GLOBAL
Definition: guc.h:118
@ PGC_S_DATABASE
Definition: guc.h:119
@ PGC_S_DATABASE_USER
Definition: guc.h:121
@ PGC_S_USER
Definition: guc.h:120
#define GUC_ALLOW_IN_PARALLEL
Definition: guc.h:230
@ PGC_SU_BACKEND
Definition: guc.h:76
bool InSecurityRestrictedOperation(void)
Definition: miscinit.c:639
bool InLocalUserIdChange(void)
Definition: miscinit.c:630
#define ACL_SET
Definition: parsenodes.h:88
bool IsInParallelMode(void)
Definition: xact.c:1090

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, ACL_SET, ACLCHECK_OK, generate_unaccent_rules::action, config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, config_bool::boot_val, config_int::boot_val, config_real::boot_val, config_string::boot_val, config_enum::boot_val, call_bool_check_hook(), call_enum_check_hook(), call_int_check_hook(), call_real_check_hook(), call_string_check_hook(), config_generic::context, DEBUG3, elog, ereport, errcode(), errmsg(), ERROR, config_generic::extra, extra_field_used(), find_option(), config_generic::flags, GUC_ACTION_SAVE, GUC_ALLOW_IN_PARALLEL, guc_free(), GUC_NEEDS_REPORT, GUC_NO_RESET, GUC_NOT_WHILE_SEC_REST, GUC_PENDING_RESTART, GUC_REPORT, guc_report_list, guc_strdup(), InLocalUserIdChange(), InSecurityRestrictedOperation(), IsInParallelMode(), IsUnderPostmaster, LOG, name, config_generic::name, newval, parse_and_validate_value(), pg_parameter_aclcheck(), PGC_BACKEND, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_INTERNAL, PGC_POSTMASTER, PGC_REAL, PGC_S_CLIENT, PGC_S_DATABASE, PGC_S_DATABASE_USER, PGC_S_DEFAULT, PGC_S_DYNAMIC_DEFAULT, PGC_S_FILE, PGC_S_GLOBAL, PGC_S_OVERRIDE, PGC_S_USER, PGC_SIGHUP, PGC_STRING, PGC_SU_BACKEND, PGC_SUSET, PGC_USERSET, guc_stack::prev, push_old_value(), config_generic::report_link, config_generic::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, config_generic::scontext, set_config_with_handle(), set_extra_field(), set_guc_source(), set_string_field(), slist_push_head(), source, config_generic::source, config_generic::srole, config_generic::stack, config_generic::status, string_field_used(), value, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, config_generic::vartype, and WARNING.

Referenced by fmgr_security_definer(), set_config_option(), set_config_option_ext(), and set_config_with_handle().

◆ set_extra_field()

static void set_extra_field ( struct config_generic gconf,
void **  field,
void *  newval 
)
static

Definition at line 765 of file guc.c.

766{
767 void *oldval = *field;
768
769 /* Do the assignment */
770 *field = newval;
771
772 /* Free old value if it's not NULL and isn't referenced anymore */
773 if (oldval && !extra_field_used(gconf, oldval))
774 guc_free(oldval);
775}

References extra_field_used(), guc_free(), and newval.

Referenced by AtEOXact_GUC(), discard_stack_value(), ResetAllOptions(), set_config_with_handle(), and set_stack_value().

◆ set_guc_source()

static void set_guc_source ( struct config_generic gconf,
GucSource  newsource 
)
static

Definition at line 1986 of file guc.c.

1987{
1988 /* Adjust nondef list membership if appropriate for change */
1989 if (gconf->source == PGC_S_DEFAULT)
1990 {
1991 if (newsource != PGC_S_DEFAULT)
1993 }
1994 else
1995 {
1996 if (newsource == PGC_S_DEFAULT)
1997 dlist_delete(&gconf->nondef_link);
1998 }
1999 /* Now update the source field */
2000 gconf->source = newsource;
2001}
static void dlist_push_tail(dlist_head *head, dlist_node *node)
Definition: ilist.h:364

References dlist_delete(), dlist_push_tail(), guc_nondef_list, config_generic::nondef_link, PGC_S_DEFAULT, and config_generic::source.

Referenced by AtEOXact_GUC(), ProcessConfigFileInternal(), ResetAllOptions(), and set_config_with_handle().

◆ set_stack_value()

static void set_stack_value ( struct config_generic gconf,
config_var_value val 
)
static

Definition at line 785 of file guc.c.

786{
787 switch (gconf->vartype)
788 {
789 case PGC_BOOL:
790 val->val.boolval = *gconf->_bool.variable;
791 break;
792 case PGC_INT:
793 val->val.intval = *gconf->_int.variable;
794 break;
795 case PGC_REAL:
796 val->val.realval = *gconf->_real.variable;
797 break;
798 case PGC_STRING:
799 set_string_field(gconf, &(val->val.stringval), *gconf->_string.variable);
800 break;
801 case PGC_ENUM:
802 val->val.enumval = *gconf->_enum.variable;
803 break;
804 }
805 set_extra_field(gconf, &(val->extra), gconf->extra);
806}

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, config_generic::extra, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, set_extra_field(), set_string_field(), val, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by push_old_value().

◆ set_string_field()

static void set_string_field ( struct config_generic conf,
char **  field,
char *  newval 
)
static

Definition at line 727 of file guc.c.

728{
729 char *oldval = *field;
730
731 /* Do the assignment */
732 *field = newval;
733
734 /* Free old value if it's not NULL and isn't referenced anymore */
735 if (oldval && !string_field_used(conf, oldval))
736 guc_free(oldval);
737}

References guc_free(), newval, and string_field_used().

Referenced by AtEOXact_GUC(), discard_stack_value(), free_placeholder(), ResetAllOptions(), set_config_with_handle(), and set_stack_value().

◆ SetConfigOption()

◆ ShowGUCOption()

char * ShowGUCOption ( const struct config_generic record,
bool  use_units 
)

Definition at line 5323 of file guc.c.

5324{
5325 char buffer[256];
5326 const char *val;
5327
5328 switch (record->vartype)
5329 {
5330 case PGC_BOOL:
5331 {
5332 const struct config_bool *conf = &record->_bool;
5333
5334 if (conf->show_hook)
5335 val = conf->show_hook();
5336 else
5337 val = *conf->variable ? "on" : "off";
5338 }
5339 break;
5340
5341 case PGC_INT:
5342 {
5343 const struct config_int *conf = &record->_int;
5344
5345 if (conf->show_hook)
5346 val = conf->show_hook();
5347 else
5348 {
5349 /*
5350 * Use int64 arithmetic to avoid overflows in units
5351 * conversion.
5352 */
5353 int64 result = *conf->variable;
5354 const char *unit;
5355
5356 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5358 record->flags & GUC_UNIT,
5359 &result, &unit);
5360 else
5361 unit = "";
5362
5363 snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
5364 result, unit);
5365 val = buffer;
5366 }
5367 }
5368 break;
5369
5370 case PGC_REAL:
5371 {
5372 const struct config_real *conf = &record->_real;
5373
5374 if (conf->show_hook)
5375 val = conf->show_hook();
5376 else
5377 {
5378 double result = *conf->variable;
5379 const char *unit;
5380
5381 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5383 record->flags & GUC_UNIT,
5384 &result, &unit);
5385 else
5386 unit = "";
5387
5388 snprintf(buffer, sizeof(buffer), "%g%s",
5389 result, unit);
5390 val = buffer;
5391 }
5392 }
5393 break;
5394
5395 case PGC_STRING:
5396 {
5397 const struct config_string *conf = &record->_string;
5398
5399 if (conf->show_hook)
5400 val = conf->show_hook();
5401 else if (*conf->variable && **conf->variable)
5402 val = *conf->variable;
5403 else
5404 val = "";
5405 }
5406 break;
5407
5408 case PGC_ENUM:
5409 {
5410 const struct config_enum *conf = &record->_enum;
5411
5412 if (conf->show_hook)
5413 val = conf->show_hook();
5414 else
5415 val = config_enum_lookup_by_value(record, *conf->variable);
5416 }
5417 break;
5418
5419 default:
5420 /* just to keep compiler quiet */
5421 val = "???";
5422 break;
5423 }
5424
5425 return pstrdup(val);
5426}
#define INT64_FORMAT
Definition: c.h:560
static void convert_int_from_base_unit(int64 base_value, int base_unit, int64 *value, const char **unit)
Definition: guc.c:2603
static void convert_real_from_base_unit(double base_value, int base_unit, double *value, const char **unit)
Definition: guc.c:2644

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, config_enum_lookup_by_value(), convert_int_from_base_unit(), convert_real_from_base_unit(), config_generic::flags, GUC_UNIT, INT64_FORMAT, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, pstrdup(), config_bool::show_hook, config_int::show_hook, config_real::show_hook, config_string::show_hook, config_enum::show_hook, snprintf, val, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by GetConfigOptionByName(), GetConfigOptionValues(), ReportGUCOption(), and ShowAllGUCConfig().

◆ string_field_used()

static bool string_field_used ( struct config_generic conf,
char *  strval 
)
static

Definition at line 706 of file guc.c.

707{
708 if (strval == *(conf->_string.variable) ||
709 strval == conf->_string.reset_val ||
710 strval == conf->_string.boot_val)
711 return true;
712 for (GucStack *stack = conf->stack; stack; stack = stack->prev)
713 {
714 if (strval == stack->prior.val.stringval ||
715 strval == stack->masked.val.stringval)
716 return true;
717 }
718 return false;
719}

References config_generic::_string, config_string::boot_val, guc_stack::masked, guc_stack::prev, guc_stack::prior, config_string::reset_val, config_generic::stack, config_var_val::stringval, config_var_value::val, and config_string::variable.

Referenced by set_config_with_handle(), and set_string_field().

◆ TransformGUCArray()

void TransformGUCArray ( ArrayType array,
List **  names,
List **  values 
)

Definition at line 6230 of file guc.c.

6231{
6232 Assert(array != NULL);
6233 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6234 Assert(ARR_NDIM(array) == 1);
6235 Assert(ARR_LBOUND(array)[0] == 1);
6236
6237 *names = NIL;
6238 *values = NIL;
6239 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6240 {
6241 Datum d;
6242 bool isnull;
6243 char *s;
6244 char *name;
6245 char *value;
6246
6247 d = array_ref(array, 1, &i,
6248 -1 /* varlenarray */ ,
6249 -1 /* TEXT's typlen */ ,
6250 false /* TEXT's typbyval */ ,
6251 TYPALIGN_INT /* TEXT's typalign */ ,
6252 &isnull);
6253
6254 if (isnull)
6255 continue;
6256
6257 s = TextDatumGetCString(d);
6258
6259 ParseLongOption(s, &name, &value);
6260 if (!value)
6261 {
6263 (errcode(ERRCODE_SYNTAX_ERROR),
6264 errmsg("could not parse setting for parameter \"%s\"",
6265 name)));
6266 pfree(name);
6267 continue;
6268 }
6269
6270 *names = lappend(*names, name);
6271 *values = lappend(*values, value);
6272
6273 pfree(s);
6274 }
6275}
static Datum values[MAXATTR]
Definition: bootstrap.c:153
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6194
#define NIL
Definition: pg_list.h:68

References ARR_DIMS, ARR_ELEMTYPE, ARR_LBOUND, ARR_NDIM, array_ref(), Assert(), ereport, errcode(), errmsg(), i, lappend(), name, NIL, ParseLongOption(), pfree(), TextDatumGetCString, value, values, and WARNING.

Referenced by fmgr_security_definer(), and ProcessGUCArray().

◆ valid_custom_variable_name()

static bool valid_custom_variable_name ( const char *  name)
static

Definition at line 956 of file guc.c.

957{
958 bool saw_sep = false;
959 bool name_start = true;
960
961 for (const char *p = name; *p; p++)
962 {
963 if (*p == GUC_QUALIFIER_SEPARATOR)
964 {
965 if (name_start)
966 return false; /* empty name component */
967 saw_sep = true;
968 name_start = true;
969 }
970 else if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
971 "abcdefghijklmnopqrstuvwxyz_", *p) != NULL ||
972 IS_HIGHBIT_SET(*p))
973 {
974 /* okay as first or non-first character */
975 name_start = false;
976 }
977 else if (!name_start && strchr("0123456789$", *p) != NULL)
978 /* okay as non-first character */ ;
979 else
980 return false;
981 }
982 if (name_start)
983 return false; /* empty name component */
984 /* OK if we found at least one separator */
985 return saw_sep;
986}
#define IS_HIGHBIT_SET(ch)
Definition: c.h:1158

References GUC_QUALIFIER_SEPARATOR, IS_HIGHBIT_SET, and name.

Referenced by AlterSystemSetConfigFile(), assignable_custom_variable_name(), ProcessConfigFileInternal(), and validate_option_array_item().

◆ validate_option_array_item()

static bool validate_option_array_item ( const char *  name,
const char *  value,
bool  skipIfNoPermissions 
)
static

Definition at line 6534 of file guc.c.

6537{
6538 struct config_generic *gconf;
6539 bool reset_custom;
6540
6541 /*
6542 * There are three cases to consider:
6543 *
6544 * name is a known GUC variable. Check the value normally, check
6545 * permissions normally (i.e., allow if variable is USERSET, or if it's
6546 * SUSET and user is superuser or holds ACL_SET permissions).
6547 *
6548 * name is not known, but exists or can be created as a placeholder (i.e.,
6549 * it has a valid custom name). We allow this case if you're a superuser,
6550 * otherwise not. Superusers are assumed to know what they're doing. We
6551 * can't allow it for other users, because when the placeholder is
6552 * resolved it might turn out to be a SUSET variable. (With currently
6553 * available infrastructure, we can actually handle such cases within the
6554 * current session --- but once an entry is made in pg_db_role_setting,
6555 * it's assumed to be fully validated.)
6556 *
6557 * name is not known and can't be created as a placeholder. Throw error,
6558 * unless skipIfNoPermissions or reset_custom is true. If reset_custom is
6559 * true, this is a RESET or RESET ALL operation for an unknown custom GUC
6560 * with a reserved prefix, in which case we want to fall through to the
6561 * placeholder case described in the preceding paragraph (else there'd be
6562 * no way for users to remove them). Otherwise, return false.
6563 */
6564 reset_custom = (!value && valid_custom_variable_name(name));
6565 gconf = find_option(name, true, skipIfNoPermissions || reset_custom, ERROR);
6566 if (!gconf && !reset_custom)
6567 {
6568 /* not known, failed to make a placeholder */
6569 return false;
6570 }
6571
6572 if (!gconf || gconf->flags & GUC_CUSTOM_PLACEHOLDER)
6573 {
6574 /*
6575 * We cannot do any meaningful check on the value, so only permissions
6576 * are useful to check.
6577 */
6578 if (superuser() ||
6580 return true;
6581 if (skipIfNoPermissions)
6582 return false;
6583 ereport(ERROR,
6584 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
6585 errmsg("permission denied to set parameter \"%s\"", name)));
6586 }
6587
6588 /* manual permissions check so we can avoid an error being thrown */
6589 if (gconf->context == PGC_USERSET)
6590 /* ok */ ;
6591 else if (gconf->context == PGC_SUSET &&
6592 (superuser() ||
6594 /* ok */ ;
6595 else if (skipIfNoPermissions)
6596 return false;
6597 /* if a permissions error should be thrown, let set_config_option do it */
6598
6599 /* test for permissions and valid option value */
6602 PGC_S_TEST, GUC_ACTION_SET, false, 0, false);
6603
6604 return true;
6605}
@ PGC_S_TEST
Definition: guc.h:125

References ACL_SET, ACLCHECK_OK, config_generic::context, ereport, errcode(), errmsg(), ERROR, find_option(), config_generic::flags, GetUserId(), GUC_ACTION_SET, GUC_CUSTOM_PLACEHOLDER, name, pg_parameter_aclcheck(), PGC_S_TEST, PGC_SUSET, PGC_USERSET, set_config_option(), superuser(), valid_custom_variable_name(), and value.

Referenced by GUCArrayAdd(), GUCArrayDelete(), and GUCArrayReset().

◆ write_auto_conf_file()

static void write_auto_conf_file ( int  fd,
const char *  filename,
ConfigVariable head 
)
static

Definition at line 4322 of file guc.c.

4323{
4325
4327
4328 /* Emit file header containing warning comment */
4329 appendStringInfoString(&buf, "# Do not edit this file manually!\n");
4330 appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
4331
4332 errno = 0;
4333 if (write(fd, buf.data, buf.len) != buf.len)
4334 {
4335 /* if write didn't set errno, assume problem is no disk space */
4336 if (errno == 0)
4337 errno = ENOSPC;
4338 ereport(ERROR,
4340 errmsg("could not write to file \"%s\": %m", filename)));
4341 }
4342
4343 /* Emit each parameter, properly quoting the value */
4344 for (ConfigVariable *item = head; item != NULL; item = item->next)
4345 {
4346 char *escaped;
4347
4349
4350 appendStringInfoString(&buf, item->name);
4351 appendStringInfoString(&buf, " = '");
4352
4353 escaped = escape_single_quotes_ascii(item->value);
4354 if (!escaped)
4355 ereport(ERROR,
4356 (errcode(ERRCODE_OUT_OF_MEMORY),
4357 errmsg("out of memory")));
4358 appendStringInfoString(&buf, escaped);
4359 free(escaped);
4360
4361 appendStringInfoString(&buf, "'\n");
4362
4363 errno = 0;
4364 if (write(fd, buf.data, buf.len) != buf.len)
4365 {
4366 /* if write didn't set errno, assume problem is no disk space */
4367 if (errno == 0)
4368 errno = ENOSPC;
4369 ereport(ERROR,
4371 errmsg("could not write to file \"%s\": %m", filename)));
4372 }
4373 }
4374
4375 /* fsync before considering the write to be successful */
4376 if (pg_fsync(fd) != 0)
4377 ereport(ERROR,
4379 errmsg("could not fsync file \"%s\": %m", filename)));
4380
4381 pfree(buf.data);
4382}
int pg_fsync(int fd)
Definition: fd.c:386
#define write(a, b, c)
Definition: win32.h:14
static char * filename
Definition: pg_dumpall.c:120
static char * buf
Definition: pg_test_fsync.c:72
char * escape_single_quotes_ascii(const char *src)
Definition: quotes.c:33
static int fd(const char *x, int i)
Definition: preproc-init.c:105
void resetStringInfo(StringInfo str)
Definition: stringinfo.c:126

References appendStringInfoString(), buf, ereport, errcode(), errcode_for_file_access(), errmsg(), ERROR, escape_single_quotes_ascii(), fd(), filename, free, initStringInfo(), ConfigVariable::next, pfree(), pg_fsync(), resetStringInfo(), and write.

Referenced by AlterSystemSetConfigFile().

Variable Documentation

◆ GUC_check_errcode_value

int GUC_check_errcode_value
static

◆ GUC_check_errdetail_string

char* GUC_check_errdetail_string

◆ GUC_check_errhint_string

char* GUC_check_errhint_string

◆ GUC_check_errmsg_string

char* GUC_check_errmsg_string

◆ guc_hashtab

◆ guc_nondef_list

◆ guc_report_list

slist_head guc_report_list
static

◆ guc_stack_list

slist_head guc_stack_list
static

Definition at line 225 of file guc.c.

Referenced by AtEOXact_GUC(), push_old_value(), reapply_stacked_values(), and RemoveGUCFromLists().

◆ GUCMemoryContext

MemoryContext GUCMemoryContext
static

Definition at line 200 of file guc.c.

Referenced by build_guc_variables(), guc_free(), guc_malloc(), guc_realloc(), and MarkGUCPrefixReserved().

◆ GUCNestLevel

int GUCNestLevel = 0
static

Definition at line 232 of file guc.c.

Referenced by AtEOXact_GUC(), AtStart_GUC(), NewGUCNestLevel(), and push_old_value().

◆ map_old_guc_names

const char* const map_old_guc_names[]
static
Initial value:
= {
"sort_mem", "work_mem",
"vacuum_mem", "maintenance_work_mem",
"ssl_ecdh_curve", "ssl_groups",
NULL
}

Definition at line 191 of file guc.c.

Referenced by convert_GUC_name_for_parameter_acl(), and find_option().

◆ memory_unit_conversion_table

const unit_conversion memory_unit_conversion_table[]
static

◆ memory_units_hint

const char* const memory_units_hint = gettext_noop("Valid units for this parameter are \"B\", \"kB\", \"MB\", \"GB\", and \"TB\".")
static

Definition at line 120 of file guc.c.

Referenced by parse_int(), and parse_real().

◆ reporting_enabled

bool reporting_enabled
static

Definition at line 230 of file guc.c.

Referenced by BeginReportingGUCOptions(), InitializeGUCOptions(), and ReportChangedGUCOptions().

◆ reserved_class_prefix

List* reserved_class_prefix = NIL
static

Definition at line 79 of file guc.c.

Referenced by assignable_custom_variable_name(), and MarkGUCPrefixReserved().

◆ time_unit_conversion_table

const unit_conversion time_unit_conversion_table[]
static
Initial value:
=
{
{"d", GUC_UNIT_MS, 1000 * 60 * 60 * 24},
{"h", GUC_UNIT_MS, 1000 * 60 * 60},
{"min", GUC_UNIT_MS, 1000 * 60},
{"s", GUC_UNIT_MS, 1000},
{"ms", GUC_UNIT_MS, 1},
{"us", GUC_UNIT_MS, 1.0 / 1000},
{"d", GUC_UNIT_S, 60 * 60 * 24},
{"h", GUC_UNIT_S, 60 * 60},
{"min", GUC_UNIT_S, 60},
{"s", GUC_UNIT_S, 1},
{"ms", GUC_UNIT_S, 1.0 / 1000},
{"us", GUC_UNIT_S, 1.0 / (1000 * 1000)},
{"d", GUC_UNIT_MIN, 60 * 24},
{"h", GUC_UNIT_MIN, 60},
{"min", GUC_UNIT_MIN, 1},
{"s", GUC_UNIT_MIN, 1.0 / 60},
{"ms", GUC_UNIT_MIN, 1.0 / (1000 * 60)},
{"us", GUC_UNIT_MIN, 1.0 / (1000 * 1000 * 60)},
{""}
}

Definition at line 159 of file guc.c.

Referenced by convert_int_from_base_unit(), convert_real_from_base_unit(), and convert_to_base_unit().

◆ time_units_hint

const char* const time_units_hint = gettext_noop("Valid units for this parameter are \"us\", \"ms\", \"s\", \"min\", \"h\", and \"d\".")
static

Definition at line 157 of file guc.c.

Referenced by parse_int(), and parse_real().