PostgreSQL Source Code git master
Loading...
Searching...
No Matches
guc_internal.h File Reference
#include "utils/guc.h"
Include dependency graph for guc_internal.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int guc_name_compare (const char *namea, const char *nameb)
 
ConfigVariableProcessConfigFileInternal (GucContext context, bool applySettings, int elevel)
 
void record_config_file_error (const char *errmsg, const char *config_file, int lineno, ConfigVariable **head_p, ConfigVariable **tail_p)
 

Function Documentation

◆ guc_name_compare()

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

Definition at line 1178 of file guc.c.

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

References fb().

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

◆ ProcessConfigFileInternal()

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

Definition at line 285 of file guc.c.

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

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

Referenced by ProcessConfigFile(), and show_all_file_settings().

◆ record_config_file_error()

void record_config_file_error ( const char errmsg,
const char config_file,
int  lineno,
ConfigVariable **  head_p,
ConfigVariable **  tail_p 
)
extern

Definition at line 278 of file guc-file.l.

283{
284 ConfigVariable *item;
285
287 item->name = NULL;
288 item->value = NULL;
289 item->errmsg = pstrdup(errmsg);
291 item->sourceline = lineno;
292 item->ignore = true;
293 item->applied = false;
294 item->next = NULL;
295 if (*head_p == NULL)
296 *head_p = item;
297 else
298 (*tail_p)->next = item;
299 *tail_p = item;
300}
#define palloc_object(type)
Definition fe_memutils.h:74
static char * config_file
Definition pg_rewind.c:71
char * name
Definition guc.h:141
bool ignore
Definition guc.h:146
bool applied
Definition guc.h:147
char * filename
Definition guc.h:144
int sourceline
Definition guc.h:145
char * value
Definition guc.h:142
char * errmsg
Definition guc.h:143

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

Referenced by ParseConfigDirectory(), ParseConfigFile(), ParseConfigFp(), and ProcessConfigFileInternal().