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

Go to the source code of this file.

Data Structures

struct  unit_conversion
 
struct  GUCHashEntry
 

Macros

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

Functions

static int guc_var_compare (const void *a, const void *b)
 
static uint32 guc_name_hash (const void *key, Size keysize)
 
static int guc_name_match (const void *key1, const void *key2, Size keysize)
 
static void InitializeGUCOptionsFromEnvironment (void)
 
static void InitializeOneGUCOption (struct config_generic *gconf)
 
static void RemoveGUCFromLists (struct config_generic *gconf)
 
static void set_guc_source (struct config_generic *gconf, GucSource newsource)
 
static void pg_timezone_abbrev_initialize (void)
 
static void push_old_value (struct config_generic *gconf, GucAction action)
 
static void ReportGUCOption (struct config_generic *record)
 
static void set_config_sourcefile (const char *name, char *sourcefile, int sourceline)
 
static void reapply_stacked_values (struct config_generic *variable, struct config_string *pHolder, GucStack *stack, const char *curvalue, GucContext curscontext, GucSource cursource, Oid cursrole)
 
static void free_placeholder (struct config_string *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 (struct config_bool *conf, bool *newval, void **extra, GucSource source, int elevel)
 
static bool call_int_check_hook (struct config_int *conf, int *newval, void **extra, GucSource source, int elevel)
 
static bool call_real_check_hook (struct config_real *conf, double *newval, void **extra, GucSource source, int elevel)
 
static bool call_string_check_hook (struct config_string *conf, char **newval, void **extra, GucSource source, int elevel)
 
static bool call_enum_check_hook (struct config_enum *conf, int *newval, void **extra, GucSource source, int elevel)
 
ConfigVariableProcessConfigFileInternal (GucContext context, bool applySettings, int elevel)
 
void * guc_malloc (int elevel, size_t size)
 
void * guc_realloc (int elevel, void *old, size_t size)
 
char * guc_strdup (int elevel, const char *src)
 
void guc_free (void *ptr)
 
static bool string_field_used (struct config_string *conf, char *strval)
 
static void set_string_field (struct config_string *conf, char **field, char *newval)
 
static bool extra_field_used (struct config_generic *gconf, void *extra)
 
static void set_extra_field (struct config_generic *gconf, void **field, void *newval)
 
static void set_stack_value (struct config_generic *gconf, config_var_value *val)
 
static void discard_stack_value (struct config_generic *gconf, config_var_value *val)
 
struct config_generic ** get_guc_variables (int *num_vars)
 
void build_guc_variables (void)
 
static bool add_guc_variable (struct config_generic *var, int elevel)
 
static struct config_genericadd_placeholder_variable (const char *name, int elevel)
 
struct config_genericfind_option (const char *name, bool create_placeholders, bool skip_errors, int elevel)
 
int guc_name_compare (const char *namea, const char *nameb)
 
char * convert_GUC_name_for_parameter_acl (const char *name)
 
void check_GUC_name_for_parameter_acl (const char *name)
 
void InitializeGUCOptions (void)
 
bool SelectConfigFiles (const char *userDoption, const char *progname)
 
void ResetAllOptions (void)
 
void AtStart_GUC (void)
 
int NewGUCNestLevel (void)
 
void RestrictSearchPath (void)
 
void AtEOXact_GUC (bool isCommit, int nestLevel)
 
void BeginReportingGUCOptions (void)
 
void ReportChangedGUCOptions (void)
 
static bool convert_to_base_unit (double value, const char *unit, int base_unit, double *base_value)
 
static void convert_int_from_base_unit (int64 base_value, int base_unit, int64 *value, const char **unit)
 
static void convert_real_from_base_unit (double base_value, int base_unit, double *value, const char **unit)
 
const char * get_config_unit_name (int flags)
 
bool parse_int (const char *value, int *result, int flags, const char **hintmsg)
 
bool parse_real (const char *value, double *result, int flags, const char **hintmsg)
 
const char * config_enum_lookup_by_value (struct config_enum *record, int val)
 
bool config_enum_lookup_by_name (struct config_enum *record, const char *value, int *retval)
 
char * config_enum_get_options (struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
 
static bool parse_and_validate_value (struct config_generic *record, const char *value, GucSource source, int elevel, union config_var_val *newval, void **newextra)
 
int set_config_option (const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
 
int set_config_option_ext (const char *name, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
 
int set_config_with_handle (const char *name, config_handle *handle, const char *value, GucContext context, GucSource source, Oid srole, GucAction action, bool changeVal, int elevel, bool is_reload)
 
config_handleget_config_handle (const char *name)
 
void SetConfigOption (const char *name, const char *value, GucContext context, GucSource source)
 
const char * GetConfigOption (const char *name, bool missing_ok, bool restrict_privileged)
 
const char * GetConfigOptionResetString (const char *name)
 
int GetConfigOptionFlags (const char *name, bool missing_ok)
 
void AlterSystemSetConfigFile (AlterSystemStmt *altersysstmt)
 
static struct config_genericinit_custom_variable (const char *name, const char *short_desc, const char *long_desc, GucContext context, int flags, enum config_type type, size_t sz)
 
static void define_custom_variable (struct config_generic *variable)
 
void DefineCustomBoolVariable (const char *name, const char *short_desc, const char *long_desc, bool *valueAddr, bool bootValue, GucContext context, int flags, GucBoolCheckHook check_hook, GucBoolAssignHook assign_hook, GucShowHook show_hook)
 
void DefineCustomIntVariable (const char *name, const char *short_desc, const char *long_desc, int *valueAddr, int bootValue, int minValue, int maxValue, GucContext context, int flags, GucIntCheckHook check_hook, GucIntAssignHook assign_hook, GucShowHook show_hook)
 
void DefineCustomRealVariable (const char *name, const char *short_desc, const char *long_desc, double *valueAddr, double bootValue, double minValue, double maxValue, GucContext context, int flags, GucRealCheckHook check_hook, GucRealAssignHook assign_hook, GucShowHook show_hook)
 
void DefineCustomStringVariable (const char *name, const char *short_desc, const char *long_desc, char **valueAddr, const char *bootValue, GucContext context, int flags, GucStringCheckHook check_hook, GucStringAssignHook assign_hook, GucShowHook show_hook)
 
void DefineCustomEnumVariable (const char *name, const char *short_desc, const char *long_desc, int *valueAddr, int bootValue, const struct config_enum_entry *options, GucContext context, int flags, GucEnumCheckHook check_hook, GucEnumAssignHook assign_hook, GucShowHook show_hook)
 
void MarkGUCPrefixReserved (const char *className)
 
struct config_generic ** get_explain_guc_options (int *num)
 
char * GetConfigOptionByName (const char *name, const char **varname, bool missing_ok)
 
char * ShowGUCOption (struct config_generic *record, bool use_units)
 
static bool can_skip_gucvar (struct config_generic *gconf)
 
static Size estimate_variable_size (struct config_generic *gconf)
 
Size EstimateGUCStateSpace (void)
 
static void do_serialize_binary (char **destptr, Size *maxbytes, void *val, Size valsize)
 
static void serialize_variable (char **destptr, Size *maxbytes, struct config_generic *gconf)
 
void SerializeGUCState (Size maxsize, char *start_address)
 
static char * read_gucstate (char **srcptr, char *srcend)
 
static void read_gucstate_binary (char **srcptr, char *srcend, void *dest, Size size)
 
static void guc_restore_error_context_callback (void *arg)
 
void RestoreGUCState (void *gucstate)
 
void ParseLongOption (const char *string, char **name, char **value)
 
void TransformGUCArray (ArrayType *array, List **names, List **values)
 
void ProcessGUCArray (ArrayType *array, GucContext context, GucSource source, GucAction action)
 
ArrayTypeGUCArrayAdd (ArrayType *array, const char *name, const char *value)
 
ArrayTypeGUCArrayDelete (ArrayType *array, const char *name)
 
ArrayTypeGUCArrayReset (ArrayType *array)
 
void GUC_check_errcode (int sqlerrcode)
 

Variables

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

Macro Definition Documentation

◆ CONFIG_FILENAME

#define CONFIG_FILENAME   "postgresql.conf"

Definition at line 56 of file guc.c.

◆ GUC_SAFE_SEARCH_PATH

#define GUC_SAFE_SEARCH_PATH   "pg_catalog, pg_temp"

Definition at line 75 of file guc.c.

◆ HBA_FILENAME

#define HBA_FILENAME   "pg_hba.conf"

Definition at line 57 of file guc.c.

◆ IDENT_FILENAME

#define IDENT_FILENAME   "pg_ident.conf"

Definition at line 58 of file guc.c.

◆ MAX_UNIT_LEN

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

Definition at line 102 of file guc.c.

◆ newval [1/5]

#define newval   (newval_union.boolval)

◆ newval [2/5]

#define newval   (newval_union.intval)

◆ newval [3/5]

#define newval   (newval_union.realval)

◆ newval [4/5]

#define newval   (newval_union.stringval)

◆ newval [5/5]

#define newval   (newval_union.enumval)

◆ REALTYPE_PRECISION

#define REALTYPE_PRECISION   17

Definition at line 69 of file guc.c.

Function Documentation

◆ add_guc_variable()

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

Definition at line 1049 of file guc.c.

1050{
1051 GUCHashEntry *hentry;
1052 bool found;
1053
1055 &var->name,
1057 &found);
1058 if (unlikely(hentry == NULL))
1059 {
1060 ereport(elevel,
1061 (errcode(ERRCODE_OUT_OF_MEMORY),
1062 errmsg("out of memory")));
1063 return false; /* out of memory */
1064 }
1065 Assert(!found);
1066 hentry->gucvar = var;
1067 return true;
1068}
#define unlikely(x)
Definition: c.h:402
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:952
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ereport(elevel,...)
Definition: elog.h:150
static HTAB * guc_hashtab
Definition: guc.c:213
Assert(PointerIsAligned(start, uint64))
@ HASH_ENTER_NULL
Definition: hsearch.h:116
struct config_generic * gucvar
Definition: guc.c:210
const char * name
Definition: guc_tables.h:174

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

Referenced by add_placeholder_variable(), and define_custom_variable().

◆ add_placeholder_variable()

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

Definition at line 1179 of file guc.c.

1180{
1181 size_t sz = sizeof(struct config_string) + sizeof(char *);
1182 struct config_string *var;
1183 struct config_generic *gen;
1184
1185 var = (struct config_string *) guc_malloc(elevel, sz);
1186 if (var == NULL)
1187 return NULL;
1188 memset(var, 0, sz);
1189 gen = &var->gen;
1190
1191 gen->name = guc_strdup(elevel, name);
1192 if (gen->name == NULL)
1193 {
1194 guc_free(var);
1195 return NULL;
1196 }
1197
1200 gen->short_desc = "GUC placeholder variable";
1203
1204 /*
1205 * The char* is allocated at the end of the struct since we have no
1206 * 'static' place to point to. Note that the current value, as well as
1207 * the boot and reset values, start out NULL.
1208 */
1209 var->variable = (char **) (var + 1);
1210
1211 if (!add_guc_variable((struct config_generic *) var, elevel))
1212 {
1213 guc_free(unconstify(char *, gen->name));
1214 guc_free(var);
1215 return NULL;
1216 }
1217
1218 return gen;
1219}
#define unconstify(underlying_type, expr)
Definition: c.h:1244
void guc_free(void *ptr)
Definition: guc.c:691
void * guc_malloc(int elevel, size_t size)
Definition: guc.c:640
static bool add_guc_variable(struct config_generic *var, int elevel)
Definition: guc.c:1049
char * guc_strdup(int elevel, const char *src)
Definition: guc.c:679
#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:176
GucContext context
Definition: guc_tables.h:175
const char * short_desc
Definition: guc_tables.h:177
enum config_type vartype
Definition: guc_tables.h:181
struct config_generic gen
Definition: guc_tables.h:274
char ** variable
Definition: guc_tables.h:276
const char * name

References add_guc_variable(), config_generic::context, CUSTOM_OPTIONS, config_generic::flags, config_string::gen, 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 4613 of file guc.c.

4614{
4615 char *name;
4616 char *value;
4617 bool resetall = false;
4618 ConfigVariable *head = NULL;
4619 ConfigVariable *tail = NULL;
4620 volatile int Tmpfd;
4621 char AutoConfFileName[MAXPGPATH];
4622 char AutoConfTmpFileName[MAXPGPATH];
4623
4624 /*
4625 * Extract statement arguments
4626 */
4627 name = altersysstmt->setstmt->name;
4628
4629 if (!AllowAlterSystem)
4630 ereport(ERROR,
4631 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
4632 errmsg("ALTER SYSTEM is not allowed in this environment")));
4633
4634 switch (altersysstmt->setstmt->kind)
4635 {
4636 case VAR_SET_VALUE:
4637 value = ExtractSetVariableArgs(altersysstmt->setstmt);
4638 break;
4639
4640 case VAR_SET_DEFAULT:
4641 case VAR_RESET:
4642 value = NULL;
4643 break;
4644
4645 case VAR_RESET_ALL:
4646 value = NULL;
4647 resetall = true;
4648 break;
4649
4650 default:
4651 elog(ERROR, "unrecognized alter system stmt type: %d",
4652 altersysstmt->setstmt->kind);
4653 break;
4654 }
4655
4656 /*
4657 * Check permission to run ALTER SYSTEM on the target variable
4658 */
4659 if (!superuser())
4660 {
4661 if (resetall)
4662 ereport(ERROR,
4663 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4664 errmsg("permission denied to perform ALTER SYSTEM RESET ALL")));
4665 else
4666 {
4667 AclResult aclresult;
4668
4669 aclresult = pg_parameter_aclcheck(name, GetUserId(),
4671 if (aclresult != ACLCHECK_OK)
4672 ereport(ERROR,
4673 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4674 errmsg("permission denied to set parameter \"%s\"",
4675 name)));
4676 }
4677 }
4678
4679 /*
4680 * Unless it's RESET_ALL, validate the target variable and value
4681 */
4682 if (!resetall)
4683 {
4684 struct config_generic *record;
4685
4686 /* We don't want to create a placeholder if there's not one already */
4687 record = find_option(name, false, true, DEBUG5);
4688 if (record != NULL)
4689 {
4690 /*
4691 * Don't allow parameters that can't be set in configuration files
4692 * to be set in PG_AUTOCONF_FILENAME file.
4693 */
4694 if ((record->context == PGC_INTERNAL) ||
4695 (record->flags & GUC_DISALLOW_IN_FILE) ||
4696 (record->flags & GUC_DISALLOW_IN_AUTO_FILE))
4697 ereport(ERROR,
4698 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4699 errmsg("parameter \"%s\" cannot be changed",
4700 name)));
4701
4702 /*
4703 * If a value is specified, verify that it's sane.
4704 */
4705 if (value)
4706 {
4707 union config_var_val newval;
4708 void *newextra = NULL;
4709
4710 if (!parse_and_validate_value(record, value,
4712 &newval, &newextra))
4713 ereport(ERROR,
4714 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4715 errmsg("invalid value for parameter \"%s\": \"%s\"",
4716 name, value)));
4717
4718 if (record->vartype == PGC_STRING && newval.stringval != NULL)
4719 guc_free(newval.stringval);
4720 guc_free(newextra);
4721 }
4722 }
4723 else
4724 {
4725 /*
4726 * Variable not known; check we'd be allowed to create it. (We
4727 * cannot validate the value, but that's fine. A non-core GUC in
4728 * the config file cannot cause postmaster start to fail, so we
4729 * don't have to be too tense about possibly installing a bad
4730 * value.)
4731 *
4732 * As an exception, we skip this check if this is a RESET command
4733 * for an unknown custom GUC, else there'd be no way for users to
4734 * remove such settings with reserved prefixes.
4735 */
4738 }
4739
4740 /*
4741 * We must also reject values containing newlines, because the grammar
4742 * for config files doesn't support embedded newlines in string
4743 * literals.
4744 */
4745 if (value && strchr(value, '\n'))
4746 ereport(ERROR,
4747 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4748 errmsg("parameter value for ALTER SYSTEM must not contain a newline")));
4749 }
4750
4751 /*
4752 * PG_AUTOCONF_FILENAME and its corresponding temporary file are always in
4753 * the data directory, so we can reference them by simple relative paths.
4754 */
4755 snprintf(AutoConfFileName, sizeof(AutoConfFileName), "%s",
4757 snprintf(AutoConfTmpFileName, sizeof(AutoConfTmpFileName), "%s.%s",
4758 AutoConfFileName,
4759 "tmp");
4760
4761 /*
4762 * Only one backend is allowed to operate on PG_AUTOCONF_FILENAME at a
4763 * time. Use AutoFileLock to ensure that. We must hold the lock while
4764 * reading the old file contents.
4765 */
4766 LWLockAcquire(AutoFileLock, LW_EXCLUSIVE);
4767
4768 /*
4769 * If we're going to reset everything, then no need to open or parse the
4770 * old file. We'll just write out an empty list.
4771 */
4772 if (!resetall)
4773 {
4774 struct stat st;
4775
4776 if (stat(AutoConfFileName, &st) == 0)
4777 {
4778 /* open old file PG_AUTOCONF_FILENAME */
4779 FILE *infile;
4780
4781 infile = AllocateFile(AutoConfFileName, "r");
4782 if (infile == NULL)
4783 ereport(ERROR,
4785 errmsg("could not open file \"%s\": %m",
4786 AutoConfFileName)));
4787
4788 /* parse it */
4789 if (!ParseConfigFp(infile, AutoConfFileName, CONF_FILE_START_DEPTH,
4790 LOG, &head, &tail))
4791 ereport(ERROR,
4792 (errcode(ERRCODE_CONFIG_FILE_ERROR),
4793 errmsg("could not parse contents of file \"%s\"",
4794 AutoConfFileName)));
4795
4797 }
4798
4799 /*
4800 * Now, replace any existing entry with the new value, or add it if
4801 * not present.
4802 */
4803 replace_auto_config_value(&head, &tail, name, value);
4804 }
4805
4806 /*
4807 * Invoke the post-alter hook for setting this GUC variable. GUCs
4808 * typically do not have corresponding entries in pg_parameter_acl, so we
4809 * call the hook using the name rather than a potentially-non-existent
4810 * OID. Nonetheless, we pass ParameterAclRelationId so that this call
4811 * context can be distinguished from others. (Note that "name" will be
4812 * NULL in the RESET ALL case.)
4813 *
4814 * We do this here rather than at the end, because ALTER SYSTEM is not
4815 * transactional. If the hook aborts our transaction, it will be cleaner
4816 * to do so before we touch any files.
4817 */
4818 InvokeObjectPostAlterHookArgStr(ParameterAclRelationId, name,
4820 altersysstmt->setstmt->kind,
4821 false);
4822
4823 /*
4824 * To ensure crash safety, first write the new file data to a temp file,
4825 * then atomically rename it into place.
4826 *
4827 * If there is a temp file left over due to a previous crash, it's okay to
4828 * truncate and reuse it.
4829 */
4830 Tmpfd = BasicOpenFile(AutoConfTmpFileName,
4831 O_CREAT | O_RDWR | O_TRUNC);
4832 if (Tmpfd < 0)
4833 ereport(ERROR,
4835 errmsg("could not open file \"%s\": %m",
4836 AutoConfTmpFileName)));
4837
4838 /*
4839 * Use a TRY block to clean up the file if we fail. Since we need a TRY
4840 * block anyway, OK to use BasicOpenFile rather than OpenTransientFile.
4841 */
4842 PG_TRY();
4843 {
4844 /* Write and sync the new contents to the temporary file */
4845 write_auto_conf_file(Tmpfd, AutoConfTmpFileName, head);
4846
4847 /* Close before renaming; may be required on some platforms */
4848 close(Tmpfd);
4849 Tmpfd = -1;
4850
4851 /*
4852 * As the rename is atomic operation, if any problem occurs after this
4853 * at worst it can lose the parameters set by last ALTER SYSTEM
4854 * command.
4855 */
4856 durable_rename(AutoConfTmpFileName, AutoConfFileName, ERROR);
4857 }
4858 PG_CATCH();
4859 {
4860 /* Close file first, else unlink might fail on some platforms */
4861 if (Tmpfd >= 0)
4862 close(Tmpfd);
4863
4864 /* Unlink, but ignore any error */
4865 (void) unlink(AutoConfTmpFileName);
4866
4867 PG_RE_THROW();
4868 }
4869 PG_END_TRY();
4870
4871 FreeConfigVariables(head);
4872
4873 LWLockRelease(AutoFileLock);
4874}
AclResult
Definition: acl.h:182
@ ACLCHECK_OK
Definition: acl.h:183
AclResult pg_parameter_aclcheck(const char *name, Oid roleid, AclMode mode)
Definition: aclchk.c:4062
#define CONF_FILE_START_DEPTH
Definition: conffiles.h:17
int errcode_for_file_access(void)
Definition: elog.c:877
#define LOG
Definition: elog.h:31
#define PG_RE_THROW()
Definition: elog.h:405
#define PG_TRY(...)
Definition: elog.h:372
#define PG_END_TRY(...)
Definition: elog.h:397
#define ERROR
Definition: elog.h:39
#define PG_CATCH(...)
Definition: elog.h:382
#define elog(elevel,...)
Definition: elog.h:226
#define DEBUG5
Definition: elog.h:26
int durable_rename(const char *oldfile, const char *newfile, int elevel)
Definition: fd.c:779
int BasicOpenFile(const char *fileName, int fileFlags)
Definition: fd.c:1086
int FreeFile(FILE *file)
Definition: fd.c:2840
FILE * AllocateFile(const char *name, const char *mode)
Definition: fd.c:2641
void FreeConfigVariables(ConfigVariable *list)
Definition: guc-file.l:617
bool ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition: guc-file.l:350
static bool assignable_custom_variable_name(const char *name, bool skip_errors, int elevel)
Definition: guc.c:1123
static bool valid_custom_variable_name(const char *name)
Definition: guc.c:1078
static bool parse_and_validate_value(struct config_generic *record, const char *value, GucSource source, int elevel, union config_var_val *newval, void **newextra)
Definition: guc.c:3135
static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
Definition: guc.c:4475
#define newval
struct config_generic * find_option(const char *name, bool create_placeholders, bool skip_errors, int elevel)
Definition: guc.c:1237
static void replace_auto_config_value(ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
Definition: guc.c:4543
#define PG_AUTOCONF_FILENAME
Definition: guc.h:37
#define GUC_DISALLOW_IN_FILE
Definition: guc.h:222
@ PGC_S_FILE
Definition: guc.h:116
#define GUC_DISALLOW_IN_AUTO_FILE
Definition: guc.h:227
@ PGC_INTERNAL
Definition: guc.h:73
char * ExtractSetVariableArgs(VariableSetStmt *stmt)
Definition: guc_funcs.c:167
bool AllowAlterSystem
Definition: guc_tables.c:506
static struct @169 value
#define close(a)
Definition: win32.h:12
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1174
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1894
@ LW_EXCLUSIVE
Definition: lwlock.h:112
Oid GetUserId(void)
Definition: miscinit.c:469
#define InvokeObjectPostAlterHookArgStr(classId, objectName, subId, auxiliaryId, is_internal)
Definition: objectaccess.h:247
@ VAR_SET_DEFAULT
Definition: parsenodes.h:2695
@ VAR_RESET
Definition: parsenodes.h:2698
@ VAR_SET_VALUE
Definition: parsenodes.h:2694
@ VAR_RESET_ALL
Definition: parsenodes.h:2699
#define ACL_ALTER_SYSTEM
Definition: parsenodes.h:89
#define MAXPGPATH
#define snprintf
Definition: port.h:239
VariableSetStmt * setstmt
Definition: parsenodes.h:3951
VariableSetKind kind
Definition: parsenodes.h:2707
bool superuser(void)
Definition: superuser.c:46
#define stat
Definition: win32_port.h:274
static void infile(const char *name)
Definition: zic.c:1243

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

Referenced by standard_ProcessUtility().

◆ assignable_custom_variable_name()

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

Definition at line 1123 of file guc.c.

1124{
1125 /* If there's no separator, it can't be a custom variable */
1126 const char *sep = strchr(name, GUC_QUALIFIER_SEPARATOR);
1127
1128 if (sep != NULL)
1129 {
1130 size_t classLen = sep - name;
1131 ListCell *lc;
1132
1133 /* The name must be syntactically acceptable ... */
1135 {
1136 if (!skip_errors)
1137 ereport(elevel,
1138 (errcode(ERRCODE_INVALID_NAME),
1139 errmsg("invalid configuration parameter name \"%s\"",
1140 name),
1141 errdetail("Custom parameter names must be two or more simple identifiers separated by dots.")));
1142 return false;
1143 }
1144 /* ... and it must not match any previously-reserved prefix */
1145 foreach(lc, reserved_class_prefix)
1146 {
1147 const char *rcprefix = lfirst(lc);
1148
1149 if (strlen(rcprefix) == classLen &&
1150 strncmp(name, rcprefix, classLen) == 0)
1151 {
1152 if (!skip_errors)
1153 ereport(elevel,
1154 (errcode(ERRCODE_INVALID_NAME),
1155 errmsg("invalid configuration parameter name \"%s\"",
1156 name),
1157 errdetail("\"%s\" is a reserved prefix.",
1158 rcprefix)));
1159 return false;
1160 }
1161 }
1162 /* OK to create it */
1163 return true;
1164 }
1165
1166 /* Unrecognized single-part name */
1167 if (!skip_errors)
1168 ereport(elevel,
1169 (errcode(ERRCODE_UNDEFINED_OBJECT),
1170 errmsg("unrecognized configuration parameter \"%s\"",
1171 name)));
1172 return false;
1173}
int errdetail(const char *fmt,...)
Definition: elog.c:1207
static List * reserved_class_prefix
Definition: guc.c:79
#define GUC_QUALIFIER_SEPARATOR
Definition: guc.h:208
#define lfirst(lc)
Definition: pg_list.h:172

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

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

◆ AtEOXact_GUC()

void AtEOXact_GUC ( bool  isCommit,
int  nestLevel 
)

Definition at line 2268 of file guc.c.

2269{
2270 slist_mutable_iter iter;
2271
2272 /*
2273 * Note: it's possible to get here with GUCNestLevel == nestLevel-1 during
2274 * abort, if there is a failure during transaction start before
2275 * AtStart_GUC is called.
2276 */
2277 Assert(nestLevel > 0 &&
2278 (nestLevel <= GUCNestLevel ||
2279 (nestLevel == GUCNestLevel + 1 && !isCommit)));
2280
2281 /* We need only process GUCs having nonempty stacks */
2283 {
2284 struct config_generic *gconf = slist_container(struct config_generic,
2285 stack_link, iter.cur);
2286 GucStack *stack;
2287
2288 /*
2289 * Process and pop each stack entry within the nest level. To simplify
2290 * fmgr_security_definer() and other places that use GUC_ACTION_SAVE,
2291 * we allow failure exit from code that uses a local nest level to be
2292 * recovered at the surrounding transaction or subtransaction abort;
2293 * so there could be more than one stack entry to pop.
2294 */
2295 while ((stack = gconf->stack) != NULL &&
2296 stack->nest_level >= nestLevel)
2297 {
2298 GucStack *prev = stack->prev;
2299 bool restorePrior = false;
2300 bool restoreMasked = false;
2301 bool changed;
2302
2303 /*
2304 * In this next bit, if we don't set either restorePrior or
2305 * restoreMasked, we must "discard" any unwanted fields of the
2306 * stack entries to avoid leaking memory. If we do set one of
2307 * those flags, unused fields will be cleaned up after restoring.
2308 */
2309 if (!isCommit) /* if abort, always restore prior value */
2310 restorePrior = true;
2311 else if (stack->state == GUC_SAVE)
2312 restorePrior = true;
2313 else if (stack->nest_level == 1)
2314 {
2315 /* transaction commit */
2316 if (stack->state == GUC_SET_LOCAL)
2317 restoreMasked = true;
2318 else if (stack->state == GUC_SET)
2319 {
2320 /* we keep the current active value */
2322 }
2323 else /* must be GUC_LOCAL */
2324 restorePrior = true;
2325 }
2326 else if (prev == NULL ||
2327 prev->nest_level < stack->nest_level - 1)
2328 {
2329 /* decrement entry's level and do not pop it */
2330 stack->nest_level--;
2331 continue;
2332 }
2333 else
2334 {
2335 /*
2336 * We have to merge this stack entry into prev. See README for
2337 * discussion of this bit.
2338 */
2339 switch (stack->state)
2340 {
2341 case GUC_SAVE:
2342 Assert(false); /* can't get here */
2343 break;
2344
2345 case GUC_SET:
2346 /* next level always becomes SET */
2348 if (prev->state == GUC_SET_LOCAL)
2349 discard_stack_value(gconf, &prev->masked);
2350 prev->state = GUC_SET;
2351 break;
2352
2353 case GUC_LOCAL:
2354 if (prev->state == GUC_SET)
2355 {
2356 /* LOCAL migrates down */
2358 prev->masked_srole = stack->srole;
2359 prev->masked = stack->prior;
2360 prev->state = GUC_SET_LOCAL;
2361 }
2362 else
2363 {
2364 /* else just forget this stack level */
2366 }
2367 break;
2368
2369 case GUC_SET_LOCAL:
2370 /* prior state at this level no longer wanted */
2372 /* copy down the masked state */
2375 if (prev->state == GUC_SET_LOCAL)
2376 discard_stack_value(gconf, &prev->masked);
2377 prev->masked = stack->masked;
2378 prev->state = GUC_SET_LOCAL;
2379 break;
2380 }
2381 }
2382
2383 changed = false;
2384
2385 if (restorePrior || restoreMasked)
2386 {
2387 /* Perform appropriate restoration of the stacked value */
2388 config_var_value newvalue;
2389 GucSource newsource;
2390 GucContext newscontext;
2391 Oid newsrole;
2392
2393 if (restoreMasked)
2394 {
2395 newvalue = stack->masked;
2396 newsource = PGC_S_SESSION;
2397 newscontext = stack->masked_scontext;
2398 newsrole = stack->masked_srole;
2399 }
2400 else
2401 {
2402 newvalue = stack->prior;
2403 newsource = stack->source;
2404 newscontext = stack->scontext;
2405 newsrole = stack->srole;
2406 }
2407
2408 switch (gconf->vartype)
2409 {
2410 case PGC_BOOL:
2411 {
2412 struct config_bool *conf = (struct config_bool *) gconf;
2413 bool newval = newvalue.val.boolval;
2414 void *newextra = newvalue.extra;
2415
2416 if (*conf->variable != newval ||
2417 conf->gen.extra != newextra)
2418 {
2419 if (conf->assign_hook)
2420 conf->assign_hook(newval, newextra);
2421 *conf->variable = newval;
2422 set_extra_field(&conf->gen, &conf->gen.extra,
2423 newextra);
2424 changed = true;
2425 }
2426 break;
2427 }
2428 case PGC_INT:
2429 {
2430 struct config_int *conf = (struct config_int *) gconf;
2431 int newval = newvalue.val.intval;
2432 void *newextra = newvalue.extra;
2433
2434 if (*conf->variable != newval ||
2435 conf->gen.extra != newextra)
2436 {
2437 if (conf->assign_hook)
2438 conf->assign_hook(newval, newextra);
2439 *conf->variable = newval;
2440 set_extra_field(&conf->gen, &conf->gen.extra,
2441 newextra);
2442 changed = true;
2443 }
2444 break;
2445 }
2446 case PGC_REAL:
2447 {
2448 struct config_real *conf = (struct config_real *) gconf;
2449 double newval = newvalue.val.realval;
2450 void *newextra = newvalue.extra;
2451
2452 if (*conf->variable != newval ||
2453 conf->gen.extra != newextra)
2454 {
2455 if (conf->assign_hook)
2456 conf->assign_hook(newval, newextra);
2457 *conf->variable = newval;
2458 set_extra_field(&conf->gen, &conf->gen.extra,
2459 newextra);
2460 changed = true;
2461 }
2462 break;
2463 }
2464 case PGC_STRING:
2465 {
2466 struct config_string *conf = (struct config_string *) gconf;
2467 char *newval = newvalue.val.stringval;
2468 void *newextra = newvalue.extra;
2469
2470 if (*conf->variable != newval ||
2471 conf->gen.extra != newextra)
2472 {
2473 if (conf->assign_hook)
2474 conf->assign_hook(newval, newextra);
2475 set_string_field(conf, conf->variable, newval);
2476 set_extra_field(&conf->gen, &conf->gen.extra,
2477 newextra);
2478 changed = true;
2479 }
2480
2481 /*
2482 * Release stacked values if not used anymore. We
2483 * could use discard_stack_value() here, but since
2484 * we have type-specific code anyway, might as
2485 * well inline it.
2486 */
2487 set_string_field(conf, &stack->prior.val.stringval, NULL);
2488 set_string_field(conf, &stack->masked.val.stringval, NULL);
2489 break;
2490 }
2491 case PGC_ENUM:
2492 {
2493 struct config_enum *conf = (struct config_enum *) gconf;
2494 int newval = newvalue.val.enumval;
2495 void *newextra = newvalue.extra;
2496
2497 if (*conf->variable != newval ||
2498 conf->gen.extra != newextra)
2499 {
2500 if (conf->assign_hook)
2501 conf->assign_hook(newval, newextra);
2502 *conf->variable = newval;
2503 set_extra_field(&conf->gen, &conf->gen.extra,
2504 newextra);
2505 changed = true;
2506 }
2507 break;
2508 }
2509 }
2510
2511 /*
2512 * Release stacked extra values if not used anymore.
2513 */
2514 set_extra_field(gconf, &(stack->prior.extra), NULL);
2515 set_extra_field(gconf, &(stack->masked.extra), NULL);
2516
2517 /* And restore source information */
2518 set_guc_source(gconf, newsource);
2519 gconf->scontext = newscontext;
2520 gconf->srole = newsrole;
2521 }
2522
2523 /*
2524 * Pop the GUC's state stack; if it's now empty, remove the GUC
2525 * from guc_stack_list.
2526 */
2527 gconf->stack = prev;
2528 if (prev == NULL)
2529 slist_delete_current(&iter);
2530 pfree(stack);
2531
2532 /* Report new value if we changed it */
2533 if (changed && (gconf->flags & GUC_REPORT) &&
2534 !(gconf->status & GUC_NEEDS_REPORT))
2535 {
2536 gconf->status |= GUC_NEEDS_REPORT;
2538 }
2539 } /* end of stack-popping loop */
2540 }
2541
2542 /* Update nesting level */
2543 GUCNestLevel = nestLevel - 1;
2544}
static slist_head guc_report_list
Definition: guc.c:227
static void set_string_field(struct config_string *conf, char **field, char *newval)
Definition: guc.c:733
static int GUCNestLevel
Definition: guc.c:232
static void discard_stack_value(struct config_generic *gconf, config_var_value *val)
Definition: guc.c:848
static slist_head guc_stack_list
Definition: guc.c:225
static void set_guc_source(struct config_generic *gconf, GucSource newsource)
Definition: guc.c:2117
static void set_extra_field(struct config_generic *gconf, void **field, void *newval)
Definition: guc.c:794
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:211
@ PGC_BOOL
Definition: guc_tables.h:25
@ PGC_ENUM
Definition: guc_tables.h:29
@ PGC_REAL
Definition: guc_tables.h:27
@ PGC_INT
Definition: guc_tables.h:26
static void slist_delete_current(slist_mutable_iter *iter)
Definition: ilist.h:1084
#define slist_foreach_modify(iter, lhead)
Definition: ilist.h:1148
static void slist_push_head(slist_head *head, slist_node *node)
Definition: ilist.h:1006
#define slist_container(type, membername, ptr)
Definition: ilist.h:1106
void pfree(void *pointer)
Definition: mcxt.c:1594
unsigned int Oid
Definition: postgres_ext.h:32
struct config_generic gen
Definition: guc_tables.h:218
bool * variable
Definition: guc_tables.h:220
GucBoolAssignHook assign_hook
Definition: guc_tables.h:223
int * variable
Definition: guc_tables.h:290
GucEnumAssignHook assign_hook
Definition: guc_tables.h:294
struct config_generic gen
Definition: guc_tables.h:288
GucContext scontext
Definition: guc_tables.h:185
slist_node stack_link
Definition: guc_tables.h:193
GucStack * stack
Definition: guc_tables.h:189
slist_node report_link
Definition: guc_tables.h:195
GucIntAssignHook assign_hook
Definition: guc_tables.h:239
int * variable
Definition: guc_tables.h:234
struct config_generic gen
Definition: guc_tables.h:232
GucRealAssignHook assign_hook
Definition: guc_tables.h:255
double * variable
Definition: guc_tables.h:250
struct config_generic gen
Definition: guc_tables.h:248
GucStringAssignHook assign_hook
Definition: guc_tables.h:279
union config_var_val val
Definition: guc_tables.h:47
struct guc_stack * prev
Definition: guc_tables.h:122
Oid masked_srole
Definition: guc_tables.h:130
int nest_level
Definition: guc_tables.h:123
config_var_value masked
Definition: guc_tables.h:132
config_var_value prior
Definition: guc_tables.h:131
GucContext scontext
Definition: guc_tables.h:127
GucStackState state
Definition: guc_tables.h:124
GucSource source
Definition: guc_tables.h:125
GucContext masked_scontext
Definition: guc_tables.h:128
slist_node * cur
Definition: ilist.h:274
double realval
Definition: guc_tables.h:36
char * stringval
Definition: guc_tables.h:37

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

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

◆ AtStart_GUC()

void AtStart_GUC ( void  )

Definition at line 2221 of file guc.c.

2222{
2223 /*
2224 * The nest level should be 0 between transactions; if it isn't, somebody
2225 * didn't call AtEOXact_GUC, or called it with the wrong nestLevel. We
2226 * throw a warning but make no other effort to clean up.
2227 */
2228 if (GUCNestLevel != 0)
2229 elog(WARNING, "GUC nest level = %d at transaction start",
2230 GUCNestLevel);
2231 GUCNestLevel = 1;
2232}
#define WARNING
Definition: elog.h:36

References elog, GUCNestLevel, and WARNING.

Referenced by StartTransaction().

◆ BeginReportingGUCOptions()

void BeginReportingGUCOptions ( void  )

Definition at line 2552 of file guc.c.

2553{
2554 HASH_SEQ_STATUS status;
2555 GUCHashEntry *hentry;
2556
2557 /*
2558 * Don't do anything unless talking to an interactive frontend.
2559 */
2561 return;
2562
2563 reporting_enabled = true;
2564
2565 /*
2566 * Hack for in_hot_standby: set the GUC value true if appropriate. This
2567 * is kind of an ugly place to do it, but there's few better options.
2568 *
2569 * (This could be out of date by the time we actually send it, in which
2570 * case the next ReportChangedGUCOptions call will send a duplicate
2571 * report.)
2572 */
2573 if (RecoveryInProgress())
2574 SetConfigOption("in_hot_standby", "true",
2576
2577 /* Transmit initial values of interesting variables */
2578 hash_seq_init(&status, guc_hashtab);
2579 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
2580 {
2581 struct config_generic *conf = hentry->gucvar;
2582
2583 if (conf->flags & GUC_REPORT)
2584 ReportGUCOption(conf);
2585 }
2586}
@ DestRemote
Definition: dest.h:89
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition: dynahash.c:1415
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition: dynahash.c:1380
static void ReportGUCOption(struct config_generic *record)
Definition: guc.c:2640
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition: guc.c:4338
static bool reporting_enabled
Definition: guc.c:230
@ PGC_S_OVERRIDE
Definition: guc.h:123
CommandDest whereToSendOutput
Definition: postgres.c:92
bool RecoveryInProgress(void)
Definition: xlog.c:6386

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

Referenced by PostgresMain().

◆ build_guc_variables()

void build_guc_variables ( void  )

Definition at line 905 of file guc.c.

906{
907 int size_vars;
908 int num_vars = 0;
909 HASHCTL hash_ctl;
910 GUCHashEntry *hentry;
911 bool found;
912 int i;
913
914 /*
915 * Create the memory context that will hold all GUC-related data.
916 */
917 Assert(GUCMemoryContext == NULL);
919 "GUCMemoryContext",
921
922 /*
923 * Count all the built-in variables, and set their vartypes correctly.
924 */
925 for (i = 0; ConfigureNamesBool[i].gen.name; i++)
926 {
927 struct config_bool *conf = &ConfigureNamesBool[i];
928
929 /* Rather than requiring vartype to be filled in by hand, do this: */
930 conf->gen.vartype = PGC_BOOL;
931 num_vars++;
932 }
933
934 for (i = 0; ConfigureNamesInt[i].gen.name; i++)
935 {
936 struct config_int *conf = &ConfigureNamesInt[i];
937
938 conf->gen.vartype = PGC_INT;
939 num_vars++;
940 }
941
942 for (i = 0; ConfigureNamesReal[i].gen.name; i++)
943 {
944 struct config_real *conf = &ConfigureNamesReal[i];
945
946 conf->gen.vartype = PGC_REAL;
947 num_vars++;
948 }
949
950 for (i = 0; ConfigureNamesString[i].gen.name; i++)
951 {
952 struct config_string *conf = &ConfigureNamesString[i];
953
954 conf->gen.vartype = PGC_STRING;
955 num_vars++;
956 }
957
958 for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
959 {
960 struct config_enum *conf = &ConfigureNamesEnum[i];
961
962 conf->gen.vartype = PGC_ENUM;
963 num_vars++;
964 }
965
966 /*
967 * Create hash table with 20% slack
968 */
969 size_vars = num_vars + num_vars / 4;
970
971 hash_ctl.keysize = sizeof(char *);
972 hash_ctl.entrysize = sizeof(GUCHashEntry);
973 hash_ctl.hash = guc_name_hash;
974 hash_ctl.match = guc_name_match;
975 hash_ctl.hcxt = GUCMemoryContext;
976 guc_hashtab = hash_create("GUC hash table",
977 size_vars,
978 &hash_ctl,
980
981 for (i = 0; ConfigureNamesBool[i].gen.name; i++)
982 {
983 struct config_generic *gucvar = &ConfigureNamesBool[i].gen;
984
986 &gucvar->name,
988 &found);
989 Assert(!found);
990 hentry->gucvar = gucvar;
991 }
992
993 for (i = 0; ConfigureNamesInt[i].gen.name; i++)
994 {
995 struct config_generic *gucvar = &ConfigureNamesInt[i].gen;
996
998 &gucvar->name,
1000 &found);
1001 Assert(!found);
1002 hentry->gucvar = gucvar;
1003 }
1004
1005 for (i = 0; ConfigureNamesReal[i].gen.name; i++)
1006 {
1007 struct config_generic *gucvar = &ConfigureNamesReal[i].gen;
1008
1010 &gucvar->name,
1011 HASH_ENTER,
1012 &found);
1013 Assert(!found);
1014 hentry->gucvar = gucvar;
1015 }
1016
1017 for (i = 0; ConfigureNamesString[i].gen.name; i++)
1018 {
1019 struct config_generic *gucvar = &ConfigureNamesString[i].gen;
1020
1022 &gucvar->name,
1023 HASH_ENTER,
1024 &found);
1025 Assert(!found);
1026 hentry->gucvar = gucvar;
1027 }
1028
1029 for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
1030 {
1031 struct config_generic *gucvar = &ConfigureNamesEnum[i].gen;
1032
1034 &gucvar->name,
1035 HASH_ENTER,
1036 &found);
1037 Assert(!found);
1038 hentry->gucvar = gucvar;
1039 }
1040
1042}
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:358
int64 hash_get_num_entries(HTAB *hashp)
Definition: dynahash.c:1336
static int guc_name_match(const void *key1, const void *key2, Size keysize)
Definition: guc.c:1356
static uint32 guc_name_hash(const void *key, Size keysize)
Definition: guc.c:1332
static MemoryContext GUCMemoryContext
Definition: guc.c:200
PGDLLIMPORT struct config_int ConfigureNamesInt[]
PGDLLIMPORT struct config_real ConfigureNamesReal[]
PGDLLIMPORT struct config_string ConfigureNamesString[]
PGDLLIMPORT struct config_enum ConfigureNamesEnum[]
PGDLLIMPORT struct config_bool ConfigureNamesBool[]
@ HASH_ENTER
Definition: hsearch.h:114
#define HASH_CONTEXT
Definition: hsearch.h:102
#define HASH_ELEM
Definition: hsearch.h:95
#define HASH_COMPARE
Definition: hsearch.h:99
#define HASH_FUNCTION
Definition: hsearch.h:98
int i
Definition: isn.c:77
MemoryContext TopMemoryContext
Definition: mcxt.c:166
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
Size keysize
Definition: hsearch.h:75
HashValueFunc hash
Definition: hsearch.h:78
Size entrysize
Definition: hsearch.h:76
HashCompareFunc match
Definition: hsearch.h:80
MemoryContext hcxt
Definition: hsearch.h:86

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert(), ConfigureNamesBool, ConfigureNamesEnum, ConfigureNamesInt, ConfigureNamesReal, ConfigureNamesString, HASHCTL::entrysize, config_bool::gen, config_int::gen, config_real::gen, config_string::gen, config_enum::gen, guc_hashtab, guc_name_hash(), guc_name_match(), GUCMemoryContext, GUCHashEntry::gucvar, HASHCTL::hash, HASH_COMPARE, HASH_CONTEXT, hash_create(), HASH_ELEM, HASH_ENTER, HASH_FUNCTION, hash_get_num_entries(), hash_search(), HASHCTL::hcxt, i, HASHCTL::keysize, HASHCTL::match, config_generic::name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, TopMemoryContext, and config_generic::vartype.

Referenced by GucInfoMain(), and InitializeGUCOptions().

◆ call_bool_check_hook()

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

Definition at line 6827 of file guc.c.

6829{
6830 /* Quick success if no hook */
6831 if (!conf->check_hook)
6832 return true;
6833
6834 /* Reset variables that might be set by hook */
6835 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6839
6840 if (!conf->check_hook(newval, extra, source))
6841 {
6842 ereport(elevel,
6846 errmsg("invalid value for parameter \"%s\": %d",
6847 conf->gen.name, (int) *newval),
6851 errhint("%s", GUC_check_errhint_string) : 0));
6852 /* Flush any strings created in ErrorContext */
6854 return false;
6855 }
6856
6857 return true;
6858}
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1161
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1234
void FlushErrorState(void)
Definition: elog.c:1875
int errhint(const char *fmt,...)
Definition: elog.c:1321
char * GUC_check_errhint_string
Definition: guc.c:84
char * GUC_check_errmsg_string
Definition: guc.c:82
static int GUC_check_errcode_value
Definition: guc.c:77
char * GUC_check_errdetail_string
Definition: guc.c:83
static rewind_source * source
Definition: pg_rewind.c:89
GucBoolCheckHook check_hook
Definition: guc_tables.h:222

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

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

◆ call_enum_check_hook()

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

Definition at line 6979 of file guc.c.

6981{
6982 /* Quick success if no hook */
6983 if (!conf->check_hook)
6984 return true;
6985
6986 /* Reset variables that might be set by hook */
6987 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6991
6992 if (!conf->check_hook(newval, extra, source))
6993 {
6994 ereport(elevel,
6998 errmsg("invalid value for parameter \"%s\": \"%s\"",
6999 conf->gen.name,
7004 errhint("%s", GUC_check_errhint_string) : 0));
7005 /* Flush any strings created in ErrorContext */
7007 return false;
7008 }
7009
7010 return true;
7011}
const char * config_enum_lookup_by_value(struct config_enum *record, int val)
Definition: guc.c:3029
GucEnumCheckHook check_hook
Definition: guc_tables.h:293

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

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

◆ call_int_check_hook()

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

Definition at line 6861 of file guc.c.

6863{
6864 /* Quick success if no hook */
6865 if (!conf->check_hook)
6866 return true;
6867
6868 /* Reset variables that might be set by hook */
6869 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6873
6874 if (!conf->check_hook(newval, extra, source))
6875 {
6876 ereport(elevel,
6880 errmsg("invalid value for parameter \"%s\": %d",
6881 conf->gen.name, *newval),
6885 errhint("%s", GUC_check_errhint_string) : 0));
6886 /* Flush any strings created in ErrorContext */
6888 return false;
6889 }
6890
6891 return true;
6892}
GucIntCheckHook check_hook
Definition: guc_tables.h:238

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

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

◆ call_real_check_hook()

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

Definition at line 6895 of file guc.c.

6897{
6898 /* Quick success if no hook */
6899 if (!conf->check_hook)
6900 return true;
6901
6902 /* Reset variables that might be set by hook */
6903 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6907
6908 if (!conf->check_hook(newval, extra, source))
6909 {
6910 ereport(elevel,
6914 errmsg("invalid value for parameter \"%s\": %g",
6915 conf->gen.name, *newval),
6919 errhint("%s", GUC_check_errhint_string) : 0));
6920 /* Flush any strings created in ErrorContext */
6922 return false;
6923 }
6924
6925 return true;
6926}
GucRealCheckHook check_hook
Definition: guc_tables.h:254

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

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

◆ call_string_check_hook()

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

Definition at line 6929 of file guc.c.

6931{
6932 volatile bool result = true;
6933
6934 /* Quick success if no hook */
6935 if (!conf->check_hook)
6936 return true;
6937
6938 /*
6939 * If elevel is ERROR, or if the check_hook itself throws an elog
6940 * (undesirable, but not always avoidable), make sure we don't leak the
6941 * already-malloc'd newval string.
6942 */
6943 PG_TRY();
6944 {
6945 /* Reset variables that might be set by hook */
6946 GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6950
6951 if (!conf->check_hook(newval, extra, source))
6952 {
6953 ereport(elevel,
6957 errmsg("invalid value for parameter \"%s\": \"%s\"",
6958 conf->gen.name, *newval ? *newval : ""),
6962 errhint("%s", GUC_check_errhint_string) : 0));
6963 /* Flush any strings created in ErrorContext */
6965 result = false;
6966 }
6967 }
6968 PG_CATCH();
6969 {
6970 guc_free(*newval);
6971 PG_RE_THROW();
6972 }
6973 PG_END_TRY();
6974
6975 return result;
6976}
GucStringCheckHook check_hook
Definition: guc_tables.h:278

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

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

◆ can_skip_gucvar()

static bool can_skip_gucvar ( struct config_generic gconf)
static

Definition at line 5837 of file guc.c.

5838{
5839 /*
5840 * We can skip GUCs that are guaranteed to have the same values in leaders
5841 * and workers. (Note it is critical that the leader and worker have the
5842 * same idea of which GUCs fall into this category. It's okay to consider
5843 * context and name for this purpose, since those are unchanging
5844 * properties of a GUC.)
5845 *
5846 * PGC_POSTMASTER variables always have the same value in every child of a
5847 * particular postmaster, so the worker will certainly have the right
5848 * value already. Likewise, PGC_INTERNAL variables are set by special
5849 * mechanisms (if indeed they aren't compile-time constants). So we may
5850 * always skip these.
5851 *
5852 * For all other GUCs, we skip if the GUC has its compiled-in default
5853 * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means
5854 * we don't send GUCs that have their default values, which typically
5855 * saves lots of work. On the worker side, this means we don't need to
5856 * reset the GUC to default because it already has that value. See
5857 * comments in RestoreGUCState for more info.
5858 */
5859 return gconf->context == PGC_POSTMASTER ||
5860 gconf->context == PGC_INTERNAL ||
5861 gconf->source == PGC_S_DEFAULT;
5862}
@ PGC_S_DEFAULT
Definition: guc.h:113
@ PGC_POSTMASTER
Definition: guc.h:74
GucSource source
Definition: guc_tables.h:183

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

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

◆ check_GUC_name_for_parameter_acl()

void check_GUC_name_for_parameter_acl ( const char *  name)

Definition at line 1412 of file guc.c.

1413{
1414 /* OK if the GUC exists. */
1415 if (find_option(name, false, true, DEBUG5) != NULL)
1416 return;
1417 /* Otherwise, it'd better be a valid custom GUC name. */
1419}

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

Referenced by ParameterAclCreate().

◆ config_enum_get_options()

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

Definition at line 3078 of file guc.c.

3080{
3081 const struct config_enum_entry *entry;
3082 StringInfoData retstr;
3083 int seplen;
3084
3085 initStringInfo(&retstr);
3086 appendStringInfoString(&retstr, prefix);
3087
3088 seplen = strlen(separator);
3089 for (entry = record->options; entry && entry->name; entry++)
3090 {
3091 if (!entry->hidden)
3092 {
3093 appendStringInfoString(&retstr, entry->name);
3094 appendBinaryStringInfo(&retstr, separator, seplen);
3095 }
3096 }
3097
3098 /*
3099 * All the entries may have been hidden, leaving the string empty if no
3100 * prefix was given. This indicates a broken GUC setup, since there is no
3101 * use for an enum without any values, so we just check to make sure we
3102 * don't write to invalid memory instead of actually trying to do
3103 * something smart with it.
3104 */
3105 if (retstr.len >= seplen)
3106 {
3107 /* Replace final separator */
3108 retstr.data[retstr.len - seplen] = '\0';
3109 retstr.len -= seplen;
3110 }
3111
3112 appendStringInfoString(&retstr, suffix);
3113
3114 return retstr.data;
3115}
void appendBinaryStringInfo(StringInfo str, const void *data, int datalen)
Definition: stringinfo.c:281
void appendStringInfoString(StringInfo str, const char *s)
Definition: stringinfo.c:230
void initStringInfo(StringInfo str)
Definition: stringinfo.c:97
Definition: guc.h:174
const char * name
Definition: guc.h:175
bool hidden
Definition: guc.h:177
const struct config_enum_entry * options
Definition: guc_tables.h:292

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

Referenced by GetConfigOptionValues(), and parse_and_validate_value().

◆ config_enum_lookup_by_name()

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

Definition at line 3052 of file guc.c.

3054{
3055 const struct config_enum_entry *entry;
3056
3057 for (entry = record->options; entry && entry->name; entry++)
3058 {
3059 if (pg_strcasecmp(value, entry->name) == 0)
3060 {
3061 *retval = entry->val;
3062 return true;
3063 }
3064 }
3065
3066 *retval = 0;
3067 return false;
3068}
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36
int val
Definition: guc.h:176

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

Referenced by parse_and_validate_value().

◆ config_enum_lookup_by_value()

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

Definition at line 3029 of file guc.c.

3030{
3031 const struct config_enum_entry *entry;
3032
3033 for (entry = record->options; entry && entry->name; entry++)
3034 {
3035 if (entry->val == val)
3036 return entry->name;
3037 }
3038
3039 elog(ERROR, "could not find enum option %d for %s",
3040 val, record->gen.name);
3041 return NULL; /* silence compiler */
3042}
long val
Definition: informix.c:689

References elog, ERROR, config_enum::gen, config_enum_entry::name, config_generic::name, config_enum::options, config_enum_entry::val, 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 1376 of file guc.c.

1377{
1378 char *result;
1379
1380 /* Apply old-GUC-name mapping. */
1381 for (int i = 0; map_old_guc_names[i] != NULL; i += 2)
1382 {
1384 {
1385 name = map_old_guc_names[i + 1];
1386 break;
1387 }
1388 }
1389
1390 /* Apply case-folding that matches guc_name_compare(). */
1391 result = pstrdup(name);
1392 for (char *ptr = result; *ptr != '\0'; ptr++)
1393 {
1394 char ch = *ptr;
1395
1396 if (ch >= 'A' && ch <= 'Z')
1397 {
1398 ch += 'a' - 'A';
1399 *ptr = ch;
1400 }
1401 }
1402
1403 return result;
1404}
static const char *const map_old_guc_names[]
Definition: guc.c:191
int guc_name_compare(const char *namea, const char *nameb)
Definition: guc.c:1302
char * pstrdup(const char *in)
Definition: mcxt.c:1759

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

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

◆ convert_int_from_base_unit()

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

Definition at line 2735 of file guc.c.

2737{
2738 const unit_conversion *table;
2739 int i;
2740
2741 *unit = NULL;
2742
2743 if (base_unit & GUC_UNIT_MEMORY)
2745 else
2747
2748 for (i = 0; *table[i].unit; i++)
2749 {
2750 if (base_unit == table[i].base_unit)
2751 {
2752 /*
2753 * Accept the first conversion that divides the value evenly. We
2754 * assume that the conversions for each base unit are ordered from
2755 * greatest unit to the smallest!
2756 */
2757 if (table[i].multiplier <= 1.0 ||
2758 base_value % (int64) table[i].multiplier == 0)
2759 {
2760 *value = (int64) rint(base_value / table[i].multiplier);
2761 *unit = table[i].unit;
2762 break;
2763 }
2764 }
2765 }
2766
2767 Assert(*unit != NULL);
2768}
int64_t int64
Definition: c.h:535
static const unit_conversion memory_unit_conversion_table[]
Definition: guc.c:122
static const unit_conversion time_unit_conversion_table[]
Definition: guc.c:159
#define GUC_UNIT_MEMORY
Definition: guc.h:237
static const struct lconv_member_info table[]

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

Referenced by ShowGUCOption().

◆ convert_real_from_base_unit()

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

Definition at line 2777 of file guc.c.

2779{
2780 const unit_conversion *table;
2781 int i;
2782
2783 *unit = NULL;
2784
2785 if (base_unit & GUC_UNIT_MEMORY)
2787 else
2789
2790 for (i = 0; *table[i].unit; i++)
2791 {
2792 if (base_unit == table[i].base_unit)
2793 {
2794 /*
2795 * Accept the first conversion that divides the value evenly; or
2796 * if there is none, use the smallest (last) target unit.
2797 *
2798 * What we actually care about here is whether snprintf with "%g"
2799 * will print the value as an integer, so the obvious test of
2800 * "*value == rint(*value)" is too strict; roundoff error might
2801 * make us choose an unreasonably small unit. As a compromise,
2802 * accept a divisor that is within 1e-8 of producing an integer.
2803 */
2804 *value = base_value / table[i].multiplier;
2805 *unit = table[i].unit;
2806 if (*value > 0 &&
2807 fabs((rint(*value) / *value) - 1.0) <= 1e-8)
2808 break;
2809 }
2810 }
2811
2812 Assert(*unit != NULL);
2813}
e
Definition: preproc-init.c:82

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

Referenced by ShowGUCOption().

◆ convert_to_base_unit()

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

Definition at line 2677 of file guc.c.

2679{
2680 char unitstr[MAX_UNIT_LEN + 1];
2681 int unitlen;
2682 const unit_conversion *table;
2683 int i;
2684
2685 /* extract unit string to compare to table entries */
2686 unitlen = 0;
2687 while (*unit != '\0' && !isspace((unsigned char) *unit) &&
2688 unitlen < MAX_UNIT_LEN)
2689 unitstr[unitlen++] = *(unit++);
2690 unitstr[unitlen] = '\0';
2691 /* allow whitespace after unit */
2692 while (isspace((unsigned char) *unit))
2693 unit++;
2694 if (*unit != '\0')
2695 return false; /* unit too long, or garbage after it */
2696
2697 /* now search the appropriate table */
2698 if (base_unit & GUC_UNIT_MEMORY)
2700 else
2702
2703 for (i = 0; *table[i].unit; i++)
2704 {
2705 if (base_unit == table[i].base_unit &&
2706 strcmp(unitstr, table[i].unit) == 0)
2707 {
2708 double cvalue = value * table[i].multiplier;
2709
2710 /*
2711 * If the user gave a fractional value such as "30.1GB", round it
2712 * off to the nearest multiple of the next smaller unit, if there
2713 * is one.
2714 */
2715 if (*table[i + 1].unit &&
2716 base_unit == table[i + 1].base_unit)
2717 cvalue = rint(cvalue / table[i + 1].multiplier) *
2718 table[i + 1].multiplier;
2719
2720 *base_value = cvalue;
2721 return true;
2722 }
2723 }
2724 return false;
2725}
#define MAX_UNIT_LEN
Definition: guc.c:102

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

Referenced by parse_int(), and parse_real().

◆ define_custom_variable()

static void define_custom_variable ( struct config_generic variable)
static

Definition at line 4943 of file guc.c.

4944{
4945 const char *name = variable->name;
4946 GUCHashEntry *hentry;
4947 struct config_string *pHolder;
4948
4949 /* Check mapping between initial and default value */
4950 Assert(check_GUC_init(variable));
4951
4952 /*
4953 * See if there's a placeholder by the same name.
4954 */
4956 &name,
4957 HASH_FIND,
4958 NULL);
4959 if (hentry == NULL)
4960 {
4961 /*
4962 * No placeholder to replace, so we can just add it ... but first,
4963 * make sure it's initialized to its default value.
4964 */
4967 return;
4968 }
4969
4970 /*
4971 * This better be a placeholder
4972 */
4973 if ((hentry->gucvar->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4974 ereport(ERROR,
4975 (errcode(ERRCODE_INTERNAL_ERROR),
4976 errmsg("attempt to redefine parameter \"%s\"", name)));
4977
4978 Assert(hentry->gucvar->vartype == PGC_STRING);
4979 pHolder = (struct config_string *) hentry->gucvar;
4980
4981 /*
4982 * First, set the variable to its default value. We must do this even
4983 * though we intend to immediately apply a new value, since it's possible
4984 * that the new value is invalid.
4985 */
4987
4988 /*
4989 * Replace the placeholder in the hash table. We aren't changing the name
4990 * (at least up to case-folding), so the hash value is unchanged.
4991 */
4992 hentry->gucname = name;
4993 hentry->gucvar = variable;
4994
4995 /*
4996 * Remove the placeholder from any lists it's in, too.
4997 */
4998 RemoveGUCFromLists(&pHolder->gen);
4999
5000 /*
5001 * Assign the string value(s) stored in the placeholder to the real
5002 * variable. Essentially, we need to duplicate all the active and stacked
5003 * values, but with appropriate validation and datatype adjustment.
5004 *
5005 * If an assignment fails, we report a WARNING and keep going. We don't
5006 * want to throw ERROR for bad values, because it'd bollix the add-on
5007 * module that's presumably halfway through getting loaded. In such cases
5008 * the default or previous state will become active instead.
5009 */
5010
5011 /* First, apply the reset value if any */
5012 if (pHolder->reset_val)
5013 (void) set_config_option_ext(name, pHolder->reset_val,
5014 pHolder->gen.reset_scontext,
5015 pHolder->gen.reset_source,
5016 pHolder->gen.reset_srole,
5017 GUC_ACTION_SET, true, WARNING, false);
5018 /* That should not have resulted in stacking anything */
5019 Assert(variable->stack == NULL);
5020
5021 /* Now, apply current and stacked values, in the order they were stacked */
5022 reapply_stacked_values(variable, pHolder, pHolder->gen.stack,
5023 *(pHolder->variable),
5024 pHolder->gen.scontext, pHolder->gen.source,
5025 pHolder->gen.srole);
5026
5027 /* Also copy over any saved source-location information */
5028 if (pHolder->gen.sourcefile)
5030 pHolder->gen.sourceline);
5031
5032 /* Now we can free the no-longer-referenced placeholder variable */
5033 free_placeholder(pHolder);
5034}
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:3388
static void set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
Definition: guc.c:4305
static void reapply_stacked_values(struct config_generic *variable, struct config_string *pHolder, GucStack *stack, const char *curvalue, GucContext curscontext, GucSource cursource, Oid cursrole)
Definition: guc.c:5044
static void InitializeOneGUCOption(struct config_generic *gconf)
Definition: guc.c:1646
static void RemoveGUCFromLists(struct config_generic *gconf)
Definition: guc.c:1763
static void free_placeholder(struct config_string *pHolder)
Definition: guc.c:5140
@ GUC_ACTION_SET
Definition: guc.h:203
@ HASH_FIND
Definition: hsearch.h:113
const char * gucname
Definition: guc.c:209
char * sourcefile
Definition: guc_tables.h:199
GucContext reset_scontext
Definition: guc_tables.h:186
GucSource reset_source
Definition: guc_tables.h:184
char * reset_val
Definition: guc_tables.h:282
char * name
Definition: type.h:191

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

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

◆ DefineCustomBoolVariable()

void DefineCustomBoolVariable ( const char *  name,
const char *  short_desc,
const char *  long_desc,
bool *  valueAddr,
bool  bootValue,
GucContext  context,
int  flags,
GucBoolCheckHook  check_hook,
GucBoolAssignHook  assign_hook,
GucShowHook  show_hook 
)

Definition at line 5155 of file guc.c.

5165{
5166 struct config_bool *var;
5167
5168 var = (struct config_bool *)
5169 init_custom_variable(name, short_desc, long_desc, context, flags,
5170 PGC_BOOL, sizeof(struct config_bool));
5171 var->variable = valueAddr;
5172 var->boot_val = bootValue;
5173 var->reset_val = bootValue;
5174 var->check_hook = check_hook;
5175 var->assign_hook = assign_hook;
5176 var->show_hook = show_hook;
5178}
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, size_t sz)
Definition: guc.c:4882
static void define_custom_variable(struct config_generic *variable)
Definition: guc.c:4943
bool reset_val
Definition: guc_tables.h:226
bool boot_val
Definition: guc_tables.h:221
GucShowHook show_hook
Definition: guc_tables.h:224

References config_bool::assign_hook, config_bool::boot_val, config_bool::check_hook, define_custom_variable(), config_bool::gen, init_custom_variable(), name, PGC_BOOL, config_bool::reset_val, 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 
)

Definition at line 5266 of file guc.c.

5277{
5278 struct config_enum *var;
5279
5280 var = (struct config_enum *)
5281 init_custom_variable(name, short_desc, long_desc, context, flags,
5282 PGC_ENUM, sizeof(struct config_enum));
5283 var->variable = valueAddr;
5284 var->boot_val = bootValue;
5285 var->reset_val = bootValue;
5286 var->options = options;
5287 var->check_hook = check_hook;
5288 var->assign_hook = assign_hook;
5289 var->show_hook = show_hook;
5291}
static char ** options
GucShowHook show_hook
Definition: guc_tables.h:295

References config_enum::assign_hook, config_enum::boot_val, config_enum::check_hook, define_custom_variable(), config_enum::gen, init_custom_variable(), name, options, config_enum::options, PGC_ENUM, config_enum::reset_val, config_enum::show_hook, and config_enum::variable.

Referenced by _PG_init().

◆ DefineCustomIntVariable()

void DefineCustomIntVariable ( const char *  name,
const char *  short_desc,
const char *  long_desc,
int *  valueAddr,
int  bootValue,
int  minValue,
int  maxValue,
GucContext  context,
int  flags,
GucIntCheckHook  check_hook,
GucIntAssignHook  assign_hook,
GucShowHook  show_hook 
)

Definition at line 5181 of file guc.c.

5193{
5194 struct config_int *var;
5195
5196 var = (struct config_int *)
5197 init_custom_variable(name, short_desc, long_desc, context, flags,
5198 PGC_INT, sizeof(struct config_int));
5199 var->variable = valueAddr;
5200 var->boot_val = bootValue;
5201 var->reset_val = bootValue;
5202 var->min = minValue;
5203 var->max = maxValue;
5204 var->check_hook = check_hook;
5205 var->assign_hook = assign_hook;
5206 var->show_hook = show_hook;
5208}
int reset_val
Definition: guc_tables.h:242
int boot_val
Definition: guc_tables.h:235
GucShowHook show_hook
Definition: guc_tables.h:240

References config_int::assign_hook, config_int::boot_val, config_int::check_hook, define_custom_variable(), config_int::gen, init_custom_variable(), config_int::max, config_int::min, name, PGC_INT, config_int::reset_val, config_int::show_hook, and config_int::variable.

Referenced by _PG_init().

◆ DefineCustomRealVariable()

void DefineCustomRealVariable ( const char *  name,
const char *  short_desc,
const char *  long_desc,
double *  valueAddr,
double  bootValue,
double  minValue,
double  maxValue,
GucContext  context,
int  flags,
GucRealCheckHook  check_hook,
GucRealAssignHook  assign_hook,
GucShowHook  show_hook 
)

Definition at line 5211 of file guc.c.

5223{
5224 struct config_real *var;
5225
5226 var = (struct config_real *)
5227 init_custom_variable(name, short_desc, long_desc, context, flags,
5228 PGC_REAL, sizeof(struct config_real));
5229 var->variable = valueAddr;
5230 var->boot_val = bootValue;
5231 var->reset_val = bootValue;
5232 var->min = minValue;
5233 var->max = maxValue;
5234 var->check_hook = check_hook;
5235 var->assign_hook = assign_hook;
5236 var->show_hook = show_hook;
5238}
double boot_val
Definition: guc_tables.h:251
double reset_val
Definition: guc_tables.h:258
double min
Definition: guc_tables.h:252
double max
Definition: guc_tables.h:253
GucShowHook show_hook
Definition: guc_tables.h:256

References config_real::assign_hook, config_real::boot_val, config_real::check_hook, define_custom_variable(), config_real::gen, init_custom_variable(), config_real::max, config_real::min, name, PGC_REAL, config_real::reset_val, config_real::show_hook, and config_real::variable.

Referenced by _PG_init().

◆ DefineCustomStringVariable()

void DefineCustomStringVariable ( const char *  name,
const char *  short_desc,
const char *  long_desc,
char **  valueAddr,
const char *  bootValue,
GucContext  context,
int  flags,
GucStringCheckHook  check_hook,
GucStringAssignHook  assign_hook,
GucShowHook  show_hook 
)

Definition at line 5241 of file guc.c.

5251{
5252 struct config_string *var;
5253
5254 var = (struct config_string *)
5255 init_custom_variable(name, short_desc, long_desc, context, flags,
5256 PGC_STRING, sizeof(struct config_string));
5257 var->variable = valueAddr;
5258 var->boot_val = bootValue;
5259 var->check_hook = check_hook;
5260 var->assign_hook = assign_hook;
5261 var->show_hook = show_hook;
5263}
GucShowHook show_hook
Definition: guc_tables.h:280
const char * boot_val
Definition: guc_tables.h:277

References config_string::assign_hook, config_string::boot_val, config_string::check_hook, define_custom_variable(), config_string::gen, init_custom_variable(), name, PGC_STRING, config_string::show_hook, and config_string::variable.

Referenced by _PG_init().

◆ discard_stack_value()

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

Definition at line 848 of file guc.c.

849{
850 switch (gconf->vartype)
851 {
852 case PGC_BOOL:
853 case PGC_INT:
854 case PGC_REAL:
855 case PGC_ENUM:
856 /* no need to do anything */
857 break;
858 case PGC_STRING:
859 set_string_field((struct config_string *) gconf,
860 &(val->val.stringval),
861 NULL);
862 break;
863 }
864 set_extra_field(gconf, &(val->extra), NULL);
865}

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

Referenced by AtEOXact_GUC(), and push_old_value().

◆ do_serialize()

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

Definition at line 6002 of file guc.c.

6003{
6004 va_list vargs;
6005 int n;
6006
6007 if (*maxbytes <= 0)
6008 elog(ERROR, "not enough space to serialize GUC state");
6009
6010 va_start(vargs, fmt);
6011 n = vsnprintf(*destptr, *maxbytes, fmt, vargs);
6012 va_end(vargs);
6013
6014 if (n < 0)
6015 {
6016 /* Shouldn't happen. Better show errno description. */
6017 elog(ERROR, "vsnprintf failed: %m with format string \"%s\"", fmt);
6018 }
6019 if (n >= *maxbytes)
6020 {
6021 /* This shouldn't happen either, really. */
6022 elog(ERROR, "not enough space to serialize GUC state");
6023 }
6024
6025 /* Shift the destptr ahead of the null terminator */
6026 *destptr += n + 1;
6027 *maxbytes -= n + 1;
6028}
#define vsnprintf
Definition: port.h:238

References elog, ERROR, and vsnprintf.

Referenced by serialize_variable().

◆ do_serialize_binary()

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

Definition at line 6032 of file guc.c.

6033{
6034 if (valsize > *maxbytes)
6035 elog(ERROR, "not enough space to serialize GUC state");
6036
6037 memcpy(*destptr, val, valsize);
6038 *destptr += valsize;
6039 *maxbytes -= valsize;
6040}

References elog, ERROR, and val.

Referenced by serialize_variable().

◆ estimate_variable_size()

static Size estimate_variable_size ( struct config_generic gconf)
static

Definition at line 5871 of file guc.c.

5872{
5873 Size size;
5874 Size valsize = 0;
5875
5876 /* Skippable GUCs consume zero space. */
5877 if (can_skip_gucvar(gconf))
5878 return 0;
5879
5880 /* Name, plus trailing zero byte. */
5881 size = strlen(gconf->name) + 1;
5882
5883 /* Get the maximum display length of the GUC value. */
5884 switch (gconf->vartype)
5885 {
5886 case PGC_BOOL:
5887 {
5888 valsize = 5; /* max(strlen('true'), strlen('false')) */
5889 }
5890 break;
5891
5892 case PGC_INT:
5893 {
5894 struct config_int *conf = (struct config_int *) gconf;
5895
5896 /*
5897 * Instead of getting the exact display length, use max
5898 * length. Also reduce the max length for typical ranges of
5899 * small values. Maximum value is 2147483647, i.e. 10 chars.
5900 * Include one byte for sign.
5901 */
5902 if (abs(*conf->variable) < 1000)
5903 valsize = 3 + 1;
5904 else
5905 valsize = 10 + 1;
5906 }
5907 break;
5908
5909 case PGC_REAL:
5910 {
5911 /*
5912 * We are going to print it with %e with REALTYPE_PRECISION
5913 * fractional digits. Account for sign, leading digit,
5914 * decimal point, and exponent with up to 3 digits. E.g.
5915 * -3.99329042340000021e+110
5916 */
5917 valsize = 1 + 1 + 1 + REALTYPE_PRECISION + 5;
5918 }
5919 break;
5920
5921 case PGC_STRING:
5922 {
5923 struct config_string *conf = (struct config_string *) gconf;
5924
5925 /*
5926 * If the value is NULL, we transmit it as an empty string.
5927 * Although this is not physically the same value, GUC
5928 * generally treats a NULL the same as empty string.
5929 */
5930 if (*conf->variable)
5931 valsize = strlen(*conf->variable);
5932 else
5933 valsize = 0;
5934 }
5935 break;
5936
5937 case PGC_ENUM:
5938 {
5939 struct config_enum *conf = (struct config_enum *) gconf;
5940
5941 valsize = strlen(config_enum_lookup_by_value(conf, *conf->variable));
5942 }
5943 break;
5944 }
5945
5946 /* Allow space for terminating zero-byte for value */
5947 size = add_size(size, valsize + 1);
5948
5949 if (gconf->sourcefile)
5950 size = add_size(size, strlen(gconf->sourcefile));
5951
5952 /* Allow space for terminating zero-byte for sourcefile */
5953 size = add_size(size, 1);
5954
5955 /* Include line whenever file is nonempty. */
5956 if (gconf->sourcefile && gconf->sourcefile[0])
5957 size = add_size(size, sizeof(gconf->sourceline));
5958
5959 size = add_size(size, sizeof(gconf->source));
5960 size = add_size(size, sizeof(gconf->scontext));
5961 size = add_size(size, sizeof(gconf->srole));
5962
5963 return size;
5964}
size_t Size
Definition: c.h:610
static bool can_skip_gucvar(struct config_generic *gconf)
Definition: guc.c:5837
#define REALTYPE_PRECISION
Definition: guc.c:69
Size add_size(Size s1, Size s2)
Definition: shmem.c:493

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

Referenced by EstimateGUCStateSpace().

◆ EstimateGUCStateSpace()

Size EstimateGUCStateSpace ( void  )

Definition at line 5971 of file guc.c.

5972{
5973 Size size;
5974 dlist_iter iter;
5975
5976 /* Add space reqd for saving the data size of the guc state */
5977 size = sizeof(Size);
5978
5979 /*
5980 * Add up the space needed for each GUC variable.
5981 *
5982 * We need only process non-default GUCs.
5983 */
5985 {
5986 struct config_generic *gconf = dlist_container(struct config_generic,
5987 nondef_link, iter.cur);
5988
5989 size = add_size(size, estimate_variable_size(gconf));
5990 }
5991
5992 return size;
5993}
static dlist_head guc_nondef_list
Definition: guc.c:223
static Size estimate_variable_size(struct config_generic *gconf)
Definition: guc.c:5871
#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:191
dlist_node * cur
Definition: ilist.h:179

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

Referenced by InitializeParallelDSM().

◆ extra_field_used()

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

Definition at line 749 of file guc.c.

750{
751 GucStack *stack;
752
753 if (extra == gconf->extra)
754 return true;
755 switch (gconf->vartype)
756 {
757 case PGC_BOOL:
758 if (extra == ((struct config_bool *) gconf)->reset_extra)
759 return true;
760 break;
761 case PGC_INT:
762 if (extra == ((struct config_int *) gconf)->reset_extra)
763 return true;
764 break;
765 case PGC_REAL:
766 if (extra == ((struct config_real *) gconf)->reset_extra)
767 return true;
768 break;
769 case PGC_STRING:
770 if (extra == ((struct config_string *) gconf)->reset_extra)
771 return true;
772 break;
773 case PGC_ENUM:
774 if (extra == ((struct config_enum *) gconf)->reset_extra)
775 return true;
776 break;
777 }
778 for (stack = gconf->stack; stack; stack = stack->prev)
779 {
780 if (extra == stack->prior.extra ||
781 extra == stack->masked.extra)
782 return true;
783 }
784
785 return false;
786}

References config_var_value::extra, config_generic::extra, guc_stack::masked, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, guc_stack::prev, guc_stack::prior, config_generic::stack, and config_generic::vartype.

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

1239{
1240 GUCHashEntry *hentry;
1241 int i;
1242
1243 Assert(name);
1244
1245 /* Look it up using the hash table. */
1247 &name,
1248 HASH_FIND,
1249 NULL);
1250 if (hentry)
1251 return hentry->gucvar;
1252
1253 /*
1254 * See if the name is an obsolete name for a variable. We assume that the
1255 * set of supported old names is short enough that a brute-force search is
1256 * the best way.
1257 */
1258 for (i = 0; map_old_guc_names[i] != NULL; i += 2)
1259 {
1261 return find_option(map_old_guc_names[i + 1], false,
1262 skip_errors, elevel);
1263 }
1264
1265 if (create_placeholders)
1266 {
1267 /*
1268 * Check if the name is valid, and if so, add a placeholder.
1269 */
1270 if (assignable_custom_variable_name(name, skip_errors, elevel))
1271 return add_placeholder_variable(name, elevel);
1272 else
1273 return NULL; /* error message, if any, already emitted */
1274 }
1275
1276 /* Unknown name and we're not supposed to make a placeholder */
1277 if (!skip_errors)
1278 ereport(elevel,
1279 (errcode(ERRCODE_UNDEFINED_OBJECT),
1280 errmsg("unrecognized configuration parameter \"%s\"",
1281 name)));
1282 return NULL;
1283}
static struct config_generic * add_placeholder_variable(const char *name, int elevel)
Definition: guc.c:1179

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

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

◆ free_placeholder()

static void free_placeholder ( struct config_string pHolder)
static

Definition at line 5140 of file guc.c.

5141{
5142 /* Placeholders are always STRING type, so free their values */
5143 Assert(pHolder->gen.vartype == PGC_STRING);
5144 set_string_field(pHolder, pHolder->variable, NULL);
5145 set_string_field(pHolder, &pHolder->reset_val, NULL);
5146
5147 guc_free(unconstify(char *, pHolder->gen.name));
5148 guc_free(pHolder);
5149}

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

Referenced by define_custom_variable(), and MarkGUCPrefixReserved().

◆ get_config_handle()

config_handle * get_config_handle ( const char *  name)

Definition at line 4290 of file guc.c.

4291{
4292 struct config_generic *gen = find_option(name, false, false, 0);
4293
4294 if (gen && ((gen->flags & GUC_CUSTOM_PLACEHOLDER) == 0))
4295 return gen;
4296
4297 return NULL;
4298}

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

Referenced by fmgr_security_definer().

◆ get_config_unit_name()

const char * get_config_unit_name ( int  flags)

Definition at line 2820 of file guc.c.

2821{
2822 switch (flags & GUC_UNIT)
2823 {
2824 case 0:
2825 return NULL; /* GUC has no units */
2826 case GUC_UNIT_BYTE:
2827 return "B";
2828 case GUC_UNIT_KB:
2829 return "kB";
2830 case GUC_UNIT_MB:
2831 return "MB";
2832 case GUC_UNIT_BLOCKS:
2833 {
2834 static char bbuf[8];
2835
2836 /* initialize if first time through */
2837 if (bbuf[0] == '\0')
2838 snprintf(bbuf, sizeof(bbuf), "%dkB", BLCKSZ / 1024);
2839 return bbuf;
2840 }
2841 case GUC_UNIT_XBLOCKS:
2842 {
2843 static char xbuf[8];
2844
2845 /* initialize if first time through */
2846 if (xbuf[0] == '\0')
2847 snprintf(xbuf, sizeof(xbuf), "%dkB", XLOG_BLCKSZ / 1024);
2848 return xbuf;
2849 }
2850 case GUC_UNIT_MS:
2851 return "ms";
2852 case GUC_UNIT_S:
2853 return "s";
2854 case GUC_UNIT_MIN:
2855 return "min";
2856 default:
2857 elog(ERROR, "unrecognized GUC units value: %d",
2858 flags & GUC_UNIT);
2859 return NULL;
2860 }
2861}
#define GUC_UNIT_MB
Definition: guc.h:235
#define GUC_UNIT
Definition: guc.h:244
#define GUC_UNIT_MS
Definition: guc.h:239
#define GUC_UNIT_BLOCKS
Definition: guc.h:233
#define GUC_UNIT_XBLOCKS
Definition: guc.h:234
#define GUC_UNIT_BYTE
Definition: guc.h:236
#define GUC_UNIT_S
Definition: guc.h:240
#define GUC_UNIT_KB
Definition: guc.h:232
#define GUC_UNIT_MIN
Definition: guc.h:241

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

Referenced by GetConfigOptionValues(), and parse_and_validate_value().

◆ get_explain_guc_options()

struct config_generic ** get_explain_guc_options ( int *  num)

Definition at line 5354 of file guc.c.

5355{
5356 struct config_generic **result;
5357 dlist_iter iter;
5358
5359 *num = 0;
5360
5361 /*
5362 * While only a fraction of all the GUC variables are marked GUC_EXPLAIN,
5363 * it doesn't seem worth dynamically resizing this array.
5364 */
5365 result = palloc(sizeof(struct config_generic *) * hash_get_num_entries(guc_hashtab));
5366
5367 /* We need only consider GUCs with source not PGC_S_DEFAULT */
5369 {
5370 struct config_generic *conf = dlist_container(struct config_generic,
5371 nondef_link, iter.cur);
5372 bool modified;
5373
5374 /* return only parameters marked for inclusion in explain */
5375 if (!(conf->flags & GUC_EXPLAIN))
5376 continue;
5377
5378 /* return only options visible to the current user */
5379 if (!ConfigOptionIsVisible(conf))
5380 continue;
5381
5382 /* return only options that are different from their boot values */
5383 modified = false;
5384
5385 switch (conf->vartype)
5386 {
5387 case PGC_BOOL:
5388 {
5389 struct config_bool *lconf = (struct config_bool *) conf;
5390
5391 modified = (lconf->boot_val != *(lconf->variable));
5392 }
5393 break;
5394
5395 case PGC_INT:
5396 {
5397 struct config_int *lconf = (struct config_int *) conf;
5398
5399 modified = (lconf->boot_val != *(lconf->variable));
5400 }
5401 break;
5402
5403 case PGC_REAL:
5404 {
5405 struct config_real *lconf = (struct config_real *) conf;
5406
5407 modified = (lconf->boot_val != *(lconf->variable));
5408 }
5409 break;
5410
5411 case PGC_STRING:
5412 {
5413 struct config_string *lconf = (struct config_string *) conf;
5414
5415 if (lconf->boot_val == NULL &&
5416 *lconf->variable == NULL)
5417 modified = false;
5418 else if (lconf->boot_val == NULL ||
5419 *lconf->variable == NULL)
5420 modified = true;
5421 else
5422 modified = (strcmp(lconf->boot_val, *(lconf->variable)) != 0);
5423 }
5424 break;
5425
5426 case PGC_ENUM:
5427 {
5428 struct config_enum *lconf = (struct config_enum *) conf;
5429
5430 modified = (lconf->boot_val != *(lconf->variable));
5431 }
5432 break;
5433
5434 default:
5435 elog(ERROR, "unexpected GUC type: %d", conf->vartype);
5436 }
5437
5438 if (!modified)
5439 continue;
5440
5441 /* OK, report it */
5442 result[*num] = conf;
5443 *num = *num + 1;
5444 }
5445
5446 return result;
5447}
#define GUC_EXPLAIN
Definition: guc.h:219
bool ConfigOptionIsVisible(struct config_generic *conf)
Definition: guc_funcs.c:581
void * palloc(Size size)
Definition: mcxt.c:1365

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

Referenced by ExplainPrintSettings().

◆ get_guc_variables()

struct config_generic ** get_guc_variables ( int *  num_vars)

Definition at line 874 of file guc.c.

875{
876 struct config_generic **result;
878 GUCHashEntry *hentry;
879 int i;
880
882 result = palloc(sizeof(struct config_generic *) * *num_vars);
883
884 /* Extract pointers from the hash table */
885 i = 0;
887 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
888 result[i++] = hentry->gucvar;
889 Assert(i == *num_vars);
890
891 /* Sort by name */
892 qsort(result, *num_vars,
893 sizeof(struct config_generic *), guc_var_compare);
894
895 return result;
896}
static int guc_var_compare(const void *a, const void *b)
Definition: guc.c:1290
#define qsort(a, b, c, d)
Definition: port.h:479

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

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

◆ GetConfigOption()

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

Definition at line 4361 of file guc.c.

4362{
4363 struct config_generic *record;
4364 static char buffer[256];
4365
4366 record = find_option(name, false, missing_ok, ERROR);
4367 if (record == NULL)
4368 return NULL;
4369 if (restrict_privileged &&
4370 !ConfigOptionIsVisible(record))
4371 ereport(ERROR,
4372 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4373 errmsg("permission denied to examine \"%s\"", name),
4374 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4375 "pg_read_all_settings")));
4376
4377 switch (record->vartype)
4378 {
4379 case PGC_BOOL:
4380 return *((struct config_bool *) record)->variable ? "on" : "off";
4381
4382 case PGC_INT:
4383 snprintf(buffer, sizeof(buffer), "%d",
4384 *((struct config_int *) record)->variable);
4385 return buffer;
4386
4387 case PGC_REAL:
4388 snprintf(buffer, sizeof(buffer), "%g",
4389 *((struct config_real *) record)->variable);
4390 return buffer;
4391
4392 case PGC_STRING:
4393 return *((struct config_string *) record)->variable ?
4394 *((struct config_string *) record)->variable : "";
4395
4396 case PGC_ENUM:
4397 return config_enum_lookup_by_value((struct config_enum *) record,
4398 *((struct config_enum *) record)->variable);
4399 }
4400 return NULL;
4401}

References config_enum_lookup_by_value(), ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg(), ERROR, find_option(), name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, snprintf, and config_generic::vartype.

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

◆ GetConfigOptionByName()

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

Definition at line 5455 of file guc.c.

5456{
5457 struct config_generic *record;
5458
5459 record = find_option(name, false, missing_ok, ERROR);
5460 if (record == NULL)
5461 {
5462 if (varname)
5463 *varname = NULL;
5464 return NULL;
5465 }
5466
5467 if (!ConfigOptionIsVisible(record))
5468 ereport(ERROR,
5469 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
5470 errmsg("permission denied to examine \"%s\"", name),
5471 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
5472 "pg_read_all_settings")));
5473
5474 if (varname)
5475 *varname = record->name;
5476
5477 return ShowGUCOption(record, true);
5478}
char * ShowGUCOption(struct config_generic *record, bool use_units)
Definition: guc.c:5488

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

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

◆ GetConfigOptionFlags()

int GetConfigOptionFlags ( const char *  name,
bool  missing_ok 
)

Definition at line 4458 of file guc.c.

4459{
4460 struct config_generic *record;
4461
4462 record = find_option(name, false, missing_ok, ERROR);
4463 if (record == NULL)
4464 return 0;
4465 return record->flags;
4466}

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

Referenced by pg_get_functiondef(), and PostmasterMain().

◆ GetConfigOptionResetString()

const char * GetConfigOptionResetString ( const char *  name)

Definition at line 4411 of file guc.c.

4412{
4413 struct config_generic *record;
4414 static char buffer[256];
4415
4416 record = find_option(name, false, false, ERROR);
4417 Assert(record != NULL);
4418 if (!ConfigOptionIsVisible(record))
4419 ereport(ERROR,
4420 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4421 errmsg("permission denied to examine \"%s\"", name),
4422 errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4423 "pg_read_all_settings")));
4424
4425 switch (record->vartype)
4426 {
4427 case PGC_BOOL:
4428 return ((struct config_bool *) record)->reset_val ? "on" : "off";
4429
4430 case PGC_INT:
4431 snprintf(buffer, sizeof(buffer), "%d",
4432 ((struct config_int *) record)->reset_val);
4433 return buffer;
4434
4435 case PGC_REAL:
4436 snprintf(buffer, sizeof(buffer), "%g",
4437 ((struct config_real *) record)->reset_val);
4438 return buffer;
4439
4440 case PGC_STRING:
4441 return ((struct config_string *) record)->reset_val ?
4442 ((struct config_string *) record)->reset_val : "";
4443
4444 case PGC_ENUM:
4445 return config_enum_lookup_by_value((struct config_enum *) record,
4446 ((struct config_enum *) record)->reset_val);
4447 }
4448 return NULL;
4449}

References Assert(), config_enum_lookup_by_value(), ConfigOptionIsVisible(), ereport, errcode(), errdetail(), errmsg(), ERROR, find_option(), name, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_STRING, config_string::reset_val, snprintf, and config_generic::vartype.

Referenced by check_datestyle().

◆ GUC_check_errcode()

◆ guc_free()

void guc_free ( void *  ptr)

Definition at line 691 of file guc.c.

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

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

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

◆ guc_malloc()

◆ guc_name_compare()

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

Definition at line 1302 of file guc.c.

1303{
1304 /*
1305 * The temptation to use strcasecmp() here must be resisted, because the
1306 * hash mapping has to remain stable across setlocale() calls. So, build
1307 * our own with a simple ASCII-only downcasing.
1308 */
1309 while (*namea && *nameb)
1310 {
1311 char cha = *namea++;
1312 char chb = *nameb++;
1313
1314 if (cha >= 'A' && cha <= 'Z')
1315 cha += 'a' - 'A';
1316 if (chb >= 'A' && chb <= 'Z')
1317 chb += 'a' - 'A';
1318 if (cha != chb)
1319 return cha - chb;
1320 }
1321 if (*namea)
1322 return 1; /* a is longer */
1323 if (*nameb)
1324 return -1; /* b is longer */
1325 return 0;
1326}

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

1333{
1334 uint32 result = 0;
1335 const char *name = *(const char *const *) key;
1336
1337 while (*name)
1338 {
1339 char ch = *name++;
1340
1341 /* Case-fold in the same way as guc_name_compare */
1342 if (ch >= 'A' && ch <= 'Z')
1343 ch += 'a' - 'A';
1344
1345 /* Merge into hash ... not very bright, but it needn't be */
1346 result = pg_rotate_left32(result, 5);
1347 result ^= (uint32) ch;
1348 }
1349 return result;
1350}
uint32_t uint32
Definition: c.h:538
static uint32 pg_rotate_left32(uint32 word, int n)
Definition: pg_bitutils.h:428

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

Referenced by build_guc_variables().

◆ guc_name_match()

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

Definition at line 1356 of file guc.c.

1357{
1358 const char *name1 = *(const char *const *) key1;
1359 const char *name2 = *(const char *const *) key2;
1360
1361 return guc_name_compare(name1, name2);
1362}

References guc_name_compare().

Referenced by build_guc_variables().

◆ guc_realloc()

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

Definition at line 654 of file guc.c.

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

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

◆ guc_restore_error_context_callback()

static void guc_restore_error_context_callback ( void *  arg)
static

Definition at line 6194 of file guc.c.

6195{
6196 char **error_context_name_and_value = (char **) arg;
6197
6198 if (error_context_name_and_value)
6199 errcontext("while setting parameter \"%s\" to \"%s\"",
6200 error_context_name_and_value[0],
6201 error_context_name_and_value[1]);
6202}
#define errcontext
Definition: elog.h:198
void * arg

References arg, and errcontext.

Referenced by RestoreGUCState().

◆ guc_strdup()

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

Definition at line 679 of file guc.c.

680{
681 char *data;
682 size_t len = strlen(src) + 1;
683
684 data = guc_malloc(elevel, len);
685 if (likely(data != NULL))
686 memcpy(data, src, len);
687 return data;
688}
#define likely(x)
Definition: c.h:401
const void size_t len

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

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

◆ guc_var_compare()

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

Definition at line 1290 of file guc.c.

1291{
1292 const char *namea = **(const char **const *) a;
1293 const char *nameb = **(const char **const *) b;
1294
1295 return guc_name_compare(namea, nameb);
1296}
int b
Definition: isn.c:74
int a
Definition: isn.c:73

References a, b, and guc_name_compare().

Referenced by get_guc_variables().

◆ GUCArrayAdd()

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

Definition at line 6511 of file guc.c.

6512{
6513 struct config_generic *record;
6514 Datum datum;
6515 char *newval;
6516 ArrayType *a;
6517
6518 Assert(name);
6519 Assert(value);
6520
6521 /* test if the option is valid and we're allowed to set it */
6522 (void) validate_option_array_item(name, value, false);
6523
6524 /* normalize name (converts obsolete GUC names to modern spellings) */
6525 record = find_option(name, false, true, WARNING);
6526 if (record)
6527 name = record->name;
6528
6529 /* build new item for array */
6530 newval = psprintf("%s=%s", name, value);
6531 datum = CStringGetTextDatum(newval);
6532
6533 if (array)
6534 {
6535 int index;
6536 bool isnull;
6537 int i;
6538
6539 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6540 Assert(ARR_NDIM(array) == 1);
6541 Assert(ARR_LBOUND(array)[0] == 1);
6542
6543 index = ARR_DIMS(array)[0] + 1; /* add after end */
6544
6545 for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6546 {
6547 Datum d;
6548 char *current;
6549
6550 d = array_ref(array, 1, &i,
6551 -1 /* varlenarray */ ,
6552 -1 /* TEXT's typlen */ ,
6553 false /* TEXT's typbyval */ ,
6554 TYPALIGN_INT /* TEXT's typalign */ ,
6555 &isnull);
6556 if (isnull)
6557 continue;
6558 current = TextDatumGetCString(d);
6559
6560 /* check for match up through and including '=' */
6561 if (strncmp(current, newval, strlen(name) + 1) == 0)
6562 {
6563 index = i;
6564 break;
6565 }
6566 }
6567
6568 a = array_set(array, 1, &index,
6569 datum,
6570 false,
6571 -1 /* varlena array */ ,
6572 -1 /* TEXT's typlen */ ,
6573 false /* TEXT's typbyval */ ,
6574 TYPALIGN_INT /* TEXT's typalign */ );
6575 }
6576 else
6577 a = construct_array_builtin(&datum, 1, TEXTOID);
6578
6579 return a;
6580}
#define ARR_NDIM(a)
Definition: array.h:290
#define ARR_ELEMTYPE(a)
Definition: array.h:292
#define ARR_DIMS(a)
Definition: array.h:294
#define ARR_LBOUND(a)
Definition: array.h:296
ArrayType * array_set(ArrayType *array, int nSubscripts, int *indx, Datum dataValue, bool isNull, int arraytyplen, int elmlen, bool elmbyval, char elmalign)
Definition: arrayfuncs.c:3164
Datum array_ref(ArrayType *array, int nSubscripts, int *indx, int arraytyplen, int elmlen, bool elmbyval, char elmalign, bool *isNull)
Definition: arrayfuncs.c:3147
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
Definition: arrayfuncs.c:3382
#define CStringGetTextDatum(s)
Definition: builtins.h:97
#define TextDatumGetCString(d)
Definition: builtins.h:98
static bool validate_option_array_item(const char *name, const char *value, bool skipIfNoPermissions)
Definition: guc.c:6731
uint64_t Datum
Definition: postgres.h:70
char * psprintf(const char *fmt,...)
Definition: psprintf.c:43
Definition: type.h:96

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

Referenced by AlterSetting(), and update_proconfig_value().

◆ GUCArrayDelete()

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

Definition at line 6589 of file guc.c.

6590{
6591 struct config_generic *record;
6592 ArrayType *newarray;
6593 int i;
6594 int index;
6595
6596 Assert(name);
6597
6598 /* test if the option is valid and we're allowed to set it */
6599 (void) validate_option_array_item(name, NULL, false);
6600
6601 /* normalize name (converts obsolete GUC names to modern spellings) */
6602 record = find_option(name, false, true, WARNING);
6603 if (record)
6604 name = record->name;
6605
6606 /* if array is currently null, then surely nothing to delete */
6607 if (!array)
6608 return NULL;
6609
6610 newarray = NULL;
6611 index = 1;
6612
6613 for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6614 {
6615 Datum d;
6616 char *val;
6617 bool isnull;
6618
6619 d = array_ref(array, 1, &i,
6620 -1 /* varlenarray */ ,
6621 -1 /* TEXT's typlen */ ,
6622 false /* TEXT's typbyval */ ,
6623 TYPALIGN_INT /* TEXT's typalign */ ,
6624 &isnull);
6625 if (isnull)
6626 continue;
6628
6629 /* ignore entry if it's what we want to delete */
6630 if (strncmp(val, name, strlen(name)) == 0
6631 && val[strlen(name)] == '=')
6632 continue;
6633
6634 /* else add it to the output array */
6635 if (newarray)
6636 newarray = array_set(newarray, 1, &index,
6637 d,
6638 false,
6639 -1 /* varlenarray */ ,
6640 -1 /* TEXT's typlen */ ,
6641 false /* TEXT's typbyval */ ,
6642 TYPALIGN_INT /* TEXT's typalign */ );
6643 else
6644 newarray = construct_array_builtin(&d, 1, TEXTOID);
6645
6646 index++;
6647 }
6648
6649 return newarray;
6650}

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

Referenced by AlterSetting(), and update_proconfig_value().

◆ GUCArrayReset()

ArrayType * GUCArrayReset ( ArrayType array)

Definition at line 6659 of file guc.c.

6660{
6661 ArrayType *newarray;
6662 int i;
6663 int index;
6664
6665 /* if array is currently null, nothing to do */
6666 if (!array)
6667 return NULL;
6668
6669 /* if we're superuser, we can delete everything, so just do it */
6670 if (superuser())
6671 return NULL;
6672
6673 newarray = NULL;
6674 index = 1;
6675
6676 for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6677 {
6678 Datum d;
6679 char *val;
6680 char *eqsgn;
6681 bool isnull;
6682
6683 d = array_ref(array, 1, &i,
6684 -1 /* varlenarray */ ,
6685 -1 /* TEXT's typlen */ ,
6686 false /* TEXT's typbyval */ ,
6687 TYPALIGN_INT /* TEXT's typalign */ ,
6688 &isnull);
6689 if (isnull)
6690 continue;
6692
6693 eqsgn = strchr(val, '=');
6694 *eqsgn = '\0';
6695
6696 /* skip if we have permission to delete it */
6697 if (validate_option_array_item(val, NULL, true))
6698 continue;
6699
6700 /* else add it to the output array */
6701 if (newarray)
6702 newarray = array_set(newarray, 1, &index,
6703 d,
6704 false,
6705 -1 /* varlenarray */ ,
6706 -1 /* TEXT's typlen */ ,
6707 false /* TEXT's typbyval */ ,
6708 TYPALIGN_INT /* TEXT's typalign */ );
6709 else
6710 newarray = construct_array_builtin(&d, 1, TEXTOID);
6711
6712 index++;
6713 pfree(val);
6714 }
6715
6716 return newarray;
6717}

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

Referenced by AlterSetting().

◆ init_custom_variable()

static struct config_generic * init_custom_variable ( const char *  name,
const char *  short_desc,
const char *  long_desc,
GucContext  context,
int  flags,
enum config_type  type,
size_t  sz 
)
static

Definition at line 4882 of file guc.c.

4889{
4890 struct config_generic *gen;
4891
4892 /*
4893 * Only allow custom PGC_POSTMASTER variables to be created during shared
4894 * library preload; any later than that, we can't ensure that the value
4895 * doesn't change after startup. This is a fatal elog if it happens; just
4896 * erroring out isn't safe because we don't know what the calling loadable
4897 * module might already have hooked into.
4898 */
4899 if (context == PGC_POSTMASTER &&
4901 elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
4902
4903 /*
4904 * We can't support custom GUC_LIST_QUOTE variables, because the wrong
4905 * things would happen if such a variable were set or pg_dump'd when the
4906 * defining extension isn't loaded. Again, treat this as fatal because
4907 * the loadable module may be partly initialized already.
4908 */
4909 if (flags & GUC_LIST_QUOTE)
4910 elog(FATAL, "extensions cannot define GUC_LIST_QUOTE variables");
4911
4912 /*
4913 * Before pljava commit 398f3b876ed402bdaec8bc804f29e2be95c75139
4914 * (2015-12-15), two of that module's PGC_USERSET variables facilitated
4915 * trivial escalation to superuser privileges. Restrict the variables to
4916 * protect sites that have yet to upgrade pljava.
4917 */
4918 if (context == PGC_USERSET &&
4919 (strcmp(name, "pljava.classpath") == 0 ||
4920 strcmp(name, "pljava.vmoptions") == 0))
4922
4923 /* As above, an OOM here is FATAL */
4924 gen = (struct config_generic *) guc_malloc(FATAL, sz);
4925 memset(gen, 0, sz);
4926
4927 gen->name = guc_strdup(FATAL, name);
4928 gen->context = context;
4929 gen->group = CUSTOM_OPTIONS;
4930 gen->short_desc = short_desc;
4931 gen->long_desc = long_desc;
4932 gen->flags = flags;
4933 gen->vartype = type;
4934
4935 return gen;
4936}
#define FATAL
Definition: elog.h:41
#define GUC_LIST_QUOTE
Definition: guc.h:215
@ PGC_SUSET
Definition: guc.h:78
bool process_shared_preload_libraries_in_progress
Definition: miscinit.c:1786
const char * long_desc
Definition: guc_tables.h:178
const char * type

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

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

◆ InitializeGUCOptions()

void InitializeGUCOptions ( void  )

Definition at line 1532 of file guc.c.

1533{
1534 HASH_SEQ_STATUS status;
1535 GUCHashEntry *hentry;
1536
1537 /*
1538 * Before log_line_prefix could possibly receive a nonempty setting, make
1539 * sure that timezone processing is minimally alive (see elog.c).
1540 */
1542
1543 /*
1544 * Create GUCMemoryContext and build hash table of all GUC variables.
1545 */
1547
1548 /*
1549 * Load all variables with their compiled-in defaults, and initialize
1550 * status fields as needed.
1551 */
1552 hash_seq_init(&status, guc_hashtab);
1553 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
1554 {
1555 /* Check mapping between initial and default value */
1556 Assert(check_GUC_init(hentry->gucvar));
1557
1559 }
1560
1561 reporting_enabled = false;
1562
1563 /*
1564 * Prevent any attempt to override the transaction modes from
1565 * non-interactive sources.
1566 */
1567 SetConfigOption("transaction_isolation", "read committed",
1569 SetConfigOption("transaction_read_only", "no",
1571 SetConfigOption("transaction_deferrable", "no",
1573
1574 /*
1575 * For historical reasons, some GUC parameters can receive defaults from
1576 * environment variables. Process those settings.
1577 */
1579}
void build_guc_variables(void)
Definition: guc.c:905
static void InitializeGUCOptionsFromEnvironment(void)
Definition: guc.c:1591
void pg_timezone_initialize(void)
Definition: pgtz.c:361

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

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

◆ InitializeGUCOptionsFromEnvironment()

static void InitializeGUCOptionsFromEnvironment ( void  )
static

Definition at line 1591 of file guc.c.

1592{
1593 char *env;
1594 ssize_t stack_rlimit;
1595
1596 env = getenv("PGPORT");
1597 if (env != NULL)
1599
1600 env = getenv("PGDATESTYLE");
1601 if (env != NULL)
1602 SetConfigOption("datestyle", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1603
1604 env = getenv("PGCLIENTENCODING");
1605 if (env != NULL)
1606 SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1607
1608 /*
1609 * rlimit isn't exactly an "environment variable", but it behaves about
1610 * the same. If we can identify the platform stack depth rlimit, increase
1611 * default stack depth setting up to whatever is safe (but at most 2MB).
1612 * Report the value's source as PGC_S_DYNAMIC_DEFAULT if it's 2MB, or as
1613 * PGC_S_ENV_VAR if it's reflecting the rlimit limit.
1614 */
1615 stack_rlimit = get_stack_depth_rlimit();
1616 if (stack_rlimit > 0)
1617 {
1618 ssize_t new_limit = (stack_rlimit - STACK_DEPTH_SLOP) / 1024;
1619
1620 if (new_limit > 100)
1621 {
1623 char limbuf[16];
1624
1625 if (new_limit < 2048)
1627 else
1628 {
1629 new_limit = 2048;
1631 }
1632 snprintf(limbuf, sizeof(limbuf), "%d", (int) new_limit);
1633 SetConfigOption("max_stack_depth", limbuf,
1635 }
1636 }
1637}
@ PGC_S_DYNAMIC_DEFAULT
Definition: guc.h:114
@ PGC_S_ENV_VAR
Definition: guc.h:115
#define STACK_DEPTH_SLOP
Definition: miscadmin.h:296
ssize_t get_stack_depth_rlimit(void)
Definition: stack_depth.c:176

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

Referenced by InitializeGUCOptions(), and ProcessConfigFileInternal().

◆ InitializeOneGUCOption()

static void InitializeOneGUCOption ( struct config_generic gconf)
static

Definition at line 1646 of file guc.c.

1647{
1648 gconf->status = 0;
1649 gconf->source = PGC_S_DEFAULT;
1650 gconf->reset_source = PGC_S_DEFAULT;
1651 gconf->scontext = PGC_INTERNAL;
1653 gconf->srole = BOOTSTRAP_SUPERUSERID;
1654 gconf->reset_srole = BOOTSTRAP_SUPERUSERID;
1655 gconf->stack = NULL;
1656 gconf->extra = NULL;
1657 gconf->last_reported = NULL;
1658 gconf->sourcefile = NULL;
1659 gconf->sourceline = 0;
1660
1661 switch (gconf->vartype)
1662 {
1663 case PGC_BOOL:
1664 {
1665 struct config_bool *conf = (struct config_bool *) gconf;
1666 bool newval = conf->boot_val;
1667 void *extra = NULL;
1668
1669 if (!call_bool_check_hook(conf, &newval, &extra,
1671 elog(FATAL, "failed to initialize %s to %d",
1672 conf->gen.name, (int) newval);
1673 if (conf->assign_hook)
1674 conf->assign_hook(newval, extra);
1675 *conf->variable = conf->reset_val = newval;
1676 conf->gen.extra = conf->reset_extra = extra;
1677 break;
1678 }
1679 case PGC_INT:
1680 {
1681 struct config_int *conf = (struct config_int *) gconf;
1682 int newval = conf->boot_val;
1683 void *extra = NULL;
1684
1685 Assert(newval >= conf->min);
1686 Assert(newval <= conf->max);
1687 if (!call_int_check_hook(conf, &newval, &extra,
1689 elog(FATAL, "failed to initialize %s to %d",
1690 conf->gen.name, newval);
1691 if (conf->assign_hook)
1692 conf->assign_hook(newval, extra);
1693 *conf->variable = conf->reset_val = newval;
1694 conf->gen.extra = conf->reset_extra = extra;
1695 break;
1696 }
1697 case PGC_REAL:
1698 {
1699 struct config_real *conf = (struct config_real *) gconf;
1700 double newval = conf->boot_val;
1701 void *extra = NULL;
1702
1703 Assert(newval >= conf->min);
1704 Assert(newval <= conf->max);
1705 if (!call_real_check_hook(conf, &newval, &extra,
1707 elog(FATAL, "failed to initialize %s to %g",
1708 conf->gen.name, newval);
1709 if (conf->assign_hook)
1710 conf->assign_hook(newval, extra);
1711 *conf->variable = conf->reset_val = newval;
1712 conf->gen.extra = conf->reset_extra = extra;
1713 break;
1714 }
1715 case PGC_STRING:
1716 {
1717 struct config_string *conf = (struct config_string *) gconf;
1718 char *newval;
1719 void *extra = NULL;
1720
1721 /* non-NULL boot_val must always get strdup'd */
1722 if (conf->boot_val != NULL)
1723 newval = guc_strdup(FATAL, conf->boot_val);
1724 else
1725 newval = NULL;
1726
1727 if (!call_string_check_hook(conf, &newval, &extra,
1729 elog(FATAL, "failed to initialize %s to \"%s\"",
1730 conf->gen.name, newval ? newval : "");
1731 if (conf->assign_hook)
1732 conf->assign_hook(newval, extra);
1733 *conf->variable = conf->reset_val = newval;
1734 conf->gen.extra = conf->reset_extra = extra;
1735 break;
1736 }
1737 case PGC_ENUM:
1738 {
1739 struct config_enum *conf = (struct config_enum *) gconf;
1740 int newval = conf->boot_val;
1741 void *extra = NULL;
1742
1743 if (!call_enum_check_hook(conf, &newval, &extra,
1745 elog(FATAL, "failed to initialize %s to %d",
1746 conf->gen.name, newval);
1747 if (conf->assign_hook)
1748 conf->assign_hook(newval, extra);
1749 *conf->variable = conf->reset_val = newval;
1750 conf->gen.extra = conf->reset_extra = extra;
1751 break;
1752 }
1753 }
1754}
static bool call_string_check_hook(struct config_string *conf, char **newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6929
static void static bool call_bool_check_hook(struct config_bool *conf, bool *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6827
static bool call_int_check_hook(struct config_int *conf, int *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6861
static bool call_real_check_hook(struct config_real *conf, double *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6895
static bool call_enum_check_hook(struct config_enum *conf, int *newval, void **extra, GucSource source, int elevel)
Definition: guc.c:6979
void * reset_extra
Definition: guc_tables.h:227
void * reset_extra
Definition: guc_tables.h:298
char * last_reported
Definition: guc_tables.h:197
void * reset_extra
Definition: guc_tables.h:243
void * reset_extra
Definition: guc_tables.h:259
void * reset_extra
Definition: guc_tables.h:283

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

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

◆ MarkGUCPrefixReserved()

void MarkGUCPrefixReserved ( const char *  className)

Definition at line 5302 of file guc.c.

5303{
5304 int classLen = strlen(className);
5305 HASH_SEQ_STATUS status;
5306 GUCHashEntry *hentry;
5307 MemoryContext oldcontext;
5308
5309 /*
5310 * Check for existing placeholders. We must actually remove invalid
5311 * placeholders, else future parallel worker startups will fail.
5312 */
5313 hash_seq_init(&status, guc_hashtab);
5314 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
5315 {
5316 struct config_generic *var = hentry->gucvar;
5317
5318 if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5319 strncmp(className, var->name, classLen) == 0 &&
5320 var->name[classLen] == GUC_QUALIFIER_SEPARATOR)
5321 {
5323 (errcode(ERRCODE_INVALID_NAME),
5324 errmsg("invalid configuration parameter name \"%s\", removing it",
5325 var->name),
5326 errdetail("\"%s\" is now a reserved prefix.",
5327 className)));
5328 /* Remove it from the hash table */
5330 &var->name,
5332 NULL);
5333 /* Remove it from any lists it's in, too */
5334 RemoveGUCFromLists(var);
5335 /* And free it */
5336 free_placeholder((struct config_string *) var);
5337 }
5338 }
5339
5340 /* And remember the name so we can prevent future mistakes. */
5343 MemoryContextSwitchTo(oldcontext);
5344}
@ HASH_REMOVE
Definition: hsearch.h:115
List * lappend(List *list, void *datum)
Definition: list.c:339
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124

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

Referenced by _PG_init().

◆ NewGUCNestLevel()

◆ parse_and_validate_value()

static bool parse_and_validate_value ( struct config_generic record,
const char *  value,
GucSource  source,
int  elevel,
union config_var_val newval,
void **  newextra 
)
static

Definition at line 3135 of file guc.c.

3139{
3140 switch (record->vartype)
3141 {
3142 case PGC_BOOL:
3143 {
3144 struct config_bool *conf = (struct config_bool *) record;
3145
3146 if (!parse_bool(value, &newval->boolval))
3147 {
3148 ereport(elevel,
3149 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3150 errmsg("parameter \"%s\" requires a Boolean value",
3151 conf->gen.name)));
3152 return false;
3153 }
3154
3155 if (!call_bool_check_hook(conf, &newval->boolval, newextra,
3156 source, elevel))
3157 return false;
3158 }
3159 break;
3160 case PGC_INT:
3161 {
3162 struct config_int *conf = (struct config_int *) record;
3163 const char *hintmsg;
3164
3165 if (!parse_int(value, &newval->intval,
3166 conf->gen.flags, &hintmsg))
3167 {
3168 ereport(elevel,
3169 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3170 errmsg("invalid value for parameter \"%s\": \"%s\"",
3171 conf->gen.name, value),
3172 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3173 return false;
3174 }
3175
3176 if (newval->intval < conf->min || newval->intval > conf->max)
3177 {
3178 const char *unit = get_config_unit_name(conf->gen.flags);
3179 const char *unitspace;
3180
3181 if (unit)
3182 unitspace = " ";
3183 else
3184 unit = unitspace = "";
3185
3186 ereport(elevel,
3187 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3188 errmsg("%d%s%s is outside the valid range for parameter \"%s\" (%d%s%s .. %d%s%s)",
3189 newval->intval, unitspace, unit,
3190 conf->gen.name,
3191 conf->min, unitspace, unit,
3192 conf->max, unitspace, unit)));
3193 return false;
3194 }
3195
3196 if (!call_int_check_hook(conf, &newval->intval, newextra,
3197 source, elevel))
3198 return false;
3199 }
3200 break;
3201 case PGC_REAL:
3202 {
3203 struct config_real *conf = (struct config_real *) record;
3204 const char *hintmsg;
3205
3206 if (!parse_real(value, &newval->realval,
3207 conf->gen.flags, &hintmsg))
3208 {
3209 ereport(elevel,
3210 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3211 errmsg("invalid value for parameter \"%s\": \"%s\"",
3212 conf->gen.name, value),
3213 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3214 return false;
3215 }
3216
3217 if (newval->realval < conf->min || newval->realval > conf->max)
3218 {
3219 const char *unit = get_config_unit_name(conf->gen.flags);
3220 const char *unitspace;
3221
3222 if (unit)
3223 unitspace = " ";
3224 else
3225 unit = unitspace = "";
3226
3227 ereport(elevel,
3228 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3229 errmsg("%g%s%s is outside the valid range for parameter \"%s\" (%g%s%s .. %g%s%s)",
3230 newval->realval, unitspace, unit,
3231 conf->gen.name,
3232 conf->min, unitspace, unit,
3233 conf->max, unitspace, unit)));
3234 return false;
3235 }
3236
3237 if (!call_real_check_hook(conf, &newval->realval, newextra,
3238 source, elevel))
3239 return false;
3240 }
3241 break;
3242 case PGC_STRING:
3243 {
3244 struct config_string *conf = (struct config_string *) record;
3245
3246 /*
3247 * The value passed by the caller could be transient, so we
3248 * always strdup it.
3249 */
3250 newval->stringval = guc_strdup(elevel, value);
3251 if (newval->stringval == NULL)
3252 return false;
3253
3254 /*
3255 * The only built-in "parsing" check we have is to apply
3256 * truncation if GUC_IS_NAME.
3257 */
3258 if (conf->gen.flags & GUC_IS_NAME)
3259 truncate_identifier(newval->stringval,
3260 strlen(newval->stringval),
3261 true);
3262
3263 if (!call_string_check_hook(conf, &newval->stringval, newextra,
3264 source, elevel))
3265 {
3266 guc_free(newval->stringval);
3267 newval->stringval = NULL;
3268 return false;
3269 }
3270 }
3271 break;
3272 case PGC_ENUM:
3273 {
3274 struct config_enum *conf = (struct config_enum *) record;
3275
3276 if (!config_enum_lookup_by_name(conf, value, &newval->enumval))
3277 {
3278 char *hintmsg;
3279
3280 hintmsg = config_enum_get_options(conf,
3281 "Available values: ",
3282 ".", ", ");
3283
3284 ereport(elevel,
3285 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3286 errmsg("invalid value for parameter \"%s\": \"%s\"",
3287 conf->gen.name, value),
3288 hintmsg ? errhint("%s", _(hintmsg)) : 0));
3289
3290 if (hintmsg)
3291 pfree(hintmsg);
3292 return false;
3293 }
3294
3295 if (!call_enum_check_hook(conf, &newval->enumval, newextra,
3296 source, elevel))
3297 return false;
3298 }
3299 break;
3300 }
3301
3302 return true;
3303}
bool parse_bool(const char *value, bool *result)
Definition: bool.c:31
#define _(x)
Definition: elog.c:91
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
Definition: guc.c:2877
const char * get_config_unit_name(int flags)
Definition: guc.c:2820
bool config_enum_lookup_by_name(struct config_enum *record, const char *value, int *retval)
Definition: guc.c:3052
bool parse_real(const char *value, double *result, int flags, const char **hintmsg)
Definition: guc.c:2967
char * config_enum_get_options(struct config_enum *record, const char *prefix, const char *suffix, const char *separator)
Definition: guc.c:3078
#define GUC_IS_NAME
Definition: guc.h:225
void truncate_identifier(char *ident, int len, bool warn)
Definition: scansup.c:93

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

Referenced by AlterSystemSetConfigFile(), and set_config_with_handle().

◆ parse_int()

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

Definition at line 2877 of file guc.c.

2878{
2879 /*
2880 * We assume here that double is wide enough to represent any integer
2881 * value with adequate precision.
2882 */
2883 double val;
2884 char *endptr;
2885
2886 /* To suppress compiler warnings, always set output params */
2887 if (result)
2888 *result = 0;
2889 if (hintmsg)
2890 *hintmsg = NULL;
2891
2892 /*
2893 * Try to parse as an integer (allowing octal or hex input). If the
2894 * conversion stops at a decimal point or 'e', or overflows, re-parse as
2895 * float. This should work fine as long as we have no unit names starting
2896 * with 'e'. If we ever do, the test could be extended to check for a
2897 * sign or digit after 'e', but for now that's unnecessary.
2898 */
2899 errno = 0;
2900 val = strtol(value, &endptr, 0);
2901 if (*endptr == '.' || *endptr == 'e' || *endptr == 'E' ||
2902 errno == ERANGE)
2903 {
2904 errno = 0;
2905 val = strtod(value, &endptr);
2906 }
2907
2908 if (endptr == value || errno == ERANGE)
2909 return false; /* no HINT for these cases */
2910
2911 /* reject NaN (infinities will fail range check below) */
2912 if (isnan(val))
2913 return false; /* treat same as syntax error; no HINT */
2914
2915 /* allow whitespace between number and unit */
2916 while (isspace((unsigned char) *endptr))
2917 endptr++;
2918
2919 /* Handle possible unit */
2920 if (*endptr != '\0')
2921 {
2922 if ((flags & GUC_UNIT) == 0)
2923 return false; /* this setting does not accept a unit */
2924
2926 endptr, (flags & GUC_UNIT),
2927 &val))
2928 {
2929 /* invalid unit, or garbage after the unit; set hint and fail. */
2930 if (hintmsg)
2931 {
2932 if (flags & GUC_UNIT_MEMORY)
2933 *hintmsg = memory_units_hint;
2934 else
2935 *hintmsg = time_units_hint;
2936 }
2937 return false;
2938 }
2939 }
2940
2941 /* Round to int, then check for overflow */
2942 val = rint(val);
2943
2944 if (val > INT_MAX || val < INT_MIN)
2945 {
2946 if (hintmsg)
2947 *hintmsg = gettext_noop("Value exceeds integer range.");
2948 return false;
2949 }
2950
2951 if (result)
2952 *result = (int) val;
2953 return true;
2954}
#define gettext_noop(x)
Definition: c.h:1195
static bool convert_to_base_unit(double value, const char *unit, int base_unit, double *base_value)
Definition: guc.c:2677
static const char *const memory_units_hint
Definition: guc.c:120
static const char *const time_units_hint
Definition: guc.c:157

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

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

◆ parse_real()

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

Definition at line 2967 of file guc.c.

2968{
2969 double val;
2970 char *endptr;
2971
2972 /* To suppress compiler warnings, always set output params */
2973 if (result)
2974 *result = 0;
2975 if (hintmsg)
2976 *hintmsg = NULL;
2977
2978 errno = 0;
2979 val = strtod(value, &endptr);
2980
2981 if (endptr == value || errno == ERANGE)
2982 return false; /* no HINT for these cases */
2983
2984 /* reject NaN (infinities will fail range checks later) */
2985 if (isnan(val))
2986 return false; /* treat same as syntax error; no HINT */
2987
2988 /* allow whitespace between number and unit */
2989 while (isspace((unsigned char) *endptr))
2990 endptr++;
2991
2992 /* Handle possible unit */
2993 if (*endptr != '\0')
2994 {
2995 if ((flags & GUC_UNIT) == 0)
2996 return false; /* this setting does not accept a unit */
2997
2999 endptr, (flags & GUC_UNIT),
3000 &val))
3001 {
3002 /* invalid unit, or garbage after the unit; set hint and fail. */
3003 if (hintmsg)
3004 {
3005 if (flags & GUC_UNIT_MEMORY)
3006 *hintmsg = memory_units_hint;
3007 else
3008 *hintmsg = time_units_hint;
3009 }
3010 return false;
3011 }
3012 }
3013
3014 if (result)
3015 *result = val;
3016 return true;
3017}

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

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

◆ ParseLongOption()

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

Definition at line 6385 of file guc.c.

6386{
6387 size_t equal_pos;
6388 char *cp;
6389
6390 Assert(string);
6391 Assert(name);
6392 Assert(value);
6393
6394 equal_pos = strcspn(string, "=");
6395
6396 if (string[equal_pos] == '=')
6397 {
6398 *name = palloc(equal_pos + 1);
6399 strlcpy(*name, string, equal_pos + 1);
6400
6401 *value = pstrdup(&string[equal_pos + 1]);
6402 }
6403 else
6404 {
6405 /* no equal sign in string */
6406 *name = pstrdup(string);
6407 *value = NULL;
6408 }
6409
6410 for (cp = *name; *cp; cp++)
6411 if (*cp == '-')
6412 *cp = '_';
6413}
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45

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

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

◆ pg_timezone_abbrev_initialize()

static void pg_timezone_abbrev_initialize ( void  )
static

Definition at line 1998 of file guc.c.

1999{
2000 SetConfigOption("timezone_abbreviations", "Default",
2002}

References PGC_POSTMASTER, PGC_S_DYNAMIC_DEFAULT, and SetConfigOption().

Referenced by ProcessConfigFileInternal(), and SelectConfigFiles().

◆ ProcessConfigFileInternal()

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

Definition at line 284 of file guc.c.

285{
286 bool error = false;
287 bool applying = false;
288 const char *ConfFileWithError;
289 ConfigVariable *item,
290 *head,
291 *tail;
292 HASH_SEQ_STATUS status;
293 GUCHashEntry *hentry;
294
295 /* Parse the main config file into a list of option names and values */
296 ConfFileWithError = ConfigFileName;
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;
322 ConfFileWithError = PG_AUTOCONF_FILENAME;
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 */
336 ConfigVariable *newlist = NULL;
337
338 /*
339 * Prune all items except the last "data_directory" from the list.
340 */
341 for (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
373 gconf->status &= ~GUC_IS_IN_FILE;
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 (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 ConfigVariable *pitem;
414
415 for (pitem = head; pitem != item; pitem = pitem->next)
416 {
417 if (!pitem->ignore &&
418 strcmp(pitem->name, item->name) == 0)
419 pitem->ignore = true;
420 }
421 }
422 /* Now mark it as present in file */
423 record->status |= GUC_IS_IN_FILE;
424 }
425 else if (!valid_custom_variable_name(item->name))
426 {
427 /* Invalid non-custom variable, so complain */
428 ereport(elevel,
429 (errcode(ERRCODE_UNDEFINED_OBJECT),
430 errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %d",
431 item->name,
432 item->filename, item->sourceline)));
433 item->errmsg = pstrdup("unrecognized configuration parameter");
434 error = true;
435 ConfFileWithError = item->filename;
436 }
437 }
438
439 /*
440 * If we've detected any errors so far, we don't want to risk applying any
441 * changes.
442 */
443 if (error)
444 goto bail_out;
445
446 /* Otherwise, set flag that we're beginning to apply changes */
447 applying = true;
448
449 /*
450 * Check for variables having been removed from the config file, and
451 * revert their reset values (and perhaps also effective values) to the
452 * boot-time defaults. If such a variable can't be changed after startup,
453 * report that and continue.
454 */
456 while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
457 {
458 struct config_generic *gconf = hentry->gucvar;
460
461 if (gconf->reset_source != PGC_S_FILE ||
462 (gconf->status & GUC_IS_IN_FILE))
463 continue;
464 if (gconf->context < PGC_SIGHUP)
465 {
466 /* The removal can't be effective without a restart */
467 gconf->status |= GUC_PENDING_RESTART;
468 ereport(elevel,
469 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
470 errmsg("parameter \"%s\" cannot be changed without restarting the server",
471 gconf->name)));
472 record_config_file_error(psprintf("parameter \"%s\" cannot be changed without restarting the server",
473 gconf->name),
474 NULL, 0,
475 &head, &tail);
476 error = true;
477 continue;
478 }
479
480 /* No more to do if we're just doing show_all_file_settings() */
481 if (!applySettings)
482 continue;
483
484 /*
485 * Reset any "file" sources to "default", else set_config_option will
486 * not override those settings.
487 */
488 if (gconf->reset_source == PGC_S_FILE)
490 if (gconf->source == PGC_S_FILE)
492 for (stack = gconf->stack; stack; stack = stack->prev)
493 {
494 if (stack->source == PGC_S_FILE)
496 }
497
498 /* Now we can re-apply the wired-in default (i.e., the boot_val) */
499 if (set_config_option(gconf->name, NULL,
501 GUC_ACTION_SET, true, 0, false) > 0)
502 {
503 /* Log the change if appropriate */
504 if (context == PGC_SIGHUP)
505 ereport(elevel,
506 (errmsg("parameter \"%s\" removed from configuration file, reset to default",
507 gconf->name)));
508 }
509 }
510
511 /*
512 * Restore any variables determined by environment variables or
513 * dynamically-computed defaults. This is a no-op except in the case
514 * where one of these had been in the config file and is now removed.
515 *
516 * In particular, we *must not* do this during the postmaster's initial
517 * loading of the file, since the timezone functions in particular should
518 * be run only after initialization is complete.
519 *
520 * XXX this is an unmaintainable crock, because we have to know how to set
521 * (or at least what to call to set) every non-PGC_INTERNAL variable that
522 * could potentially have PGC_S_DYNAMIC_DEFAULT or PGC_S_ENV_VAR source.
523 */
524 if (context == PGC_SIGHUP && applySettings)
525 {
528 /* this selects SQL_ASCII in processes not connected to a database */
529 SetConfigOption("client_encoding", GetDatabaseEncodingName(),
531 }
532
533 /*
534 * Now apply the values from the config file.
535 */
536 for (item = head; item; item = item->next)
537 {
538 char *pre_value = NULL;
539 int scres;
540
541 /* Ignore anything marked as ignorable */
542 if (item->ignore)
543 continue;
544
545 /* In SIGHUP cases in the postmaster, we want to report changes */
546 if (context == PGC_SIGHUP && applySettings && !IsUnderPostmaster)
547 {
548 const char *preval = GetConfigOption(item->name, true, false);
549
550 /* If option doesn't exist yet or is NULL, treat as empty string */
551 if (!preval)
552 preval = "";
553 /* must dup, else might have dangling pointer below */
554 pre_value = pstrdup(preval);
555 }
556
557 scres = set_config_option(item->name, item->value,
559 GUC_ACTION_SET, applySettings, 0, false);
560 if (scres > 0)
561 {
562 /* variable was updated, so log the change if appropriate */
563 if (pre_value)
564 {
565 const char *post_value = GetConfigOption(item->name, true, false);
566
567 if (!post_value)
568 post_value = "";
569 if (strcmp(pre_value, post_value) != 0)
570 ereport(elevel,
571 (errmsg("parameter \"%s\" changed to \"%s\"",
572 item->name, item->value)));
573 }
574 item->applied = true;
575 }
576 else if (scres == 0)
577 {
578 error = true;
579 item->errmsg = pstrdup("setting could not be applied");
580 ConfFileWithError = item->filename;
581 }
582 else
583 {
584 /* no error, but variable's active value was not changed */
585 item->applied = true;
586 }
587
588 /*
589 * We should update source location unless there was an error, since
590 * even if the active value didn't change, the reset value might have.
591 * (In the postmaster, there won't be a difference, but it does matter
592 * in backends.)
593 */
594 if (scres != 0 && applySettings)
596 item->sourceline);
597
598 if (pre_value)
599 pfree(pre_value);
600 }
601
602 /* Remember when we last successfully loaded the config file. */
603 if (applySettings)
605
607 if (error && applySettings)
608 {
609 /* During postmaster startup, any error is fatal */
610 if (context == PGC_POSTMASTER)
612 (errcode(ERRCODE_CONFIG_FILE_ERROR),
613 errmsg("configuration file \"%s\" contains errors",
614 ConfFileWithError)));
615 else if (applying)
616 ereport(elevel,
617 (errcode(ERRCODE_CONFIG_FILE_ERROR),
618 errmsg("configuration file \"%s\" contains errors; unaffected changes were applied",
619 ConfFileWithError)));
620 else
621 ereport(elevel,
622 (errcode(ERRCODE_CONFIG_FILE_ERROR),
623 errmsg("configuration file \"%s\" contains errors; no changes were applied",
624 ConfFileWithError)));
625 }
626
627 /* Successful or otherwise, return the collected data list */
628 return head;
629}
TimestampTz PgReloadTime
Definition: timestamp.c:57
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1645
bool IsUnderPostmaster
Definition: globals.c:120
char * DataDir
Definition: globals.c:71
void record_config_file_error(const char *errmsg, const char *config_file, int lineno, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition: guc-file.l:278
bool ParseConfigFile(const char *config_file, bool strict, const char *calling_file, int calling_lineno, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
Definition: guc-file.l:175
const char * GetConfigOption(const char *name, bool missing_ok, bool restrict_privileged)
Definition: guc.c:4361
static void pg_timezone_abbrev_initialize(void)
Definition: guc.c:1998
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:3348
@ PGC_SIGHUP
Definition: guc.h:75
@ PGC_BACKEND
Definition: guc.h:77
char * ConfigFileName
Definition: guc_tables.c:556
#define GUC_IS_IN_FILE
Definition: guc_tables.h:205
#define GUC_PENDING_RESTART
Definition: guc_tables.h:210
const char * GetDatabaseEncodingName(void)
Definition: mbutils.c:1268
static void bail_out(bool noatexit, const char *fmt,...) pg_attribute_printf(2
Definition: pg_regress.c:255
static void error(void)
Definition: sql-dyntest.c:147
char * name
Definition: guc.h:141
bool ignore
Definition: guc.h:146
struct ConfigVariable * next
Definition: guc.h:148
bool applied
Definition: guc.h:147
char * filename
Definition: guc.h:144
int sourceline
Definition: guc.h:145
char * value
Definition: guc.h:142
char * errmsg
Definition: guc.h:143

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

Referenced by ProcessConfigFile(), and show_all_file_settings().

◆ ProcessGUCArray()

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

Definition at line 6479 of file guc.c.

6481{
6482 List *gucNames;
6483 List *gucValues;
6484 ListCell *lc1;
6485 ListCell *lc2;
6486
6487 TransformGUCArray(array, &gucNames, &gucValues);
6488 forboth(lc1, gucNames, lc2, gucValues)
6489 {
6490 char *name = lfirst(lc1);
6491 char *value = lfirst(lc2);
6492
6494 context, source,
6495 action, true, 0, false);
6496
6497 pfree(name);
6498 pfree(value);
6499 }
6500
6501 list_free(gucNames);
6502 list_free(gucValues);
6503}
void TransformGUCArray(ArrayType *array, List **names, List **values)
Definition: guc.c:6422
void list_free(List *list)
Definition: list.c:1546
#define forboth(cell1, list1, cell2, list2)
Definition: pg_list.h:518
Definition: pg_list.h:54

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

Referenced by ApplySetting(), and ProcedureCreate().

◆ push_old_value()

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

Definition at line 2140 of file guc.c.

2141{
2142 GucStack *stack;
2143
2144 /* If we're not inside a nest level, do nothing */
2145 if (GUCNestLevel == 0)
2146 return;
2147
2148 /* Do we already have a stack entry of the current nest level? */
2149 stack = gconf->stack;
2150 if (stack && stack->nest_level >= GUCNestLevel)
2151 {
2152 /* Yes, so adjust its state if necessary */
2153 Assert(stack->nest_level == GUCNestLevel);
2154 switch (action)
2155 {
2156 case GUC_ACTION_SET:
2157 /* SET overrides any prior action at same nest level */
2158 if (stack->state == GUC_SET_LOCAL)
2159 {
2160 /* must discard old masked value */
2161 discard_stack_value(gconf, &stack->masked);
2162 }
2163 stack->state = GUC_SET;
2164 break;
2165 case GUC_ACTION_LOCAL:
2166 if (stack->state == GUC_SET)
2167 {
2168 /* SET followed by SET LOCAL, remember SET's value */
2169 stack->masked_scontext = gconf->scontext;
2170 stack->masked_srole = gconf->srole;
2171 set_stack_value(gconf, &stack->masked);
2172 stack->state = GUC_SET_LOCAL;
2173 }
2174 /* in all other cases, no change to stack entry */
2175 break;
2176 case GUC_ACTION_SAVE:
2177 /* Could only have a prior SAVE of same variable */
2178 Assert(stack->state == GUC_SAVE);
2179 break;
2180 }
2181 return;
2182 }
2183
2184 /*
2185 * Push a new stack entry
2186 *
2187 * We keep all the stack entries in TopTransactionContext for simplicity.
2188 */
2190 sizeof(GucStack));
2191
2192 stack->prev = gconf->stack;
2193 stack->nest_level = GUCNestLevel;
2194 switch (action)
2195 {
2196 case GUC_ACTION_SET:
2197 stack->state = GUC_SET;
2198 break;
2199 case GUC_ACTION_LOCAL:
2200 stack->state = GUC_LOCAL;
2201 break;
2202 case GUC_ACTION_SAVE:
2203 stack->state = GUC_SAVE;
2204 break;
2205 }
2206 stack->source = gconf->source;
2207 stack->scontext = gconf->scontext;
2208 stack->srole = gconf->srole;
2209 set_stack_value(gconf, &stack->prior);
2210
2211 if (gconf->stack == NULL)
2213 gconf->stack = stack;
2214}
static void set_stack_value(struct config_generic *gconf, config_var_value *val)
Definition: guc.c:814
@ GUC_ACTION_SAVE
Definition: guc.h:205
@ GUC_ACTION_LOCAL
Definition: guc.h:204
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1263
MemoryContext TopTransactionContext
Definition: mcxt.c:171

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

Referenced by ResetAllOptions(), and set_config_with_handle().

◆ read_gucstate()

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

Definition at line 6157 of file guc.c.

6158{
6159 char *retptr = *srcptr;
6160 char *ptr;
6161
6162 if (*srcptr >= srcend)
6163 elog(ERROR, "incomplete GUC state");
6164
6165 /* The string variables are all null terminated */
6166 for (ptr = *srcptr; ptr < srcend && *ptr != '\0'; ptr++)
6167 ;
6168
6169 if (ptr >= srcend)
6170 elog(ERROR, "could not find null terminator in GUC state");
6171
6172 /* Set the new position to the byte following the terminating NUL */
6173 *srcptr = ptr + 1;
6174
6175 return retptr;
6176}

References elog, and ERROR.

Referenced by RestoreGUCState().

◆ read_gucstate_binary()

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

Definition at line 6180 of file guc.c.

6181{
6182 if (*srcptr + size > srcend)
6183 elog(ERROR, "incomplete GUC state");
6184
6185 memcpy(dest, *srcptr, size);
6186 *srcptr += size;
6187}

References generate_unaccent_rules::dest, elog, and ERROR.

Referenced by RestoreGUCState().

◆ reapply_stacked_values()

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

Definition at line 5044 of file guc.c.

5050{
5051 const char *name = variable->name;
5052 GucStack *oldvarstack = variable->stack;
5053
5054 if (stack != NULL)
5055 {
5056 /* First, recurse, so that stack items are processed bottom to top */
5057 reapply_stacked_values(variable, pHolder, stack->prev,
5058 stack->prior.val.stringval,
5059 stack->scontext, stack->source, stack->srole);
5060
5061 /* See how to apply the passed-in value */
5062 switch (stack->state)
5063 {
5064 case GUC_SAVE:
5065 (void) set_config_option_ext(name, curvalue,
5066 curscontext, cursource, cursrole,
5067 GUC_ACTION_SAVE, true,
5068 WARNING, false);
5069 break;
5070
5071 case GUC_SET:
5072 (void) set_config_option_ext(name, curvalue,
5073 curscontext, cursource, cursrole,
5074 GUC_ACTION_SET, true,
5075 WARNING, false);
5076 break;
5077
5078 case GUC_LOCAL:
5079 (void) set_config_option_ext(name, curvalue,
5080 curscontext, cursource, cursrole,
5081 GUC_ACTION_LOCAL, true,
5082 WARNING, false);
5083 break;
5084
5085 case GUC_SET_LOCAL:
5086 /* first, apply the masked value as SET */
5088 stack->masked_scontext,
5090 stack->masked_srole,
5091 GUC_ACTION_SET, true,
5092 WARNING, false);
5093 /* then apply the current value as LOCAL */
5094 (void) set_config_option_ext(name, curvalue,
5095 curscontext, cursource, cursrole,
5096 GUC_ACTION_LOCAL, true,
5097 WARNING, false);
5098 break;
5099 }
5100
5101 /* If we successfully made a stack entry, adjust its nest level */
5102 if (variable->stack != oldvarstack)
5103 variable->stack->nest_level = stack->nest_level;
5104 }
5105 else
5106 {
5107 /*
5108 * We are at the end of the stack. If the active/previous value is
5109 * different from the reset value, it must represent a previously
5110 * committed session value. Apply it, and then drop the stack entry
5111 * that set_config_option will have created under the impression that
5112 * this is to be just a transactional assignment. (We leak the stack
5113 * entry.)
5114 */
5115 if (curvalue != pHolder->reset_val ||
5116 curscontext != pHolder->gen.reset_scontext ||
5117 cursource != pHolder->gen.reset_source ||
5118 cursrole != pHolder->gen.reset_srole)
5119 {
5120 (void) set_config_option_ext(name, curvalue,
5121 curscontext, cursource, cursrole,
5122 GUC_ACTION_SET, true, WARNING, false);
5123 if (variable->stack != NULL)
5124 {
5125 slist_delete(&guc_stack_list, &variable->stack_link);
5126 variable->stack = NULL;
5127 }
5128 }
5129 }
5130}
void slist_delete(slist_head *head, const slist_node *node)
Definition: ilist.c:31

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

Referenced by define_custom_variable(), and reapply_stacked_values().

◆ RemoveGUCFromLists()

static void RemoveGUCFromLists ( struct config_generic gconf)
static

◆ replace_auto_config_value()

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

Definition at line 4543 of file guc.c.

4545{
4546 ConfigVariable *item,
4547 *next,
4548 *prev = NULL;
4549
4550 /*
4551 * Remove any existing match(es) for "name". Normally there'd be at most
4552 * one, but if external tools have modified the config file, there could
4553 * be more.
4554 */
4555 for (item = *head_p; item != NULL; item = next)
4556 {
4557 next = item->next;
4558 if (guc_name_compare(item->name, name) == 0)
4559 {
4560 /* found a match, delete it */
4561 if (prev)
4562 prev->next = next;
4563 else
4564 *head_p = next;
4565 if (next == NULL)
4566 *tail_p = prev;
4567
4568 pfree(item->name);
4569 pfree(item->value);
4570 pfree(item->filename);
4571 pfree(item);
4572 }
4573 else
4574 prev = item;
4575 }
4576
4577 /* Done if we're trying to delete it */
4578 if (value == NULL)
4579 return;
4580
4581 /* OK, append a new entry */
4582 item = palloc(sizeof *item);
4583 item->name = pstrdup(name);
4584 item->value = pstrdup(value);
4585 item->errmsg = NULL;
4586 item->filename = pstrdup(""); /* new item has no location */
4587 item->sourceline = 0;
4588 item->ignore = false;
4589 item->applied = false;
4590 item->next = NULL;
4591
4592 if (*head_p == NULL)
4593 *head_p = item;
4594 else
4595 (*tail_p)->next = item;
4596 *tail_p = item;
4597}
static int32 next
Definition: blutils.c:224

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

Referenced by AlterSystemSetConfigFile().

◆ ReportChangedGUCOptions()

void ReportChangedGUCOptions ( void  )

Definition at line 2602 of file guc.c.

2603{
2604 slist_mutable_iter iter;
2605
2606 /* Quick exit if not (yet) enabled */
2607 if (!reporting_enabled)
2608 return;
2609
2610 /*
2611 * Since in_hot_standby isn't actually changed by normal GUC actions, we
2612 * need a hack to check whether a new value needs to be reported to the
2613 * client. For speed, we rely on the assumption that it can never
2614 * transition from false to true.
2615 */
2617 SetConfigOption("in_hot_standby", "false",
2619
2620 /* Transmit new values of interesting variables */
2622 {
2623 struct config_generic *conf = slist_container(struct config_generic,
2624 report_link, iter.cur);
2625
2626 Assert((conf->flags & GUC_REPORT) && (conf->status & GUC_NEEDS_REPORT));
2627 ReportGUCOption(conf);
2628 conf->status &= ~GUC_NEEDS_REPORT;
2629 slist_delete_current(&iter);
2630 }
2631}
bool in_hot_standby_guc
Definition: guc_tables.c:640

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

Referenced by PostgresMain().

◆ ReportGUCOption()

static void ReportGUCOption ( struct config_generic record)
static

Definition at line 2640 of file guc.c.

2641{
2642 char *val = ShowGUCOption(record, false);
2643
2644 if (record->last_reported == NULL ||
2645 strcmp(val, record->last_reported) != 0)
2646 {
2647 StringInfoData msgbuf;
2648
2650 pq_sendstring(&msgbuf, record->name);
2651 pq_sendstring(&msgbuf, val);
2652 pq_endmessage(&msgbuf);
2653
2654 /*
2655 * We need a long-lifespan copy. If guc_strdup() fails due to OOM,
2656 * we'll set last_reported to NULL and thereby possibly make a
2657 * duplicate report later.
2658 */
2659 guc_free(record->last_reported);
2660 record->last_reported = guc_strdup(LOG, val);
2661 }
2662
2663 pfree(val);
2664}
void pq_sendstring(StringInfo buf, const char *str)
Definition: pqformat.c:195
void pq_endmessage(StringInfo buf)
Definition: pqformat.c:296
void pq_beginmessage(StringInfo buf, char msgtype)
Definition: pqformat.c:88
#define PqMsg_ParameterStatus
Definition: protocol.h:51

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

Referenced by BeginReportingGUCOptions(), and ReportChangedGUCOptions().

◆ ResetAllOptions()

void ResetAllOptions ( void  )

Definition at line 2009 of file guc.c.

2010{
2011 dlist_mutable_iter iter;
2012
2013 /* We need only consider GUCs not already at PGC_S_DEFAULT */
2015 {
2016 struct config_generic *gconf = dlist_container(struct config_generic,
2017 nondef_link, iter.cur);
2018
2019 /* Don't reset non-SET-able values */
2020 if (gconf->context != PGC_SUSET &&
2021 gconf->context != PGC_USERSET)
2022 continue;
2023 /* Don't reset if special exclusion from RESET ALL */
2024 if (gconf->flags & GUC_NO_RESET_ALL)
2025 continue;
2026 /* No need to reset if wasn't SET */
2027 if (gconf->source <= PGC_S_OVERRIDE)
2028 continue;
2029
2030 /* Save old value to support transaction abort */
2032
2033 switch (gconf->vartype)
2034 {
2035 case PGC_BOOL:
2036 {
2037 struct config_bool *conf = (struct config_bool *) gconf;
2038
2039 if (conf->assign_hook)
2040 conf->assign_hook(conf->reset_val,
2041 conf->reset_extra);
2042 *conf->variable = conf->reset_val;
2043 set_extra_field(&conf->gen, &conf->gen.extra,
2044 conf->reset_extra);
2045 break;
2046 }
2047 case PGC_INT:
2048 {
2049 struct config_int *conf = (struct config_int *) gconf;
2050
2051 if (conf->assign_hook)
2052 conf->assign_hook(conf->reset_val,
2053 conf->reset_extra);
2054 *conf->variable = conf->reset_val;
2055 set_extra_field(&conf->gen, &conf->gen.extra,
2056 conf->reset_extra);
2057 break;
2058 }
2059 case PGC_REAL:
2060 {
2061 struct config_real *conf = (struct config_real *) gconf;
2062
2063 if (conf->assign_hook)
2064 conf->assign_hook(conf->reset_val,
2065 conf->reset_extra);
2066 *conf->variable = conf->reset_val;
2067 set_extra_field(&conf->gen, &conf->gen.extra,
2068 conf->reset_extra);
2069 break;
2070 }
2071 case PGC_STRING:
2072 {
2073 struct config_string *conf = (struct config_string *) gconf;
2074
2075 if (conf->assign_hook)
2076 conf->assign_hook(conf->reset_val,
2077 conf->reset_extra);
2078 set_string_field(conf, conf->variable, conf->reset_val);
2079 set_extra_field(&conf->gen, &conf->gen.extra,
2080 conf->reset_extra);
2081 break;
2082 }
2083 case PGC_ENUM:
2084 {
2085 struct config_enum *conf = (struct config_enum *) gconf;
2086
2087 if (conf->assign_hook)
2088 conf->assign_hook(conf->reset_val,
2089 conf->reset_extra);
2090 *conf->variable = conf->reset_val;
2091 set_extra_field(&conf->gen, &conf->gen.extra,
2092 conf->reset_extra);
2093 break;
2094 }
2095 }
2096
2097 set_guc_source(gconf, gconf->reset_source);
2098 gconf->scontext = gconf->reset_scontext;
2099 gconf->srole = gconf->reset_srole;
2100
2101 if ((gconf->flags & GUC_REPORT) && !(gconf->status & GUC_NEEDS_REPORT))
2102 {
2103 gconf->status |= GUC_NEEDS_REPORT;
2105 }
2106 }
2107}
static void push_old_value(struct config_generic *gconf, GucAction action)
Definition: guc.c:2140
#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, config_generic::context, dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, config_generic::extra, config_generic::flags, config_bool::gen, config_int::gen, config_real::gen, config_string::gen, config_enum::gen, GUC_ACTION_SET, GUC_NEEDS_REPORT, GUC_NO_RESET_ALL, guc_nondef_list, GUC_REPORT, guc_report_list, config_generic::nondef_link, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_REAL, PGC_S_OVERRIDE, PGC_STRING, PGC_SUSET, PGC_USERSET, push_old_value(), config_generic::report_link, config_bool::reset_extra, config_int::reset_extra, config_real::reset_extra, config_string::reset_extra, config_enum::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, config_generic::scontext, set_extra_field(), set_guc_source(), set_string_field(), slist_push_head(), config_generic::source, config_generic::srole, config_generic::status, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, and config_generic::vartype.

Referenced by DiscardAll(), and ExecSetVariableStmt().

◆ RestoreGUCState()

void RestoreGUCState ( void *  gucstate)

Definition at line 6216 of file guc.c.

6217{
6218 char *varname,
6219 *varvalue,
6220 *varsourcefile;
6221 int varsourceline;
6222 GucSource varsource;
6223 GucContext varscontext;
6224 Oid varsrole;
6225 char *srcptr = (char *) gucstate;
6226 char *srcend;
6227 Size len;
6228 dlist_mutable_iter iter;
6229 ErrorContextCallback error_context_callback;
6230
6231 /*
6232 * First, ensure that all potentially-shippable GUCs are reset to their
6233 * default values. We must not touch those GUCs that the leader will
6234 * never ship, while there is no need to touch those that are shippable
6235 * but already have their default values. Thus, this ends up being the
6236 * same test that SerializeGUCState uses, even though the sets of
6237 * variables involved may well be different since the leader's set of
6238 * variables-not-at-default-values can differ from the set that are
6239 * not-default in this freshly started worker.
6240 *
6241 * Once we have set all the potentially-shippable GUCs to default values,
6242 * restoring the GUCs that the leader sent (because they had non-default
6243 * values over there) leads us to exactly the set of GUC values that the
6244 * leader has. This is true even though the worker may have initially
6245 * absorbed postgresql.conf settings that the leader hasn't yet seen, or
6246 * ALTER USER/DATABASE SET settings that were established after the leader
6247 * started.
6248 *
6249 * Note that ensuring all the potential target GUCs are at PGC_S_DEFAULT
6250 * also ensures that set_config_option won't refuse to set them because of
6251 * source-priority comparisons.
6252 */
6254 {
6255 struct config_generic *gconf = dlist_container(struct config_generic,
6256 nondef_link, iter.cur);
6257
6258 /* Do nothing if non-shippable or if already at PGC_S_DEFAULT. */
6259 if (can_skip_gucvar(gconf))
6260 continue;
6261
6262 /*
6263 * We can use InitializeOneGUCOption to reset the GUC to default, but
6264 * first we must free any existing subsidiary data to avoid leaking
6265 * memory. The stack must be empty, but we have to clean up all other
6266 * fields. Beware that there might be duplicate value or "extra"
6267 * pointers. We also have to be sure to take it out of any lists it's
6268 * in.
6269 */
6270 Assert(gconf->stack == NULL);
6271 guc_free(gconf->extra);
6272 guc_free(gconf->last_reported);
6273 guc_free(gconf->sourcefile);
6274 switch (gconf->vartype)
6275 {
6276 case PGC_BOOL:
6277 {
6278 struct config_bool *conf = (struct config_bool *) gconf;
6279
6280 if (conf->reset_extra && conf->reset_extra != gconf->extra)
6281 guc_free(conf->reset_extra);
6282 break;
6283 }
6284 case PGC_INT:
6285 {
6286 struct config_int *conf = (struct config_int *) gconf;
6287
6288 if (conf->reset_extra && conf->reset_extra != gconf->extra)
6289 guc_free(conf->reset_extra);
6290 break;
6291 }
6292 case PGC_REAL:
6293 {
6294 struct config_real *conf = (struct config_real *) gconf;
6295
6296 if (conf->reset_extra && conf->reset_extra != gconf->extra)
6297 guc_free(conf->reset_extra);
6298 break;
6299 }
6300 case PGC_STRING:
6301 {
6302 struct config_string *conf = (struct config_string *) gconf;
6303
6304 guc_free(*conf->variable);
6305 if (conf->reset_val && conf->reset_val != *conf->variable)
6306 guc_free(conf->reset_val);
6307 if (conf->reset_extra && conf->reset_extra != gconf->extra)
6308 guc_free(conf->reset_extra);
6309 break;
6310 }
6311 case PGC_ENUM:
6312 {
6313 struct config_enum *conf = (struct config_enum *) gconf;
6314
6315 if (conf->reset_extra && conf->reset_extra != gconf->extra)
6316 guc_free(conf->reset_extra);
6317 break;
6318 }
6319 }
6320 /* Remove it from any lists it's in. */
6321 RemoveGUCFromLists(gconf);
6322 /* Now we can reset the struct to PGS_S_DEFAULT state. */
6324 }
6325
6326 /* First item is the length of the subsequent data */
6327 memcpy(&len, gucstate, sizeof(len));
6328
6329 srcptr += sizeof(len);
6330 srcend = srcptr + len;
6331
6332 /* If the GUC value check fails, we want errors to show useful context. */
6333 error_context_callback.callback = guc_restore_error_context_callback;
6334 error_context_callback.previous = error_context_stack;
6335 error_context_callback.arg = NULL;
6336 error_context_stack = &error_context_callback;
6337
6338 /* Restore all the listed GUCs. */
6339 while (srcptr < srcend)
6340 {
6341 int result;
6342 char *error_context_name_and_value[2];
6343
6344 varname = read_gucstate(&srcptr, srcend);
6345 varvalue = read_gucstate(&srcptr, srcend);
6346 varsourcefile = read_gucstate(&srcptr, srcend);
6347 if (varsourcefile[0])
6348 read_gucstate_binary(&srcptr, srcend,
6349 &varsourceline, sizeof(varsourceline));
6350 else
6351 varsourceline = 0;
6352 read_gucstate_binary(&srcptr, srcend,
6353 &varsource, sizeof(varsource));
6354 read_gucstate_binary(&srcptr, srcend,
6355 &varscontext, sizeof(varscontext));
6356 read_gucstate_binary(&srcptr, srcend,
6357 &varsrole, sizeof(varsrole));
6358
6359 error_context_name_and_value[0] = varname;
6360 error_context_name_and_value[1] = varvalue;
6361 error_context_callback.arg = &error_context_name_and_value[0];
6362 result = set_config_option_ext(varname, varvalue,
6363 varscontext, varsource, varsrole,
6364 GUC_ACTION_SET, true, ERROR, true);
6365 if (result <= 0)
6366 ereport(ERROR,
6367 (errcode(ERRCODE_INTERNAL_ERROR),
6368 errmsg("parameter \"%s\" could not be set", varname)));
6369 if (varsourcefile[0])
6370 set_config_sourcefile(varname, varsourcefile, varsourceline);
6371 error_context_callback.arg = NULL;
6372 }
6373
6374 error_context_stack = error_context_callback.previous;
6375}
ErrorContextCallback * error_context_stack
Definition: elog.c:95
static void guc_restore_error_context_callback(void *arg)
Definition: guc.c:6194
static void read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
Definition: guc.c:6180
static char * read_gucstate(char **srcptr, char *srcend)
Definition: guc.c:6157
struct ErrorContextCallback * previous
Definition: elog.h:297
void(* callback)(void *arg)
Definition: elog.h:298

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

Referenced by ParallelWorkerMain().

◆ RestrictSearchPath()

◆ SelectConfigFiles()

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

Definition at line 1786 of file guc.c.

1787{
1788 char *configdir;
1789 char *fname;
1790 bool fname_is_malloced;
1791 struct stat stat_buf;
1792 struct config_string *data_directory_rec;
1793
1794 /* configdir is -D option, or $PGDATA if no -D */
1795 if (userDoption)
1796 configdir = make_absolute_path(userDoption);
1797 else
1798 configdir = make_absolute_path(getenv("PGDATA"));
1799
1800 if (configdir && stat(configdir, &stat_buf) != 0)
1801 {
1802 write_stderr("%s: could not access directory \"%s\": %m\n",
1803 progname,
1804 configdir);
1805 if (errno == ENOENT)
1806 write_stderr("Run initdb or pg_basebackup to initialize a PostgreSQL data directory.\n");
1807 goto fail;
1808 }
1809
1810 /*
1811 * Find the configuration file: if config_file was specified on the
1812 * command line, use it, else use configdir/postgresql.conf. In any case
1813 * ensure the result is an absolute path, so that it will be interpreted
1814 * the same way by future backends.
1815 */
1816 if (ConfigFileName)
1817 {
1819 fname_is_malloced = true;
1820 }
1821 else if (configdir)
1822 {
1823 fname = guc_malloc(FATAL,
1824 strlen(configdir) + strlen(CONFIG_FILENAME) + 2);
1825 sprintf(fname, "%s/%s", configdir, CONFIG_FILENAME);
1826 fname_is_malloced = false;
1827 }
1828 else
1829 {
1830 write_stderr("%s does not know where to find the server configuration file.\n"
1831 "You must specify the --config-file or -D invocation "
1832 "option or set the PGDATA environment variable.\n",
1833 progname);
1834 goto fail;
1835 }
1836
1837 /*
1838 * Set the ConfigFileName GUC variable to its final value, ensuring that
1839 * it can't be overridden later.
1840 */
1841 SetConfigOption("config_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1842
1843 if (fname_is_malloced)
1844 free(fname);
1845 else
1846 guc_free(fname);
1847
1848 /*
1849 * Now read the config file for the first time.
1850 */
1851 if (stat(ConfigFileName, &stat_buf) != 0)
1852 {
1853 write_stderr("%s: could not access the server configuration file \"%s\": %m\n",
1855 goto fail;
1856 }
1857
1858 /*
1859 * Read the configuration file for the first time. This time only the
1860 * data_directory parameter is picked up to determine the data directory,
1861 * so that we can read the PG_AUTOCONF_FILENAME file next time.
1862 */
1864
1865 /*
1866 * If the data_directory GUC variable has been set, use that as DataDir;
1867 * otherwise use configdir if set; else punt.
1868 *
1869 * Note: SetDataDir will copy and absolute-ize its argument, so we don't
1870 * have to.
1871 */
1872 data_directory_rec = (struct config_string *)
1873 find_option("data_directory", false, false, PANIC);
1874 if (*data_directory_rec->variable)
1875 SetDataDir(*data_directory_rec->variable);
1876 else if (configdir)
1877 SetDataDir(configdir);
1878 else
1879 {
1880 write_stderr("%s does not know where to find the database system data.\n"
1881 "This can be specified as \"data_directory\" in \"%s\", "
1882 "or by the -D invocation option, or by the "
1883 "PGDATA environment variable.\n",
1885 goto fail;
1886 }
1887
1888 /*
1889 * Reflect the final DataDir value back into the data_directory GUC var.
1890 * (If you are wondering why we don't just make them a single variable,
1891 * it's because the EXEC_BACKEND case needs DataDir to be transmitted to
1892 * child backends specially. XXX is that still true? Given that we now
1893 * chdir to DataDir, EXEC_BACKEND can read the config file without knowing
1894 * DataDir in advance.)
1895 */
1897
1898 /*
1899 * Now read the config file a second time, allowing any settings in the
1900 * PG_AUTOCONF_FILENAME file to take effect. (This is pretty ugly, but
1901 * since we have to determine the DataDir before we can find the autoconf
1902 * file, the alternatives seem worse.)
1903 */
1905
1906 /*
1907 * If timezone_abbreviations wasn't set in the configuration file, install
1908 * the default value. We do it this way because we can't safely install a
1909 * "real" value until my_exec_path is set, which may not have happened
1910 * when InitializeGUCOptions runs, so the bootstrap default value cannot
1911 * be the real desired default.
1912 */
1914
1915 /*
1916 * Figure out where pg_hba.conf is, and make sure the path is absolute.
1917 */
1918 if (HbaFileName)
1919 {
1921 fname_is_malloced = true;
1922 }
1923 else if (configdir)
1924 {
1925 fname = guc_malloc(FATAL,
1926 strlen(configdir) + strlen(HBA_FILENAME) + 2);
1927 sprintf(fname, "%s/%s", configdir, HBA_FILENAME);
1928 fname_is_malloced = false;
1929 }
1930 else
1931 {
1932 write_stderr("%s does not know where to find the \"hba\" configuration file.\n"
1933 "This can be specified as \"hba_file\" in \"%s\", "
1934 "or by the -D invocation option, or by the "
1935 "PGDATA environment variable.\n",
1937 goto fail;
1938 }
1939 SetConfigOption("hba_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1940
1941 if (fname_is_malloced)
1942 free(fname);
1943 else
1944 guc_free(fname);
1945
1946 /*
1947 * Likewise for pg_ident.conf.
1948 */
1949 if (IdentFileName)
1950 {
1952 fname_is_malloced = true;
1953 }
1954 else if (configdir)
1955 {
1956 fname = guc_malloc(FATAL,
1957 strlen(configdir) + strlen(IDENT_FILENAME) + 2);
1958 sprintf(fname, "%s/%s", configdir, IDENT_FILENAME);
1959 fname_is_malloced = false;
1960 }
1961 else
1962 {
1963 write_stderr("%s does not know where to find the \"ident\" configuration file.\n"
1964 "This can be specified as \"ident_file\" in \"%s\", "
1965 "or by the -D invocation option, or by the "
1966 "PGDATA environment variable.\n",
1968 goto fail;
1969 }
1970 SetConfigOption("ident_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
1971
1972 if (fname_is_malloced)
1973 free(fname);
1974 else
1975 guc_free(fname);
1976
1977 free(configdir);
1978
1979 return true;
1980
1981fail:
1982 free(configdir);
1983
1984 return false;
1985}
#define write_stderr(str)
Definition: parallel.c:186
#define PANIC
Definition: elog.h:42
void ProcessConfigFile(GucContext context)
Definition: guc-file.l:120
#define IDENT_FILENAME
Definition: guc.c:58
#define HBA_FILENAME
Definition: guc.c:57
#define CONFIG_FILENAME
Definition: guc.c:56
char * HbaFileName
Definition: guc_tables.c:557
char * IdentFileName
Definition: guc_tables.c:558
#define free(a)
Definition: header.h:65
const char * progname
Definition: main.c:44
void SetDataDir(const char *dir)
Definition: miscinit.c:389
#define sprintf
Definition: port.h:241
char * make_absolute_path(const char *path)
Definition: path.c:807
static const char * userDoption
Definition: postgres.c:154

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

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

◆ serialize_variable()

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

Definition at line 6047 of file guc.c.

6049{
6050 /* Ignore skippable GUCs. */
6051 if (can_skip_gucvar(gconf))
6052 return;
6053
6054 do_serialize(destptr, maxbytes, "%s", gconf->name);
6055
6056 switch (gconf->vartype)
6057 {
6058 case PGC_BOOL:
6059 {
6060 struct config_bool *conf = (struct config_bool *) gconf;
6061
6062 do_serialize(destptr, maxbytes,
6063 (*conf->variable ? "true" : "false"));
6064 }
6065 break;
6066
6067 case PGC_INT:
6068 {
6069 struct config_int *conf = (struct config_int *) gconf;
6070
6071 do_serialize(destptr, maxbytes, "%d", *conf->variable);
6072 }
6073 break;
6074
6075 case PGC_REAL:
6076 {
6077 struct config_real *conf = (struct config_real *) gconf;
6078
6079 do_serialize(destptr, maxbytes, "%.*e",
6081 }
6082 break;
6083
6084 case PGC_STRING:
6085 {
6086 struct config_string *conf = (struct config_string *) gconf;
6087
6088 /* NULL becomes empty string, see estimate_variable_size() */
6089 do_serialize(destptr, maxbytes, "%s",
6090 *conf->variable ? *conf->variable : "");
6091 }
6092 break;
6093
6094 case PGC_ENUM:
6095 {
6096 struct config_enum *conf = (struct config_enum *) gconf;
6097
6098 do_serialize(destptr, maxbytes, "%s",
6100 }
6101 break;
6102 }
6103
6104 do_serialize(destptr, maxbytes, "%s",
6105 (gconf->sourcefile ? gconf->sourcefile : ""));
6106
6107 if (gconf->sourcefile && gconf->sourcefile[0])
6108 do_serialize_binary(destptr, maxbytes, &gconf->sourceline,
6109 sizeof(gconf->sourceline));
6110
6111 do_serialize_binary(destptr, maxbytes, &gconf->source,
6112 sizeof(gconf->source));
6113 do_serialize_binary(destptr, maxbytes, &gconf->scontext,
6114 sizeof(gconf->scontext));
6115 do_serialize_binary(destptr, maxbytes, &gconf->srole,
6116 sizeof(gconf->srole));
6117}
static void do_serialize(char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
Definition: guc.c:6002
static void do_serialize_binary(char **destptr, Size *maxbytes, void *val, Size valsize)
Definition: guc.c:6032

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

Referenced by SerializeGUCState().

◆ SerializeGUCState()

void SerializeGUCState ( Size  maxsize,
char *  start_address 
)

Definition at line 6124 of file guc.c.

6125{
6126 char *curptr;
6127 Size actual_size;
6128 Size bytes_left;
6129 dlist_iter iter;
6130
6131 /* Reserve space for saving the actual size of the guc state */
6132 Assert(maxsize > sizeof(actual_size));
6133 curptr = start_address + sizeof(actual_size);
6134 bytes_left = maxsize - sizeof(actual_size);
6135
6136 /* We need only consider GUCs with source not PGC_S_DEFAULT */
6138 {
6139 struct config_generic *gconf = dlist_container(struct config_generic,
6140 nondef_link, iter.cur);
6141
6142 serialize_variable(&curptr, &bytes_left, gconf);
6143 }
6144
6145 /* Store actual size without assuming alignment of start_address. */
6146 actual_size = maxsize - bytes_left - sizeof(actual_size);
6147 memcpy(start_address, &actual_size, sizeof(actual_size));
6148}
static void serialize_variable(char **destptr, Size *maxbytes, struct config_generic *gconf)
Definition: guc.c:6047

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

Referenced by InitializeParallelDSM().

◆ set_config_option()

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

Definition at line 3348 of file guc.c.

3352{
3353 Oid srole;
3354
3355 /*
3356 * Non-interactive sources should be treated as having all privileges,
3357 * except for PGC_S_CLIENT. Note in particular that this is true for
3358 * pg_db_role_setting sources (PGC_S_GLOBAL etc): we assume a suitable
3359 * privilege check was done when the pg_db_role_setting entry was made.
3360 */
3362 srole = GetUserId();
3363 else
3364 srole = BOOTSTRAP_SUPERUSERID;
3365
3366 return set_config_with_handle(name, NULL, value,
3367 context, source, srole,
3368 action, changeVal, elevel,
3369 is_reload);
3370}
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:3411
@ PGC_S_CLIENT
Definition: guc.h:122
@ PGC_S_INTERACTIVE
Definition: guc.h:124

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

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

◆ set_config_option_ext()

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

Definition at line 3388 of file guc.c.

3392{
3393 return set_config_with_handle(name, NULL, value,
3394 context, source, srole,
3395 action, changeVal, elevel,
3396 is_reload);
3397}

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

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

◆ set_config_sourcefile()

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

Definition at line 4305 of file guc.c.

4306{
4307 struct config_generic *record;
4308 int elevel;
4309
4310 /*
4311 * To avoid cluttering the log, only the postmaster bleats loudly about
4312 * problems with the config file.
4313 */
4314 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4315
4316 record = find_option(name, true, false, elevel);
4317 /* should not happen */
4318 if (record == NULL)
4319 return;
4320
4321 sourcefile = guc_strdup(elevel, sourcefile);
4322 guc_free(record->sourcefile);
4323 record->sourcefile = sourcefile;
4324 record->sourceline = sourceline;
4325}
#define DEBUG3
Definition: elog.h:28

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

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

◆ set_config_with_handle()

int set_config_with_handle ( const char *  name,
config_handle handle,
const char *  value,
GucContext  context,
GucSource  source,
Oid  srole,
GucAction  action,
bool  changeVal,
int  elevel,
bool  is_reload 
)

Definition at line 3411 of file guc.c.

3416{
3417 struct config_generic *record;
3418 union config_var_val newval_union;
3419 void *newextra = NULL;
3420 bool prohibitValueChange = false;
3421 bool makeDefault;
3422
3423 if (elevel == 0)
3424 {
3426 {
3427 /*
3428 * To avoid cluttering the log, only the postmaster bleats loudly
3429 * about problems with the config file.
3430 */
3431 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
3432 }
3433 else if (source == PGC_S_GLOBAL ||
3435 source == PGC_S_USER ||
3437 elevel = WARNING;
3438 else
3439 elevel = ERROR;
3440 }
3441
3442 /* if handle is specified, no need to look up option */
3443 if (!handle)
3444 {
3445 record = find_option(name, true, false, elevel);
3446 if (record == NULL)
3447 return 0;
3448 }
3449 else
3450 record = handle;
3451
3452 /*
3453 * GUC_ACTION_SAVE changes are acceptable during a parallel operation,
3454 * because the current worker will also pop the change. We're probably
3455 * dealing with a function having a proconfig entry. Only the function's
3456 * body should observe the change, and peer workers do not share in the
3457 * execution of a function call started by this worker.
3458 *
3459 * Also allow normal setting if the GUC is marked GUC_ALLOW_IN_PARALLEL.
3460 *
3461 * Other changes might need to affect other workers, so forbid them.
3462 */
3463 if (IsInParallelMode() && changeVal && action != GUC_ACTION_SAVE &&
3464 (record->flags & GUC_ALLOW_IN_PARALLEL) == 0)
3465 {
3466 ereport(elevel,
3467 (errcode(ERRCODE_INVALID_TRANSACTION_STATE),
3468 errmsg("parameter \"%s\" cannot be set during a parallel operation",
3469 record->name)));
3470 return 0;
3471 }
3472
3473 /*
3474 * Check if the option can be set at this time. See guc.h for the precise
3475 * rules.
3476 */
3477 switch (record->context)
3478 {
3479 case PGC_INTERNAL:
3480 if (context != PGC_INTERNAL)
3481 {
3482 ereport(elevel,
3483 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3484 errmsg("parameter \"%s\" cannot be changed",
3485 record->name)));
3486 return 0;
3487 }
3488 break;
3489 case PGC_POSTMASTER:
3490 if (context == PGC_SIGHUP)
3491 {
3492 /*
3493 * We are re-reading a PGC_POSTMASTER variable from
3494 * postgresql.conf. We can't change the setting, so we should
3495 * give a warning if the DBA tries to change it. However,
3496 * because of variant formats, canonicalization by check
3497 * hooks, etc, we can't just compare the given string directly
3498 * to what's stored. Set a flag to check below after we have
3499 * the final storable value.
3500 */
3501 prohibitValueChange = true;
3502 }
3503 else if (context != PGC_POSTMASTER)
3504 {
3505 ereport(elevel,
3506 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3507 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3508 record->name)));
3509 return 0;
3510 }
3511 break;
3512 case PGC_SIGHUP:
3513 if (context != PGC_SIGHUP && context != PGC_POSTMASTER)
3514 {
3515 ereport(elevel,
3516 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3517 errmsg("parameter \"%s\" cannot be changed now",
3518 record->name)));
3519 return 0;
3520 }
3521
3522 /*
3523 * Hmm, the idea of the SIGHUP context is "ought to be global, but
3524 * can be changed after postmaster start". But there's nothing
3525 * that prevents a crafty administrator from sending SIGHUP
3526 * signals to individual backends only.
3527 */
3528 break;
3529 case PGC_SU_BACKEND:
3530 if (context == PGC_BACKEND)
3531 {
3532 /*
3533 * Check whether the requesting user has been granted
3534 * privilege to set this GUC.
3535 */
3536 AclResult aclresult;
3537
3538 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3539 if (aclresult != ACLCHECK_OK)
3540 {
3541 /* No granted privilege */
3542 ereport(elevel,
3543 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3544 errmsg("permission denied to set parameter \"%s\"",
3545 record->name)));
3546 return 0;
3547 }
3548 }
3549 /* fall through to process the same as PGC_BACKEND */
3550 /* FALLTHROUGH */
3551 case PGC_BACKEND:
3552 if (context == PGC_SIGHUP)
3553 {
3554 /*
3555 * If a PGC_BACKEND or PGC_SU_BACKEND parameter is changed in
3556 * the config file, we want to accept the new value in the
3557 * postmaster (whence it will propagate to
3558 * subsequently-started backends), but ignore it in existing
3559 * backends. This is a tad klugy, but necessary because we
3560 * don't re-read the config file during backend start.
3561 *
3562 * However, if changeVal is false then plow ahead anyway since
3563 * we are trying to find out if the value is potentially good,
3564 * not actually use it.
3565 *
3566 * In EXEC_BACKEND builds, this works differently: we load all
3567 * non-default settings from the CONFIG_EXEC_PARAMS file
3568 * during backend start. In that case we must accept
3569 * PGC_SIGHUP settings, so as to have the same value as if
3570 * we'd forked from the postmaster. This can also happen when
3571 * using RestoreGUCState() within a background worker that
3572 * needs to have the same settings as the user backend that
3573 * started it. is_reload will be true when either situation
3574 * applies.
3575 */
3576 if (IsUnderPostmaster && changeVal && !is_reload)
3577 return -1;
3578 }
3579 else if (context != PGC_POSTMASTER &&
3580 context != PGC_BACKEND &&
3581 context != PGC_SU_BACKEND &&
3583 {
3584 ereport(elevel,
3585 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3586 errmsg("parameter \"%s\" cannot be set after connection start",
3587 record->name)));
3588 return 0;
3589 }
3590 break;
3591 case PGC_SUSET:
3592 if (context == PGC_USERSET || context == PGC_BACKEND)
3593 {
3594 /*
3595 * Check whether the requesting user has been granted
3596 * privilege to set this GUC.
3597 */
3598 AclResult aclresult;
3599
3600 aclresult = pg_parameter_aclcheck(record->name, srole, ACL_SET);
3601 if (aclresult != ACLCHECK_OK)
3602 {
3603 /* No granted privilege */
3604 ereport(elevel,
3605 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3606 errmsg("permission denied to set parameter \"%s\"",
3607 record->name)));
3608 return 0;
3609 }
3610 }
3611 break;
3612 case PGC_USERSET:
3613 /* always okay */
3614 break;
3615 }
3616
3617 /*
3618 * Disallow changing GUC_NOT_WHILE_SEC_REST values if we are inside a
3619 * security restriction context. We can reject this regardless of the GUC
3620 * context or source, mainly because sources that it might be reasonable
3621 * to override for won't be seen while inside a function.
3622 *
3623 * Note: variables marked GUC_NOT_WHILE_SEC_REST should usually be marked
3624 * GUC_NO_RESET_ALL as well, because ResetAllOptions() doesn't check this.
3625 * An exception might be made if the reset value is assumed to be "safe".
3626 *
3627 * Note: this flag is currently used for "session_authorization" and
3628 * "role". We need to prohibit changing these inside a local userid
3629 * context because when we exit it, GUC won't be notified, leaving things
3630 * out of sync. (This could be fixed by forcing a new GUC nesting level,
3631 * but that would change behavior in possibly-undesirable ways.) Also, we
3632 * prohibit changing these in a security-restricted operation because
3633 * otherwise RESET could be used to regain the session user's privileges.
3634 */
3635 if (record->flags & GUC_NOT_WHILE_SEC_REST)
3636 {
3637 if (InLocalUserIdChange())
3638 {
3639 /*
3640 * Phrasing of this error message is historical, but it's the most
3641 * common case.
3642 */
3643 ereport(elevel,
3644 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3645 errmsg("cannot set parameter \"%s\" within security-definer function",
3646 record->name)));
3647 return 0;
3648 }
3650 {
3651 ereport(elevel,
3652 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3653 errmsg("cannot set parameter \"%s\" within security-restricted operation",
3654 record->name)));
3655 return 0;
3656 }
3657 }
3658
3659 /* Disallow resetting and saving GUC_NO_RESET values */
3660 if (record->flags & GUC_NO_RESET)
3661 {
3662 if (value == NULL)
3663 {
3664 ereport(elevel,
3665 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3666 errmsg("parameter \"%s\" cannot be reset", record->name)));
3667 return 0;
3668 }
3669 if (action == GUC_ACTION_SAVE)
3670 {
3671 ereport(elevel,
3672 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3673 errmsg("parameter \"%s\" cannot be set locally in functions",
3674 record->name)));
3675 return 0;
3676 }
3677 }
3678
3679 /*
3680 * Should we set reset/stacked values? (If so, the behavior is not
3681 * transactional.) This is done either when we get a default value from
3682 * the database's/user's/client's default settings or when we reset a
3683 * value to its default.
3684 */
3685 makeDefault = changeVal && (source <= PGC_S_OVERRIDE) &&
3686 ((value != NULL) || source == PGC_S_DEFAULT);
3687
3688 /*
3689 * Ignore attempted set if overridden by previously processed setting.
3690 * However, if changeVal is false then plow ahead anyway since we are
3691 * trying to find out if the value is potentially good, not actually use
3692 * it. Also keep going if makeDefault is true, since we may want to set
3693 * the reset/stacked values even if we can't set the variable itself.
3694 */
3695 if (record->source > source)
3696 {
3697 if (changeVal && !makeDefault)
3698 {
3699 elog(DEBUG3, "\"%s\": setting ignored because previous source is higher priority",
3700 record->name);
3701 return -1;
3702 }
3703 changeVal = false;
3704 }
3705
3706 /*
3707 * Evaluate value and set variable.
3708 */
3709 switch (record->vartype)
3710 {
3711 case PGC_BOOL:
3712 {
3713 struct config_bool *conf = (struct config_bool *) record;
3714
3715#define newval (newval_union.boolval)
3716
3717 if (value)
3718 {
3719 if (!parse_and_validate_value(record, value,
3720 source, elevel,
3721 &newval_union, &newextra))
3722 return 0;
3723 }
3724 else if (source == PGC_S_DEFAULT)
3725 {
3726 newval = conf->boot_val;
3727 if (!call_bool_check_hook(conf, &newval, &newextra,
3728 source, elevel))
3729 return 0;
3730 }
3731 else
3732 {
3733 newval = conf->reset_val;
3734 newextra = conf->reset_extra;
3735 source = conf->gen.reset_source;
3736 context = conf->gen.reset_scontext;
3737 srole = conf->gen.reset_srole;
3738 }
3739
3740 if (prohibitValueChange)
3741 {
3742 /* Release newextra, unless it's reset_extra */
3743 if (newextra && !extra_field_used(&conf->gen, newextra))
3744 guc_free(newextra);
3745
3746 if (*conf->variable != newval)
3747 {
3748 record->status |= GUC_PENDING_RESTART;
3749 ereport(elevel,
3750 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3751 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3752 conf->gen.name)));
3753 return 0;
3754 }
3755 record->status &= ~GUC_PENDING_RESTART;
3756 return -1;
3757 }
3758
3759 if (changeVal)
3760 {
3761 /* Save old value to support transaction abort */
3762 if (!makeDefault)
3763 push_old_value(&conf->gen, action);
3764
3765 if (conf->assign_hook)
3766 conf->assign_hook(newval, newextra);
3767 *conf->variable = newval;
3768 set_extra_field(&conf->gen, &conf->gen.extra,
3769 newextra);
3770 set_guc_source(&conf->gen, source);
3771 conf->gen.scontext = context;
3772 conf->gen.srole = srole;
3773 }
3774 if (makeDefault)
3775 {
3776 GucStack *stack;
3777
3778 if (conf->gen.reset_source <= source)
3779 {
3780 conf->reset_val = newval;
3781 set_extra_field(&conf->gen, &conf->reset_extra,
3782 newextra);
3783 conf->gen.reset_source = source;
3784 conf->gen.reset_scontext = context;
3785 conf->gen.reset_srole = srole;
3786 }
3787 for (stack = conf->gen.stack; stack; stack = stack->prev)
3788 {
3789 if (stack->source <= source)
3790 {
3791 stack->prior.val.boolval = newval;
3792 set_extra_field(&conf->gen, &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(&conf->gen, newextra))
3803 guc_free(newextra);
3804 break;
3805
3806#undef newval
3807 }
3808
3809 case PGC_INT:
3810 {
3811 struct config_int *conf = (struct config_int *) record;
3812
3813#define newval (newval_union.intval)
3814
3815 if (value)
3816 {
3817 if (!parse_and_validate_value(record, value,
3818 source, elevel,
3819 &newval_union, &newextra))
3820 return 0;
3821 }
3822 else if (source == PGC_S_DEFAULT)
3823 {
3824 newval = conf->boot_val;
3825 if (!call_int_check_hook(conf, &newval, &newextra,
3826 source, elevel))
3827 return 0;
3828 }
3829 else
3830 {
3831 newval = conf->reset_val;
3832 newextra = conf->reset_extra;
3833 source = conf->gen.reset_source;
3834 context = conf->gen.reset_scontext;
3835 srole = conf->gen.reset_srole;
3836 }
3837
3838 if (prohibitValueChange)
3839 {
3840 /* Release newextra, unless it's reset_extra */
3841 if (newextra && !extra_field_used(&conf->gen, newextra))
3842 guc_free(newextra);
3843
3844 if (*conf->variable != newval)
3845 {
3846 record->status |= GUC_PENDING_RESTART;
3847 ereport(elevel,
3848 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3849 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3850 conf->gen.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(&conf->gen, action);
3862
3863 if (conf->assign_hook)
3864 conf->assign_hook(newval, newextra);
3865 *conf->variable = newval;
3866 set_extra_field(&conf->gen, &conf->gen.extra,
3867 newextra);
3868 set_guc_source(&conf->gen, source);
3869 conf->gen.scontext = context;
3870 conf->gen.srole = srole;
3871 }
3872 if (makeDefault)
3873 {
3874 GucStack *stack;
3875
3876 if (conf->gen.reset_source <= source)
3877 {
3878 conf->reset_val = newval;
3879 set_extra_field(&conf->gen, &conf->reset_extra,
3880 newextra);
3881 conf->gen.reset_source = source;
3882 conf->gen.reset_scontext = context;
3883 conf->gen.reset_srole = srole;
3884 }
3885 for (stack = conf->gen.stack; stack; stack = stack->prev)
3886 {
3887 if (stack->source <= source)
3888 {
3889 stack->prior.val.intval = newval;
3890 set_extra_field(&conf->gen, &stack->prior.extra,
3891 newextra);
3892 stack->source = source;
3893 stack->scontext = context;
3894 stack->srole = srole;
3895 }
3896 }
3897 }
3898
3899 /* Perhaps we didn't install newextra anywhere */
3900 if (newextra && !extra_field_used(&conf->gen, newextra))
3901 guc_free(newextra);
3902 break;
3903
3904#undef newval
3905 }
3906
3907 case PGC_REAL:
3908 {
3909 struct config_real *conf = (struct config_real *) record;
3910
3911#define newval (newval_union.realval)
3912
3913 if (value)
3914 {
3915 if (!parse_and_validate_value(record, value,
3916 source, elevel,
3917 &newval_union, &newextra))
3918 return 0;
3919 }
3920 else if (source == PGC_S_DEFAULT)
3921 {
3922 newval = conf->boot_val;
3923 if (!call_real_check_hook(conf, &newval, &newextra,
3924 source, elevel))
3925 return 0;
3926 }
3927 else
3928 {
3929 newval = conf->reset_val;
3930 newextra = conf->reset_extra;
3931 source = conf->gen.reset_source;
3932 context = conf->gen.reset_scontext;
3933 srole = conf->gen.reset_srole;
3934 }
3935
3936 if (prohibitValueChange)
3937 {
3938 /* Release newextra, unless it's reset_extra */
3939 if (newextra && !extra_field_used(&conf->gen, newextra))
3940 guc_free(newextra);
3941
3942 if (*conf->variable != newval)
3943 {
3944 record->status |= GUC_PENDING_RESTART;
3945 ereport(elevel,
3946 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3947 errmsg("parameter \"%s\" cannot be changed without restarting the server",
3948 conf->gen.name)));
3949 return 0;
3950 }
3951 record->status &= ~GUC_PENDING_RESTART;
3952 return -1;
3953 }
3954
3955 if (changeVal)
3956 {
3957 /* Save old value to support transaction abort */
3958 if (!makeDefault)
3959 push_old_value(&conf->gen, action);
3960
3961 if (conf->assign_hook)
3962 conf->assign_hook(newval, newextra);
3963 *conf->variable = newval;
3964 set_extra_field(&conf->gen, &conf->gen.extra,
3965 newextra);
3966 set_guc_source(&conf->gen, source);
3967 conf->gen.scontext = context;
3968 conf->gen.srole = srole;
3969 }
3970 if (makeDefault)
3971 {
3972 GucStack *stack;
3973
3974 if (conf->gen.reset_source <= source)
3975 {
3976 conf->reset_val = newval;
3977 set_extra_field(&conf->gen, &conf->reset_extra,
3978 newextra);
3979 conf->gen.reset_source = source;
3980 conf->gen.reset_scontext = context;
3981 conf->gen.reset_srole = srole;
3982 }
3983 for (stack = conf->gen.stack; stack; stack = stack->prev)
3984 {
3985 if (stack->source <= source)
3986 {
3987 stack->prior.val.realval = newval;
3988 set_extra_field(&conf->gen, &stack->prior.extra,
3989 newextra);
3990 stack->source = source;
3991 stack->scontext = context;
3992 stack->srole = srole;
3993 }
3994 }
3995 }
3996
3997 /* Perhaps we didn't install newextra anywhere */
3998 if (newextra && !extra_field_used(&conf->gen, newextra))
3999 guc_free(newextra);
4000 break;
4001
4002#undef newval
4003 }
4004
4005 case PGC_STRING:
4006 {
4007 struct config_string *conf = (struct config_string *) record;
4008 GucContext orig_context = context;
4009 GucSource orig_source = source;
4010 Oid orig_srole = srole;
4011
4012#define newval (newval_union.stringval)
4013
4014 if (value)
4015 {
4016 if (!parse_and_validate_value(record, value,
4017 source, elevel,
4018 &newval_union, &newextra))
4019 return 0;
4020 }
4021 else if (source == PGC_S_DEFAULT)
4022 {
4023 /* non-NULL boot_val must always get strdup'd */
4024 if (conf->boot_val != NULL)
4025 {
4026 newval = guc_strdup(elevel, conf->boot_val);
4027 if (newval == NULL)
4028 return 0;
4029 }
4030 else
4031 newval = NULL;
4032
4033 if (!call_string_check_hook(conf, &newval, &newextra,
4034 source, elevel))
4035 {
4037 return 0;
4038 }
4039 }
4040 else
4041 {
4042 /*
4043 * strdup not needed, since reset_val is already under
4044 * guc.c's control
4045 */
4046 newval = conf->reset_val;
4047 newextra = conf->reset_extra;
4048 source = conf->gen.reset_source;
4049 context = conf->gen.reset_scontext;
4050 srole = conf->gen.reset_srole;
4051 }
4052
4053 if (prohibitValueChange)
4054 {
4055 bool newval_different;
4056
4057 /* newval shouldn't be NULL, so we're a bit sloppy here */
4058 newval_different = (*conf->variable == NULL ||
4059 newval == NULL ||
4060 strcmp(*conf->variable, newval) != 0);
4061
4062 /* Release newval, unless it's reset_val */
4063 if (newval && !string_field_used(conf, newval))
4065 /* Release newextra, unless it's reset_extra */
4066 if (newextra && !extra_field_used(&conf->gen, newextra))
4067 guc_free(newextra);
4068
4069 if (newval_different)
4070 {
4071 record->status |= GUC_PENDING_RESTART;
4072 ereport(elevel,
4073 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4074 errmsg("parameter \"%s\" cannot be changed without restarting the server",
4075 conf->gen.name)));
4076 return 0;
4077 }
4078 record->status &= ~GUC_PENDING_RESTART;
4079 return -1;
4080 }
4081
4082 if (changeVal)
4083 {
4084 /* Save old value to support transaction abort */
4085 if (!makeDefault)
4086 push_old_value(&conf->gen, action);
4087
4088 if (conf->assign_hook)
4089 conf->assign_hook(newval, newextra);
4090 set_string_field(conf, conf->variable, newval);
4091 set_extra_field(&conf->gen, &conf->gen.extra,
4092 newextra);
4093 set_guc_source(&conf->gen, source);
4094 conf->gen.scontext = context;
4095 conf->gen.srole = srole;
4096
4097 /*
4098 * Ugly hack: during SET session_authorization, forcibly
4099 * do SET ROLE NONE with the same context/source/etc, so
4100 * that the effects will have identical lifespan. This is
4101 * required by the SQL spec, and it's not possible to do
4102 * it within the variable's check hook or assign hook
4103 * because our APIs for those don't pass enough info.
4104 * However, don't do it if is_reload: in that case we
4105 * expect that if "role" isn't supposed to be default, it
4106 * has been or will be set by a separate reload action.
4107 *
4108 * Also, for the call from InitializeSessionUserId with
4109 * source == PGC_S_OVERRIDE, use PGC_S_DYNAMIC_DEFAULT for
4110 * "role"'s source, so that it's still possible to set
4111 * "role" from pg_db_role_setting entries. (See notes in
4112 * InitializeSessionUserId before changing this.)
4113 *
4114 * A fine point: for RESET session_authorization, we do
4115 * "RESET role" not "SET ROLE NONE" (by passing down NULL
4116 * rather than "none" for the value). This would have the
4117 * same effects in typical cases, but if the reset value
4118 * of "role" is not "none" it seems better to revert to
4119 * that.
4120 */
4121 if (!is_reload &&
4122 strcmp(conf->gen.name, "session_authorization") == 0)
4123 (void) set_config_with_handle("role", NULL,
4124 value ? "none" : NULL,
4125 orig_context,
4126 (orig_source == PGC_S_OVERRIDE)
4128 : orig_source,
4129 orig_srole,
4130 action,
4131 true,
4132 elevel,
4133 false);
4134 }
4135
4136 if (makeDefault)
4137 {
4138 GucStack *stack;
4139
4140 if (conf->gen.reset_source <= source)
4141 {
4142 set_string_field(conf, &conf->reset_val, newval);
4143 set_extra_field(&conf->gen, &conf->reset_extra,
4144 newextra);
4145 conf->gen.reset_source = source;
4146 conf->gen.reset_scontext = context;
4147 conf->gen.reset_srole = srole;
4148 }
4149 for (stack = conf->gen.stack; stack; stack = stack->prev)
4150 {
4151 if (stack->source <= source)
4152 {
4153 set_string_field(conf, &stack->prior.val.stringval,
4154 newval);
4155 set_extra_field(&conf->gen, &stack->prior.extra,
4156 newextra);
4157 stack->source = source;
4158 stack->scontext = context;
4159 stack->srole = srole;
4160 }
4161 }
4162 }
4163
4164 /* Perhaps we didn't install newval anywhere */
4165 if (newval && !string_field_used(conf, newval))
4167 /* Perhaps we didn't install newextra anywhere */
4168 if (newextra && !extra_field_used(&conf->gen, newextra))
4169 guc_free(newextra);
4170 break;
4171
4172#undef newval
4173 }
4174
4175 case PGC_ENUM:
4176 {
4177 struct config_enum *conf = (struct config_enum *) record;
4178
4179#define newval (newval_union.enumval)
4180
4181 if (value)
4182 {
4183 if (!parse_and_validate_value(record, value,
4184 source, elevel,
4185 &newval_union, &newextra))
4186 return 0;
4187 }
4188 else if (source == PGC_S_DEFAULT)
4189 {
4190 newval = conf->boot_val;
4191 if (!call_enum_check_hook(conf, &newval, &newextra,
4192 source, elevel))
4193 return 0;
4194 }
4195 else
4196 {
4197 newval = conf->reset_val;
4198 newextra = conf->reset_extra;
4199 source = conf->gen.reset_source;
4200 context = conf->gen.reset_scontext;
4201 srole = conf->gen.reset_srole;
4202 }
4203
4204 if (prohibitValueChange)
4205 {
4206 /* Release newextra, unless it's reset_extra */
4207 if (newextra && !extra_field_used(&conf->gen, newextra))
4208 guc_free(newextra);
4209
4210 if (*conf->variable != newval)
4211 {
4212 record->status |= GUC_PENDING_RESTART;
4213 ereport(elevel,
4214 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4215 errmsg("parameter \"%s\" cannot be changed without restarting the server",
4216 conf->gen.name)));
4217 return 0;
4218 }
4219 record->status &= ~GUC_PENDING_RESTART;
4220 return -1;
4221 }
4222
4223 if (changeVal)
4224 {
4225 /* Save old value to support transaction abort */
4226 if (!makeDefault)
4227 push_old_value(&conf->gen, action);
4228
4229 if (conf->assign_hook)
4230 conf->assign_hook(newval, newextra);
4231 *conf->variable = newval;
4232 set_extra_field(&conf->gen, &conf->gen.extra,
4233 newextra);
4234 set_guc_source(&conf->gen, source);
4235 conf->gen.scontext = context;
4236 conf->gen.srole = srole;
4237 }
4238 if (makeDefault)
4239 {
4240 GucStack *stack;
4241
4242 if (conf->gen.reset_source <= source)
4243 {
4244 conf->reset_val = newval;
4245 set_extra_field(&conf->gen, &conf->reset_extra,
4246 newextra);
4247 conf->gen.reset_source = source;
4248 conf->gen.reset_scontext = context;
4249 conf->gen.reset_srole = srole;
4250 }
4251 for (stack = conf->gen.stack; stack; stack = stack->prev)
4252 {
4253 if (stack->source <= source)
4254 {
4255 stack->prior.val.enumval = newval;
4256 set_extra_field(&conf->gen, &stack->prior.extra,
4257 newextra);
4258 stack->source = source;
4259 stack->scontext = context;
4260 stack->srole = srole;
4261 }
4262 }
4263 }
4264
4265 /* Perhaps we didn't install newextra anywhere */
4266 if (newextra && !extra_field_used(&conf->gen, newextra))
4267 guc_free(newextra);
4268 break;
4269
4270#undef newval
4271 }
4272 }
4273
4274 if (changeVal && (record->flags & GUC_REPORT) &&
4275 !(record->status & GUC_NEEDS_REPORT))
4276 {
4277 record->status |= GUC_NEEDS_REPORT;
4279 }
4280
4281 return changeVal ? 1 : -1;
4282}
static bool extra_field_used(struct config_generic *gconf, void *extra)
Definition: guc.c:749
static bool string_field_used(struct config_string *conf, char *strval)
Definition: guc.c:710
#define GUC_NO_RESET
Definition: guc.h:217
#define GUC_NOT_WHILE_SEC_REST
Definition: guc.h:226
@ PGC_S_GLOBAL
Definition: guc.h:118
@ PGC_S_DATABASE
Definition: guc.h:119
@ PGC_S_DATABASE_USER
Definition: guc.h:121
@ PGC_S_USER
Definition: guc.h:120
#define GUC_ALLOW_IN_PARALLEL
Definition: guc.h:230
@ PGC_SU_BACKEND
Definition: guc.h:76
bool InSecurityRestrictedOperation(void)
Definition: miscinit.c:639
bool InLocalUserIdChange(void)
Definition: miscinit.c:630
#define ACL_SET
Definition: parsenodes.h:88
bool IsInParallelMode(void)
Definition: xact.c:1089

References ACL_SET, ACLCHECK_OK, generate_unaccent_rules::action, config_bool::assign_hook, config_int::assign_hook, config_real::assign_hook, config_string::assign_hook, config_enum::assign_hook, config_var_val::boolval, config_bool::boot_val, config_int::boot_val, config_real::boot_val, config_string::boot_val, config_enum::boot_val, call_bool_check_hook(), call_enum_check_hook(), call_int_check_hook(), call_real_check_hook(), call_string_check_hook(), config_generic::context, DEBUG3, elog, config_var_val::enumval, ereport, errcode(), errmsg(), ERROR, config_var_value::extra, config_generic::extra, extra_field_used(), find_option(), config_generic::flags, config_bool::gen, config_int::gen, config_real::gen, config_string::gen, config_enum::gen, 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(), config_var_val::intval, IsInParallelMode(), IsUnderPostmaster, LOG, name, config_generic::name, newval, parse_and_validate_value(), pg_parameter_aclcheck(), PGC_BACKEND, PGC_BOOL, PGC_ENUM, PGC_INT, PGC_INTERNAL, PGC_POSTMASTER, PGC_REAL, PGC_S_CLIENT, PGC_S_DATABASE, PGC_S_DATABASE_USER, PGC_S_DEFAULT, PGC_S_DYNAMIC_DEFAULT, PGC_S_FILE, PGC_S_GLOBAL, PGC_S_OVERRIDE, PGC_S_USER, PGC_SIGHUP, PGC_STRING, PGC_SU_BACKEND, PGC_SUSET, PGC_USERSET, guc_stack::prev, guc_stack::prior, push_old_value(), config_var_val::realval, config_generic::report_link, config_bool::reset_extra, config_int::reset_extra, config_real::reset_extra, config_string::reset_extra, config_enum::reset_extra, config_generic::reset_scontext, config_generic::reset_source, config_generic::reset_srole, config_bool::reset_val, config_int::reset_val, config_real::reset_val, config_string::reset_val, config_enum::reset_val, guc_stack::scontext, config_generic::scontext, set_config_with_handle(), set_extra_field(), set_guc_source(), set_string_field(), slist_push_head(), source, guc_stack::source, config_generic::source, guc_stack::srole, config_generic::srole, config_generic::stack, config_generic::status, string_field_used(), config_var_val::stringval, config_var_value::val, value, config_bool::variable, config_int::variable, config_real::variable, config_string::variable, config_enum::variable, config_generic::vartype, and WARNING.

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

◆ set_extra_field()

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

Definition at line 794 of file guc.c.

795{
796 void *oldval = *field;
797
798 /* Do the assignment */
799 *field = newval;
800
801 /* Free old value if it's not NULL and isn't referenced anymore */
802 if (oldval && !extra_field_used(gconf, oldval))
803 guc_free(oldval);
804}

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

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

◆ set_guc_source()

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

Definition at line 2117 of file guc.c.

2118{
2119 /* Adjust nondef list membership if appropriate for change */
2120 if (gconf->source == PGC_S_DEFAULT)
2121 {
2122 if (newsource != PGC_S_DEFAULT)
2124 }
2125 else
2126 {
2127 if (newsource == PGC_S_DEFAULT)
2128 dlist_delete(&gconf->nondef_link);
2129 }
2130 /* Now update the source field */
2131 gconf->source = newsource;
2132}
static void dlist_push_tail(dlist_head *head, dlist_node *node)
Definition: ilist.h:364

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

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

◆ set_stack_value()

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

Definition at line 814 of file guc.c.

815{
816 switch (gconf->vartype)
817 {
818 case PGC_BOOL:
819 val->val.boolval =
820 *((struct config_bool *) gconf)->variable;
821 break;
822 case PGC_INT:
823 val->val.intval =
824 *((struct config_int *) gconf)->variable;
825 break;
826 case PGC_REAL:
827 val->val.realval =
828 *((struct config_real *) gconf)->variable;
829 break;
830 case PGC_STRING:
831 set_string_field((struct config_string *) gconf,
832 &(val->val.stringval),
833 *((struct config_string *) gconf)->variable);
834 break;
835 case PGC_ENUM:
836 val->val.enumval =
837 *((struct config_enum *) gconf)->variable;
838 break;
839 }
840 set_extra_field(gconf, &(val->extra), gconf->extra);
841}

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

Referenced by push_old_value().

◆ set_string_field()

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

Definition at line 733 of file guc.c.

734{
735 char *oldval = *field;
736
737 /* Do the assignment */
738 *field = newval;
739
740 /* Free old value if it's not NULL and isn't referenced anymore */
741 if (oldval && !string_field_used(conf, oldval))
742 guc_free(oldval);
743}

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

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

◆ SetConfigOption()

◆ ShowGUCOption()

char * ShowGUCOption ( struct config_generic record,
bool  use_units 
)

Definition at line 5488 of file guc.c.

5489{
5490 char buffer[256];
5491 const char *val;
5492
5493 switch (record->vartype)
5494 {
5495 case PGC_BOOL:
5496 {
5497 struct config_bool *conf = (struct config_bool *) record;
5498
5499 if (conf->show_hook)
5500 val = conf->show_hook();
5501 else
5502 val = *conf->variable ? "on" : "off";
5503 }
5504 break;
5505
5506 case PGC_INT:
5507 {
5508 struct config_int *conf = (struct config_int *) record;
5509
5510 if (conf->show_hook)
5511 val = conf->show_hook();
5512 else
5513 {
5514 /*
5515 * Use int64 arithmetic to avoid overflows in units
5516 * conversion.
5517 */
5518 int64 result = *conf->variable;
5519 const char *unit;
5520
5521 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5523 record->flags & GUC_UNIT,
5524 &result, &unit);
5525 else
5526 unit = "";
5527
5528 snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
5529 result, unit);
5530 val = buffer;
5531 }
5532 }
5533 break;
5534
5535 case PGC_REAL:
5536 {
5537 struct config_real *conf = (struct config_real *) record;
5538
5539 if (conf->show_hook)
5540 val = conf->show_hook();
5541 else
5542 {
5543 double result = *conf->variable;
5544 const char *unit;
5545
5546 if (use_units && result > 0 && (record->flags & GUC_UNIT))
5548 record->flags & GUC_UNIT,
5549 &result, &unit);
5550 else
5551 unit = "";
5552
5553 snprintf(buffer, sizeof(buffer), "%g%s",
5554 result, unit);
5555 val = buffer;
5556 }
5557 }
5558 break;
5559
5560 case PGC_STRING:
5561 {
5562 struct config_string *conf = (struct config_string *) record;
5563
5564 if (conf->show_hook)
5565 val = conf->show_hook();
5566 else if (*conf->variable && **conf->variable)
5567 val = *conf->variable;
5568 else
5569 val = "";
5570 }
5571 break;
5572
5573 case PGC_ENUM:
5574 {
5575 struct config_enum *conf = (struct config_enum *) record;
5576
5577 if (conf->show_hook)
5578 val = conf->show_hook();
5579 else
5581 }
5582 break;
5583
5584 default:
5585 /* just to keep compiler quiet */
5586 val = "???";
5587 break;
5588 }
5589
5590 return pstrdup(val);
5591}
#define INT64_FORMAT
Definition: c.h:556
static void convert_int_from_base_unit(int64 base_value, int base_unit, int64 *value, const char **unit)
Definition: guc.c:2735
static void convert_real_from_base_unit(double base_value, int base_unit, double *value, const char **unit)
Definition: guc.c:2777

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

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

◆ string_field_used()

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

Definition at line 710 of file guc.c.

711{
712 GucStack *stack;
713
714 if (strval == *(conf->variable) ||
715 strval == conf->reset_val ||
716 strval == conf->boot_val)
717 return true;
718 for (stack = conf->gen.stack; stack; stack = stack->prev)
719 {
720 if (strval == stack->prior.val.stringval ||
721 strval == stack->masked.val.stringval)
722 return true;
723 }
724 return false;
725}

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

Referenced by set_config_with_handle(), and set_string_field().

◆ TransformGUCArray()

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

Definition at line 6422 of file guc.c.

6423{
6424 int i;
6425
6426 Assert(array != NULL);
6427 Assert(ARR_ELEMTYPE(array) == TEXTOID);
6428 Assert(ARR_NDIM(array) == 1);
6429 Assert(ARR_LBOUND(array)[0] == 1);
6430
6431 *names = NIL;
6432 *values = NIL;
6433 for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6434 {
6435 Datum d;
6436 bool isnull;
6437 char *s;
6438 char *name;
6439 char *value;
6440
6441 d = array_ref(array, 1, &i,
6442 -1 /* varlenarray */ ,
6443 -1 /* TEXT's typlen */ ,
6444 false /* TEXT's typbyval */ ,
6445 TYPALIGN_INT /* TEXT's typalign */ ,
6446 &isnull);
6447
6448 if (isnull)
6449 continue;
6450
6451 s = TextDatumGetCString(d);
6452
6453 ParseLongOption(s, &name, &value);
6454 if (!value)
6455 {
6457 (errcode(ERRCODE_SYNTAX_ERROR),
6458 errmsg("could not parse setting for parameter \"%s\"",
6459 name)));
6460 pfree(name);
6461 continue;
6462 }
6463
6464 *names = lappend(*names, name);
6465 *values = lappend(*values, value);
6466
6467 pfree(s);
6468 }
6469}
static Datum values[MAXATTR]
Definition: bootstrap.c:153
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6385
#define NIL
Definition: pg_list.h:68

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

Referenced by fmgr_security_definer(), and ProcessGUCArray().

◆ valid_custom_variable_name()

static bool valid_custom_variable_name ( const char *  name)
static

Definition at line 1078 of file guc.c.

1079{
1080 bool saw_sep = false;
1081 bool name_start = true;
1082
1083 for (const char *p = name; *p; p++)
1084 {
1085 if (*p == GUC_QUALIFIER_SEPARATOR)
1086 {
1087 if (name_start)
1088 return false; /* empty name component */
1089 saw_sep = true;
1090 name_start = true;
1091 }
1092 else if (strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1093 "abcdefghijklmnopqrstuvwxyz_", *p) != NULL ||
1094 IS_HIGHBIT_SET(*p))
1095 {
1096 /* okay as first or non-first character */
1097 name_start = false;
1098 }
1099 else if (!name_start && strchr("0123456789$", *p) != NULL)
1100 /* okay as non-first character */ ;
1101 else
1102 return false;
1103 }
1104 if (name_start)
1105 return false; /* empty name component */
1106 /* OK if we found at least one separator */
1107 return saw_sep;
1108}
#define IS_HIGHBIT_SET(ch)
Definition: c.h:1154

References GUC_QUALIFIER_SEPARATOR, IS_HIGHBIT_SET, and name.

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

◆ validate_option_array_item()

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

Definition at line 6731 of file guc.c.

6734{
6735 struct config_generic *gconf;
6736 bool reset_custom;
6737
6738 /*
6739 * There are three cases to consider:
6740 *
6741 * name is a known GUC variable. Check the value normally, check
6742 * permissions normally (i.e., allow if variable is USERSET, or if it's
6743 * SUSET and user is superuser or holds ACL_SET permissions).
6744 *
6745 * name is not known, but exists or can be created as a placeholder (i.e.,
6746 * it has a valid custom name). We allow this case if you're a superuser,
6747 * otherwise not. Superusers are assumed to know what they're doing. We
6748 * can't allow it for other users, because when the placeholder is
6749 * resolved it might turn out to be a SUSET variable. (With currently
6750 * available infrastructure, we can actually handle such cases within the
6751 * current session --- but once an entry is made in pg_db_role_setting,
6752 * it's assumed to be fully validated.)
6753 *
6754 * name is not known and can't be created as a placeholder. Throw error,
6755 * unless skipIfNoPermissions or reset_custom is true. If reset_custom is
6756 * true, this is a RESET or RESET ALL operation for an unknown custom GUC
6757 * with a reserved prefix, in which case we want to fall through to the
6758 * placeholder case described in the preceding paragraph (else there'd be
6759 * no way for users to remove them). Otherwise, return false.
6760 */
6761 reset_custom = (!value && valid_custom_variable_name(name));
6762 gconf = find_option(name, true, skipIfNoPermissions || reset_custom, ERROR);
6763 if (!gconf && !reset_custom)
6764 {
6765 /* not known, failed to make a placeholder */
6766 return false;
6767 }
6768
6769 if (!gconf || gconf->flags & GUC_CUSTOM_PLACEHOLDER)
6770 {
6771 /*
6772 * We cannot do any meaningful check on the value, so only permissions
6773 * are useful to check.
6774 */
6775 if (superuser() ||
6777 return true;
6778 if (skipIfNoPermissions)
6779 return false;
6780 ereport(ERROR,
6781 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
6782 errmsg("permission denied to set parameter \"%s\"", name)));
6783 }
6784
6785 /* manual permissions check so we can avoid an error being thrown */
6786 if (gconf->context == PGC_USERSET)
6787 /* ok */ ;
6788 else if (gconf->context == PGC_SUSET &&
6789 (superuser() ||
6791 /* ok */ ;
6792 else if (skipIfNoPermissions)
6793 return false;
6794 /* if a permissions error should be thrown, let set_config_option do it */
6795
6796 /* test for permissions and valid option value */
6799 PGC_S_TEST, GUC_ACTION_SET, false, 0, false);
6800
6801 return true;
6802}
@ PGC_S_TEST
Definition: guc.h:125

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

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

◆ write_auto_conf_file()

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

Definition at line 4475 of file guc.c.

4476{
4478 ConfigVariable *item;
4479
4481
4482 /* Emit file header containing warning comment */
4483 appendStringInfoString(&buf, "# Do not edit this file manually!\n");
4484 appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
4485
4486 errno = 0;
4487 if (write(fd, buf.data, buf.len) != buf.len)
4488 {
4489 /* if write didn't set errno, assume problem is no disk space */
4490 if (errno == 0)
4491 errno = ENOSPC;
4492 ereport(ERROR,
4494 errmsg("could not write to file \"%s\": %m", filename)));
4495 }
4496
4497 /* Emit each parameter, properly quoting the value */
4498 for (item = head; item != NULL; item = item->next)
4499 {
4500 char *escaped;
4501
4503
4505 appendStringInfoString(&buf, " = '");
4506
4507 escaped = escape_single_quotes_ascii(item->value);
4508 if (!escaped)
4509 ereport(ERROR,
4510 (errcode(ERRCODE_OUT_OF_MEMORY),
4511 errmsg("out of memory")));
4512 appendStringInfoString(&buf, escaped);
4513 free(escaped);
4514
4515 appendStringInfoString(&buf, "'\n");
4516
4517 errno = 0;
4518 if (write(fd, buf.data, buf.len) != buf.len)
4519 {
4520 /* if write didn't set errno, assume problem is no disk space */
4521 if (errno == 0)
4522 errno = ENOSPC;
4523 ereport(ERROR,
4525 errmsg("could not write to file \"%s\": %m", filename)));
4526 }
4527 }
4528
4529 /* fsync before considering the write to be successful */
4530 if (pg_fsync(fd) != 0)
4531 ereport(ERROR,
4533 errmsg("could not fsync file \"%s\": %m", filename)));
4534
4535 pfree(buf.data);
4536}
int pg_fsync(int fd)
Definition: fd.c:386
#define write(a, b, c)
Definition: win32.h:14
static char * filename
Definition: pg_dumpall.c:120
static char * buf
Definition: pg_test_fsync.c:72
char * escape_single_quotes_ascii(const char *src)
Definition: quotes.c:33
static int fd(const char *x, int i)
Definition: preproc-init.c:105
void resetStringInfo(StringInfo str)
Definition: stringinfo.c:126

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

Referenced by AlterSystemSetConfigFile().

Variable Documentation

◆ GUC_check_errcode_value

int GUC_check_errcode_value
static

◆ GUC_check_errdetail_string

char* GUC_check_errdetail_string

◆ GUC_check_errhint_string

char* GUC_check_errhint_string

◆ GUC_check_errmsg_string

char* GUC_check_errmsg_string

◆ guc_hashtab

◆ guc_nondef_list

◆ guc_report_list

slist_head guc_report_list
static

◆ guc_stack_list

slist_head guc_stack_list
static

Definition at line 225 of file guc.c.

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

◆ GUCMemoryContext

MemoryContext GUCMemoryContext
static

Definition at line 200 of file guc.c.

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

◆ GUCNestLevel

int GUCNestLevel = 0
static

Definition at line 232 of file guc.c.

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

◆ map_old_guc_names

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

Definition at line 191 of file guc.c.

Referenced by convert_GUC_name_for_parameter_acl(), and find_option().

◆ memory_unit_conversion_table

const unit_conversion memory_unit_conversion_table[]
static

◆ memory_units_hint

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

Definition at line 120 of file guc.c.

Referenced by parse_int(), and parse_real().

◆ reporting_enabled

bool reporting_enabled
static

Definition at line 230 of file guc.c.

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

◆ reserved_class_prefix

List* reserved_class_prefix = NIL
static

Definition at line 79 of file guc.c.

Referenced by assignable_custom_variable_name(), and MarkGUCPrefixReserved().

◆ time_unit_conversion_table

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

Definition at line 159 of file guc.c.

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

◆ time_units_hint

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

Definition at line 157 of file guc.c.

Referenced by parse_int(), and parse_real().