PostgreSQL Source Code  git master
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 "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 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 55 of file guc.c.

◆ GUC_SAFE_SEARCH_PATH

#define GUC_SAFE_SEARCH_PATH   "pg_catalog, pg_temp"

Definition at line 74 of file guc.c.

◆ HBA_FILENAME

#define HBA_FILENAME   "pg_hba.conf"

Definition at line 56 of file guc.c.

◆ IDENT_FILENAME

#define IDENT_FILENAME   "pg_ident.conf"

Definition at line 57 of file guc.c.

◆ MAX_UNIT_LEN

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

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

Function Documentation

◆ add_guc_variable()

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

Definition at line 1046 of file guc.c.

1047 {
1048  GUCHashEntry *hentry;
1049  bool found;
1050 
1051  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
1052  &var->name,
1054  &found);
1055  if (unlikely(hentry == NULL))
1056  {
1057  ereport(elevel,
1058  (errcode(ERRCODE_OUT_OF_MEMORY),
1059  errmsg("out of memory")));
1060  return false; /* out of memory */
1061  }
1062  Assert(!found);
1063  hentry->gucvar = var;
1064  return true;
1065 }
#define Assert(condition)
Definition: c.h:849
#define unlikely(x)
Definition: c.h:314
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:955
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define ereport(elevel,...)
Definition: elog.h:149
static HTAB * guc_hashtab
Definition: guc.c:211
@ HASH_ENTER_NULL
Definition: hsearch.h:116
struct config_generic * gucvar
Definition: guc.c:208
const char * name
Definition: guc_tables.h:156

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

1177 {
1178  size_t sz = sizeof(struct config_string) + sizeof(char *);
1179  struct config_string *var;
1180  struct config_generic *gen;
1181 
1182  var = (struct config_string *) guc_malloc(elevel, sz);
1183  if (var == NULL)
1184  return NULL;
1185  memset(var, 0, sz);
1186  gen = &var->gen;
1187 
1188  gen->name = guc_strdup(elevel, name);
1189  if (gen->name == NULL)
1190  {
1191  guc_free(var);
1192  return NULL;
1193  }
1194 
1195  gen->context = PGC_USERSET;
1197  gen->short_desc = "GUC placeholder variable";
1199  gen->vartype = PGC_STRING;
1200 
1201  /*
1202  * The char* is allocated at the end of the struct since we have no
1203  * 'static' place to point to. Note that the current value, as well as
1204  * the boot and reset values, start out NULL.
1205  */
1206  var->variable = (char **) (var + 1);
1207 
1208  if (!add_guc_variable((struct config_generic *) var, elevel))
1209  {
1210  guc_free(unconstify(char *, gen->name));
1211  guc_free(var);
1212  return NULL;
1213  }
1214 
1215  return gen;
1216 }
#define unconstify(underlying_type, expr)
Definition: c.h:1236
void * guc_malloc(int elevel, size_t size)
Definition: guc.c:637
void guc_free(void *ptr)
Definition: guc.c:688
static bool add_guc_variable(struct config_generic *var, int elevel)
Definition: guc.c:1046
char * guc_strdup(int elevel, const char *src)
Definition: guc.c:676
#define GUC_CUSTOM_PLACEHOLDER
Definition: guc.h:219
#define GUC_NO_SHOW_ALL
Definition: guc.h:212
@ PGC_USERSET
Definition: guc.h:75
#define GUC_NOT_IN_SAMPLE
Definition: guc.h:217
@ CUSTOM_OPTIONS
Definition: guc_tables.h:100
@ PGC_STRING
Definition: guc_tables.h:28
enum config_group group
Definition: guc_tables.h:158
GucContext context
Definition: guc_tables.h:157
const char * short_desc
Definition: guc_tables.h:159
enum config_type vartype
Definition: guc_tables.h:163
struct config_generic gen
Definition: guc_tables.h:256
char ** variable
Definition: guc_tables.h:258
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 4565 of file guc.c.

4566 {
4567  char *name;
4568  char *value;
4569  bool resetall = false;
4570  ConfigVariable *head = NULL;
4571  ConfigVariable *tail = NULL;
4572  volatile int Tmpfd;
4573  char AutoConfFileName[MAXPGPATH];
4574  char AutoConfTmpFileName[MAXPGPATH];
4575 
4576  /*
4577  * Extract statement arguments
4578  */
4579  name = altersysstmt->setstmt->name;
4580 
4581  if (!AllowAlterSystem)
4582  ereport(ERROR,
4583  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
4584  errmsg("ALTER SYSTEM is not allowed in this environment")));
4585 
4586  switch (altersysstmt->setstmt->kind)
4587  {
4588  case VAR_SET_VALUE:
4589  value = ExtractSetVariableArgs(altersysstmt->setstmt);
4590  break;
4591 
4592  case VAR_SET_DEFAULT:
4593  case VAR_RESET:
4594  value = NULL;
4595  break;
4596 
4597  case VAR_RESET_ALL:
4598  value = NULL;
4599  resetall = true;
4600  break;
4601 
4602  default:
4603  elog(ERROR, "unrecognized alter system stmt type: %d",
4604  altersysstmt->setstmt->kind);
4605  break;
4606  }
4607 
4608  /*
4609  * Check permission to run ALTER SYSTEM on the target variable
4610  */
4611  if (!superuser())
4612  {
4613  if (resetall)
4614  ereport(ERROR,
4615  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4616  errmsg("permission denied to perform ALTER SYSTEM RESET ALL")));
4617  else
4618  {
4619  AclResult aclresult;
4620 
4621  aclresult = pg_parameter_aclcheck(name, GetUserId(),
4623  if (aclresult != ACLCHECK_OK)
4624  ereport(ERROR,
4625  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4626  errmsg("permission denied to set parameter \"%s\"",
4627  name)));
4628  }
4629  }
4630 
4631  /*
4632  * Unless it's RESET_ALL, validate the target variable and value
4633  */
4634  if (!resetall)
4635  {
4636  struct config_generic *record;
4637 
4638  /* We don't want to create a placeholder if there's not one already */
4639  record = find_option(name, false, true, DEBUG5);
4640  if (record != NULL)
4641  {
4642  /*
4643  * Don't allow parameters that can't be set in configuration files
4644  * to be set in PG_AUTOCONF_FILENAME file.
4645  */
4646  if ((record->context == PGC_INTERNAL) ||
4647  (record->flags & GUC_DISALLOW_IN_FILE) ||
4648  (record->flags & GUC_DISALLOW_IN_AUTO_FILE))
4649  ereport(ERROR,
4650  (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4651  errmsg("parameter \"%s\" cannot be changed",
4652  name)));
4653 
4654  /*
4655  * If a value is specified, verify that it's sane.
4656  */
4657  if (value)
4658  {
4659  union config_var_val newval;
4660  void *newextra = NULL;
4661 
4662  if (!parse_and_validate_value(record, value,
4663  PGC_S_FILE, ERROR,
4664  &newval, &newextra))
4665  ereport(ERROR,
4666  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4667  errmsg("invalid value for parameter \"%s\": \"%s\"",
4668  name, value)));
4669 
4670  if (record->vartype == PGC_STRING && newval.stringval != NULL)
4671  guc_free(newval.stringval);
4672  guc_free(newextra);
4673  }
4674  }
4675  else
4676  {
4677  /*
4678  * Variable not known; check we'd be allowed to create it. (We
4679  * cannot validate the value, but that's fine. A non-core GUC in
4680  * the config file cannot cause postmaster start to fail, so we
4681  * don't have to be too tense about possibly installing a bad
4682  * value.)
4683  */
4684  (void) assignable_custom_variable_name(name, false, ERROR);
4685  }
4686 
4687  /*
4688  * We must also reject values containing newlines, because the grammar
4689  * for config files doesn't support embedded newlines in string
4690  * literals.
4691  */
4692  if (value && strchr(value, '\n'))
4693  ereport(ERROR,
4694  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4695  errmsg("parameter value for ALTER SYSTEM must not contain a newline")));
4696  }
4697 
4698  /*
4699  * PG_AUTOCONF_FILENAME and its corresponding temporary file are always in
4700  * the data directory, so we can reference them by simple relative paths.
4701  */
4702  snprintf(AutoConfFileName, sizeof(AutoConfFileName), "%s",
4704  snprintf(AutoConfTmpFileName, sizeof(AutoConfTmpFileName), "%s.%s",
4705  AutoConfFileName,
4706  "tmp");
4707 
4708  /*
4709  * Only one backend is allowed to operate on PG_AUTOCONF_FILENAME at a
4710  * time. Use AutoFileLock to ensure that. We must hold the lock while
4711  * reading the old file contents.
4712  */
4713  LWLockAcquire(AutoFileLock, LW_EXCLUSIVE);
4714 
4715  /*
4716  * If we're going to reset everything, then no need to open or parse the
4717  * old file. We'll just write out an empty list.
4718  */
4719  if (!resetall)
4720  {
4721  struct stat st;
4722 
4723  if (stat(AutoConfFileName, &st) == 0)
4724  {
4725  /* open old file PG_AUTOCONF_FILENAME */
4726  FILE *infile;
4727 
4728  infile = AllocateFile(AutoConfFileName, "r");
4729  if (infile == NULL)
4730  ereport(ERROR,
4732  errmsg("could not open file \"%s\": %m",
4733  AutoConfFileName)));
4734 
4735  /* parse it */
4736  if (!ParseConfigFp(infile, AutoConfFileName, CONF_FILE_START_DEPTH,
4737  LOG, &head, &tail))
4738  ereport(ERROR,
4739  (errcode(ERRCODE_CONFIG_FILE_ERROR),
4740  errmsg("could not parse contents of file \"%s\"",
4741  AutoConfFileName)));
4742 
4743  FreeFile(infile);
4744  }
4745 
4746  /*
4747  * Now, replace any existing entry with the new value, or add it if
4748  * not present.
4749  */
4750  replace_auto_config_value(&head, &tail, name, value);
4751  }
4752 
4753  /*
4754  * Invoke the post-alter hook for setting this GUC variable. GUCs
4755  * typically do not have corresponding entries in pg_parameter_acl, so we
4756  * call the hook using the name rather than a potentially-non-existent
4757  * OID. Nonetheless, we pass ParameterAclRelationId so that this call
4758  * context can be distinguished from others. (Note that "name" will be
4759  * NULL in the RESET ALL case.)
4760  *
4761  * We do this here rather than at the end, because ALTER SYSTEM is not
4762  * transactional. If the hook aborts our transaction, it will be cleaner
4763  * to do so before we touch any files.
4764  */
4765  InvokeObjectPostAlterHookArgStr(ParameterAclRelationId, name,
4767  altersysstmt->setstmt->kind,
4768  false);
4769 
4770  /*
4771  * To ensure crash safety, first write the new file data to a temp file,
4772  * then atomically rename it into place.
4773  *
4774  * If there is a temp file left over due to a previous crash, it's okay to
4775  * truncate and reuse it.
4776  */
4777  Tmpfd = BasicOpenFile(AutoConfTmpFileName,
4778  O_CREAT | O_RDWR | O_TRUNC);
4779  if (Tmpfd < 0)
4780  ereport(ERROR,
4782  errmsg("could not open file \"%s\": %m",
4783  AutoConfTmpFileName)));
4784 
4785  /*
4786  * Use a TRY block to clean up the file if we fail. Since we need a TRY
4787  * block anyway, OK to use BasicOpenFile rather than OpenTransientFile.
4788  */
4789  PG_TRY();
4790  {
4791  /* Write and sync the new contents to the temporary file */
4792  write_auto_conf_file(Tmpfd, AutoConfTmpFileName, head);
4793 
4794  /* Close before renaming; may be required on some platforms */
4795  close(Tmpfd);
4796  Tmpfd = -1;
4797 
4798  /*
4799  * As the rename is atomic operation, if any problem occurs after this
4800  * at worst it can lose the parameters set by last ALTER SYSTEM
4801  * command.
4802  */
4803  durable_rename(AutoConfTmpFileName, AutoConfFileName, ERROR);
4804  }
4805  PG_CATCH();
4806  {
4807  /* Close file first, else unlink might fail on some platforms */
4808  if (Tmpfd >= 0)
4809  close(Tmpfd);
4810 
4811  /* Unlink, but ignore any error */
4812  (void) unlink(AutoConfTmpFileName);
4813 
4814  PG_RE_THROW();
4815  }
4816  PG_END_TRY();
4817 
4818  FreeConfigVariables(head);
4819 
4820  LWLockRelease(AutoFileLock);
4821 }
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:4119
#define CONF_FILE_START_DEPTH
Definition: conffiles.h:17
int errcode_for_file_access(void)
Definition: elog.c:876
#define LOG
Definition: elog.h:31
#define PG_RE_THROW()
Definition: elog.h:412
#define PG_TRY(...)
Definition: elog.h:371
#define PG_END_TRY(...)
Definition: elog.h:396
#define ERROR
Definition: elog.h:39
#define PG_CATCH(...)
Definition: elog.h:381
#define elog(elevel,...)
Definition: elog.h:225
#define DEBUG5
Definition: elog.h:26
FILE * AllocateFile(const char *name, const char *mode)
Definition: fd.c:2606
int durable_rename(const char *oldfile, const char *newfile, int elevel)
Definition: fd.c:782
int BasicOpenFile(const char *fileName, int fileFlags)
Definition: fd.c:1087
int FreeFile(FILE *file)
Definition: fd.c:2804
static bool assignable_custom_variable_name(const char *name, bool skip_errors, int elevel)
Definition: guc.c:1120
struct config_generic * find_option(const char *name, bool create_placeholders, bool skip_errors, int elevel)
Definition: guc.c:1234
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:3128
static void write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
Definition: guc.c:4427
#define newval
static void replace_auto_config_value(ConfigVariable **head_p, ConfigVariable **tail_p, const char *name, const char *value)
Definition: guc.c:4495
#define PG_AUTOCONF_FILENAME
Definition: guc.h:33
void FreeConfigVariables(ConfigVariable *list)
bool ParseConfigFp(FILE *fp, const char *config_file, int depth, int elevel, ConfigVariable **head_p, ConfigVariable **tail_p)
#define GUC_DISALLOW_IN_FILE
Definition: guc.h:218
@ PGC_S_FILE
Definition: guc.h:112
#define GUC_DISALLOW_IN_AUTO_FILE
Definition: guc.h:223
@ PGC_INTERNAL
Definition: guc.h:69
char * ExtractSetVariableArgs(VariableSetStmt *stmt)
Definition: guc_funcs.c:167
bool AllowAlterSystem
Definition: guc_tables.c:489
static struct @157 value
#define close(a)
Definition: win32.h:12
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1168
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1781
@ LW_EXCLUSIVE
Definition: lwlock.h:114
Oid GetUserId(void)
Definition: miscinit.c:514
#define InvokeObjectPostAlterHookArgStr(classId, objectName, subId, auxiliaryId, is_internal)
Definition: objectaccess.h:247
@ VAR_SET_DEFAULT
Definition: parsenodes.h:2611
@ VAR_RESET
Definition: parsenodes.h:2614
@ VAR_SET_VALUE
Definition: parsenodes.h:2610
@ VAR_RESET_ALL
Definition: parsenodes.h:2615
#define ACL_ALTER_SYSTEM
Definition: parsenodes.h:89
#define MAXPGPATH
#define snprintf
Definition: port.h:238
VariableSetStmt * setstmt
Definition: parsenodes.h:3832
VariableSetKind kind
Definition: parsenodes.h:2623
bool superuser(void)
Definition: superuser.c:46
#define stat
Definition: win32_port.h:284
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(), 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 1120 of file guc.c.

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

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

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

References elog, GUCNestLevel, and WARNING.

Referenced by StartTransaction().

◆ BeginReportingGUCOptions()

void BeginReportingGUCOptions ( void  )

Definition at line 2545 of file guc.c.

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

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

903 {
904  int size_vars;
905  int num_vars = 0;
906  HASHCTL hash_ctl;
907  GUCHashEntry *hentry;
908  bool found;
909  int i;
910 
911  /*
912  * Create the memory context that will hold all GUC-related data.
913  */
914  Assert(GUCMemoryContext == NULL);
916  "GUCMemoryContext",
918 
919  /*
920  * Count all the built-in variables, and set their vartypes correctly.
921  */
922  for (i = 0; ConfigureNamesBool[i].gen.name; i++)
923  {
924  struct config_bool *conf = &ConfigureNamesBool[i];
925 
926  /* Rather than requiring vartype to be filled in by hand, do this: */
927  conf->gen.vartype = PGC_BOOL;
928  num_vars++;
929  }
930 
931  for (i = 0; ConfigureNamesInt[i].gen.name; i++)
932  {
933  struct config_int *conf = &ConfigureNamesInt[i];
934 
935  conf->gen.vartype = PGC_INT;
936  num_vars++;
937  }
938 
939  for (i = 0; ConfigureNamesReal[i].gen.name; i++)
940  {
941  struct config_real *conf = &ConfigureNamesReal[i];
942 
943  conf->gen.vartype = PGC_REAL;
944  num_vars++;
945  }
946 
947  for (i = 0; ConfigureNamesString[i].gen.name; i++)
948  {
949  struct config_string *conf = &ConfigureNamesString[i];
950 
951  conf->gen.vartype = PGC_STRING;
952  num_vars++;
953  }
954 
955  for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
956  {
957  struct config_enum *conf = &ConfigureNamesEnum[i];
958 
959  conf->gen.vartype = PGC_ENUM;
960  num_vars++;
961  }
962 
963  /*
964  * Create hash table with 20% slack
965  */
966  size_vars = num_vars + num_vars / 4;
967 
968  hash_ctl.keysize = sizeof(char *);
969  hash_ctl.entrysize = sizeof(GUCHashEntry);
970  hash_ctl.hash = guc_name_hash;
971  hash_ctl.match = guc_name_match;
972  hash_ctl.hcxt = GUCMemoryContext;
973  guc_hashtab = hash_create("GUC hash table",
974  size_vars,
975  &hash_ctl,
977 
978  for (i = 0; ConfigureNamesBool[i].gen.name; i++)
979  {
980  struct config_generic *gucvar = &ConfigureNamesBool[i].gen;
981 
982  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
983  &gucvar->name,
984  HASH_ENTER,
985  &found);
986  Assert(!found);
987  hentry->gucvar = gucvar;
988  }
989 
990  for (i = 0; ConfigureNamesInt[i].gen.name; i++)
991  {
992  struct config_generic *gucvar = &ConfigureNamesInt[i].gen;
993 
994  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
995  &gucvar->name,
996  HASH_ENTER,
997  &found);
998  Assert(!found);
999  hentry->gucvar = gucvar;
1000  }
1001 
1002  for (i = 0; ConfigureNamesReal[i].gen.name; i++)
1003  {
1004  struct config_generic *gucvar = &ConfigureNamesReal[i].gen;
1005 
1006  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
1007  &gucvar->name,
1008  HASH_ENTER,
1009  &found);
1010  Assert(!found);
1011  hentry->gucvar = gucvar;
1012  }
1013 
1014  for (i = 0; ConfigureNamesString[i].gen.name; i++)
1015  {
1016  struct config_generic *gucvar = &ConfigureNamesString[i].gen;
1017 
1018  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
1019  &gucvar->name,
1020  HASH_ENTER,
1021  &found);
1022  Assert(!found);
1023  hentry->gucvar = gucvar;
1024  }
1025 
1026  for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
1027  {
1028  struct config_generic *gucvar = &ConfigureNamesEnum[i].gen;
1029 
1030  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
1031  &gucvar->name,
1032  HASH_ENTER,
1033  &found);
1034  Assert(!found);
1035  hentry->gucvar = gucvar;
1036  }
1037 
1038  Assert(num_vars == hash_get_num_entries(guc_hashtab));
1039 }
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:352
long hash_get_num_entries(HTAB *hashp)
Definition: dynahash.c:1341
static int guc_name_match(const void *key1, const void *key2, Size keysize)
Definition: guc.c:1353
static uint32 guc_name_hash(const void *key, Size keysize)
Definition: guc.c:1329
static MemoryContext GUCMemoryContext
Definition: guc.c:198
struct config_string ConfigureNamesString[]
Definition: guc_tables.c:4005
struct config_int ConfigureNamesInt[]
Definition: guc_tables.c:2086
struct config_bool ConfigureNamesBool[]
Definition: guc_tables.c:770
struct config_real ConfigureNamesReal[]
Definition: guc_tables.c:3724
struct config_enum ConfigureNamesEnum[]
Definition: guc_tables.c:4793
@ 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:73
MemoryContext TopMemoryContext
Definition: mcxt.c:149
#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 6762 of file guc.c.

6764 {
6765  /* Quick success if no hook */
6766  if (!conf->check_hook)
6767  return true;
6768 
6769  /* Reset variables that might be set by hook */
6770  GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6771  GUC_check_errmsg_string = NULL;
6773  GUC_check_errhint_string = NULL;
6774 
6775  if (!conf->check_hook(newval, extra, source))
6776  {
6777  ereport(elevel,
6781  errmsg("invalid value for parameter \"%s\": %d",
6782  conf->gen.name, (int) *newval),
6786  errhint("%s", GUC_check_errhint_string) : 0));
6787  /* Flush any strings created in ErrorContext */
6788  FlushErrorState();
6789  return false;
6790  }
6791 
6792  return true;
6793 }
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1157
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1230
void FlushErrorState(void)
Definition: elog.c:1867
int errhint(const char *fmt,...)
Definition: elog.c:1317
char * GUC_check_errhint_string
Definition: guc.c:83
char * GUC_check_errmsg_string
Definition: guc.c:81
static int GUC_check_errcode_value
Definition: guc.c:76
char * GUC_check_errdetail_string
Definition: guc.c:82
static rewind_source * source
Definition: pg_rewind.c:89
GucBoolCheckHook check_hook
Definition: guc_tables.h:204

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

6916 {
6917  /* Quick success if no hook */
6918  if (!conf->check_hook)
6919  return true;
6920 
6921  /* Reset variables that might be set by hook */
6922  GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6923  GUC_check_errmsg_string = NULL;
6925  GUC_check_errhint_string = NULL;
6926 
6927  if (!conf->check_hook(newval, extra, source))
6928  {
6929  ereport(elevel,
6933  errmsg("invalid value for parameter \"%s\": \"%s\"",
6934  conf->gen.name,
6939  errhint("%s", GUC_check_errhint_string) : 0));
6940  /* Flush any strings created in ErrorContext */
6941  FlushErrorState();
6942  return false;
6943  }
6944 
6945  return true;
6946 }
const char * config_enum_lookup_by_value(struct config_enum *record, int val)
Definition: guc.c:3022
GucEnumCheckHook check_hook
Definition: guc_tables.h:275

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

6798 {
6799  /* Quick success if no hook */
6800  if (!conf->check_hook)
6801  return true;
6802 
6803  /* Reset variables that might be set by hook */
6804  GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6805  GUC_check_errmsg_string = NULL;
6807  GUC_check_errhint_string = NULL;
6808 
6809  if (!conf->check_hook(newval, extra, source))
6810  {
6811  ereport(elevel,
6815  errmsg("invalid value for parameter \"%s\": %d",
6816  conf->gen.name, *newval),
6820  errhint("%s", GUC_check_errhint_string) : 0));
6821  /* Flush any strings created in ErrorContext */
6822  FlushErrorState();
6823  return false;
6824  }
6825 
6826  return true;
6827 }
GucIntCheckHook check_hook
Definition: guc_tables.h:220

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

6832 {
6833  /* Quick success if no hook */
6834  if (!conf->check_hook)
6835  return true;
6836 
6837  /* Reset variables that might be set by hook */
6838  GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6839  GUC_check_errmsg_string = NULL;
6841  GUC_check_errhint_string = NULL;
6842 
6843  if (!conf->check_hook(newval, extra, source))
6844  {
6845  ereport(elevel,
6849  errmsg("invalid value for parameter \"%s\": %g",
6850  conf->gen.name, *newval),
6854  errhint("%s", GUC_check_errhint_string) : 0));
6855  /* Flush any strings created in ErrorContext */
6856  FlushErrorState();
6857  return false;
6858  }
6859 
6860  return true;
6861 }
GucRealCheckHook check_hook
Definition: guc_tables.h:236

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

6866 {
6867  volatile bool result = true;
6868 
6869  /* Quick success if no hook */
6870  if (!conf->check_hook)
6871  return true;
6872 
6873  /*
6874  * If elevel is ERROR, or if the check_hook itself throws an elog
6875  * (undesirable, but not always avoidable), make sure we don't leak the
6876  * already-malloc'd newval string.
6877  */
6878  PG_TRY();
6879  {
6880  /* Reset variables that might be set by hook */
6881  GUC_check_errcode_value = ERRCODE_INVALID_PARAMETER_VALUE;
6882  GUC_check_errmsg_string = NULL;
6884  GUC_check_errhint_string = NULL;
6885 
6886  if (!conf->check_hook(newval, extra, source))
6887  {
6888  ereport(elevel,
6892  errmsg("invalid value for parameter \"%s\": \"%s\"",
6893  conf->gen.name, *newval ? *newval : ""),
6897  errhint("%s", GUC_check_errhint_string) : 0));
6898  /* Flush any strings created in ErrorContext */
6899  FlushErrorState();
6900  result = false;
6901  }
6902  }
6903  PG_CATCH();
6904  {
6905  guc_free(*newval);
6906  PG_RE_THROW();
6907  }
6908  PG_END_TRY();
6909 
6910  return result;
6911 }
GucStringCheckHook check_hook
Definition: guc_tables.h:260

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

5773 {
5774  /*
5775  * We can skip GUCs that are guaranteed to have the same values in leaders
5776  * and workers. (Note it is critical that the leader and worker have the
5777  * same idea of which GUCs fall into this category. It's okay to consider
5778  * context and name for this purpose, since those are unchanging
5779  * properties of a GUC.)
5780  *
5781  * PGC_POSTMASTER variables always have the same value in every child of a
5782  * particular postmaster, so the worker will certainly have the right
5783  * value already. Likewise, PGC_INTERNAL variables are set by special
5784  * mechanisms (if indeed they aren't compile-time constants). So we may
5785  * always skip these.
5786  *
5787  * Role must be handled specially because its current value can be an
5788  * invalid value (for instance, if someone dropped the role since we set
5789  * it). So if we tried to serialize it normally, we might get a failure.
5790  * We skip it here, and use another mechanism to ensure the worker has the
5791  * right value.
5792  *
5793  * For all other GUCs, we skip if the GUC has its compiled-in default
5794  * value (i.e., source == PGC_S_DEFAULT). On the leader side, this means
5795  * we don't send GUCs that have their default values, which typically
5796  * saves lots of work. On the worker side, this means we don't need to
5797  * reset the GUC to default because it already has that value. See
5798  * comments in RestoreGUCState for more info.
5799  */
5800  return gconf->context == PGC_POSTMASTER ||
5801  gconf->context == PGC_INTERNAL || gconf->source == PGC_S_DEFAULT ||
5802  strcmp(gconf->name, "role") == 0;
5803 }
@ PGC_S_DEFAULT
Definition: guc.h:109
@ PGC_POSTMASTER
Definition: guc.h:70
GucSource source
Definition: guc_tables.h:165

References config_generic::context, config_generic::name, 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 1409 of file guc.c.

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

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

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

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

3047 {
3048  const struct config_enum_entry *entry;
3049 
3050  for (entry = record->options; entry && entry->name; entry++)
3051  {
3052  if (pg_strcasecmp(value, entry->name) == 0)
3053  {
3054  *retval = entry->val;
3055  return true;
3056  }
3057  }
3058 
3059  *retval = 0;
3060  return false;
3061 }
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36
int val
Definition: guc.h:172

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

3023 {
3024  const struct config_enum_entry *entry;
3025 
3026  for (entry = record->options; entry && entry->name; entry++)
3027  {
3028  if (entry->val == val)
3029  return entry->name;
3030  }
3031 
3032  elog(ERROR, "could not find enum option %d for %s",
3033  val, record->gen.name);
3034  return NULL; /* silence compiler */
3035 }
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(), serialize_variable(), and ShowGUCOption().

◆ convert_GUC_name_for_parameter_acl()

char* convert_GUC_name_for_parameter_acl ( const char *  name)

Definition at line 1373 of file guc.c.

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

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

2730 {
2731  const unit_conversion *table;
2732  int i;
2733 
2734  *unit = NULL;
2735 
2736  if (base_unit & GUC_UNIT_MEMORY)
2738  else
2740 
2741  for (i = 0; *table[i].unit; i++)
2742  {
2743  if (base_unit == table[i].base_unit)
2744  {
2745  /*
2746  * Accept the first conversion that divides the value evenly. We
2747  * assume that the conversions for each base unit are ordered from
2748  * greatest unit to the smallest!
2749  */
2750  if (table[i].multiplier <= 1.0 ||
2751  base_value % (int64) table[i].multiplier == 0)
2752  {
2753  *value = (int64) rint(base_value / table[i].multiplier);
2754  *unit = table[i].unit;
2755  break;
2756  }
2757  }
2758  }
2759 
2760  Assert(*unit != NULL);
2761 }
static const unit_conversion memory_unit_conversion_table[]
Definition: guc.c:121
static const unit_conversion time_unit_conversion_table[]
Definition: guc.c:158
#define GUC_UNIT_MEMORY
Definition: guc.h:233
char unit[MAX_UNIT_LEN+1]
Definition: guc.c:105

References Assert, GUC_UNIT_MEMORY, i, memory_unit_conversion_table, time_unit_conversion_table, unit_conversion::unit, 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 2770 of file guc.c.

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

References Assert, GUC_UNIT_MEMORY, i, memory_unit_conversion_table, unit_conversion::multiplier, time_unit_conversion_table, unit_conversion::unit, 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 2670 of file guc.c.

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

References GUC_UNIT_MEMORY, i, MAX_UNIT_LEN, memory_unit_conversion_table, unit_conversion::multiplier, time_unit_conversion_table, unit_conversion::unit, 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 4889 of file guc.c.

4890 {
4891  const char *name = variable->name;
4892  GUCHashEntry *hentry;
4893  struct config_string *pHolder;
4894 
4895  /* Check mapping between initial and default value */
4896  Assert(check_GUC_init(variable));
4897 
4898  /*
4899  * See if there's a placeholder by the same name.
4900  */
4901  hentry = (GUCHashEntry *) hash_search(guc_hashtab,
4902  &name,
4903  HASH_FIND,
4904  NULL);
4905  if (hentry == NULL)
4906  {
4907  /*
4908  * No placeholder to replace, so we can just add it ... but first,
4909  * make sure it's initialized to its default value.
4910  */
4913  return;
4914  }
4915 
4916  /*
4917  * This better be a placeholder
4918  */
4919  if ((hentry->gucvar->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4920  ereport(ERROR,
4921  (errcode(ERRCODE_INTERNAL_ERROR),
4922  errmsg("attempt to redefine parameter \"%s\"", name)));
4923 
4924  Assert(hentry->gucvar->vartype == PGC_STRING);
4925  pHolder = (struct config_string *) hentry->gucvar;
4926 
4927  /*
4928  * First, set the variable to its default value. We must do this even
4929  * though we intend to immediately apply a new value, since it's possible
4930  * that the new value is invalid.
4931  */
4933 
4934  /*
4935  * Replace the placeholder in the hash table. We aren't changing the name
4936  * (at least up to case-folding), so the hash value is unchanged.
4937  */
4938  hentry->gucname = name;
4939  hentry->gucvar = variable;
4940 
4941  /*
4942  * Remove the placeholder from any lists it's in, too.
4943  */
4944  RemoveGUCFromLists(&pHolder->gen);
4945 
4946  /*
4947  * Assign the string value(s) stored in the placeholder to the real
4948  * variable. Essentially, we need to duplicate all the active and stacked
4949  * values, but with appropriate validation and datatype adjustment.
4950  *
4951  * If an assignment fails, we report a WARNING and keep going. We don't
4952  * want to throw ERROR for bad values, because it'd bollix the add-on
4953  * module that's presumably halfway through getting loaded. In such cases
4954  * the default or previous state will become active instead.
4955  */
4956 
4957  /* First, apply the reset value if any */
4958  if (pHolder->reset_val)
4959  (void) set_config_option_ext(name, pHolder->reset_val,
4960  pHolder->gen.reset_scontext,
4961  pHolder->gen.reset_source,
4962  pHolder->gen.reset_srole,
4963  GUC_ACTION_SET, true, WARNING, false);
4964  /* That should not have resulted in stacking anything */
4965  Assert(variable->stack == NULL);
4966 
4967  /* Now, apply current and stacked values, in the order they were stacked */
4968  reapply_stacked_values(variable, pHolder, pHolder->gen.stack,
4969  *(pHolder->variable),
4970  pHolder->gen.scontext, pHolder->gen.source,
4971  pHolder->gen.srole);
4972 
4973  /* Also copy over any saved source-location information */
4974  if (pHolder->gen.sourcefile)
4976  pHolder->gen.sourceline);
4977 
4978  /*
4979  * Free up as much as we conveniently can of the placeholder structure.
4980  * (This neglects any stack items, so it's possible for some memory to be
4981  * leaked. Since this can only happen once per session per variable, it
4982  * doesn't seem worth spending much code on.)
4983  */
4984  set_string_field(pHolder, pHolder->variable, NULL);
4985  set_string_field(pHolder, &pHolder->reset_val, NULL);
4986 
4987  guc_free(pHolder);
4988 }
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:3381
static void set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
Definition: guc.c:4257
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:4998
static void InitializeOneGUCOption(struct config_generic *gconf)
Definition: guc.c:1643
static void RemoveGUCFromLists(struct config_generic *gconf)
Definition: guc.c:1760
@ GUC_ACTION_SET
Definition: guc.h:199
@ HASH_FIND
Definition: hsearch.h:113
const char * gucname
Definition: guc.c:207
char * sourcefile
Definition: guc_tables.h:181
GucContext reset_scontext
Definition: guc_tables.h:168
GucSource reset_source
Definition: guc_tables.h:166
char * reset_val
Definition: guc_tables.h:264
char * name
Definition: type.h:190

References add_guc_variable(), Assert, ereport, errcode(), errmsg(), ERROR, config_generic::flags, config_string::gen, GUC_ACTION_SET, GUC_CUSTOM_PLACEHOLDER, guc_free(), 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(), set_string_field(), 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 5090 of file guc.c.

5100 {
5101  struct config_bool *var;
5102 
5103  var = (struct config_bool *)
5104  init_custom_variable(name, short_desc, long_desc, context, flags,
5105  PGC_BOOL, sizeof(struct config_bool));
5106  var->variable = valueAddr;
5107  var->boot_val = bootValue;
5108  var->reset_val = bootValue;
5109  var->check_hook = check_hook;
5110  var->assign_hook = assign_hook;
5111  var->show_hook = show_hook;
5112  define_custom_variable(&var->gen);
5113 }
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:4829
static void define_custom_variable(struct config_generic *variable)
Definition: guc.c:4889
tree context
Definition: radixtree.h:1835
bool reset_val
Definition: guc_tables.h:208
bool boot_val
Definition: guc_tables.h:203
GucShowHook show_hook
Definition: guc_tables.h:206

References config_bool::assign_hook, config_bool::boot_val, config_bool::check_hook, context, 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 5201 of file guc.c.

5212 {
5213  struct config_enum *var;
5214 
5215  var = (struct config_enum *)
5216  init_custom_variable(name, short_desc, long_desc, context, flags,
5217  PGC_ENUM, sizeof(struct config_enum));
5218  var->variable = valueAddr;
5219  var->boot_val = bootValue;
5220  var->reset_val = bootValue;
5221  var->options = options;
5222  var->check_hook = check_hook;
5223  var->assign_hook = assign_hook;
5224  var->show_hook = show_hook;
5225  define_custom_variable(&var->gen);
5226 }
static char ** options
GucShowHook show_hook
Definition: guc_tables.h:277

References config_enum::assign_hook, config_enum::boot_val, config_enum::check_hook, context, 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 5116 of file guc.c.

5128 {
5129  struct config_int *var;
5130 
5131  var = (struct config_int *)
5132  init_custom_variable(name, short_desc, long_desc, context, flags,
5133  PGC_INT, sizeof(struct config_int));
5134  var->variable = valueAddr;
5135  var->boot_val = bootValue;
5136  var->reset_val = bootValue;
5137  var->min = minValue;
5138  var->max = maxValue;
5139  var->check_hook = check_hook;
5140  var->assign_hook = assign_hook;
5141  var->show_hook = show_hook;
5142  define_custom_variable(&var->gen);
5143 }
int reset_val
Definition: guc_tables.h:224
int boot_val
Definition: guc_tables.h:217
GucShowHook show_hook
Definition: guc_tables.h:222

References config_int::assign_hook, config_int::boot_val, config_int::check_hook, context, 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 5146 of file guc.c.

5158 {
5159  struct config_real *var;
5160 
5161  var = (struct config_real *)
5162  init_custom_variable(name, short_desc, long_desc, context, flags,
5163  PGC_REAL, sizeof(struct config_real));
5164  var->variable = valueAddr;
5165  var->boot_val = bootValue;
5166  var->reset_val = bootValue;
5167  var->min = minValue;
5168  var->max = maxValue;
5169  var->check_hook = check_hook;
5170  var->assign_hook = assign_hook;
5171  var->show_hook = show_hook;
5172  define_custom_variable(&var->gen);
5173 }
double boot_val
Definition: guc_tables.h:233
double reset_val
Definition: guc_tables.h:240
double min
Definition: guc_tables.h:234
double max
Definition: guc_tables.h:235
GucShowHook show_hook
Definition: guc_tables.h:238

References config_real::assign_hook, config_real::boot_val, config_real::check_hook, context, 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 5176 of file guc.c.

5186 {
5187  struct config_string *var;
5188 
5189  var = (struct config_string *)
5190  init_custom_variable(name, short_desc, long_desc, context, flags,
5191  PGC_STRING, sizeof(struct config_string));
5192  var->variable = valueAddr;
5193  var->boot_val = bootValue;
5194  var->check_hook = check_hook;
5195  var->assign_hook = assign_hook;
5196  var->show_hook = show_hook;
5197  define_custom_variable(&var->gen);
5198 }
GucShowHook show_hook
Definition: guc_tables.h:262
const char * boot_val
Definition: guc_tables.h:259

References config_string::assign_hook, config_string::boot_val, config_string::check_hook, context, 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 845 of file guc.c.

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

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

5944 {
5945  va_list vargs;
5946  int n;
5947 
5948  if (*maxbytes <= 0)
5949  elog(ERROR, "not enough space to serialize GUC state");
5950 
5951  va_start(vargs, fmt);
5952  n = vsnprintf(*destptr, *maxbytes, fmt, vargs);
5953  va_end(vargs);
5954 
5955  if (n < 0)
5956  {
5957  /* Shouldn't happen. Better show errno description. */
5958  elog(ERROR, "vsnprintf failed: %m with format string \"%s\"", fmt);
5959  }
5960  if (n >= *maxbytes)
5961  {
5962  /* This shouldn't happen either, really. */
5963  elog(ERROR, "not enough space to serialize GUC state");
5964  }
5965 
5966  /* Shift the destptr ahead of the null terminator */
5967  *destptr += n + 1;
5968  *maxbytes -= n + 1;
5969 }
static void const char * fmt
va_end(args)
va_start(args, fmt)
#define vsnprintf
Definition: port.h:237

References elog, ERROR, fmt, va_end(), va_start(), 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 5973 of file guc.c.

5974 {
5975  if (valsize > *maxbytes)
5976  elog(ERROR, "not enough space to serialize GUC state");
5977 
5978  memcpy(*destptr, val, valsize);
5979  *destptr += valsize;
5980  *maxbytes -= valsize;
5981 }

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

5813 {
5814  Size size;
5815  Size valsize = 0;
5816 
5817  /* Skippable GUCs consume zero space. */
5818  if (can_skip_gucvar(gconf))
5819  return 0;
5820 
5821  /* Name, plus trailing zero byte. */
5822  size = strlen(gconf->name) + 1;
5823 
5824  /* Get the maximum display length of the GUC value. */
5825  switch (gconf->vartype)
5826  {
5827  case PGC_BOOL:
5828  {
5829  valsize = 5; /* max(strlen('true'), strlen('false')) */
5830  }
5831  break;
5832 
5833  case PGC_INT:
5834  {
5835  struct config_int *conf = (struct config_int *) gconf;
5836 
5837  /*
5838  * Instead of getting the exact display length, use max
5839  * length. Also reduce the max length for typical ranges of
5840  * small values. Maximum value is 2147483647, i.e. 10 chars.
5841  * Include one byte for sign.
5842  */
5843  if (abs(*conf->variable) < 1000)
5844  valsize = 3 + 1;
5845  else
5846  valsize = 10 + 1;
5847  }
5848  break;
5849 
5850  case PGC_REAL:
5851  {
5852  /*
5853  * We are going to print it with %e with REALTYPE_PRECISION
5854  * fractional digits. Account for sign, leading digit,
5855  * decimal point, and exponent with up to 3 digits. E.g.
5856  * -3.99329042340000021e+110
5857  */
5858  valsize = 1 + 1 + 1 + REALTYPE_PRECISION + 5;
5859  }
5860  break;
5861 
5862  case PGC_STRING:
5863  {
5864  struct config_string *conf = (struct config_string *) gconf;
5865 
5866  /*
5867  * If the value is NULL, we transmit it as an empty string.
5868  * Although this is not physically the same value, GUC
5869  * generally treats a NULL the same as empty string.
5870  */
5871  if (*conf->variable)
5872  valsize = strlen(*conf->variable);
5873  else
5874  valsize = 0;
5875  }
5876  break;
5877 
5878  case PGC_ENUM:
5879  {
5880  struct config_enum *conf = (struct config_enum *) gconf;
5881 
5882  valsize = strlen(config_enum_lookup_by_value(conf, *conf->variable));
5883  }
5884  break;
5885  }
5886 
5887  /* Allow space for terminating zero-byte for value */
5888  size = add_size(size, valsize + 1);
5889 
5890  if (gconf->sourcefile)
5891  size = add_size(size, strlen(gconf->sourcefile));
5892 
5893  /* Allow space for terminating zero-byte for sourcefile */
5894  size = add_size(size, 1);
5895 
5896  /* Include line whenever file is nonempty. */
5897  if (gconf->sourcefile && gconf->sourcefile[0])
5898  size = add_size(size, sizeof(gconf->sourceline));
5899 
5900  size = add_size(size, sizeof(gconf->source));
5901  size = add_size(size, sizeof(gconf->scontext));
5902  size = add_size(size, sizeof(gconf->srole));
5903 
5904  return size;
5905 }
size_t Size
Definition: c.h:596
static bool can_skip_gucvar(struct config_generic *gconf)
Definition: guc.c:5772
#define REALTYPE_PRECISION
Definition: guc.c:68
Size add_size(Size s1, Size s2)
Definition: shmem.c:493
static pg_noinline void Size size
Definition: slab.c:607

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, size, 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 5912 of file guc.c.

5913 {
5914  Size size;
5915  dlist_iter iter;
5916 
5917  /* Add space reqd for saving the data size of the guc state */
5918  size = sizeof(Size);
5919 
5920  /*
5921  * Add up the space needed for each GUC variable.
5922  *
5923  * We need only process non-default GUCs.
5924  */
5926  {
5927  struct config_generic *gconf = dlist_container(struct config_generic,
5928  nondef_link, iter.cur);
5929 
5931  }
5932 
5933  return size;
5934 }
static dlist_head guc_nondef_list
Definition: guc.c:221
static Size estimate_variable_size(struct config_generic *gconf)
Definition: guc.c:5812
#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:173
dlist_node * cur
Definition: ilist.h:179

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

Referenced by InitializeParallelDSM().

◆ extra_field_used()

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

Definition at line 746 of file guc.c.

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

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

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

References add_placeholder_variable(), Assert, assignable_custom_variable_name(), ereport, errcode(), errmsg(), 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(), 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().

◆ get_config_handle()

config_handle* get_config_handle ( const char *  name)

Definition at line 4242 of file guc.c.

4243 {
4244  struct config_generic *gen = find_option(name, false, false, 0);
4245 
4246  if (gen && ((gen->flags & GUC_CUSTOM_PLACEHOLDER) == 0))
4247  return gen;
4248 
4249  return NULL;
4250 }

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

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

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

5290 {
5291  struct config_generic **result;
5292  dlist_iter iter;
5293 
5294  *num = 0;
5295 
5296  /*
5297  * While only a fraction of all the GUC variables are marked GUC_EXPLAIN,
5298  * it doesn't seem worth dynamically resizing this array.
5299  */
5300  result = palloc(sizeof(struct config_generic *) * hash_get_num_entries(guc_hashtab));
5301 
5302  /* We need only consider GUCs with source not PGC_S_DEFAULT */
5304  {
5305  struct config_generic *conf = dlist_container(struct config_generic,
5306  nondef_link, iter.cur);
5307  bool modified;
5308 
5309  /* return only parameters marked for inclusion in explain */
5310  if (!(conf->flags & GUC_EXPLAIN))
5311  continue;
5312 
5313  /* return only options visible to the current user */
5314  if (!ConfigOptionIsVisible(conf))
5315  continue;
5316 
5317  /* return only options that are different from their boot values */
5318  modified = false;
5319 
5320  switch (conf->vartype)
5321  {
5322  case PGC_BOOL:
5323  {
5324  struct config_bool *lconf = (struct config_bool *) conf;
5325 
5326  modified = (lconf->boot_val != *(lconf->variable));
5327  }
5328  break;
5329 
5330  case PGC_INT:
5331  {
5332  struct config_int *lconf = (struct config_int *) conf;
5333 
5334  modified = (lconf->boot_val != *(lconf->variable));
5335  }
5336  break;
5337 
5338  case PGC_REAL:
5339  {
5340  struct config_real *lconf = (struct config_real *) conf;
5341 
5342  modified = (lconf->boot_val != *(lconf->variable));
5343  }
5344  break;
5345 
5346  case PGC_STRING:
5347  {
5348  struct config_string *lconf = (struct config_string *) conf;
5349 
5350  if (lconf->boot_val == NULL &&
5351  *lconf->variable == NULL)
5352  modified = false;
5353  else if (lconf->boot_val == NULL ||
5354  *lconf->variable == NULL)
5355  modified = true;
5356  else
5357  modified = (strcmp(lconf->boot_val, *(lconf->variable)) != 0);
5358  }
5359  break;
5360 
5361  case PGC_ENUM:
5362  {
5363  struct config_enum *lconf = (struct config_enum *) conf;
5364 
5365  modified = (lconf->boot_val != *(lconf->variable));
5366  }
5367  break;
5368 
5369  default:
5370  elog(ERROR, "unexpected GUC type: %d", conf->vartype);
5371  }
5372 
5373  if (!modified)
5374  continue;
5375 
5376  /* OK, report it */
5377  result[*num] = conf;
5378  *num = *num + 1;
5379  }
5380 
5381  return result;
5382 }
#define GUC_EXPLAIN
Definition: guc.h:215
bool ConfigOptionIsVisible(struct config_generic *conf)
Definition: guc_funcs.c:581
void * palloc(Size size)
Definition: mcxt.c:1317

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

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

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

4314 {
4315  struct config_generic *record;
4316  static char buffer[256];
4317 
4318  record = find_option(name, false, missing_ok, ERROR);
4319  if (record == NULL)
4320  return NULL;
4321  if (restrict_privileged &&
4322  !ConfigOptionIsVisible(record))
4323  ereport(ERROR,
4324  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4325  errmsg("permission denied to examine \"%s\"", name),
4326  errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
4327  "pg_read_all_settings")));
4328 
4329  switch (record->vartype)
4330  {
4331  case PGC_BOOL:
4332  return *((struct config_bool *) record)->variable ? "on" : "off";
4333 
4334  case PGC_INT:
4335  snprintf(buffer, sizeof(buffer), "%d",
4336  *((struct config_int *) record)->variable);
4337  return buffer;
4338 
4339  case PGC_REAL:
4340  snprintf(buffer, sizeof(buffer), "%g",
4341  *((struct config_real *) record)->variable);
4342  return buffer;
4343 
4344  case PGC_STRING:
4345  return *((struct config_string *) record)->variable ?
4346  *((struct config_string *) record)->variable : "";
4347 
4348  case PGC_ENUM:
4349  return config_enum_lookup_by_value((struct config_enum *) record,
4350  *((struct config_enum *) record)->variable);
4351  }
4352  return NULL;
4353 }

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

5391 {
5392  struct config_generic *record;
5393 
5394  record = find_option(name, false, missing_ok, ERROR);
5395  if (record == NULL)
5396  {
5397  if (varname)
5398  *varname = NULL;
5399  return NULL;
5400  }
5401 
5402  if (!ConfigOptionIsVisible(record))
5403  ereport(ERROR,
5404  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
5405  errmsg("permission denied to examine \"%s\"", name),
5406  errdetail("Only roles with privileges of the \"%s\" role may examine this parameter.",
5407  "pg_read_all_settings")));
5408 
5409  if (varname)
5410  *varname = record->name;
5411 
5412  return ShowGUCOption(record, true);
5413 }
char * ShowGUCOption(struct config_generic *record, bool use_units)
Definition: guc.c:5423

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

4411 {
4412  struct config_generic *record;
4413 
4414  record = find_option(name, false, missing_ok, ERROR);
4415  if (record == NULL)
4416  return 0;
4417  return record->flags;
4418 }

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

4364 {
4365  struct config_generic *record;
4366  static char buffer[256];
4367 
4368  record = find_option(name, false, false, ERROR);
4369  Assert(record != NULL);
4370  if (!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)->reset_val ? "on" : "off";
4381 
4382  case PGC_INT:
4383  snprintf(buffer, sizeof(buffer), "%d",
4384  ((struct config_int *) record)->reset_val);
4385  return buffer;
4386 
4387  case PGC_REAL:
4388  snprintf(buffer, sizeof(buffer), "%g",
4389  ((struct config_real *) record)->reset_val);
4390  return buffer;
4391 
4392  case PGC_STRING:
4393  return ((struct config_string *) record)->reset_val ?
4394  ((struct config_string *) record)->reset_val : "";
4395 
4396  case PGC_ENUM:
4397  return config_enum_lookup_by_value((struct config_enum *) record,
4398  ((struct config_enum *) record)->reset_val);
4399  }
4400  return NULL;
4401 }

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

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

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

Referenced by add_placeholder_variable(), AlterSystemSetConfigFile(), call_string_check_hook(), check_client_encoding(), check_datestyle(), check_default_text_search_config(), define_custom_variable(), 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 1299 of file guc.c.

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

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

◆ guc_name_hash()

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

Definition at line 1329 of file guc.c.

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

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

1354 {
1355  const char *name1 = *(const char *const *) key1;
1356  const char *name2 = *(const char *const *) key2;
1357 
1358  return guc_name_compare(name1, name2);
1359 }

References guc_name_compare().

Referenced by build_guc_variables().

◆ guc_realloc()

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

Definition at line 651 of file guc.c.

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

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

◆ guc_restore_error_context_callback()

static void guc_restore_error_context_callback ( void *  arg)
static

Definition at line 6135 of file guc.c.

6136 {
6137  char **error_context_name_and_value = (char **) arg;
6138 
6139  if (error_context_name_and_value)
6140  errcontext("while setting parameter \"%s\" to \"%s\"",
6141  error_context_name_and_value[0],
6142  error_context_name_and_value[1]);
6143 }
#define errcontext
Definition: elog.h:196
void * arg

References arg, and errcontext.

Referenced by RestoreGUCState().

◆ guc_strdup()

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

Definition at line 676 of file guc.c.

677 {
678  char *data;
679  size_t len = strlen(src) + 1;
680 
681  data = guc_malloc(elevel, len);
682  if (likely(data != NULL))
683  memcpy(data, src, len);
684  return data;
685 }
#define likely(x)
Definition: c.h:313
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 1287 of file guc.c.

1288 {
1289  const char *namea = **(const char **const *) a;
1290  const char *nameb = **(const char **const *) b;
1291 
1292  return guc_name_compare(namea, nameb);
1293 }
int b
Definition: isn.c:70
int a
Definition: isn.c:69

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

6453 {
6454  struct config_generic *record;
6455  Datum datum;
6456  char *newval;
6457  ArrayType *a;
6458 
6459  Assert(name);
6460  Assert(value);
6461 
6462  /* test if the option is valid and we're allowed to set it */
6463  (void) validate_option_array_item(name, value, false);
6464 
6465  /* normalize name (converts obsolete GUC names to modern spellings) */
6466  record = find_option(name, false, true, WARNING);
6467  if (record)
6468  name = record->name;
6469 
6470  /* build new item for array */
6471  newval = psprintf("%s=%s", name, value);
6472  datum = CStringGetTextDatum(newval);
6473 
6474  if (array)
6475  {
6476  int index;
6477  bool isnull;
6478  int i;
6479 
6480  Assert(ARR_ELEMTYPE(array) == TEXTOID);
6481  Assert(ARR_NDIM(array) == 1);
6482  Assert(ARR_LBOUND(array)[0] == 1);
6483 
6484  index = ARR_DIMS(array)[0] + 1; /* add after end */
6485 
6486  for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6487  {
6488  Datum d;
6489  char *current;
6490 
6491  d = array_ref(array, 1, &i,
6492  -1 /* varlenarray */ ,
6493  -1 /* TEXT's typlen */ ,
6494  false /* TEXT's typbyval */ ,
6495  TYPALIGN_INT /* TEXT's typalign */ ,
6496  &isnull);
6497  if (isnull)
6498  continue;
6499  current = TextDatumGetCString(d);
6500 
6501  /* check for match up through and including '=' */
6502  if (strncmp(current, newval, strlen(name) + 1) == 0)
6503  {
6504  index = i;
6505  break;
6506  }
6507  }
6508 
6509  a = array_set(array, 1, &index,
6510  datum,
6511  false,
6512  -1 /* varlena array */ ,
6513  -1 /* TEXT's typlen */ ,
6514  false /* TEXT's typbyval */ ,
6515  TYPALIGN_INT /* TEXT's typalign */ );
6516  }
6517  else
6518  a = construct_array_builtin(&datum, 1, TEXTOID);
6519 
6520  return a;
6521 }
#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 * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
Definition: arrayfuncs.c:3381
ArrayType * array_set(ArrayType *array, int nSubscripts, int *indx, Datum dataValue, bool isNull, int arraytyplen, int elmlen, bool elmbyval, char elmalign)
Definition: arrayfuncs.c:3163
Datum array_ref(ArrayType *array, int nSubscripts, int *indx, int arraytyplen, int elmlen, bool elmbyval, char elmalign, bool *isNull)
Definition: arrayfuncs.c:3146
#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:6672
uintptr_t Datum
Definition: postgres.h:64
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
Definition: type.h:95

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

6531 {
6532  struct config_generic *record;
6533  ArrayType *newarray;
6534  int i;
6535  int index;
6536 
6537  Assert(name);
6538 
6539  /* test if the option is valid and we're allowed to set it */
6540  (void) validate_option_array_item(name, NULL, false);
6541 
6542  /* normalize name (converts obsolete GUC names to modern spellings) */
6543  record = find_option(name, false, true, WARNING);
6544  if (record)
6545  name = record->name;
6546 
6547  /* if array is currently null, then surely nothing to delete */
6548  if (!array)
6549  return NULL;
6550 
6551  newarray = NULL;
6552  index = 1;
6553 
6554  for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6555  {
6556  Datum d;
6557  char *val;
6558  bool isnull;
6559 
6560  d = array_ref(array, 1, &i,
6561  -1 /* varlenarray */ ,
6562  -1 /* TEXT's typlen */ ,
6563  false /* TEXT's typbyval */ ,
6564  TYPALIGN_INT /* TEXT's typalign */ ,
6565  &isnull);
6566  if (isnull)
6567  continue;
6568  val = TextDatumGetCString(d);
6569 
6570  /* ignore entry if it's what we want to delete */
6571  if (strncmp(val, name, strlen(name)) == 0
6572  && val[strlen(name)] == '=')
6573  continue;
6574 
6575  /* else add it to the output array */
6576  if (newarray)
6577  newarray = array_set(newarray, 1, &index,
6578  d,
6579  false,
6580  -1 /* varlenarray */ ,
6581  -1 /* TEXT's typlen */ ,
6582  false /* TEXT's typbyval */ ,
6583  TYPALIGN_INT /* TEXT's typalign */ );
6584  else
6585  newarray = construct_array_builtin(&d, 1, TEXTOID);
6586 
6587  index++;
6588  }
6589 
6590  return newarray;
6591 }

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

6601 {
6602  ArrayType *newarray;
6603  int i;
6604  int index;
6605 
6606  /* if array is currently null, nothing to do */
6607  if (!array)
6608  return NULL;
6609 
6610  /* if we're superuser, we can delete everything, so just do it */
6611  if (superuser())
6612  return NULL;
6613 
6614  newarray = NULL;
6615  index = 1;
6616 
6617  for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6618  {
6619  Datum d;
6620  char *val;
6621  char *eqsgn;
6622  bool isnull;
6623 
6624  d = array_ref(array, 1, &i,
6625  -1 /* varlenarray */ ,
6626  -1 /* TEXT's typlen */ ,
6627  false /* TEXT's typbyval */ ,
6628  TYPALIGN_INT /* TEXT's typalign */ ,
6629  &isnull);
6630  if (isnull)
6631  continue;
6632  val = TextDatumGetCString(d);
6633 
6634  eqsgn = strchr(val, '=');
6635  *eqsgn = '\0';
6636 
6637  /* skip if we have permission to delete it */
6638  if (validate_option_array_item(val, NULL, true))
6639  continue;
6640 
6641  /* else add it to the output array */
6642  if (newarray)
6643  newarray = array_set(newarray, 1, &index,
6644  d,
6645  false,
6646  -1 /* varlenarray */ ,
6647  -1 /* TEXT's typlen */ ,
6648  false /* TEXT's typbyval */ ,
6649  TYPALIGN_INT /* TEXT's typalign */ );
6650  else
6651  newarray = construct_array_builtin(&d, 1, TEXTOID);
6652 
6653  index++;
6654  pfree(val);
6655  }
6656 
6657  return newarray;
6658 }

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

4836 {
4837  struct config_generic *gen;
4838 
4839  /*
4840  * Only allow custom PGC_POSTMASTER variables to be created during shared
4841  * library preload; any later than that, we can't ensure that the value
4842  * doesn't change after startup. This is a fatal elog if it happens; just
4843  * erroring out isn't safe because we don't know what the calling loadable
4844  * module might already have hooked into.
4845  */
4846  if (context == PGC_POSTMASTER &&
4848  elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
4849 
4850  /*
4851  * We can't support custom GUC_LIST_QUOTE variables, because the wrong
4852  * things would happen if such a variable were set or pg_dump'd when the
4853  * defining extension isn't loaded. Again, treat this as fatal because
4854  * the loadable module may be partly initialized already.
4855  */
4856  if (flags & GUC_LIST_QUOTE)
4857  elog(FATAL, "extensions cannot define GUC_LIST_QUOTE variables");
4858 
4859  /*
4860  * Before pljava commit 398f3b876ed402bdaec8bc804f29e2be95c75139
4861  * (2015-12-15), two of that module's PGC_USERSET variables facilitated
4862  * trivial escalation to superuser privileges. Restrict the variables to
4863  * protect sites that have yet to upgrade pljava.
4864  */
4865  if (context == PGC_USERSET &&
4866  (strcmp(name, "pljava.classpath") == 0 ||
4867  strcmp(name, "pljava.vmoptions") == 0))
4868  context = PGC_SUSET;
4869 
4870  gen = (struct config_generic *) guc_malloc(ERROR, sz);
4871  memset(gen, 0, sz);
4872 
4873  gen->name = guc_strdup(ERROR, name);
4874  gen->context = context;
4875  gen->group = CUSTOM_OPTIONS;
4876  gen->short_desc = short_desc;
4877  gen->long_desc = long_desc;
4878  gen->flags = flags;
4879  gen->vartype = type;
4880 
4881  return gen;
4882 }
#define FATAL
Definition: elog.h:41
#define GUC_LIST_QUOTE
Definition: guc.h:211
@ PGC_SUSET
Definition: guc.h:74
bool process_shared_preload_libraries_in_progress
Definition: miscinit.c:1778
const char * long_desc
Definition: guc_tables.h:160
const char * type

References context, config_generic::context, CUSTOM_OPTIONS, elog, ERROR, 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 1529 of file guc.c.

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

1589 {
1590  char *env;
1591  long stack_rlimit;
1592 
1593  env = getenv("PGPORT");
1594  if (env != NULL)
1596 
1597  env = getenv("PGDATESTYLE");
1598  if (env != NULL)
1599  SetConfigOption("datestyle", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1600 
1601  env = getenv("PGCLIENTENCODING");
1602  if (env != NULL)
1603  SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
1604 
1605  /*
1606  * rlimit isn't exactly an "environment variable", but it behaves about
1607  * the same. If we can identify the platform stack depth rlimit, increase
1608  * default stack depth setting up to whatever is safe (but at most 2MB).
1609  * Report the value's source as PGC_S_DYNAMIC_DEFAULT if it's 2MB, or as
1610  * PGC_S_ENV_VAR if it's reflecting the rlimit limit.
1611  */
1612  stack_rlimit = get_stack_depth_rlimit();
1613  if (stack_rlimit > 0)
1614  {
1615  long new_limit = (stack_rlimit - STACK_DEPTH_SLOP) / 1024L;
1616 
1617  if (new_limit > 100)
1618  {
1619  GucSource source;
1620  char limbuf[16];
1621 
1622  if (new_limit < 2048)
1624  else
1625  {
1626  new_limit = 2048;
1628  }
1629  snprintf(limbuf, sizeof(limbuf), "%ld", new_limit);
1630  SetConfigOption("max_stack_depth", limbuf,
1632  }
1633  }
1634 }
@ PGC_S_DYNAMIC_DEFAULT
Definition: guc.h:110
@ PGC_S_ENV_VAR
Definition: guc.h:111
long get_stack_depth_rlimit(void)
Definition: postgres.c:5074
#define STACK_DEPTH_SLOP
Definition: tcopprot.h:25

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

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

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

5238 {
5239  int classLen = strlen(className);
5240  HASH_SEQ_STATUS status;
5241  GUCHashEntry *hentry;
5242  MemoryContext oldcontext;
5243 
5244  /*
5245  * Check for existing placeholders. We must actually remove invalid
5246  * placeholders, else future parallel worker startups will fail. (We
5247  * don't bother trying to free associated memory, since this shouldn't
5248  * happen often.)
5249  */
5250  hash_seq_init(&status, guc_hashtab);
5251  while ((hentry = (GUCHashEntry *) hash_seq_search(&status)) != NULL)
5252  {
5253  struct config_generic *var = hentry->gucvar;
5254 
5255  if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5256  strncmp(className, var->name, classLen) == 0 &&
5257  var->name[classLen] == GUC_QUALIFIER_SEPARATOR)
5258  {
5259  ereport(WARNING,
5260  (errcode(ERRCODE_INVALID_NAME),
5261  errmsg("invalid configuration parameter name \"%s\", removing it",
5262  var->name),
5263  errdetail("\"%s\" is now a reserved prefix.",
5264  className)));
5265  /* Remove it from the hash table */
5267  &var->name,
5268  HASH_REMOVE,
5269  NULL);
5270  /* Remove it from any lists it's in, too */
5271  RemoveGUCFromLists(var);
5272  }
5273  }
5274 
5275  /* And remember the name so we can prevent future mistakes. */
5278  MemoryContextSwitchTo(oldcontext);
5279 }
@ HASH_REMOVE
Definition: hsearch.h:115
List * lappend(List *list, void *datum)
Definition: list.c:339
MemoryContextSwitchTo(old_ctx)

References ereport, errcode(), errdetail(), errmsg(), config_generic::flags, 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 3128 of file guc.c.

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

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

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

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

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

6327 {
6328  size_t equal_pos;
6329  char *cp;
6330 
6331  Assert(string);
6332  Assert(name);
6333  Assert(value);
6334 
6335  equal_pos = strcspn(string, "=");
6336 
6337  if (string[equal_pos] == '=')
6338  {
6339  *name = palloc(equal_pos + 1);
6340  strlcpy(*name, string, equal_pos + 1);
6341 
6342  *value = pstrdup(&string[equal_pos + 1]);
6343  }
6344  else
6345  {
6346  /* no equal sign in string */
6347  *name = pstrdup(string);
6348  *value = NULL;
6349  }
6350 
6351  for (cp = *name; *cp; cp++)
6352  if (*cp == '-')
6353  *cp = '_';
6354 }
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 1991 of file guc.c.

1992 {
1993  SetConfigOption("timezone_abbreviations", "Default",
1995 }

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

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

References ConfigVariable::applied, bail_out(), CONF_FILE_START_DEPTH, ConfigFileName, context, 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 show_all_file_settings().

◆ ProcessGUCArray()

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

Definition at line 6420 of file guc.c.

6422 {
6423  List *gucNames;
6424  List *gucValues;
6425  ListCell *lc1;
6426  ListCell *lc2;
6427 
6428  TransformGUCArray(array, &gucNames, &gucValues);
6429  forboth(lc1, gucNames, lc2, gucValues)
6430  {
6431  char *name = lfirst(lc1);
6432  char *value = lfirst(lc2);
6433 
6434  (void) set_config_option(name, value,
6435  context, source,
6436  action, true, 0, false);
6437 
6438  pfree(name);
6439  pfree(value);
6440  }
6441 
6442  list_free(gucNames);
6443  list_free(gucValues);
6444 }
void TransformGUCArray(ArrayType *array, List **names, List **values)
Definition: guc.c:6363
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, context, 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 2133 of file guc.c.

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

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

6099 {
6100  char *retptr = *srcptr;
6101  char *ptr;
6102 
6103  if (*srcptr >= srcend)
6104  elog(ERROR, "incomplete GUC state");
6105 
6106  /* The string variables are all null terminated */
6107  for (ptr = *srcptr; ptr < srcend && *ptr != '\0'; ptr++)
6108  ;
6109 
6110  if (ptr >= srcend)
6111  elog(ERROR, "could not find null terminator in GUC state");
6112 
6113  /* Set the new position to the byte following the terminating NUL */
6114  *srcptr = ptr + 1;
6115 
6116  return retptr;
6117 }

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

6122 {
6123  if (*srcptr + size > srcend)
6124  elog(ERROR, "incomplete GUC state");
6125 
6126  memcpy(dest, *srcptr, size);
6127  *srcptr += size;
6128 }

References generate_unaccent_rules::dest, elog, ERROR, and size.

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

5004 {
5005  const char *name = variable->name;
5006  GucStack *oldvarstack = variable->stack;
5007 
5008  if (stack != NULL)
5009  {
5010  /* First, recurse, so that stack items are processed bottom to top */
5011  reapply_stacked_values(variable, pHolder, stack->prev,
5012  stack->prior.val.stringval,
5013  stack->scontext, stack->source, stack->srole);
5014 
5015  /* See how to apply the passed-in value */
5016  switch (stack->state)
5017  {
5018  case GUC_SAVE:
5019  (void) set_config_option_ext(name, curvalue,
5020  curscontext, cursource, cursrole,
5021  GUC_ACTION_SAVE, true,
5022  WARNING, false);
5023  break;
5024 
5025  case GUC_SET:
5026  (void) set_config_option_ext(name, curvalue,
5027  curscontext, cursource, cursrole,
5028  GUC_ACTION_SET, true,
5029  WARNING, false);
5030  break;
5031 
5032  case GUC_LOCAL:
5033  (void) set_config_option_ext(name, curvalue,
5034  curscontext, cursource, cursrole,
5035  GUC_ACTION_LOCAL, true,
5036  WARNING, false);
5037  break;
5038 
5039  case GUC_SET_LOCAL:
5040  /* first, apply the masked value as SET */
5042  stack->masked_scontext,
5043  PGC_S_SESSION,
5044  stack->masked_srole,
5045  GUC_ACTION_SET, true,
5046  WARNING, false);
5047  /* then apply the current value as LOCAL */
5048  (void) set_config_option_ext(name, curvalue,
5049  curscontext, cursource, cursrole,
5050  GUC_ACTION_LOCAL, true,
5051  WARNING, false);
5052  break;
5053  }
5054 
5055  /* If we successfully made a stack entry, adjust its nest level */
5056  if (variable->stack != oldvarstack)
5057  variable->stack->nest_level = stack->nest_level;
5058  }
5059  else
5060  {
5061  /*
5062  * We are at the end of the stack. If the active/previous value is
5063  * different from the reset value, it must represent a previously
5064  * committed session value. Apply it, and then drop the stack entry
5065  * that set_config_option will have created under the impression that
5066  * this is to be just a transactional assignment. (We leak the stack
5067  * entry.)
5068  */
5069  if (curvalue != pHolder->reset_val ||
5070  curscontext != pHolder->gen.reset_scontext ||
5071  cursource != pHolder->gen.reset_source ||
5072  cursrole != pHolder->gen.reset_srole)
5073  {
5074  (void) set_config_option_ext(name, curvalue,
5075  curscontext, cursource, cursrole,
5076  GUC_ACTION_SET, true, WARNING, false);
5077  if (variable->stack != NULL)
5078  {
5079  slist_delete(&guc_stack_list, &variable->stack_link);
5080  variable->stack = NULL;
5081  }
5082  }
5083  }
5084 }
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, 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().

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

4497 {
4498  ConfigVariable *item,
4499  *next,
4500  *prev = NULL;
4501 
4502  /*
4503  * Remove any existing match(es) for "name". Normally there'd be at most
4504  * one, but if external tools have modified the config file, there could
4505  * be more.
4506  */
4507  for (item = *head_p; item != NULL; item = next)
4508  {
4509  next = item->next;
4510  if (guc_name_compare(item->name, name) == 0)
4511  {
4512  /* found a match, delete it */
4513  if (prev)
4514  prev->next = next;
4515  else
4516  *head_p = next;
4517  if (next == NULL)
4518  *tail_p = prev;
4519 
4520  pfree(item->name);
4521  pfree(item->value);
4522  pfree(item->filename);
4523  pfree(item);
4524  }
4525  else
4526  prev = item;
4527  }
4528 
4529  /* Done if we're trying to delete it */
4530  if (value == NULL)
4531  return;
4532 
4533  /* OK, append a new entry */
4534  item = palloc(sizeof *item);
4535  item->name = pstrdup(name);
4536  item->value = pstrdup(value);
4537  item->errmsg = NULL;
4538  item->filename = pstrdup(""); /* new item has no location */
4539  item->sourceline = 0;
4540  item->ignore = false;
4541  item->applied = false;
4542  item->next = NULL;
4543 
4544  if (*head_p == NULL)
4545  *head_p = item;
4546  else
4547  (*tail_p)->next = item;
4548  *tail_p = item;
4549 }
static int32 next
Definition: blutils.c:222

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

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

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

2634 {
2635  char *val = ShowGUCOption(record, false);
2636 
2637  if (record->last_reported == NULL ||
2638  strcmp(val, record->last_reported) != 0)
2639  {
2640  StringInfoData msgbuf;
2641 
2643  pq_sendstring(&msgbuf, record->name);
2644  pq_sendstring(&msgbuf, val);
2645  pq_endmessage(&msgbuf);
2646 
2647  /*
2648  * We need a long-lifespan copy. If guc_strdup() fails due to OOM,
2649  * we'll set last_reported to NULL and thereby possibly make a
2650  * duplicate report later.
2651  */
2652  guc_free(record->last_reported);
2653  record->last_reported = guc_strdup(LOG, val);
2654  }
2655 
2656  pfree(val);
2657 }
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 2002 of file guc.c.

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

6158 {
6159  char *varname,
6160  *varvalue,
6161  *varsourcefile;
6162  int varsourceline;
6163  GucSource varsource;
6164  GucContext varscontext;
6165  Oid varsrole;
6166  char *srcptr = (char *) gucstate;
6167  char *srcend;
6168  Size len;
6169  dlist_mutable_iter iter;
6170  ErrorContextCallback error_context_callback;
6171 
6172  /*
6173  * First, ensure that all potentially-shippable GUCs are reset to their
6174  * default values. We must not touch those GUCs that the leader will
6175  * never ship, while there is no need to touch those that are shippable
6176  * but already have their default values. Thus, this ends up being the
6177  * same test that SerializeGUCState uses, even though the sets of
6178  * variables involved may well be different since the leader's set of
6179  * variables-not-at-default-values can differ from the set that are
6180  * not-default in this freshly started worker.
6181  *
6182  * Once we have set all the potentially-shippable GUCs to default values,
6183  * restoring the GUCs that the leader sent (because they had non-default
6184  * values over there) leads us to exactly the set of GUC values that the
6185  * leader has. This is true even though the worker may have initially
6186  * absorbed postgresql.conf settings that the leader hasn't yet seen, or
6187  * ALTER USER/DATABASE SET settings that were established after the leader
6188  * started.
6189  *
6190  * Note that ensuring all the potential target GUCs are at PGC_S_DEFAULT
6191  * also ensures that set_config_option won't refuse to set them because of
6192  * source-priority comparisons.
6193  */
6195  {
6196  struct config_generic *gconf = dlist_container(struct config_generic,
6197  nondef_link, iter.cur);
6198 
6199  /* Do nothing if non-shippable or if already at PGC_S_DEFAULT. */
6200  if (can_skip_gucvar(gconf))
6201  continue;
6202 
6203  /*
6204  * We can use InitializeOneGUCOption to reset the GUC to default, but
6205  * first we must free any existing subsidiary data to avoid leaking
6206  * memory. The stack must be empty, but we have to clean up all other
6207  * fields. Beware that there might be duplicate value or "extra"
6208  * pointers. We also have to be sure to take it out of any lists it's
6209  * in.
6210  */
6211  Assert(gconf->stack == NULL);
6212  guc_free(gconf->extra);
6213  guc_free(gconf->last_reported);
6214  guc_free(gconf->sourcefile);
6215  switch (gconf->vartype)
6216  {
6217  case PGC_BOOL:
6218  {
6219  struct config_bool *conf = (struct config_bool *) gconf;
6220 
6221  if (conf->reset_extra && conf->reset_extra != gconf->extra)
6222  guc_free(conf->reset_extra);
6223  break;
6224  }
6225  case PGC_INT:
6226  {
6227  struct config_int *conf = (struct config_int *) gconf;
6228 
6229  if (conf->reset_extra && conf->reset_extra != gconf->extra)
6230  guc_free(conf->reset_extra);
6231  break;
6232  }
6233  case PGC_REAL:
6234  {
6235  struct config_real *conf = (struct config_real *) gconf;
6236 
6237  if (conf->reset_extra && conf->reset_extra != gconf->extra)
6238  guc_free(conf->reset_extra);
6239  break;
6240  }
6241  case PGC_STRING:
6242  {
6243  struct config_string *conf = (struct config_string *) gconf;
6244 
6245  guc_free(*conf->variable);
6246  if (conf->reset_val && conf->reset_val != *conf->variable)
6247  guc_free(conf->reset_val);
6248  if (conf->reset_extra && conf->reset_extra != gconf->extra)
6249  guc_free(conf->reset_extra);
6250  break;
6251  }
6252  case PGC_ENUM:
6253  {
6254  struct config_enum *conf = (struct config_enum *) gconf;
6255 
6256  if (conf->reset_extra && conf->reset_extra != gconf->extra)
6257  guc_free(conf->reset_extra);
6258  break;
6259  }
6260  }
6261  /* Remove it from any lists it's in. */
6262  RemoveGUCFromLists(gconf);
6263  /* Now we can reset the struct to PGS_S_DEFAULT state. */
6264  InitializeOneGUCOption(gconf);
6265  }
6266 
6267  /* First item is the length of the subsequent data */
6268  memcpy(&len, gucstate, sizeof(len));
6269 
6270  srcptr += sizeof(len);
6271  srcend = srcptr + len;
6272 
6273  /* If the GUC value check fails, we want errors to show useful context. */
6274  error_context_callback.callback = guc_restore_error_context_callback;
6275  error_context_callback.previous = error_context_stack;
6276  error_context_callback.arg = NULL;
6277  error_context_stack = &error_context_callback;
6278 
6279  /* Restore all the listed GUCs. */
6280  while (srcptr < srcend)
6281  {
6282  int result;
6283  char *error_context_name_and_value[2];
6284 
6285  varname = read_gucstate(&srcptr, srcend);
6286  varvalue = read_gucstate(&srcptr, srcend);
6287  varsourcefile = read_gucstate(&srcptr, srcend);
6288  if (varsourcefile[0])
6289  read_gucstate_binary(&srcptr, srcend,
6290  &varsourceline, sizeof(varsourceline));
6291  else
6292  varsourceline = 0;
6293  read_gucstate_binary(&srcptr, srcend,
6294  &varsource, sizeof(varsource));
6295  read_gucstate_binary(&srcptr, srcend,
6296  &varscontext, sizeof(varscontext));
6297  read_gucstate_binary(&srcptr, srcend,
6298  &varsrole, sizeof(varsrole));
6299 
6300  error_context_name_and_value[0] = varname;
6301  error_context_name_and_value[1] = varvalue;
6302  error_context_callback.arg = &error_context_name_and_value[0];
6303  result = set_config_option_ext(varname, varvalue,
6304  varscontext, varsource, varsrole,
6305  GUC_ACTION_SET, true, ERROR, true);
6306  if (result <= 0)
6307  ereport(ERROR,
6308  (errcode(ERRCODE_INTERNAL_ERROR),
6309  errmsg("parameter \"%s\" could not be set", varname)));
6310  if (varsourcefile[0])
6311  set_config_sourcefile(varname, varsourcefile, varsourceline);
6312  error_context_callback.arg = NULL;
6313  }
6314 
6315  error_context_stack = error_context_callback.previous;
6316 }
ErrorContextCallback * error_context_stack
Definition: elog.c:94
static void guc_restore_error_context_callback(void *arg)
Definition: guc.c:6135
static char * read_gucstate(char **srcptr, char *srcend)
Definition: guc.c:6098
static void read_gucstate_binary(char **srcptr, char *srcend, void *dest, Size size)
Definition: guc.c:6121
struct ErrorContextCallback * previous
Definition: elog.h:296
void(* callback)(void *arg)
Definition: elog.h:297

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

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

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

5990 {
5991  /* Ignore skippable GUCs. */
5992  if (can_skip_gucvar(gconf))
5993  return;
5994 
5995  do_serialize(destptr, maxbytes, "%s", gconf->name);
5996 
5997  switch (gconf->vartype)
5998  {
5999  case PGC_BOOL:
6000  {
6001  struct config_bool *conf = (struct config_bool *) gconf;
6002 
6003  do_serialize(destptr, maxbytes,
6004  (*conf->variable ? "true" : "false"));
6005  }
6006  break;
6007 
6008  case PGC_INT:
6009  {
6010  struct config_int *conf = (struct config_int *) gconf;
6011 
6012  do_serialize(destptr, maxbytes, "%d", *conf->variable);
6013  }
6014  break;
6015 
6016  case PGC_REAL:
6017  {
6018  struct config_real *conf = (struct config_real *) gconf;
6019 
6020  do_serialize(destptr, maxbytes, "%.*e",
6021  REALTYPE_PRECISION, *conf->variable);
6022  }
6023  break;
6024 
6025  case PGC_STRING:
6026  {
6027  struct config_string *conf = (struct config_string *) gconf;
6028 
6029  /* NULL becomes empty string, see estimate_variable_size() */
6030  do_serialize(destptr, maxbytes, "%s",
6031  *conf->variable ? *conf->variable : "");
6032  }
6033  break;
6034 
6035  case PGC_ENUM:
6036  {
6037  struct config_enum *conf = (struct config_enum *) gconf;
6038 
6039  do_serialize(destptr, maxbytes, "%s",
6040  config_enum_lookup_by_value(conf, *conf->variable));
6041  }
6042  break;
6043  }
6044 
6045  do_serialize(destptr, maxbytes, "%s",
6046  (gconf->sourcefile ? gconf->sourcefile : ""));
6047 
6048  if (gconf->sourcefile && gconf->sourcefile[0])
6049  do_serialize_binary(destptr, maxbytes, &gconf->sourceline,
6050  sizeof(gconf->sourceline));
6051 
6052  do_serialize_binary(destptr, maxbytes, &gconf->source,
6053  sizeof(gconf->source));
6054  do_serialize_binary(destptr, maxbytes, &gconf->scontext,
6055  sizeof(gconf->scontext));
6056  do_serialize_binary(destptr, maxbytes, &gconf->srole,
6057  sizeof(gconf->srole));
6058 }
static void do_serialize(char **destptr, Size *maxbytes, const char *fmt,...) pg_attribute_printf(3
Definition: guc.c:5943
static void do_serialize_binary(char **destptr, Size *maxbytes, void *val, Size valsize)
Definition: guc.c:5973

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

6066 {
6067  char *curptr;
6068  Size actual_size;
6069  Size bytes_left;
6070  dlist_iter iter;
6071 
6072  /* Reserve space for saving the actual size of the guc state */
6073  Assert(maxsize > sizeof(actual_size));
6074  curptr = start_address + sizeof(actual_size);
6075  bytes_left = maxsize - sizeof(actual_size);
6076 
6077  /* We need only consider GUCs with source not PGC_S_DEFAULT */
6079  {
6080  struct config_generic *gconf = dlist_container(struct config_generic,
6081  nondef_link, iter.cur);
6082 
6083  serialize_variable(&curptr, &bytes_left, gconf);
6084  }
6085 
6086  /* Store actual size without assuming alignment of start_address. */
6087  actual_size = maxsize - bytes_left - sizeof(actual_size);
6088  memcpy(start_address, &actual_size, sizeof(actual_size));
6089 }
static void serialize_variable(char **destptr, Size *maxbytes, struct config_generic *gconf)
Definition: guc.c:5988

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

3345 {
3346  Oid srole;
3347 
3348  /*
3349  * Non-interactive sources should be treated as having all privileges,
3350  * except for PGC_S_CLIENT. Note in particular that this is true for
3351  * pg_db_role_setting sources (PGC_S_GLOBAL etc): we assume a suitable
3352  * privilege check was done when the pg_db_role_setting entry was made.
3353  */
3355  srole = GetUserId();
3356  else
3357  srole = BOOTSTRAP_SUPERUSERID;
3358 
3359  return set_config_with_handle(name, NULL, value,
3360  context, source, srole,
3361  action, changeVal, elevel,
3362  is_reload);
3363 }
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:3404
@ PGC_S_CLIENT
Definition: guc.h:118
@ PGC_S_INTERACTIVE
Definition: guc.h:120

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

Referenced by 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 3381 of file guc.c.

3385 {
3386  return set_config_with_handle(name, NULL, value,
3387  context, source, srole,
3388  action, changeVal, elevel,
3389  is_reload);
3390 }

References generate_unaccent_rules::action, context, 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 4257 of file guc.c.

4258 {
4259  struct config_generic *record;
4260  int elevel;
4261 
4262  /*
4263  * To avoid cluttering the log, only the postmaster bleats loudly about
4264  * problems with the config file.
4265  */
4266  elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4267 
4268  record = find_option(name, true, false, elevel);
4269  /* should not happen */
4270  if (record == NULL)
4271  return;
4272 
4273  sourcefile = guc_strdup(elevel, sourcefile);
4274  guc_free(record->sourcefile);
4275  record->sourcefile = sourcefile;
4276  record->sourceline = sourceline;
4277 }
#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 3404 of file guc.c.

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

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(), context, 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_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_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(), and set_config_option_ext().

◆ set_extra_field()

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

Definition at line 791 of file guc.c.

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

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

2111 {
2112  /* Adjust nondef list membership if appropriate for change */
2113  if (gconf->source == PGC_S_DEFAULT)
2114  {
2115  if (newsource != PGC_S_DEFAULT)
2117  }
2118  else
2119  {
2120  if (newsource == PGC_S_DEFAULT)
2121  dlist_delete(&gconf->nondef_link);
2122  }
2123  /* Now update the source field */
2124  gconf->source = newsource;
2125 }
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 811 of file guc.c.

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

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

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

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

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

◆ SetConfigOption()

◆ ShowGUCOption()

char* ShowGUCOption ( struct config_generic record,
bool  use_units 
)

Definition at line 5423 of file guc.c.

5424 {
5425  char buffer[256];
5426  const char *val;
5427 
5428  switch (record->vartype)
5429  {
5430  case PGC_BOOL:
5431  {
5432  struct config_bool *conf = (struct config_bool *) record;
5433 
5434  if (conf->show_hook)
5435  val = conf->show_hook();
5436  else
5437  val = *conf->variable ? "on" : "off";
5438  }
5439  break;
5440 
5441  case PGC_INT:
5442  {
5443  struct config_int *conf = (struct config_int *) record;
5444 
5445  if (conf->show_hook)
5446  val = conf->show_hook();
5447  else
5448  {
5449  /*
5450  * Use int64 arithmetic to avoid overflows in units
5451  * conversion.
5452  */
5453  int64 result = *conf->variable;
5454  const char *unit;
5455 
5456  if (use_units && result > 0 && (record->flags & GUC_UNIT))
5458  record->flags & GUC_UNIT,
5459  &result, &unit);
5460  else
5461  unit = "";
5462 
5463  snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
5464  result, unit);
5465  val = buffer;
5466  }
5467  }
5468  break;
5469 
5470  case PGC_REAL:
5471  {
5472  struct config_real *conf = (struct config_real *) record;
5473 
5474  if (conf->show_hook)
5475  val = conf->show_hook();
5476  else
5477  {
5478  double result = *conf->variable;
5479  const char *unit;
5480 
5481  if (use_units && result > 0 && (record->flags & GUC_UNIT))
5483  record->flags & GUC_UNIT,
5484  &result, &unit);
5485  else
5486  unit = "";
5487 
5488  snprintf(buffer, sizeof(buffer), "%g%s",
5489  result, unit);
5490  val = buffer;
5491  }
5492  }
5493  break;
5494 
5495  case PGC_STRING:
5496  {
5497  struct config_string *conf = (struct config_string *) record;
5498 
5499  if (conf->show_hook)
5500  val = conf->show_hook();
5501  else if (*conf->variable && **conf->variable)
5502  val = *conf->variable;
5503  else
5504  val = "";
5505  }
5506  break;
5507 
5508  case PGC_ENUM:
5509  {
5510  struct config_enum *conf = (struct config_enum *) record;
5511 
5512  if (conf->show_hook)
5513  val = conf->show_hook();
5514  else
5515  val = config_enum_lookup_by_value(conf, *conf->variable);
5516  }
5517  break;
5518 
5519  default:
5520  /* just to keep compiler quiet */
5521  val = "???";
5522  break;
5523  }
5524 
5525  return pstrdup(val);
5526 }
#define INT64_FORMAT
Definition: c.h:539
static void convert_int_from_base_unit(int64 base_value, int base_unit, int64 *value, const char **unit)
Definition: guc.c:2728
static void convert_real_from_base_unit(double base_value, int base_unit, double *value, const char **unit)
Definition: guc.c:2770

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

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

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

6364 {
6365  int i;
6366 
6367  Assert(array != NULL);
6368  Assert(ARR_ELEMTYPE(array) == TEXTOID);
6369  Assert(ARR_NDIM(array) == 1);
6370  Assert(ARR_LBOUND(array)[0] == 1);
6371 
6372  *names = NIL;
6373  *values = NIL;
6374  for (i = 1; i <= ARR_DIMS(array)[0]; i++)
6375  {
6376  Datum d;
6377  bool isnull;
6378  char *s;
6379  char *name;
6380  char *value;
6381 
6382  d = array_ref(array, 1, &i,
6383  -1 /* varlenarray */ ,
6384  -1 /* TEXT's typlen */ ,
6385  false /* TEXT's typbyval */ ,
6386  TYPALIGN_INT /* TEXT's typalign */ ,
6387  &isnull);
6388 
6389  if (isnull)
6390  continue;
6391 
6392  s = TextDatumGetCString(d);
6393 
6394  ParseLongOption(s, &name, &value);
6395  if (!value)
6396  {
6397  ereport(WARNING,
6398  (errcode(ERRCODE_SYNTAX_ERROR),
6399  errmsg("could not parse setting for parameter \"%s\"",
6400  name)));
6401  pfree(name);
6402  continue;
6403  }
6404 
6405  *names = lappend(*names, name);
6406  *values = lappend(*values, value);
6407 
6408  pfree(s);
6409  }
6410 }
static Datum values[MAXATTR]
Definition: bootstrap.c:150
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6326
#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 1075 of file guc.c.

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

References GUC_QUALIFIER_SEPARATOR, IS_HIGHBIT_SET, and name.

Referenced by assignable_custom_variable_name(), and ProcessConfigFileInternal().

◆ validate_option_array_item()

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

Definition at line 6672 of file guc.c.

6675 {
6676  struct config_generic *gconf;
6677 
6678  /*
6679  * There are three cases to consider:
6680  *
6681  * name is a known GUC variable. Check the value normally, check
6682  * permissions normally (i.e., allow if variable is USERSET, or if it's
6683  * SUSET and user is superuser or holds ACL_SET permissions).
6684  *
6685  * name is not known, but exists or can be created as a placeholder (i.e.,
6686  * it has a valid custom name). We allow this case if you're a superuser,
6687  * otherwise not. Superusers are assumed to know what they're doing. We
6688  * can't allow it for other users, because when the placeholder is
6689  * resolved it might turn out to be a SUSET variable. (With currently
6690  * available infrastructure, we can actually handle such cases within the
6691  * current session --- but once an entry is made in pg_db_role_setting,
6692  * it's assumed to be fully validated.)
6693  *
6694  * name is not known and can't be created as a placeholder. Throw error,
6695  * unless skipIfNoPermissions is true, in which case return false.
6696  */
6697  gconf = find_option(name, true, skipIfNoPermissions, ERROR);
6698  if (!gconf)
6699  {
6700  /* not known, failed to make a placeholder */
6701  return false;
6702  }
6703 
6704  if (gconf->flags & GUC_CUSTOM_PLACEHOLDER)
6705  {
6706  /*
6707  * We cannot do any meaningful check on the value, so only permissions
6708  * are useful to check.
6709  */
6710  if (superuser() ||
6712  return true;
6713  if (skipIfNoPermissions)
6714  return false;
6715  ereport(ERROR,
6716  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
6717  errmsg("permission denied to set parameter \"%s\"", name)));
6718  }
6719 
6720  /* manual permissions check so we can avoid an error being thrown */
6721  if (gconf->context == PGC_USERSET)
6722  /* ok */ ;
6723  else if (gconf->context == PGC_SUSET &&
6724  (superuser() ||
6726  /* ok */ ;
6727  else if (skipIfNoPermissions)
6728  return false;
6729  /* if a permissions error should be thrown, let set_config_option do it */
6730 
6731  /* test for permissions and valid option value */
6732  (void) set_config_option(name, value,
6734  PGC_S_TEST, GUC_ACTION_SET, false, 0, false);
6735 
6736  return true;
6737 }
@ PGC_S_TEST
Definition: guc.h:121

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

4428 {
4430  ConfigVariable *item;
4431 
4432  initStringInfo(&buf);
4433 
4434  /* Emit file header containing warning comment */
4435  appendStringInfoString(&buf, "# Do not edit this file manually!\n");
4436  appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
4437 
4438  errno = 0;
4439  if (write(fd, buf.data, buf.len) != buf.len)
4440  {
4441  /* if write didn't set errno, assume problem is no disk space */
4442  if (errno == 0)
4443  errno = ENOSPC;
4444  ereport(ERROR,
4446  errmsg("could not write to file \"%s\": %m", filename)));
4447  }
4448 
4449  /* Emit each parameter, properly quoting the value */
4450  for (item = head; item != NULL; item = item->next)
4451  {
4452  char *escaped;
4453 
4454  resetStringInfo(&buf);
4455 
4456  appendStringInfoString(&buf, item->name);
4457  appendStringInfoString(&buf, " = '");
4458 
4459  escaped = escape_single_quotes_ascii(item->value);
4460  if (!escaped)
4461  ereport(ERROR,
4462  (errcode(ERRCODE_OUT_OF_MEMORY),
4463  errmsg("out of memory")));
4464  appendStringInfoString(&buf, escaped);
4465  free(escaped);
4466 
4467  appendStringInfoString(&buf, "'\n");
4468 
4469  errno = 0;
4470  if (write(fd, buf.data, buf.len) != buf.len)
4471  {
4472  /* if write didn't set errno, assume problem is no disk space */
4473  if (errno == 0)
4474  errno = ENOSPC;
4475  ereport(ERROR,
4477  errmsg("could not write to file \"%s\": %m", filename)));
4478  }
4479  }
4480 
4481  /* fsync before considering the write to be successful */
4482  if (pg_fsync(fd) != 0)
4483  ereport(ERROR,
4485  errmsg("could not fsync file \"%s\": %m", filename)));
4486 
4487  pfree(buf.data);
4488 }
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:119
static char * buf
Definition: pg_test_fsync.c:73
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:78

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

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

◆ GUCMemoryContext

MemoryContext GUCMemoryContext
static

Definition at line 198 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 230 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",
NULL
}

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

Referenced by parse_int(), and parse_real().

◆ reporting_enabled

bool reporting_enabled
static

Definition at line 228 of file guc.c.

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

◆ reserved_class_prefix

List* reserved_class_prefix = NIL
static

Definition at line 78 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 158 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 156 of file guc.c.

Referenced by parse_int(), and parse_real().