PostgreSQL Source Code git master
Loading...
Searching...
No Matches
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 HOSTS_FILENAME   "pg_hosts.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)
 
voidguc_malloc (int elevel, size_t size)
 
voidguc_realloc (int elevel, void *old, size_t size)
 
charguc_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)
 
charconvert_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 charget_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 charconfig_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)
 
charconfig_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 charGetConfigOption (const char *name, bool missing_ok, bool restrict_privileged)
 
const charGetConfigOptionResetString (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)
 
charGetConfigOptionByName (const char *name, const char **varname, bool missing_ok)
 
charShowGUCOption (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 charread_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
 
charGUC_check_errmsg_string
 
charGUC_check_errdetail_string
 
charGUC_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 76 of file guc.c.

◆ HBA_FILENAME

#define HBA_FILENAME   "pg_hba.conf"

Definition at line 57 of file guc.c.

◆ HOSTS_FILENAME

#define HOSTS_FILENAME   "pg_hosts.conf"

Definition at line 59 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 103 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 70 of file guc.c.

Function Documentation

◆ add_guc_variable()

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

Definition at line 928 of file guc.c.

929{
931 bool found;
932
934 &var->name,
936 &found);
937 if (unlikely(hentry == NULL))
938 {
939 ereport(elevel,
941 errmsg("out of memory")));
942 return false; /* out of memory */
943 }
944 Assert(!found);
945 hentry->gucvar = var;
946 return true;
947}
#define Assert(condition)
Definition c.h:943
#define unlikely(x)
Definition c.h:438
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition dynahash.c:889
int errcode(int sqlerrcode)
Definition elog.c:874
#define ereport(elevel,...)
Definition elog.h:151
static HTAB * guc_hashtab
Definition guc.c:214
@ HASH_ENTER_NULL
Definition hsearch.h:111
static char * errmsg
static int fb(int x)
const char * name
Definition guc_tables.h:252

References Assert, ereport, errcode(), errmsg, fb(), guc_hashtab, 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 1058 of file guc.c.

1059{
1060 size_t sz = sizeof(struct config_generic) + sizeof(char *);
1061 struct config_generic *var;
1062
1063 var = (struct config_generic *) guc_malloc(elevel, sz);
1064 if (var == NULL)
1065 return NULL;
1066 memset(var, 0, sz);
1067
1068 var->name = guc_strdup(elevel, name);
1069 if (var->name == NULL)
1070 {
1071 guc_free(var);
1072 return NULL;
1073 }
1074
1075 var->context = PGC_USERSET;
1076 var->group = CUSTOM_OPTIONS;
1077 var->short_desc = "GUC placeholder variable";
1079 var->vartype = PGC_STRING;
1080
1081 /*
1082 * The char* is allocated at the end of the struct since we have no
1083 * 'static' place to point to. Note that the current value, as well as
1084 * the boot and reset values, start out NULL.
1085 */
1086 var->_string.variable = (char **) (var + 1);
1087
1088 if (!add_guc_variable(var, elevel))
1089 {
1090 guc_free(unconstify(char *, var->name));
1091 guc_free(var);
1092 return NULL;
1093 }
1094
1095 return var;
1096}
#define unconstify(underlying_type, expr)
Definition c.h:1325
void guc_free(void *ptr)
Definition guc.c:688
void * guc_malloc(int elevel, size_t size)
Definition guc.c:637
static bool add_guc_variable(struct config_generic *var, int elevel)
Definition guc.c:928
char * guc_strdup(int elevel, const char *src)
Definition guc.c:676
#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, fb(), 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 4508 of file guc.c.

4509{
4510 char *name;
4511 char *value;
4512 bool resetall = false;
4513 ConfigVariable *head = NULL;
4514 ConfigVariable *tail = NULL;
4515 volatile int Tmpfd;
4518
4519 /*
4520 * Extract statement arguments
4521 */
4522 name = altersysstmt->setstmt->name;
4523
4524 if (!AllowAlterSystem)
4525 ereport(ERROR,
4527 errmsg("ALTER SYSTEM is not allowed in this environment")));
4528
4529 switch (altersysstmt->setstmt->kind)
4530 {
4531 case VAR_SET_VALUE:
4533 break;
4534
4535 case VAR_SET_DEFAULT:
4536 case VAR_RESET:
4537 value = NULL;
4538 break;
4539
4540 case VAR_RESET_ALL:
4541 value = NULL;
4542 resetall = true;
4543 break;
4544
4545 default:
4546 elog(ERROR, "unrecognized alter system stmt type: %d",
4547 altersysstmt->setstmt->kind);
4548 break;
4549 }
4550
4551 /*
4552 * Check permission to run ALTER SYSTEM on the target variable
4553 */
4554 if (!superuser())
4555 {
4556 if (resetall)
4557 ereport(ERROR,
4559 errmsg("permission denied to perform ALTER SYSTEM RESET ALL")));
4560 else
4561 {
4563
4566 if (aclresult != ACLCHECK_OK)
4567 ereport(ERROR,
4569 errmsg("permission denied to set parameter \"%s\"",
4570 name)));
4571 }
4572 }
4573
4574 /*
4575 * Unless it's RESET_ALL, validate the target variable and value
4576 */
4577 if (!resetall)
4578 {
4579 struct config_generic *record;
4580
4581 /* We don't want to create a placeholder if there's not one already */
4582 record = find_option(name, false, true, DEBUG5);
4583 if (record != NULL)
4584 {
4585 /*
4586 * Don't allow parameters that can't be set in configuration files
4587 * to be set in PG_AUTOCONF_FILENAME file.
4588 */
4589 if ((record->context == PGC_INTERNAL) ||
4590 (record->flags & GUC_DISALLOW_IN_FILE) ||
4591 (record->flags & GUC_DISALLOW_IN_AUTO_FILE))
4592 ereport(ERROR,
4594 errmsg("parameter \"%s\" cannot be changed",
4595 name)));
4596
4597 /*
4598 * If a value is specified, verify that it's sane.
4599 */
4600 if (value)
4601 {
4602 union config_var_val newval;
4603 void *newextra = NULL;
4604
4605 if (!parse_and_validate_value(record, value,
4607 &newval, &newextra))
4608 ereport(ERROR,
4610 errmsg("invalid value for parameter \"%s\": \"%s\"",
4611 name, value)));
4612
4613 if (record->vartype == PGC_STRING && newval.stringval != NULL)
4614 guc_free(newval.stringval);
4616 }
4617 }
4618 else
4619 {
4620 /*
4621 * Variable not known; check we'd be allowed to create it. (We
4622 * cannot validate the value, but that's fine. A non-core GUC in
4623 * the config file cannot cause postmaster start to fail, so we
4624 * don't have to be too tense about possibly installing a bad
4625 * value.)
4626 *
4627 * As an exception, we skip this check if this is a RESET command
4628 * for an unknown custom GUC, else there'd be no way for users to
4629 * remove such settings with reserved prefixes.
4630 */
4633 }
4634
4635 /*
4636 * We must also reject values containing newlines, because the grammar
4637 * for config files doesn't support embedded newlines in string
4638 * literals.
4639 */
4640 if (value && strchr(value, '\n'))
4641 ereport(ERROR,
4643 errmsg("parameter value for ALTER SYSTEM must not contain a newline")));
4644 }
4645
4646 /*
4647 * PG_AUTOCONF_FILENAME and its corresponding temporary file are always in
4648 * the data directory, so we can reference them by simple relative paths.
4649 */
4654 "tmp");
4655
4656 /*
4657 * Only one backend is allowed to operate on PG_AUTOCONF_FILENAME at a
4658 * time. Use AutoFileLock to ensure that. We must hold the lock while
4659 * reading the old file contents.
4660 */
4662
4663 /*
4664 * If we're going to reset everything, then no need to open or parse the
4665 * old file. We'll just write out an empty list.
4666 */
4667 if (!resetall)
4668 {
4669 struct stat st;
4670
4671 if (stat(AutoConfFileName, &st) == 0)
4672 {
4673 /* open old file PG_AUTOCONF_FILENAME */
4674 FILE *infile;
4675
4677 if (infile == NULL)
4678 ereport(ERROR,
4680 errmsg("could not open file \"%s\": %m",
4682
4683 /* parse it */
4685 LOG, &head, &tail))
4686 ereport(ERROR,
4688 errmsg("could not parse contents of file \"%s\"",
4690
4692 }
4693
4694 /*
4695 * Now, replace any existing entry with the new value, or add it if
4696 * not present.
4697 */
4698 replace_auto_config_value(&head, &tail, name, value);
4699 }
4700
4701 /*
4702 * Invoke the post-alter hook for setting this GUC variable. GUCs
4703 * typically do not have corresponding entries in pg_parameter_acl, so we
4704 * call the hook using the name rather than a potentially-non-existent
4705 * OID. Nonetheless, we pass ParameterAclRelationId so that this call
4706 * context can be distinguished from others. (Note that "name" will be
4707 * NULL in the RESET ALL case.)
4708 *
4709 * We do this here rather than at the end, because ALTER SYSTEM is not
4710 * transactional. If the hook aborts our transaction, it will be cleaner
4711 * to do so before we touch any files.
4712 */
4715 altersysstmt->setstmt->kind,
4716 false);
4717
4718 /*
4719 * To ensure crash safety, first write the new file data to a temp file,
4720 * then atomically rename it into place.
4721 *
4722 * If there is a temp file left over due to a previous crash, it's okay to
4723 * truncate and reuse it.
4724 */
4726 O_CREAT | O_RDWR | O_TRUNC);
4727 if (Tmpfd < 0)
4728 ereport(ERROR,
4730 errmsg("could not open file \"%s\": %m",
4732
4733 /*
4734 * Use a TRY block to clean up the file if we fail. Since we need a TRY
4735 * block anyway, OK to use BasicOpenFile rather than OpenTransientFile.
4736 */
4737 PG_TRY();
4738 {
4739 /* Write and sync the new contents to the temporary file */
4741
4742 /* Close before renaming; may be required on some platforms */
4743 close(Tmpfd);
4744 Tmpfd = -1;
4745
4746 /*
4747 * As the rename is atomic operation, if any problem occurs after this
4748 * at worst it can lose the parameters set by last ALTER SYSTEM
4749 * command.
4750 */
4752 }
4753 PG_CATCH();
4754 {
4755 /* Close file first, else unlink might fail on some platforms */
4756 if (Tmpfd >= 0)
4757 close(Tmpfd);
4758
4759 /* Unlink, but ignore any error */
4761
4762 PG_RE_THROW();
4763 }
4764 PG_END_TRY();
4765
4766 FreeConfigVariables(head);
4767
4769}
AclResult
Definition acl.h:183
@ ACLCHECK_OK
Definition acl.h:184
AclResult pg_parameter_aclcheck(const char *name, Oid roleid, AclMode mode)
Definition aclchk.c:4107
#define CONF_FILE_START_DEPTH
Definition conffiles.h:17
int errcode_for_file_access(void)
Definition elog.c:897
#define LOG
Definition elog.h:31
#define PG_RE_THROW()
Definition elog.h:406
#define PG_TRY(...)
Definition elog.h:373
#define PG_END_TRY(...)
Definition elog.h:398
#define ERROR
Definition elog.h:39
#define PG_CATCH(...)
Definition elog.h:383
#define elog(elevel,...)
Definition elog.h:227
#define DEBUG5
Definition elog.h:26
int durable_rename(const char *oldfile, const char *newfile, int elevel)
Definition fd.c:783
int BasicOpenFile(const char *fileName, int fileFlags)
Definition fd.c:1090
int FreeFile(FILE *file)
Definition fd.c:2827
FILE * AllocateFile(const char *name, const char *mode)
Definition fd.c:2628
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:1002
static bool valid_custom_variable_name(const char *name)
Definition guc.c:957
static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
Definition guc.c:4371
#define newval
struct config_generic * find_option(const char *name, bool create_placeholders, bool skip_errors, int elevel)
Definition guc.c:1114
static bool parse_and_validate_value(const struct config_generic *record, const char *value, GucSource source, int elevel, union config_var_val *newval, void **newextra)
Definition guc.c:3028
static void replace_auto_config_value(ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
Definition guc.c:4438
#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:169
bool AllowAlterSystem
Definition guc_tables.c:524
static struct @177 value
#define close(a)
Definition win32.h:12
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1150
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1767
@ LW_EXCLUSIVE
Definition lwlock.h:104
Oid GetUserId(void)
Definition miscinit.c:470
#define InvokeObjectPostAlterHookArgStr(classId, objectName, subId, auxiliaryId, is_internal)
@ VAR_SET_DEFAULT
@ VAR_RESET
@ VAR_SET_VALUE
@ VAR_RESET_ALL
#define ACL_ALTER_SYSTEM
Definition parsenodes.h:89
#define MAXPGPATH
#define PG_AUTOCONF_FILENAME
#define snprintf
Definition port.h:260
char * name
Definition guc.h:141
bool superuser(void)
Definition superuser.c:47
#define stat
Definition win32_port.h:74
static void infile(const char *name)
Definition zic.c:1257

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(), fb(), find_option(), config_generic::flags, FreeConfigVariables(), FreeFile(), GetUserId(), GUC_DISALLOW_IN_AUTO_FILE, GUC_DISALLOW_IN_FILE, guc_free(), infile(), InvokeObjectPostAlterHookArgStr, LOG, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), MAXPGPATH, name, ConfigVariable::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(), 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 1002 of file guc.c.

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

References ereport, errcode(), errdetail(), errmsg, fb(), 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 2169 of file guc.c.

2170{
2171 slist_mutable_iter iter;
2172
2173 /*
2174 * Note: it's possible to get here with GUCNestLevel == nestLevel-1 during
2175 * abort, if there is a failure during transaction start before
2176 * AtStart_GUC is called.
2177 */
2178 Assert(nestLevel > 0 &&
2179 (nestLevel <= GUCNestLevel ||
2180 (nestLevel == GUCNestLevel + 1 && !isCommit)));
2181
2182 /* We need only process GUCs having nonempty stacks */
2184 {
2186 stack_link, iter.cur);
2187 GucStack *stack;
2188
2189 /*
2190 * Process and pop each stack entry within the nest level. To simplify
2191 * fmgr_security_definer() and other places that use GUC_ACTION_SAVE,
2192 * we allow failure exit from code that uses a local nest level to be
2193 * recovered at the surrounding transaction or subtransaction abort;
2194 * so there could be more than one stack entry to pop.
2195 */
2196 while ((stack = gconf->stack) != NULL &&
2197 stack->nest_level >= nestLevel)
2198 {
2199 GucStack *prev = stack->prev;
2200 bool restorePrior = false;
2201 bool restoreMasked = false;
2202 bool changed;
2203
2204 /*
2205 * In this next bit, if we don't set either restorePrior or
2206 * restoreMasked, we must "discard" any unwanted fields of the
2207 * stack entries to avoid leaking memory. If we do set one of
2208 * those flags, unused fields will be cleaned up after restoring.
2209 */
2210 if (!isCommit) /* if abort, always restore prior value */
2211 restorePrior = true;
2212 else if (stack->state == GUC_SAVE)
2213 restorePrior = true;
2214 else if (stack->nest_level == 1)
2215 {
2216 /* transaction commit */
2217 if (stack->state == GUC_SET_LOCAL)
2218 restoreMasked = true;
2219 else if (stack->state == GUC_SET)
2220 {
2221 /* we keep the current active value */
2223 }
2224 else /* must be GUC_LOCAL */
2225 restorePrior = true;
2226 }
2227 else if (prev == NULL ||
2228 prev->nest_level < stack->nest_level - 1)
2229 {
2230 /* decrement entry's level and do not pop it */
2231 stack->nest_level--;
2232 continue;
2233 }
2234 else
2235 {
2236 /*
2237 * We have to merge this stack entry into prev. See README for
2238 * discussion of this bit.
2239 */
2240 switch (stack->state)
2241 {
2242 case GUC_SAVE:
2243 Assert(false); /* can't get here */
2244 break;
2245
2246 case GUC_SET:
2247 /* next level always becomes SET */
2249 if (prev->state == GUC_SET_LOCAL)
2251 prev->state = GUC_SET;
2252 break;
2253
2254 case GUC_LOCAL:
2255 if (prev->state == GUC_SET)
2256 {
2257 /* LOCAL migrates down */
2259 prev->masked_srole = stack->srole;
2260 prev->masked = stack->prior;
2261 prev->state = GUC_SET_LOCAL;
2262 }
2263 else
2264 {
2265 /* else just forget this stack level */
2267 }
2268 break;
2269
2270 case GUC_SET_LOCAL:
2271 /* prior state at this level no longer wanted */
2273 /* copy down the masked state */
2276 if (prev->state == GUC_SET_LOCAL)
2278 prev->masked = stack->masked;
2279 prev->state = GUC_SET_LOCAL;
2280 break;
2281 }
2282 }
2283
2284 changed = false;
2285
2287 {
2288 /* Perform appropriate restoration of the stacked value */
2292 Oid newsrole;
2293
2294 if (restoreMasked)
2295 {
2300 }
2301 else
2302 {
2303 newvalue = stack->prior;
2306 newsrole = stack->srole;
2307 }
2308
2309 switch (gconf->vartype)
2310 {
2311 case PGC_BOOL:
2312 {
2313 struct config_bool *conf = &gconf->_bool;
2314 bool newval = newvalue.val.boolval;
2315 void *newextra = newvalue.extra;
2316
2317 if (*conf->variable != newval ||
2318 gconf->extra != newextra)
2319 {
2320 if (conf->assign_hook)
2322 *conf->variable = newval;
2323 set_extra_field(gconf, &gconf->extra,
2324 newextra);
2325 changed = true;
2326 }
2327 break;
2328 }
2329 case PGC_INT:
2330 {
2331 struct config_int *conf = &gconf->_int;
2332 int newval = newvalue.val.intval;
2333 void *newextra = newvalue.extra;
2334
2335 if (*conf->variable != newval ||
2336 gconf->extra != newextra)
2337 {
2338 if (conf->assign_hook)
2340 *conf->variable = newval;
2341 set_extra_field(gconf, &gconf->extra,
2342 newextra);
2343 changed = true;
2344 }
2345 break;
2346 }
2347 case PGC_REAL:
2348 {
2349 struct config_real *conf = &gconf->_real;
2350 double newval = newvalue.val.realval;
2351 void *newextra = newvalue.extra;
2352
2353 if (*conf->variable != newval ||
2354 gconf->extra != newextra)
2355 {
2356 if (conf->assign_hook)
2358 *conf->variable = newval;
2359 set_extra_field(gconf, &gconf->extra,
2360 newextra);
2361 changed = true;
2362 }
2363 break;
2364 }
2365 case PGC_STRING:
2366 {
2367 struct config_string *conf = &gconf->_string;
2368 char *newval = newvalue.val.stringval;
2369 void *newextra = newvalue.extra;
2370
2371 if (*conf->variable != newval ||
2372 gconf->extra != newextra)
2373 {
2374 if (conf->assign_hook)
2376 set_string_field(gconf, conf->variable, newval);
2377 set_extra_field(gconf, &gconf->extra,
2378 newextra);
2379 changed = true;
2380 }
2381
2382 /*
2383 * Release stacked values if not used anymore. We
2384 * could use discard_stack_value() here, but since
2385 * we have type-specific code anyway, might as
2386 * well inline it.
2387 */
2390 break;
2391 }
2392 case PGC_ENUM:
2393 {
2394 struct config_enum *conf = &gconf->_enum;
2395 int newval = newvalue.val.enumval;
2396 void *newextra = newvalue.extra;
2397
2398 if (*conf->variable != newval ||
2399 gconf->extra != newextra)
2400 {
2401 if (conf->assign_hook)
2403 *conf->variable = newval;
2404 set_extra_field(gconf, &gconf->extra,
2405 newextra);
2406 changed = true;
2407 }
2408 break;
2409 }
2410 }
2411
2412 /*
2413 * Release stacked extra values if not used anymore.
2414 */
2415 set_extra_field(gconf, &(stack->prior.extra), NULL);
2416 set_extra_field(gconf, &(stack->masked.extra), NULL);
2417
2418 /* And restore source information */
2420 gconf->scontext = newscontext;
2421 gconf->srole = newsrole;
2422 }
2423
2424 /*
2425 * Pop the GUC's state stack; if it's now empty, remove the GUC
2426 * from guc_stack_list.
2427 */
2428 gconf->stack = prev;
2429 if (prev == NULL)
2430 slist_delete_current(&iter);
2431 pfree(stack);
2432
2433 /* Report new value if we changed it */
2434 if (changed && (gconf->flags & GUC_REPORT) &&
2435 !(gconf->status & GUC_NEEDS_REPORT))
2436 {
2437 gconf->status |= GUC_NEEDS_REPORT;
2438 slist_push_head(&guc_report_list, &gconf->report_link);
2439 }
2440 } /* end of stack-popping loop */
2441 }
2442
2443 /* Update nesting level */
2444 GUCNestLevel = nestLevel - 1;
2445}
static slist_head guc_report_list
Definition guc.c:228
static void set_string_field(struct config_generic *conf, char **field, char *newval)
Definition guc.c:728
static int GUCNestLevel
Definition guc.c:233
static void discard_stack_value(struct config_generic *gconf, config_var_value *val)
Definition guc.c:814
static slist_head guc_stack_list
Definition guc.c:226
static void set_guc_source(struct config_generic *gconf, GucSource newsource)
Definition guc.c:2018
static void set_extra_field(struct config_generic *gconf, void **field, void *newval)
Definition guc.c:766
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:1616
unsigned int Oid
GucBoolAssignHook assign_hook
Definition guc_tables.h:144
GucEnumAssignHook assign_hook
Definition guc_tables.h:207
slist_node stack_link
Definition guc_tables.h:272
GucStack * stack
Definition guc_tables.h:267
GucIntAssignHook assign_hook
Definition guc_tables.h:158
GucRealAssignHook assign_hook
Definition guc_tables.h:172
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
char * stringval
Definition guc_tables.h:37

References Assert, config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, slist_mutable_iter::cur, discard_stack_value(), config_var_value::extra, fb(), GUC_LOCAL, GUC_NEEDS_REPORT, GUC_REPORT, guc_report_list, GUC_SAVE, GUC_SET, GUC_SET_LOCAL, guc_stack_list, GUCNestLevel, 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, guc_stack::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::stack, config_generic::stack_link, guc_stack::state, config_var_val::stringval, and config_var_value::val.

Referenced by AbortSubTransaction(), AbortTransaction(), amcheck_lock_relation_and_check(), ATExecMergePartitions(), ATExecSplitPartition(), 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(), test_plan_advice_advisor(), vacuum_rel(), and validate_index().

◆ AtStart_GUC()

void AtStart_GUC ( void  )

Definition at line 2122 of file guc.c.

2123{
2124 /*
2125 * The nest level should be 0 between transactions; if it isn't, somebody
2126 * didn't call AtEOXact_GUC, or called it with the wrong nestLevel. We
2127 * throw a warning but make no other effort to clean up.
2128 */
2129 if (GUCNestLevel != 0)
2130 elog(WARNING, "GUC nest level = %d at transaction start",
2131 GUCNestLevel);
2132 GUCNestLevel = 1;
2133}
#define WARNING
Definition elog.h:36

References elog, GUCNestLevel, and WARNING.

Referenced by StartTransaction().

◆ BeginReportingGUCOptions()

void BeginReportingGUCOptions ( void  )

Definition at line 2453 of file guc.c.

2454{
2455 HASH_SEQ_STATUS status;
2457
2458 /*
2459 * Don't do anything unless talking to an interactive frontend.
2460 */
2462 return;
2463
2464 reporting_enabled = true;
2465
2466 /*
2467 * Hack for in_hot_standby: set the GUC value true if appropriate. This
2468 * is kind of an ugly place to do it, but there's few better options.
2469 *
2470 * (This could be out of date by the time we actually send it, in which
2471 * case the next ReportChangedGUCOptions call will send a duplicate
2472 * report.)
2473 */
2474 if (RecoveryInProgress())
2475 SetConfigOption("in_hot_standby", "true",
2477
2478 /* Transmit initial values of interesting variables */
2479 hash_seq_init(&status, guc_hashtab);
2480 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
2481 {
2482 struct config_generic *conf = hentry->gucvar;
2483
2484 if (conf->flags & GUC_REPORT)
2486 }
2487}
@ DestRemote
Definition dest.h:89
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition dynahash.c:1352
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition dynahash.c:1317
static void ReportGUCOption(struct config_generic *record)
Definition guc.c:2541
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition guc.c:4234
static bool reporting_enabled
Definition guc.c:231
@ PGC_S_OVERRIDE
Definition guc.h:123
CommandDest whereToSendOutput
Definition postgres.c:96
bool RecoveryInProgress(void)
Definition xlog.c:6830

References DestRemote, fb(), guc_hashtab, GUC_REPORT, 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 871 of file guc.c.

872{
873 int size_vars;
874 int num_vars = 0;
877 bool found;
878
879 /*
880 * Create the memory context that will hold all GUC-related data.
881 */
884 "GUCMemoryContext",
886
887 /*
888 * Count all the built-in variables.
889 */
890 for (int i = 0; ConfigureNames[i].name; i++)
891 num_vars++;
892
893 /*
894 * Create hash table with 20% slack
895 */
896 size_vars = num_vars + num_vars / 4;
897
898 hash_ctl.keysize = sizeof(char *);
899 hash_ctl.entrysize = sizeof(GUCHashEntry);
900 hash_ctl.hash = guc_name_hash;
901 hash_ctl.match = guc_name_match;
903 guc_hashtab = hash_create("GUC hash table",
904 size_vars,
905 &hash_ctl,
907
908 for (int i = 0; ConfigureNames[i].name; i++)
909 {
910 struct config_generic *gucvar = &ConfigureNames[i];
911
913 &gucvar->name,
915 &found);
916 Assert(!found);
917 hentry->gucvar = gucvar;
918 }
919
921}
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition dynahash.c:360
int64 hash_get_num_entries(HTAB *hashp)
Definition dynahash.c:1273
static int guc_name_match(const void *key1, const void *key2, Size keysize)
Definition guc.c:1232
static uint32 guc_name_hash(const void *key, Size keysize)
Definition guc.c:1208
static MemoryContext GUCMemoryContext
Definition guc.c:201
PGDLLIMPORT struct config_generic ConfigureNames[]
@ HASH_ENTER
Definition hsearch.h:109
#define HASH_CONTEXT
Definition hsearch.h:97
#define HASH_ELEM
Definition hsearch.h:90
#define HASH_COMPARE
Definition hsearch.h:94
#define HASH_FUNCTION
Definition hsearch.h:93
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

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert, ConfigureNames, fb(), guc_hashtab, guc_name_hash(), guc_name_match(), GUCMemoryContext, HASH_COMPARE, HASH_CONTEXT, hash_create(), HASH_ELEM, HASH_ENTER, HASH_FUNCTION, hash_get_num_entries(), hash_search(), i, 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 6679 of file guc.c.

6681{
6682 /* Quick success if no hook */
6683 if (!conf->_bool.check_hook)
6684 return true;
6685
6686 /* Reset variables that might be set by hook */
6691
6692 if (!conf->_bool.check_hook(newval, extra, source))
6693 {
6694 ereport(elevel,
6698 errmsg("invalid value for parameter \"%s\": %d",
6699 conf->name, (int) *newval),
6703 errhint("%s", GUC_check_errhint_string) : 0));
6704 /* Flush strings created in ErrorContext (ereport might not have) */
6706 return false;
6707 }
6708
6709 return true;
6710}
void FlushErrorState(void)
Definition elog.c:2062
int int errdetail_internal(const char *fmt,...) pg_attribute_printf(1
int errhint(const char *fmt,...) pg_attribute_printf(1
int int errmsg_internal(const char *fmt,...) pg_attribute_printf(1
char * GUC_check_errhint_string
Definition guc.c:85
char * GUC_check_errmsg_string
Definition guc.c:83
static int GUC_check_errcode_value
Definition guc.c:78
char * GUC_check_errdetail_string
Definition guc.c:84
static rewind_source * source
Definition pg_rewind.c:89

References ereport, errcode(), errdetail_internal(), errhint(), errmsg, errmsg_internal(), config_generic::extra, fb(), FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, 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 6831 of file guc.c.

6833{
6834 /* Quick success if no hook */
6835 if (!conf->_enum.check_hook)
6836 return true;
6837
6838 /* Reset variables that might be set by hook */
6843
6844 if (!conf->_enum.check_hook(newval, extra, source))
6845 {
6846 ereport(elevel,
6850 errmsg("invalid value for parameter \"%s\": \"%s\"",
6851 conf->name,
6856 errhint("%s", GUC_check_errhint_string) : 0));
6857 /* Flush strings created in ErrorContext (ereport might not have) */
6859 return false;
6860 }
6861
6862 return true;
6863}
const char * config_enum_lookup_by_value(const struct config_generic *record, int val)
Definition guc.c:2927

References config_enum_lookup_by_value(), ereport, errcode(), errdetail_internal(), errhint(), errmsg, errmsg_internal(), config_generic::extra, fb(), FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, 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 6713 of file guc.c.

6715{
6716 /* Quick success if no hook */
6717 if (!conf->_int.check_hook)
6718 return true;
6719
6720 /* Reset variables that might be set by hook */
6725
6726 if (!conf->_int.check_hook(newval, extra, source))
6727 {
6728 ereport(elevel,
6732 errmsg("invalid value for parameter \"%s\": %d",
6733 conf->name, *newval),
6737 errhint("%s", GUC_check_errhint_string) : 0));
6738 /* Flush strings created in ErrorContext (ereport might not have) */
6740 return false;
6741 }
6742
6743 return true;
6744}

References ereport, errcode(), errdetail_internal(), errhint(), errmsg, errmsg_internal(), config_generic::extra, fb(), FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, 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 6747 of file guc.c.

6749{
6750 /* Quick success if no hook */
6751 if (!conf->_real.check_hook)
6752 return true;
6753
6754 /* Reset variables that might be set by hook */
6759
6760 if (!conf->_real.check_hook(newval, extra, source))
6761 {
6762 ereport(elevel,
6766 errmsg("invalid value for parameter \"%s\": %g",
6767 conf->name, *newval),
6771 errhint("%s", GUC_check_errhint_string) : 0));
6772 /* Flush strings created in ErrorContext (ereport might not have) */
6774 return false;
6775 }
6776
6777 return true;
6778}

References ereport, errcode(), errdetail_internal(), errhint(), errmsg, errmsg_internal(), config_generic::extra, fb(), FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, 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 6781 of file guc.c.

6783{
6784 volatile bool result = true;
6785
6786 /* Quick success if no hook */
6787 if (!conf->_string.check_hook)
6788 return true;
6789
6790 /*
6791 * If elevel is ERROR, or if the check_hook itself throws an elog
6792 * (undesirable, but not always avoidable), make sure we don't leak the
6793 * already-malloc'd newval string.
6794 */
6795 PG_TRY();
6796 {
6797 /* Reset variables that might be set by hook */
6802
6803 if (!conf->_string.check_hook(newval, extra, source))
6804 {
6805 ereport(elevel,
6809 errmsg("invalid value for parameter \"%s\": \"%s\"",
6810 conf->name, *newval ? *newval : ""),
6814 errhint("%s", GUC_check_errhint_string) : 0));
6815 /* Flush strings created in ErrorContext (ereport might not have) */
6817 result = false;
6818 }
6819 }
6820 PG_CATCH();
6821 {
6822 guc_free(*newval);
6823 PG_RE_THROW();
6824 }
6825 PG_END_TRY();
6826
6827 return result;
6828}
uint32 result

References ereport, errcode(), errdetail_internal(), errhint(), errmsg, errmsg_internal(), config_generic::extra, fb(), FlushErrorState(), GUC_check_errcode_value, GUC_check_errdetail_string, GUC_check_errhint_string, GUC_check_errmsg_string, guc_free(), newval, PG_CATCH, PG_END_TRY, PG_RE_THROW, PG_TRY, result, 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 5721 of file guc.c.

5722{
5723 /*
5724 * We can skip GUCs that are guaranteed to have the same values in leaders
5725 * and workers. (Note it is critical that the leader and worker have the
5726 * same idea of which GUCs fall into this category. It's okay to consider
5727 * context and name for this purpose, since those are unchanging
5728 * properties of a GUC.)
5729 *
5730 * PGC_POSTMASTER variables always have the same value in every child of a
5731 * particular postmaster, so the worker will certainly have the right
5732 * value already. Likewise, PGC_INTERNAL variables are set by special
5733 * mechanisms (if indeed they aren't compile-time constants). So we may
5734 * always skip these.
5735 *
5736 * For all other GUCs, we skip if the GUC has its compiled-in default
5737 * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means
5738 * we don't send GUCs that have their default values, which typically
5739 * saves lots of work. On the worker side, this means we don't need to
5740 * reset the GUC to default because it already has that value. See
5741 * comments in RestoreGUCState for more info.
5742 */
5743 return gconf->context == PGC_POSTMASTER ||
5744 gconf->context == PGC_INTERNAL ||
5745 gconf->source == PGC_S_DEFAULT;
5746}
@ PGC_S_DEFAULT
Definition guc.h:113
@ PGC_POSTMASTER
Definition guc.h:74

References fb(), PGC_INTERNAL, PGC_POSTMASTER, and PGC_S_DEFAULT.

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 1288 of file guc.c.

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

References assignable_custom_variable_name(), DEBUG5, ERROR, fb(), 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 2972 of file guc.c.

2974{
2976 int seplen;
2977
2980
2982 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2983 {
2984 if (!entry->hidden)
2985 {
2986 appendStringInfoString(&retstr, entry->name);
2988 }
2989 }
2990
2991 /*
2992 * All the entries may have been hidden, leaving the string empty if no
2993 * prefix was given. This indicates a broken GUC setup, since there is no
2994 * use for an enum without any values, so we just check to make sure we
2995 * don't write to invalid memory instead of actually trying to do
2996 * something smart with it.
2997 */
2998 if (retstr.len >= seplen)
2999 {
3000 /* Replace final separator */
3001 retstr.data[retstr.len - seplen] = '\0';
3002 retstr.len -= seplen;
3003 }
3004
3006
3007 return retstr.data;
3008}
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 struct config_enum_entry * options
Definition guc_tables.h:205

References appendBinaryStringInfo(), appendStringInfoString(), fb(), initStringInfo(), 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 2948 of file guc.c.

2950{
2951 for (const struct config_enum_entry *entry = record->options; entry && entry->name; entry++)
2952 {
2953 if (pg_strcasecmp(value, entry->name) == 0)
2954 {
2955 *retval = entry->val;
2956 return true;
2957 }
2958 }
2959
2960 *retval = 0;
2961 return false;
2962}
int pg_strcasecmp(const char *s1, const char *s2)

References 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 2927 of file guc.c.

2928{
2929 for (const struct config_enum_entry *entry = record->_enum.options; entry && entry->name; entry++)
2930 {
2931 if (entry->val == val)
2932 return entry->name;
2933 }
2934
2935 elog(ERROR, "could not find enum option %d for %s",
2936 val, record->name);
2937 return NULL; /* silence compiler */
2938}
long val
Definition informix.c:689
struct config_enum _enum
Definition guc_tables.h:289

References config_generic::_enum, elog, ERROR, fb(), 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 1252 of file guc.c.

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

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

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 2635 of file guc.c.

2637{
2638 const unit_conversion *table;
2639
2640 *unit = NULL;
2641
2642 if (base_unit & GUC_UNIT_MEMORY)
2644 else
2646
2647 for (int i = 0; *table[i].unit; i++)
2648 {
2649 if (base_unit == table[i].base_unit)
2650 {
2651 /*
2652 * Accept the first conversion that divides the value evenly. We
2653 * assume that the conversions for each base unit are ordered from
2654 * greatest unit to the smallest!
2655 */
2656 if (table[i].multiplier <= 1.0 ||
2657 base_value % (int64) table[i].multiplier == 0)
2658 {
2659 *value = (int64) rint(base_value / table[i].multiplier);
2660 *unit = table[i].unit;
2661 break;
2662 }
2663 }
2664 }
2665
2666 Assert(*unit != NULL);
2667}
int64_t int64
Definition c.h:621
static const unit_conversion memory_unit_conversion_table[]
Definition guc.c:123
static const unit_conversion time_unit_conversion_table[]
Definition guc.c:160
#define GUC_UNIT_MEMORY
Definition guc.h:237
static const struct lconv_member_info table[]

References Assert, fb(), 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 2676 of file guc.c.

2678{
2679 const unit_conversion *table;
2680
2681 *unit = NULL;
2682
2683 if (base_unit & GUC_UNIT_MEMORY)
2685 else
2687
2688 for (int i = 0; *table[i].unit; i++)
2689 {
2690 if (base_unit == table[i].base_unit)
2691 {
2692 /*
2693 * Accept the first conversion that divides the value evenly; or
2694 * if there is none, use the smallest (last) target unit.
2695 *
2696 * What we actually care about here is whether snprintf with "%g"
2697 * will print the value as an integer, so the obvious test of
2698 * "*value == rint(*value)" is too strict; roundoff error might
2699 * make us choose an unreasonably small unit. As a compromise,
2700 * accept a divisor that is within 1e-8 of producing an integer.
2701 */
2702 *value = base_value / table[i].multiplier;
2703 *unit = table[i].unit;
2704 if (*value > 0 &&
2705 fabs((rint(*value) / *value) - 1.0) <= 1e-8)
2706 break;
2707 }
2708 }
2709
2710 Assert(*unit != NULL);
2711}
e

References Assert, fb(), 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 2578 of file guc.c.

2580{
2581 char unitstr[MAX_UNIT_LEN + 1];
2582 int unitlen;
2583 const unit_conversion *table;
2584
2585 /* extract unit string to compare to table entries */
2586 unitlen = 0;
2587 while (*unit != '\0' && !isspace((unsigned char) *unit) &&
2589 unitstr[unitlen++] = *(unit++);
2590 unitstr[unitlen] = '\0';
2591 /* allow whitespace after unit */
2592 while (isspace((unsigned char) *unit))
2593 unit++;
2594 if (*unit != '\0')
2595 return false; /* unit too long, or garbage after it */
2596
2597 /* now search the appropriate table */
2598 if (base_unit & GUC_UNIT_MEMORY)
2600 else
2602
2603 for (int i = 0; *table[i].unit; i++)
2604 {
2605 if (base_unit == table[i].base_unit &&
2606 strcmp(unitstr, table[i].unit) == 0)
2607 {
2608 double cvalue = value * table[i].multiplier;
2609
2610 /*
2611 * If the user gave a fractional value such as "30.1GB", round it
2612 * off to the nearest multiple of the next smaller unit, if there
2613 * is one.
2614 */
2615 if (*table[i + 1].unit &&
2616 base_unit == table[i + 1].base_unit)
2617 cvalue = rint(cvalue / table[i + 1].multiplier) *
2618 table[i + 1].multiplier;
2619
2620 *base_value = cvalue;
2621 return true;
2622 }
2623 }
2624 return false;
2625}
#define MAX_UNIT_LEN
Definition guc.c:103

References fb(), 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 4837 of file guc.c.

4838{
4839 const char *name = variable->name;
4841 struct config_generic *pHolder;
4842
4843 /* Check mapping between initial and default value */
4845
4846 /*
4847 * See if there's a placeholder by the same name.
4848 */
4850 &name,
4851 HASH_FIND,
4852 NULL);
4853 if (hentry == NULL)
4854 {
4855 /*
4856 * No placeholder to replace, so we can just add it ... but first,
4857 * make sure it's initialized to its default value.
4858 */
4861 return;
4862 }
4863
4864 /*
4865 * This better be a placeholder
4866 */
4867 if ((hentry->gucvar->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4868 ereport(ERROR,
4870 errmsg("attempt to redefine parameter \"%s\"", name)));
4871
4872 Assert(hentry->gucvar->vartype == PGC_STRING);
4873 pHolder = hentry->gucvar;
4874
4875 /*
4876 * First, set the variable to its default value. We must do this even
4877 * though we intend to immediately apply a new value, since it's possible
4878 * that the new value is invalid.
4879 */
4881
4882 /*
4883 * Replace the placeholder in the hash table. We aren't changing the name
4884 * (at least up to case-folding), so the hash value is unchanged.
4885 */
4886 hentry->gucname = name;
4887 hentry->gucvar = variable;
4888
4889 /*
4890 * Remove the placeholder from any lists it's in, too.
4891 */
4893
4894 /*
4895 * Assign the string value(s) stored in the placeholder to the real
4896 * variable. Essentially, we need to duplicate all the active and stacked
4897 * values, but with appropriate validation and datatype adjustment.
4898 *
4899 * If an assignment fails, we report a WARNING and keep going. We don't
4900 * want to throw ERROR for bad values, because it'd bollix the add-on
4901 * module that's presumably halfway through getting loaded. In such cases
4902 * the default or previous state will become active instead.
4903 */
4904
4905 /* First, apply the reset value if any */
4906 if (pHolder->_string.reset_val)
4907 (void) set_config_option_ext(name, pHolder->_string.reset_val,
4908 pHolder->reset_scontext,
4909 pHolder->reset_source,
4910 pHolder->reset_srole,
4911 GUC_ACTION_SET, true, WARNING, false);
4912 /* That should not have resulted in stacking anything */
4913 Assert(variable->stack == NULL);
4914
4915 /* Now, apply current and stacked values, in the order they were stacked */
4917 *(pHolder->_string.variable),
4918 pHolder->scontext, pHolder->source,
4919 pHolder->srole);
4920
4921 /* Also copy over any saved source-location information */
4922 if (pHolder->sourcefile)
4923 set_config_sourcefile(name, pHolder->sourcefile,
4924 pHolder->sourceline);
4925
4926 /* Now we can free the no-longer-referenced placeholder variable */
4928}
int set_config_option_ext(const char *name, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition guc.c:3288
static void set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
Definition guc.c:4201
static void free_placeholder(struct config_generic *pHolder)
Definition guc.c:5034
static void InitializeOneGUCOption(struct config_generic *gconf)
Definition guc.c:1522
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:4938
static void RemoveGUCFromLists(struct config_generic *gconf)
Definition guc.c:1633
@ GUC_ACTION_SET
Definition guc.h:203
@ HASH_FIND
Definition hsearch.h:108
char * name
Definition type.h:191

References add_guc_variable(), Assert, ereport, errcode(), errmsg, ERROR, fb(), free_placeholder(), GUC_ACTION_SET, GUC_CUSTOM_PLACEHOLDER, guc_hashtab, HASH_FIND, hash_search(), InitializeOneGUCOption(), name, variable::name, PGC_STRING, reapply_stacked_values(), RemoveGUCFromLists(), set_config_option_ext(), set_config_sourcefile(), 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 5049 of file guc.c.

5059{
5060 struct config_generic *var;
5061
5063 var->_bool.variable = valueAddr;
5064 var->_bool.boot_val = bootValue;
5065 var->_bool.reset_val = bootValue;
5066 var->_bool.check_hook = check_hook;
5067 var->_bool.assign_hook = assign_hook;
5068 var->_bool.show_hook = show_hook;
5070}
static void define_custom_variable(struct config_generic *variable)
Definition guc.c:4837
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:4777
bool * variable
Definition guc_tables.h:141
GucBoolCheckHook check_hook
Definition guc_tables.h:143
GucShowHook show_hook
Definition guc_tables.h:145
const char * long_desc
Definition guc_tables.h:256
struct config_bool _bool
Definition guc_tables.h:285

References config_generic::_bool, config_bool::assign_hook, config_bool::boot_val, config_bool::check_hook, config_generic::context, define_custom_variable(), fb(), 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 
)

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

◆ 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 814 of file guc.c.

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

References fb(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, set_extra_field(), set_string_field(), and val.

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 5886 of file guc.c.

5887{
5888 va_list vargs;
5889 int n;
5890
5891 if (*maxbytes <= 0)
5892 elog(ERROR, "not enough space to serialize GUC state");
5893
5894 va_start(vargs, fmt);
5896 va_end(vargs);
5897
5898 if (n < 0)
5899 {
5900 /* Shouldn't happen. Better show errno description. */
5901 elog(ERROR, "vsnprintf failed: %m with format string \"%s\"", fmt);
5902 }
5903 if (n >= *maxbytes)
5904 {
5905 /* This shouldn't happen either, really. */
5906 elog(ERROR, "not enough space to serialize GUC state");
5907 }
5908
5909 /* Shift the destptr ahead of the null terminator */
5910 *destptr += n + 1;
5911 *maxbytes -= n + 1;
5912}
#define vsnprintf
Definition port.h:259

References elog, ERROR, fb(), 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 5916 of file guc.c.

5917{
5918 if (valsize > *maxbytes)
5919 elog(ERROR, "not enough space to serialize GUC state");
5920
5922 *destptr += valsize;
5923 *maxbytes -= valsize;
5924}
memcpy(sums, checksumBaseOffsets, sizeof(checksumBaseOffsets))

References elog, ERROR, fb(), memcpy(), and val.

Referenced by serialize_variable().

◆ estimate_variable_size()

static Size estimate_variable_size ( struct config_generic gconf)
static

Definition at line 5755 of file guc.c.

5756{
5757 Size size;
5758 Size valsize = 0;
5759
5760 /* Skippable GUCs consume zero space. */
5762 return 0;
5763
5764 /* Name, plus trailing zero byte. */
5765 size = strlen(gconf->name) + 1;
5766
5767 /* Get the maximum display length of the GUC value. */
5768 switch (gconf->vartype)
5769 {
5770 case PGC_BOOL:
5771 {
5772 valsize = 5; /* max(strlen('true'), strlen('false')) */
5773 }
5774 break;
5775
5776 case PGC_INT:
5777 {
5778 struct config_int *conf = &gconf->_int;
5779
5780 /*
5781 * Instead of getting the exact display length, use max
5782 * length. Also reduce the max length for typical ranges of
5783 * small values. Maximum value is 2147483647, i.e. 10 chars.
5784 * Include one byte for sign.
5785 */
5786 if (abs(*conf->variable) < 1000)
5787 valsize = 3 + 1;
5788 else
5789 valsize = 10 + 1;
5790 }
5791 break;
5792
5793 case PGC_REAL:
5794 {
5795 /*
5796 * We are going to print it with %e with REALTYPE_PRECISION
5797 * fractional digits. Account for sign, leading digit,
5798 * decimal point, and exponent with up to 3 digits. E.g.
5799 * -3.99329042340000021e+110
5800 */
5801 valsize = 1 + 1 + 1 + REALTYPE_PRECISION + 5;
5802 }
5803 break;
5804
5805 case PGC_STRING:
5806 {
5807 struct config_string *conf = &gconf->_string;
5808
5809 /*
5810 * If the value is NULL, we transmit it as an empty string.
5811 * Although this is not physically the same value, GUC
5812 * generally treats a NULL the same as empty string.
5813 */
5814 if (*conf->variable)
5815 valsize = strlen(*conf->variable);
5816 else
5817 valsize = 0;
5818 }
5819 break;
5820
5821 case PGC_ENUM:
5822 {
5823 struct config_enum *conf = &gconf->_enum;
5824
5826 }
5827 break;
5828 }
5829
5830 /* Allow space for terminating zero-byte for value */
5831 size = add_size(size, valsize + 1);
5832
5833 if (gconf->sourcefile)
5834 size = add_size(size, strlen(gconf->sourcefile));
5835
5836 /* Allow space for terminating zero-byte for sourcefile */
5837 size = add_size(size, 1);
5838
5839 /* Include line whenever file is nonempty. */
5840 if (gconf->sourcefile && gconf->sourcefile[0])
5841 size = add_size(size, sizeof(gconf->sourceline));
5842
5843 size = add_size(size, sizeof(gconf->source));
5844 size = add_size(size, sizeof(gconf->scontext));
5845 size = add_size(size, sizeof(gconf->srole));
5846
5847 return size;
5848}
size_t Size
Definition c.h:689
static bool can_skip_gucvar(struct config_generic *gconf)
Definition guc.c:5721
#define REALTYPE_PRECISION
Definition guc.c:70
Size add_size(Size s1, Size s2)
Definition shmem.c:1048

References add_size(), can_skip_gucvar(), config_enum_lookup_by_value(), fb(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, and REALTYPE_PRECISION.

Referenced by EstimateGUCStateSpace().

◆ EstimateGUCStateSpace()

Size EstimateGUCStateSpace ( void  )

Definition at line 5855 of file guc.c.

5856{
5857 Size size;
5858 dlist_iter iter;
5859
5860 /* Add space reqd for saving the data size of the guc state */
5861 size = sizeof(Size);
5862
5863 /*
5864 * Add up the space needed for each GUC variable.
5865 *
5866 * We need only process non-default GUCs.
5867 */
5869 {
5871 nondef_link, iter.cur);
5872
5873 size = add_size(size, estimate_variable_size(gconf));
5874 }
5875
5876 return size;
5877}
static dlist_head guc_nondef_list
Definition guc.c:224
static Size estimate_variable_size(struct config_generic *gconf)
Definition guc.c:5755
#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(), fb(), 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 744 of file guc.c.

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

References config_var_value::extra, config_generic::extra, fb(), guc_stack::masked, guc_stack::prev, guc_stack::prior, 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 1114 of file guc.c.

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

References add_placeholder_variable(), Assert, assignable_custom_variable_name(), ereport, errcode(), errmsg, fb(), find_option(), guc_hashtab, guc_name_compare(), 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 5034 of file guc.c.

5035{
5036 /* Placeholders are always STRING type, so free their values */
5037 Assert(pHolder->vartype == PGC_STRING);
5038 set_string_field(pHolder, pHolder->_string.variable, NULL);
5039 set_string_field(pHolder, &pHolder->_string.reset_val, NULL);
5040
5041 guc_free(unconstify(char *, pHolder->name));
5043}

References Assert, fb(), guc_free(), PGC_STRING, set_string_field(), and unconstify.

Referenced by define_custom_variable(), and MarkGUCPrefixReserved().

◆ get_config_handle()

config_handle * get_config_handle ( const char name)

Definition at line 4186 of file guc.c.

4187{
4188 struct config_generic *gen = find_option(name, false, false, 0);
4189
4190 if (gen && ((gen->flags & GUC_CUSTOM_PLACEHOLDER) == 0))
4191 return gen;
4192
4193 return NULL;
4194}

References fb(), 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 2718 of file guc.c.

2719{
2720 switch (flags & GUC_UNIT)
2721 {
2722 case 0:
2723 return NULL; /* GUC has no units */
2724 case GUC_UNIT_BYTE:
2725 return "B";
2726 case GUC_UNIT_KB:
2727 return "kB";
2728 case GUC_UNIT_MB:
2729 return "MB";
2730 case GUC_UNIT_BLOCKS:
2731 {
2732 static char bbuf[8];
2733
2734 /* initialize if first time through */
2735 if (bbuf[0] == '\0')
2736 snprintf(bbuf, sizeof(bbuf), "%dkB", BLCKSZ / 1024);
2737 return bbuf;
2738 }
2739 case GUC_UNIT_XBLOCKS:
2740 {
2741 static char xbuf[8];
2742
2743 /* initialize if first time through */
2744 if (xbuf[0] == '\0')
2745 snprintf(xbuf, sizeof(xbuf), "%dkB", XLOG_BLCKSZ / 1024);
2746 return xbuf;
2747 }
2748 case GUC_UNIT_MS:
2749 return "ms";
2750 case GUC_UNIT_S:
2751 return "s";
2752 case GUC_UNIT_MIN:
2753 return "min";
2754 default:
2755 elog(ERROR, "unrecognized GUC units value: %d",
2756 flags & GUC_UNIT);
2757 return NULL;
2758 }
2759}
#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, fb(), 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 5238 of file guc.c.

5239{
5240 struct config_generic **result;
5241 dlist_iter iter;
5242
5243 *num = 0;
5244
5245 /*
5246 * While only a fraction of all the GUC variables are marked GUC_EXPLAIN,
5247 * it doesn't seem worth dynamically resizing this array.
5248 */
5250
5251 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5253 {
5255 nondef_link, iter.cur);
5256 bool modified;
5257
5258 /* return only parameters marked for inclusion in explain */
5259 if (!(conf->flags & GUC_EXPLAIN))
5260 continue;
5261
5262 /* return only options visible to the current user */
5264 continue;
5265
5266 /* return only options that are different from their boot values */
5267 modified = false;
5268
5269 switch (conf->vartype)
5270 {
5271 case PGC_BOOL:
5272 {
5273 struct config_bool *lconf = &conf->_bool;
5274
5275 modified = (lconf->boot_val != *(lconf->variable));
5276 }
5277 break;
5278
5279 case PGC_INT:
5280 {
5281 struct config_int *lconf = &conf->_int;
5282
5283 modified = (lconf->boot_val != *(lconf->variable));
5284 }
5285 break;
5286
5287 case PGC_REAL:
5288 {
5289 struct config_real *lconf = &conf->_real;
5290
5291 modified = (lconf->boot_val != *(lconf->variable));
5292 }
5293 break;
5294
5295 case PGC_STRING:
5296 {
5297 struct config_string *lconf = &conf->_string;
5298
5299 if (lconf->boot_val == NULL &&
5300 *lconf->variable == NULL)
5301 modified = false;
5302 else if (lconf->boot_val == NULL ||
5303 *lconf->variable == NULL)
5304 modified = true;
5305 else
5306 modified = (strcmp(lconf->boot_val, *(lconf->variable)) != 0);
5307 }
5308 break;
5309
5310 case PGC_ENUM:
5311 {
5312 struct config_enum *lconf = &conf->_enum;
5313
5314 modified = (lconf->boot_val != *(lconf->variable));
5315 }
5316 break;
5317
5318 default:
5319 elog(ERROR, "unexpected GUC type: %d", conf->vartype);
5320 }
5321
5322 if (!modified)
5323 continue;
5324
5325 /* OK, report it */
5326 result[*num] = conf;
5327 *num = *num + 1;
5328 }
5329
5330 return result;
5331}
#define palloc_array(type, count)
Definition fe_memutils.h:76
#define GUC_EXPLAIN
Definition guc.h:219
bool ConfigOptionIsVisible(const struct config_generic *conf)
Definition guc_funcs.c:612

References ConfigOptionIsVisible(), dlist_iter::cur, dlist_container, dlist_foreach, elog, ERROR, fb(), GUC_EXPLAIN, guc_hashtab, guc_nondef_list, hash_get_num_entries(), config_generic::nondef_link, palloc_array, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, and result.

Referenced by ExplainPrintSettings().

◆ get_guc_variables()

struct config_generic ** get_guc_variables ( int num_vars)

Definition at line 840 of file guc.c.

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

References Assert, fb(), guc_hashtab, guc_var_compare(), hash_get_num_entries(), hash_seq_init(), hash_seq_search(), i, palloc_array, qsort, result, 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 4257 of file guc.c.

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

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, fb(), 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(), ProcessConfigFileInternal(), and test_translation().

◆ GetConfigOptionByName()

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

Definition at line 5339 of file guc.c.

5340{
5341 struct config_generic *record;
5342
5343 record = find_option(name, false, missing_ok, ERROR);
5344 if (record == NULL)
5345 {
5346 if (varname)
5347 *varname = NULL;
5348 return NULL;
5349 }
5350
5351 if (!ConfigOptionIsVisible(record))
5352 ereport(ERROR,
5354 errmsg("permission denied to examine \"%s\"", name),
5355 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
5356 "pg_read_all_settings")));
5357
5358 if (varname)
5359 *varname = record->name;
5360
5361 return ShowGUCOption(record, true);
5362}
char * ShowGUCOption(const struct config_generic *record, bool use_units)
Definition guc.c:5372

References ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg, ERROR, fb(), 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 4354 of file guc.c.

4355{
4356 struct config_generic *record;
4357
4358 record = find_option(name, false, missing_ok, ERROR);
4359 if (record == NULL)
4360 return 0;
4361 return record->flags;
4362}

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

Referenced by append_guc_value(), pg_get_functiondef(), and PostmasterMain().

◆ GetConfigOptionResetString()

const char * GetConfigOptionResetString ( const char name)

Definition at line 4307 of file guc.c.

4308{
4309 struct config_generic *record;
4310 static char buffer[256];
4311
4312 record = find_option(name, false, false, ERROR);
4313 Assert(record != NULL);
4314 if (!ConfigOptionIsVisible(record))
4315 ereport(ERROR,
4317 errmsg("permission denied to examine \"%s\"", name),
4318 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4319 "pg_read_all_settings")));
4320
4321 switch (record->vartype)
4322 {
4323 case PGC_BOOL:
4324 return record->_bool.reset_val ? "on" : "off";
4325
4326 case PGC_INT:
4327 snprintf(buffer, sizeof(buffer), "%d",
4328 record->_int.reset_val);
4329 return buffer;
4330
4331 case PGC_REAL:
4332 snprintf(buffer, sizeof(buffer), "%g",
4333 record->_real.reset_val);
4334 return buffer;
4335
4336 case PGC_STRING:
4337 return record->_string.reset_val ?
4338 record->_string.reset_val : "";
4339
4340 case PGC_ENUM:
4341 return config_enum_lookup_by_value(record,
4342 record->_enum.reset_val);
4343 }
4344 return NULL;
4345}
char * reset_val
Definition guc_tables.h:197

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, fb(), 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 688 of file guc.c.

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

References Assert, fb(), 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(), check_log_extension_options(), check_log_min_messages(), 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 1178 of file guc.c.

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

References fb().

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 1208 of file guc.c.

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

References fb(), name, pg_rotate_left32(), and result.

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 1232 of file guc.c.

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

References fb(), and guc_name_compare().

Referenced by build_guc_variables().

◆ guc_realloc()

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

Definition at line 651 of file guc.c.

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

References Assert, data, ereport, errcode(), errmsg, fb(), 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 6078 of file guc.c.

6079{
6080 char **error_context_name_and_value = (char **) arg;
6081
6083 errcontext("while setting parameter \"%s\" to \"%s\"",
6086}
Datum arg
Definition elog.c:1322
#define errcontext
Definition elog.h:199

References arg, errcontext, and fb().

Referenced by RestoreGUCState().

◆ guc_strdup()

char * guc_strdup ( int  elevel,
const char src 
)

◆ guc_var_compare()

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

Definition at line 1166 of file guc.c.

1167{
1168 const struct config_generic *ca = *(const struct config_generic *const *) a;
1169 const struct config_generic *cb = *(const struct config_generic *const *) b;
1170
1171 return guc_name_compare(ca->name, cb->name);
1172}
int b
Definition isn.c:74
int a
Definition isn.c:73

References a, b, fb(), guc_name_compare(), and config_generic::name.

Referenced by get_guc_variables().

◆ GUCArrayAdd()

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

Definition at line 6366 of file guc.c.

6367{
6368 struct config_generic *record;
6369 Datum datum;
6370 char *newval;
6371 ArrayType *a;
6372
6373 Assert(name);
6374 Assert(value);
6375
6376 /* test if the option is valid and we're allowed to set it */
6378
6379 /* normalize name (converts obsolete GUC names to modern spellings) */
6380 record = find_option(name, false, true, WARNING);
6381 if (record)
6382 name = record->name;
6383
6384 /* build new item for array */
6385 newval = psprintf("%s=%s", name, value);
6386 datum = CStringGetTextDatum(newval);
6387
6388 if (array)
6389 {
6390 int index;
6391 bool isnull;
6392
6393 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6394 Assert(ARR_NDIM(array) == 1);
6395 Assert(ARR_LBOUND(array)[0] == 1);
6396
6397 index = ARR_DIMS(array)[0] + 1; /* add after end */
6398
6399 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6400 {
6401 Datum d;
6402 char *current;
6403
6404 d = array_ref(array, 1, &i,
6405 -1 /* varlenarray */ ,
6406 -1 /* TEXT's typlen */ ,
6407 false /* TEXT's typbyval */ ,
6408 TYPALIGN_INT /* TEXT's typalign */ ,
6409 &isnull);
6410 if (isnull)
6411 continue;
6412 current = TextDatumGetCString(d);
6413
6414 /* check for match up through and including '=' */
6415 if (strncmp(current, newval, strlen(name) + 1) == 0)
6416 {
6417 index = i;
6418 break;
6419 }
6420 }
6421
6422 a = array_set(array, 1, &index,
6423 datum,
6424 false,
6425 -1 /* varlena array */ ,
6426 -1 /* TEXT's typlen */ ,
6427 false /* TEXT's typbyval */ ,
6428 TYPALIGN_INT /* TEXT's typalign */ );
6429 }
6430 else
6431 a = construct_array_builtin(&datum, 1, TEXTOID);
6432
6433 return a;
6434}
#define ARR_NDIM(a)
Definition array.h:290
#define ARR_ELEMTYPE(a)
Definition array.h:292
#define ARR_DIMS(a)
Definition array.h:294
#define ARR_LBOUND(a)
Definition array.h:296
ArrayType * array_set(ArrayType *array, int nSubscripts, int *indx, Datum dataValue, bool isNull, int arraytyplen, int elmlen, bool elmbyval, char elmalign)
Datum array_ref(ArrayType *array, int nSubscripts, int *indx, int arraytyplen, int elmlen, bool elmbyval, char elmalign, bool *isNull)
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
#define CStringGetTextDatum(s)
Definition builtins.h:98
#define TextDatumGetCString(d)
Definition builtins.h:99
static bool validate_option_array_item(const char *name, const char *value, bool skipIfNoPermissions)
Definition guc.c:6583
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, fb(), 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 6443 of file guc.c.

6444{
6445 struct config_generic *record;
6447 int index;
6448
6449 Assert(name);
6450
6451 /* test if the option is valid and we're allowed to set it */
6453
6454 /* normalize name (converts obsolete GUC names to modern spellings) */
6455 record = find_option(name, false, true, WARNING);
6456 if (record)
6457 name = record->name;
6458
6459 /* if array is currently null, then surely nothing to delete */
6460 if (!array)
6461 return NULL;
6462
6463 newarray = NULL;
6464 index = 1;
6465
6466 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6467 {
6468 Datum d;
6469 char *val;
6470 bool isnull;
6471
6472 d = array_ref(array, 1, &i,
6473 -1 /* varlenarray */ ,
6474 -1 /* TEXT's typlen */ ,
6475 false /* TEXT's typbyval */ ,
6476 TYPALIGN_INT /* TEXT's typalign */ ,
6477 &isnull);
6478 if (isnull)
6479 continue;
6481
6482 /* ignore entry if it's what we want to delete */
6483 if (strncmp(val, name, strlen(name)) == 0
6484 && val[strlen(name)] == '=')
6485 continue;
6486
6487 /* else add it to the output array */
6488 if (newarray)
6490 d,
6491 false,
6492 -1 /* varlenarray */ ,
6493 -1 /* TEXT's typlen */ ,
6494 false /* TEXT's typbyval */ ,
6495 TYPALIGN_INT /* TEXT's typalign */ );
6496 else
6498
6499 index++;
6500 }
6501
6502 return newarray;
6503}

References ARR_DIMS, array_ref(), array_set(), Assert, construct_array_builtin(), fb(), 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 6512 of file guc.c.

6513{
6515 int index;
6516
6517 /* if array is currently null, nothing to do */
6518 if (!array)
6519 return NULL;
6520
6521 /* if we're superuser, we can delete everything, so just do it */
6522 if (superuser())
6523 return NULL;
6524
6525 newarray = NULL;
6526 index = 1;
6527
6528 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6529 {
6530 Datum d;
6531 char *val;
6532 char *eqsgn;
6533 bool isnull;
6534
6535 d = array_ref(array, 1, &i,
6536 -1 /* varlenarray */ ,
6537 -1 /* TEXT's typlen */ ,
6538 false /* TEXT's typbyval */ ,
6539 TYPALIGN_INT /* TEXT's typalign */ ,
6540 &isnull);
6541 if (isnull)
6542 continue;
6544
6545 eqsgn = strchr(val, '=');
6546 *eqsgn = '\0';
6547
6548 /* skip if we have permission to delete it */
6550 continue;
6551
6552 /* else add it to the output array */
6553 if (newarray)
6555 d,
6556 false,
6557 -1 /* varlenarray */ ,
6558 -1 /* TEXT's typlen */ ,
6559 false /* TEXT's typbyval */ ,
6560 TYPALIGN_INT /* TEXT's typalign */ );
6561 else
6563
6564 index++;
6565 pfree(val);
6566 }
6567
6568 return newarray;
6569}

References ARR_DIMS, array_ref(), array_set(), construct_array_builtin(), fb(), 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 4777 of file guc.c.

4783{
4784 struct config_generic *gen;
4785
4786 /*
4787 * Only allow custom PGC_POSTMASTER variables to be created during shared
4788 * library preload; any later than that, we can't ensure that the value
4789 * doesn't change after startup. This is a fatal elog if it happens; just
4790 * erroring out isn't safe because we don't know what the calling loadable
4791 * module might already have hooked into.
4792 */
4793 if (context == PGC_POSTMASTER &&
4795 elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
4796
4797 /*
4798 * We can't support custom GUC_LIST_QUOTE variables, because the wrong
4799 * things would happen if such a variable were set or pg_dump'd when the
4800 * defining extension isn't loaded. Again, treat this as fatal because
4801 * the loadable module may be partly initialized already.
4802 */
4803 if (flags & GUC_LIST_QUOTE)
4804 elog(FATAL, "extensions cannot define GUC_LIST_QUOTE variables");
4805
4806 /*
4807 * Before pljava commit 398f3b876ed402bdaec8bc804f29e2be95c75139
4808 * (2015-12-15), two of that module's PGC_USERSET variables facilitated
4809 * trivial escalation to superuser privileges. Restrict the variables to
4810 * protect sites that have yet to upgrade pljava.
4811 */
4812 if (context == PGC_USERSET &&
4813 (strcmp(name, "pljava.classpath") == 0 ||
4814 strcmp(name, "pljava.vmoptions") == 0))
4816
4817 /* As above, an OOM here is FATAL */
4818 gen = (struct config_generic *) guc_malloc(FATAL, sizeof(struct config_generic));
4819 memset(gen, 0, sizeof(struct config_generic));
4820
4821 gen->name = guc_strdup(FATAL, name);
4822 gen->context = context;
4823 gen->group = CUSTOM_OPTIONS;
4824 gen->short_desc = short_desc;
4825 gen->long_desc = long_desc;
4826 gen->flags = flags;
4827 gen->vartype = type;
4828
4829 return gen;
4830}
#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:1788
const char * type

References config_generic::context, CUSTOM_OPTIONS, elog, FATAL, fb(), 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 1408 of file guc.c.

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

References Assert, build_guc_variables(), fb(), guc_hashtab, 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 1467 of file guc.c.

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

References fb(), 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 1522 of file guc.c.

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

References Assert, config_bool::boot_val, config_int::boot_val, config_real::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, FATAL, fb(), guc_strdup(), LOG, config_int::max, config_real::max, newval, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_INTERNAL, PGC_REAL, PGC_S_DEFAULT, and PGC_STRING.

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

◆ MarkGUCPrefixReserved()

void MarkGUCPrefixReserved ( const char className)

Definition at line 5186 of file guc.c.

5187{
5188 int classLen = strlen(className);
5189 HASH_SEQ_STATUS status;
5191 MemoryContext oldcontext;
5192
5193 /*
5194 * Check for existing placeholders. We must actually remove invalid
5195 * placeholders, else future parallel worker startups will fail.
5196 */
5197 hash_seq_init(&status, guc_hashtab);
5198 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
5199 {
5200 struct config_generic *var = hentry->gucvar;
5201
5202 if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5203 strncmp(className, var->name, classLen) == 0 &&
5205 {
5208 errmsg("invalid configuration parameter name \"%s\", removing it",
5209 var->name),
5210 errdetail("\"%s\" is now a reserved prefix.",
5211 className)));
5212 /* Remove it from the hash table */
5214 &var->name,
5216 NULL);
5217 /* Remove it from any lists it's in, too */
5218 RemoveGUCFromLists(var);
5219 /* And free it */
5220 free_placeholder(var);
5221 }
5222 }
5223
5224 /* And remember the name so we can prevent future mistakes. */
5227 MemoryContextSwitchTo(oldcontext);
5228}
@ HASH_REMOVE
Definition hsearch.h:110
List * lappend(List *list, void *datum)
Definition list.c:339
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition palloc.h:124

References ereport, errcode(), errdetail(), errmsg, fb(), config_generic::flags, free_placeholder(), GUC_CUSTOM_PLACEHOLDER, guc_hashtab, GUC_QUALIFIER_SEPARATOR, GUCMemoryContext, 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 3028 of file guc.c.

3032{
3033 switch (record->vartype)
3034 {
3035 case PGC_BOOL:
3036 {
3037 if (!parse_bool(value, &newval->boolval))
3038 {
3039 ereport(elevel,
3041 errmsg("parameter \"%s\" requires a Boolean value",
3042 record->name)));
3043 return false;
3044 }
3045
3046 if (!call_bool_check_hook(record, &newval->boolval, newextra,
3047 source, elevel))
3048 return false;
3049 }
3050 break;
3051 case PGC_INT:
3052 {
3053 const struct config_int *conf = &record->_int;
3054 const char *hintmsg;
3055
3056 if (!parse_int(value, &newval->intval,
3057 record->flags, &hintmsg))
3058 {
3059 ereport(elevel,
3061 errmsg("invalid value for parameter \"%s\": \"%s\"",
3062 record->name, value),
3063 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3064 return false;
3065 }
3066
3067 if (newval->intval < conf->min || newval->intval > conf->max)
3068 {
3069 const char *unit = get_config_unit_name(record->flags);
3070 const char *unitspace;
3071
3072 if (unit)
3073 unitspace = " ";
3074 else
3075 unit = unitspace = "";
3076
3077 ereport(elevel,
3079 errmsg("%d%s%s is outside the valid range for parameter \"%s\" (%d%s%s .. %d%s%s)",
3080 newval->intval, unitspace, unit,
3081 record->name,
3082 conf->min, unitspace, unit,
3083 conf->max, unitspace, unit)));
3084 return false;
3085 }
3086
3087 if (!call_int_check_hook(record, &newval->intval, newextra,
3088 source, elevel))
3089 return false;
3090 }
3091 break;
3092 case PGC_REAL:
3093 {
3094 const struct config_real *conf = &record->_real;
3095 const char *hintmsg;
3096
3097 if (!parse_real(value, &newval->realval,
3098 record->flags, &hintmsg))
3099 {
3100 ereport(elevel,
3102 errmsg("invalid value for parameter \"%s\": \"%s\"",
3103 record->name, value),
3104 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3105 return false;
3106 }
3107
3108 if (newval->realval < conf->min || newval->realval > conf->max)
3109 {
3110 const char *unit = get_config_unit_name(record->flags);
3111 const char *unitspace;
3112
3113 if (unit)
3114 unitspace = " ";
3115 else
3116 unit = unitspace = "";
3117
3118 ereport(elevel,
3120 errmsg("%g%s%s is outside the valid range for parameter \"%s\" (%g%s%s .. %g%s%s)",
3121 newval->realval, unitspace, unit,
3122 record->name,
3123 conf->min, unitspace, unit,
3124 conf->max, unitspace, unit)));
3125 return false;
3126 }
3127
3128 if (!call_real_check_hook(record, &newval->realval, newextra,
3129 source, elevel))
3130 return false;
3131 }
3132 break;
3133 case PGC_STRING:
3134 {
3135 /*
3136 * The value passed by the caller could be transient, so we
3137 * always strdup it.
3138 */
3139 newval->stringval = guc_strdup(elevel, value);
3140 if (newval->stringval == NULL)
3141 return false;
3142
3143 /*
3144 * The only built-in "parsing" check we have is to apply
3145 * truncation if GUC_IS_NAME.
3146 */
3147 if (record->flags & GUC_IS_NAME)
3148 truncate_identifier(newval->stringval,
3149 strlen(newval->stringval),
3150 true);
3151
3152 if (!call_string_check_hook(record, &newval->stringval, newextra,
3153 source, elevel))
3154 {
3155 guc_free(newval->stringval);
3156 newval->stringval = NULL;
3157 return false;
3158 }
3159 }
3160 break;
3161 case PGC_ENUM:
3162 {
3163 const struct config_enum *conf = &record->_enum;
3164
3165 if (!config_enum_lookup_by_name(conf, value, &newval->enumval))
3166 {
3167 char *hintmsg;
3168
3170 _("Available values: "),
3171
3172 /*
3173 * translator: This is the terminator of a list of entity
3174 * names.
3175 */
3176 _("."),
3177
3178 /*
3179 * translator: This is a separator in a list of entity
3180 * names.
3181 */
3182 _(", "));
3183
3184 ereport(elevel,
3186 errmsg("invalid value for parameter \"%s\": \"%s\"",
3187 record->name, value),
3188 hintmsg ? errhint("%s", hintmsg) : 0));
3189
3190 if (hintmsg)
3191 pfree(hintmsg);
3192 return false;
3193 }
3194
3195 if (!call_enum_check_hook(record, &newval->enumval, newextra,
3196 source, elevel))
3197 return false;
3198 }
3199 break;
3200 }
3201
3202 return true;
3203}
bool parse_bool(const char *value, bool *result)
Definition bool.c:31
#define _(x)
Definition elog.c:95
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
Definition guc.c:2775
char * config_enum_get_options(const struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
Definition guc.c:2972
const char * get_config_unit_name(int flags)
Definition guc.c:2718
bool parse_real(const char *value, double *result, int flags, const char **hintmsg)
Definition guc.c:2865
bool config_enum_lookup_by_name(const struct config_enum *record, const char *value, int *retval)
Definition guc.c:2948
#define GUC_IS_NAME
Definition guc.h:225
void truncate_identifier(char *ident, int len, bool warn)
Definition scansup.c:81

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, fb(), config_generic::flags, get_config_unit_name(), guc_free(), GUC_IS_NAME, guc_strdup(), 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 2775 of file guc.c.

2776{
2777 /*
2778 * We assume here that double is wide enough to represent any integer
2779 * value with adequate precision.
2780 */
2781 double val;
2782 char *endptr;
2783
2784 /* To suppress compiler warnings, always set output params */
2785 if (result)
2786 *result = 0;
2787 if (hintmsg)
2788 *hintmsg = NULL;
2789
2790 /*
2791 * Try to parse as an integer (allowing octal or hex input). If the
2792 * conversion stops at a decimal point or 'e', or overflows, re-parse as
2793 * float. This should work fine as long as we have no unit names starting
2794 * with 'e'. If we ever do, the test could be extended to check for a
2795 * sign or digit after 'e', but for now that's unnecessary.
2796 */
2797 errno = 0;
2798 val = strtol(value, &endptr, 0);
2799 if (*endptr == '.' || *endptr == 'e' || *endptr == 'E' ||
2800 errno == ERANGE)
2801 {
2802 errno = 0;
2803 val = strtod(value, &endptr);
2804 }
2805
2806 if (endptr == value || errno == ERANGE)
2807 return false; /* no HINT for these cases */
2808
2809 /* reject NaN (infinities will fail range check below) */
2810 if (isnan(val))
2811 return false; /* treat same as syntax error; no HINT */
2812
2813 /* allow whitespace between number and unit */
2814 while (isspace((unsigned char) *endptr))
2815 endptr++;
2816
2817 /* Handle possible unit */
2818 if (*endptr != '\0')
2819 {
2820 if ((flags & GUC_UNIT) == 0)
2821 return false; /* this setting does not accept a unit */
2822
2824 endptr, (flags & GUC_UNIT),
2825 &val))
2826 {
2827 /* invalid unit, or garbage after the unit; set hint and fail. */
2828 if (hintmsg)
2829 {
2830 if (flags & GUC_UNIT_MEMORY)
2832 else
2834 }
2835 return false;
2836 }
2837 }
2838
2839 /* Round to int, then check for overflow */
2840 val = rint(val);
2841
2842 if (val > INT_MAX || val < INT_MIN)
2843 {
2844 if (hintmsg)
2845 *hintmsg = gettext_noop("Value exceeds integer range.");
2846 return false;
2847 }
2848
2849 if (result)
2850 *result = (int) val;
2851 return true;
2852}
#define gettext_noop(x)
Definition c.h:1285
static bool convert_to_base_unit(double value, const char *unit, int base_unit, double *base_value)
Definition guc.c:2578
static const char *const memory_units_hint
Definition guc.c:121
static const char *const time_units_hint
Definition guc.c:158

References convert_to_base_unit(), fb(), config_generic::flags, gettext_noop, GUC_UNIT, GUC_UNIT_MEMORY, memory_units_hint, result, 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(), parse_subscription_options(), postgres_fdw_validator(), postgresAcquireSampleRowsFunc(), and set_wal_receiver_timeout().

◆ parse_real()

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

Definition at line 2865 of file guc.c.

2866{
2867 double val;
2868 char *endptr;
2869
2870 /* To suppress compiler warnings, always set output params */
2871 if (result)
2872 *result = 0;
2873 if (hintmsg)
2874 *hintmsg = NULL;
2875
2876 errno = 0;
2877 val = strtod(value, &endptr);
2878
2879 if (endptr == value || errno == ERANGE)
2880 return false; /* no HINT for these cases */
2881
2882 /* reject NaN (infinities will fail range checks later) */
2883 if (isnan(val))
2884 return false; /* treat same as syntax error; no HINT */
2885
2886 /* allow whitespace between number and unit */
2887 while (isspace((unsigned char) *endptr))
2888 endptr++;
2889
2890 /* Handle possible unit */
2891 if (*endptr != '\0')
2892 {
2893 if ((flags & GUC_UNIT) == 0)
2894 return false; /* this setting does not accept a unit */
2895
2897 endptr, (flags & GUC_UNIT),
2898 &val))
2899 {
2900 /* invalid unit, or garbage after the unit; set hint and fail. */
2901 if (hintmsg)
2902 {
2903 if (flags & GUC_UNIT_MEMORY)
2905 else
2907 }
2908 return false;
2909 }
2910 }
2911
2912 if (result)
2913 *result = val;
2914 return true;
2915}

References convert_to_base_unit(), fb(), config_generic::flags, GUC_UNIT, GUC_UNIT_MEMORY, memory_units_hint, result, 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 6243 of file guc.c.

6244{
6245 size_t equal_pos;
6246
6247 Assert(string);
6248 Assert(name);
6249 Assert(value);
6250
6251 equal_pos = strcspn(string, "=");
6252
6253 if (string[equal_pos] == '=')
6254 {
6255 *name = palloc(equal_pos + 1);
6256 strlcpy(*name, string, equal_pos + 1);
6257
6258 *value = pstrdup(&string[equal_pos + 1]);
6259 }
6260 else
6261 {
6262 /* no equal sign in string */
6263 *name = pstrdup(string);
6264 *value = NULL;
6265 }
6266
6267 for (char *cp = *name; *cp; cp++)
6268 if (*cp == '-')
6269 *cp = '_';
6270}
void * palloc(Size size)
Definition mcxt.c:1387
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition strlcpy.c:45

References Assert, fb(), 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 1899 of file guc.c.

1900{
1901 SetConfigOption("timezone_abbreviations", "Default",
1903}

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 285 of file guc.c.

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

References bail_out(), CONF_FILE_START_DEPTH, ConfigFileName, config_generic::context, DataDir, ereport, errcode(), errmsg, ERROR, error(), fb(), find_option(), GetConfigOption(), GetCurrentTimestamp(), GetDatabaseEncodingName(), GUC_ACTION_SET, guc_hashtab, GUC_IS_IN_FILE, GUC_PENDING_RESTART, hash_seq_init(), hash_seq_search(), InitializeGUCOptionsFromEnvironment(), IsUnderPostmaster, 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(), set_config_option(), set_config_sourcefile(), set_guc_source(), SetConfigOption(), guc_stack::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 6334 of file guc.c.

6336{
6337 List *gucNames;
6338 List *gucValues;
6339 ListCell *lc1;
6340 ListCell *lc2;
6341
6344 {
6345 char *name = lfirst(lc1);
6346 char *value = lfirst(lc2);
6347
6349 context, source,
6350 action, true, 0, false);
6351
6352 pfree(name);
6353 pfree(value);
6354 }
6355
6358}
void TransformGUCArray(ArrayType *array, List **names, List **values)
Definition guc.c:6279
void list_free(List *list)
Definition list.c:1546
#define forboth(cell1, list1, cell2, list2)
Definition pg_list.h:550
Definition pg_list.h:54

References fb(), 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 2041 of file guc.c.

2042{
2043 GucStack *stack;
2044
2045 /* If we're not inside a nest level, do nothing */
2046 if (GUCNestLevel == 0)
2047 return;
2048
2049 /* Do we already have a stack entry of the current nest level? */
2050 stack = gconf->stack;
2051 if (stack && stack->nest_level >= GUCNestLevel)
2052 {
2053 /* Yes, so adjust its state if necessary */
2054 Assert(stack->nest_level == GUCNestLevel);
2055 switch (action)
2056 {
2057 case GUC_ACTION_SET:
2058 /* SET overrides any prior action at same nest level */
2059 if (stack->state == GUC_SET_LOCAL)
2060 {
2061 /* must discard old masked value */
2063 }
2064 stack->state = GUC_SET;
2065 break;
2066 case GUC_ACTION_LOCAL:
2067 if (stack->state == GUC_SET)
2068 {
2069 /* SET followed by SET LOCAL, remember SET's value */
2070 stack->masked_scontext = gconf->scontext;
2071 stack->masked_srole = gconf->srole;
2072 set_stack_value(gconf, &stack->masked);
2073 stack->state = GUC_SET_LOCAL;
2074 }
2075 /* in all other cases, no change to stack entry */
2076 break;
2077 case GUC_ACTION_SAVE:
2078 /* Could only have a prior SAVE of same variable */
2079 Assert(stack->state == GUC_SAVE);
2080 break;
2081 }
2082 return;
2083 }
2084
2085 /*
2086 * Push a new stack entry
2087 *
2088 * We keep all the stack entries in TopTransactionContext for simplicity.
2089 */
2091 sizeof(GucStack));
2092
2093 stack->prev = gconf->stack;
2094 stack->nest_level = GUCNestLevel;
2095 switch (action)
2096 {
2097 case GUC_ACTION_SET:
2098 stack->state = GUC_SET;
2099 break;
2100 case GUC_ACTION_LOCAL:
2101 stack->state = GUC_LOCAL;
2102 break;
2103 case GUC_ACTION_SAVE:
2104 stack->state = GUC_SAVE;
2105 break;
2106 }
2107 stack->source = gconf->source;
2108 stack->scontext = gconf->scontext;
2109 stack->srole = gconf->srole;
2110 set_stack_value(gconf, &stack->prior);
2111
2112 if (gconf->stack == NULL)
2113 slist_push_head(&guc_stack_list, &gconf->stack_link);
2114 gconf->stack = stack;
2115}
static void set_stack_value(struct config_generic *gconf, config_var_value *val)
Definition guc.c:786
@ GUC_ACTION_SAVE
Definition guc.h:205
@ GUC_ACTION_LOCAL
Definition guc.h:204
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition mcxt.c:1266
MemoryContext TopTransactionContext
Definition mcxt.c:171

References Assert, discard_stack_value(), fb(), 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, set_stack_value(), slist_push_head(), guc_stack::source, guc_stack::srole, 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 6041 of file guc.c.

6042{
6043 char *retptr = *srcptr;
6044 char *ptr;
6045
6046 if (*srcptr >= srcend)
6047 elog(ERROR, "incomplete GUC state");
6048
6049 /* The string variables are all null terminated */
6050 for (ptr = *srcptr; ptr < srcend && *ptr != '\0'; ptr++)
6051 ;
6052
6053 if (ptr >= srcend)
6054 elog(ERROR, "could not find null terminator in GUC state");
6055
6056 /* Set the new position to the byte following the terminating NUL */
6057 *srcptr = ptr + 1;
6058
6059 return retptr;
6060}

References elog, ERROR, and fb().

Referenced by RestoreGUCState().

◆ read_gucstate_binary()

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

Definition at line 6064 of file guc.c.

6065{
6066 if (*srcptr + size > srcend)
6067 elog(ERROR, "incomplete GUC state");
6068
6069 memcpy(dest, *srcptr, size);
6070 *srcptr += size;
6071}

References elog, ERROR, fb(), and memcpy().

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 4938 of file guc.c.

4944{
4945 const char *name = variable->name;
4946 GucStack *oldvarstack = variable->stack;
4947
4948 if (stack != NULL)
4949 {
4950 /* First, recurse, so that stack items are processed bottom to top */
4952 stack->prior.val.stringval,
4953 stack->scontext, stack->source, stack->srole);
4954
4955 /* See how to apply the passed-in value */
4956 switch (stack->state)
4957 {
4958 case GUC_SAVE:
4961 GUC_ACTION_SAVE, true,
4962 WARNING, false);
4963 break;
4964
4965 case GUC_SET:
4968 GUC_ACTION_SET, true,
4969 WARNING, false);
4970 break;
4971
4972 case GUC_LOCAL:
4975 GUC_ACTION_LOCAL, true,
4976 WARNING, false);
4977 break;
4978
4979 case GUC_SET_LOCAL:
4980 /* first, apply the masked value as SET */
4982 stack->masked_scontext,
4984 stack->masked_srole,
4985 GUC_ACTION_SET, true,
4986 WARNING, false);
4987 /* then apply the current value as LOCAL */
4990 GUC_ACTION_LOCAL, true,
4991 WARNING, false);
4992 break;
4993 }
4994
4995 /* If we successfully made a stack entry, adjust its nest level */
4996 if (variable->stack != oldvarstack)
4997 variable->stack->nest_level = stack->nest_level;
4998 }
4999 else
5000 {
5001 /*
5002 * We are at the end of the stack. If the active/previous value is
5003 * different from the reset value, it must represent a previously
5004 * committed session value. Apply it, and then drop the stack entry
5005 * that set_config_option will have created under the impression that
5006 * this is to be just a transactional assignment. (We leak the stack
5007 * entry.)
5008 */
5009 if (curvalue != pHolder->_string.reset_val ||
5010 curscontext != pHolder->reset_scontext ||
5011 cursource != pHolder->reset_source ||
5012 cursrole != pHolder->reset_srole)
5013 {
5016 GUC_ACTION_SET, true, WARNING, false);
5017 if (variable->stack != NULL)
5018 {
5019 slist_delete(&guc_stack_list, &variable->stack_link);
5020 variable->stack = NULL;
5021 }
5022 }
5023 }
5024}
void slist_delete(slist_head *head, const slist_node *node)
Definition ilist.c:31

References fb(), 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(), 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

Definition at line 1633 of file guc.c.

1634{
1635 if (gconf->source != PGC_S_DEFAULT)
1636 dlist_delete(&gconf->nondef_link);
1637 if (gconf->stack != NULL)
1638 slist_delete(&guc_stack_list, &gconf->stack_link);
1639 if (gconf->status & GUC_NEEDS_REPORT)
1640 slist_delete(&guc_report_list, &gconf->report_link);
1641}
static void dlist_delete(dlist_node *node)
Definition ilist.h:405

References dlist_delete(), fb(), GUC_NEEDS_REPORT, guc_report_list, guc_stack_list, PGC_S_DEFAULT, and slist_delete().

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

◆ 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 4438 of file guc.c.

4440{
4441 ConfigVariable *newitem,
4442 *next,
4443 *prev = NULL;
4444
4445 /*
4446 * Remove any existing match(es) for "name". Normally there'd be at most
4447 * one, but if external tools have modified the config file, there could
4448 * be more.
4449 */
4450 for (ConfigVariable *item = *head_p; item != NULL; item = next)
4451 {
4452 next = item->next;
4453 if (guc_name_compare(item->name, name) == 0)
4454 {
4455 /* found a match, delete it */
4456 if (prev)
4457 prev->next = next;
4458 else
4459 *head_p = next;
4460 if (next == NULL)
4461 *tail_p = prev;
4462
4463 pfree(item->name);
4464 pfree(item->value);
4465 pfree(item->filename);
4466 pfree(item);
4467 }
4468 else
4469 prev = item;
4470 }
4471
4472 /* Done if we're trying to delete it */
4473 if (value == NULL)
4474 return;
4475
4476 /* OK, append a new entry */
4477 newitem = palloc_object(ConfigVariable);
4478 newitem->name = pstrdup(name);
4479 newitem->value = pstrdup(value);
4480 newitem->errmsg = NULL;
4481 newitem->filename = pstrdup(""); /* new item has no location */
4482 newitem->sourceline = 0;
4483 newitem->ignore = false;
4484 newitem->applied = false;
4485 newitem->next = NULL;
4486
4487 if (*head_p == NULL)
4488 *head_p = newitem;
4489 else
4490 (*tail_p)->next = newitem;
4491 *tail_p = newitem;
4492}
static int32 next
Definition blutils.c:225
#define palloc_object(type)
Definition fe_memutils.h:74
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, fb(), 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 2503 of file guc.c.

2504{
2505 slist_mutable_iter iter;
2506
2507 /* Quick exit if not (yet) enabled */
2508 if (!reporting_enabled)
2509 return;
2510
2511 /*
2512 * Since in_hot_standby isn't actually changed by normal GUC actions, we
2513 * need a hack to check whether a new value needs to be reported to the
2514 * client. For speed, we rely on the assumption that it can never
2515 * transition from false to true.
2516 */
2518 SetConfigOption("in_hot_standby", "false",
2520
2521 /* Transmit new values of interesting variables */
2523 {
2525 report_link, iter.cur);
2526
2527 Assert((conf->flags & GUC_REPORT) && (conf->status & GUC_NEEDS_REPORT));
2529 conf->status &= ~GUC_NEEDS_REPORT;
2530 slist_delete_current(&iter);
2531 }
2532}
bool in_hot_standby_guc
Definition guc_tables.c:666
slist_node report_link
Definition guc_tables.h:274

References Assert, slist_mutable_iter::cur, fb(), 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(), and slist_foreach_modify.

Referenced by PostgresMain().

◆ ReportGUCOption()

static void ReportGUCOption ( struct config_generic record)
static

Definition at line 2541 of file guc.c.

2542{
2543 char *val = ShowGUCOption(record, false);
2544
2545 if (record->last_reported == NULL ||
2546 strcmp(val, record->last_reported) != 0)
2547 {
2549
2551 pq_sendstring(&msgbuf, record->name);
2554
2555 /*
2556 * We need a long-lifespan copy. If guc_strdup() fails due to OOM,
2557 * we'll set last_reported to NULL and thereby possibly make a
2558 * duplicate report later.
2559 */
2560 guc_free(record->last_reported);
2561 record->last_reported = guc_strdup(LOG, val);
2562 }
2563
2564 pfree(val);
2565}
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
char * last_reported
Definition guc_tables.h:276

References fb(), 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 1910 of file guc.c.

1911{
1912 dlist_mutable_iter iter;
1913
1914 /* We need only consider GUCs not already at PGC_S_DEFAULT */
1916 {
1918 nondef_link, iter.cur);
1919
1920 /* Don't reset non-SET-able values */
1921 if (gconf->context != PGC_SUSET &&
1922 gconf->context != PGC_USERSET)
1923 continue;
1924 /* Don't reset if special exclusion from RESET ALL */
1925 if (gconf->flags & GUC_NO_RESET_ALL)
1926 continue;
1927 /* No need to reset if wasn't SET */
1928 if (gconf->source <= PGC_S_OVERRIDE)
1929 continue;
1930
1931 /* Save old value to support transaction abort */
1933
1934 switch (gconf->vartype)
1935 {
1936 case PGC_BOOL:
1937 {
1938 struct config_bool *conf = &gconf->_bool;
1939
1940 if (conf->assign_hook)
1941 conf->assign_hook(conf->reset_val,
1942 gconf->reset_extra);
1943 *conf->variable = conf->reset_val;
1944 set_extra_field(gconf, &gconf->extra,
1945 gconf->reset_extra);
1946 break;
1947 }
1948 case PGC_INT:
1949 {
1950 struct config_int *conf = &gconf->_int;
1951
1952 if (conf->assign_hook)
1953 conf->assign_hook(conf->reset_val,
1954 gconf->reset_extra);
1955 *conf->variable = conf->reset_val;
1956 set_extra_field(gconf, &gconf->extra,
1957 gconf->reset_extra);
1958 break;
1959 }
1960 case PGC_REAL:
1961 {
1962 struct config_real *conf = &gconf->_real;
1963
1964 if (conf->assign_hook)
1965 conf->assign_hook(conf->reset_val,
1966 gconf->reset_extra);
1967 *conf->variable = conf->reset_val;
1968 set_extra_field(gconf, &gconf->extra,
1969 gconf->reset_extra);
1970 break;
1971 }
1972 case PGC_STRING:
1973 {
1974 struct config_string *conf = &gconf->_string;
1975
1976 if (conf->assign_hook)
1977 conf->assign_hook(conf->reset_val,
1978 gconf->reset_extra);
1979 set_string_field(gconf, conf->variable, conf->reset_val);
1980 set_extra_field(gconf, &gconf->extra,
1981 gconf->reset_extra);
1982 break;
1983 }
1984 case PGC_ENUM:
1985 {
1986 struct config_enum *conf = &gconf->_enum;
1987
1988 if (conf->assign_hook)
1989 conf->assign_hook(conf->reset_val,
1990 gconf->reset_extra);
1991 *conf->variable = conf->reset_val;
1992 set_extra_field(gconf, &gconf->extra,
1993 gconf->reset_extra);
1994 break;
1995 }
1996 }
1997
1998 set_guc_source(gconf, gconf->reset_source);
1999 gconf->scontext = gconf->reset_scontext;
2000 gconf->srole = gconf->reset_srole;
2001
2002 if ((gconf->flags & GUC_REPORT) && !(gconf->status & GUC_NEEDS_REPORT))
2003 {
2004 gconf->status |= GUC_NEEDS_REPORT;
2005 slist_push_head(&guc_report_list, &gconf->report_link);
2006 }
2007 }
2008}
static void push_old_value(struct config_generic *gconf, GucAction action)
Definition guc.c:2041
#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_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, fb(), 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(), set_extra_field(), set_guc_source(), set_string_field(), and slist_push_head().

Referenced by DiscardAll(), and ExecSetVariableStmt().

◆ RestoreGUCState()

void RestoreGUCState ( void gucstate)

Definition at line 6100 of file guc.c.

6101{
6102 char *varname,
6103 *varvalue,
6105 int varsourceline;
6108 Oid varsrole;
6109 char *srcptr = (char *) gucstate;
6110 char *srcend;
6111 Size len;
6112 dlist_mutable_iter iter;
6114
6115 /*
6116 * First, ensure that all potentially-shippable GUCs are reset to their
6117 * default values. We must not touch those GUCs that the leader will
6118 * never ship, while there is no need to touch those that are shippable
6119 * but already have their default values. Thus, this ends up being the
6120 * same test that SerializeGUCState uses, even though the sets of
6121 * variables involved may well be different since the leader's set of
6122 * variables-not-at-default-values can differ from the set that are
6123 * not-default in this freshly started worker.
6124 *
6125 * Once we have set all the potentially-shippable GUCs to default values,
6126 * restoring the GUCs that the leader sent (because they had non-default
6127 * values over there) leads us to exactly the set of GUC values that the
6128 * leader has. This is true even though the worker may have initially
6129 * absorbed postgresql.conf settings that the leader hasn't yet seen, or
6130 * ALTER USER/DATABASE SET settings that were established after the leader
6131 * started.
6132 *
6133 * Note that ensuring all the potential target GUCs are at PGC_S_DEFAULT
6134 * also ensures that set_config_option won't refuse to set them because of
6135 * source-priority comparisons.
6136 */
6138 {
6140 nondef_link, iter.cur);
6141
6142 /* Do nothing if non-shippable or if already at PGC_S_DEFAULT. */
6144 continue;
6145
6146 /*
6147 * We can use InitializeOneGUCOption to reset the GUC to default, but
6148 * first we must free any existing subsidiary data to avoid leaking
6149 * memory. The stack must be empty, but we have to clean up all other
6150 * fields. Beware that there might be duplicate value or "extra"
6151 * pointers. We also have to be sure to take it out of any lists it's
6152 * in.
6153 */
6154 Assert(gconf->stack == NULL);
6155 guc_free(gconf->extra);
6156 guc_free(gconf->last_reported);
6157 guc_free(gconf->sourcefile);
6158 switch (gconf->vartype)
6159 {
6160 case PGC_BOOL:
6161 case PGC_INT:
6162 case PGC_REAL:
6163 case PGC_ENUM:
6164 /* no need to do anything */
6165 break;
6166 case PGC_STRING:
6167 {
6168 struct config_string *conf = &gconf->_string;
6169
6170 guc_free(*conf->variable);
6171 if (conf->reset_val && conf->reset_val != *conf->variable)
6172 guc_free(conf->reset_val);
6173 break;
6174 }
6175 }
6176 if (gconf->reset_extra && gconf->reset_extra != gconf->extra)
6177 guc_free(gconf->reset_extra);
6178 /* Remove it from any lists it's in. */
6180 /* Now we can reset the struct to PGS_S_DEFAULT state. */
6182 }
6183
6184 /* First item is the length of the subsequent data */
6185 memcpy(&len, gucstate, sizeof(len));
6186
6187 srcptr += sizeof(len);
6188 srcend = srcptr + len;
6189
6190 /* If the GUC value check fails, we want errors to show useful context. */
6195
6196 /* Restore all the listed GUCs. */
6197 while (srcptr < srcend)
6198 {
6199 int result;
6201
6202 varname = read_gucstate(&srcptr, srcend);
6205 if (varsourcefile[0])
6207 &varsourceline, sizeof(varsourceline));
6208 else
6209 varsourceline = 0;
6211 &varsource, sizeof(varsource));
6213 &varscontext, sizeof(varscontext));
6215 &varsrole, sizeof(varsrole));
6216
6217 error_context_name_and_value[0] = varname;
6222 GUC_ACTION_SET, true, ERROR, true);
6223 if (result <= 0)
6224 ereport(ERROR,
6226 errmsg("parameter \"%s\" could not be set", varname)));
6227 if (varsourcefile[0])
6230 }
6231
6233}
ErrorContextCallback * error_context_stack
Definition elog.c:99
static void guc_restore_error_context_callback(void *arg)
Definition guc.c:6078
static void read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
Definition guc.c:6064
static char * read_gucstate(char **srcptr, char *srcend)
Definition guc.c:6041
struct ErrorContextCallback * previous
Definition elog.h:298

References ErrorContextCallback::arg, Assert, can_skip_gucvar(), dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, ereport, errcode(), errmsg, ERROR, error_context_stack, fb(), GUC_ACTION_SET, guc_free(), guc_nondef_list, guc_restore_error_context_callback(), InitializeOneGUCOption(), len, memcpy(), config_generic::nondef_link, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, ErrorContextCallback::previous, read_gucstate(), read_gucstate_binary(), RemoveGUCFromLists(), result, set_config_option_ext(), and set_config_sourcefile().

Referenced by ParallelWorkerMain().

◆ RestrictSearchPath()

◆ SelectConfigFiles()

bool SelectConfigFiles ( const char userDoption,
const char progname 
)

Definition at line 1656 of file guc.c.

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

References CONFIG_FILENAME, ConfigFileName, DataDir, FATAL, fb(), find_option(), free, guc_free(), guc_malloc(), HBA_FILENAME, HbaFileName, HOSTS_FILENAME, HostsFileName, IDENT_FILENAME, IdentFileName, make_absolute_path(), PANIC, pg_timezone_abbrev_initialize(), PGC_POSTMASTER, PGC_S_OVERRIDE, ProcessConfigFile(), progname, SetConfigOption(), SetDataDir(), sprintf, stat, userDoption, 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 5931 of file guc.c.

5933{
5934 /* Ignore skippable GUCs. */
5936 return;
5937
5938 do_serialize(destptr, maxbytes, "%s", gconf->name);
5939
5940 switch (gconf->vartype)
5941 {
5942 case PGC_BOOL:
5943 {
5944 struct config_bool *conf = &gconf->_bool;
5945
5947 (*conf->variable ? "true" : "false"));
5948 }
5949 break;
5950
5951 case PGC_INT:
5952 {
5953 struct config_int *conf = &gconf->_int;
5954
5955 do_serialize(destptr, maxbytes, "%d", *conf->variable);
5956 }
5957 break;
5958
5959 case PGC_REAL:
5960 {
5961 struct config_real *conf = &gconf->_real;
5962
5963 do_serialize(destptr, maxbytes, "%.*e",
5964 REALTYPE_PRECISION, *conf->variable);
5965 }
5966 break;
5967
5968 case PGC_STRING:
5969 {
5970 struct config_string *conf = &gconf->_string;
5971
5972 /* NULL becomes empty string, see estimate_variable_size() */
5974 *conf->variable ? *conf->variable : "");
5975 }
5976 break;
5977
5978 case PGC_ENUM:
5979 {
5980 struct config_enum *conf = &gconf->_enum;
5981
5984 }
5985 break;
5986 }
5987
5989 (gconf->sourcefile ? gconf->sourcefile : ""));
5990
5991 if (gconf->sourcefile && gconf->sourcefile[0])
5993 sizeof(gconf->sourceline));
5994
5996 sizeof(gconf->source));
5998 sizeof(gconf->scontext));
6000 sizeof(gconf->srole));
6001}
static void do_serialize(char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
Definition guc.c:5886
static void do_serialize_binary(char **destptr, Size *maxbytes, void *val, Size valsize)
Definition guc.c:5916

References can_skip_gucvar(), config_enum_lookup_by_value(), do_serialize(), do_serialize_binary(), fb(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, and REALTYPE_PRECISION.

Referenced by SerializeGUCState().

◆ SerializeGUCState()

void SerializeGUCState ( Size  maxsize,
char start_address 
)

Definition at line 6008 of file guc.c.

6009{
6010 char *curptr;
6013 dlist_iter iter;
6014
6015 /* Reserve space for saving the actual size of the guc state */
6016 Assert(maxsize > sizeof(actual_size));
6017 curptr = start_address + sizeof(actual_size);
6018 bytes_left = maxsize - sizeof(actual_size);
6019
6020 /* We need only consider GUCs with source not PGC_S_DEFAULT */
6022 {
6024 nondef_link, iter.cur);
6025
6027 }
6028
6029 /* Store actual size without assuming alignment of start_address. */
6032}
static void serialize_variable(char **destptr, Size *maxbytes, struct config_generic *gconf)
Definition guc.c:5931

References Assert, dlist_iter::cur, dlist_container, dlist_foreach, fb(), guc_nondef_list, memcpy(), 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 3248 of file guc.c.

3252{
3253 Oid srole;
3254
3255 /*
3256 * Non-interactive sources should be treated as having all privileges,
3257 * except for PGC_S_CLIENT. Note in particular that this is true for
3258 * pg_db_role_setting sources (PGC_S_GLOBAL etc): we assume a suitable
3259 * privilege check was done when the pg_db_role_setting entry was made.
3260 */
3262 srole = GetUserId();
3263 else
3264 srole = BOOTSTRAP_SUPERUSERID;
3265
3267 context, source, srole,
3268 action, changeVal, elevel,
3269 is_reload);
3270}
int set_config_with_handle(const char *name, config_handle *handle, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition guc.c:3311
@ PGC_S_CLIENT
Definition guc.h:122
@ PGC_S_INTERACTIVE
Definition guc.h:124

References fb(), 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(), test_plan_advice_advisor(), 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 3288 of file guc.c.

3292{
3294 context, source, srole,
3295 action, changeVal, elevel,
3296 is_reload);
3297}

References fb(), 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 4201 of file guc.c.

4202{
4203 struct config_generic *record;
4204 int elevel;
4205
4206 /*
4207 * To avoid cluttering the log, only the postmaster bleats loudly about
4208 * problems with the config file.
4209 */
4210 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4211
4212 record = find_option(name, true, false, elevel);
4213 /* should not happen */
4214 if (record == NULL)
4215 return;
4216
4217 sourcefile = guc_strdup(elevel, sourcefile);
4218 guc_free(record->sourcefile);
4219 record->sourcefile = sourcefile;
4220 record->sourceline = sourceline;
4221}
#define DEBUG3
Definition elog.h:28
char * sourcefile
Definition guc_tables.h:278

References DEBUG3, fb(), 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 3311 of file guc.c.

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

References config_generic::_bool, config_generic::_enum, config_generic::_int, config_generic::_real, config_generic::_string, ACL_SET, ACLCHECK_OK, AmAutoVacuumWorkerProcess, config_bool::boot_val, config_int::boot_val, config_real::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(), fb(), 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_fallthrough, 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, push_old_value(), config_generic::report_link, config_generic::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, 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_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 766 of file guc.c.

767{
768 void *oldval = *field;
769
770 /* Do the assignment */
771 *field = newval;
772
773 /* Free old value if it's not NULL and isn't referenced anymore */
776}

References extra_field_used(), fb(), 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 2018 of file guc.c.

2019{
2020 /* Adjust nondef list membership if appropriate for change */
2021 if (gconf->source == PGC_S_DEFAULT)
2022 {
2023 if (newsource != PGC_S_DEFAULT)
2024 dlist_push_tail(&guc_nondef_list, &gconf->nondef_link);
2025 }
2026 else
2027 {
2028 if (newsource == PGC_S_DEFAULT)
2029 dlist_delete(&gconf->nondef_link);
2030 }
2031 /* Now update the source field */
2032 gconf->source = newsource;
2033}
static void dlist_push_tail(dlist_head *head, dlist_node *node)
Definition ilist.h:364

References dlist_delete(), dlist_push_tail(), fb(), guc_nondef_list, and PGC_S_DEFAULT.

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 786 of file guc.c.

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

References fb(), PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, set_extra_field(), set_string_field(), and val.

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 728 of file guc.c.

729{
730 char *oldval = *field;
731
732 /* Do the assignment */
733 *field = newval;
734
735 /* Free old value if it's not NULL and isn't referenced anymore */
738}

References fb(), 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 5372 of file guc.c.

5373{
5374 char buffer[256];
5375 const char *val;
5376
5377 switch (record->vartype)
5378 {
5379 case PGC_BOOL:
5380 {
5381 const struct config_bool *conf = &record->_bool;
5382
5383 if (conf->show_hook)
5384 val = conf->show_hook();
5385 else
5386 val = *conf->variable ? "on" : "off";
5387 }
5388 break;
5389
5390 case PGC_INT:
5391 {
5392 const struct config_int *conf = &record->_int;
5393
5394 if (conf->show_hook)
5395 val = conf->show_hook();
5396 else
5397 {
5398 /*
5399 * Use int64 arithmetic to avoid overflows in units
5400 * conversion.
5401 */
5402 int64 result = *conf->variable;
5403 const char *unit;
5404
5405 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5407 record->flags & GUC_UNIT,
5408 &result, &unit);
5409 else
5410 unit = "";
5411
5412 snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
5413 result, unit);
5414 val = buffer;
5415 }
5416 }
5417 break;
5418
5419 case PGC_REAL:
5420 {
5421 const struct config_real *conf = &record->_real;
5422
5423 if (conf->show_hook)
5424 val = conf->show_hook();
5425 else
5426 {
5427 double result = *conf->variable;
5428 const char *unit;
5429
5430 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5432 record->flags & GUC_UNIT,
5433 &result, &unit);
5434 else
5435 unit = "";
5436
5437 snprintf(buffer, sizeof(buffer), "%g%s",
5438 result, unit);
5439 val = buffer;
5440 }
5441 }
5442 break;
5443
5444 case PGC_STRING:
5445 {
5446 const struct config_string *conf = &record->_string;
5447
5448 if (conf->show_hook)
5449 val = conf->show_hook();
5450 else if (*conf->variable && **conf->variable)
5451 val = *conf->variable;
5452 else
5453 val = "";
5454 }
5455 break;
5456
5457 case PGC_ENUM:
5458 {
5459 const struct config_enum *conf = &record->_enum;
5460
5461 if (conf->show_hook)
5462 val = conf->show_hook();
5463 else
5464 val = config_enum_lookup_by_value(record, *conf->variable);
5465 }
5466 break;
5467
5468 default:
5469 /* just to keep compiler quiet */
5470 val = "???";
5471 break;
5472 }
5473
5474 return pstrdup(val);
5475}
#define INT64_FORMAT
Definition c.h:634
static void convert_int_from_base_unit(int64 base_value, int base_unit, int64 *value, const char **unit)
Definition guc.c:2635
static void convert_real_from_base_unit(double base_value, int base_unit, double *value, const char **unit)
Definition guc.c:2676

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(), fb(), config_generic::flags, GUC_UNIT, INT64_FORMAT, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, pstrdup(), result, config_bool::show_hook, config_int::show_hook, config_real::show_hook, config_string::show_hook, config_enum::show_hook, snprintf, val, 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 707 of file guc.c.

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

References fb(), guc_stack::masked, guc_stack::prev, guc_stack::prior, config_generic::stack, config_var_val::stringval, and config_var_value::val.

Referenced by set_config_with_handle(), and set_string_field().

◆ TransformGUCArray()

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

Definition at line 6279 of file guc.c.

6280{
6281 Assert(array != NULL);
6282 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6283 Assert(ARR_NDIM(array) == 1);
6284 Assert(ARR_LBOUND(array)[0] == 1);
6285
6286 *names = NIL;
6287 *values = NIL;
6288 for (int i = 1; i <= ARR_DIMS(array)[0]; i++)
6289 {
6290 Datum d;
6291 bool isnull;
6292 char *s;
6293 char *name;
6294 char *value;
6295
6296 d = array_ref(array, 1, &i,
6297 -1 /* varlenarray */ ,
6298 -1 /* TEXT's typlen */ ,
6299 false /* TEXT's typbyval */ ,
6300 TYPALIGN_INT /* TEXT's typalign */ ,
6301 &isnull);
6302
6303 if (isnull)
6304 continue;
6305
6306 s = TextDatumGetCString(d);
6307
6308 ParseLongOption(s, &name, &value);
6309 if (!value)
6310 {
6313 errmsg("could not parse setting for parameter \"%s\"",
6314 name)));
6315 pfree(name);
6316 continue;
6317 }
6318
6319 *names = lappend(*names, name);
6320 *values = lappend(*values, value);
6321
6322 pfree(s);
6323 }
6324}
static Datum values[MAXATTR]
Definition bootstrap.c:190
void ParseLongOption(const char *string, char **name, char **value)
Definition guc.c:6243
#define NIL
Definition pg_list.h:68

References ARR_DIMS, ARR_ELEMTYPE, ARR_LBOUND, ARR_NDIM, array_ref(), Assert, ereport, errcode(), errmsg, fb(), 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 957 of file guc.c.

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

References fb(), 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 6583 of file guc.c.

6586{
6587 struct config_generic *gconf;
6588 bool reset_custom;
6589
6590 /*
6591 * There are three cases to consider:
6592 *
6593 * name is a known GUC variable. Check the value normally, check
6594 * permissions normally (i.e., allow if variable is USERSET, or if it's
6595 * SUSET and user is superuser or holds ACL_SET permissions).
6596 *
6597 * name is not known, but exists or can be created as a placeholder (i.e.,
6598 * it has a valid custom name). We allow this case if you're a superuser,
6599 * otherwise not. Superusers are assumed to know what they're doing. We
6600 * can't allow it for other users, because when the placeholder is
6601 * resolved it might turn out to be a SUSET variable. (With currently
6602 * available infrastructure, we can actually handle such cases within the
6603 * current session --- but once an entry is made in pg_db_role_setting,
6604 * it's assumed to be fully validated.)
6605 *
6606 * name is not known and can't be created as a placeholder. Throw error,
6607 * unless skipIfNoPermissions or reset_custom is true. If reset_custom is
6608 * true, this is a RESET or RESET ALL operation for an unknown custom GUC
6609 * with a reserved prefix, in which case we want to fall through to the
6610 * placeholder case described in the preceding paragraph (else there'd be
6611 * no way for users to remove them). Otherwise, return false.
6612 */
6615 if (!gconf && !reset_custom)
6616 {
6617 /* not known, failed to make a placeholder */
6618 return false;
6619 }
6620
6621 if (!gconf || gconf->flags & GUC_CUSTOM_PLACEHOLDER)
6622 {
6623 /*
6624 * We cannot do any meaningful check on the value, so only permissions
6625 * are useful to check.
6626 */
6627 if (superuser() ||
6629 return true;
6631 return false;
6632 ereport(ERROR,
6634 errmsg("permission denied to set parameter \"%s\"", name)));
6635 }
6636
6637 /* manual permissions check so we can avoid an error being thrown */
6638 if (gconf->context == PGC_USERSET)
6639 /* ok */ ;
6640 else if (gconf->context == PGC_SUSET &&
6641 (superuser() ||
6643 /* ok */ ;
6644 else if (skipIfNoPermissions)
6645 return false;
6646 /* if a permissions error should be thrown, let set_config_option do it */
6647
6648 /* test for permissions and valid option value */
6651 PGC_S_TEST, GUC_ACTION_SET, false, 0, false);
6652
6653 return true;
6654}
@ PGC_S_TEST
Definition guc.h:125

References ACL_SET, ACLCHECK_OK, ereport, errcode(), errmsg, ERROR, fb(), find_option(), 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 4371 of file guc.c.

4372{
4374
4376
4377 /* Emit file header containing warning comment */
4378 appendStringInfoString(&buf, "# Do not edit this file manually!\n");
4379 appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
4380
4381 errno = 0;
4382 if (write(fd, buf.data, buf.len) != buf.len)
4383 {
4384 /* if write didn't set errno, assume problem is no disk space */
4385 if (errno == 0)
4386 errno = ENOSPC;
4387 ereport(ERROR,
4389 errmsg("could not write to file \"%s\": %m", filename)));
4390 }
4391
4392 /* Emit each parameter, properly quoting the value */
4393 for (ConfigVariable *item = head; item != NULL; item = item->next)
4394 {
4395 char *escaped;
4396
4398
4399 appendStringInfoString(&buf, item->name);
4400 appendStringInfoString(&buf, " = '");
4401
4402 escaped = escape_single_quotes_ascii(item->value);
4403 if (!escaped)
4404 ereport(ERROR,
4406 errmsg("out of memory")));
4408 free(escaped);
4409
4410 appendStringInfoString(&buf, "'\n");
4411
4412 errno = 0;
4413 if (write(fd, buf.data, buf.len) != buf.len)
4414 {
4415 /* if write didn't set errno, assume problem is no disk space */
4416 if (errno == 0)
4417 errno = ENOSPC;
4418 ereport(ERROR,
4420 errmsg("could not write to file \"%s\": %m", filename)));
4421 }
4422 }
4423
4424 /* fsync before considering the write to be successful */
4425 if (pg_fsync(fd) != 0)
4426 ereport(ERROR,
4428 errmsg("could not fsync file \"%s\": %m", filename)));
4429
4430 pfree(buf.data);
4431}
int pg_fsync(int fd)
Definition fd.c:390
#define write(a, b, c)
Definition win32.h:14
static char * filename
Definition pg_dumpall.c:133
static char buf[DEFAULT_XLOG_SEG_SIZE]
char * escape_single_quotes_ascii(const char *src)
Definition quotes.c:33
static int fd(const char *x, int i)
void resetStringInfo(StringInfo str)
Definition stringinfo.c:126

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

Referenced by AlterSystemSetConfigFile().

Variable Documentation

◆ GUC_check_errcode_value

◆ 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 226 of file guc.c.

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

◆ GUCMemoryContext

MemoryContext GUCMemoryContext
static

Definition at line 201 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 233 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",
}

Definition at line 192 of file guc.c.

192 {
193 "sort_mem", "work_mem",
194 "vacuum_mem", "maintenance_work_mem",
195 "ssl_ecdh_curve", "ssl_groups",
196 NULL
197};

Referenced by convert_GUC_name_for_parameter_acl(), and find_option().

◆ memory_unit_conversion_table

const unit_conversion memory_unit_conversion_table[]
static

Definition at line 123 of file guc.c.

124{
125 {"TB", GUC_UNIT_BYTE, 1024.0 * 1024.0 * 1024.0 * 1024.0},
126 {"GB", GUC_UNIT_BYTE, 1024.0 * 1024.0 * 1024.0},
127 {"MB", GUC_UNIT_BYTE, 1024.0 * 1024.0},
128 {"kB", GUC_UNIT_BYTE, 1024.0},
129 {"B", GUC_UNIT_BYTE, 1.0},
130
131 {"TB", GUC_UNIT_KB, 1024.0 * 1024.0 * 1024.0},
132 {"GB", GUC_UNIT_KB, 1024.0 * 1024.0},
133 {"MB", GUC_UNIT_KB, 1024.0},
134 {"kB", GUC_UNIT_KB, 1.0},
135 {"B", GUC_UNIT_KB, 1.0 / 1024.0},
136
137 {"TB", GUC_UNIT_MB, 1024.0 * 1024.0},
138 {"GB", GUC_UNIT_MB, 1024.0},
139 {"MB", GUC_UNIT_MB, 1.0},
140 {"kB", GUC_UNIT_MB, 1.0 / 1024.0},
141 {"B", GUC_UNIT_MB, 1.0 / (1024.0 * 1024.0)},
142
143 {"TB", GUC_UNIT_BLOCKS, (1024.0 * 1024.0 * 1024.0) / (BLCKSZ / 1024)},
144 {"GB", GUC_UNIT_BLOCKS, (1024.0 * 1024.0) / (BLCKSZ / 1024)},
145 {"MB", GUC_UNIT_BLOCKS, 1024.0 / (BLCKSZ / 1024)},
146 {"kB", GUC_UNIT_BLOCKS, 1.0 / (BLCKSZ / 1024)},
147 {"B", GUC_UNIT_BLOCKS, 1.0 / BLCKSZ},
148
149 {"TB", GUC_UNIT_XBLOCKS, (1024.0 * 1024.0 * 1024.0) / (XLOG_BLCKSZ / 1024)},
150 {"GB", GUC_UNIT_XBLOCKS, (1024.0 * 1024.0) / (XLOG_BLCKSZ / 1024)},
151 {"MB", GUC_UNIT_XBLOCKS, 1024.0 / (XLOG_BLCKSZ / 1024)},
152 {"kB", GUC_UNIT_XBLOCKS, 1.0 / (XLOG_BLCKSZ / 1024)},
153 {"B", GUC_UNIT_XBLOCKS, 1.0 / XLOG_BLCKSZ},
154
155 {""} /* end of table marker */
156};

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

◆ 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 121 of file guc.c.

Referenced by parse_int(), and parse_real().

◆ reporting_enabled

bool reporting_enabled
static

Definition at line 231 of file guc.c.

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

◆ reserved_class_prefix

List* reserved_class_prefix = NIL
static

Definition at line 80 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 160 of file guc.c.

161{
162 {"d", GUC_UNIT_MS, 1000 * 60 * 60 * 24},
163 {"h", GUC_UNIT_MS, 1000 * 60 * 60},
164 {"min", GUC_UNIT_MS, 1000 * 60},
165 {"s", GUC_UNIT_MS, 1000},
166 {"ms", GUC_UNIT_MS, 1},
167 {"us", GUC_UNIT_MS, 1.0 / 1000},
168
169 {"d", GUC_UNIT_S, 60 * 60 * 24},
170 {"h", GUC_UNIT_S, 60 * 60},
171 {"min", GUC_UNIT_S, 60},
172 {"s", GUC_UNIT_S, 1},
173 {"ms", GUC_UNIT_S, 1.0 / 1000},
174 {"us", GUC_UNIT_S, 1.0 / (1000 * 1000)},
175
176 {"d", GUC_UNIT_MIN, 60 * 24},
177 {"h", GUC_UNIT_MIN, 60},
178 {"min", GUC_UNIT_MIN, 1},
179 {"s", GUC_UNIT_MIN, 1.0 / 60},
180 {"ms", GUC_UNIT_MIN, 1.0 / (1000 * 60)},
181 {"us", GUC_UNIT_MIN, 1.0 / (1000 * 1000 * 60)},
182
183 {""} /* end of table marker */
184};

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 158 of file guc.c.

Referenced by parse_int(), and parse_real().